From 8a21783fa513743b838ae15751a658e80b2ea1af Mon Sep 17 00:00:00 2001 From: Mario Date: Sun, 13 Nov 2022 19:45:36 +0000 Subject: bump version --- boot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot.php b/boot.php index 150d9a4b2..a46d52d88 100644 --- a/boot.php +++ b/boot.php @@ -60,7 +60,7 @@ require_once('include/bbcode.php'); require_once('include/items.php'); define('PLATFORM_NAME', 'hubzilla'); -define('STD_VERSION', '7.9.4'); +define('STD_VERSION', '7.9.5'); define('ZOT_REVISION', '6.0'); define('DB_UPDATE_VERSION', 1253); -- cgit v1.2.3 From 08c2c9bc22b5cffc21e8f7d7ea1cda30c2e1af93 Mon Sep 17 00:00:00 2001 From: Mario Date: Tue, 15 Nov 2022 19:29:29 +0000 Subject: possible fix for issue #1698 --- Zotlabs/Module/Follow.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Zotlabs/Module/Follow.php b/Zotlabs/Module/Follow.php index 54e29c492..f8bfc11f3 100644 --- a/Zotlabs/Module/Follow.php +++ b/Zotlabs/Module/Follow.php @@ -70,12 +70,12 @@ class Follow extends Controller { } $uid = local_channel(); - $url = notags(trim(punify($_REQUEST['url']))); + $url = notags(punify(trim($_REQUEST['url']))); $return_url = $_SESSION['return_url']; $interactive = $_REQUEST['interactive'] ?? 1; $channel = App::get_channel(); - $result = Connect::connect($channel,$url); + $result = Connect::connect($channel, $url); if ($result['success'] == false) { if ($result['message']) { -- cgit v1.2.3 From c392a77b46958555bc16592fe4d57e9ab0b7e126 Mon Sep 17 00:00:00 2001 From: Mario Date: Tue, 15 Nov 2022 21:22:10 +0000 Subject: performance: just count the first 99 unseen items and display 99+ if there are more than 99 --- Zotlabs/Module/Sse_bs.php | 24 ++++++++++++------------ view/tpl/notifications_widget.tpl | 14 ++++++++++---- 2 files changed, 22 insertions(+), 16 deletions(-) diff --git a/Zotlabs/Module/Sse_bs.php b/Zotlabs/Module/Sse_bs.php index 3a4e4e09e..4aabcafcb 100644 --- a/Zotlabs/Module/Sse_bs.php +++ b/Zotlabs/Module/Sse_bs.php @@ -205,18 +205,18 @@ class Sse_bs extends Controller { } - $r = q("SELECT count(id) as total FROM item + $r = q("SELECT id FROM item WHERE uid = %d and item_unseen = 1 AND item_wall = 0 AND item_private IN (0, 1) AND obj_type NOT IN ('Document', 'Video', 'Audio', 'Image') AND author_xchan != '%s' $item_normal - $sql_extra", + $sql_extra LIMIT 100", intval(self::$uid), dbesc(self::$ob_hash) ); if($r) - $result['network']['count'] = intval($r[0]['total']); + $result['network']['count'] = count($r); return $result; } @@ -285,17 +285,17 @@ class Sse_bs extends Controller { } - $r = q("SELECT count(id) as total FROM item + $r = q("SELECT id FROM item WHERE uid = %d and item_unseen = 1 AND item_private = 2 $item_normal $sql_extra - AND author_xchan != '%s'", + AND author_xchan != '%s' LIMIT 100", intval(self::$uid), dbesc(self::$ob_hash) ); if($r) - $result['dm']['count'] = intval($r[0]['total']); + $result['dm']['count'] = count($r); return $result; } @@ -365,17 +365,17 @@ class Sse_bs extends Controller { } - $r = q("SELECT count(id) as total FROM item + $r = q("SELECT id FROM item WHERE uid = %d and item_unseen = 1 AND item_wall = 1 AND item_private IN (0, 1) $item_normal $sql_extra - AND author_xchan != '%s'", + AND author_xchan != '%s' LIMIT 100", intval(self::$uid), dbesc(self::$ob_hash) ); if($r) - $result['home']['count'] = intval($r[0]['total']); + $result['home']['count'] = count($r); return $result; } @@ -458,19 +458,19 @@ class Sse_bs extends Controller { } - $r = q("SELECT count(id) as total FROM item + $r = q("SELECT id FROM item WHERE uid = %d AND item_unseen = 1 AND created > '%s' $item_normal $sql_extra - AND author_xchan != '%s'", + AND author_xchan != '%s' LIMIT 100", intval($sys['channel_id']), dbescdate($_SESSION['static_loadtime']), dbesc(self::$ob_hash) ); if($r) - $result['pubs']['count'] = intval($r[0]['total']); + $result['pubs']['count'] = count($r); return $result; } diff --git a/view/tpl/notifications_widget.tpl b/view/tpl/notifications_widget.tpl index 82b3665c3..7a4e909c7 100644 --- a/view/tpl/notifications_widget.tpl +++ b/view/tpl/notifications_widget.tpl @@ -306,12 +306,18 @@ if(typeof obj[type] === typeof undefined) return true; + var count = Number(obj[type].count); + + if(obj[type].count) { $('.' + type + '-button').fadeIn(); - if(replace || followup) - $('.' + type + '-update').html(Number(obj[type].count)); - else - $('.' + type + '-update').html(Number(obj[type].count) + Number($('.' + type + '-update').html())); + if(replace || followup) { + $('.' + type + '-update').html(count >= 100 ? '99+' : count); + } + else { + count = count + Number($('.' + type + '-update').html().replace(/\++$/, '')); + $('.' + type + '-update').html(count >= 100 ? '99+' : count); + } } else { $('.' + type + '-update').html('0'); -- cgit v1.2.3 From 8633162f0c49f0cb246f5a0775e7ce41a8fd6650 Mon Sep 17 00:00:00 2001 From: Mario Date: Tue, 15 Nov 2022 21:22:39 +0000 Subject: =?UTF-8?q?bump=20version=C3=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- boot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot.php b/boot.php index 1ff36f7b8..31e1bc0f1 100644 --- a/boot.php +++ b/boot.php @@ -60,7 +60,7 @@ require_once('include/bbcode.php'); require_once('include/items.php'); define('PLATFORM_NAME', 'hubzilla'); -define('STD_VERSION', '7.9.6'); +define('STD_VERSION', '7.9.7'); define('ZOT_REVISION', '6.0'); define('DB_UPDATE_VERSION', 1253); -- cgit v1.2.3 From 5216c5b23213b1a97051fe7150086109c8a00df1 Mon Sep 17 00:00:00 2001 From: Mario Date: Thu, 17 Nov 2022 08:57:09 +0000 Subject: fix regression when adding feed contacts --- Zotlabs/Lib/Connect.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Zotlabs/Lib/Connect.php b/Zotlabs/Lib/Connect.php index 4570627fc..802bbe0f5 100644 --- a/Zotlabs/Lib/Connect.php +++ b/Zotlabs/Lib/Connect.php @@ -109,10 +109,12 @@ class Connect { if ($wf || $d) { + $xchan_hash = (($wf) ? $wf : $url); + // something was discovered - find the record which was just created. $r = q("select * from xchan where ( xchan_hash = '%s' or xchan_url = '%s' or xchan_addr = '%s' ) $sql_options", - dbesc($wf ?? $url), + dbesc($xchan_hash), dbesc($url), dbesc($url) ); -- cgit v1.2.3 From 805074a0f926dbe63e44241a1fb965188cb47908 Mon Sep 17 00:00:00 2001 From: Mario Date: Thu, 17 Nov 2022 09:09:02 +0000 Subject: externals: fix warnings --- Zotlabs/Daemon/Externals.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Zotlabs/Daemon/Externals.php b/Zotlabs/Daemon/Externals.php index 5b7954c2f..91fa09044 100644 --- a/Zotlabs/Daemon/Externals.php +++ b/Zotlabs/Daemon/Externals.php @@ -19,6 +19,7 @@ class Externals { $importer = get_sys_channel(); $total = 0; $attempts = 0; + $url = ''; logger('externals: startup', LOGGER_DEBUG); @@ -67,9 +68,8 @@ class Externals { datetime_convert('UTC', 'UTC', 'now - 30 days') ); - $contact = $r[0]; - - if ($contact) { + if ($r) { + $contact = $r[0]; $url = $contact['hubloc_id_url']; } } -- cgit v1.2.3 From 0e157e4e8b480b4a848a05e73aa11dfcd54dfd9b Mon Sep 17 00:00:00 2001 From: Mario Date: Thu, 17 Nov 2022 09:11:34 +0000 Subject: remove logging --- Zotlabs/Lib/Libsync.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/Zotlabs/Lib/Libsync.php b/Zotlabs/Lib/Libsync.php index 09b81dc83..fd9886f71 100644 --- a/Zotlabs/Lib/Libsync.php +++ b/Zotlabs/Lib/Libsync.php @@ -184,8 +184,6 @@ class Libsync { require_once('include/import.php'); -hz_syslog(print_r($arr, true)); - $result = []; $keychange = ((array_key_exists('keychange', $arr)) ? true : false); -- cgit v1.2.3 From 0e6b27c9f46141c3ca92fc8dddc51d866cf5f3c9 Mon Sep 17 00:00:00 2001 From: Mario Date: Thu, 17 Nov 2022 11:50:13 +0000 Subject: if a feed fails, do not update connected timestamp. attempt to poll feeds only once a day if we could not fetch it last time we tried --- Zotlabs/Daemon/Onepoll.php | 13 +++++++++++-- Zotlabs/Daemon/Poller.php | 7 +++++++ 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/Zotlabs/Daemon/Onepoll.php b/Zotlabs/Daemon/Onepoll.php index f2b5d8c58..0a30a0c7d 100644 --- a/Zotlabs/Daemon/Onepoll.php +++ b/Zotlabs/Daemon/Onepoll.php @@ -64,12 +64,21 @@ class Onepoll { if ($contact['xchan_network'] === 'rss') { logger('onepoll: processing feed ' . $contact['xchan_name'], LOGGER_DEBUG); $alive = handle_feed($importer['channel_id'], $contact_id, $contact['xchan_hash']); - if ($alive) { - q("update abook set abook_connected = '%s' where abook_id = %d", + + if (!$alive) { + q("update abook set abook_updated = '%s' where abook_id = %d", dbesc(datetime_convert()), intval($contact['abook_id']) ); + return; } + + q("update abook set abook_updated = '%s', abook_connected = '%s' where abook_id = %d", + dbesc(datetime_convert()), + dbesc(datetime_convert()), + intval($contact['abook_id']) + ); + return; } diff --git a/Zotlabs/Daemon/Poller.php b/Zotlabs/Daemon/Poller.php index 88213a7c9..702c940a3 100644 --- a/Zotlabs/Daemon/Poller.php +++ b/Zotlabs/Daemon/Poller.php @@ -93,7 +93,14 @@ class Poller { $min = intval(get_config('system', 'minimum_feedcheck_minutes')); if (!$min) $min = 60; + + if ($t !== $c) { + // if the last fetch failed only attempt fetch once a day + $min = 60 * 24; + } + $x = datetime_convert('UTC', 'UTC', "now - $min minutes"); + if ($c < $x) { Master::Summon(['Onepoll', $contact['abook_id']]); if ($interval) -- cgit v1.2.3 From 59e6989cbcc90ae13eb175e4f1730a9c9d4fc6cd Mon Sep 17 00:00:00 2001 From: Mario Date: Fri, 18 Nov 2022 10:43:33 +0000 Subject: hq widget: implement thread unseen items count --- Zotlabs/Widget/Messages.php | 14 ++++++++++++-- view/js/main.js | 6 ++++-- view/tpl/messages_widget.tpl | 7 ++++++- 3 files changed, 22 insertions(+), 5 deletions(-) diff --git a/Zotlabs/Widget/Messages.php b/Zotlabs/Widget/Messages.php index 38c822502..199bd8665 100644 --- a/Zotlabs/Widget/Messages.php +++ b/Zotlabs/Widget/Messages.php @@ -34,7 +34,8 @@ class Messages { 'starred_messages_title' => t('Starred messages'), 'notice_messages_title' => t('Notices'), 'loading' => t('Loading'), - 'empty' => t('No messages') + 'empty' => t('No messages'), + 'unseen' => t('Unseen') ] ]); @@ -147,14 +148,23 @@ class Messages { $icon = ''; } + $unseen = q("SELECT count(id) AS total FROM item WHERE uid = %d + AND parent = %d + AND item_thread_top = 0 + AND item_unseen = 1", + intval(local_channel()), + intval($item['id']) + ); + $entries[$i]['author_name'] = $item['author']['xchan_name']; - $entries[$i]['author_addr'] = $item['author']['xchan_addr'] ?? $item['author']['xchan_url']; + $entries[$i]['author_addr'] = (($item['author']['xchan_addr']) ? $item['author']['xchan_addr'] : $item['author']['xchan_url']); $entries[$i]['info'] = $info; $entries[$i]['created'] = datetime_convert('UTC', date_default_timezone_get(), $item['created']); $entries[$i]['summary'] = $summary; $entries[$i]['b64mid'] = gen_link_id($item['mid']); $entries[$i]['href'] = z_root() . '/hq/' . gen_link_id($item['mid']); $entries[$i]['icon'] = $icon; + $entries[$i]['unseen'] = (($unseen[0]['total']) ? $unseen[0]['total'] : (($item['item_unseen']) ? ' ' : '')); $i++; } diff --git a/view/js/main.js b/view/js/main.js index aff6eab4d..c409eed35 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -197,8 +197,7 @@ $(document).ready(function() { if (singlethread_modules.indexOf(module) !== -1) { history.pushState(stateObj, '', module + '/' + b64mid); - $('.message').removeClass('active'); - $('[data-b64mid="' + b64mid + '"].message').addClass('active'); + } if (b64mid) { @@ -207,6 +206,9 @@ $(document).ready(function() { if(! page_load) { prepareLiveUpdate(b64mid, notify_id); + $('.message').removeClass('active'); + $('[data-b64mid="' + b64mid + '"].message').addClass('active'); + $('[data-b64mid="' + b64mid + '"].message .badge').remove(); } } } diff --git a/view/tpl/messages_widget.tpl b/view/tpl/messages_widget.tpl index ddb21beb5..90f8e13c7 100644 --- a/view/tpl/messages_widget.tpl +++ b/view/tpl/messages_widget.tpl @@ -36,6 +36,7 @@
{2}
{3} + {8}
@@ -52,6 +53,9 @@
{{$e.summary}}
{{$e.info}} + {{if $e.unseen}} + {{$e.unseen}} + {{/if}} {{/foreach}} {{$e.info}} {{if $e.unseen}} - {{$e.unseen}} + {{$e.unseen}} {{/if}} {{/foreach}} @@ -129,7 +129,7 @@ e.author_addr, e.href, e.icon, - e.unseen ? '' + e.unseen + '' : '' + e.unseen ? '' + e.unseen + '' : '' ); $('#messages-loading').before(html); }); -- cgit v1.2.3 From 41376ec2cda617549b717769f942019ebc2ba797 Mon Sep 17 00:00:00 2001 From: Mario Date: Sun, 20 Nov 2022 20:31:59 +0000 Subject: fix issue in tag_deliver() and silence some more warnings --- include/items.php | 5 +++-- include/xchan.php | 6 +++--- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/include/items.php b/include/items.php index 4e4869aa8..0f477e761 100644 --- a/include/items.php +++ b/include/items.php @@ -2659,9 +2659,10 @@ function tag_deliver($uid, $item_id) { if ($is_group && intval($x[0]['item_wall'])) { // don't let the forked delivery chain recurse - if ($item['verb'] === 'Announce' && $item['author_xchan'] === $u['channel_hash']) { + if ($item['verb'] === 'Announce' && $item['author_xchan'] === $u[0]['channel_hash']) { return; } + // don't announce moderated content until it has been approved if (intval($item['item_blocked']) === ITEM_MODERATED) { return; @@ -2678,7 +2679,7 @@ function tag_deliver($uid, $item_id) { } elseif (intval($x[0]['item_uplink'])) { - start_delivery_chain($u,$item,$item_id,$x[0]); + start_delivery_chain($u[0], $item, $item_id, $x[0]); } } diff --git a/include/xchan.php b/include/xchan.php index a32064303..4a2d389c0 100644 --- a/include/xchan.php +++ b/include/xchan.php @@ -148,15 +148,15 @@ function xchan_store($arr) { function xchan_fetch($arr) { $key = ''; - if($arr['hash']) { + if(isset($arr['hash']) && $arr['hash']) { $key = 'xchan_hash'; $v = $arr['hash']; } - elseif($arr['guid']) { + elseif(isset($arr['guid']) && $arr['guid']) { $key = 'xchan_guid'; $v = $arr['guid']; } - elseif($arr['address']) { + elseif(isset($arr['address']) && $arr['address']) { $key = 'xchan_addr'; $v = $arr['address']; } -- cgit v1.2.3 From 1ff12c5520500e9aff75a45f87614e031674a31b Mon Sep 17 00:00:00 2001 From: Harald Eilertsen Date: Tue, 22 Nov 2022 09:46:41 +0100 Subject: redbasic: Dark scheme fixes - Changed background of category tags to make them readable. - Changed background on "view source" dialog to make it readable. --- view/theme/redbasic/schema/dark.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/view/theme/redbasic/schema/dark.css b/view/theme/redbasic/schema/dark.css index 3a93a5c17..d64c3a3f4 100644 --- a/view/theme/redbasic/schema/dark.css +++ b/view/theme/redbasic/schema/dark.css @@ -32,3 +32,16 @@ a, .fakelink { color: var(--bs-link-color); } +.item-category { + background-color: #293a4f !important; +} +#cboxContent { + background-color: #273039; +} +#jot-title-wrap, +#jot-summary-wrap, +#jot-pagetitle-wrap, +#jot-category-wrap, +#jot-customjotheaders-wrap { + border-bottom: 1px solid var(--bs-border-color); +} -- cgit v1.2.3 From 221d3cdf6a473ea7999bf8d1517822b68a2807fa Mon Sep 17 00:00:00 2001 From: Harald Eilertsen Date: Tue, 22 Nov 2022 15:31:54 +0100 Subject: redbasic: Dark theme fixes - Make rows in admin tables readable while hovering over them. --- view/theme/redbasic/schema/dark.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/view/theme/redbasic/schema/dark.css b/view/theme/redbasic/schema/dark.css index d64c3a3f4..bc1a84ec8 100644 --- a/view/theme/redbasic/schema/dark.css +++ b/view/theme/redbasic/schema/dark.css @@ -45,3 +45,7 @@ a, #jot-customjotheaders-wrap { border-bottom: 1px solid var(--bs-border-color); } +#adminpage table tr:hover { + background-color: #2E3136; +} + -- cgit v1.2.3 From 6de1aec68304aa82ba33d852df84d9784a8f37b2 Mon Sep 17 00:00:00 2001 From: Mario Date: Tue, 22 Nov 2022 21:10:11 +0000 Subject: the blue dots were slightly too bold. --- Zotlabs/Widget/Messages.php | 2 +- view/tpl/messages_widget.tpl | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Zotlabs/Widget/Messages.php b/Zotlabs/Widget/Messages.php index 2ba1f4da5..c40d294e8 100644 --- a/Zotlabs/Widget/Messages.php +++ b/Zotlabs/Widget/Messages.php @@ -176,7 +176,7 @@ class Messages { $entries[$i]['href'] = z_root() . '/hq/' . gen_link_id($item['mid']); $entries[$i]['icon'] = $icon; $entries[$i]['unseen'] = (($unseen[0]['total']) ? $unseen[0]['total'] : (($item['item_unseen']) ? ' ' : '')); - $entries[$i]['unseen_class'] = (($item['item_unseen']) ? 'bg-primary' : 'bg-secondary'); + $entries[$i]['unseen_class'] = (($item['item_unseen']) ? 'primary' : 'secondary'); $i++; } diff --git a/view/tpl/messages_widget.tpl b/view/tpl/messages_widget.tpl index ed3bc0aaf..5d0caf46d 100644 --- a/view/tpl/messages_widget.tpl +++ b/view/tpl/messages_widget.tpl @@ -54,7 +54,7 @@ {{$e.info}} {{if $e.unseen}} - {{$e.unseen}} + {{$e.unseen}} {{/if}} {{/foreach}} @@ -129,7 +129,7 @@ e.author_addr, e.href, e.icon, - e.unseen ? '' + e.unseen + '' : '' + e.unseen ? '' + e.unseen + '' : '' ); $('#messages-loading').before(html); }); -- cgit v1.2.3 From 5248aa3065b59588e1486346e066dbf32e2e7156 Mon Sep 17 00:00:00 2001 From: Mario Date: Thu, 24 Nov 2022 09:42:35 +0000 Subject: css fix --- view/theme/redbasic/schema/bootstrap-nightfall.css | 2 +- view/tpl/messages_widget.tpl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/view/theme/redbasic/schema/bootstrap-nightfall.css b/view/theme/redbasic/schema/bootstrap-nightfall.css index d9cb8cc63..c574ed29b 100644 --- a/view/theme/redbasic/schema/bootstrap-nightfall.css +++ b/view/theme/redbasic/schema/bootstrap-nightfall.css @@ -1895,4 +1895,4 @@ body::selection { background: rgba(23, 162, 184, 0.5); } -/*# sourceMappingURL=bootstrap-nightfall.css.map */ \ No newline at end of file +/*# sourceMappingURL=bootstrap-nightfall.css.map */ diff --git a/view/tpl/messages_widget.tpl b/view/tpl/messages_widget.tpl index 5d0caf46d..495f93ef7 100644 --- a/view/tpl/messages_widget.tpl +++ b/view/tpl/messages_widget.tpl @@ -22,7 +22,7 @@ -
+
-- cgit v1.2.3 From aeda31fda7ac6e788eb31b455970b349a1cc0fa7 Mon Sep 17 00:00:00 2001 From: Mario Date: Thu, 24 Nov 2022 09:52:50 +0000 Subject: fix warnings --- include/feedutils.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/feedutils.php b/include/feedutils.php index eea908fe8..43b95b966 100644 --- a/include/feedutils.php +++ b/include/feedutils.php @@ -2007,9 +2007,9 @@ function atom_entry($item, $type, $author, $owner, $comment = false, $cid = 0, $ if($enclosures) { foreach($enclosures as $enc) { $o .= '' . "\r\n"; } } -- cgit v1.2.3 From 7ec6df495f5e740b16d7bdca89b18a3f6bc78c80 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Thu, 24 Nov 2022 16:05:19 +0100 Subject: slight restructure --- Zotlabs/Lib/Webfinger.php | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/Zotlabs/Lib/Webfinger.php b/Zotlabs/Lib/Webfinger.php index 16d54010c..a0a4aef47 100644 --- a/Zotlabs/Lib/Webfinger.php +++ b/Zotlabs/Lib/Webfinger.php @@ -52,15 +52,21 @@ class Webfinger { if(strpos($resource,'http') === 0) { $m = parse_url($resource); - if($m) { - if(isset($m['scheme']) && $m['scheme'] !== 'https') { - return false; - } - self::$server = $m['host'] . ((isset($m['port'])) ? ':' . $m['port'] : ''); + + if (!$m) { + return false; } - else { + + if(isset($m['scheme']) && $m['scheme'] !== 'https') { return false; } + + if(!isset($m['host'])) { + return false; + } + + self::$server = $m['host'] . ((isset($m['port'])) ? ':' . $m['port'] : ''); + } elseif(strpos($resource,'tag:') === 0) { $arr = explode(':',$resource); // split the tag -- cgit v1.2.3 From 680cf25f37348d2da978196554e07f1694475763 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Thu, 24 Nov 2022 16:08:57 +0100 Subject: de-duplicate by mid. there is no combined index for uid and uuid hence the query could be slow if an uid has a lot of items. the workaround for hubzilla < 4.0 is not required anymore --- include/items.php | 20 +++++--------------- 1 file changed, 5 insertions(+), 15 deletions(-) diff --git a/include/items.php b/include/items.php index 0f477e761..b414928fd 100644 --- a/include/items.php +++ b/include/items.php @@ -1848,21 +1848,11 @@ function item_store($arr, $allow_exec = false, $deliver = true) { if($parent_deleted) $arr['item_deleted'] = 1; - if($arr['uuid']) { - $r = q("SELECT id FROM item WHERE uuid = '%s' AND uid = %d and revision = %d LIMIT 1", - dbesc($arr['uuid']), - intval($arr['uid']), - intval($arr['revision']) - ); - } - else { - $r = q("SELECT id FROM item WHERE (mid = '%s' OR mid = '%s') AND uid = %d and revision = %d LIMIT 1", - dbesc($arr['mid']), - dbesc(basename(rawurldecode($arr['mid']))), // de-duplicate relayed comments from hubzilla < 4.0 - intval($arr['uid']), - intval($arr['revision']) - ); - } + $r = q("SELECT id FROM item WHERE mid = '%s' AND uid = %d and revision = %d LIMIT 1", + dbesc($arr['mid']), + intval($arr['uid']), + intval($arr['revision']) + ); if($r) { logger('duplicate item ignored. ' . print_r($arr,true)); -- cgit v1.2.3 From 1e4718eae1c9ce647a34ed13d43d8a0bbe7c42af Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Thu, 24 Nov 2022 16:42:09 +0100 Subject: do not always trigger a sse event if pubs notification are off or the app is not installed for the channel --- Zotlabs/Module/Sse.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Zotlabs/Module/Sse.php b/Zotlabs/Module/Sse.php index 3dab3d465..f87a19821 100644 --- a/Zotlabs/Module/Sse.php +++ b/Zotlabs/Module/Sse.php @@ -100,9 +100,9 @@ class Sse extends Controller { // We do not have the local_channel in the addon. // Reset pubs here if the app is not installed. if (self::$uid && (!(self::$vnotify & VNOTIFY_PUBS) || !Apps::system_app_installed(self::$uid, 'Public Stream'))) { - $result['pubs']['count'] = 0; - $result['pubs']['notifications'] = []; - $result['pubs']['offset'] = -1; + if (isset($result['pubs'])) { + unset($result['pubs']); + } } if($result && !$lock) { -- cgit v1.2.3 From 68ca8951a85973cf385f23b6147f51718563d7bf Mon Sep 17 00:00:00 2001 From: Mario Date: Fri, 25 Nov 2022 18:37:22 +0000 Subject: mark unseen items seen after a certain amount of time (default 90 days) --- Zotlabs/Daemon/Cron_daily.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/Zotlabs/Daemon/Cron_daily.php b/Zotlabs/Daemon/Cron_daily.php index d1b74a032..71d3bc9ef 100644 --- a/Zotlabs/Daemon/Cron_daily.php +++ b/Zotlabs/Daemon/Cron_daily.php @@ -49,6 +49,22 @@ class Cron_daily { dbesc('sse_id.%') ); + // Mark items seen after X days (default 90) + + $r = dbq("select channel_id from channel where channel_removed = 0"); + if ($r) { + foreach ($r as $rr) { + $mark_seen_days = get_pconfig($rr['channel_id'], 'system', 'mark_seen_days', 90); + q("UPDATE item SET item_unseen = 0 WHERE + uid = %d AND item_unseen = 1 + AND created < %s - INTERVAL %s", + intval($rr['channel_id']), + db_utcnow(), + db_quoteinterval($mark_seen_days . ' DAY') + ); + } + } + // Clean up emdedded content cache q("DELETE FROM cache WHERE updated < %s - INTERVAL %s", db_utcnow(), -- cgit v1.2.3 From ae1fad5de7aa8b42b9e7e0719502bf914228b1bf Mon Sep 17 00:00:00 2001 From: Mario Date: Fri, 25 Nov 2022 18:44:33 +0000 Subject: basically every incoming item should have a uuid by now --- include/items.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/items.php b/include/items.php index b414928fd..752251a7e 100644 --- a/include/items.php +++ b/include/items.php @@ -1848,8 +1848,8 @@ function item_store($arr, $allow_exec = false, $deliver = true) { if($parent_deleted) $arr['item_deleted'] = 1; - $r = q("SELECT id FROM item WHERE mid = '%s' AND uid = %d and revision = %d LIMIT 1", - dbesc($arr['mid']), + $r = q("SELECT id FROM item WHERE uuid = '%s' AND uid = %d and revision = %d LIMIT 1", + dbesc($arr['uuid']), intval($arr['uid']), intval($arr['revision']) ); -- cgit v1.2.3 From a050e8c8f50dd84ca7259ae1ceb3511a73ba06ba Mon Sep 17 00:00:00 2001 From: Mario Date: Sat, 26 Nov 2022 08:37:45 +0000 Subject: should compare against abook_updated to make sure we do not always poll broken feeds --- Zotlabs/Daemon/Poller.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Zotlabs/Daemon/Poller.php b/Zotlabs/Daemon/Poller.php index 702c940a3..63c498f17 100644 --- a/Zotlabs/Daemon/Poller.php +++ b/Zotlabs/Daemon/Poller.php @@ -101,12 +101,14 @@ class Poller { $x = datetime_convert('UTC', 'UTC', "now - $min minutes"); - if ($c < $x) { + if ($t < $x) { Master::Summon(['Onepoll', $contact['abook_id']]); if ($interval) @time_sleep_until(microtime(true) + (float)$interval); } + continue; + } if ($contact['xchan_network'] !== 'zot6') -- cgit v1.2.3 From c76f19f19a8f322100cb09b5e1633da141afedcc Mon Sep 17 00:00:00 2001 From: Mario Date: Sat, 26 Nov 2022 08:39:59 +0000 Subject: bump version --- boot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot.php b/boot.php index 6a610c37e..31f00a206 100644 --- a/boot.php +++ b/boot.php @@ -60,7 +60,7 @@ require_once('include/bbcode.php'); require_once('include/items.php'); define('PLATFORM_NAME', 'hubzilla'); -define('STD_VERSION', '7.9.8'); +define('STD_VERSION', '7.9.9'); define('ZOT_REVISION', '6.0'); define('DB_UPDATE_VERSION', 1253); -- cgit v1.2.3 From 2de2c8e207aae66280a7be6bccfe64558534a54e Mon Sep 17 00:00:00 2001 From: Harald Eilertsen Date: Sat, 26 Nov 2022 15:45:37 +0100 Subject: Fix Category widget URLs The category widget template expects a URL without any query params, as it appends `/?cat=` to the base URL passed to it. The Widget code tried to preserve any query param passed to it except for the `cat` query param. When passed to the template, this caused the invalid URLs to be generated. Example input url: https://example.com/channel/user?f=&tag=pasta The URL generated for the "Dinner" category would then be: https://example.com/channel/user&tag=pasta&tag=pasta/?cat=Dinner Which is troublesome in more than one way, and cause at least some search bots to go wild by sending requests with increasingly long URLs. This patch will simply discard the existing query params in the URL, so with the same input url, the generated URL for the "Dinner" category will now be: https://example.com/channel/user/?cat=Dinner This is comparable to what the Category Cloud and Tag Cloud widgets already do. --- Zotlabs/Widget/Categories.php | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Zotlabs/Widget/Categories.php b/Zotlabs/Widget/Categories.php index b31856e48..b0eda253b 100644 --- a/Zotlabs/Widget/Categories.php +++ b/Zotlabs/Widget/Categories.php @@ -24,15 +24,16 @@ class Categories { } $cat = ((x($_REQUEST, 'cat')) ? htmlspecialchars($_REQUEST['cat'], ENT_COMPAT, 'UTF-8') : ''); - $srchurl = App::$query_string; - $srchurl = rtrim(preg_replace('/cat\=[^\&].*?(\&|$)/is', '', $srchurl), '&'); - $srchurl = str_replace(['?f=','&f=', '/?'], ['', '', ''], $srchurl); + + // Discard queries from the current URL, as the template expects a base + // URL without any queries. + $base = substr(App::$query_string, 0, strcspn(App::$query_string, '?')); if($files) { - return filecategories_widget($srchurl, $cat); + return filecategories_widget($base, $cat); } - return categories_widget($srchurl, $cat); + return categories_widget($base, $cat); } } -- cgit v1.2.3 From e87887c3287a22b0d4a261de9be21d13bc02f174 Mon Sep 17 00:00:00 2001 From: Mario Date: Sun, 27 Nov 2022 09:40:23 +0000 Subject: re-install: make sure to fetch the latest hubloc in api_auth otherwise authentication might fail --- include/api_auth.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/api_auth.php b/include/api_auth.php index 0395dae7a..be886fbb2 100644 --- a/include/api_auth.php +++ b/include/api_auth.php @@ -102,13 +102,13 @@ function api_login(&$a) { if ($sigblock) { $keyId = str_replace('acct:', '', $sigblock['keyId']); if ($keyId) { - $r = q("select * from hubloc where hubloc_addr = '%s' or hubloc_id_url = '%s'", + $r = q("select * from hubloc where hubloc_addr = '%s' or hubloc_id_url = '%s' order by hubloc_id desc", dbesc($keyId), dbesc($keyId) ); if (!$r) { HTTPSig::get_zotfinger_key($keyId); - $r = q("select * from hubloc where hubloc_addr = '%s' or hubloc_id_url = '%s'", + $r = q("select * from hubloc where hubloc_addr = '%s' or hubloc_id_url = '%s' order by hubloc_id desc", dbesc($keyId), dbesc($keyId) ); -- cgit v1.2.3 From 004d0f074dfb72c7ab01e950620e97698dd51913 Mon Sep 17 00:00:00 2001 From: Mario Date: Sun, 27 Nov 2022 12:20:04 +0000 Subject: disable context help until its content will be updated - it is not helpful otherwise --- include/nav.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/nav.php b/include/nav.php index 29d99aaee..2cdf7d42b 100644 --- a/include/nav.php +++ b/include/nav.php @@ -17,6 +17,7 @@ function nav($template = 'default') { App::$page['nav'] = App::$page['nav'] ?? ''; App::$page['htmlhead'] = App::$page['htmlhead'] ?? ''; App::$page['htmlhead'] .= ''; + $is_owner = (((local_channel()) && ((App::$profile_uid == local_channel()) || (App::$profile_uid == 0))) ? true : false); $observer = App::get_observer(); $chans = []; @@ -166,7 +167,8 @@ function nav($template = 'default') { $nav['register'] = ['register', t('Register'), "", t('Create an account'), 'register_nav_btn']; } - if (!get_config('system', 'hide_help')) { + // TODO: update help content for various modules + if (false /* !get_config('system', 'hide_help') */) { $help_url = z_root() . '/help?f=&cmd=' . App::$cmd; $context_help = ''; $enable_context_help = ((intval(get_config('system', 'enable_context_help')) === 1 || get_config('system', 'enable_context_help') === false) ? true : false); -- cgit v1.2.3 From 4002531b9296f764c20da2f50ff1bb5feef6dccb Mon Sep 17 00:00:00 2001 From: Mario Date: Tue, 29 Nov 2022 10:00:07 +0000 Subject: fix issue where site_firehose setting was always false --- Zotlabs/Module/Pubstream.php | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/Zotlabs/Module/Pubstream.php b/Zotlabs/Module/Pubstream.php index 3c8dfa0a5..47da3c13a 100644 --- a/Zotlabs/Module/Pubstream.php +++ b/Zotlabs/Module/Pubstream.php @@ -12,6 +12,7 @@ class Pubstream extends \Zotlabs\Web\Controller { function get($update = 0, $load = false) { + if(local_channel()) { if(! Apps::system_app_installed(local_channel(), 'Public Stream')) { //Do not display any associated widgets at this point @@ -31,16 +32,13 @@ class Pubstream extends \Zotlabs\Web\Controller { } } - $site_firehose = ((intval(get_config('system','site_firehose',0))) ? true : false); $net_firehose = ((get_config('system','disable_discover_tab',1)) ? false : true); - if(! ($site_firehose || $net_firehose)) { + if(!$net_firehose) { return ''; } - if($net_firehose) { - $site_firehose = false; - } + $site_firehose = ((intval(get_config('system','site_firehose',0))) ? true : false); $mid = ((x($_REQUEST, 'mid')) ? unpack_link_id($_REQUEST['mid']) : ''); if ($mid === false) { @@ -161,13 +159,14 @@ class Pubstream extends \Zotlabs\Web\Controller { $sys = get_sys_channel(); $abook_uids = " and abook.abook_channel = " . intval($sys['channel_id']) . " "; + $sql_extra = ''; if($site_firehose) { $uids = " and item.uid in ( " . stream_perms_api_uids(PERMS_PUBLIC) . " ) and item_private = 0 and item_wall = 1 "; } else { $uids = " and item.uid = " . intval($sys['channel_id']) . " "; - $sql_extra = item_permissions_sql($sys['channel_id']); + $sql_extra .= item_permissions_sql($sys['channel_id']); \App::$data['firehose'] = intval($sys['channel_id']); } -- cgit v1.2.3 From 3ce1373ae0e5355b9d10eab5f5b8078245c4b8b6 Mon Sep 17 00:00:00 2001 From: Mario Date: Wed, 30 Nov 2022 09:18:57 +0000 Subject: provide a pdl file for mod invite and set the profile --- Zotlabs/Module/Invite.php | 13 +++++++++++++ view/pdl/mod_invite.pdl | 10 ++++++++++ 2 files changed, 23 insertions(+) create mode 100644 view/pdl/mod_invite.pdl diff --git a/Zotlabs/Module/Invite.php b/Zotlabs/Module/Invite.php index 2a126ac27..bb552e4c7 100644 --- a/Zotlabs/Module/Invite.php +++ b/Zotlabs/Module/Invite.php @@ -43,6 +43,19 @@ class Invite extends Controller { const MYP = 'ZAI'; const VERSION = '2.0.0'; + function init() { + + if (!local_channel()) { + return; + } + + $channel = App::get_channel(); + if ($channel) { + profile_load($channel['channel_address']); + } + + } + function post() { // zai02 diff --git a/view/pdl/mod_invite.pdl b/view/pdl/mod_invite.pdl new file mode 100644 index 000000000..47af1ed38 --- /dev/null +++ b/view/pdl/mod_invite.pdl @@ -0,0 +1,10 @@ +[region=aside] +[widget=profile][/widget] +[/region] +[region=content] +$content +[/region] +[region=right_aside] +[widget=notifications][/widget] +[widget=newmember][/widget] +[/region] -- cgit v1.2.3 From baf1b8b02de4ef3d62a2fd9126cbc05de1bf8711 Mon Sep 17 00:00:00 2001 From: Mario Date: Wed, 30 Nov 2022 10:36:55 +0000 Subject: fetch the unseen count in a subquery instead of a separate query and rename array key --- Zotlabs/Widget/Messages.php | 18 ++++++------------ view/tpl/messages_widget.tpl | 6 +++--- 2 files changed, 9 insertions(+), 15 deletions(-) diff --git a/Zotlabs/Widget/Messages.php b/Zotlabs/Widget/Messages.php index c40d294e8..414353d8a 100644 --- a/Zotlabs/Widget/Messages.php +++ b/Zotlabs/Widget/Messages.php @@ -35,7 +35,7 @@ class Messages { 'notice_messages_title' => t('Notices'), 'loading' => t('Loading'), 'empty' => t('No messages'), - 'unseen' => t('Unseen') + 'unseen_count' => t('Unseen') ] ]); @@ -88,7 +88,9 @@ class Messages { $type_sql = ' AND item_private IN (0, 1) '; } - $items = q("SELECT * FROM item WHERE uid = %d + $items = q("SELECT item.*, parent AS this_parent, + (SELECT count(*) FROM item WHERE uid = %d AND parent = this_parent AND item_unseen = 1 AND item_thread_top = 0 $vnotify_sql) AS unseen_count + FROM item WHERE uid = %d AND created <= '%s' $type_sql AND item_thread_top = 1 @@ -96,6 +98,7 @@ class Messages { ORDER BY created DESC $dummy_order_sql LIMIT $limit OFFSET $offset", intval(local_channel()), + intval(local_channel()), dbescdate($loadtime) ); @@ -158,15 +161,6 @@ class Messages { $icon = ''; } - $unseen = q("SELECT count(id) AS total FROM item WHERE uid = %d - AND parent = %d - AND item_thread_top = 0 - AND item_unseen = 1 - $vnotify_sql", - intval(local_channel()), - intval($item['id']) - ); - $entries[$i]['author_name'] = $item['author']['xchan_name']; $entries[$i]['author_addr'] = (($item['author']['xchan_addr']) ? $item['author']['xchan_addr'] : $item['author']['xchan_url']); $entries[$i]['info'] = $info; @@ -175,7 +169,7 @@ class Messages { $entries[$i]['b64mid'] = gen_link_id($item['mid']); $entries[$i]['href'] = z_root() . '/hq/' . gen_link_id($item['mid']); $entries[$i]['icon'] = $icon; - $entries[$i]['unseen'] = (($unseen[0]['total']) ? $unseen[0]['total'] : (($item['item_unseen']) ? ' ' : '')); + $entries[$i]['unseen_count'] = (($item['unseen_count']) ? $item['unseen_count'] : (($item['item_unseen']) ? ' ' : '')); $entries[$i]['unseen_class'] = (($item['item_unseen']) ? 'primary' : 'secondary'); $i++; diff --git a/view/tpl/messages_widget.tpl b/view/tpl/messages_widget.tpl index 495f93ef7..ee933b392 100644 --- a/view/tpl/messages_widget.tpl +++ b/view/tpl/messages_widget.tpl @@ -53,8 +53,8 @@
{{$e.summary}}
{{$e.info}} - {{if $e.unseen}} - {{$e.unseen}} + {{if $e.unseen_count}} + {{$e.unseen_count}} {{/if}}
{{/foreach}} @@ -129,7 +129,7 @@ e.author_addr, e.href, e.icon, - e.unseen ? '' + e.unseen + '' : '' + e.unseen_count ? '' + e.unseen_count + '' : '' ); $('#messages-loading').before(html); }); -- cgit v1.2.3 From e4461f2e61198fdc6002d7b2b36185c0f275e58d Mon Sep 17 00:00:00 2001 From: Mario Date: Wed, 30 Nov 2022 11:20:10 +0000 Subject: adjust the query to work with postgres --- Zotlabs/Widget/Messages.php | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/Zotlabs/Widget/Messages.php b/Zotlabs/Widget/Messages.php index 414353d8a..0f57a8d85 100644 --- a/Zotlabs/Widget/Messages.php +++ b/Zotlabs/Widget/Messages.php @@ -58,7 +58,7 @@ class Messages { } $channel = App::get_channel(); - $item_normal = item_normal(); + $item_normal = str_replace('item.', 'i.', item_normal()); $entries = []; $limit = 30; $dummy_order_sql = ''; @@ -68,34 +68,34 @@ class Messages { $vnotify_sql = ''; if (!($vnotify & VNOTIFY_LIKE)) { - $vnotify_sql = " AND verb NOT IN ('" . dbesc(ACTIVITY_LIKE) . "', '" . dbesc(ACTIVITY_DISLIKE) . "') "; + $vnotify_sql = " AND c.verb NOT IN ('" . dbesc(ACTIVITY_LIKE) . "', '" . dbesc(ACTIVITY_DISLIKE) . "') "; } elseif (!feature_enabled(local_channel(), 'dislike')) { - $vnotify_sql = " AND verb NOT IN ('" . dbesc(ACTIVITY_DISLIKE) . "') "; + $vnotify_sql = " AND c.verb NOT IN ('" . dbesc(ACTIVITY_DISLIKE) . "') "; } switch($type) { case 'direct': - $type_sql = ' AND item_private = 2 '; + $type_sql = ' AND i.item_private = 2 '; // $dummy_order_sql has no other meaning but to trick // some mysql backends into using the right index. - $dummy_order_sql = ', received DESC '; + $dummy_order_sql = ', i.received DESC '; break; case 'starred': - $type_sql = ' AND item_starred = 1 '; + $type_sql = ' AND i.item_starred = 1 '; break; default: - $type_sql = ' AND item_private IN (0, 1) '; + $type_sql = ' AND i.item_private IN (0, 1) '; } - $items = q("SELECT item.*, parent AS this_parent, - (SELECT count(*) FROM item WHERE uid = %d AND parent = this_parent AND item_unseen = 1 AND item_thread_top = 0 $vnotify_sql) AS unseen_count - FROM item WHERE uid = %d - AND created <= '%s' + $items = q("SELECT *, + (SELECT count(*) FROM item c WHERE c.uid = %d AND c.parent = i.parent AND c.item_unseen = 1 AND c.item_thread_top = 0 $vnotify_sql) AS unseen_count + FROM item i WHERE i.uid = %d + AND i.created <= '%s' $type_sql - AND item_thread_top = 1 + AND i.item_thread_top = 1 $item_normal - ORDER BY created DESC $dummy_order_sql + ORDER BY i.created DESC $dummy_order_sql LIMIT $limit OFFSET $offset", intval(local_channel()), intval(local_channel()), -- cgit v1.2.3 From d16b6c3838cd76eb7ce336444cbd37774857b64f Mon Sep 17 00:00:00 2001 From: Mario Date: Fri, 2 Dec 2022 15:18:01 +0000 Subject: fix regression: new event not created --- include/event.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/include/event.php b/include/event.php index 7c81d6934..b27504296 100644 --- a/include/event.php +++ b/include/event.php @@ -502,7 +502,6 @@ function ev_compare($a, $b) { function event_store_event($arr) { - $arr['created'] = $arr['created'] ?? datetime_convert(); $arr['edited'] = $arr['edited'] ?? datetime_convert(); $arr['etype'] = $arr['etype'] ?? 'event'; @@ -533,7 +532,7 @@ function event_store_event($arr) { $existing_event = null; - if(isset($arr['event_hash'])) { + if(isset($arr['event_hash']) && $arr['event_hash']) { $r = q("SELECT * FROM event WHERE event_hash = '%s' AND uid = %d LIMIT 1", dbesc($arr['event_hash']), intval($arr['uid']) @@ -543,7 +542,7 @@ function event_store_event($arr) { } } - if(isset($arr['id'])) { + if(isset($arr['id']) && $arr['id']) { $r = q("SELECT * FROM event WHERE id = %d AND uid = %d LIMIT 1", intval($arr['id']), intval($arr['uid']) @@ -647,7 +646,6 @@ function event_store_event($arr) { $hash = random_string(48); } } - $r = q("INSERT INTO event ( uid,aid,event_xchan,event_hash,created,edited,dtstart,dtend,summary,description,location,etype, adjust,nofinish, event_status, event_status_date, event_percent, event_repeat, event_sequence, event_priority, event_vdata, allow_cid,allow_gid,deny_cid,deny_gid) VALUES ( %d, %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d, '%s', '%s', %d, '%s', %d, %d, '%s', '%s', '%s', '%s', '%s' ) ", -- cgit v1.2.3 From 2bb58843ab303ba3e1a4a2c0c5a64138852ebbe0 Mon Sep 17 00:00:00 2001 From: Mario Date: Fri, 2 Dec 2022 19:22:19 +0000 Subject: move queueworker to core and bump version --- Zotlabs/Daemon/Cron.php | 8 +- Zotlabs/Daemon/Master.php | 11 ++ Zotlabs/Daemon/Poller.php | 16 +- Zotlabs/Lib/Libsync.php | 9 +- Zotlabs/Lib/QueueWorker.php | 351 +++++++++++++++++++++++++++++++++++++++++ Zotlabs/Module/Import.php | 2 +- Zotlabs/Module/Queueworker.php | 122 ++++++++++++++ Zotlabs/Update/_1254.php | 55 +++++++ boot.php | 2 +- include/hubloc.php | 8 +- include/items.php | 27 ++-- include/network.php | 17 +- view/tpl/admin_site.tpl | 8 +- 13 files changed, 604 insertions(+), 32 deletions(-) create mode 100644 Zotlabs/Lib/QueueWorker.php create mode 100644 Zotlabs/Module/Queueworker.php create mode 100644 Zotlabs/Update/_1254.php diff --git a/Zotlabs/Daemon/Cron.php b/Zotlabs/Daemon/Cron.php index 6629491de..c3158a4eb 100644 --- a/Zotlabs/Daemon/Cron.php +++ b/Zotlabs/Daemon/Cron.php @@ -50,7 +50,7 @@ class Cron { require_once('include/account.php'); remove_expired_registrations(); - $interval = get_config('system', 'delivery_interval', 3); + //$interval = get_config('system', 'delivery_interval', 3); // expire any expired items @@ -65,8 +65,10 @@ class Cron { if ($rr['item_wall']) { // The notifier isn't normally invoked unless item_drop is interactive. Master::Summon(['Notifier', 'drop', $rr['id']]); + /* if ($interval) @time_sleep_until(microtime(true) + (float)$interval); + */ } } } @@ -96,8 +98,10 @@ class Cron { if ($r) { foreach ($r as $rr) { Master::Summon(array('Directory', $rr['channel_id'], 'force')); + /* if ($interval) @time_sleep_until(microtime(true) + (float)$interval); + */ } } @@ -151,8 +155,10 @@ class Cron { ); } Master::Summon(array('Notifier', 'wall-new', $rr['id'])); + /* if ($interval) @time_sleep_until(microtime(true) + (float)$interval); + */ } } } diff --git a/Zotlabs/Daemon/Master.php b/Zotlabs/Daemon/Master.php index 6fa656be5..495718bf4 100644 --- a/Zotlabs/Daemon/Master.php +++ b/Zotlabs/Daemon/Master.php @@ -2,6 +2,8 @@ namespace Zotlabs\Daemon; +use Zotlabs\Lib\QueueWorker; + if (array_search(__file__, get_included_files()) === 0) { require_once('include/cli_startup.php'); array_shift($argv); @@ -16,6 +18,10 @@ if (array_search(__file__, get_included_files()) === 0) { class Master { static public function Summon($arr) { + + QueueWorker::Summon($arr); + return; +/* $hookinfo = [ 'argv' => $arr ]; @@ -32,11 +38,15 @@ class Master { $phpbin = get_config('system', 'phpbin', 'php'); proc_run($phpbin, 'Zotlabs/Daemon/Master.php', $arr); +*/ } static public function Release($argc, $argv) { cli_startup(); + QueueWorker::Release($argv); + return; +/* $hookinfo = [ 'argv' => $argv ]; @@ -54,5 +64,6 @@ class Master { logger('Master: release: ' . json_encode($argv), LOGGER_ALL, LOG_DEBUG); $cls = '\\Zotlabs\\Daemon\\' . $argv[0]; $cls::run($argc, $argv); +*/ } } diff --git a/Zotlabs/Daemon/Poller.php b/Zotlabs/Daemon/Poller.php index 63c498f17..5bf8d3a02 100644 --- a/Zotlabs/Daemon/Poller.php +++ b/Zotlabs/Daemon/Poller.php @@ -17,10 +17,12 @@ class Poller { } } +/* $interval = intval(get_config('system', 'poll_interval')); if (!$interval) $interval = ((get_config('system', 'delivery_interval') === false) ? 3 : intval(get_config('system', 'delivery_interval'))); + // Check for a lockfile. If it exists, but is over an hour old, it's stale. Ignore it. $lockfile = 'store/[data]/poller'; if ((file_exists($lockfile)) && (filemtime($lockfile) > (time() - 3600)) @@ -32,6 +34,7 @@ class Poller { // Create a lockfile. Needs two vars, but $x doesn't need to contain anything. $x = ''; file_put_contents($lockfile, $x); +*/ logger('poller: start'); @@ -103,8 +106,10 @@ class Poller { if ($t < $x) { Master::Summon(['Onepoll', $contact['abook_id']]); + /* if ($interval) @time_sleep_until(microtime(true) + (float)$interval); + */ } continue; @@ -167,8 +172,11 @@ class Poller { continue; Master::Summon(['Onepoll', $contact['abook_id']]); + + /* if ($interval) @time_sleep_until(microtime(true) + (float)$interval); + */ } } @@ -190,9 +198,13 @@ class Poller { if ($rr['ud_last'] > NULL_DATE) if ($rr['ud_last'] > datetime_convert('UTC', 'UTC', 'now - 1 day')) continue; + Master::Summon(['Onedirsync', $rr['ud_id']]); + + /* if ($interval) @time_sleep_until(microtime(true) + (float)$interval); + */ } } } @@ -200,9 +212,9 @@ class Poller { set_config('system', 'lastpoll', datetime_convert()); //All done - clear the lockfile - +/* @unlink($lockfile); - +*/ return; } } diff --git a/Zotlabs/Lib/Libsync.php b/Zotlabs/Lib/Libsync.php index fd9886f71..b02ae4c69 100644 --- a/Zotlabs/Lib/Libsync.php +++ b/Zotlabs/Lib/Libsync.php @@ -135,8 +135,10 @@ class Libsync { $info['collection_members'] = $r; } + /* $interval = ((get_config('system', 'delivery_interval') !== false) ? intval(get_config('system', 'delivery_interval')) : 2); + */ logger('Packet: ' . print_r($info, true), LOGGER_DATA, LOG_DEBUG); @@ -155,19 +157,24 @@ class Libsync { ]); + /* $x = q("select count(outq_hash) as total from outq where outq_delivered = 0"); + if (intval($x[0]['total']) > intval(get_config('system', 'force_queue_threshold', 3000))) { logger('immediate delivery deferred.', LOGGER_DEBUG, LOG_INFO); Queue::update($hash); continue; } - + */ Master::Summon(['Deliver', $hash]); + + /* $total = $total - 1; if ($interval && $total) @time_sleep_until(microtime(true) + (float)$interval); + */ } } diff --git a/Zotlabs/Lib/QueueWorker.php b/Zotlabs/Lib/QueueWorker.php new file mode 100644 index 000000000..21983a4e2 --- /dev/null +++ b/Zotlabs/Lib/QueueWorker.php @@ -0,0 +1,351 @@ + 10, + 'Deliver' => 10, + 'Cache_query' => 10, + 'Content_importer' => 1, + 'File_importer' => 1, + 'Channel_purge' => 1, + 'Directory' => 1 + ]; + + private static function qbegin($tablename) { + switch (ACTIVE_DBTYPE) { + case DBTYPE_MYSQL: + q('BEGIN'); + q('LOCK TABLE ' . $tablename . ' WRITE'); + break; + + case DBTYPE_POSTGRES: + q('BEGIN'); + //q('LOCK TABLE '.$tablename.' IN ACCESS EXCLUSIVE MODE'); + break; + } + return; + } + + private static function qcommit() { + switch (ACTIVE_DBTYPE) { + case DBTYPE_MYSQL: + q("UNLOCK TABLES"); + q("COMMIT"); + break; + + case DBTYPE_POSTGRES: + q("COMMIT"); + break; + } + return; + } + + private static function qrollback() { + switch (ACTIVE_DBTYPE) { + case DBTYPE_MYSQL: + q("ROLLBACK"); + q("UNLOCK TABLES"); + break; + + case DBTYPE_POSTGRES: + q("ROLLBACK"); + break; + } + return; + } + + public static function Summon(&$argv) { + + $argc = count($argv); + + if ($argv[0] !== 'Queueworker') { + + $priority = 0; // @TODO allow reprioritization + + if(isset(self::$default_priorities[$argv[0]])) { + $priority = self::$default_priorities[$argv[0]]; + } + + $workinfo = ['argc' => $argc, 'argv' => $argv]; + $workinfo_json = json_encode($workinfo); + $uuid = self::getUuid($workinfo_json); + + $r = q("SELECT * FROM workerq WHERE workerq_uuid = '%s'", + dbesc($uuid) + ); + if ($r) { + logger("Summon: Ignoring duplicate workerq task", LOGGER_DEBUG); + logger(print_r($workinfo,true)); + $argv = []; + return; + } + + self::qbegin('workerq'); + $r = q("INSERT INTO workerq (workerq_priority, workerq_data, workerq_uuid) VALUES (%d, '%s', '%s')", + intval($priority), + $workinfo_json, + dbesc($uuid) + ); + if (!$r) { + self::qrollback(); + logger("INSERT FAILED", LOGGER_DEBUG); + return; + } + self::qcommit(); + logger('INSERTED: ' . $workinfo_json, LOGGER_DEBUG); + } + $argv = []; + + $workers = self::GetWorkerCount(); + if ($workers < self::$maxworkers) { + logger("Less than max active workers ($workers) max = " . self::$maxworkers . ".", LOGGER_DEBUG); + $phpbin = get_config('system', 'phpbin', 'php'); + proc_run($phpbin, 'Zotlabs/Daemon/Master.php', ['Queueworker']); + } + } + + public static function Release(&$argv) { + + $argc = count($argv); + + if ($argv[0] !== 'Queueworker') { + + $priority = 0; // @TODO allow reprioritization + if(isset(self::$default_priorities[$argv[0]])) { + $priority = self::$default_priorities[$argv[0]]; + } + + $workinfo = ['argc' => $argc, 'argv' => $argv]; + $workinfo_json = json_encode($workinfo); + $uuid = self::getUuid($workinfo_json); + + $r = q("SELECT * FROM workerq WHERE workerq_uuid = '%s'", + dbesc($uuid) + ); + if ($r) { + logger("Release: Duplicate task - do not insert.", LOGGER_DEBUG); + logger(print_r($workinfo,true)); + + $argv = []; + return; + } + + self::qbegin('workerq'); + $r = q("INSERT INTO workerq (workerq_priority, workerq_data, workerq_uuid) VALUES (%d, '%s', '%s')", + intval($priority), + $workinfo_json, + dbesc($uuid) + ); + if (!$r) { + self::qrollback(); + logger("Insert failed: " . $workinfo_json, LOGGER_DEBUG); + return; + } + self::qcommit(); + logger('INSERTED: ' . $workinfo_json, LOGGER_DEBUG); + } + $argv = []; + self::Process(); + } + + public static function GetWorkerCount() { + if (self::$maxworkers == 0) { + self::$maxworkers = get_config('queueworker', 'max_queueworkers', 4); + self::$maxworkers = self::$maxworkers > 3 ? self::$maxworkers : 4; + } + if (self::$workermaxage == 0) { + self::$workermaxage = get_config('queueworker', 'max_queueworker_age'); + self::$workermaxage = self::$workermaxage > 120 ? self::$workermaxage : 300; + } + + q("update workerq set workerq_reservationid = null where workerq_reservationid is not null and workerq_processtimeout < %s", + db_utcnow() + ); + + usleep(self::$workersleep); + $workers = dbq("select count(distinct workerq_reservationid) as total from workerq where workerq_reservationid is not null"); + logger("WORKERCOUNT: " . $workers[0]['total'], LOGGER_DEBUG); + return intval($workers[0]['total']); + } + + public static function GetWorkerID() { + if (self::$queueworker) { + return self::$queueworker; + } + $wid = uniqid('', true); + usleep(mt_rand(500000, 3000000)); //Sleep .5 - 3 seconds before creating a new worker. + $workers = self::GetWorkerCount(); + if ($workers >= self::$maxworkers) { + logger("Too many active workers ($workers) max = " . self::$maxworkers, LOGGER_DEBUG); + return false; + } + self::$queueworker = $wid; + return $wid; + } + + private static function getWorkId() { + self::GetWorkerCount(); + + self::qbegin('workerq'); + + if (ACTIVE_DBTYPE == DBTYPE_POSTGRES) { + $work = dbq("SELECT workerq_id FROM workerq WHERE workerq_reservationid IS NULL ORDER BY workerq_priority DESC, workerq_id ASC LIMIT 1 FOR UPDATE SKIP LOCKED;"); + } + else { + $work = dbq("SELECT workerq_id FROM workerq WHERE workerq_reservationid IS NULL ORDER BY workerq_priority DESC, workerq_id ASC LIMIT 1;"); + } + + if (!$work) { + self::qrollback(); + return false; + } + $id = $work[0]['workerq_id']; + + $work = q("UPDATE workerq SET workerq_reservationid = '%s', workerq_processtimeout = %s + INTERVAL %s WHERE workerq_id = %d", + self::$queueworker, + db_utcnow(), + db_quoteinterval(self::$workermaxage . " SECOND"), + intval($id) + ); + + if (!$work) { + self::qrollback(); + logger("Could not update workerq.", LOGGER_DEBUG); + return false; + } + logger("GOTWORK: " . json_encode($work), LOGGER_DEBUG); + self::qcommit(); + return $id; + } + + public static function Process() { + self::$workersleep = get_config('queueworker', 'queue_worker_sleep'); + self::$workersleep = intval(self::$workersleep) > 100 ? intval(self::$workersleep) : 100; + + if (!self::GetWorkerID()) { + logger('Unable to get worker ID. Exiting.', LOGGER_DEBUG); + killme(); + } + + $jobs = 0; + $workid = self::getWorkId(); + while ($workid) { + usleep(self::$workersleep); + // @FIXME: Currently $workersleep is a fixed value. It may be a good idea + // to implement a "backoff" instead - based on load average or some + // other metric. + + self::qbegin('workerq'); + + if (ACTIVE_DBTYPE == DBTYPE_POSTGRES) { + $workitem = q("SELECT * FROM workerq WHERE workerq_id = %d FOR UPDATE SKIP LOCKED", + $workid + ); + } + else { + $workitem = q("SELECT * FROM workerq WHERE workerq_id = %d", + $workid + ); + } + + self::qcommit(); + + if (isset($workitem[0])) { + // At least SOME work to do.... in case there's more, let's ramp up workers. + $workers = self::GetWorkerCount(); + if ($workers < self::$maxworkers) { + logger("Less than max active workers ($workers) max = " . self::$maxworkers . ".", LOGGER_DEBUG); + $phpbin = get_config('system', 'phpbin', 'php'); + proc_run($phpbin, 'Zotlabs/Daemon/Master.php', ['Queueworker']); + } + + $jobs++; + logger("Workinfo: " . $workitem[0]['workerq_data'], LOGGER_DEBUG); + + $workinfo = json_decode($workitem[0]['workerq_data'], true); + $argv = $workinfo['argv']; + logger('Master: process: ' . json_encode($argv), LOGGER_DEBUG); + + $cls = '\\Zotlabs\\Daemon\\' . $argv[0]; + $argv = flatten_array_recursive($argv); + $argc = count($argv); + $cls::run($argc, $argv); + + // @FIXME: Right now we assume that if we get a return, everything is OK. + // At some point we may want to test whether the run returns true/false + // and requeue the work to be tried again if needed. But we probably want + // to implement some sort of "retry interval" first. + + self::qbegin('workerq'); + q("delete from workerq where workerq_id = %d", $workid); + self::qcommit(); + } + else { + logger("NO WORKITEM!", LOGGER_DEBUG); + } + $workid = self::getWorkId(); + } + logger('Master: Worker Thread: queue items processed:' . $jobs, LOGGER_DEBUG); + } + + public static function ClearQueue() { + $work = q("select * from workerq"); + while ($work) { + foreach ($work as $workitem) { + $workinfo = json_decode($workitem['v'], true); + $argc = $workinfo['argc']; + $argv = $workinfo['argv']; + logger('Master: process: ' . print_r($argv, true), LOGGER_ALL, LOG_DEBUG); + if (!isset($argv[0])) { + q("delete from workerq where workerq_id = %d", + $work[0]['workerq_id'] + ); + continue; + } + $cls = '\\Zotlabs\\Daemon\\' . $argv[0]; + $cls::run($argc, $argv); + q("delete from workerq where workerq_id = %d", + $work[0]['workerq_id'] + ); + usleep(300000); + //Give the server .3 seconds to catch its breath between tasks. + //This will hopefully keep it from crashing to it's knees entirely + //if the last task ended up initiating other parallel processes + //(eg. polling remotes) + } + //Make sure nothing new came in + $work = q("select * from workerq"); + } + return; + } + + /** + * @brief Generate a name-based v5 UUID with custom namespace + * + * @param string $data + * @return string $uuid + */ + private static function getUuid($data) { + $namespace = '3a112e42-f147-4ccf-a78b-f6841339ea2a'; + try { + $uuid = Uuid::uuid5($namespace, $data)->toString(); + } catch (UnableToBuildUuidException $e) { + logger('UUID generation failed'); + return ''; + } + return $uuid; + } + +} diff --git a/Zotlabs/Module/Import.php b/Zotlabs/Module/Import.php index ec47e370b..c8a9ac5ed 100644 --- a/Zotlabs/Module/Import.php +++ b/Zotlabs/Module/Import.php @@ -536,7 +536,7 @@ class Import extends Controller { $since = datetime_convert(date_default_timezone_get(), date_default_timezone_get(), '0001-01-01 00:00'); $until = datetime_convert(date_default_timezone_get(), date_default_timezone_get(), 'now + 1 day'); - $poll_interval = get_config('system', 'poll_interval', 3); + //$poll_interval = get_config('system', 'poll_interval', 3); $page = 0; Master::Summon(['Content_importer', sprintf('%d', $page), $since, $until, $channel['channel_address'], urlencode($hz_server)]); diff --git a/Zotlabs/Module/Queueworker.php b/Zotlabs/Module/Queueworker.php new file mode 100644 index 000000000..808a9ed61 --- /dev/null +++ b/Zotlabs/Module/Queueworker.php @@ -0,0 +1,122 @@ + 3) ? $maxqueueworkers : 4; + set_config('queueworker', 'max_queueworkers', $maxqueueworkers); + + $maxworkerage = intval($_POST['queueworker_max_age']); + $maxworkerage = ($maxworkerage >= 120) ? $maxworkerage : 300; + set_config('queueworker', 'queueworker_max_age', $maxworkerage); + + $queueworkersleep = intval($_POST['queue_worker_sleep']); + $queueworkersleep = ($queueworkersleep > 100) ? $queueworkersleep : 100; + set_config('queueworker', 'queue_worker_sleep', $queueworkersleep); + + goaway(z_root() . '/queueworker'); + } + + function get() { + + $content = "

ERROR: Page not found

"; + App::$error = 404; + + if (!local_channel()) { + return $content; + } + + if (!(is_site_admin())) { + return $content; + } + + load_config("queueworker"); + + $content = "

Queue Status

\n"; + + $r = q('select count(*) as qentries from workerq'); + + if (!$r) { + $content = "

There was an error querying the database.

"; + return $content; + } + + $content .= "

There are " . $r[0]['qentries'] . " queue items to be processed.

"; + + $r = dbq("select count(distinct workerq_reservationid) as qworkers from workerq where workerq_reservationid is not null"); + + $content .= "

Active workers: " . $r[0]['qworkers'] . "

"; + + $maxqueueworkers = get_config('queueworker', 'max_queueworkers', 4); + $maxqueueworkers = ($maxqueueworkers > 3) ? $maxqueueworkers : 4; + set_config('queueworker', 'max_queueworkers', $maxqueueworkers); + + $sc = ''; + + $sc .= replace_macros(get_markup_template('field_input.tpl'), [ + '$field' => [ + 'queueworker_maxworkers', + t('Max queueworker threads'), + $maxqueueworkers, + t('Minimum 4, default 4') + ] + ]); + + $workermaxage = get_config('queueworker', 'queueworker_max_age'); + $workermaxage = ($workermaxage >= 120) ? $workermaxage : 300; + set_config('queueworker', 'max_queueworker_age', $workermaxage); + + $sc .= replace_macros(get_markup_template('field_input.tpl'), [ + '$field' => [ + 'queueworker_max_age', + t('Assume workers dead after'), + $workermaxage, + t('Minimum 120, default 300 seconds') + ] + ]); + + $queueworkersleep = get_config('queueworker', 'queue_worker_sleep'); + $queueworkersleep = ($queueworkersleep > 100) ? $queueworkersleep : 100; + set_config('queueworker', 'queue_worker_sleep', $queueworkersleep); + + $sc .= replace_macros(get_markup_template('field_input.tpl'), [ + '$field' => [ + 'queue_worker_sleep', + t('Pause before starting next task'), + $queueworkersleep, + t('Minimum 100, default 100 microseconds') + ] + ]); + + $tpl = get_markup_template('settings_addon.tpl'); + $content .= replace_macros($tpl, [ + '$action_url' => 'queueworker', + '$form_security_token' => get_form_security_token('queueworker'), + '$title' => t('Queueworker Settings'), + '$content' => $sc, + '$baseurl' => z_root(), + '$submit' => t('Save') + ] + ); + + return $content; + + } +} diff --git a/Zotlabs/Update/_1254.php b/Zotlabs/Update/_1254.php new file mode 100644 index 000000000..ec54754c0 --- /dev/null +++ b/Zotlabs/Update/_1254.php @@ -0,0 +1,55 @@ + intval(get_config('system','force_queue_threshold',3000)) && (! $force)) { logger('immediate delivery deferred.', LOGGER_DEBUG, LOG_INFO); @@ -1478,8 +1478,10 @@ function do_delivery($deliveries, $force = false) { } + $interval = ((get_config('system','delivery_interval') !== false) ? intval(get_config('system','delivery_interval')) : 2 ); + */ $deliveries_per_process = intval(get_config('system','delivery_batch_count')); @@ -1487,7 +1489,7 @@ function do_delivery($deliveries, $force = false) { $deliveries_per_process = 1; - $deliver = array(); + $deliver = []; foreach($deliveries as $d) { if(! $d) @@ -1496,17 +1498,20 @@ function do_delivery($deliveries, $force = false) { $deliver[] = $d; if(count($deliver) >= $deliveries_per_process) { - Zotlabs\Daemon\Master::Summon(array('Deliver',$deliver)); - $deliver = array(); + Zotlabs\Daemon\Master::Summon(['Deliver', $deliver]); + $deliver = []; + /* if($interval) @time_sleep_until(microtime(true) + (float) $interval); + */ } } // catch any stragglers - if($deliver) - Zotlabs\Daemon\Master::Summon(array('Deliver',$deliver)); + if($deliver) { + Zotlabs\Daemon\Master::Summon(['Deliver', $deliver]); + } } diff --git a/view/tpl/admin_site.tpl b/view/tpl/admin_site.tpl index fa942baff..bad68361b 100644 --- a/view/tpl/admin_site.tpl +++ b/view/tpl/admin_site.tpl @@ -20,7 +20,7 @@ {{include file="field_input.tpl" field=$frontpage}} {{include file="field_checkbox.tpl" field=$mirror_frontpage}} {{include file="field_checkbox.tpl" field=$login_on_homepage}} - {{include file="field_checkbox.tpl" field=$enable_context_help}} + {{** include file="field_checkbox.tpl" field=$enable_context_help **}} {{if $directory_server}} {{include file="field_select.tpl" field=$directory_server}} {{/if}} @@ -72,10 +72,10 @@ {{include file="field_input.tpl" field=$proxy}} {{include file="field_input.tpl" field=$proxyuser}} {{include file="field_input.tpl" field=$timeout}} - {{include file="field_input.tpl" field=$delivery_interval}} + {{**include file="field_input.tpl" field=$delivery_interval**}} {{include file="field_input.tpl" field=$delivery_batch_count}} - {{include file="field_input.tpl" field=$force_queue}} - {{include file="field_input.tpl" field=$poll_interval}} + {{**include file="field_input.tpl" field=$force_queue**}} + {{**include file="field_input.tpl" field=$poll_interval**}} {{include file="field_input.tpl" field=$maxloadavg}} {{include file="field_input.tpl" field=$default_expire_days}} {{include file="field_input.tpl" field=$active_expire_days}} -- cgit v1.2.3 From 935b032f15583321e826fc1072e60734e5e2cd25 Mon Sep 17 00:00:00 2001 From: Mario Date: Fri, 2 Dec 2022 19:22:50 +0000 Subject: db update 1254 --- boot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot.php b/boot.php index 0b1276392..3615b575c 100644 --- a/boot.php +++ b/boot.php @@ -63,7 +63,7 @@ define('PLATFORM_NAME', 'hubzilla'); define('STD_VERSION', '7.9.10'); define('ZOT_REVISION', '6.0'); -define('DB_UPDATE_VERSION', 1253); +define('DB_UPDATE_VERSION', 1254); define('PROJECT_BASE', __DIR__); -- cgit v1.2.3 From 25727a24a5a1d0a117a86591522cb4e9a57ebf61 Mon Sep 17 00:00:00 2001 From: Mario Date: Fri, 2 Dec 2022 19:29:46 +0000 Subject: fix typos --- Zotlabs/Update/_1254.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Zotlabs/Update/_1254.php b/Zotlabs/Update/_1254.php index ec54754c0..f316fe65b 100644 --- a/Zotlabs/Update/_1254.php +++ b/Zotlabs/Update/_1254.php @@ -22,7 +22,7 @@ class _1254 { $r2 = dbq("CREATE INDEX idx_workerq_priority ON workerq (workerq_priority)"); $r3 = dbq("CREATE INDEX idx_workerq_reservationid ON workerq (workerq_reservationid)"); $r4 = dbq("CREATE INDEX idx_workerq_processtimeout ON workerq (workerq_processtimeout)"); - $r5 = dbq("CREATE INDEX idx_workerq_uuid ON workerq (workerq_uuid)") + $r5 = dbq("CREATE INDEX idx_workerq_uuid ON workerq (workerq_uuid)"); $r = ($r1 && $r2 && $r3 && $r4 && $r5); } @@ -33,11 +33,11 @@ class _1254 { workerq_reservationid varchar(25) DEFAULT NULL, workerq_processtimeout datetime NOT NULL DEFAULT '0001-01-01 00:00:00', workerq_data text, - workerq_uuid char(36) NOT NULL DEFAULT '' + workerq_uuid char(36) NOT NULL DEFAULT '', KEY workerq_priority (workerq_priority), KEY workerq_reservationid (workerq_reservationid), - KEY workerq_processtimeout (workerq_uuid) - KEY workerq_uuid` (workerq_processtimeout) + KEY workerq_processtimeout (workerq_uuid), + KEY workerq_uuid (workerq_processtimeout) ) ENGINE = InnoDB DEFAULT CHARSET=utf8mb4" ); } -- cgit v1.2.3 From 1a4f59cd7008cf21378fcb3a0eac75c5aaedf07b Mon Sep 17 00:00:00 2001 From: Mario Date: Fri, 2 Dec 2022 19:32:47 +0000 Subject: bump version --- boot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot.php b/boot.php index 3615b575c..1287d3c88 100644 --- a/boot.php +++ b/boot.php @@ -60,7 +60,7 @@ require_once('include/bbcode.php'); require_once('include/items.php'); define('PLATFORM_NAME', 'hubzilla'); -define('STD_VERSION', '7.9.10'); +define('STD_VERSION', '7.9.11'); define('ZOT_REVISION', '6.0'); define('DB_UPDATE_VERSION', 1254); -- cgit v1.2.3 From 9927363f395fd0f58d2aaba7beb575cc71b2ba6a Mon Sep 17 00:00:00 2001 From: Harald Eilertsen Date: Sat, 3 Dec 2022 00:30:16 +0100 Subject: =?UTF-8?q?Update=20translations=20for=20nb-no=20(Norsk=20Bokm?= =?UTF-8?q?=C3=A5l)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- view/nb-no/hmessages.po | 20903 +++++++++++++++++++++++++++++----------------- view/nb-no/hstrings.php | 5411 +++++++----- 2 files changed, 16790 insertions(+), 9524 deletions(-) diff --git a/view/nb-no/hmessages.po b/view/nb-no/hmessages.po index 0f7f2e8c5..6ffa2f3c6 100644 --- a/view/nb-no/hmessages.po +++ b/view/nb-no/hmessages.po @@ -1,9827 +1,15840 @@ -# Hubzilla Project -# Copyright (C) 2012-2014 the Hubzilla Project -# This file is distributed under the same license as the Red package. -# -# Translators: +# hubzilla +# Copyright (C) 2012-2022 hubzilla +# This file is distributed under the same license as the hubzilla package. +# +# Mike Macgirvin, 2012. # Haakon Meland Eriksen , 2015-2016 +# Harald Eilertsen , 2022. msgid "" msgstr "" -"Project-Id-Version: Redmatrix\n" +"Project-Id-Version: 7.8RC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-06-10 00:02-0700\n" -"PO-Revision-Date: 2016-06-10 09:14+0000\n" -"Last-Translator: fabrixxm \n" -"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/Friendica/red-matrix/language/nb_NO/)\n" +"POT-Creation-Date: 2022-09-26 07:09+0000\n" +"PO-Revision-Date: 2022-12-03 00:20+0100\n" +"Last-Translator: Harald Eilertsen \n" +"Language-Team: Norwegian Bokmal \n" +"Language: nb_NO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1 ? 1 : 0);\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Lokalize 22.08.3\n" + +#: ../../view/theme/redbasic/php/config.php:15 +#: ../../addon/cart/submodules/orderoptions.php:335 +#: ../../addon/cart/submodules/orderoptions.php:359 +#: ../../addon/cart/submodules/orderoptions.php:435 +#: ../../addon/cart/submodules/orderoptions.php:459 ../../include/text.php:3461 +#: ../../Zotlabs/Module/Admin/Site.php:251 +msgid "Default" +msgstr "Standard" -#: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:239 -msgid "parent" -msgstr "opp et nivå" +#: ../../view/theme/redbasic/php/config.php:16 +#: ../../view/theme/redbasic/php/config.php:19 +msgid "Focus (Hubzilla default)" +msgstr "Focus (Hubzilla standard)" + +#: ../../view/theme/redbasic/php/config.php:96 +#: ../../addon/channelreputation/channelreputation.php:143 +#: ../../addon/wiki/Widget/Wiki_pages.php:43 +#: ../../addon/wiki/Widget/Wiki_pages.php:100 ../../addon/wiki/Mod_Wiki.php:218 +#: ../../addon/openclipatar/openclipatar.php:54 +#: ../../addon/photocache/Mod_Photocache.php:63 +#: ../../addon/redred/Mod_Redred.php:88 ../../addon/redphotos/redphotos.php:136 +#: ../../addon/statusnet/Mod_Statusnet.php:191 +#: ../../addon/statusnet/Mod_Statusnet.php:249 +#: ../../addon/statusnet/Mod_Statusnet.php:304 +#: ../../addon/statusnet/statusnet.php:602 ../../addon/rtof/Mod_Rtof.php:70 +#: ../../addon/wppost/Mod_Wppost.php:107 +#: ../../addon/content_import/Mod_content_import.php:141 +#: ../../addon/openstreetmap/openstreetmap.php:155 +#: ../../addon/ijpost/Mod_Ijpost.php:72 +#: ../../addon/pubcrawl/Mod_Pubcrawl.php:62 +#: ../../addon/dwpost/Mod_Dwpost.php:78 +#: ../../addon/startpage/Mod_Startpage.php:71 +#: ../../addon/twitter/Mod_Twitter.php:182 +#: ../../addon/pumpio/Mod_Pumpio.php:113 +#: ../../addon/cart/submodules/subscriptions.php:410 +#: ../../addon/cart/submodules/hzservices.php:645 +#: ../../addon/cart/submodules/orderoptions.php:312 +#: ../../addon/cart/submodules/orderoptions.php:412 +#: ../../addon/cart/submodules/manualcat.php:248 +#: ../../addon/cart/Settings/Cart.php:132 +#: ../../addon/cart/Settings/Cart.php:142 ../../addon/cart/cart.php:1376 +#: ../../addon/nofed/Mod_Nofed.php:51 +#: ../../addon/smileybutton/Mod_Smileybutton.php:53 +#: ../../addon/redfiles/redfiles.php:124 ../../addon/diaspora/diaspora.php:87 +#: ../../addon/diaspora/Mod_Diaspora.php:100 ../../addon/piwik/piwik.php:95 +#: ../../addon/workflow/workflow.php:1466 +#: ../../addon/workflow/workflow.php:1525 +#: ../../addon/workflow/workflow.php:1644 +#: ../../addon/workflow/workflow.php:2747 +#: ../../addon/workflow/Settings/Mod_WorkflowSettings.php:94 +#: ../../addon/likebanner/likebanner.php:57 +#: ../../addon/fuzzloc/Mod_Fuzzloc.php:54 ../../addon/hubwall/hubwall.php:95 +#: ../../addon/flashcards/Mod_Flashcards.php:269 +#: ../../addon/libertree/Mod_Libertree.php:68 ../../addon/logrot/logrot.php:35 +#: ../../addon/skeleton/Mod_Skeleton.php:49 +#: ../../addon/socialauth/Mod_SocialAuth.php:341 +#: ../../addon/nsfw/Mod_Nsfw.php:59 ../../addon/mailtest/mailtest.php:100 +#: ../../addon/ljpost/Mod_Ljpost.php:80 ../../addon/hzfiles/hzfiles.php:86 +#: ../../addon/pageheader/Mod_Pageheader.php:52 ../../addon/irc/irc.php:45 +#: ../../addon/xmpp/Mod_Xmpp.php:70 ../../include/js_strings.php:23 +#: ../../Zotlabs/Module/Tokens.php:294 +#: ../../Zotlabs/Module/Import_items.php:125 +#: ../../Zotlabs/Module/Import.php:611 ../../Zotlabs/Module/Setup.php:316 +#: ../../Zotlabs/Module/Setup.php:356 ../../Zotlabs/Module/Group.php:150 +#: ../../Zotlabs/Module/Group.php:159 ../../Zotlabs/Module/Oauth.php:109 +#: ../../Zotlabs/Module/Chat.php:207 ../../Zotlabs/Module/Chat.php:246 +#: ../../Zotlabs/Module/Poke.php:215 ../../Zotlabs/Module/Mitem.php:259 +#: ../../Zotlabs/Module/Filestorage.php:208 +#: ../../Zotlabs/Module/Connect.php:107 ../../Zotlabs/Module/Editpost.php:86 +#: ../../Zotlabs/Module/Admin/Themes.php:158 +#: ../../Zotlabs/Module/Admin/Features.php:66 +#: ../../Zotlabs/Module/Admin/Security.php:120 +#: ../../Zotlabs/Module/Admin/Accounts.php:309 +#: ../../Zotlabs/Module/Admin/Site.php:415 +#: ../../Zotlabs/Module/Admin/Logs.php:84 +#: ../../Zotlabs/Module/Admin/Channels.php:147 +#: ../../Zotlabs/Module/Admin/Account_edit.php:73 +#: ../../Zotlabs/Module/Admin/Profs.php:178 +#: ../../Zotlabs/Module/Admin/Addons.php:442 +#: ../../Zotlabs/Module/Regate.php:407 ../../Zotlabs/Module/Permcats.php:257 +#: ../../Zotlabs/Module/Mood.php:156 ../../Zotlabs/Module/Appman.php:221 +#: ../../Zotlabs/Module/Contactedit.php:429 +#: ../../Zotlabs/Module/Contactedit.php:462 +#: ../../Zotlabs/Module/Email_validation.php:40 +#: ../../Zotlabs/Module/Photos.php:1064 ../../Zotlabs/Module/Photos.php:1104 +#: ../../Zotlabs/Module/Photos.php:1220 ../../Zotlabs/Module/Profiles.php:740 +#: ../../Zotlabs/Module/Invite.php:550 ../../Zotlabs/Module/Xchan.php:15 +#: ../../Zotlabs/Module/Affinity.php:84 +#: ../../Zotlabs/Module/Settings/Network.php:62 +#: ../../Zotlabs/Module/Settings/Features.php:48 +#: ../../Zotlabs/Module/Settings/Channel.php:228 +#: ../../Zotlabs/Module/Settings/Account.php:107 +#: ../../Zotlabs/Module/Settings/Events.php:42 +#: ../../Zotlabs/Module/Settings/Manage.php:43 +#: ../../Zotlabs/Module/Settings/Channel_home.php:91 +#: ../../Zotlabs/Module/Settings/Calendar.php:42 +#: ../../Zotlabs/Module/Settings/Display.php:186 +#: ../../Zotlabs/Module/Settings/Directory.php:42 +#: ../../Zotlabs/Module/Settings/Editor.php:42 +#: ../../Zotlabs/Module/Settings/Connections.php:42 +#: ../../Zotlabs/Module/Settings/Photos.php:42 +#: ../../Zotlabs/Module/Settings/Profiles.php:52 +#: ../../Zotlabs/Module/Settings/Privacy.php:110 +#: ../../Zotlabs/Module/Settings/Conversation.php:49 +#: ../../Zotlabs/Module/Defperms.php:263 ../../Zotlabs/Module/Pconfig.php:116 +#: ../../Zotlabs/Module/Oauth2.php:114 ../../Zotlabs/Module/Thing.php:328 +#: ../../Zotlabs/Module/Thing.php:381 ../../Zotlabs/Module/Pdledit.php:106 +#: ../../Zotlabs/Module/Connedit.php:714 ../../Zotlabs/Module/Locs.php:125 +#: ../../Zotlabs/Module/Sources.php:123 ../../Zotlabs/Module/Sources.php:160 +#: ../../Zotlabs/Lib/ThreadItem.php:835 ../../Zotlabs/Storage/Browser.php:382 +msgid "Submit" +msgstr "Lagre" -#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2620 -msgid "Collection" -msgstr "Samling" +#: ../../view/theme/redbasic/php/config.php:100 +msgid "Theme settings" +msgstr "Instillinger for utseende" -#: ../../Zotlabs/Storage/Browser.php:134 -msgid "Principal" -msgstr "Viktigste" +#: ../../view/theme/redbasic/php/config.php:101 +msgid "Narrow navbar" +msgstr "Smal navigasjonslinje" -#: ../../Zotlabs/Storage/Browser.php:137 -msgid "Addressbook" -msgstr "Adressebok" +#: ../../view/theme/redbasic/php/config.php:101 +#: ../../view/theme/redbasic/php/config.php:119 +#: ../../addon/channelreputation/channelreputation.php:111 +#: ../../addon/wiki/Mod_Wiki.php:230 ../../addon/wiki/Mod_Wiki.php:231 +#: ../../addon/redred/Mod_Redred.php:61 +#: ../../addon/statusnet/Mod_Statusnet.php:258 +#: ../../addon/statusnet/Mod_Statusnet.php:280 +#: ../../addon/statusnet/Mod_Statusnet.php:289 ../../addon/rtof/Mod_Rtof.php:47 +#: ../../addon/wppost/Mod_Wppost.php:84 ../../addon/wppost/Mod_Wppost.php:88 +#: ../../addon/wppost/Mod_Wppost.php:92 +#: ../../addon/content_import/Mod_content_import.php:136 +#: ../../addon/content_import/Mod_content_import.php:137 +#: ../../addon/ijpost/Mod_Ijpost.php:61 +#: ../../addon/pubcrawl/Mod_Pubcrawl.php:42 +#: ../../addon/dwpost/Mod_Dwpost.php:59 ../../addon/dwpost/Mod_Dwpost.php:63 +#: ../../addon/twitter/Mod_Twitter.php:160 +#: ../../addon/twitter/Mod_Twitter.php:169 ../../addon/pumpio/Mod_Pumpio.php:92 +#: ../../addon/pumpio/Mod_Pumpio.php:96 ../../addon/pumpio/Mod_Pumpio.php:100 +#: ../../addon/cart/submodules/subscriptions.php:153 +#: ../../addon/cart/submodules/subscriptions.php:425 +#: ../../addon/cart/submodules/hzservices.php:67 +#: ../../addon/cart/submodules/hzservices.php:651 +#: ../../addon/cart/submodules/hzservices.php:655 +#: ../../addon/cart/submodules/orderoptions.php:72 +#: ../../addon/cart/submodules/orderoptions.php:338 +#: ../../addon/cart/submodules/orderoptions.php:362 +#: ../../addon/cart/submodules/orderoptions.php:438 +#: ../../addon/cart/submodules/orderoptions.php:462 +#: ../../addon/cart/submodules/paypalbutton.php:87 +#: ../../addon/cart/submodules/paypalbutton.php:95 +#: ../../addon/cart/submodules/paypalbuttonV2.php:88 +#: ../../addon/cart/submodules/paypalbuttonV2.php:96 +#: ../../addon/cart/submodules/manualcat.php:63 +#: ../../addon/cart/submodules/manualcat.php:254 +#: ../../addon/cart/submodules/manualcat.php:258 +#: ../../addon/cart/Settings/Cart.php:61 ../../addon/cart/Settings/Cart.php:73 +#: ../../addon/cart/cart.php:1370 ../../addon/nofed/Mod_Nofed.php:40 +#: ../../addon/smileybutton/Mod_Smileybutton.php:42 +#: ../../addon/diaspora/Mod_Diaspora.php:70 +#: ../../addon/libertree/Mod_Libertree.php:57 +#: ../../addon/socialauth/Mod_SocialAuth.php:218 +#: ../../addon/ljpost/Mod_Ljpost.php:61 ../../addon/ljpost/Mod_Ljpost.php:65 +#: ../../addon/ljpost/Mod_Ljpost.php:69 ../../include/conversation.php:1475 +#: ../../Zotlabs/Module/Import.php:600 ../../Zotlabs/Module/Import.php:604 +#: ../../Zotlabs/Module/Import.php:605 ../../Zotlabs/Module/Register.php:512 +#: ../../Zotlabs/Module/Group.php:137 ../../Zotlabs/Module/Group.php:138 +#: ../../Zotlabs/Module/Group.php:147 ../../Zotlabs/Module/Group.php:249 +#: ../../Zotlabs/Module/Group.php:301 ../../Zotlabs/Module/Group.php:302 +#: ../../Zotlabs/Module/Mitem.php:176 ../../Zotlabs/Module/Mitem.php:177 +#: ../../Zotlabs/Module/Mitem.php:256 ../../Zotlabs/Module/Mitem.php:257 +#: ../../Zotlabs/Module/Filestorage.php:203 +#: ../../Zotlabs/Module/Filestorage.php:211 +#: ../../Zotlabs/Module/Admin/Site.php:319 +#: ../../Zotlabs/Module/Permcats.php:247 +#: ../../Zotlabs/Module/Contactedit.php:284 +#: ../../Zotlabs/Module/Contactedit.php:329 ../../Zotlabs/Module/Api.php:99 +#: ../../Zotlabs/Module/Photos.php:677 ../../Zotlabs/Module/Profiles.php:676 +#: ../../Zotlabs/Module/Profiles.php:686 ../../Zotlabs/Module/Profiles.php:694 +#: ../../Zotlabs/Module/Profiles.php:698 +#: ../../Zotlabs/Module/Settings/Channel.php:223 +#: ../../Zotlabs/Module/Settings/Display.php:86 +#: ../../Zotlabs/Module/Settings/Privacy.php:120 +#: ../../Zotlabs/Module/Settings/Privacy.php:121 +#: ../../Zotlabs/Module/Settings/Privacy.php:122 +#: ../../Zotlabs/Module/Menu.php:163 ../../Zotlabs/Module/Menu.php:222 +#: ../../Zotlabs/Module/Defperms.php:195 ../../Zotlabs/Module/Connedit.php:622 +#: ../../Zotlabs/Module/Sources.php:122 ../../Zotlabs/Module/Sources.php:157 +#: ../../Zotlabs/Lib/Libzotdir.php:165 ../../Zotlabs/Lib/Libzotdir.php:166 +#: ../../Zotlabs/Lib/Libzotdir.php:168 ../../Zotlabs/Storage/Browser.php:310 +#: ../../Zotlabs/Storage/Browser.php:311 ../../Zotlabs/Storage/Browser.php:312 +#: ../../Zotlabs/Storage/Browser.php:389 ../../Zotlabs/Storage/Browser.php:391 +#: ../../Zotlabs/Storage/Browser.php:552 ../../boot.php:1753 +msgid "No" +msgstr "Nei" -#: ../../Zotlabs/Storage/Browser.php:140 -msgid "Calendar" -msgstr "Kalender" +#: ../../view/theme/redbasic/php/config.php:101 +#: ../../view/theme/redbasic/php/config.php:119 +#: ../../addon/channelreputation/channelreputation.php:111 +#: ../../addon/wiki/Mod_Wiki.php:230 ../../addon/wiki/Mod_Wiki.php:231 +#: ../../addon/redred/Mod_Redred.php:61 +#: ../../addon/statusnet/Mod_Statusnet.php:258 +#: ../../addon/statusnet/Mod_Statusnet.php:280 +#: ../../addon/statusnet/Mod_Statusnet.php:289 ../../addon/rtof/Mod_Rtof.php:47 +#: ../../addon/wppost/Mod_Wppost.php:84 ../../addon/wppost/Mod_Wppost.php:88 +#: ../../addon/wppost/Mod_Wppost.php:92 +#: ../../addon/content_import/Mod_content_import.php:136 +#: ../../addon/content_import/Mod_content_import.php:137 +#: ../../addon/ijpost/Mod_Ijpost.php:61 +#: ../../addon/pubcrawl/Mod_Pubcrawl.php:42 +#: ../../addon/dwpost/Mod_Dwpost.php:59 ../../addon/dwpost/Mod_Dwpost.php:63 +#: ../../addon/twitter/Mod_Twitter.php:160 +#: ../../addon/twitter/Mod_Twitter.php:169 ../../addon/pumpio/Mod_Pumpio.php:92 +#: ../../addon/pumpio/Mod_Pumpio.php:96 ../../addon/pumpio/Mod_Pumpio.php:100 +#: ../../addon/cart/submodules/subscriptions.php:153 +#: ../../addon/cart/submodules/subscriptions.php:425 +#: ../../addon/cart/submodules/hzservices.php:67 +#: ../../addon/cart/submodules/hzservices.php:651 +#: ../../addon/cart/submodules/hzservices.php:655 +#: ../../addon/cart/submodules/orderoptions.php:72 +#: ../../addon/cart/submodules/orderoptions.php:337 +#: ../../addon/cart/submodules/orderoptions.php:361 +#: ../../addon/cart/submodules/orderoptions.php:437 +#: ../../addon/cart/submodules/orderoptions.php:461 +#: ../../addon/cart/submodules/paypalbutton.php:87 +#: ../../addon/cart/submodules/paypalbutton.php:95 +#: ../../addon/cart/submodules/paypalbuttonV2.php:88 +#: ../../addon/cart/submodules/paypalbuttonV2.php:96 +#: ../../addon/cart/submodules/manualcat.php:63 +#: ../../addon/cart/submodules/manualcat.php:254 +#: ../../addon/cart/submodules/manualcat.php:258 +#: ../../addon/cart/Settings/Cart.php:61 ../../addon/cart/Settings/Cart.php:73 +#: ../../addon/cart/cart.php:1370 ../../addon/nofed/Mod_Nofed.php:40 +#: ../../addon/smileybutton/Mod_Smileybutton.php:42 +#: ../../addon/diaspora/Mod_Diaspora.php:70 +#: ../../addon/libertree/Mod_Libertree.php:57 +#: ../../addon/socialauth/Mod_SocialAuth.php:218 +#: ../../addon/ljpost/Mod_Ljpost.php:61 ../../addon/ljpost/Mod_Ljpost.php:65 +#: ../../addon/ljpost/Mod_Ljpost.php:69 ../../include/conversation.php:1475 +#: ../../Zotlabs/Module/Import.php:600 ../../Zotlabs/Module/Import.php:604 +#: ../../Zotlabs/Module/Import.php:605 ../../Zotlabs/Module/Register.php:512 +#: ../../Zotlabs/Module/Group.php:137 ../../Zotlabs/Module/Group.php:138 +#: ../../Zotlabs/Module/Group.php:147 ../../Zotlabs/Module/Group.php:249 +#: ../../Zotlabs/Module/Group.php:301 ../../Zotlabs/Module/Group.php:302 +#: ../../Zotlabs/Module/Mitem.php:176 ../../Zotlabs/Module/Mitem.php:177 +#: ../../Zotlabs/Module/Mitem.php:256 ../../Zotlabs/Module/Mitem.php:257 +#: ../../Zotlabs/Module/Filestorage.php:203 +#: ../../Zotlabs/Module/Filestorage.php:211 +#: ../../Zotlabs/Module/Admin/Site.php:321 +#: ../../Zotlabs/Module/Permcats.php:247 +#: ../../Zotlabs/Module/Contactedit.php:284 ../../Zotlabs/Module/Api.php:98 +#: ../../Zotlabs/Module/Photos.php:677 ../../Zotlabs/Module/Profiles.php:676 +#: ../../Zotlabs/Module/Profiles.php:686 ../../Zotlabs/Module/Profiles.php:694 +#: ../../Zotlabs/Module/Profiles.php:698 +#: ../../Zotlabs/Module/Settings/Channel.php:223 +#: ../../Zotlabs/Module/Settings/Display.php:86 +#: ../../Zotlabs/Module/Settings/Privacy.php:120 +#: ../../Zotlabs/Module/Settings/Privacy.php:121 +#: ../../Zotlabs/Module/Settings/Privacy.php:122 +#: ../../Zotlabs/Module/Menu.php:163 ../../Zotlabs/Module/Menu.php:222 +#: ../../Zotlabs/Module/Defperms.php:195 ../../Zotlabs/Module/Sources.php:122 +#: ../../Zotlabs/Module/Sources.php:157 ../../Zotlabs/Lib/Libzotdir.php:165 +#: ../../Zotlabs/Lib/Libzotdir.php:166 ../../Zotlabs/Lib/Libzotdir.php:168 +#: ../../Zotlabs/Storage/Browser.php:310 ../../Zotlabs/Storage/Browser.php:311 +#: ../../Zotlabs/Storage/Browser.php:312 ../../Zotlabs/Storage/Browser.php:389 +#: ../../Zotlabs/Storage/Browser.php:391 ../../Zotlabs/Storage/Browser.php:552 +#: ../../boot.php:1753 +msgid "Yes" +msgstr "Ja" -#: ../../Zotlabs/Storage/Browser.php:143 -msgid "Schedule Inbox" -msgstr "Tidsplan innboks" +#: ../../view/theme/redbasic/php/config.php:102 +msgid "Navigation bar background color" +msgstr "Navigasjonslinjens bakgrunnsfarge" -#: ../../Zotlabs/Storage/Browser.php:146 -msgid "Schedule Outbox" -msgstr "Tidsplan utboks" +#: ../../view/theme/redbasic/php/config.php:103 +msgid "Navigation bar icon color " +msgstr "Navigasjonslinjens ikonfarge" -#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:798 -#: ../../Zotlabs/Module/Photos.php:1243 ../../Zotlabs/Lib/Apps.php:486 -#: ../../Zotlabs/Lib/Apps.php:561 ../../include/widgets.php:1505 -#: ../../include/conversation.php:1032 -msgid "Unknown" -msgstr "Ukjent" +#: ../../view/theme/redbasic/php/config.php:104 +msgid "Navigation bar active icon color " +msgstr "Navigasjonslinjens aktive ikoners farge" -#: ../../Zotlabs/Storage/Browser.php:226 ../../Zotlabs/Module/Fbrowser.php:85 -#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:93 -#: ../../include/conversation.php:1639 -msgid "Files" -msgstr "Filer" +#: ../../view/theme/redbasic/php/config.php:105 +msgid "Link color" +msgstr "Lenkefarge" -#: ../../Zotlabs/Storage/Browser.php:227 -msgid "Total" -msgstr "Totalt" +#: ../../view/theme/redbasic/php/config.php:106 +msgid "Link hover color" +msgstr "Lenkefarge når musepekeren er over" -#: ../../Zotlabs/Storage/Browser.php:229 -msgid "Shared" -msgstr "Delt" +#: ../../view/theme/redbasic/php/config.php:107 +msgid "Set font-color for banner" +msgstr "Angi skriftfargen for banneret" -#: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:306 -#: ../../Zotlabs/Module/Blocks.php:156 ../../Zotlabs/Module/Layouts.php:182 -#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/New_channel.php:142 -#: ../../Zotlabs/Module/Webpages.php:186 -msgid "Create" -msgstr "Lag" +#: ../../view/theme/redbasic/php/config.php:108 +msgid "Set the background color" +msgstr "Angi bakgrunnsfargen" -#: ../../Zotlabs/Storage/Browser.php:231 ../../Zotlabs/Storage/Browser.php:308 -#: ../../Zotlabs/Module/Cover_photo.php:357 -#: ../../Zotlabs/Module/Photos.php:825 ../../Zotlabs/Module/Photos.php:1364 -#: ../../Zotlabs/Module/Profile_photo.php:368 ../../include/widgets.php:1518 -msgid "Upload" -msgstr "Last opp" +#: ../../view/theme/redbasic/php/config.php:109 +msgid "Set the background image" +msgstr "Angi bakgrunnsbilde" -#: ../../Zotlabs/Storage/Browser.php:235 ../../Zotlabs/Module/Chat.php:247 -#: ../../Zotlabs/Module/Admin.php:1223 ../../Zotlabs/Module/Settings.php:592 -#: ../../Zotlabs/Module/Settings.php:618 -#: ../../Zotlabs/Module/Sharedwithme.php:99 -msgid "Name" -msgstr "Navn" +#: ../../view/theme/redbasic/php/config.php:110 +msgid "Set the background color of items" +msgstr "Angi bakgrunnsfargen til elementer" -#: ../../Zotlabs/Storage/Browser.php:236 -msgid "Type" -msgstr "Type" +#: ../../view/theme/redbasic/php/config.php:111 +msgid "Set the background color of comments" +msgstr "Angi bakgrunnsfargen til kommentarer" -#: ../../Zotlabs/Storage/Browser.php:237 -#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1344 -msgid "Size" -msgstr "Størrelse" +#: ../../view/theme/redbasic/php/config.php:112 +msgid "Set font-size for the entire application" +msgstr "Angi skriftstørrelsen for hele programmet" -#: ../../Zotlabs/Storage/Browser.php:238 -#: ../../Zotlabs/Module/Sharedwithme.php:102 -msgid "Last Modified" -msgstr "Sist endret" +#: ../../view/theme/redbasic/php/config.php:112 +msgid "Examples: 1rem, 100%, 16px" +msgstr "For eksempel: 1rem, 100%, 16px" -#: ../../Zotlabs/Storage/Browser.php:240 ../../Zotlabs/Module/Blocks.php:157 -#: ../../Zotlabs/Module/Editblock.php:109 -#: ../../Zotlabs/Module/Connections.php:290 -#: ../../Zotlabs/Module/Connections.php:310 -#: ../../Zotlabs/Module/Editpost.php:84 -#: ../../Zotlabs/Module/Editlayout.php:113 -#: ../../Zotlabs/Module/Editwebpage.php:146 -#: ../../Zotlabs/Module/Layouts.php:190 ../../Zotlabs/Module/Menu.php:112 -#: ../../Zotlabs/Module/Admin.php:2113 ../../Zotlabs/Module/Settings.php:652 -#: ../../Zotlabs/Module/Thing.php:260 ../../Zotlabs/Module/Webpages.php:187 -#: ../../Zotlabs/Lib/Apps.php:337 ../../Zotlabs/Lib/ThreadItem.php:106 -#: ../../include/channel.php:937 ../../include/channel.php:941 -#: ../../include/menu.php:108 ../../include/page_widgets.php:8 -#: ../../include/page_widgets.php:36 -msgid "Edit" -msgstr "Endre" +#: ../../view/theme/redbasic/php/config.php:113 +msgid "Set font-color for posts and comments" +msgstr "Angi skriftfargen for innlegg og kommentarer" -#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Blocks.php:159 -#: ../../Zotlabs/Module/Connedit.php:572 -#: ../../Zotlabs/Module/Editblock.php:134 -#: ../../Zotlabs/Module/Connections.php:263 -#: ../../Zotlabs/Module/Editlayout.php:136 -#: ../../Zotlabs/Module/Editwebpage.php:170 ../../Zotlabs/Module/Group.php:177 -#: ../../Zotlabs/Module/Photos.php:1173 ../../Zotlabs/Module/Admin.php:1039 -#: ../../Zotlabs/Module/Admin.php:1213 ../../Zotlabs/Module/Admin.php:2114 -#: ../../Zotlabs/Module/Settings.php:653 ../../Zotlabs/Module/Thing.php:261 -#: ../../Zotlabs/Module/Webpages.php:189 ../../Zotlabs/Lib/Apps.php:338 -#: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:657 -msgid "Delete" -msgstr "Slett" +#: ../../view/theme/redbasic/php/config.php:114 +msgid "Set radius of corners" +msgstr "Angi hjørneradius" -#: ../../Zotlabs/Storage/Browser.php:285 -#, php-format -msgid "You are using %1$s of your available file storage." -msgstr "Du bruker %1$s av din tilgjengelige lagringsplass." +#: ../../view/theme/redbasic/php/config.php:114 +msgid "Example: 4px" +msgstr "For eksempel: 4px" -#: ../../Zotlabs/Storage/Browser.php:290 -#, php-format -msgid "You are using %1$s of %2$s available file storage. (%3$s%)" -msgstr "Du bruker %1$s av %2$s tilgjengelig lagringsplass (%3$s%)" +#: ../../view/theme/redbasic/php/config.php:115 +msgid "Set shadow depth of photos" +msgstr "Angi skyggedybden til bilder" -#: ../../Zotlabs/Storage/Browser.php:302 -msgid "WARNING:" -msgstr "ADVARSEL:" +#: ../../view/theme/redbasic/php/config.php:116 +msgid "Set maximum width of content region in rem" +msgstr "Set maksbredde for hovedregionen i rem" -#: ../../Zotlabs/Storage/Browser.php:305 -msgid "Create new folder" -msgstr "Lag ny mappe" +#: ../../view/theme/redbasic/php/config.php:116 +msgid "Leave empty for default width" +msgstr "La feltet stå tomt for å bruke standard bredde" -#: ../../Zotlabs/Storage/Browser.php:307 -msgid "Upload file" -msgstr "Last opp fil" +#: ../../view/theme/redbasic/php/config.php:117 +msgid "Set size of conversation author photo" +msgstr "Angi størrelsen for samtalens forfatterbilde" -#: ../../Zotlabs/Web/WebServer.php:120 ../../Zotlabs/Module/Dreport.php:10 -#: ../../Zotlabs/Module/Dreport.php:49 ../../Zotlabs/Module/Group.php:72 -#: ../../Zotlabs/Module/Like.php:284 ../../Zotlabs/Module/Import_items.php:112 -#: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:62 -#: ../../include/items.php:385 -msgid "Permission denied" -msgstr "Tillatelse avvist" +#: ../../view/theme/redbasic/php/config.php:118 +msgid "Set size of followup author photos" +msgstr "Angi størrelsen på forfatterbilder ved oppfølging" -#: ../../Zotlabs/Web/WebServer.php:121 ../../Zotlabs/Web/Router.php:65 -#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Blocks.php:73 -#: ../../Zotlabs/Module/Blocks.php:80 ../../Zotlabs/Module/Channel.php:105 -#: ../../Zotlabs/Module/Channel.php:226 ../../Zotlabs/Module/Channel.php:267 -#: ../../Zotlabs/Module/Chat.php:100 ../../Zotlabs/Module/Chat.php:105 -#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Block.php:26 -#: ../../Zotlabs/Module/Block.php:76 ../../Zotlabs/Module/Bookmarks.php:61 -#: ../../Zotlabs/Module/Connedit.php:366 ../../Zotlabs/Module/Editblock.php:67 -#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Connections.php:33 -#: ../../Zotlabs/Module/Cover_photo.php:277 -#: ../../Zotlabs/Module/Cover_photo.php:290 -#: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Events.php:265 -#: ../../Zotlabs/Module/Editlayout.php:67 -#: ../../Zotlabs/Module/Editlayout.php:90 -#: ../../Zotlabs/Module/Editwebpage.php:69 -#: ../../Zotlabs/Module/Editwebpage.php:90 -#: ../../Zotlabs/Module/Editwebpage.php:105 -#: ../../Zotlabs/Module/Editwebpage.php:127 ../../Zotlabs/Module/Group.php:13 -#: ../../Zotlabs/Module/Api.php:13 ../../Zotlabs/Module/Api.php:18 -#: ../../Zotlabs/Module/Filestorage.php:24 -#: ../../Zotlabs/Module/Filestorage.php:79 -#: ../../Zotlabs/Module/Filestorage.php:94 -#: ../../Zotlabs/Module/Filestorage.php:121 ../../Zotlabs/Module/Item.php:210 -#: ../../Zotlabs/Module/Item.php:218 ../../Zotlabs/Module/Item.php:1070 -#: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78 -#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Id.php:76 -#: ../../Zotlabs/Module/Like.php:181 ../../Zotlabs/Module/Invite.php:17 -#: ../../Zotlabs/Module/Invite.php:91 ../../Zotlabs/Module/Locs.php:87 -#: ../../Zotlabs/Module/Mail.php:129 ../../Zotlabs/Module/Manage.php:10 -#: ../../Zotlabs/Module/Menu.php:78 ../../Zotlabs/Module/Message.php:18 -#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Network.php:17 -#: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/New_channel.php:77 -#: ../../Zotlabs/Module/New_channel.php:104 -#: ../../Zotlabs/Module/Notifications.php:70 -#: ../../Zotlabs/Module/Photos.php:75 ../../Zotlabs/Module/Page.php:35 -#: ../../Zotlabs/Module/Page.php:90 ../../Zotlabs/Module/Pdledit.php:26 -#: ../../Zotlabs/Module/Poke.php:137 ../../Zotlabs/Module/Profile.php:68 -#: ../../Zotlabs/Module/Profile.php:76 ../../Zotlabs/Module/Profiles.php:203 -#: ../../Zotlabs/Module/Profiles.php:601 -#: ../../Zotlabs/Module/Profile_photo.php:256 -#: ../../Zotlabs/Module/Profile_photo.php:269 -#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Appman.php:75 -#: ../../Zotlabs/Module/Register.php:77 ../../Zotlabs/Module/Regmod.php:21 -#: ../../Zotlabs/Module/Service_limits.php:11 -#: ../../Zotlabs/Module/Settings.php:572 ../../Zotlabs/Module/Setup.php:215 -#: ../../Zotlabs/Module/Sharedwithme.php:11 -#: ../../Zotlabs/Module/Sources.php:74 ../../Zotlabs/Module/Suggest.php:30 -#: ../../Zotlabs/Module/Thing.php:274 ../../Zotlabs/Module/Thing.php:294 -#: ../../Zotlabs/Module/Thing.php:331 -#: ../../Zotlabs/Module/Viewconnections.php:25 -#: ../../Zotlabs/Module/Viewconnections.php:30 -#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Webpages.php:74 -#: ../../Zotlabs/Lib/Chatroom.php:137 ../../include/items.php:3438 -#: ../../include/attach.php:141 ../../include/attach.php:189 -#: ../../include/attach.php:252 ../../include/attach.php:266 -#: ../../include/attach.php:273 ../../include/attach.php:338 -#: ../../include/attach.php:352 ../../include/attach.php:359 -#: ../../include/attach.php:437 ../../include/attach.php:895 -#: ../../include/attach.php:966 ../../include/attach.php:1118 -#: ../../include/photos.php:27 -msgid "Permission denied." -msgstr "Tillatelse avslått." +#: ../../view/theme/redbasic/php/config.php:119 +msgid "Show advanced settings" +msgstr "Vis avanserte innstillinger" -#: ../../Zotlabs/Web/Router.php:146 ../../Zotlabs/Module/Help.php:94 -msgid "Not Found" -msgstr "Ikke funnet" +#: ../../util/nconfig.php:34 +msgid "Source channel not found." +msgstr "Fant ikke kildekanalen." -#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Block.php:79 -#: ../../Zotlabs/Module/Display.php:117 ../../Zotlabs/Module/Help.php:97 -#: ../../Zotlabs/Module/Page.php:93 -msgid "Page not found." -msgstr "Siden ikke funnet." +#: ../../addon/channelreputation/channelreputation.php:101 +#: ../../addon/channelreputation/channelreputation.php:102 +#: ../../addon/cart/myshop.php:144 ../../addon/cart/myshop.php:180 +#: ../../addon/cart/myshop.php:214 ../../addon/cart/myshop.php:261 +#: ../../addon/cart/myshop.php:296 ../../addon/cart/myshop.php:319 +msgid "Access Denied" +msgstr "Ingen tilgang" -#: ../../Zotlabs/Zot/Auth.php:138 -msgid "" -"Remote authentication blocked. You are logged into this site locally. Please" -" logout and retry." -msgstr "Fjernautentisering blokkert. Du er logget inn på dette nettstedet lokalt. Vennligst logg ut og prøv på nytt." +#: ../../addon/channelreputation/channelreputation.php:109 +msgid "Enable Community Moderation" +msgstr "Slå på gruppemoderering" -#: ../../Zotlabs/Zot/Auth.php:246 ../../Zotlabs/Module/Openid.php:76 -#: ../../Zotlabs/Module/Openid.php:183 -#, php-format -msgid "Welcome %s. Remote authentication successful." -msgstr "Velkommen %s. Ekstern autentisering er vellykket." +#: ../../addon/channelreputation/channelreputation.php:117 +msgid "Reputation automatically given to new members" +msgstr "" -#: ../../Zotlabs/Module/Achievements.php:15 ../../Zotlabs/Module/Blocks.php:33 -#: ../../Zotlabs/Module/Connect.php:17 ../../Zotlabs/Module/Editblock.php:31 -#: ../../Zotlabs/Module/Editlayout.php:31 -#: ../../Zotlabs/Module/Editwebpage.php:33 -#: ../../Zotlabs/Module/Filestorage.php:60 ../../Zotlabs/Module/Hcard.php:12 -#: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Profile.php:20 -#: ../../Zotlabs/Module/Webpages.php:34 ../../include/channel.php:837 -msgid "Requested profile is not available." -msgstr "Forespurt profil er ikke tilgjengelig." +#: ../../addon/channelreputation/channelreputation.php:118 +msgid "Reputation will never fall below this value" +msgstr "" -#: ../../Zotlabs/Module/Achievements.php:38 -msgid "Some blurb about what to do when you're new here" -msgstr "En standardtekst om hva du bør gjøre som ny her" +#: ../../addon/channelreputation/channelreputation.php:119 +msgid "Minimum reputation before posting is allowed" +msgstr "" -#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:152 -#: ../../Zotlabs/Module/Editblock.php:108 -msgid "Block Name" -msgstr "Byggeklossens navn" +#: ../../addon/channelreputation/channelreputation.php:120 +msgid "Minimum reputation before commenting is allowed" +msgstr "" -#: ../../Zotlabs/Module/Blocks.php:151 ../../include/text.php:2265 -msgid "Blocks" -msgstr "Byggeklosser" +#: ../../addon/channelreputation/channelreputation.php:121 +msgid "Minimum reputation before a member is able to moderate other posts" +msgstr "" -#: ../../Zotlabs/Module/Blocks.php:153 -msgid "Block Title" -msgstr "Byggeklossens tittel" +#: ../../addon/channelreputation/channelreputation.php:122 +msgid "" +"Max ratio of moderator's reputation that can be added to/deducted from " +"reputation of person being moderated" +msgstr "" -#: ../../Zotlabs/Module/Blocks.php:154 ../../Zotlabs/Module/Layouts.php:188 -#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Webpages.php:198 -#: ../../include/page_widgets.php:44 -msgid "Created" -msgstr "Laget" +#: ../../addon/channelreputation/channelreputation.php:123 +msgid "Reputation \"cost\" to post" +msgstr "" -#: ../../Zotlabs/Module/Blocks.php:155 ../../Zotlabs/Module/Layouts.php:189 -#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Webpages.php:199 -#: ../../include/page_widgets.php:45 -msgid "Edited" -msgstr "Endret" +#: ../../addon/channelreputation/channelreputation.php:124 +msgid "Reputation \"cost\" to comment" +msgstr "" -#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:191 -#: ../../Zotlabs/Module/Photos.php:1072 ../../Zotlabs/Module/Webpages.php:188 -#: ../../include/conversation.php:1208 -msgid "Share" -msgstr "Del" +#: ../../addon/channelreputation/channelreputation.php:125 +msgid "" +"Reputation automatically recovers at this rate per hour until it reaches " +"minimum_to_post" +msgstr "" -#: ../../Zotlabs/Module/Blocks.php:163 ../../Zotlabs/Module/Layouts.php:195 -#: ../../Zotlabs/Module/Pubsites.php:47 ../../Zotlabs/Module/Webpages.php:193 -#: ../../include/page_widgets.php:39 -msgid "View" -msgstr "Vis" +#: ../../addon/channelreputation/channelreputation.php:126 +msgid "" +"When minimum_to_moderate > reputation > minimum_to_post reputation recovers " +"at this rate per hour" +msgstr "" -#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Block.php:43 -#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Wall_upload.php:33 -msgid "Channel not found." -msgstr "Kanalen ble ikke funnet." +#: ../../addon/channelreputation/channelreputation.php:140 +msgid "Community Moderation Settings" +msgstr "" -#: ../../Zotlabs/Module/Cal.php:69 -msgid "Permissions denied." -msgstr "Tillatelse avvist." +#: ../../addon/channelreputation/channelreputation.php:232 +msgid "Channel Reputation" +msgstr "" -#: ../../Zotlabs/Module/Cal.php:259 ../../Zotlabs/Module/Events.php:588 -msgid "l, F j" -msgstr "l, F j" +#: ../../addon/channelreputation/channelreputation.php:233 +#: ../../include/acl_selectors.php:156 ../../Zotlabs/Widget/Pinned.php:161 +#: ../../Zotlabs/Module/Photos.php:1279 ../../Zotlabs/Lib/ThreadItem.php:503 +#: ../../Zotlabs/Storage/Browser.php:411 +msgid "Close" +msgstr "Lukk" -#: ../../Zotlabs/Module/Cal.php:308 ../../Zotlabs/Module/Events.php:637 -#: ../../include/text.php:1732 -msgid "Link to Source" -msgstr "Lenke til kilde" +#: ../../addon/channelreputation/channelreputation.php:236 +msgid "An Error has occurred." +msgstr "Det oppsto en feil." -#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 -msgid "Edit Event" -msgstr "Endre hendelse" +#: ../../addon/channelreputation/channelreputation.php:254 +msgid "Upvote" +msgstr "Stem opp" -#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 -msgid "Create Event" -msgstr "Lag hendelse" +#: ../../addon/channelreputation/channelreputation.php:255 +msgid "Downvote" +msgstr "Stem ned" -#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339 -#: ../../Zotlabs/Module/Events.php:666 ../../Zotlabs/Module/Events.php:673 -#: ../../Zotlabs/Module/Photos.php:949 -msgid "Previous" -msgstr "Forrige" +#: ../../addon/channelreputation/channelreputation.php:414 +msgid "Can moderate reputation on my channel." +msgstr "" -#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 -#: ../../Zotlabs/Module/Events.php:667 ../../Zotlabs/Module/Events.php:674 -#: ../../Zotlabs/Module/Photos.php:958 ../../Zotlabs/Module/Setup.php:267 -msgid "Next" -msgstr "Neste" +#: ../../addon/superblock/superblock.php:337 +msgid "Block Completely" +msgstr "Blokker helt" -#: ../../Zotlabs/Module/Cal.php:334 ../../Zotlabs/Module/Events.php:668 -#: ../../include/widgets.php:755 -msgid "Export" -msgstr "Eksport" +#: ../../addon/superblock/Mod_Superblock.php:62 +msgid "superblock settings updated" +msgstr "innstillingene til superblokk ble oppdatert" -#: ../../Zotlabs/Module/Cal.php:337 ../../Zotlabs/Module/Events.php:671 -#: ../../include/widgets.php:756 -msgid "Import" -msgstr "Importer" +#: ../../addon/superblock/Mod_Superblock.php:86 +msgid "Currently blocked" +msgstr "Blokkert for øyeblikket" -#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Chat.php:196 -#: ../../Zotlabs/Module/Chat.php:238 ../../Zotlabs/Module/Connect.php:98 -#: ../../Zotlabs/Module/Connedit.php:731 ../../Zotlabs/Module/Events.php:475 -#: ../../Zotlabs/Module/Events.php:672 ../../Zotlabs/Module/Group.php:85 -#: ../../Zotlabs/Module/Filestorage.php:162 -#: ../../Zotlabs/Module/Import.php:550 -#: ../../Zotlabs/Module/Import_items.php:120 -#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 -#: ../../Zotlabs/Module/Mail.php:378 ../../Zotlabs/Module/Mood.php:139 -#: ../../Zotlabs/Module/Mitem.php:235 ../../Zotlabs/Module/Photos.php:677 -#: ../../Zotlabs/Module/Photos.php:1052 ../../Zotlabs/Module/Photos.php:1092 -#: ../../Zotlabs/Module/Photos.php:1210 ../../Zotlabs/Module/Pconfig.php:107 -#: ../../Zotlabs/Module/Pdledit.php:66 ../../Zotlabs/Module/Poke.php:186 -#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Rate.php:170 -#: ../../Zotlabs/Module/Admin.php:492 ../../Zotlabs/Module/Admin.php:688 -#: ../../Zotlabs/Module/Admin.php:771 ../../Zotlabs/Module/Admin.php:1032 -#: ../../Zotlabs/Module/Admin.php:1211 ../../Zotlabs/Module/Admin.php:1421 -#: ../../Zotlabs/Module/Admin.php:1648 ../../Zotlabs/Module/Admin.php:1733 -#: ../../Zotlabs/Module/Admin.php:2116 ../../Zotlabs/Module/Appman.php:126 -#: ../../Zotlabs/Module/Settings.php:590 ../../Zotlabs/Module/Settings.php:703 -#: ../../Zotlabs/Module/Settings.php:731 ../../Zotlabs/Module/Settings.php:754 -#: ../../Zotlabs/Module/Settings.php:842 -#: ../../Zotlabs/Module/Settings.php:1034 ../../Zotlabs/Module/Setup.php:312 -#: ../../Zotlabs/Module/Setup.php:353 ../../Zotlabs/Module/Sources.php:114 -#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Thing.php:316 -#: ../../Zotlabs/Module/Thing.php:362 ../../Zotlabs/Module/Xchan.php:15 -#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/widgets.php:757 -#: ../../include/widgets.php:769 ../../include/js_strings.php:22 -#: ../../view/theme/redbasic/php/config.php:99 -msgid "Submit" -msgstr "Send" +#: ../../addon/superblock/Mod_Superblock.php:88 +msgid "No channels currently blocked" +msgstr "Ingen kanaler er blokkert i øyeblikket" -#: ../../Zotlabs/Module/Cal.php:341 ../../Zotlabs/Module/Events.php:675 -msgid "Today" -msgstr "Idag" +#: ../../addon/superblock/Mod_Superblock.php:90 +#: ../../Zotlabs/Module/Tagrm.php:137 ../../Zotlabs/Module/Admin/Addons.php:459 +#: ../../Zotlabs/Module/Cover_photo.php:424 +#: ../../Zotlabs/Module/Photos.php:1002 +msgid "Remove" +msgstr "Fjern" -#: ../../Zotlabs/Module/Channel.php:29 ../../Zotlabs/Module/Chat.php:25 -msgid "You must be logged in to see this page." -msgstr "Du må være innloegget for å se denne siden." +#: ../../addon/nsabait/Mod_Nsabait.php:23 +msgid "NSA Bait App" +msgstr "" -#: ../../Zotlabs/Module/Channel.php:41 -msgid "Posts and comments" +#: ../../addon/nsabait/Mod_Nsabait.php:25 +msgid "Make yourself a political target." msgstr "" -#: ../../Zotlabs/Module/Channel.php:42 -msgid "Only posts" +#: ../../addon/visage/Mod_Visage.php:23 +msgid "Recent Channel/Profile Viewers" msgstr "" -#: ../../Zotlabs/Module/Channel.php:102 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Utilstrekkelig tillatelse. Forespørsel omdirigert til profilsiden." +#: ../../addon/visage/Mod_Visage.php:34 +msgid "No entries." +msgstr "" -#: ../../Zotlabs/Module/Chat.php:181 -msgid "Room not found" -msgstr "Rommet ble ikke funnet" +#: ../../addon/wiki/Widget/Wiki_pages.php:35 +#: ../../addon/wiki/Widget/Wiki_pages.php:92 +msgid "Add new page" +msgstr "Legg til ny side" -#: ../../Zotlabs/Module/Chat.php:197 -msgid "Leave Room" -msgstr "Forlat rom" +#: ../../addon/wiki/Widget/Wiki_pages.php:39 +#: ../../addon/wiki/Widget/Wiki_pages.php:96 ../../addon/wiki/Mod_Wiki.php:220 +#: ../../addon/wiki/Mod_Wiki.php:374 ../../addon/mdpost/mdpost.php:41 +#: ../../include/text.php:2201 +msgid "Markdown" +msgstr "Markdown" -#: ../../Zotlabs/Module/Chat.php:198 -msgid "Delete Room" -msgstr "" +#: ../../addon/wiki/Widget/Wiki_pages.php:39 +#: ../../addon/wiki/Widget/Wiki_pages.php:96 ../../addon/wiki/Mod_Wiki.php:220 +#: ../../addon/wiki/Mod_Wiki.php:374 ../../include/text.php:2199 +msgid "BBcode" +msgstr "BBcode" -#: ../../Zotlabs/Module/Chat.php:199 -msgid "I am away right now" -msgstr "Jeg er borte akkurat nå" +#: ../../addon/wiki/Widget/Wiki_pages.php:39 +#: ../../addon/wiki/Widget/Wiki_pages.php:96 ../../addon/wiki/Mod_Wiki.php:220 +#: ../../include/text.php:2202 +msgid "Text" +msgstr "Tekst" -#: ../../Zotlabs/Module/Chat.php:200 -msgid "I am online" -msgstr "Jeg er online" +#: ../../addon/wiki/Widget/Wiki_pages.php:42 +#: ../../addon/wiki/Widget/Wiki_pages.php:99 +#: ../../Zotlabs/Module/Dreport.php:130 +msgid "Options" +msgstr "Valg" -#: ../../Zotlabs/Module/Chat.php:202 -msgid "Bookmark this room" -msgstr "Bokmerk dette rommet" +#: ../../addon/wiki/Widget/Wiki_pages.php:86 +msgid "Wiki Pages" +msgstr "Wikisider" -#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:205 -#: ../../Zotlabs/Module/Mail.php:314 ../../include/conversation.php:1176 -msgid "Please enter a link URL:" -msgstr "Vennligst skriv inn en lenke URL:" +#: ../../addon/wiki/Widget/Wiki_pages.php:97 +msgid "Page name" +msgstr "Sidenavn" -#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:258 -#: ../../Zotlabs/Module/Mail.php:383 ../../Zotlabs/Lib/ThreadItem.php:722 -#: ../../include/conversation.php:1256 -msgid "Encrypt text" -msgstr "Krypter tekst" +#: ../../addon/wiki/Widget/Wiki_list.php:20 ../../addon/wiki/Mod_Wiki.php:209 +#: ../../addon/wiki/wiki.php:70 ../../include/nav.php:515 +msgid "Wikis" +msgstr "Wikier" -#: ../../Zotlabs/Module/Chat.php:207 ../../Zotlabs/Module/Editblock.php:111 -#: ../../Zotlabs/Module/Editwebpage.php:147 ../../Zotlabs/Module/Mail.php:252 -#: ../../Zotlabs/Module/Mail.php:377 ../../include/conversation.php:1143 -msgid "Insert web link" -msgstr "Sett inn web-lenke" +#: ../../addon/wiki/Widget/Wiki_page_history.php:28 +#: ../../addon/wiki/Lib/NativeWikiPage.php:588 +#: ../../addon/wiki/Mod_Wiki.php:221 ../../addon/rendezvous/rendezvous.php:172 +#: ../../Zotlabs/Module/Oauth.php:111 ../../Zotlabs/Module/Oauth.php:137 +#: ../../Zotlabs/Module/Chat.php:255 ../../Zotlabs/Module/Cdav.php:1372 +#: ../../Zotlabs/Module/Sharedwithme.php:106 +#: ../../Zotlabs/Module/Admin/Channels.php:159 +#: ../../Zotlabs/Module/Oauth2.php:116 ../../Zotlabs/Module/Oauth2.php:144 +#: ../../Zotlabs/Module/Connedit.php:732 ../../Zotlabs/Storage/Browser.php:377 +msgid "Name" +msgstr "Navn" -#: ../../Zotlabs/Module/Chat.php:218 -msgid "Feature disabled." -msgstr "" +#: ../../addon/wiki/Widget/Wiki_page_history.php:29 +#: ../../addon/wiki/Lib/NativeWikiPage.php:589 +msgctxt "wiki_history" +msgid "Message" +msgstr "Melding" -#: ../../Zotlabs/Module/Chat.php:232 -msgid "New Chatroom" -msgstr "Nytt chatrom" +#: ../../addon/wiki/Widget/Wiki_page_history.php:30 +#: ../../addon/wiki/Lib/NativeWikiPage.php:590 +msgid "Date" +msgstr "Dato" -#: ../../Zotlabs/Module/Chat.php:233 -msgid "Chatroom name" -msgstr "" +#: ../../addon/wiki/Widget/Wiki_page_history.php:31 +#: ../../addon/wiki/Lib/NativeWikiPage.php:591 +#: ../../addon/wiki/Mod_Wiki.php:370 +msgid "Revert" +msgstr "Tilbakestill" -#: ../../Zotlabs/Module/Chat.php:234 -msgid "Expiration of chats (minutes)" -msgstr "Chat utgår (antall minutter)" +#: ../../addon/wiki/Widget/Wiki_page_history.php:32 +#: ../../addon/wiki/Lib/NativeWikiPage.php:592 +msgid "Compare" +msgstr "Sammenlign" + +#: ../../addon/wiki/Lib/NativeWiki.php:144 +msgid "Wiki updated successfully" +msgstr "Wikien ble oppdatert" + +#: ../../addon/wiki/Lib/NativeWiki.php:204 +msgid "Wiki files deleted successfully" +msgstr "Wikifiler ble slettet" + +#: ../../addon/wiki/Lib/NativeWikiPage.php:41 +#: ../../addon/wiki/Lib/NativeWikiPage.php:109 +msgid "(No Title)" +msgstr "(Ingen tittel)" + +#: ../../addon/wiki/Lib/NativeWikiPage.php:123 +msgid "Wiki page create failed." +msgstr "Kunne ikke opprette wikiside." + +#: ../../addon/wiki/Lib/NativeWikiPage.php:137 +msgid "Wiki not found." +msgstr "Fant ikke wikien." + +#: ../../addon/wiki/Lib/NativeWikiPage.php:148 +msgid "Destination name already exists" +msgstr "Navnet finnes allerede" + +#: ../../addon/wiki/Lib/NativeWikiPage.php:181 +#: ../../addon/wiki/Lib/NativeWikiPage.php:376 +msgid "Page not found" +msgstr "Fant ikke siden" + +#: ../../addon/wiki/Lib/NativeWikiPage.php:211 +msgid "Error reading page content" +msgstr "Det oppstod en feil under lesing av innholder på siden" + +#: ../../addon/wiki/Lib/NativeWikiPage.php:367 +#: ../../addon/wiki/Lib/NativeWikiPage.php:425 +#: ../../addon/wiki/Lib/NativeWikiPage.php:493 +#: ../../addon/wiki/Lib/NativeWikiPage.php:534 +msgid "Error reading wiki" +msgstr "Det oppstod en feil ved lesing av wikien" + +#: ../../addon/wiki/Lib/NativeWikiPage.php:411 +msgid "Page update failed." +msgstr "Oppdatering av siden mislyktes." + +#: ../../addon/wiki/Lib/NativeWikiPage.php:447 +msgid "Nothing deleted" +msgstr "Ingenting ble slettet" + +#: ../../addon/wiki/Lib/NativeWikiPage.php:514 +msgid "Compare: object not found." +msgstr "Sammanlign: fant ikke objektet." + +#: ../../addon/wiki/Lib/NativeWikiPage.php:521 +msgid "Page updated" +msgstr "Siden ble oppdatert" + +#: ../../addon/wiki/Lib/NativeWikiPage.php:529 +msgid "Wiki resource_id required for git commit" +msgstr "Wiki ressurs_id er nødvendig for å lagre i git" + +#: ../../addon/wiki/Lib/NativeWikiPage.php:545 ../../addon/cards/cards.php:103 +#: ../../addon/articles/articles.php:105 ../../include/help.php:133 +#: ../../Zotlabs/Module/Display.php:142 ../../Zotlabs/Module/Page.php:136 +#: ../../Zotlabs/Module/Block.php:77 ../../Zotlabs/Web/Router.php:186 +msgid "Page not found." +msgstr "Siden ikke funnet." -#: ../../Zotlabs/Module/Chat.php:235 ../../Zotlabs/Module/Filestorage.php:153 -#: ../../Zotlabs/Module/Photos.php:671 ../../Zotlabs/Module/Photos.php:1045 -#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:359 -#: ../../include/acl_selectors.php:283 -msgid "Permissions" -msgstr "Tillatelser" +#: ../../addon/wiki/Lib/NativeWikiPage.php:630 ../../include/bbcode.php:1059 +#: ../../include/bbcode.php:1244 +msgid "Different viewers will see this text differently" +msgstr "Denne teksten vil se forskjellig ut for ulike besøkende" -#: ../../Zotlabs/Module/Chat.php:246 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "%1$s sine chatrom" +#: ../../addon/wiki/Mod_Wiki.php:36 ../../addon/cart/cart.php:1410 +#: ../../addon/flashcards/Mod_Flashcards.php:52 +msgid "Profile Unavailable." +msgstr "Profilen er ikke tilgjengelig." + +#: ../../addon/wiki/Mod_Wiki.php:63 ../../addon/wiki/Mod_Wiki.php:288 +#: ../../addon/wiki/Mod_Wiki.php:431 ../../addon/openid/Mod_Id.php:53 +#: ../../addon/pumpio/pumpio.php:44 ../../addon/keepout/keepout.php:36 +#: ../../addon/cards/Mod_Card_edit.php:51 ../../addon/cards/Mod_Cards.php:89 +#: ../../addon/articles/Mod_Article_edit.php:51 +#: ../../addon/articles/Mod_Articles.php:94 ../../include/photos.php:30 +#: ../../include/items.php:3894 ../../include/attach.php:156 +#: ../../include/attach.php:205 ../../include/attach.php:278 +#: ../../include/attach.php:329 ../../include/attach.php:424 +#: ../../include/attach.php:438 ../../include/attach.php:445 +#: ../../include/attach.php:527 ../../include/attach.php:1096 +#: ../../include/attach.php:1169 ../../include/attach.php:1332 +#: ../../Zotlabs/Module/Attach_edit.php:90 +#: ../../Zotlabs/Module/Attach_edit.php:99 +#: ../../Zotlabs/Module/Attach_edit.php:106 ../../Zotlabs/Module/Network.php:18 +#: ../../Zotlabs/Module/Register.php:200 ../../Zotlabs/Module/Setup.php:218 +#: ../../Zotlabs/Module/Viewconnections.php:28 +#: ../../Zotlabs/Module/Viewconnections.php:33 +#: ../../Zotlabs/Module/Channel.php:220 ../../Zotlabs/Module/Channel.php:377 +#: ../../Zotlabs/Module/Channel.php:416 ../../Zotlabs/Module/Group.php:14 +#: ../../Zotlabs/Module/Group.php:30 ../../Zotlabs/Module/Editwebpage.php:68 +#: ../../Zotlabs/Module/Editwebpage.php:89 +#: ../../Zotlabs/Module/Editwebpage.php:107 +#: ../../Zotlabs/Module/Editwebpage.php:121 ../../Zotlabs/Module/Chat.php:111 +#: ../../Zotlabs/Module/Chat.php:116 +#: ../../Zotlabs/Module/Channel_calendar.php:232 +#: ../../Zotlabs/Module/Like.php:248 ../../Zotlabs/Module/Poke.php:157 +#: ../../Zotlabs/Module/Item.php:501 ../../Zotlabs/Module/Item.php:520 +#: ../../Zotlabs/Module/Item.php:530 ../../Zotlabs/Module/Item.php:1410 +#: ../../Zotlabs/Module/Mitem.php:129 ../../Zotlabs/Module/Profile.php:99 +#: ../../Zotlabs/Module/Profile.php:114 +#: ../../Zotlabs/Module/Sharedwithme.php:19 +#: ../../Zotlabs/Module/Webpages.php:131 +#: ../../Zotlabs/Module/Filestorage.php:20 +#: ../../Zotlabs/Module/Filestorage.php:78 +#: ../../Zotlabs/Module/Filestorage.php:96 +#: ../../Zotlabs/Module/Filestorage.php:119 +#: ../../Zotlabs/Module/Filestorage.php:165 +#: ../../Zotlabs/Module/Editpost.php:17 +#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Manage.php:10 +#: ../../Zotlabs/Module/Authtest.php:13 ../../Zotlabs/Module/Viewsrc.php:19 +#: ../../Zotlabs/Module/Moderate.php:15 ../../Zotlabs/Module/Display.php:384 +#: ../../Zotlabs/Module/Common.php:38 ../../Zotlabs/Module/New_channel.php:105 +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Service_limits.php:11 ../../Zotlabs/Module/Mood.php:126 +#: ../../Zotlabs/Module/Appman.php:153 ../../Zotlabs/Module/Api.php:24 +#: ../../Zotlabs/Module/Regmod.php:20 ../../Zotlabs/Module/Blocks.php:73 +#: ../../Zotlabs/Module/Blocks.php:80 ../../Zotlabs/Module/Vote.php:19 +#: ../../Zotlabs/Module/Profile_photo.php:390 +#: ../../Zotlabs/Module/Profile_photo.php:421 +#: ../../Zotlabs/Module/Editblock.php:67 ../../Zotlabs/Module/Settings.php:58 +#: ../../Zotlabs/Module/Editlayout.php:67 +#: ../../Zotlabs/Module/Editlayout.php:90 +#: ../../Zotlabs/Module/Connections.php:32 +#: ../../Zotlabs/Module/Cover_photo.php:341 +#: ../../Zotlabs/Module/Cover_photo.php:354 ../../Zotlabs/Module/Photos.php:71 +#: ../../Zotlabs/Module/Page.php:34 ../../Zotlabs/Module/Page.php:133 +#: ../../Zotlabs/Module/Profiles.php:171 ../../Zotlabs/Module/Profiles.php:615 +#: ../../Zotlabs/Module/Bookmarks.php:70 ../../Zotlabs/Module/Invite.php:51 +#: ../../Zotlabs/Module/Invite.php:302 ../../Zotlabs/Module/Block.php:24 +#: ../../Zotlabs/Module/Block.php:74 ../../Zotlabs/Module/Menu.php:130 +#: ../../Zotlabs/Module/Menu.php:141 ../../Zotlabs/Module/Defperms.php:181 +#: ../../Zotlabs/Module/Thing.php:282 ../../Zotlabs/Module/Thing.php:302 +#: ../../Zotlabs/Module/Thing.php:343 ../../Zotlabs/Module/Pdledit.php:35 +#: ../../Zotlabs/Module/Suggest.php:32 ../../Zotlabs/Module/Connedit.php:299 +#: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78 +#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Locs.php:98 +#: ../../Zotlabs/Module/Sources.php:80 ../../Zotlabs/Lib/Chatroom.php:135 +#: ../../Zotlabs/Web/WebServer.php:117 +msgid "Permission denied." +msgstr "Tillatelse avslått." -#: ../../Zotlabs/Module/Chat.php:251 -msgid "No chatrooms available" +#: ../../addon/wiki/Mod_Wiki.php:81 ../../addon/cart/manual_payments.php:93 +#: ../../addon/cart/submodules/paypalbutton.php:456 +#: ../../addon/cart/submodules/paypalbuttonV2.php:478 +#: ../../addon/cart/myshop.php:37 ../../addon/cart/cart.php:1558 +msgid "Invalid channel" +msgstr "Ugyldig kanal" + +#: ../../addon/wiki/Mod_Wiki.php:136 +msgid "Error retrieving wiki" +msgstr "Det oppstod en feil ved henting av wikien" + +#: ../../addon/wiki/Mod_Wiki.php:143 +msgid "Error creating zip file export folder" +msgstr "Det oppstod en feil ved eksport av mappe til zip fil" + +#: ../../addon/wiki/Mod_Wiki.php:194 +msgid "Error downloading wiki: " +msgstr "" + +#: ../../addon/wiki/Mod_Wiki.php:214 ../../addon/wiki/Mod_Wiki.php:387 +#: ../../addon/cards/Mod_Card_edit.php:99 ../../addon/cards/cards.php:73 +#: ../../addon/articles/Mod_Article_edit.php:97 +#: ../../addon/articles/articles.php:75 ../../include/menu.php:120 +#: ../../include/channel.php:1530 ../../include/channel.php:1534 +#: ../../Zotlabs/Widget/Cdav.php:142 ../../Zotlabs/Widget/Cdav.php:179 +#: ../../Zotlabs/Module/Group.php:245 ../../Zotlabs/Module/Oauth.php:171 +#: ../../Zotlabs/Module/Editwebpage.php:142 +#: ../../Zotlabs/Module/Webpages.php:252 +#: ../../Zotlabs/Module/Admin/Profs.php:175 ../../Zotlabs/Module/Blocks.php:160 +#: ../../Zotlabs/Module/Editblock.php:114 +#: ../../Zotlabs/Module/Editlayout.php:114 +#: ../../Zotlabs/Module/Connections.php:329 +#: ../../Zotlabs/Module/Connections.php:378 +#: ../../Zotlabs/Module/Connections.php:399 ../../Zotlabs/Module/Menu.php:176 +#: ../../Zotlabs/Module/Oauth2.php:192 ../../Zotlabs/Module/Thing.php:268 +#: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Lib/Apps.php:600 +#: ../../Zotlabs/Lib/ThreadItem.php:166 +msgid "Edit" +msgstr "Endre" + +#: ../../addon/wiki/Mod_Wiki.php:215 ../../Zotlabs/Storage/Browser.php:404 +msgid "Download" msgstr "" -#: ../../Zotlabs/Module/Chat.php:252 ../../Zotlabs/Module/Manage.php:143 -#: ../../Zotlabs/Module/Profiles.php:778 +#: ../../addon/wiki/Mod_Wiki.php:216 ../../addon/wiki/Mod_Wiki.php:412 +#: ../../Zotlabs/Module/Pubsites.php:60 ../../Zotlabs/Module/Webpages.php:258 +#: ../../Zotlabs/Module/Blocks.php:166 ../../Zotlabs/Module/Layouts.php:198 +msgid "View" +msgstr "Vis" + +#: ../../addon/wiki/Mod_Wiki.php:217 ../../Zotlabs/Module/Manage.php:137 +#: ../../Zotlabs/Module/Profiles.php:853 msgid "Create New" -msgstr "" +msgstr "Opprett nytt" -#: ../../Zotlabs/Module/Chat.php:255 -msgid "Expiration" +#: ../../addon/wiki/Mod_Wiki.php:219 +msgid "Wiki name" msgstr "" -#: ../../Zotlabs/Module/Chat.php:256 -msgid "min" +#: ../../addon/wiki/Mod_Wiki.php:220 +msgid "Content type" msgstr "" -#: ../../Zotlabs/Module/Chatsvc.php:117 -msgid "Away" -msgstr "Borte" +#: ../../addon/wiki/Mod_Wiki.php:222 ../../Zotlabs/Storage/Browser.php:378 +msgid "Type" +msgstr "Type" -#: ../../Zotlabs/Module/Chatsvc.php:122 -msgid "Online" -msgstr "Online" +#: ../../addon/wiki/Mod_Wiki.php:223 +msgid "Any type" +msgstr "" -#: ../../Zotlabs/Module/Block.php:31 ../../Zotlabs/Module/Page.php:40 -msgid "Invalid item." -msgstr "Ugyldig element." +#: ../../addon/wiki/Mod_Wiki.php:230 +msgid "Lock content type" +msgstr "" -#: ../../Zotlabs/Module/Bookmarks.php:53 -msgid "Bookmark added" -msgstr "Bokmerke lagt til" +#: ../../addon/wiki/Mod_Wiki.php:231 +msgid "Create a status post for this wiki" +msgstr "" -#: ../../Zotlabs/Module/Bookmarks.php:75 -msgid "My Bookmarks" -msgstr "Mine bokmerker" +#: ../../addon/wiki/Mod_Wiki.php:232 +msgid "Edit Wiki Name" +msgstr "" -#: ../../Zotlabs/Module/Bookmarks.php:86 -msgid "My Connections Bookmarks" -msgstr "Mine forbindelsers bokmerker" +#: ../../addon/wiki/Mod_Wiki.php:277 +msgid "Wiki not found" +msgstr "" -#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 -msgid "Continue" -msgstr "Fortsett" +#: ../../addon/wiki/Mod_Wiki.php:303 +msgid "Rename page" +msgstr "" -#: ../../Zotlabs/Module/Connect.php:90 -msgid "Premium Channel Setup" -msgstr "Premiumkanal-oppsett" +#: ../../addon/wiki/Mod_Wiki.php:304 ../../addon/hsse/hsse.php:186 +#: ../../include/conversation.php:1444 ../../Zotlabs/Widget/Cdav.php:140 +#: ../../Zotlabs/Module/Webpages.php:253 ../../Zotlabs/Module/Blocks.php:161 +#: ../../Zotlabs/Module/Photos.php:1084 ../../Zotlabs/Module/Layouts.php:194 +msgid "Share" +msgstr "Del" -#: ../../Zotlabs/Module/Connect.php:92 -msgid "Enable premium channel connection restrictions" -msgstr "Slå på restriksjoner for forbindelse med premiumkanal" +#: ../../addon/wiki/Mod_Wiki.php:324 +msgid "Error retrieving page content" +msgstr "" -#: ../../Zotlabs/Module/Connect.php:93 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "Vennligst skriv dine restriksjoner og betingelser, slik som PayPal-kvittering, retningslinjer for bruk, og så videre." +#: ../../addon/wiki/Mod_Wiki.php:332 ../../addon/wiki/Mod_Wiki.php:334 +msgid "New page" +msgstr "" -#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" -msgstr "Denne kanalen kan kreve ytterligere steg og bekreftelse av følgende betingelser før tilkobling:" +#: ../../addon/wiki/Mod_Wiki.php:369 +msgid "Revision Comparison" +msgstr "" -#: ../../Zotlabs/Module/Connect.php:96 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "Potensielle forbindelser vil da se følgende tekst før de går videre:" +#: ../../addon/wiki/Mod_Wiki.php:371 ../../addon/wiki/Mod_Wiki.php:404 +#: ../../addon/hsse/hsse.php:209 ../../addon/hsse/hsse.php:258 +#: ../../addon/cards/Mod_Card_edit.php:132 +#: ../../addon/articles/Mod_Article_edit.php:130 +#: ../../include/conversation.php:1467 ../../include/conversation.php:1522 +#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 +#: ../../Zotlabs/Module/Oauth.php:110 ../../Zotlabs/Module/Oauth.php:136 +#: ../../Zotlabs/Module/Editwebpage.php:169 ../../Zotlabs/Module/Cdav.php:1057 +#: ../../Zotlabs/Module/Cdav.php:1390 ../../Zotlabs/Module/Tagrm.php:15 +#: ../../Zotlabs/Module/Tagrm.php:138 ../../Zotlabs/Module/Editpost.php:111 +#: ../../Zotlabs/Module/Admin/Addons.php:427 +#: ../../Zotlabs/Module/Profile_photo.php:553 +#: ../../Zotlabs/Module/Editblock.php:141 ../../Zotlabs/Module/Filer.php:56 +#: ../../Zotlabs/Module/Editlayout.php:140 +#: ../../Zotlabs/Module/Cover_photo.php:428 ../../Zotlabs/Module/Oauth2.php:115 +#: ../../Zotlabs/Module/Oauth2.php:143 ../../Zotlabs/Module/Connedit.php:750 +#: ../../Zotlabs/Storage/Browser.php:383 +msgid "Cancel" +msgstr "Avbryt" -#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 -msgid "" -"By continuing, I certify that I have complied with any instructions provided" -" on this page." -msgstr "Ved å fortsette bekrefter jeg at jeg har oppfylt alle instruksjoner gitt på denne siden." +#: ../../addon/wiki/Mod_Wiki.php:377 +msgid "Short description of your changes (optional)" +msgstr "" -#: ../../Zotlabs/Module/Connect.php:106 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(Ingen spesifikke instruksjoner er gitt av kanaleieren.)" +#: ../../addon/wiki/Mod_Wiki.php:387 ../../addon/wppost/wppost.php:174 +#: ../../addon/wppost/Mod_Wppost.php:96 ../../addon/dwpost/Mod_Dwpost.php:67 +#: ../../addon/dwpost/dwpost.php:134 ../../addon/ljpost/ljpost.php:134 +msgid "Source" +msgstr "" -#: ../../Zotlabs/Module/Connect.php:114 -msgid "Restricted or Premium Channel" -msgstr "Begrenset kanal eller premiumkanal" +#: ../../addon/wiki/Mod_Wiki.php:397 +msgid "New page name" +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:80 -msgid "Could not access contact record." -msgstr "Fikk ikke tilgang til kontaktinformasjonen." +#: ../../addon/wiki/Mod_Wiki.php:402 +msgid "Embed image from photo albums" +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:104 -msgid "Could not locate selected profile." -msgstr "Fant ikke valgt profil." +#: ../../addon/wiki/Mod_Wiki.php:403 ../../addon/hsse/hsse.php:208 +#: ../../include/conversation.php:1466 +msgid "Embed an image from your albums" +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:227 -msgid "Connection updated." -msgstr "Forbindelsen er oppdatert." +#: ../../addon/wiki/Mod_Wiki.php:405 ../../addon/hsse/hsse.php:210 +#: ../../addon/hsse/hsse.php:257 ../../include/conversation.php:1468 +#: ../../include/conversation.php:1521 +#: ../../Zotlabs/Module/Profile_photo.php:554 +#: ../../Zotlabs/Module/Cover_photo.php:429 +msgid "OK" +msgstr "OK" -#: ../../Zotlabs/Module/Connedit.php:229 -msgid "Failed to update connection record." -msgstr "Mislyktes med å oppdatere forbindelsesinformasjonen." +#: ../../addon/wiki/Mod_Wiki.php:406 ../../addon/hsse/hsse.php:139 +#: ../../include/conversation.php:1387 +#: ../../Zotlabs/Module/Profile_photo.php:555 +#: ../../Zotlabs/Module/Cover_photo.php:430 +msgid "Choose images to embed" +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:276 -msgid "is now connected to" -msgstr "er nå forbundet til" +#: ../../addon/wiki/Mod_Wiki.php:407 ../../addon/hsse/hsse.php:140 +#: ../../include/conversation.php:1388 +#: ../../Zotlabs/Module/Profile_photo.php:556 +#: ../../Zotlabs/Module/Cover_photo.php:431 +msgid "Choose an album" +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Connedit.php:654 -#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460 -#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Api.php:89 -#: ../../Zotlabs/Module/Filestorage.php:157 -#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 -#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 -#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 -#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:459 -#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 -#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 -#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 -msgid "No" -msgstr "Nei" +#: ../../addon/wiki/Mod_Wiki.php:408 ../../Zotlabs/Module/Profile_photo.php:557 +#: ../../Zotlabs/Module/Cover_photo.php:432 +msgid "Choose a different album" +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Events.php:459 -#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:469 -#: ../../Zotlabs/Module/Api.php:88 ../../Zotlabs/Module/Filestorage.php:157 -#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 -#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 -#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 -#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:461 -#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 -#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 -#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 -msgid "Yes" -msgstr "Ja" +#: ../../addon/wiki/Mod_Wiki.php:409 ../../addon/hsse/hsse.php:142 +#: ../../include/conversation.php:1390 +#: ../../Zotlabs/Module/Profile_photo.php:558 +#: ../../Zotlabs/Module/Cover_photo.php:433 +msgid "Error getting album list" +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:411 -msgid "Could not access address book record." -msgstr "Fikk ikke tilgang til informasjonen i adresseboken." +#: ../../addon/wiki/Mod_Wiki.php:410 ../../addon/hsse/hsse.php:143 +#: ../../include/conversation.php:1391 +#: ../../Zotlabs/Module/Profile_photo.php:559 +#: ../../Zotlabs/Module/Cover_photo.php:434 +msgid "Error getting photo link" +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:425 -msgid "Refresh failed - channel is currently unavailable." -msgstr "Oppfrisking mislyktes - kanalen er for øyeblikket utilgjengelig." +#: ../../addon/wiki/Mod_Wiki.php:411 ../../addon/hsse/hsse.php:144 +#: ../../include/conversation.php:1392 +#: ../../Zotlabs/Module/Profile_photo.php:560 +#: ../../Zotlabs/Module/Cover_photo.php:435 +msgid "Error getting album" +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:440 ../../Zotlabs/Module/Connedit.php:449 -#: ../../Zotlabs/Module/Connedit.php:458 ../../Zotlabs/Module/Connedit.php:467 -#: ../../Zotlabs/Module/Connedit.php:480 -msgid "Unable to set address book parameters." -msgstr "Ikke i stand til å angi parametre for adresseboken." +#: ../../addon/wiki/Mod_Wiki.php:413 +msgid "History" +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:503 -msgid "Connection has been removed." -msgstr "Forbindelsen har blitt fjernet." +#: ../../addon/wiki/Mod_Wiki.php:491 +msgid "Error creating wiki. Invalid name." +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:519 ../../Zotlabs/Lib/Apps.php:219 -#: ../../include/nav.php:86 ../../include/conversation.php:954 -msgid "View Profile" -msgstr "Vis profil" +#: ../../addon/wiki/Mod_Wiki.php:498 +msgid "A wiki with this name already exists." +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:522 -#, php-format -msgid "View %s's profile" -msgstr "Vis %s sin profil" +#: ../../addon/wiki/Mod_Wiki.php:511 +msgid "Wiki created, but error creating Home page." +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:526 -msgid "Refresh Permissions" -msgstr "Oppfrisk tillatelser" +#: ../../addon/wiki/Mod_Wiki.php:518 +msgid "Error creating wiki" +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:529 -msgid "Fetch updated permissions" -msgstr "Hent oppdaterte tillatelser" +#: ../../addon/wiki/Mod_Wiki.php:542 +msgid "Error updating wiki. Invalid name." +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:533 -msgid "Recent Activity" -msgstr "Nylig aktivitet" +#: ../../addon/wiki/Mod_Wiki.php:561 +msgid "Error updating wiki" +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:536 -msgid "View recent posts and comments" -msgstr "Vis nylige innlegg og kommentarer" +#: ../../addon/wiki/Mod_Wiki.php:576 +msgid "Wiki delete permission denied." +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1041 -msgid "Unblock" -msgstr "Ikke blokker lenger" +#: ../../addon/wiki/Mod_Wiki.php:586 +msgid "Error deleting wiki" +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1040 -msgid "Block" -msgstr "Blokker" +#: ../../addon/wiki/Mod_Wiki.php:619 +msgid "New page created" +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:543 -msgid "Block (or Unblock) all communications with this connection" -msgstr "Blokker eller fjern blokkering av all kommunikasjon med denne forbindelsen" +#: ../../addon/wiki/Mod_Wiki.php:745 +msgid "Cannot delete Home" +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:544 -msgid "This connection is blocked!" -msgstr "Denne forbindelsen er blokkert!" +#: ../../addon/wiki/Mod_Wiki.php:821 +msgid "Current Revision" +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:548 -msgid "Unignore" -msgstr "Ikke ignorer lenger" +#: ../../addon/wiki/Mod_Wiki.php:821 +msgid "Selected Revision" +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:548 -#: ../../Zotlabs/Module/Connections.php:277 -#: ../../Zotlabs/Module/Notifications.php:55 -msgid "Ignore" -msgstr "Ignorer" +#: ../../addon/wiki/Mod_Wiki.php:876 +msgid "You must be authenticated." +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:551 -msgid "Ignore (or Unignore) all inbound communications from this connection" -msgstr "Ignorer eller fjern ignorering av all inngående kommunikasjon fra denne forbindelsen" +#: ../../addon/openclipatar/openclipatar.php:51 +#: ../../addon/openclipatar/openclipatar.php:129 +msgid "System defaults:" +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:552 -msgid "This connection is ignored!" -msgstr "Denne forbindelsen er ignorert!" +#: ../../addon/openclipatar/openclipatar.php:55 +msgid "Preferred Clipart IDs" +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:556 -msgid "Unarchive" -msgstr "Ikke arkiver lenger" +#: ../../addon/openclipatar/openclipatar.php:55 +msgid "List of preferred clipart ids. These will be shown first." +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:556 -msgid "Archive" -msgstr "Arkiver" +#: ../../addon/openclipatar/openclipatar.php:56 +msgid "Default Search Term" +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:559 -msgid "" -"Archive (or Unarchive) this connection - mark channel dead but keep content" -msgstr "Arkiver eller fjern arkivering av denne forbindelsen - marker kanal som død, men behold innhold" +#: ../../addon/openclipatar/openclipatar.php:56 +msgid "The default search term. These will be shown second." +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:560 -msgid "This connection is archived!" -msgstr "Denne forbindelsen er arkivert!" +#: ../../addon/openclipatar/openclipatar.php:57 +msgid "Return After" +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:564 -msgid "Unhide" -msgstr "Ikke skjul lenger" +#: ../../addon/openclipatar/openclipatar.php:57 +msgid "Page to load after image selection." +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:564 -msgid "Hide" -msgstr "Skjul" +#: ../../addon/openclipatar/openclipatar.php:58 ../../include/nav.php:113 +#: ../../include/conversation.php:1093 ../../Zotlabs/Module/Connedit.php:480 +#: ../../Zotlabs/Lib/Apps.php:348 +msgid "View Profile" +msgstr "Vis profil" -#: ../../Zotlabs/Module/Connedit.php:567 -msgid "Hide or Unhide this connection from your other connections" -msgstr "Skjul eller fjern skjuling av denne forbindelsen fra dine andre forbindelser" +#: ../../addon/openclipatar/openclipatar.php:59 ../../include/nav.php:118 +#: ../../include/channel.php:1534 +msgid "Edit Profile" +msgstr "Endre profil" -#: ../../Zotlabs/Module/Connedit.php:568 -msgid "This connection is hidden!" -msgstr "Denne forbindelsen er skjult!" +#: ../../addon/openclipatar/openclipatar.php:60 +msgid "Profile List" +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:575 -msgid "Delete this connection" -msgstr "Slett denne forbindelsen" +#: ../../addon/openclipatar/openclipatar.php:62 +msgid "Order of Preferred" +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:590 ../../include/widgets.php:493 -msgid "Me" -msgstr "Meg" +#: ../../addon/openclipatar/openclipatar.php:62 +msgid "Sort order of preferred clipart ids." +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:591 ../../include/widgets.php:494 -msgid "Family" -msgstr "Familie" +#: ../../addon/openclipatar/openclipatar.php:63 +#: ../../addon/openclipatar/openclipatar.php:69 +msgid "Newest first" +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:592 ../../Zotlabs/Module/Settings.php:342 -#: ../../Zotlabs/Module/Settings.php:346 ../../Zotlabs/Module/Settings.php:347 -#: ../../Zotlabs/Module/Settings.php:350 ../../Zotlabs/Module/Settings.php:361 -#: ../../include/widgets.php:495 ../../include/selectors.php:123 -#: ../../include/channel.php:389 ../../include/channel.php:390 -#: ../../include/channel.php:397 -msgid "Friends" -msgstr "Venner" +#: ../../addon/openclipatar/openclipatar.php:66 +msgid "As entered" +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:593 ../../include/widgets.php:496 -msgid "Acquaintances" -msgstr "Bekjente" +#: ../../addon/openclipatar/openclipatar.php:68 +msgid "Order of other" +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:594 -#: ../../Zotlabs/Module/Connections.php:92 -#: ../../Zotlabs/Module/Connections.php:107 ../../include/widgets.php:497 -msgid "All" -msgstr "Alle" +#: ../../addon/openclipatar/openclipatar.php:68 +msgid "Sort order of other clipart ids." +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:654 -msgid "Approve this connection" -msgstr "Godta denne forbindelsen" +#: ../../addon/openclipatar/openclipatar.php:70 +msgid "Most downloaded first" +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:654 -msgid "Accept connection to allow communication" -msgstr "Godta denne forbindelsen for å tillate kommunikasjon" +#: ../../addon/openclipatar/openclipatar.php:71 +msgid "Most liked first" +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:659 -msgid "Set Affinity" -msgstr "Angi nærhet" +#: ../../addon/openclipatar/openclipatar.php:73 +msgid "Preferred IDs Message" +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:662 -msgid "Set Profile" -msgstr "Angi profil" +#: ../../addon/openclipatar/openclipatar.php:73 +msgid "Message to display above preferred results." +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:665 -msgid "Set Affinity & Profile" -msgstr "Angi nærhet og profil" +#: ../../addon/openclipatar/openclipatar.php:79 +msgid "Uploaded by: " +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:698 -msgid "none" -msgstr "ingen" +#: ../../addon/openclipatar/openclipatar.php:79 +msgid "Drawn by: " +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:702 ../../include/widgets.php:614 -msgid "Connection Default Permissions" -msgstr "Forbindelsens standard tillatelser" +#: ../../addon/openclipatar/openclipatar.php:183 +#: ../../addon/openclipatar/openclipatar.php:195 +msgid "Use this image" +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:702 ../../include/items.php:3926 -#, php-format -msgid "Connection: %s" -msgstr "Forbindelse: %s" +#: ../../addon/openclipatar/openclipatar.php:193 +msgid "Or select from a free OpenClipart.org image:" +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:703 -msgid "Apply these permissions automatically" -msgstr "Bruk disse tillatelsene automatisk" +#: ../../addon/openclipatar/openclipatar.php:196 +msgid "Search Term" +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:703 -msgid "Connection requests will be approved without your interaction" -msgstr "Forespørsler om forbindelse vil bli godkjent automatisk" +#: ../../addon/openclipatar/openclipatar.php:233 +msgid "Unknown error. Please try again later." +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:705 -msgid "This connection's primary address is" -msgstr "Denne forbindelsens primære adresse er" +#: ../../addon/openclipatar/openclipatar.php:299 +#: ../../Zotlabs/Module/Profile_photo.php:268 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "" +"Hold nede Shift-knappen og last siden på nytt eller tøm nettleserens" +" mellomlager hvis det nye bildet ikke vises umiddelbart." -#: ../../Zotlabs/Module/Connedit.php:706 -msgid "Available locations:" -msgstr "Tilgjengelige plasseringer:" +#: ../../addon/openclipatar/openclipatar.php:309 +msgid "Profile photo updated successfully." +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:710 -msgid "" -"The permissions indicated on this page will be applied to all new " -"connections." -msgstr "Tillatelsene angitt på denne siden gjøres gjeldende for alle nye forbindelser." +#: ../../addon/bookmarker/bookmarker.php:38 +#: ../../Zotlabs/Lib/ThreadItem.php:481 +msgid "Save Bookmarks" +msgstr "Lagre bokmerker" -#: ../../Zotlabs/Module/Connedit.php:711 -msgid "Connection Tools" +#: ../../addon/queueworker/Mod_Queueworker.php:77 +msgid "Max queueworker threads" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:713 -msgid "Slide to adjust your degree of friendship" -msgstr "Flytt for å justere din grad av vennskap" +#: ../../addon/queueworker/Mod_Queueworker.php:79 +msgid "Minimum 4, default 4" +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:714 ../../Zotlabs/Module/Rate.php:159 -#: ../../include/js_strings.php:20 -msgid "Rating" -msgstr "Vurdering" +#: ../../addon/queueworker/Mod_Queueworker.php:90 +msgid "Assume workers dead after" +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:715 -msgid "Slide to adjust your rating" -msgstr "Flytt for å justere din vurdering" +#: ../../addon/queueworker/Mod_Queueworker.php:92 +msgid "Minimum 120, default 300 seconds" +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:716 ../../Zotlabs/Module/Connedit.php:721 -msgid "Optionally explain your rating" -msgstr "Velg om du vil forklare vurderingen" +#: ../../addon/queueworker/Mod_Queueworker.php:103 +msgid "Pause before starting next task" +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:718 -msgid "Custom Filter" -msgstr "Tilpasset filter" +#: ../../addon/queueworker/Mod_Queueworker.php:105 +msgid "Minimum 100, default 100 microseconds" +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:719 -msgid "Only import posts with this text" -msgstr "Bare importer innlegg med disse ordene" +#: ../../addon/queueworker/Mod_Queueworker.php:113 +msgid "Queueworker Settings" +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:719 ../../Zotlabs/Module/Connedit.php:720 -msgid "" -"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " -"all posts" -msgstr "ord per linje eller #merkelapper eller /mønster/ eller språk lang=xx, la stå blankt for å importere alle innlegg" +#: ../../addon/queueworker/Mod_Queueworker.php:116 +#: ../../addon/cards/Mod_Cards.php:116 +#: ../../addon/articles/Mod_Articles.php:120 ../../include/text.php:1168 +#: ../../include/text.php:1180 ../../Zotlabs/Module/Admin/Profs.php:94 +#: ../../Zotlabs/Module/Admin/Profs.php:114 ../../Zotlabs/Module/Filer.php:54 +#: ../../Zotlabs/Module/Rbmark.php:31 ../../Zotlabs/Module/Rbmark.php:103 +msgid "Save" +msgstr "Lagre" -#: ../../Zotlabs/Module/Connedit.php:720 -msgid "Do not import posts with this text" -msgstr "Ikke importer innlegg med denne teksten" +#: ../../addon/rainbowtag/Mod_Rainbowtag.php:22 +msgid "Rainbow Tag App" +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:722 -msgid "This information is public!" -msgstr "Denne informasjonen er offentlig!" +#: ../../addon/rainbowtag/Mod_Rainbowtag.php:23 +msgid "Add some colour to tag clouds" +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:727 -msgid "Connection Pending Approval" -msgstr "Forbindelse venter på godkjenning" +#: ../../addon/rainbowtag/Mod_Rainbowtag.php:30 +msgid "Rainbow Tag" +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:730 -msgid "inherited" -msgstr "arvet" +#: ../../addon/photocache/Mod_Photocache.php:27 +msgid "Photo Cache settings saved." +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:732 -#, php-format +#: ../../addon/photocache/Mod_Photocache.php:43 msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Vennligst velg profilen du ønsker å vise %s når profilen din ses på en sikret måte. " +"Saves a copy of images from external sites locally to increase your " +"anonymity in the web." +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:734 -msgid "Their Settings" -msgstr "Deres innstillinger" +#: ../../addon/photocache/Mod_Photocache.php:49 +msgid "Minimal photo size for caching" +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:735 -msgid "My Settings" -msgstr "Mine innstillinger" +#: ../../addon/photocache/Mod_Photocache.php:51 +msgid "In pixels. From 1 up to 1024, 0 will be replaced with system default." +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:737 -msgid "Individual Permissions" -msgstr "Individuelle tillatelser" +#: ../../addon/photocache/Mod_Photocache.php:60 +msgid "Photo Cache" +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:738 -msgid "" -"Some permissions may be inherited from your channel's privacy settings, which have higher " -"priority than individual settings. You can not change those" -" settings here." -msgstr "Noen tillatelser kan være arvet fra din kanals personverninnstillinger, som har høyere prioritet enn individuelle innstillinger. Du kan ikke endre arvede innstillingene her." +#: ../../addon/gallery/gallery.php:43 ../../addon/gallery/Mod_Gallery.php:134 +msgid "Gallery" +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:739 -msgid "" -"Some permissions may be inherited from your channel's privacy settings, which have higher " -"priority than individual settings. You can change those settings here but " -"they wont have any impact unless the inherited setting changes." -msgstr "Noen tillatelser kan være arvet fra din kanals personverninnstillinger, som har høyere prioritet enn individuelle innstillinger. Du kan endre disse innstillingene her, men de vil ikke få noen effekt før de arvede innstillingene endres." +#: ../../addon/gallery/gallery.php:46 +msgid "Photo Gallery" +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:740 -msgid "Last update:" -msgstr "Siste oppdatering:" +#: ../../addon/gallery/Mod_Gallery.php:49 ../../addon/cards/Mod_Cards.php:42 +#: ../../addon/articles/Mod_Articles.php:46 ../../include/channel.php:1427 +#: ../../Zotlabs/Module/Hcard.php:12 ../../Zotlabs/Module/Editwebpage.php:32 +#: ../../Zotlabs/Module/Profile.php:27 ../../Zotlabs/Module/Webpages.php:39 +#: ../../Zotlabs/Module/Filestorage.php:59 ../../Zotlabs/Module/Connect.php:17 +#: ../../Zotlabs/Module/Achievements.php:15 ../../Zotlabs/Module/Blocks.php:33 +#: ../../Zotlabs/Module/Editblock.php:31 ../../Zotlabs/Module/Editlayout.php:31 +#: ../../Zotlabs/Module/Menu.php:92 ../../Zotlabs/Module/Layouts.php:31 +msgid "Requested profile is not available." +msgstr "Forespurt profil er ikke tilgjengelig." -#: ../../Zotlabs/Module/Directory.php:63 ../../Zotlabs/Module/Display.php:17 -#: ../../Zotlabs/Module/Photos.php:522 ../../Zotlabs/Module/Ratings.php:86 -#: ../../Zotlabs/Module/Search.php:17 -#: ../../Zotlabs/Module/Viewconnections.php:20 -msgid "Public access denied." -msgstr "Offentlig tilgang avvist." +#: ../../addon/planets/Mod_Planets.php:23 +msgid "Random Planet App" +msgstr "" -#: ../../Zotlabs/Module/Directory.php:243 -#, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "%d vurdering" -msgstr[1] "%d vurderinger" +#: ../../addon/planets/Mod_Planets.php:25 +msgid "" +"Set a random planet from the Star Wars Empire as your location when posting" +msgstr "" -#: ../../Zotlabs/Module/Directory.php:254 -msgid "Gender: " -msgstr "Kjønn:" +#: ../../addon/openid/Mod_Id.php:85 ../../include/selectors.php:64 +#: ../../include/selectors.php:81 ../../include/channel.php:1712 +msgid "Male" +msgstr "Mannlig" -#: ../../Zotlabs/Module/Directory.php:256 -msgid "Status: " -msgstr "Status:" +#: ../../addon/openid/Mod_Id.php:87 ../../include/selectors.php:64 +#: ../../include/selectors.php:81 ../../include/channel.php:1710 +msgid "Female" +msgstr "Kvinnelig" -#: ../../Zotlabs/Module/Directory.php:258 -msgid "Homepage: " -msgstr "Hjemmeside:" +#: ../../addon/openid/Mod_Openid.php:32 +msgid "OpenID protocol error. No ID returned." +msgstr "OpenID protokollfeil. Ingen ID ble returnert." -#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1183 -msgid "Age:" -msgstr "Alder:" +#: ../../addon/openid/Mod_Openid.php:78 ../../addon/openid/Mod_Openid.php:179 +#, php-format +msgid "Welcome %s. Remote authentication successful." +msgstr "Velkommen %s. Ekstern autentisering er vellykket." -#: ../../Zotlabs/Module/Directory.php:311 ../../include/event.php:52 -#: ../../include/event.php:84 ../../include/channel.php:1027 -#: ../../include/bb2diaspora.php:507 -msgid "Location:" -msgstr "Plassering:" +#: ../../addon/openid/Mod_Openid.php:189 ../../include/auth.php:323 +msgid "Login failed." +msgstr "Innlogging mislyktes." -#: ../../Zotlabs/Module/Directory.php:317 -msgid "Description:" -msgstr "Beskrivelse:" +#: ../../addon/openid/openid.php:49 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "" +"Vi støtte på et problem under innloggingen med din OpenID. Vennligst sjekk at" +" ID-en er stavet riktig." -#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1199 -msgid "Hometown:" -msgstr "Hjemby:" +#: ../../addon/openid/openid.php:49 +msgid "The error message was:" +msgstr "Feilmeldingen var:" -#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1207 -msgid "About:" -msgstr "Om:" +#: ../../addon/openid/MysqlProvider.php:52 +msgid "First Name" +msgstr "Fornavn" -#: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 -#: ../../Zotlabs/Module/Suggest.php:56 ../../include/widgets.php:147 -#: ../../include/widgets.php:184 ../../include/connections.php:78 -#: ../../include/conversation.php:956 ../../include/channel.php:1012 -msgid "Connect" -msgstr "Koble" +#: ../../addon/openid/MysqlProvider.php:53 +msgid "Last Name" +msgstr "Etternavn" -#: ../../Zotlabs/Module/Directory.php:326 -msgid "Public Forum:" -msgstr "Offentlig forum:" +#: ../../addon/openid/MysqlProvider.php:54 ../../addon/redred/Mod_Redred.php:73 +#: ../../boot.php:1742 +msgid "Nickname" +msgstr "Kallenavn" -#: ../../Zotlabs/Module/Directory.php:329 -msgid "Keywords: " -msgstr "Nøkkelord:" +#: ../../addon/openid/MysqlProvider.php:55 +msgid "Full Name" +msgstr "Fullt navn" -#: ../../Zotlabs/Module/Directory.php:332 -msgid "Don't suggest" -msgstr "Ikke foreslå" +#: ../../addon/openid/MysqlProvider.php:56 +#: ../../addon/openid/MysqlProvider.php:57 ../../addon/redred/Mod_Redred.php:69 +#: ../../addon/rtof/Mod_Rtof.php:55 ../../include/network.php:1768 +#: ../../Zotlabs/Module/Cdav.php:1376 +#: ../../Zotlabs/Module/Admin/Accounts.php:316 +#: ../../Zotlabs/Module/Admin/Accounts.php:330 +#: ../../Zotlabs/Module/Connedit.php:736 +msgid "Email" +msgstr "E-post" -#: ../../Zotlabs/Module/Directory.php:334 -msgid "Common connections:" -msgstr "Felles forbindelser:" +#: ../../addon/openid/MysqlProvider.php:58 +#: ../../addon/openid/MysqlProvider.php:59 +#: ../../addon/openid/MysqlProvider.php:60 ../../Zotlabs/Lib/Apps.php:365 +msgid "Profile Photo" +msgstr "Profilbilde" -#: ../../Zotlabs/Module/Directory.php:383 -msgid "Global Directory" -msgstr "Global katalog" +#: ../../addon/openid/MysqlProvider.php:61 +msgid "Profile Photo 16px" +msgstr "Profilbilde 16px" -#: ../../Zotlabs/Module/Directory.php:383 -msgid "Local Directory" -msgstr "Lokal katalog" +#: ../../addon/openid/MysqlProvider.php:62 +msgid "Profile Photo 32px" +msgstr "Profilbilde 32px" -#: ../../Zotlabs/Module/Directory.php:388 -#: ../../Zotlabs/Module/Directory.php:393 -#: ../../Zotlabs/Module/Connections.php:309 -#: ../../include/contact_widgets.php:23 -msgid "Find" -msgstr "Finn" +#: ../../addon/openid/MysqlProvider.php:63 +msgid "Profile Photo 48px" +msgstr "Profilbilde 48px" -#: ../../Zotlabs/Module/Directory.php:389 -msgid "Finding:" -msgstr "Finner:" +#: ../../addon/openid/MysqlProvider.php:64 +msgid "Profile Photo 64px" +msgstr "Profilbilde 64px" -#: ../../Zotlabs/Module/Directory.php:392 ../../Zotlabs/Module/Suggest.php:64 -#: ../../include/contact_widgets.php:24 -msgid "Channel Suggestions" -msgstr "Kanalforslag" +#: ../../addon/openid/MysqlProvider.php:65 +msgid "Profile Photo 80px" +msgstr "Profilbilde 80px" -#: ../../Zotlabs/Module/Directory.php:394 -msgid "next page" -msgstr "Neste side" +#: ../../addon/openid/MysqlProvider.php:66 +msgid "Profile Photo 128px" +msgstr "Profilbilde 128px" -#: ../../Zotlabs/Module/Directory.php:394 -msgid "previous page" -msgstr "Forrige side" +#: ../../addon/openid/MysqlProvider.php:67 ../../include/event.php:141 +msgid "Timezone" +msgstr "Tidssone" -#: ../../Zotlabs/Module/Directory.php:395 -msgid "Sort options" -msgstr "Sorteringsvalg" +#: ../../addon/openid/MysqlProvider.php:68 +#: ../../Zotlabs/Module/Profiles.php:784 +msgid "Homepage URL" +msgstr "Hjemmeside URL" -#: ../../Zotlabs/Module/Directory.php:396 -msgid "Alphabetic" -msgstr "Alfabetisk" +#: ../../addon/openid/MysqlProvider.php:69 ../../Zotlabs/Lib/Apps.php:363 +msgid "Language" +msgstr "Språk" -#: ../../Zotlabs/Module/Directory.php:397 -msgid "Reverse Alphabetic" -msgstr "Omvendt alfabetisk" +#: ../../addon/openid/MysqlProvider.php:70 +msgid "Birth Year" +msgstr "Fødselsår" -#: ../../Zotlabs/Module/Directory.php:398 -msgid "Newest to Oldest" -msgstr "Nyest til eldst" +#: ../../addon/openid/MysqlProvider.php:71 +msgid "Birth Month" +msgstr "Fødselsmåne" -#: ../../Zotlabs/Module/Directory.php:399 -msgid "Oldest to Newest" -msgstr "Eldst til nyest" +#: ../../addon/openid/MysqlProvider.php:72 +msgid "Birth Day" +msgstr "Fødselsdag" -#: ../../Zotlabs/Module/Directory.php:416 -msgid "No entries (some entries may be hidden)." -msgstr "Ingen oppføringer (noen oppføringer kan være skjult)." +#: ../../addon/openid/MysqlProvider.php:73 +msgid "Birthdate" +msgstr "Fødselsdato" -#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:33 -#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1255 -#: ../../Zotlabs/Module/Admin.php:1561 ../../Zotlabs/Module/Thing.php:89 -#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3359 -msgid "Item not found." -msgstr "Elementet ble ikke funnet." +#: ../../addon/openid/MysqlProvider.php:74 +#: ../../Zotlabs/Module/Profiles.php:457 +msgid "Gender" +msgstr "Kjønn" -#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 -#: ../../Zotlabs/Module/Editpost.php:24 ../../Zotlabs/Module/Editlayout.php:79 -#: ../../Zotlabs/Module/Editwebpage.php:81 -msgid "Item not found" -msgstr "Elementet ble ikke funnet." +#: ../../addon/moremoods/moremoods.php:19 +msgid "lonely" +msgstr "" -#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1228 -msgid "Title (optional)" -msgstr "Tittel (valgfri)" +#: ../../addon/moremoods/moremoods.php:20 +msgid "drunk" +msgstr "" -#: ../../Zotlabs/Module/Editblock.php:133 -msgid "Edit Block" -msgstr "Endre byggekloss" +#: ../../addon/moremoods/moremoods.php:21 +msgid "horny" +msgstr "" -#: ../../Zotlabs/Module/Common.php:14 -msgid "No channel." -msgstr "Ingen kanal." +#: ../../addon/moremoods/moremoods.php:22 +msgid "stoned" +msgstr "" -#: ../../Zotlabs/Module/Common.php:43 -msgid "Common connections" -msgstr "Felles forbindelser" +#: ../../addon/moremoods/moremoods.php:23 +msgid "fucked up" +msgstr "" -#: ../../Zotlabs/Module/Common.php:48 -msgid "No connections in common." -msgstr "Ingen forbindelser felles." +#: ../../addon/moremoods/moremoods.php:24 +msgid "clusterfucked" +msgstr "" -#: ../../Zotlabs/Module/Connections.php:56 -#: ../../Zotlabs/Module/Connections.php:161 -#: ../../Zotlabs/Module/Connections.php:242 -msgid "Blocked" -msgstr "Blokkert" +#: ../../addon/moremoods/moremoods.php:25 +msgid "crazy" +msgstr "" -#: ../../Zotlabs/Module/Connections.php:61 -#: ../../Zotlabs/Module/Connections.php:168 -#: ../../Zotlabs/Module/Connections.php:241 -msgid "Ignored" -msgstr "Ignorert" +#: ../../addon/moremoods/moremoods.php:26 +msgid "hurt" +msgstr "" -#: ../../Zotlabs/Module/Connections.php:66 -#: ../../Zotlabs/Module/Connections.php:182 -#: ../../Zotlabs/Module/Connections.php:240 -msgid "Hidden" -msgstr "Skjult" +#: ../../addon/moremoods/moremoods.php:27 +msgid "sleepy" +msgstr "" -#: ../../Zotlabs/Module/Connections.php:71 -#: ../../Zotlabs/Module/Connections.php:175 -#: ../../Zotlabs/Module/Connections.php:239 -msgid "Archived" -msgstr "Arkivert" +#: ../../addon/moremoods/moremoods.php:28 +msgid "grumpy" +msgstr "" -#: ../../Zotlabs/Module/Connections.php:76 -#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 -#: ../../include/conversation.php:1535 -msgid "New" -msgstr "Nye" +#: ../../addon/moremoods/moremoods.php:29 +msgid "high" +msgstr "" -#: ../../Zotlabs/Module/Connections.php:138 -msgid "New Connections" -msgstr "Nye forbindelser" +#: ../../addon/moremoods/moremoods.php:30 +msgid "semi-conscious" +msgstr "" -#: ../../Zotlabs/Module/Connections.php:141 -msgid "Show pending (new) connections" -msgstr "Vis ventende (nye) forbindelser" +#: ../../addon/moremoods/moremoods.php:31 +msgid "in love" +msgstr "" -#: ../../Zotlabs/Module/Connections.php:145 -#: ../../Zotlabs/Module/Profperm.php:144 -msgid "All Connections" -msgstr "Alle forbindelser" +#: ../../addon/moremoods/moremoods.php:32 +msgid "in lust" +msgstr "" -#: ../../Zotlabs/Module/Connections.php:148 -msgid "Show all connections" -msgstr "Vis alle forbindelser" +#: ../../addon/moremoods/moremoods.php:33 +msgid "naked" +msgstr "" -#: ../../Zotlabs/Module/Connections.php:164 -msgid "Only show blocked connections" -msgstr "Vis bare forbindelser som er blokkert" +#: ../../addon/moremoods/moremoods.php:34 +msgid "stinky" +msgstr "" -#: ../../Zotlabs/Module/Connections.php:171 -msgid "Only show ignored connections" -msgstr "Vis bare ignorerte forbindelser" +#: ../../addon/moremoods/moremoods.php:35 +msgid "sweaty" +msgstr "" -#: ../../Zotlabs/Module/Connections.php:178 -msgid "Only show archived connections" -msgstr "Vis bare arkiverte forbindelser" +#: ../../addon/moremoods/moremoods.php:36 +msgid "bleeding out" +msgstr "" -#: ../../Zotlabs/Module/Connections.php:185 -msgid "Only show hidden connections" -msgstr "Vis bare skjulte forbindelser" +#: ../../addon/moremoods/moremoods.php:37 +msgid "victorious" +msgstr "" -#: ../../Zotlabs/Module/Connections.php:238 -msgid "Pending approval" -msgstr "Venter på godkjenning" +#: ../../addon/moremoods/moremoods.php:38 +msgid "defeated" +msgstr "" -#: ../../Zotlabs/Module/Connections.php:254 -#, php-format -msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" +#: ../../addon/moremoods/moremoods.php:39 +msgid "envious" +msgstr "" -#: ../../Zotlabs/Module/Connections.php:255 -msgid "Edit connection" -msgstr "Endre forbindelse" +#: ../../addon/moremoods/moremoods.php:40 +msgid "jealous" +msgstr "" -#: ../../Zotlabs/Module/Connections.php:256 -msgid "Delete connection" -msgstr "Slett forbindelse" +#: ../../addon/dirstats/dirstats.php:94 +msgid "Hubzilla Directory Stats" +msgstr "" -#: ../../Zotlabs/Module/Connections.php:265 -msgid "Channel address" -msgstr "Kanaladresse" +#: ../../addon/dirstats/dirstats.php:95 +msgid "Total Hubs" +msgstr "" -#: ../../Zotlabs/Module/Connections.php:267 -msgid "Network" -msgstr "Nettverk" +#: ../../addon/dirstats/dirstats.php:97 +msgid "Hubzilla Hubs" +msgstr "" -#: ../../Zotlabs/Module/Connections.php:270 ../../Zotlabs/Module/Admin.php:710 -msgid "Status" -msgstr "Status" +#: ../../addon/dirstats/dirstats.php:99 +msgid "Friendica Hubs" +msgstr "" -#: ../../Zotlabs/Module/Connections.php:272 -msgid "Connected" -msgstr "Forbundet" +#: ../../addon/dirstats/dirstats.php:101 +msgid "Diaspora Pods" +msgstr "" -#: ../../Zotlabs/Module/Connections.php:274 -msgid "Approve connection" -msgstr "Godkjenn forbindelse" +#: ../../addon/dirstats/dirstats.php:103 +msgid "Hubzilla Channels" +msgstr "" -#: ../../Zotlabs/Module/Connections.php:275 -#: ../../Zotlabs/Module/Admin.php:1037 -msgid "Approve" -msgstr "Godkjenn" +#: ../../addon/dirstats/dirstats.php:105 +msgid "Friendica Channels" +msgstr "" -#: ../../Zotlabs/Module/Connections.php:276 -msgid "Ignore connection" -msgstr "Ignorer forbindelse" +#: ../../addon/dirstats/dirstats.php:107 +msgid "Diaspora Channels" +msgstr "" -#: ../../Zotlabs/Module/Connections.php:278 -msgid "Recent activity" -msgstr "Nylig aktivitet" +#: ../../addon/dirstats/dirstats.php:109 +msgid "Aged 35 and above" +msgstr "" -#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:208 -#: ../../include/text.php:875 ../../include/nav.php:186 -msgid "Connections" -msgstr "Forbindelser" +#: ../../addon/dirstats/dirstats.php:111 +msgid "Aged 34 and under" +msgstr "" -#: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 -#: ../../Zotlabs/Lib/Apps.php:228 ../../include/text.php:945 -#: ../../include/text.php:957 ../../include/nav.php:165 -#: ../../include/acl_selectors.php:276 -msgid "Search" -msgstr "Søk" +#: ../../addon/dirstats/dirstats.php:113 +msgid "Average Age" +msgstr "" -#: ../../Zotlabs/Module/Connections.php:307 -msgid "Search your connections" -msgstr "Søk blant dine forbindelser" +#: ../../addon/dirstats/dirstats.php:115 +msgid "Known Chatrooms" +msgstr "" -#: ../../Zotlabs/Module/Connections.php:308 -msgid "Connections search" -msgstr "Søk blant forbindelser" +#: ../../addon/dirstats/dirstats.php:117 +msgid "Known Tags" +msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:58 -#: ../../Zotlabs/Module/Profile_photo.php:79 -msgid "Image uploaded but image cropping failed." -msgstr "Bildet ble lastet opp, men beskjæring av bildet mislyktes." +#: ../../addon/dirstats/dirstats.php:119 +msgid "" +"Please note Diaspora and Friendica statistics are merely those **this " +"directory** is aware of, and not all those known in the network. This also " +"applies to chatrooms," +msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:134 -#: ../../Zotlabs/Module/Cover_photo.php:181 -msgid "Cover Photos" -msgstr "Forsidebilder" +#: ../../addon/redred/Mod_Redred.php:24 +msgid "Channel is required." +msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:154 -#: ../../Zotlabs/Module/Profile_photo.php:133 -msgid "Image resize failed." -msgstr "Endring av bildestørrelse mislyktes." +#: ../../addon/redred/Mod_Redred.php:29 ../../Zotlabs/Module/Network.php:331 +msgid "Invalid channel." +msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:168 -#: ../../Zotlabs/Module/Profile_photo.php:192 ../../include/photos.php:144 -msgid "Unable to process image" -msgstr "Kan ikke behandle bildet" +#: ../../addon/redred/Mod_Redred.php:38 +msgid "Hubzilla Crosspost Connector Settings saved." +msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:192 -#: ../../Zotlabs/Module/Profile_photo.php:217 -msgid "Image upload failed." -msgstr "Opplasting av bildet mislyktes." +#: ../../addon/redred/Mod_Redred.php:61 +msgid "Send public postings to Hubzilla channel by default" +msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:210 -#: ../../Zotlabs/Module/Profile_photo.php:236 -msgid "Unable to process image." -msgstr "Kan ikke behandle bildet." +#: ../../addon/redred/Mod_Redred.php:65 +msgid "Hubzilla API Path" +msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4270 -msgid "female" -msgstr "kvinne" +#: ../../addon/redred/Mod_Redred.php:65 ../../addon/rtof/Mod_Rtof.php:51 +msgid "https://{sitename}/api" +msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4271 -#, php-format -msgid "%1$s updated her %2$s" -msgstr "%1$s oppdaterte %2$s sitt" +#: ../../addon/redred/Mod_Redred.php:69 +msgid "Hubzilla login name" +msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4272 -msgid "male" -msgstr "mann" +#: ../../addon/redred/Mod_Redred.php:73 +msgid "Hubzilla channel name" +msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4273 -#, php-format -msgid "%1$s updated his %2$s" -msgstr "%1$s oppdaterte %2$s sitt" +#: ../../addon/redred/Mod_Redred.php:77 +msgid "Hubzilla password" +msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4275 -#, php-format -msgid "%1$s updated their %2$s" -msgstr "%1$s oppdaterte %2$s deres" +#: ../../addon/redred/Mod_Redred.php:85 +msgid "Hubzilla Crosspost Connector" +msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1661 -msgid "cover photo" -msgstr "forsidebilde" +#: ../../addon/redred/redred.php:50 +msgid "Post to Hubzilla" +msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:303 -#: ../../Zotlabs/Module/Cover_photo.php:318 -#: ../../Zotlabs/Module/Profile_photo.php:283 -#: ../../Zotlabs/Module/Profile_photo.php:324 -msgid "Photo not available." -msgstr "Bildet er ikke tilgjengelig." +#: ../../addon/redphotos/redphotos.php:106 +msgid "Photos imported" +msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:354 -#: ../../Zotlabs/Module/Profile_photo.php:365 -msgid "Upload File:" -msgstr "Last opp fil:" +#: ../../addon/redphotos/redphotos.php:119 +#: ../../addon/redfiles/redfiles.php:109 ../../addon/hzfiles/hzfiles.php:75 +#: ../../include/items.php:441 ../../Zotlabs/Module/Import_items.php:116 +#: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Group.php:108 +#: ../../Zotlabs/Module/Like.php:348 ../../Zotlabs/Module/Cloud.php:123 +#: ../../Zotlabs/Module/Share.php:72 ../../Zotlabs/Module/Subthread.php:89 +#: ../../Zotlabs/Module/Dreport.php:10 ../../Zotlabs/Module/Dreport.php:55 +#: ../../Zotlabs/Web/WebServer.php:116 +msgid "Permission denied" +msgstr "Tillatelse avvist" -#: ../../Zotlabs/Module/Cover_photo.php:355 -#: ../../Zotlabs/Module/Profile_photo.php:366 -msgid "Select a profile:" -msgstr "Velg en profil:" +#: ../../addon/redphotos/redphotos.php:129 +msgid "Redmatrix Photo Album Import" +msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:356 -msgid "Upload Cover Photo" -msgstr "Last opp forsidebilde" +#: ../../addon/redphotos/redphotos.php:130 +msgid "This will import all your Redmatrix photo albums to this channel." +msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:374 -#: ../../Zotlabs/Module/Settings.php:985 -msgid "or" -msgstr "eller" +#: ../../addon/redphotos/redphotos.php:131 +#: ../../addon/redfiles/redfiles.php:121 +msgid "Redmatrix Server base URL" +msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:374 -msgid "skip this step" -msgstr "hopp over dette steget" +#: ../../addon/redphotos/redphotos.php:132 +#: ../../addon/redfiles/redfiles.php:122 +msgid "Redmatrix Login Username" +msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:374 -msgid "select a photo from your photo albums" -msgstr "velg et bilde fra dine fotoalbum" +#: ../../addon/redphotos/redphotos.php:133 +#: ../../addon/redfiles/redfiles.php:123 +msgid "Redmatrix Login Password" +msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:377 -#: ../../Zotlabs/Module/Profile_photo.php:390 -msgid "Crop Image" -msgstr "Beskjær bildet" +#: ../../addon/redphotos/redphotos.php:134 +msgid "Import just this album" +msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:378 -#: ../../Zotlabs/Module/Profile_photo.php:391 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Vennligst juster bildebeskjæringen for optimal visning." +#: ../../addon/redphotos/redphotos.php:134 +msgid "Leave blank to import all albums" +msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:380 -#: ../../Zotlabs/Module/Profile_photo.php:393 -msgid "Done Editing" -msgstr "Avslutt redigering" +#: ../../addon/redphotos/redphotos.php:135 +msgid "Maximum count to import" +msgstr "" -#: ../../Zotlabs/Module/Editpost.php:35 -msgid "Item is not editable" -msgstr "Elementet kan ikke endres" +#: ../../addon/redphotos/redphotos.php:135 +msgid "0 or blank to import all available" +msgstr "" -#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:135 -msgid "Edit post" -msgstr "Endre innlegg" +#: ../../addon/redphotos/redphotohelper.php:71 ../../addon/pubcrawl/as.php:1958 +#: ../../addon/diaspora/Receiver.php:1647 ../../include/text.php:2337 +#: ../../include/conversation.php:138 ../../Zotlabs/Module/Like.php:445 +#: ../../Zotlabs/Module/Tagger.php:71 ../../Zotlabs/Module/Subthread.php:115 +#: ../../Zotlabs/Lib/Activity.php:3546 +msgid "photo" +msgstr "foto" -#: ../../Zotlabs/Module/Events.php:26 -msgid "Calendar entries imported." -msgstr "Kalenderhendelsene er importert." +#: ../../addon/statusnet/Mod_Statusnet.php:61 +msgid "" +"Please contact your site administrator.
The provided API URL is not " +"valid." +msgstr "" -#: ../../Zotlabs/Module/Events.php:28 -msgid "No calendar entries found." -msgstr "Ingen kalenderhendelser funnet." +#: ../../addon/statusnet/Mod_Statusnet.php:98 +msgid "We could not contact the GNU social API with the Path you entered." +msgstr "" -#: ../../Zotlabs/Module/Events.php:105 -msgid "Event can not end before it has started." -msgstr "Hendelsen kan ikke slutte før den starter." +#: ../../addon/statusnet/Mod_Statusnet.php:130 +msgid "GNU social settings updated." +msgstr "" -#: ../../Zotlabs/Module/Events.php:107 ../../Zotlabs/Module/Events.php:116 -#: ../../Zotlabs/Module/Events.php:136 -msgid "Unable to generate preview." -msgstr "Klarer ikke å lage forhåndsvisning." +#: ../../addon/statusnet/Mod_Statusnet.php:179 +msgid "Globally Available GNU social OAuthKeys" +msgstr "" -#: ../../Zotlabs/Module/Events.php:114 -msgid "Event title and start time are required." -msgstr "Hendelsestittel og starttidspunkt er påkrevd." +#: ../../addon/statusnet/Mod_Statusnet.php:181 +msgid "" +"There are preconfigured OAuth key pairs for some GNU social servers " +"available. If you are using one of them, please use these credentials.
If not feel free to connect to any other GNU social instance (see below)." +msgstr "" -#: ../../Zotlabs/Module/Events.php:134 ../../Zotlabs/Module/Events.php:259 -msgid "Event not found." -msgstr "Hendelsen ble ikke funnet." +#: ../../addon/statusnet/Mod_Statusnet.php:196 +msgid "Provide your own OAuth Credentials" +msgstr "" -#: ../../Zotlabs/Module/Events.php:254 ../../Zotlabs/Module/Like.php:373 -#: ../../Zotlabs/Module/Tagger.php:51 ../../include/event.php:949 -#: ../../include/text.php:1943 ../../include/conversation.php:123 -msgid "event" -msgstr "hendelse" +#: ../../addon/statusnet/Mod_Statusnet.php:198 +msgid "" +"No consumer key pair for GNU social found. Register your Hubzilla Account as " +"an desktop client on your GNU social account, copy the consumer key pair " +"here and enter the API base root.
Before you register your own OAuth " +"key pair ask the administrator if there is already a key pair for this " +"Hubzilla installation at your favourite GNU social installation." +msgstr "" -#: ../../Zotlabs/Module/Events.php:449 -msgid "Edit event title" -msgstr "Endre tittel på hendelse" +#: ../../addon/statusnet/Mod_Statusnet.php:202 +msgid "OAuth Consumer Key" +msgstr "" -#: ../../Zotlabs/Module/Events.php:449 -msgid "Event title" -msgstr "Tittel på hendelse" +#: ../../addon/statusnet/Mod_Statusnet.php:206 +msgid "OAuth Consumer Secret" +msgstr "" -#: ../../Zotlabs/Module/Events.php:449 ../../Zotlabs/Module/Events.php:454 -#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 -#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 -#: ../../include/datetime.php:245 -msgid "Required" -msgstr "Påkrevd" +#: ../../addon/statusnet/Mod_Statusnet.php:210 +msgid "Base API Path" +msgstr "" -#: ../../Zotlabs/Module/Events.php:451 -msgid "Categories (comma-separated list)" -msgstr "Kategorier (kommaseparert liste)" +#: ../../addon/statusnet/Mod_Statusnet.php:210 +msgid "Remember the trailing /" +msgstr "" -#: ../../Zotlabs/Module/Events.php:452 -msgid "Edit Category" -msgstr "Endre kategori" +#: ../../addon/statusnet/Mod_Statusnet.php:214 +msgid "GNU social application name" +msgstr "" -#: ../../Zotlabs/Module/Events.php:452 -msgid "Category" -msgstr "Kategori" +#: ../../addon/statusnet/Mod_Statusnet.php:237 +msgid "" +"To connect to your GNU social account click the button below to get a " +"security code from GNU social which you have to copy into the input box " +"below and submit the form. Only your public posts will be " +"posted to GNU social." +msgstr "" -#: ../../Zotlabs/Module/Events.php:455 -msgid "Edit start date and time" -msgstr "Endre startdato og tidspunkt" +#: ../../addon/statusnet/Mod_Statusnet.php:239 +msgid "Log in with GNU social" +msgstr "" -#: ../../Zotlabs/Module/Events.php:455 -msgid "Start date and time" -msgstr "Startdato og tidspunkt" +#: ../../addon/statusnet/Mod_Statusnet.php:242 +msgid "Copy the security code from GNU social here" +msgstr "" -#: ../../Zotlabs/Module/Events.php:456 ../../Zotlabs/Module/Events.php:459 -msgid "Finish date and time are not known or not relevant" -msgstr "Sluttdato og tidspunkt er ikke kjent eller ikke relevant" +#: ../../addon/statusnet/Mod_Statusnet.php:252 +msgid "Cancel Connection Process" +msgstr "" -#: ../../Zotlabs/Module/Events.php:458 -msgid "Edit finish date and time" -msgstr "Endre sluttdato og tidspunkt" +#: ../../addon/statusnet/Mod_Statusnet.php:254 +msgid "Current GNU social API is" +msgstr "" -#: ../../Zotlabs/Module/Events.php:458 -msgid "Finish date and time" -msgstr "Sluttdato og tidspunkt" +#: ../../addon/statusnet/Mod_Statusnet.php:258 +msgid "Cancel GNU social Connection" +msgstr "" -#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:461 -msgid "Adjust for viewer timezone" -msgstr "Juster i forhold til tilskuerens tidssone" +#: ../../addon/statusnet/Mod_Statusnet.php:270 +#: ../../addon/twitter/Mod_Twitter.php:145 +msgid "Currently connected to: " +msgstr "" -#: ../../Zotlabs/Module/Events.php:460 +#: ../../addon/statusnet/Mod_Statusnet.php:275 msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." -msgstr "Viktig for hendelser som skjer på et bestemt sted. Ikke praktisk for globale ferier eller fridager." +"Note: Due your privacy settings (Hide your profile " +"details from unknown viewers?) the link potentially included in public " +"postings relayed to GNU social will lead the visitor to a blank page " +"informing the visitor that the access to your profile has been restricted." +msgstr "" -#: ../../Zotlabs/Module/Events.php:462 -msgid "Edit Description" -msgstr "Endre beskrivelse" +#: ../../addon/statusnet/Mod_Statusnet.php:280 +msgid "Post to GNU social by default" +msgstr "" -#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Appman.php:117 -#: ../../Zotlabs/Module/Rbmark.php:101 -msgid "Description" -msgstr "Beskrivelse" +#: ../../addon/statusnet/Mod_Statusnet.php:280 +msgid "" +"If enabled your public postings will be posted to the associated GNU-social " +"account by default" +msgstr "" -#: ../../Zotlabs/Module/Events.php:464 -msgid "Edit Location" -msgstr "Endre plassering" +#: ../../addon/statusnet/Mod_Statusnet.php:289 +#: ../../addon/twitter/Mod_Twitter.php:169 +msgid "Clear OAuth configuration" +msgstr "" -#: ../../Zotlabs/Module/Events.php:464 ../../Zotlabs/Module/Locs.php:117 -#: ../../Zotlabs/Module/Profiles.php:477 ../../Zotlabs/Module/Profiles.php:698 -#: ../../Zotlabs/Module/Pubsites.php:41 ../../include/js_strings.php:25 -msgid "Location" -msgstr "Plassering" +#: ../../addon/statusnet/Mod_Statusnet.php:301 +msgid "GNU-Social Crosspost Connector" +msgstr "" -#: ../../Zotlabs/Module/Events.php:467 ../../Zotlabs/Module/Events.php:469 -msgid "Share this event" -msgstr "Del denne hendelsen" +#: ../../addon/statusnet/statusnet.php:145 +msgid "Post to GNU social" +msgstr "" -#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Photos.php:1093 -#: ../../Zotlabs/Module/Webpages.php:194 ../../Zotlabs/Lib/ThreadItem.php:719 -#: ../../include/conversation.php:1187 ../../include/page_widgets.php:40 -msgid "Preview" -msgstr "Forhåndsvisning" +#: ../../addon/statusnet/statusnet.php:593 +#: ../../Zotlabs/Module/Admin/Site.php:423 +msgid "Site name" +msgstr "Nettstedets navn" -#: ../../Zotlabs/Module/Events.php:471 ../../include/conversation.php:1232 -msgid "Permission settings" -msgstr "Tillatelser - innstillinger" +#: ../../addon/statusnet/statusnet.php:594 +msgid "API URL" +msgstr "" -#: ../../Zotlabs/Module/Events.php:476 -msgid "Advanced Options" -msgstr "Avanserte alternativer" +#: ../../addon/statusnet/statusnet.php:595 ../../addon/twitter/twitter.php:505 +#: ../../Zotlabs/Module/Oauth.php:113 ../../Zotlabs/Module/Oauth.php:139 +#: ../../Zotlabs/Module/Oauth2.php:117 ../../Zotlabs/Module/Oauth2.php:145 +msgid "Consumer Secret" +msgstr "Consumer Secret" -#: ../../Zotlabs/Module/Events.php:610 -msgid "Edit event" -msgstr "Endre hendelse" +#: ../../addon/statusnet/statusnet.php:596 ../../addon/twitter/twitter.php:504 +#: ../../Zotlabs/Module/Oauth.php:112 ../../Zotlabs/Module/Oauth.php:138 +msgid "Consumer Key" +msgstr "Consumer Key" -#: ../../Zotlabs/Module/Events.php:612 -msgid "Delete event" -msgstr "Slett hendelse" +#: ../../addon/statusnet/statusnet.php:597 +msgid "Application name" +msgstr "" -#: ../../Zotlabs/Module/Events.php:646 -msgid "calendar" -msgstr "kalender" +#: ../../addon/rtof/Mod_Rtof.php:24 +msgid "Friendica Crosspost Connector Settings saved." +msgstr "" -#: ../../Zotlabs/Module/Events.php:706 -msgid "Event removed" -msgstr "Hendelse slettet" +#: ../../addon/rtof/Mod_Rtof.php:47 +msgid "Send public postings to Friendica by default" +msgstr "" -#: ../../Zotlabs/Module/Events.php:709 -msgid "Failed to remove event" -msgstr "Mislyktes med å slette hendelse" +#: ../../addon/rtof/Mod_Rtof.php:51 +msgid "Friendica API Path" +msgstr "" -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:220 -#: ../../include/nav.php:92 ../../include/conversation.php:1632 -msgid "Photos" -msgstr "Bilder" +#: ../../addon/rtof/Mod_Rtof.php:55 +msgid "Friendica login name" +msgstr "" -#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 -#: ../../Zotlabs/Module/Admin.php:1406 ../../Zotlabs/Module/Settings.php:591 -#: ../../Zotlabs/Module/Settings.php:617 ../../Zotlabs/Module/Tagrm.php:15 -#: ../../Zotlabs/Module/Tagrm.php:138 ../../include/conversation.php:1259 -msgid "Cancel" -msgstr "Avbryt" +#: ../../addon/rtof/Mod_Rtof.php:59 +msgid "Friendica password" +msgstr "" -#: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 -msgid "This site is not a directory server" -msgstr "Dette nettstedet er ikke en katalogtjener" +#: ../../addon/rtof/Mod_Rtof.php:67 +msgid "Friendica Crosspost Connector" +msgstr "" -#: ../../Zotlabs/Module/Dirsearch.php:33 -msgid "This directory server requires an access token" -msgstr "Denne katalogtjeneren krever en tilgangsnøkkel (access token)" +#: ../../addon/rtof/rtof.php:51 +msgid "Post to Friendica" +msgstr "" -#: ../../Zotlabs/Module/Filer.php:52 -msgid "Save to Folder:" -msgstr "Lagre til mappe:" +#: ../../addon/wppost/wppost.php:47 +msgid "Post to WordPress" +msgstr "" -#: ../../Zotlabs/Module/Filer.php:52 -msgid "- select -" -msgstr "- velg -" +#: ../../addon/wppost/Mod_Wppost.php:30 +msgid "Wordpress Settings saved." +msgstr "" -#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033 -#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32 -#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:946 -#: ../../include/text.php:958 ../../include/widgets.php:201 -msgid "Save" -msgstr "Lagre" +#: ../../addon/wppost/Mod_Wppost.php:67 +msgid "WordPress username" +msgstr "" -#: ../../Zotlabs/Module/Dreport.php:27 -msgid "Invalid message" -msgstr "Ugyldig melding" +#: ../../addon/wppost/Mod_Wppost.php:71 +msgid "WordPress password" +msgstr "" -#: ../../Zotlabs/Module/Dreport.php:59 -msgid "no results" -msgstr "ingen resultater" +#: ../../addon/wppost/Mod_Wppost.php:75 +msgid "WordPress API URL" +msgstr "" -#: ../../Zotlabs/Module/Dreport.php:64 -#, php-format -msgid "Delivery report for %1$s" -msgstr "Leveringsrapport for %1$s" +#: ../../addon/wppost/Mod_Wppost.php:76 +msgid "Typically https://your-blog.tld/xmlrpc.php" +msgstr "" -#: ../../Zotlabs/Module/Dreport.php:78 -msgid "channel sync processed" -msgstr "Kanalsynkronisering er behandlet" +#: ../../addon/wppost/Mod_Wppost.php:79 +msgid "WordPress blogid" +msgstr "" -#: ../../Zotlabs/Module/Dreport.php:82 -msgid "queued" -msgstr "lagt i kø" +#: ../../addon/wppost/Mod_Wppost.php:80 +msgid "For multi-user sites such as wordpress.com, otherwise leave blank" +msgstr "" -#: ../../Zotlabs/Module/Dreport.php:86 -msgid "posted" -msgstr "lagt inn" +#: ../../addon/wppost/Mod_Wppost.php:84 +msgid "Post to WordPress by default" +msgstr "" -#: ../../Zotlabs/Module/Dreport.php:90 -msgid "accepted for delivery" -msgstr "akseptert for levering" +#: ../../addon/wppost/Mod_Wppost.php:88 +msgid "Forward comments (requires hubzilla_wp plugin)" +msgstr "" -#: ../../Zotlabs/Module/Dreport.php:94 -msgid "updated" -msgstr "oppdatert" +#: ../../addon/wppost/Mod_Wppost.php:92 ../../addon/dwpost/Mod_Dwpost.php:63 +#: ../../addon/ljpost/Mod_Ljpost.php:69 +msgid "Add link to original post" +msgstr "" -#: ../../Zotlabs/Module/Dreport.php:97 -msgid "update ignored" -msgstr "oppdatering ignorert" +#: ../../addon/wppost/Mod_Wppost.php:96 ../../addon/dwpost/Mod_Dwpost.php:67 +msgid "Link description (default:" +msgstr "" -#: ../../Zotlabs/Module/Dreport.php:100 -msgid "permission denied" -msgstr "tillatelse avvist" +#: ../../addon/wppost/Mod_Wppost.php:104 +msgid "Wordpress Post" +msgstr "" -#: ../../Zotlabs/Module/Dreport.php:104 -msgid "recipient not found" -msgstr "mottaker ble ikke funnet" +#: ../../addon/content_import/Mod_content_import.php:27 +msgid "No server specified" +msgstr "" -#: ../../Zotlabs/Module/Dreport.php:107 -msgid "mail recalled" -msgstr "melding tilbakekalt" +#: ../../addon/content_import/Mod_content_import.php:73 +msgid "Posts imported" +msgstr "" -#: ../../Zotlabs/Module/Dreport.php:110 -msgid "duplicate mail received" -msgstr "duplikat av melding mottatt" +#: ../../addon/content_import/Mod_content_import.php:113 +msgid "Files imported" +msgstr "" -#: ../../Zotlabs/Module/Dreport.php:113 -msgid "mail delivered" -msgstr "melding mottatt" +#: ../../addon/content_import/Mod_content_import.php:134 +#: ../../Zotlabs/Lib/Apps.php:336 +msgid "Content Import" +msgstr "" -#: ../../Zotlabs/Module/Editlayout.php:126 -#: ../../Zotlabs/Module/Layouts.php:127 ../../Zotlabs/Module/Layouts.php:186 -msgid "Layout Name" -msgstr "Layout-navn" +#: ../../addon/content_import/Mod_content_import.php:135 +msgid "" +"This will import all your conversations and cloud files from a cloned " +"channel on another server. This may take a while if you have lots of posts " +"and or files." +msgstr "" -#: ../../Zotlabs/Module/Editlayout.php:127 -#: ../../Zotlabs/Module/Layouts.php:130 -msgid "Layout Description (Optional)" -msgstr "Layoutens beskrivelse (valgfritt)" +#: ../../addon/content_import/Mod_content_import.php:136 +msgid "Include posts" +msgstr "" -#: ../../Zotlabs/Module/Editlayout.php:135 -msgid "Edit Layout" -msgstr "Endre layout" +#: ../../addon/content_import/Mod_content_import.php:136 +msgid "Conversations, Articles, Cards, and other posted content" +msgstr "" -#: ../../Zotlabs/Module/Editwebpage.php:143 -msgid "Page link" +#: ../../addon/content_import/Mod_content_import.php:137 +msgid "Include files" msgstr "" -#: ../../Zotlabs/Module/Editwebpage.php:169 -msgid "Edit Webpage" -msgstr "Endre webside" +#: ../../addon/content_import/Mod_content_import.php:137 +msgid "Files, Photos and other cloud storage" +msgstr "" -#: ../../Zotlabs/Module/Follow.php:34 -msgid "Channel added." -msgstr "Kanal lagt til." +#: ../../addon/content_import/Mod_content_import.php:138 +msgid "Original Server base URL" +msgstr "" -#: ../../Zotlabs/Module/Acl.php:227 -msgid "network" -msgstr "nettverk" +#: ../../addon/content_import/Mod_content_import.php:139 +#: ../../addon/hzfiles/hzfiles.php:84 +msgid "Since modified date yyyy-mm-dd" +msgstr "" -#: ../../Zotlabs/Module/Acl.php:237 -msgid "RSS" -msgstr "RSS" +#: ../../addon/content_import/Mod_content_import.php:140 +#: ../../addon/hzfiles/hzfiles.php:85 +msgid "Until modified date yyyy-mm-dd" +msgstr "" -#: ../../Zotlabs/Module/Group.php:24 -msgid "Privacy group created." -msgstr "Personverngruppen er opprettet." +#: ../../addon/hsse/hsse.php:82 ../../include/conversation.php:1332 +msgid "Set your location" +msgstr "Angi din plassering" -#: ../../Zotlabs/Module/Group.php:30 -msgid "Could not create privacy group." -msgstr "Kunne ikke opprette personverngruppen." +#: ../../addon/hsse/hsse.php:83 ../../include/conversation.php:1333 +msgid "Clear browser location" +msgstr "Fjern nettleserplassering" -#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 -#: ../../include/items.php:3893 -msgid "Privacy group not found." -msgstr "Personverngruppen ble ikke funnet" +#: ../../addon/hsse/hsse.php:95 ../../addon/cards/Mod_Card_edit.php:101 +#: ../../addon/articles/Mod_Article_edit.php:99 +#: ../../include/conversation.php:1345 ../../Zotlabs/Module/Editwebpage.php:143 +#: ../../Zotlabs/Module/Chat.php:218 ../../Zotlabs/Module/Editblock.php:116 +msgid "Insert web link" +msgstr "Sett inn web-lenke" -#: ../../Zotlabs/Module/Group.php:58 -msgid "Privacy group updated." -msgstr "Personverngruppen er oppdatert." +#: ../../addon/hsse/hsse.php:99 ../../include/conversation.php:1349 +msgid "Embed (existing) photo from your photo albums" +msgstr "" -#: ../../Zotlabs/Module/Group.php:90 -msgid "Create a group of channels." -msgstr "Lag en gruppe av kanaler." +#: ../../addon/hsse/hsse.php:134 ../../include/conversation.php:1382 +#: ../../Zotlabs/Module/Chat.php:216 +msgid "Please enter a link URL:" +msgstr "Vennligst skriv inn en lenke URL:" -#: ../../Zotlabs/Module/Group.php:91 ../../Zotlabs/Module/Group.php:184 -msgid "Privacy group name: " -msgstr "Personverngruppens navn:" +#: ../../addon/hsse/hsse.php:135 ../../include/conversation.php:1383 +msgid "Tag term:" +msgstr "Merkelapp:" -#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Group.php:187 -msgid "Members are visible to other channels" -msgstr "Medlemmer er synlig for andre kanaler" +#: ../../addon/hsse/hsse.php:136 ../../include/conversation.php:1384 +msgid "Where are you right now?" +msgstr "Hvor er du akkurat nå?" -#: ../../Zotlabs/Module/Group.php:111 -msgid "Privacy group removed." -msgstr "Personverngruppen er fjernet." +#: ../../addon/hsse/hsse.php:141 ../../include/conversation.php:1389 +msgid "Choose a different album..." +msgstr "" -#: ../../Zotlabs/Module/Group.php:113 -msgid "Unable to remove privacy group." -msgstr "Ikke i stand til å fjerne personverngruppen." +#: ../../addon/hsse/hsse.php:145 ../../include/conversation.php:1393 +msgid "Comments enabled" +msgstr "" -#: ../../Zotlabs/Module/Group.php:183 -msgid "Privacy group editor" -msgstr "Personverngruppebehandler" +#: ../../addon/hsse/hsse.php:146 ../../include/conversation.php:1394 +msgid "Comments disabled" +msgstr "" -#: ../../Zotlabs/Module/Group.php:197 -msgid "Members" -msgstr "Medlemmer" +#: ../../addon/hsse/hsse.php:153 ../../include/conversation.php:1411 +#: ../../Zotlabs/Module/Webpages.php:259 ../../Zotlabs/Module/Photos.php:1105 +#: ../../Zotlabs/Lib/ThreadItem.php:845 +msgid "Preview" +msgstr "Forhåndsvisning" -#: ../../Zotlabs/Module/Group.php:199 -msgid "All Connected Channels" -msgstr "Alle tilkoblede kanaler" +#: ../../addon/hsse/hsse.php:195 ../../include/conversation.php:1453 +msgid "Page link name" +msgstr "Sidens lenkenavn" -#: ../../Zotlabs/Module/Group.php:231 -msgid "Click on a channel to add or remove." -msgstr "Klikk på en kanal for å legge til eller fjerne." +#: ../../addon/hsse/hsse.php:198 ../../include/conversation.php:1456 +msgid "Post as" +msgstr "Lag innlegg som" -#: ../../Zotlabs/Module/Ffsapi.php:12 -msgid "Share content from Firefox to $Projectname" -msgstr "Del innhold fra Firefox til $Projectname" +#: ../../addon/hsse/hsse.php:200 ../../include/conversation.php:1458 +#: ../../Zotlabs/Lib/ThreadItem.php:836 +msgid "Bold" +msgstr "Uthevet" -#: ../../Zotlabs/Module/Ffsapi.php:15 -msgid "Activate the Firefox $Projectname provider" -msgstr "Skru på Firefox $Projectname tilbyderen" +#: ../../addon/hsse/hsse.php:201 ../../include/conversation.php:1459 +#: ../../Zotlabs/Lib/ThreadItem.php:837 +msgid "Italic" +msgstr "Kursiv" -#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 -msgid "Authorize application connection" -msgstr "Tillat programforbindelse" +#: ../../addon/hsse/hsse.php:202 ../../include/conversation.php:1460 +#: ../../Zotlabs/Lib/ThreadItem.php:838 +msgid "Underline" +msgstr "Understreket" -#: ../../Zotlabs/Module/Api.php:62 -msgid "Return to your app and insert this Securty Code:" -msgstr "Gå tilbake til din app og legg inn denne sikkerhetskoden:" +#: ../../addon/hsse/hsse.php:203 ../../include/conversation.php:1461 +#: ../../Zotlabs/Lib/ThreadItem.php:839 +msgid "Quote" +msgstr "Sitat" -#: ../../Zotlabs/Module/Api.php:72 -msgid "Please login to continue." -msgstr "Vennligst logg inn for å fortsette." +#: ../../addon/hsse/hsse.php:204 ../../include/conversation.php:1462 +#: ../../Zotlabs/Lib/ThreadItem.php:840 +msgid "Code" +msgstr "Kode" -#: ../../Zotlabs/Module/Api.php:87 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Vil du tillate dette programmet å få tilgang til dine innlegg og kontakter, og/eller lage nye innlegg for deg?" +#: ../../addon/hsse/hsse.php:205 ../../include/conversation.php:1463 +#: ../../Zotlabs/Lib/ThreadItem.php:842 +msgid "Attach/Upload file" +msgstr "" -#: ../../Zotlabs/Module/Help.php:26 -msgid "Documentation Search" -msgstr "Søk i dokumentasjon" +#: ../../addon/hsse/hsse.php:212 ../../include/conversation.php:1470 +msgid "Toggle voting" +msgstr "Skru av eller på stemming" -#: ../../Zotlabs/Module/Help.php:67 ../../Zotlabs/Module/Help.php:73 -#: ../../Zotlabs/Module/Help.php:79 -msgid "Help:" -msgstr "Hjelp:" +#: ../../addon/hsse/hsse.php:215 ../../include/conversation.php:1477 +msgid "Disable comments" +msgstr "" -#: ../../Zotlabs/Module/Help.php:85 ../../Zotlabs/Module/Help.php:90 -#: ../../Zotlabs/Module/Layouts.php:183 ../../Zotlabs/Lib/Apps.php:223 -#: ../../include/nav.php:159 -msgid "Help" -msgstr "Hjelp" +#: ../../addon/hsse/hsse.php:216 ../../include/conversation.php:1478 +msgid "Toggle comments" +msgstr "" -#: ../../Zotlabs/Module/Help.php:120 -msgid "$Projectname Documentation" -msgstr "$Projectname dokumentasjon" +#: ../../addon/hsse/hsse.php:221 ../../addon/cards/Mod_Card_edit.php:118 +#: ../../addon/articles/Mod_Article_edit.php:116 +#: ../../include/conversation.php:1484 ../../Zotlabs/Module/Editblock.php:129 +#: ../../Zotlabs/Module/Photos.php:678 ../../Zotlabs/Module/Photos.php:1050 +msgid "Title (optional)" +msgstr "Tittel (valgfri)" -#: ../../Zotlabs/Module/Filestorage.php:88 -msgid "Permission Denied." -msgstr "Tillatelse avvist." +#: ../../addon/hsse/hsse.php:224 ../../include/conversation.php:1488 +msgid "Categories (optional, comma-separated list)" +msgstr "Kategorier (valgfri, kommaseparert liste)" -#: ../../Zotlabs/Module/Filestorage.php:104 -msgid "File not found." -msgstr "Filen ble ikke funnet." +#: ../../addon/hsse/hsse.php:225 ../../include/conversation.php:1489 +msgid "Permission settings" +msgstr "Tillatelser - innstillinger" -#: ../../Zotlabs/Module/Filestorage.php:147 -msgid "Edit file permissions" -msgstr "Endre filtillatelser" +#: ../../addon/hsse/hsse.php:247 ../../include/conversation.php:1511 +msgid "Other networks and post services" +msgstr "Andre nettverk og innleggstjenester" -#: ../../Zotlabs/Module/Filestorage.php:156 -msgid "Set/edit permissions" -msgstr "Angi/endre tillatelser" +#: ../../addon/hsse/hsse.php:250 ../../include/conversation.php:1514 +msgid "Set expiration date" +msgstr "Angi utløpsdato" -#: ../../Zotlabs/Module/Filestorage.php:157 -msgid "Include all files and sub folders" -msgstr "Inkluder alle filer og undermapper" +#: ../../addon/hsse/hsse.php:253 ../../include/conversation.php:1517 +msgid "Set publish date" +msgstr "Angi publiseringsdato" -#: ../../Zotlabs/Module/Filestorage.php:158 -msgid "Return to file list" -msgstr "Gå tilbake til filoversikten" +#: ../../addon/hsse/hsse.php:255 ../../include/conversation.php:1519 +#: ../../Zotlabs/Module/Chat.php:217 ../../Zotlabs/Lib/ThreadItem.php:848 +msgid "Encrypt text" +msgstr "Krypter tekst" -#: ../../Zotlabs/Module/Filestorage.php:160 -msgid "Copy/paste this code to attach file to a post" -msgstr "Kopier og lim inn denne koden for å legge til filen i et innlegg" +#: ../../addon/hsse/Mod_Hsse.php:15 +msgid "WYSIWYG status editor" +msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:161 -msgid "Copy/paste this URL to link file from a web page" -msgstr "Kopier og lim inn denne URL-en for å lenke til filen fra en webside" +#: ../../addon/hsse/Mod_Hsse.php:24 +msgid "WYSIWYG Status App" +msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:163 -msgid "Share this file" -msgstr "Del denne filen" +#: ../../addon/hsse/Mod_Hsse.php:32 +msgid "WYSIWYG Status" +msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:164 -msgid "Show URL to this file" -msgstr "Vis URLen til denne filen" +#: ../../addon/openstreetmap/openstreetmap.php:133 +msgid "View Larger" +msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:165 -msgid "Notify your contacts about this file" -msgstr "Varsle dine kontakter om denne filen" +#: ../../addon/openstreetmap/openstreetmap.php:156 +msgid "Tile Server URL" +msgstr "" -#: ../../Zotlabs/Module/Apps.php:47 ../../include/widgets.php:102 -#: ../../include/nav.php:163 -msgid "Apps" -msgstr "Apper" +#: ../../addon/openstreetmap/openstreetmap.php:156 +msgid "" +"A list of public tile servers" +msgstr "" -#: ../../Zotlabs/Module/Attach.php:13 -msgid "Item not available." -msgstr "Elementet er ikke tilgjengelig." +#: ../../addon/openstreetmap/openstreetmap.php:157 +msgid "Nominatim (reverse geocoding) Server URL" +msgstr "" -#: ../../Zotlabs/Module/Import.php:32 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "Din tjenesteplan tillater bare %d kanaler." +#: ../../addon/openstreetmap/openstreetmap.php:157 +msgid "" +"A list of Nominatim servers" +msgstr "" -#: ../../Zotlabs/Module/Import.php:70 ../../Zotlabs/Module/Import_items.php:42 -msgid "Nothing to import." -msgstr "Ingenting å importere." +#: ../../addon/openstreetmap/openstreetmap.php:158 +msgid "Default zoom" +msgstr "" -#: ../../Zotlabs/Module/Import.php:94 ../../Zotlabs/Module/Import_items.php:66 -msgid "Unable to download data from old server" -msgstr "Ikke i stand til å laste ned data fra gammel tjener" +#: ../../addon/openstreetmap/openstreetmap.php:158 +msgid "" +"The default zoom level. (1:world, 18:highest, also depends on tile server)" +msgstr "" -#: ../../Zotlabs/Module/Import.php:100 -#: ../../Zotlabs/Module/Import_items.php:72 -msgid "Imported file is empty." -msgstr "Importert fil er tom." +#: ../../addon/openstreetmap/openstreetmap.php:159 +msgid "Include marker on map" +msgstr "" -#: ../../Zotlabs/Module/Import.php:122 -#: ../../Zotlabs/Module/Import_items.php:86 -#, php-format -msgid "Warning: Database versions differ by %1$d updates." -msgstr "Advarsel: databaseversjoner avviker med %1$d oppdateringer." +#: ../../addon/openstreetmap/openstreetmap.php:159 +msgid "Include a marker on the map." +msgstr "" -#: ../../Zotlabs/Module/Import.php:150 ../../include/import.php:86 -msgid "Cloned channel not found. Import failed." -msgstr "Klonet kanal ble ikke funnet. Import mislyktes." +#: ../../addon/openstreetmap/openstreetmap.php:171 +#: ../../addon/rendezvous/rendezvous.php:82 ../../addon/twitter/twitter.php:493 +#: ../../addon/msgfooter/msgfooter.php:54 ../../addon/diaspora/diaspora.php:105 +#: ../../addon/piwik/piwik.php:116 ../../addon/logrot/logrot.php:54 +#: ../../addon/xmpp/xmpp.php:54 ../../Zotlabs/Module/Settings/Channel.php:150 +#: ../../Zotlabs/Module/Defperms.php:111 +msgid "Settings updated." +msgstr "Innstillinger oppdatert." -#: ../../Zotlabs/Module/Import.php:160 -msgid "No channel. Import failed." -msgstr "Ingen kanal. Import mislyktes." +#: ../../addon/ijpost/Mod_Ijpost.php:23 +msgid "Insane Journal Crosspost Connector Settings saved." +msgstr "" -#: ../../Zotlabs/Module/Import.php:510 -#: ../../include/Import/import_diaspora.php:142 -msgid "Import completed." -msgstr "Import ferdig." +#: ../../addon/ijpost/Mod_Ijpost.php:35 +msgid "Insane Journal Crosspost Connector App" +msgstr "" -#: ../../Zotlabs/Module/Import.php:532 -msgid "You must be logged in to use this feature." -msgstr "Du må være innlogget for å bruke denne funksjonen." +#: ../../addon/ijpost/Mod_Ijpost.php:35 ../../addon/xmpp/Mod_Xmpp.php:35 +#: ../../Zotlabs/Module/Lang.php:20 ../../Zotlabs/Module/Invite.php:56 +msgid "Not Installed" +msgstr "" -#: ../../Zotlabs/Module/Import.php:537 -msgid "Import Channel" -msgstr "Importer kanal" +#: ../../addon/ijpost/Mod_Ijpost.php:36 +msgid "Relay public postings to Insane Journal" +msgstr "" -#: ../../Zotlabs/Module/Import.php:538 -msgid "" -"Use this form to import an existing channel from a different server/hub. You" -" may retrieve the channel identity from the old server/hub via the network " -"or provide an export file." -msgstr "Bruk dette skjemaet for å importere en eksisterende kanal fra en annen tjener/hub. Du kan hente inn kanalidentiteten fra den gamle tjeneren/huben via nettverket eller ved å bruke en eksportfil." +#: ../../addon/ijpost/Mod_Ijpost.php:53 +msgid "InsaneJournal username" +msgstr "" -#: ../../Zotlabs/Module/Import.php:539 -#: ../../Zotlabs/Module/Import_items.php:119 -msgid "File to Upload" -msgstr "Fil som skal lastes opp" +#: ../../addon/ijpost/Mod_Ijpost.php:57 +msgid "InsaneJournal password" +msgstr "" -#: ../../Zotlabs/Module/Import.php:540 -msgid "Or provide the old server/hub details" -msgstr "Eller oppgi detaljene fra den gamle tjeneren/hub-en" +#: ../../addon/ijpost/Mod_Ijpost.php:61 +msgid "Post to InsaneJournal by default" +msgstr "" -#: ../../Zotlabs/Module/Import.php:541 -msgid "Your old identity address (xyz@example.com)" -msgstr "Din gamle identitetsadresse (xyz@example.com)" +#: ../../addon/ijpost/Mod_Ijpost.php:69 +msgid "Insane Journal Crosspost Connector" +msgstr "" -#: ../../Zotlabs/Module/Import.php:542 -msgid "Your old login email address" -msgstr "Din gamle innloggings e-postadresse" +#: ../../addon/ijpost/ijpost.php:44 +msgid "Post to Insane Journal" +msgstr "" -#: ../../Zotlabs/Module/Import.php:543 -msgid "Your old login password" -msgstr "Ditt gamle innloggingspassord" +#: ../../addon/wholikesme/wholikesme.php:29 +msgid "Who likes me?" +msgstr "" -#: ../../Zotlabs/Module/Import.php:544 -msgid "" -"For either option, please choose whether to make this hub your new primary " -"address, or whether your old location should continue this role. You will be" -" able to post from either location, but only one can be marked as the " -"primary location for files, photos, and media." -msgstr "Enten du tar det ene eller det andre valget, vennligst angi om du vil at denne hubben skal være din nye primære adresse, eller om din gamle plassering skal fortsette å ha denne rollen. Du kan lage innlegg fra den ene eller den andre plasseringen, men bare en av dem kan markeres som den primære plasseringen for filer, bilder og media." +#: ../../addon/qrator/qrator.php:48 +msgid "QR code" +msgstr "" -#: ../../Zotlabs/Module/Import.php:545 -msgid "Make this hub my primary location" -msgstr "Gjør dette nettstedet til min primære plassering" +#: ../../addon/qrator/qrator.php:63 +msgid "QR Generator" +msgstr "" -#: ../../Zotlabs/Module/Import.php:546 -msgid "" -"Import existing posts if possible (experimental - limited by available " -"memory" -msgstr "Importer eksisterende innlegg om mulig (eksperimentelt - begrenset av tilgjengelig minne)" +#: ../../addon/qrator/qrator.php:64 +msgid "Enter some text" +msgstr "" -#: ../../Zotlabs/Module/Import.php:547 -msgid "" -"This process may take several minutes to complete. Please submit the form " -"only once and leave this page open until finished." -msgstr "Denne prosessen kan ta flere minutter å fullføre. Vennligst send inn dette skjemaet bare en gang og la siden være åpen inntil den er ferdig." +#: ../../addon/pubcrawl/as.php:1332 ../../addon/pubcrawl/as.php:2002 +#: ../../include/network.php:1767 ../../Zotlabs/Lib/Activity.php:3588 +msgid "ActivityPub" +msgstr "" -#: ../../Zotlabs/Module/Item.php:178 -msgid "Unable to locate original post." -msgstr "Ikke i stand til å finne opprinnelig innlegg." +#: ../../addon/pubcrawl/as.php:1958 ../../addon/diaspora/Receiver.php:1647 +#: ../../Zotlabs/Module/Like.php:445 ../../Zotlabs/Module/Subthread.php:115 +msgid "status" +msgstr "status" -#: ../../Zotlabs/Module/Item.php:427 -msgid "Empty post discarded." -msgstr "Tomt innlegg forkastet." +#: ../../addon/pubcrawl/as.php:1993 ../../addon/diaspora/Receiver.php:1591 +#: ../../include/conversation.php:184 ../../Zotlabs/Module/Like.php:477 +#: ../../Zotlabs/Lib/Activity.php:3579 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s liker %2$s sin %3$s" -#: ../../Zotlabs/Module/Item.php:467 -msgid "Executable content type not permitted to this channel." -msgstr "Kjørbar innholdstype er ikke tillat for denne kanalen." +#: ../../addon/pubcrawl/as.php:1995 ../../include/conversation.php:187 +#: ../../Zotlabs/Module/Like.php:479 ../../Zotlabs/Lib/Activity.php:3581 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s liker ikke %2$s sin %3$s" -#: ../../Zotlabs/Module/Item.php:847 -msgid "Duplicate post suppressed." -msgstr "Duplikat av innlegg forhindret." +#: ../../addon/pubcrawl/Mod_Pubcrawl.php:25 +msgid "ActivityPub Protocol Settings updated." +msgstr "" -#: ../../Zotlabs/Module/Item.php:977 -msgid "System error. Post not saved." -msgstr "Systemfeil. Innlegg ble ikke lagret." +#: ../../addon/pubcrawl/Mod_Pubcrawl.php:41 +msgid "" +"The activitypub protocol does not support location independence. Connections " +"you make within that network may be unreachable from alternate channel " +"locations." +msgstr "" -#: ../../Zotlabs/Module/Item.php:1241 -msgid "Unable to obtain post information from database." -msgstr "Ikke i stand til å få tak i informasjon om innlegg fra databasen." +#: ../../addon/pubcrawl/Mod_Pubcrawl.php:47 +msgid "Deliver to ActivityPub recipients in privacy groups" +msgstr "" -#: ../../Zotlabs/Module/Item.php:1248 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "Du har nådd din grense på %1$.0f startinnlegg." +#: ../../addon/pubcrawl/Mod_Pubcrawl.php:47 +msgid "" +"May result in a large number of mentions and expose all the members of your " +"privacy group" +msgstr "" -#: ../../Zotlabs/Module/Item.php:1255 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Du har nådd din grense på %1$.0f websider." +#: ../../addon/pubcrawl/Mod_Pubcrawl.php:51 +msgid "Send multi-media HTML articles" +msgstr "" -#: ../../Zotlabs/Module/Layouts.php:181 ../../include/text.php:2267 -msgid "Layouts" -msgstr "Layout" +#: ../../addon/pubcrawl/Mod_Pubcrawl.php:51 +msgid "Not supported by some microblog services such as Mastodon" +msgstr "" -#: ../../Zotlabs/Module/Layouts.php:183 -msgid "Comanche page description language help" -msgstr "Hjelp med Comanche sidebeskrivelsesspråk" +#: ../../addon/pubcrawl/Mod_Pubcrawl.php:59 +msgid "Activitypub Protocol" +msgstr "" -#: ../../Zotlabs/Module/Layouts.php:187 -msgid "Layout Description" -msgstr "Layout-beskrivelse" +#: ../../addon/fediwordle/fediwordle.php:211 +msgid "ERROR: word length is not correct!" +msgstr "" -#: ../../Zotlabs/Module/Layouts.php:192 -msgid "Download PDL file" -msgstr "Last ned PDL-fil" +#: ../../addon/fediwordle/Mod_Fediwordle.php:22 +msgid "Fediwordle App" +msgstr "" -#: ../../Zotlabs/Module/Home.php:61 ../../Zotlabs/Module/Home.php:69 -#: ../../Zotlabs/Module/Siteinfo.php:65 -msgid "$Projectname" -msgstr "$Projectname" +#: ../../addon/fediwordle/Mod_Fediwordle.php:23 +msgid "A distributed word game inspired by wordle." +msgstr "" -#: ../../Zotlabs/Module/Home.php:79 -#, php-format -msgid "Welcome to %s" -msgstr "Velkommen til %s" +#: ../../addon/fediwordle/Mod_Fediwordle.php:24 +msgid "" +"To start a game, enter [wordle]your_word[/wordle] somewhere in a toplevel " +"post." +msgstr "" -#: ../../Zotlabs/Module/Id.php:13 -msgid "First Name" -msgstr "Fornavn" +#: ../../addon/fediwordle/Mod_Fediwordle.php:25 +msgid "Your contacts can post their guess in the comments." +msgstr "" -#: ../../Zotlabs/Module/Id.php:14 -msgid "Last Name" -msgstr "Etternavn" +#: ../../addon/fediwordle/Mod_Fediwordle.php:26 +msgid "" +"Your channel will evaluate the guess and automatically post the response." +msgstr "" -#: ../../Zotlabs/Module/Id.php:15 -msgid "Nickname" -msgstr "Kallenavn" +#: ../../addon/fediwordle/Mod_Fediwordle.php:28 +msgid "Correct letters" +msgstr "" -#: ../../Zotlabs/Module/Id.php:16 -msgid "Full Name" -msgstr "Fullt navn" +#: ../../addon/fediwordle/Mod_Fediwordle.php:29 +msgid "Letters contained in the word but at the wrong spot" +msgstr "" -#: ../../Zotlabs/Module/Id.php:17 ../../Zotlabs/Module/Id.php:18 -#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047 -#: ../../include/network.php:2151 ../../boot.php:1705 -msgid "Email" -msgstr "E-post" +#: ../../addon/fediwordle/Mod_Fediwordle.php:30 +msgid "Letters not contained in the word" +msgstr "" -#: ../../Zotlabs/Module/Id.php:19 ../../Zotlabs/Module/Id.php:20 -#: ../../Zotlabs/Module/Id.php:21 ../../Zotlabs/Lib/Apps.php:236 -msgid "Profile Photo" -msgstr "Profilbilde" +#: ../../addon/ldapauth/ldapauth.php:101 +msgid "An account has been created for you." +msgstr "" -#: ../../Zotlabs/Module/Id.php:22 -msgid "Profile Photo 16px" -msgstr "Profilbilde 16px" +#: ../../addon/ldapauth/ldapauth.php:108 +msgid "Authentication successful but rejected: account creation is disabled." +msgstr "" -#: ../../Zotlabs/Module/Id.php:23 -msgid "Profile Photo 32px" -msgstr "Profilbilde 32px" +#: ../../addon/dwpost/Mod_Dwpost.php:26 +msgid "Dreamwidth Crosspost Connector Settings saved." +msgstr "" -#: ../../Zotlabs/Module/Id.php:24 -msgid "Profile Photo 48px" -msgstr "Profilbilde 48px" +#: ../../addon/dwpost/Mod_Dwpost.php:51 +msgid "Dreamwidth username" +msgstr "" -#: ../../Zotlabs/Module/Id.php:25 -msgid "Profile Photo 64px" -msgstr "Profilbilde 64px" +#: ../../addon/dwpost/Mod_Dwpost.php:55 +msgid "Dreamwidth password" +msgstr "" -#: ../../Zotlabs/Module/Id.php:26 -msgid "Profile Photo 80px" -msgstr "Profilbilde 80px" +#: ../../addon/dwpost/Mod_Dwpost.php:59 +msgid "Post to Dreamwidth by default" +msgstr "" -#: ../../Zotlabs/Module/Id.php:27 -msgid "Profile Photo 128px" -msgstr "Profilbilde 128px" +#: ../../addon/dwpost/Mod_Dwpost.php:75 +msgid "Dreamwidth Crosspost Connector" +msgstr "" -#: ../../Zotlabs/Module/Id.php:28 -msgid "Timezone" -msgstr "Tidssone" +#: ../../addon/dwpost/dwpost.php:49 +msgid "Post to Dreamwidth" +msgstr "" -#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:731 -msgid "Homepage URL" -msgstr "Hjemmeside URL" +#: ../../addon/morepokes/morepokes.php:19 +msgid "bitchslap" +msgstr "" -#: ../../Zotlabs/Module/Id.php:30 ../../Zotlabs/Lib/Apps.php:234 -msgid "Language" -msgstr "Språk" +#: ../../addon/morepokes/morepokes.php:19 +msgid "bitchslapped" +msgstr "" -#: ../../Zotlabs/Module/Id.php:31 -msgid "Birth Year" -msgstr "Fødselsår" +#: ../../addon/morepokes/morepokes.php:20 +msgid "shag" +msgstr "" -#: ../../Zotlabs/Module/Id.php:32 -msgid "Birth Month" -msgstr "Fødselsmåne" +#: ../../addon/morepokes/morepokes.php:20 +msgid "shagged" +msgstr "" -#: ../../Zotlabs/Module/Id.php:33 -msgid "Birth Day" -msgstr "Fødselsdag" +#: ../../addon/morepokes/morepokes.php:21 +msgid "patent" +msgstr "" -#: ../../Zotlabs/Module/Id.php:34 -msgid "Birthdate" -msgstr "Fødselsdato" +#: ../../addon/morepokes/morepokes.php:21 +msgid "patented" +msgstr "" -#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:454 -msgid "Gender" -msgstr "Kjønn" +#: ../../addon/morepokes/morepokes.php:22 +msgid "hug" +msgstr "" -#: ../../Zotlabs/Module/Id.php:108 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Male" -msgstr "Mannlig" +#: ../../addon/morepokes/morepokes.php:22 +msgid "hugged" +msgstr "" -#: ../../Zotlabs/Module/Id.php:110 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Female" -msgstr "Kvinnelig" +#: ../../addon/morepokes/morepokes.php:23 +msgid "murder" +msgstr "" -#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 -msgid "webpage" -msgstr "nettside" +#: ../../addon/morepokes/morepokes.php:23 +msgid "murdered" +msgstr "" -#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 -msgid "block" -msgstr "byggekloss" +#: ../../addon/morepokes/morepokes.php:24 +msgid "worship" +msgstr "" -#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 -msgid "layout" -msgstr "layout" +#: ../../addon/morepokes/morepokes.php:24 +msgid "worshipped" +msgstr "" -#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 -msgid "menu" -msgstr "meny" +#: ../../addon/morepokes/morepokes.php:25 +msgid "kiss" +msgstr "" -#: ../../Zotlabs/Module/Impel.php:196 -#, php-format -msgid "%s element installed" -msgstr "%s element installert" +#: ../../addon/morepokes/morepokes.php:25 +msgid "kissed" +msgstr "" -#: ../../Zotlabs/Module/Impel.php:199 -#, php-format -msgid "%s element installation failed" -msgstr "Installasjon av %s-element mislyktes" +#: ../../addon/morepokes/morepokes.php:26 +msgid "tempt" +msgstr "" -#: ../../Zotlabs/Module/Like.php:19 -msgid "Like/Dislike" -msgstr "Liker/Liker ikke" +#: ../../addon/morepokes/morepokes.php:26 +msgid "tempted" +msgstr "" -#: ../../Zotlabs/Module/Like.php:24 -msgid "This action is restricted to members." -msgstr "Denne handlingen er begrenset til medlemmer." +#: ../../addon/morepokes/morepokes.php:27 +msgid "raise eyebrows at" +msgstr "" -#: ../../Zotlabs/Module/Like.php:25 -msgid "" -"Please login with your $Projectname ID or register as a new $Projectname member to continue." -msgstr "Vennligst logg inn med din $Projectname ID eller registrer deg som et nytt $Projectname-medlem for å fortsette" +#: ../../addon/morepokes/morepokes.php:27 +msgid "raised their eyebrows at" +msgstr "" -#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131 -#: ../../Zotlabs/Module/Like.php:169 -msgid "Invalid request." -msgstr "Ugyldig forespørsel." +#: ../../addon/morepokes/morepokes.php:28 +msgid "insult" +msgstr "" -#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 -msgid "channel" -msgstr "kanal" +#: ../../addon/morepokes/morepokes.php:28 +msgid "insulted" +msgstr "" -#: ../../Zotlabs/Module/Like.php:146 -msgid "thing" -msgstr "ting" +#: ../../addon/morepokes/morepokes.php:29 +msgid "praise" +msgstr "" -#: ../../Zotlabs/Module/Like.php:192 -msgid "Channel unavailable." -msgstr "Kanalen er utilgjengelig." +#: ../../addon/morepokes/morepokes.php:29 +msgid "praised" +msgstr "" -#: ../../Zotlabs/Module/Like.php:240 -msgid "Previous action reversed." -msgstr "Forrige handling er omgjort." +#: ../../addon/morepokes/morepokes.php:30 +msgid "be dubious of" +msgstr "" -#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 -#: ../../Zotlabs/Module/Tagger.php:47 ../../include/text.php:1940 -#: ../../include/conversation.php:120 -msgid "photo" -msgstr "foto" +#: ../../addon/morepokes/morepokes.php:30 +msgid "was dubious of" +msgstr "" -#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 -#: ../../include/text.php:1946 ../../include/conversation.php:148 -msgid "status" -msgstr "status" +#: ../../addon/morepokes/morepokes.php:31 +msgid "eat" +msgstr "" -#: ../../Zotlabs/Module/Like.php:420 ../../include/conversation.php:164 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s liker %2$s sin %3$s" +#: ../../addon/morepokes/morepokes.php:31 +msgid "ate" +msgstr "" -#: ../../Zotlabs/Module/Like.php:422 ../../include/conversation.php:167 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s liker ikke %2$s sin %3$s" +#: ../../addon/morepokes/morepokes.php:32 +msgid "giggle and fawn at" +msgstr "" -#: ../../Zotlabs/Module/Like.php:424 -#, php-format -msgid "%1$s agrees with %2$s's %3$s" -msgstr "%1$s er enig med %2$s sin %3$s" +#: ../../addon/morepokes/morepokes.php:32 +msgid "giggled and fawned at" +msgstr "" -#: ../../Zotlabs/Module/Like.php:426 -#, php-format -msgid "%1$s doesn't agree with %2$s's %3$s" -msgstr "%1$s er ikke enig med %2$s sin %3$s" +#: ../../addon/morepokes/morepokes.php:33 +msgid "doubt" +msgstr "" -#: ../../Zotlabs/Module/Like.php:428 -#, php-format -msgid "%1$s abstains from a decision on %2$s's %3$s" -msgstr "%1$s avstår fra å mene noe om %2$s sin %3$s" +#: ../../addon/morepokes/morepokes.php:33 +msgid "doubted" +msgstr "" -#: ../../Zotlabs/Module/Like.php:430 -#, php-format -msgid "%1$s is attending %2$s's %3$s" -msgstr "%1$s deltar på %2$ss %3$s" +#: ../../addon/morepokes/morepokes.php:34 +msgid "glare" +msgstr "" -#: ../../Zotlabs/Module/Like.php:432 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "%1$s deltar ikke på %2$ss %3$s" +#: ../../addon/morepokes/morepokes.php:34 +msgid "glared at" +msgstr "" -#: ../../Zotlabs/Module/Like.php:434 -#, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "%1$s deltar kanskje på %2$ss %3$s" +#: ../../addon/morepokes/morepokes.php:35 +msgid "fuck" +msgstr "" -#: ../../Zotlabs/Module/Like.php:537 -msgid "Action completed." -msgstr "Handling ferdig." +#: ../../addon/morepokes/morepokes.php:35 +msgid "fucked" +msgstr "" -#: ../../Zotlabs/Module/Like.php:538 -msgid "Thank you." -msgstr "Tusen takk." +#: ../../addon/morepokes/morepokes.php:36 +msgid "bonk" +msgstr "" -#: ../../Zotlabs/Module/Import_items.php:102 -msgid "Import completed" -msgstr "Import ferdig" +#: ../../addon/morepokes/morepokes.php:36 +msgid "bonked" +msgstr "" -#: ../../Zotlabs/Module/Import_items.php:117 -msgid "Import Items" -msgstr "Importer elementer" +#: ../../addon/morepokes/morepokes.php:37 +msgid "declare undying love for" +msgstr "" -#: ../../Zotlabs/Module/Import_items.php:118 -msgid "" -"Use this form to import existing posts and content from an export file." -msgstr "Bruk dette skjemaet for å importere eksisterende innlegg og innhold fra en eksportfil." +#: ../../addon/morepokes/morepokes.php:37 +msgid "declared undying love for" +msgstr "" -#: ../../Zotlabs/Module/Invite.php:29 -msgid "Total invitation limit exceeded." -msgstr "Grensen for totalt antall invitasjoner er overskredet." +#: ../../addon/rendezvous/rendezvous.php:57 +msgid "Errors encountered deleting database table " +msgstr "" -#: ../../Zotlabs/Module/Invite.php:53 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s : ikke en gyldig e-postadresse." +#: ../../addon/rendezvous/rendezvous.php:95 ../../addon/twitter/twitter.php:502 +msgid "Submit Settings" +msgstr "" -#: ../../Zotlabs/Module/Invite.php:63 -msgid "Please join us on $Projectname" -msgstr "Bli med oss på $Projectname" +#: ../../addon/rendezvous/rendezvous.php:96 +msgid "Drop tables when uninstalling?" +msgstr "" -#: ../../Zotlabs/Module/Invite.php:74 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Invitasjonsgrensen er overskredet. Vennligst kontakt administratoren ved ditt nettsted." +#: ../../addon/rendezvous/rendezvous.php:96 +msgid "" +"If checked, the Rendezvous database tables will be deleted when the plugin " +"is uninstalled." +msgstr "" -#: ../../Zotlabs/Module/Invite.php:79 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : meldingslevering feilet." +#: ../../addon/rendezvous/rendezvous.php:97 +msgid "Mapbox Access Token" +msgstr "" -#: ../../Zotlabs/Module/Invite.php:83 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d melding sendt." -msgstr[1] "%d meldinger sendt." +#: ../../addon/rendezvous/rendezvous.php:97 +msgid "" +"If you enter a Mapbox access token, it will be used to retrieve map tiles " +"from Mapbox instead of the default OpenStreetMap tile server." +msgstr "" -#: ../../Zotlabs/Module/Invite.php:102 -msgid "You have no more invitations available" -msgstr "Du har ikke flere invitasjoner tilgjengelig" +#: ../../addon/rendezvous/rendezvous.php:162 +msgid "Rendezvous" +msgstr "" -#: ../../Zotlabs/Module/Invite.php:133 -msgid "Send invitations" -msgstr "Send invitasjoner" +#: ../../addon/rendezvous/rendezvous.php:167 +msgid "" +"This identity has been deleted by another member due to inactivity. Please " +"press the \"New identity\" button or refresh the page to register a new " +"identity. You may use the same name." +msgstr "" -#: ../../Zotlabs/Module/Invite.php:134 -msgid "Enter email addresses, one per line:" -msgstr "Skriv e-postadresser, en per linje:" +#: ../../addon/rendezvous/rendezvous.php:168 +msgid "Welcome to Rendezvous!" +msgstr "" -#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:249 -msgid "Your message:" -msgstr "Din melding:" +#: ../../addon/rendezvous/rendezvous.php:169 +msgid "" +"Enter your name to join this rendezvous. To begin sharing your location with " +"the other members, tap the GPS control. When your location is discovered, a " +"red dot will appear and others will be able to see you on the map." +msgstr "" -#: ../../Zotlabs/Module/Invite.php:136 -msgid "Please join my community on $Projectname." -msgstr "Du er velkommen til å bli med i mitt fellesskap på $Projectname." +#: ../../addon/rendezvous/rendezvous.php:171 +msgid "Let's meet here" +msgstr "" -#: ../../Zotlabs/Module/Invite.php:138 -msgid "You will need to supply this invitation code:" -msgstr "Du må oppgi denne invitasjonskoden:" +#: ../../addon/rendezvous/rendezvous.php:173 +#: ../../addon/cart/submodules/hzservices.php:657 +#: ../../addon/cart/submodules/manualcat.php:260 +#: ../../Zotlabs/Module/Cdav.php:1013 ../../Zotlabs/Module/Appman.php:211 +#: ../../Zotlabs/Module/Rbmark.php:100 +msgid "Description" +msgstr "Beskrivelse" -#: ../../Zotlabs/Module/Invite.php:139 -msgid "" -"1. Register at any $Projectname location (they are all inter-connected)" -msgstr "1. Registrer ved enhver $Projectname-lokasjon (de er alle forbundet med hverandre)" +#: ../../addon/rendezvous/rendezvous.php:174 +msgid "New marker" +msgstr "" -#: ../../Zotlabs/Module/Invite.php:141 -msgid "2. Enter my $Projectname network address into the site searchbar." -msgstr "2. Skriv inn min $Projectname-adresse i nettstedets søkefelt." +#: ../../addon/rendezvous/rendezvous.php:175 +msgid "Edit marker" +msgstr "" -#: ../../Zotlabs/Module/Invite.php:142 -msgid "or visit" -msgstr "eller besøke" +#: ../../addon/rendezvous/rendezvous.php:176 +msgid "New identity" +msgstr "" -#: ../../Zotlabs/Module/Invite.php:144 -msgid "3. Click [Connect]" -msgstr "3. Klikk [Forbindelse]" +#: ../../addon/rendezvous/rendezvous.php:177 +msgid "Delete marker" +msgstr "" -#: ../../Zotlabs/Module/Lockview.php:61 -msgid "Remote privacy information not available." -msgstr "Ekstern personverninformasjon er ikke tilgjengelig." +#: ../../addon/rendezvous/rendezvous.php:178 +msgid "Delete member" +msgstr "" -#: ../../Zotlabs/Module/Lockview.php:82 -msgid "Visible to:" -msgstr "Synlig for:" +#: ../../addon/rendezvous/rendezvous.php:179 +msgid "Edit proximity alert" +msgstr "" -#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 -msgid "Location not found." -msgstr "Plassering er ikke funnet." +#: ../../addon/rendezvous/rendezvous.php:180 +msgid "" +"A proximity alert will be issued when this member is within a certain radius " +"of you.

Enter a radius in meters (0 to disable):" +msgstr "" -#: ../../Zotlabs/Module/Locs.php:62 -msgid "Location lookup failed." -msgstr "Oppslag på plassering mislyktes." +#: ../../addon/rendezvous/rendezvous.php:180 +#: ../../addon/rendezvous/rendezvous.php:185 +msgid "distance" +msgstr "" -#: ../../Zotlabs/Module/Locs.php:66 -msgid "" -"Please select another location to become primary before removing the primary" -" location." -msgstr "Vennligst velg en annen plassering som primær før du sletter gjeldende primære plassering." +#: ../../addon/rendezvous/rendezvous.php:181 +msgid "Proximity alert distance (meters)" +msgstr "" -#: ../../Zotlabs/Module/Locs.php:95 -msgid "Syncing locations" -msgstr "Synkroniserer plasseringer" +#: ../../addon/rendezvous/rendezvous.php:182 +#: ../../addon/rendezvous/rendezvous.php:184 +msgid "" +"A proximity alert will be issued when you are within a certain radius of the " +"marker location.

Enter a radius in meters (0 to disable):" +msgstr "" -#: ../../Zotlabs/Module/Locs.php:105 -msgid "No locations found." -msgstr "Ingen plasseringer ble funnet." +#: ../../addon/rendezvous/rendezvous.php:183 +msgid "Marker proximity alert" +msgstr "" -#: ../../Zotlabs/Module/Locs.php:116 -msgid "Manage Channel Locations" -msgstr "Håndter kanalplasseringer" +#: ../../addon/rendezvous/rendezvous.php:186 +msgid "Reminder note" +msgstr "" -#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:470 -#: ../../Zotlabs/Module/Admin.php:1224 -msgid "Address" -msgstr "Adresse" +#: ../../addon/rendezvous/rendezvous.php:187 +msgid "" +"Enter a note to be displayed when you are within the specified proximity..." +msgstr "" -#: ../../Zotlabs/Module/Locs.php:119 -msgid "Primary" +#: ../../addon/rendezvous/rendezvous.php:199 +msgid "Add new rendezvous" msgstr "" -#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 -msgid "Drop" -msgstr "Slett" +#: ../../addon/rendezvous/rendezvous.php:200 +msgid "" +"Create a new rendezvous and share the access link with those you wish to " +"invite to the group. Those who open the link become members of the " +"rendezvous. They can view other member locations, add markers to the map, or " +"share their own locations with the group." +msgstr "" -#: ../../Zotlabs/Module/Locs.php:122 -msgid "Sync Now" +#: ../../addon/rendezvous/rendezvous.php:232 +msgid "You have no rendezvous. Press the button above to create a rendezvous!" msgstr "" -#: ../../Zotlabs/Module/Locs.php:123 -msgid "Please wait several minutes between consecutive operations." -msgstr "Vennligst vent flere minutter mellom hver etterfølgende operasjon." +#: ../../addon/rendezvous/rendezvous.php:401 ../../Zotlabs/Module/Setup.php:730 +msgid "Errors encountered creating database tables." +msgstr "Feil oppstod under opprettelsen av databasetabeller." + +#: ../../addon/startpage/Mod_Startpage.php:60 +msgid "Page to load after login" +msgstr "" -#: ../../Zotlabs/Module/Locs.php:124 +#: ../../addon/startpage/Mod_Startpage.php:60 msgid "" -"When possible, drop a location by logging into that website/hub and removing" -" your channel." -msgstr "Når mulig, fjern en plassering ved å logge inn på det nettstedet eller den hub-en og fjern din kanal." +"Examples: "apps", "network?f=&gid=37" (privacy " +"collection), "channel" or "notifications/system" (leave " +"blank for default network page (grid)." +msgstr "" -#: ../../Zotlabs/Module/Locs.php:125 -msgid "Use this form to drop the location if the hub is no longer operating." -msgstr "Bruk dette skjemaet for å fjerne plasseringen hvis huben ikke er i drift lenger." +#: ../../addon/startpage/Mod_Startpage.php:68 +msgid "Startpage" +msgstr "" + +#: ../../addon/upgrade_info/upgrade_info.php:48 +msgid "Your channel has been upgraded to $Projectname version" +msgstr "" -#: ../../Zotlabs/Module/Magic.php:71 -msgid "Hub not found." -msgstr "Hubben ble ikke funnet." +#: ../../addon/upgrade_info/upgrade_info.php:50 +msgid "Please have a look at the" +msgstr "" -#: ../../Zotlabs/Module/Mail.php:38 -msgid "Unable to lookup recipient." -msgstr "Ikke i stand til å slå opp mottaker." +#: ../../addon/upgrade_info/upgrade_info.php:52 +msgid "git history" +msgstr "" -#: ../../Zotlabs/Module/Mail.php:45 -msgid "Unable to communicate with requested channel." -msgstr "Ikke i stand til å kommunisere med forespurt kanal." +#: ../../addon/upgrade_info/upgrade_info.php:54 +msgid "change log" +msgstr "" -#: ../../Zotlabs/Module/Mail.php:52 -msgid "Cannot verify requested channel." -msgstr "Kan ikke bekrefte forespurt kanal." +#: ../../addon/upgrade_info/upgrade_info.php:55 +msgid "for further info." +msgstr "" -#: ../../Zotlabs/Module/Mail.php:78 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "Valgt kanal har restriksjoner for private meldinger. Sending feilet." +#: ../../addon/upgrade_info/upgrade_info.php:60 +msgid "Upgrade Info" +msgstr "" -#: ../../Zotlabs/Module/Mail.php:143 -msgid "Messages" -msgstr "Meldinger" +#: ../../addon/upgrade_info/upgrade_info.php:64 +msgid "Do not show this again" +msgstr "" -#: ../../Zotlabs/Module/Mail.php:178 -msgid "Message recalled." -msgstr "Innlegg tilbakekalt." +#: ../../addon/twitter/Mod_Twitter.php:65 +msgid "Twitter settings updated." +msgstr "" -#: ../../Zotlabs/Module/Mail.php:191 -msgid "Conversation removed." -msgstr "Samtale fjernet." +#: ../../addon/twitter/Mod_Twitter.php:101 +msgid "" +"No consumer key pair for Twitter found. Please contact your site " +"administrator." +msgstr "" -#: ../../Zotlabs/Module/Mail.php:206 ../../Zotlabs/Module/Mail.php:315 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Utløper YYYY-MM-DD HH:MM" +#: ../../addon/twitter/Mod_Twitter.php:123 +msgid "" +"At this Hubzilla instance the Twitter plugin was enabled but you have not " +"yet connected your account to your Twitter account. To do so click the " +"button below to get a PIN from Twitter which you have to copy into the input " +"box below and submit the form. Only your public posts will " +"be posted to Twitter." +msgstr "" -#: ../../Zotlabs/Module/Mail.php:234 -msgid "Requested channel is not in this network" -msgstr "Forespurt kanal er ikke tilgjengelig i dette nettverket." +#: ../../addon/twitter/Mod_Twitter.php:125 +msgid "Log in with Twitter" +msgstr "" -#: ../../Zotlabs/Module/Mail.php:242 -msgid "Send Private Message" -msgstr "Send privat melding" +#: ../../addon/twitter/Mod_Twitter.php:128 +msgid "Copy the PIN from Twitter here" +msgstr "" -#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 -msgid "To:" -msgstr "Til:" +#: ../../addon/twitter/Mod_Twitter.php:150 +msgid "" +"Note: Due your privacy settings (Hide your profile " +"details from unknown viewers?) the link potentially included in public " +"postings relayed to Twitter will lead the visitor to a blank page informing " +"the visitor that the access to your profile has been restricted." +msgstr "" -#: ../../Zotlabs/Module/Mail.php:246 ../../Zotlabs/Module/Mail.php:370 -msgid "Subject:" -msgstr "Emne:" +#: ../../addon/twitter/Mod_Twitter.php:155 +msgid "Twitter post length" +msgstr "" -#: ../../Zotlabs/Module/Mail.php:251 ../../Zotlabs/Module/Mail.php:376 -#: ../../include/conversation.php:1220 -msgid "Attach file" -msgstr "Legg ved fil" +#: ../../addon/twitter/Mod_Twitter.php:155 +msgid "Maximum tweet length" +msgstr "" -#: ../../Zotlabs/Module/Mail.php:253 -msgid "Send" -msgstr "Send" +#: ../../addon/twitter/Mod_Twitter.php:160 +msgid "Send public postings to Twitter by default" +msgstr "" -#: ../../Zotlabs/Module/Mail.php:256 ../../Zotlabs/Module/Mail.php:381 -#: ../../include/conversation.php:1251 -msgid "Set expiration date" -msgstr "Angi utløpsdato" +#: ../../addon/twitter/Mod_Twitter.php:160 +msgid "" +"If enabled your public postings will be posted to the associated Twitter " +"account by default" +msgstr "" -#: ../../Zotlabs/Module/Mail.php:340 -msgid "Delete message" -msgstr "Slett melding" +#: ../../addon/twitter/Mod_Twitter.php:179 +msgid "Twitter Crosspost Connector" +msgstr "" -#: ../../Zotlabs/Module/Mail.php:341 -msgid "Delivery report" -msgstr "Leveringsrapport" +#: ../../addon/twitter/twitter.php:109 +msgid "Post to Twitter" +msgstr "" -#: ../../Zotlabs/Module/Mail.php:342 -msgid "Recall message" -msgstr "Tilbakekall innlegg" +#: ../../addon/pumpio/pumpio.php:152 +msgid "You are now authenticated to pumpio." +msgstr "" -#: ../../Zotlabs/Module/Mail.php:344 -msgid "Message has been recalled." -msgstr "Innlegget har blitt tilbakekalt." +#: ../../addon/pumpio/pumpio.php:153 +msgid "return to the featured settings page" +msgstr "" -#: ../../Zotlabs/Module/Mail.php:361 -msgid "Delete Conversation" -msgstr "Slett samtale" +#: ../../addon/pumpio/pumpio.php:168 +msgid "Post to Pump.io" +msgstr "" -#: ../../Zotlabs/Module/Mail.php:363 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Ingen sikret kommunikasjon tilgjengelig. Du kan muligens greie å svare via senderens profilside." +#: ../../addon/pumpio/Mod_Pumpio.php:40 +msgid "Pump.io Settings saved." +msgstr "" -#: ../../Zotlabs/Module/Mail.php:367 -msgid "Send Reply" -msgstr "Send svar" +#: ../../addon/pumpio/Mod_Pumpio.php:71 +msgid "Pump.io servername" +msgstr "" -#: ../../Zotlabs/Module/Mail.php:372 -#, php-format -msgid "Your message for %s (%s):" -msgstr "Din melding til %s (%s):" +#: ../../addon/pumpio/Mod_Pumpio.php:71 +msgid "Without \"http://\" or \"https://\"" +msgstr "" -#: ../../Zotlabs/Module/Manage.php:136 -#: ../../Zotlabs/Module/New_channel.php:121 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Du har laget %1$.0f av %2$.0f tillatte kanaler." +#: ../../addon/pumpio/Mod_Pumpio.php:75 +msgid "Pump.io username" +msgstr "" -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create a new channel" -msgstr "Lag en ny kanal" +#: ../../addon/pumpio/Mod_Pumpio.php:75 +msgid "Without the servername" +msgstr "" -#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:213 -#: ../../include/nav.php:206 -msgid "Channel Manager" -msgstr "Kanalstyring" +#: ../../addon/pumpio/Mod_Pumpio.php:86 +msgid "You are not authenticated to pumpio" +msgstr "" -#: ../../Zotlabs/Module/Manage.php:165 -msgid "Current Channel" -msgstr "Gjeldende kanal" +#: ../../addon/pumpio/Mod_Pumpio.php:88 +msgid "(Re-)Authenticate your pump.io connection" +msgstr "" -#: ../../Zotlabs/Module/Manage.php:167 -msgid "Switch to one of your channels by selecting it." -msgstr "Bytt til en av dine kanaler ved å velge den." +#: ../../addon/pumpio/Mod_Pumpio.php:92 +msgid "Post to pump.io by default" +msgstr "" -#: ../../Zotlabs/Module/Manage.php:168 -msgid "Default Channel" -msgstr "Standardkanal" +#: ../../addon/pumpio/Mod_Pumpio.php:96 +msgid "Should posts be public" +msgstr "" -#: ../../Zotlabs/Module/Manage.php:169 -msgid "Make Default" -msgstr "Gjør til standard" +#: ../../addon/pumpio/Mod_Pumpio.php:100 +msgid "Mirror all public posts" +msgstr "" -#: ../../Zotlabs/Module/Manage.php:172 -#, php-format -msgid "%d new messages" -msgstr "%d nye meldinger" +#: ../../addon/pumpio/Mod_Pumpio.php:110 +msgid "Pump.io Crosspost Connector" +msgstr "" -#: ../../Zotlabs/Module/Manage.php:173 -#, php-format -msgid "%d new introductions" -msgstr "%d nye introduksjoner" +#: ../../addon/gravatar/gravatar.php:123 +msgid "generic profile image" +msgstr "" -#: ../../Zotlabs/Module/Manage.php:175 -msgid "Delegated Channel" +#: ../../addon/gravatar/gravatar.php:124 +msgid "random geometric pattern" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:19 -msgid "No valid account found." -msgstr "Ingen gyldig konto funnet." +#: ../../addon/gravatar/gravatar.php:125 +msgid "monster face" +msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:33 -msgid "Password reset request issued. Check your email." -msgstr "Forespørsel om å tilbakestille passord er mottatt. Sjekk e-posten din." +#: ../../addon/gravatar/gravatar.php:126 +msgid "computer generated face" +msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 -#, php-format -msgid "Site Member (%s)" -msgstr "Nettstedsmedlem (%s)" +#: ../../addon/gravatar/gravatar.php:127 +msgid "retro arcade style face" +msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:44 -#, php-format -msgid "Password reset requested at %s" -msgstr "Forespurt om å tilbakestille passord hos %s" +#: ../../addon/gravatar/gravatar.php:128 +msgid "Hub default profile photo" +msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:67 +#: ../../addon/gravatar/gravatar.php:143 +msgid "Information" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:143 msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Forespørsel kunne ikke bekreftes. (Du kan ha sendt den inn tidligere.) Tilbakestilling av passord mislyktes." +"Libravatar addon is installed, too. Please disable Libravatar addon or this " +"Gravatar addon.
The Libravatar addon will fall back to Gravatar if " +"nothing was found at Libravatar." +msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1711 -msgid "Password Reset" -msgstr "Tilbakestill passord" +#: ../../addon/gravatar/gravatar.php:150 ../../addon/msgfooter/msgfooter.php:46 +#: ../../addon/xmpp/xmpp.php:43 +msgid "Save Settings" +msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:91 -msgid "Your password has been reset as requested." -msgstr "Ditt passord har blitt tilbakestilt som forespurt." +#: ../../addon/gravatar/gravatar.php:151 +msgid "Default avatar image" +msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your new password is" -msgstr "Ditt nye passord er" +#: ../../addon/gravatar/gravatar.php:151 +msgid "Select default avatar image if none was found at Gravatar. See README" +msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:93 -msgid "Save or copy your new password - and then" -msgstr "Lagre eller kopier ditt nye passord, og deretter kan du" +#: ../../addon/gravatar/gravatar.php:152 +msgid "Rating of images" +msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:94 -msgid "click here to login" -msgstr "klikke her for å logge inn" +#: ../../addon/gravatar/gravatar.php:152 +msgid "Select the appropriate avatar rating for your site. See README" +msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:95 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Ditt passord kan endres på siden Innstillinger etter vellykket innlogging." +#: ../../addon/gravatar/gravatar.php:165 +msgid "Gravatar settings updated." +msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:112 -#, php-format -msgid "Your password has changed at %s" -msgstr "Ditt passord er endret hos %s" +#: ../../addon/msgfooter/msgfooter.php:47 +msgid "text to include in all outgoing posts from this site" +msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:127 -msgid "Forgot your Password?" -msgstr "Glemt passord ditt?" +#: ../../addon/sendzid/Mod_Sendzid.php:21 +msgid "Send your identity to all websites" +msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:128 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Skriv e-postadressen din og send inn for å tilbakestille passordet ditt. Sjekk deretter din e-post for videre instruksjoner." +#: ../../addon/sendzid/Mod_Sendzid.php:29 +msgid "Send ZID" +msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:129 -msgid "Email Address" -msgstr "E-postadresse" +#: ../../addon/cart/widgets/catalogitem.php:57 +#: ../../addon/cart/submodules/hzservices.php:660 +#: ../../addon/cart/submodules/manualcat.php:263 +msgid "Price" +msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Reset" -msgstr "Tilbakestill" +#: ../../addon/cart/manual_payments.php:7 +msgid "Error: order mismatch. Please try again." +msgstr "" -#: ../../Zotlabs/Module/Menu.php:49 -msgid "Unable to update menu." -msgstr "Ikke i stand til å oppdatere meny." +#: ../../addon/cart/manual_payments.php:61 +msgid "Manual payments are not enabled." +msgstr "" -#: ../../Zotlabs/Module/Menu.php:60 -msgid "Unable to create menu." -msgstr "Ikke i stand til å lage meny." +#: ../../addon/cart/manual_payments.php:68 +#: ../../addon/cart/submodules/paypalbutton.php:392 +#: ../../addon/cart/submodules/paypalbuttonV2.php:409 +#: ../../addon/cart/cart.php:1580 +msgid "Order not found." +msgstr "" -#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 -msgid "Menu Name" -msgstr "Menynavn" +#: ../../addon/cart/manual_payments.php:77 +msgid "Finished" +msgstr "" -#: ../../Zotlabs/Module/Menu.php:98 -msgid "Unique name (not visible on webpage) - required" -msgstr "Unikt navn (ikke synlig på websiden) - påkrevet" +#: ../../addon/cart/submodules/subscriptions.php:151 +msgid "Enable Subscription Management Module" +msgstr "" -#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 -msgid "Menu Title" -msgstr "Menytittel" +#: ../../addon/cart/submodules/subscriptions.php:223 +msgid "" +"Cannot include subscription items with different terms in the same order." +msgstr "" -#: ../../Zotlabs/Module/Menu.php:99 -msgid "Visible on webpage - leave empty for no title" -msgstr "Synlig på websiden - la stå tomt for ingen tittel" +#: ../../addon/cart/submodules/subscriptions.php:372 +msgid "Select Subscription to Edit" +msgstr "" -#: ../../Zotlabs/Module/Menu.php:100 -msgid "Allow Bookmarks" -msgstr "Tillat bokmerker" +#: ../../addon/cart/submodules/subscriptions.php:380 +msgid "Edit Subscriptions" +msgstr "" -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -msgid "Menu may be used to store saved bookmarks" -msgstr "Menyen kan brukes til å lagre lagrede bokmerker" +#: ../../addon/cart/submodules/subscriptions.php:414 +msgid "Subscription SKU" +msgstr "" -#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 -msgid "Submit and proceed" -msgstr "Send inn og fortsett" +#: ../../addon/cart/submodules/subscriptions.php:419 +msgid "Catalog Description" +msgstr "" -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2266 -msgid "Menus" -msgstr "Menyer" +#: ../../addon/cart/submodules/subscriptions.php:423 +msgid "Subscription available for purchase." +msgstr "" -#: ../../Zotlabs/Module/Menu.php:117 -msgid "Bookmarks allowed" -msgstr "Bokmerker tillatt" +#: ../../addon/cart/submodules/subscriptions.php:428 +msgid "Maximum active subscriptions to this item per account." +msgstr "" -#: ../../Zotlabs/Module/Menu.php:119 -msgid "Delete this menu" -msgstr "Slett denne menyen" +#: ../../addon/cart/submodules/subscriptions.php:431 +msgid "Subscription price." +msgstr "" -#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 -msgid "Edit menu contents" -msgstr "Endre menyinnholdet" +#: ../../addon/cart/submodules/subscriptions.php:435 +msgid "Quantity" +msgstr "" -#: ../../Zotlabs/Module/Menu.php:121 -msgid "Edit this menu" -msgstr "Endre denne menyen" +#: ../../addon/cart/submodules/subscriptions.php:439 +msgid "Term" +msgstr "" -#: ../../Zotlabs/Module/Menu.php:136 -msgid "Menu could not be deleted." -msgstr "Menyen kunne ikke bli slettet." +#: ../../addon/cart/submodules/hzservices.php:65 +msgid "Enable Hubzilla Services Module" +msgstr "" -#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 -msgid "Menu not found." -msgstr "Menyen ble ikke funnet." +#: ../../addon/cart/submodules/hzservices.php:164 +#: ../../addon/cart/submodules/manualcat.php:172 +msgid "New Sku" +msgstr "" -#: ../../Zotlabs/Module/Menu.php:149 -msgid "Edit Menu" -msgstr "Endre meny" +#: ../../addon/cart/submodules/hzservices.php:199 +#: ../../addon/cart/submodules/manualcat.php:208 +msgid "Cannot save edits to locked item." +msgstr "" -#: ../../Zotlabs/Module/Menu.php:153 -msgid "Add or remove entries to this menu" -msgstr "Legg til eller fjern punkter i denne menyen" +#: ../../addon/cart/submodules/hzservices.php:248 +#: ../../addon/cart/submodules/hzservices.php:335 +msgid "SKU not found." +msgstr "" -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Menu name" -msgstr "Menynavn" +#: ../../addon/cart/submodules/hzservices.php:301 +#: ../../addon/cart/submodules/hzservices.php:305 +msgid "Invalid Activation Directive." +msgstr "" -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Must be unique, only seen by you" -msgstr "Må være unik, ses bare av deg" +#: ../../addon/cart/submodules/hzservices.php:376 +#: ../../addon/cart/submodules/hzservices.php:380 +msgid "Invalid Deactivation Directive." +msgstr "" -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title" -msgstr "Menytittel" +#: ../../addon/cart/submodules/hzservices.php:566 +msgid "Add to this privacy group" +msgstr "" -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title as seen by others" -msgstr "Menytittelen andre ser" +#: ../../addon/cart/submodules/hzservices.php:582 +msgid "Set user service class" +msgstr "" -#: ../../Zotlabs/Module/Menu.php:157 -msgid "Allow bookmarks" -msgstr "Tillat bokmerker" +#: ../../addon/cart/submodules/hzservices.php:609 +msgid "You must be using a local account to purchase this service." +msgstr "" -#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 -#: ../../Zotlabs/Module/Xchan.php:41 -msgid "Not found." -msgstr "Ikke funnet." +#: ../../addon/cart/submodules/hzservices.php:649 +#: ../../addon/cart/submodules/manualcat.php:252 +msgid "Changes Locked" +msgstr "" -#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "%1$s er %2$s" +#: ../../addon/cart/submodules/hzservices.php:653 +#: ../../addon/cart/submodules/manualcat.php:256 +msgid "Item available for purchase." +msgstr "" -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:225 -msgid "Mood" -msgstr "Stemning" +#: ../../addon/cart/submodules/hzservices.php:663 +#: ../../addon/cart/submodules/manualcat.php:266 +msgid "Photo URL" +msgstr "" -#: ../../Zotlabs/Module/Mood.php:136 -msgid "Set your current mood and tell your friends" -msgstr "Angi ditt nåværende humør og fortell dine venner" +#: ../../addon/cart/submodules/hzservices.php:667 +msgid "Add buyer to privacy group" +msgstr "" -#: ../../Zotlabs/Module/Match.php:26 -msgid "Profile Match" -msgstr "Profiltreff" +#: ../../addon/cart/submodules/hzservices.php:672 +msgid "Add buyer as connection" +msgstr "" -#: ../../Zotlabs/Module/Match.php:35 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Ingen nøkkelord å sammenlikne. Vennligst legg til nøkkelord til din standardprofil." +#: ../../addon/cart/submodules/hzservices.php:680 +#: ../../addon/cart/submodules/hzservices.php:722 +msgid "Set Service Class" +msgstr "" -#: ../../Zotlabs/Module/Match.php:67 -msgid "is interested in:" -msgstr "er interessert i:" +#: ../../addon/cart/submodules/orderoptions.php:70 +msgid "Enable Order/Item Options" +msgstr "" -#: ../../Zotlabs/Module/Match.php:74 -msgid "No matches" -msgstr "Ingen treff" +#: ../../addon/cart/submodules/orderoptions.php:333 +#: ../../addon/cart/submodules/orderoptions.php:357 +#: ../../addon/cart/submodules/orderoptions.php:433 +#: ../../addon/cart/submodules/orderoptions.php:457 +msgid "Label" +msgstr "" -#: ../../Zotlabs/Module/Network.php:96 -msgid "No such group" -msgstr "Gruppen finnes ikke" +#: ../../addon/cart/submodules/orderoptions.php:334 +#: ../../addon/cart/submodules/orderoptions.php:358 +#: ../../addon/cart/submodules/orderoptions.php:434 +#: ../../addon/cart/submodules/orderoptions.php:458 +#: ../../include/js_strings.php:124 ../../include/datetime.php:211 +#: ../../Zotlabs/Module/Register.php:498 ../../Zotlabs/Module/Appman.php:209 +#: ../../Zotlabs/Module/Appman.php:210 ../../Zotlabs/Module/Profiles.php:762 +#: ../../Zotlabs/Module/Profiles.php:766 +msgid "Required" +msgstr "Påkrevd" -#: ../../Zotlabs/Module/Network.php:136 -msgid "No such channel" -msgstr "Ingen slik kanal" +#: ../../addon/cart/submodules/orderoptions.php:336 +#: ../../addon/cart/submodules/orderoptions.php:360 +#: ../../addon/cart/submodules/orderoptions.php:436 +#: ../../addon/cart/submodules/orderoptions.php:460 +msgid "Instructions" +msgstr "" -#: ../../Zotlabs/Module/Network.php:141 -msgid "forum" -msgstr "forum" +#: ../../addon/cart/submodules/paypalbutton.php:85 +msgid "Enable Paypal Button Module" +msgstr "" -#: ../../Zotlabs/Module/Network.php:153 -msgid "Search Results For:" -msgstr "Søkeresultat for:" +#: ../../addon/cart/submodules/paypalbutton.php:93 +#: ../../addon/cart/submodules/paypalbuttonV2.php:94 +msgid "Use Production Key" +msgstr "" -#: ../../Zotlabs/Module/Network.php:217 -msgid "Privacy group is empty" -msgstr "Personverngruppen er tom" +#: ../../addon/cart/submodules/paypalbutton.php:100 +#: ../../addon/cart/submodules/paypalbuttonV2.php:101 +msgid "Paypal Sandbox Client Key" +msgstr "" -#: ../../Zotlabs/Module/Network.php:226 -msgid "Privacy group: " -msgstr "Personverngruppe:" +#: ../../addon/cart/submodules/paypalbutton.php:107 +#: ../../addon/cart/submodules/paypalbuttonV2.php:108 +msgid "Paypal Sandbox Secret Key" +msgstr "" -#: ../../Zotlabs/Module/Network.php:252 -msgid "Invalid connection." -msgstr "Ugyldig forbindelse." +#: ../../addon/cart/submodules/paypalbutton.php:113 +#: ../../addon/cart/submodules/paypalbuttonV2.php:114 +msgid "Paypal Production Client Key" +msgstr "" -#: ../../Zotlabs/Module/Notify.php:57 -#: ../../Zotlabs/Module/Notifications.php:98 -msgid "No more system notifications." -msgstr "Ingen flere systemvarsler." +#: ../../addon/cart/submodules/paypalbutton.php:120 +#: ../../addon/cart/submodules/paypalbuttonV2.php:121 +msgid "Paypal Production Secret Key" +msgstr "" -#: ../../Zotlabs/Module/Notify.php:61 -#: ../../Zotlabs/Module/Notifications.php:102 -msgid "System Notifications" -msgstr "Systemvarsler" +#: ../../addon/cart/submodules/paypalbutton.php:252 +#: ../../addon/cart/submodules/paypalbuttonV2.php:264 +msgid "Paypal button payments are not enabled." +msgstr "" -#: ../../Zotlabs/Module/Mitem.php:52 -msgid "Unable to create element." -msgstr "Klarer ikke å lage element." +#: ../../addon/cart/submodules/paypalbutton.php:270 +#: ../../addon/cart/submodules/paypalbuttonV2.php:282 +msgid "" +"Paypal button payments are not properly configured. Please choose another " +"payment option." +msgstr "" -#: ../../Zotlabs/Module/Mitem.php:76 -msgid "Unable to update menu element." -msgstr "Ikke i stand til å oppdatere menyelement." +#: ../../addon/cart/submodules/paypalbuttonV2.php:86 +msgid "Enable Paypal Button Module (API-v2)" +msgstr "" -#: ../../Zotlabs/Module/Mitem.php:92 -msgid "Unable to add menu element." -msgstr "Ikke i stand til å legge til menyelement." +#: ../../addon/cart/submodules/manualcat.php:61 +msgid "Enable Manual Cart Module" +msgstr "" -#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 -msgid "Menu Item Permissions" -msgstr "Menyelement Tillatelser" +#: ../../addon/cart/myshop.php:30 +msgid "Access Denied." +msgstr "" -#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 -#: ../../Zotlabs/Module/Settings.php:1068 -msgid "(click to open/close)" -msgstr "(klikk for å åpne/lukke)" +#: ../../addon/cart/myshop.php:112 ../../addon/cart/cart.php:1446 +msgid "Order Not Found" +msgstr "" -#: ../../Zotlabs/Module/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 -msgid "Link Name" -msgstr "Lenkenavn" +#: ../../addon/cart/myshop.php:189 ../../addon/cart/myshop.php:223 +#: ../../addon/cart/myshop.php:271 ../../addon/cart/myshop.php:329 +msgid "Invalid Item" +msgstr "" -#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 -msgid "Link or Submenu Target" -msgstr "Lenke- eller undermeny-mål" +#: ../../addon/cart/Settings/Cart.php:58 +msgid "Enable Test Catalog" +msgstr "" -#: ../../Zotlabs/Module/Mitem.php:157 -msgid "Enter URL of the link or select a menu name to create a submenu" -msgstr "Skriv URL-en til lenken eller velg et menynavn for å lage en undermeny" +#: ../../addon/cart/Settings/Cart.php:70 +msgid "Enable Manual Payments" +msgstr "" -#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 -msgid "Use magic-auth if available" -msgstr "Bruk magic-autent hvis mulig" +#: ../../addon/cart/Settings/Cart.php:90 +msgid "Base Merchant Currency" +msgstr "" -#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 -msgid "Open link in new window" -msgstr "Åpne lenke i nytt vindu" +#: ../../addon/cart/Settings/Cart.php:129 ../../addon/cart/cart.php:1375 +msgid "Cart Settings" +msgstr "" -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Order in list" -msgstr "Ordne i liste" +#: ../../addon/cart/cart.php:252 +msgid "DB Cleanup Failure" +msgstr "" -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Higher numbers will sink to bottom of listing" -msgstr "Høyere tall vil synke mot bunnen av listen" +#: ../../addon/cart/cart.php:674 +msgid "[cart] Item Added" +msgstr "" -#: ../../Zotlabs/Module/Mitem.php:161 -msgid "Submit and finish" -msgstr "Send inn og avslutt" +#: ../../addon/cart/cart.php:1063 +msgid "Order already checked out." +msgstr "" -#: ../../Zotlabs/Module/Mitem.php:162 -msgid "Submit and continue" -msgstr "Send inn og fortsett" +#: ../../addon/cart/cart.php:1368 +msgid "Drop database tables when uninstalling." +msgstr "" -#: ../../Zotlabs/Module/Mitem.php:170 -msgid "Menu:" -msgstr "Meny:" +#: ../../addon/cart/cart.php:1387 ../../addon/cart/cart.php:1390 +msgid "Shop" +msgstr "" -#: ../../Zotlabs/Module/Mitem.php:173 -msgid "Link Target" -msgstr "Lenkemål" +#: ../../addon/cart/cart.php:1547 +msgid "You must be logged into the Grid to shop." +msgstr "" -#: ../../Zotlabs/Module/Mitem.php:176 -msgid "Edit menu" -msgstr "Endre meny" +#: ../../addon/cart/cart.php:1594 +msgid "Access denied." +msgstr "" -#: ../../Zotlabs/Module/Mitem.php:179 -msgid "Edit element" -msgstr "Endre element" +#: ../../addon/cart/cart.php:1646 ../../addon/cart/cart.php:1789 +msgid "No Order Found" +msgstr "" -#: ../../Zotlabs/Module/Mitem.php:180 -msgid "Drop element" -msgstr "Slett element" +#: ../../addon/cart/cart.php:1655 +msgid "An unknown error has occurred Please start again." +msgstr "" -#: ../../Zotlabs/Module/Mitem.php:181 -msgid "New element" -msgstr "Nytt element" +#: ../../addon/cart/cart.php:1798 +msgid "Requirements not met." +msgstr "" -#: ../../Zotlabs/Module/Mitem.php:182 -msgid "Edit this menu container" -msgstr "Endre denne menybeholderen" +#: ../../addon/cart/cart.php:1798 +msgid "Review your order and complete any needed requirements." +msgstr "" -#: ../../Zotlabs/Module/Mitem.php:183 -msgid "Add menu element" -msgstr "Legg til menyelement" +#: ../../addon/cart/cart.php:1824 +msgid "Invalid Payment Type. Please start again." +msgstr "" -#: ../../Zotlabs/Module/Mitem.php:184 -msgid "Delete this menu item" -msgstr "Slett dette menyelementet" +#: ../../addon/cart/cart.php:1831 +msgid "Order not found" +msgstr "" -#: ../../Zotlabs/Module/Mitem.php:185 -msgid "Edit this menu item" -msgstr "Endre dette menyelementet" +#: ../../addon/nofed/Mod_Nofed.php:21 +msgid "nofed Settings saved." +msgstr "" -#: ../../Zotlabs/Module/Mitem.php:202 -msgid "Menu item not found." -msgstr "Menyelement ble ikke funnet." +#: ../../addon/nofed/Mod_Nofed.php:40 +msgid "Federate posts by default" +msgstr "" -#: ../../Zotlabs/Module/Mitem.php:215 -msgid "Menu item deleted." -msgstr "Menyelement slettet." +#: ../../addon/nofed/Mod_Nofed.php:48 +msgid "No Federation" +msgstr "" -#: ../../Zotlabs/Module/Mitem.php:217 -msgid "Menu item could not be deleted." -msgstr "Menyelement kunne ikke bli slettet." +#: ../../addon/nofed/nofed.php:47 +msgid "Federate" +msgstr "" -#: ../../Zotlabs/Module/Mitem.php:224 -msgid "Edit Menu Element" -msgstr "Endre menyelement" +#: ../../addon/smileybutton/Mod_Smileybutton.php:42 +msgid "Hide the button and show the smilies directly." +msgstr "" -#: ../../Zotlabs/Module/Mitem.php:230 -msgid "Link text" -msgstr "Lenketekst" +#: ../../addon/smileybutton/Mod_Smileybutton.php:50 +msgid "Smileybutton Settings" +msgstr "" -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Name or caption" -msgstr "Navn eller overskrift" +#: ../../addon/redfiles/redfilehelper.php:64 ../../include/attach.php:2104 +msgid "file" +msgstr "" -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" -msgstr "Eksempel: \"Ola Nordmann\", \"Lisa og hestene hennes\", \"Fotball\", \"Sykkelgruppa\"" +#: ../../addon/redfiles/redfiles.php:119 +msgid "Redmatrix File Storage Import" +msgstr "" -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -msgid "Choose a short nickname" -msgstr "Velg et kort kallenavn" +#: ../../addon/redfiles/redfiles.php:120 +msgid "This will import all your Redmatrix cloud files to this channel." +msgstr "" -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -#, php-format +#: ../../addon/diaspora/diaspora.php:78 msgid "" -"Your nickname will be used to create an easy to remember channel address " -"e.g. nickname%s" -msgstr "Ditt kallenavn brukes til å lage en kanaladresse som er enkel å huske, for eksempel kallenavn%s" - -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Channel role and privacy" -msgstr "Kanalrolle og personvern" +"Please install the statistics addon to be able to configure a diaspora relay" +msgstr "" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Select a channel role with your privacy requirements." -msgstr "Velg en kanalrolle for ditt personvernbehov." +#: ../../addon/diaspora/diaspora.php:88 +msgid "Diaspora Relay Handle" +msgstr "" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Read more about roles" -msgstr "Les mer om roller" +#: ../../addon/diaspora/diaspora.php:88 +msgid "Address of a diaspora relay. Example: relay@diasporarelay.tld" +msgstr "" -#: ../../Zotlabs/Module/New_channel.php:135 -msgid "Create Channel" -msgstr "Lag kanal" +#: ../../addon/diaspora/diaspora.php:108 +msgid "Diaspora relay could not be imported" +msgstr "" -#: ../../Zotlabs/Module/New_channel.php:136 -msgid "" -"A channel is your identity on this network. It can represent a person, a " -"blog, or a forum to name a few. Channels can make connections with other " -"channels to share information with highly detailed permissions." -msgstr "En kanal er din identitet i dette nettverket. Den kan representere en person, en blogg eller et forum for å nevne noe. Kanaler kan ha forbindelser til andre kanaler for å dele informasjon, og med svært detaljerte tillatelser." +#: ../../addon/diaspora/diaspora.php:1068 +msgid "No subject" +msgstr "" -#: ../../Zotlabs/Module/New_channel.php:137 -msgid "" -"or import an existing channel from another location." -msgstr "eller importer en eksisterende kanal fra et annet sted." +#: ../../addon/diaspora/p.php:48 ../../addon/diaspora/util.php:337 +#: ../../addon/diaspora/util.php:350 ../../Zotlabs/Lib/Enotify.php:61 +msgid "$projectname" +msgstr "$projectname" -#: ../../Zotlabs/Module/Notifications.php:30 -msgid "Invalid request identifier." -msgstr "Ugyldig forespørselsidentifikator." - -#: ../../Zotlabs/Module/Notifications.php:39 -msgid "Discard" -msgstr "Forkast" +#: ../../addon/diaspora/import_diaspora.php:18 +msgid "No username found in import file." +msgstr "Ingen brukernavn ble funnet i importfilen." -#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:191 -msgid "Mark all system notifications seen" -msgstr "Merk alle systemvarsler som sett" +#: ../../addon/diaspora/import_diaspora.php:43 ../../include/import.php:77 +msgid "Unable to create a unique channel address. Import failed." +msgstr "Klarte ikke å lage en unik kanaladresse. Import mislyktes." -#: ../../Zotlabs/Module/Photos.php:84 -msgid "Page owner information could not be retrieved." -msgstr "Informasjon om sideeier kunne ikke hentes." +#: ../../addon/diaspora/import_diaspora.php:140 +msgid "Import completed." +msgstr "Import ferdig." -#: ../../Zotlabs/Module/Photos.php:99 ../../Zotlabs/Module/Photos.php:743 -#: ../../Zotlabs/Module/Profile_photo.php:114 -#: ../../Zotlabs/Module/Profile_photo.php:206 -#: ../../Zotlabs/Module/Profile_photo.php:294 -#: ../../include/photo/photo_driver.php:718 -msgid "Profile Photos" -msgstr "Profilbilder" +#: ../../addon/diaspora/Mod_Diaspora.php:43 +msgid "Diaspora Protocol Settings updated." +msgstr "" -#: ../../Zotlabs/Module/Photos.php:105 ../../Zotlabs/Module/Photos.php:149 -msgid "Album not found." -msgstr "Albumet ble ikke funnet." +#: ../../addon/diaspora/Mod_Diaspora.php:52 +msgid "" +"The diaspora protocol does not support location independence. Connections " +"you make within that network may be unreachable from alternate channel " +"locations." +msgstr "" -#: ../../Zotlabs/Module/Photos.php:132 -msgid "Delete Album" -msgstr "Slett album" +#: ../../addon/diaspora/Mod_Diaspora.php:75 +msgid "Allow any Diaspora member to comment or like your public posts" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:153 +#: ../../addon/diaspora/Mod_Diaspora.php:75 msgid "" -"Multiple storage folders exist with this album name, but within different " -"directories. Please remove the desired folder or folders using the Files " -"manager" +"If this setting is disabled only your contacts will be able to comment or " +"like your public posts" msgstr "" -#: ../../Zotlabs/Module/Photos.php:210 ../../Zotlabs/Module/Photos.php:1053 -msgid "Delete Photo" -msgstr "Slett bilde" +#: ../../addon/diaspora/Mod_Diaspora.php:79 +msgid "Prevent your hashtags from being redirected to other sites" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:533 -msgid "No photos selected" -msgstr "Ingen bilder valgt" +#: ../../addon/diaspora/Mod_Diaspora.php:83 +msgid "Sign and forward posts and comments with no existing Diaspora signature" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:582 -msgid "Access to this item is restricted." -msgstr "Tilgang til dette elementet er begrenset." +#: ../../addon/diaspora/Mod_Diaspora.php:88 +msgid "Followed hashtags (comma separated, do not include the #)" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:621 +#: ../../addon/diaspora/Mod_Diaspora.php:97 +msgid "Diaspora Protocol" +msgstr "" + +#: ../../addon/diaspora/Receiver.php:1595 #, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "%1$.2f MB av %2$.2f MB lagringsplass til bilder er brukt." +msgid "%1$s dislikes %2$s's %3$s" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:624 +#: ../../addon/diaspora/Receiver.php:2206 ../../Zotlabs/Module/Like.php:487 #, php-format -msgid "%1$.2f MB photo storage used." -msgstr "%1$.2f MB lagringsplass til bilder er brukt." +msgid "%1$s is attending %2$s's %3$s" +msgstr "%1$s deltar på %2$ss %3$s" -#: ../../Zotlabs/Module/Photos.php:660 -msgid "Upload Photos" -msgstr "Last opp bilder" +#: ../../addon/diaspora/Receiver.php:2208 ../../Zotlabs/Module/Like.php:489 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" +msgstr "%1$s deltar ikke på %2$ss %3$s" -#: ../../Zotlabs/Module/Photos.php:664 -msgid "Enter an album name" -msgstr "Skriv et albumnavn" +#: ../../addon/diaspora/Receiver.php:2210 ../../Zotlabs/Module/Like.php:491 +#, php-format +msgid "%1$s may attend %2$s's %3$s" +msgstr "%1$s deltar kanskje på %2$ss %3$s" -#: ../../Zotlabs/Module/Photos.php:665 -msgid "or select an existing album (doubleclick)" -msgstr "eller velg et eksisterende album (dobbeltklikk)" +#: ../../addon/piwik/piwik.php:85 +msgid "" +"This website is tracked using the Piwik " +"analytics tool." +msgstr "" -#: ../../Zotlabs/Module/Photos.php:666 -msgid "Create a status post for this upload" -msgstr "Lag et statusinnlegg for denne opplastingen" +#: ../../addon/piwik/piwik.php:88 +#, php-format +msgid "" +"If you do not want that your visits are logged this way you can " +"set a cookie to prevent Piwik from tracking further visits of the site " +"(opt-out)." +msgstr "" -#: ../../Zotlabs/Module/Photos.php:667 -msgid "Caption (optional):" -msgstr "Bildetekst (valgfritt):" +#: ../../addon/piwik/piwik.php:96 +msgid "Piwik Base URL" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:668 -msgid "Description (optional):" -msgstr "Beskrivelse (valgfritt):" +#: ../../addon/piwik/piwik.php:96 +msgid "" +"Absolute path to your Piwik installation. (without protocol (http/s), with " +"trailing slash)" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:695 -msgid "Album name could not be decoded" -msgstr "Albumnavnet kunne ikke dekodes" +#: ../../addon/piwik/piwik.php:97 +msgid "Site ID" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:743 -msgid "Contact Photos" -msgstr "Kontaktbilder" +#: ../../addon/piwik/piwik.php:98 +msgid "Show opt-out cookie link?" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:766 -msgid "Show Newest First" -msgstr "Vis nyeste først" +#: ../../addon/piwik/piwik.php:99 +msgid "Asynchronous tracking" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:768 -msgid "Show Oldest First" -msgstr "Vis eldste først" +#: ../../addon/piwik/piwik.php:100 +msgid "Enable frontend JavaScript error tracking" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:792 ../../Zotlabs/Module/Photos.php:1331 -#: ../../include/widgets.php:1499 -msgid "View Photo" -msgstr "Vis foto" +#: ../../addon/piwik/piwik.php:100 +msgid "This feature requires Piwik >= 2.2.0" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:823 ../../include/widgets.php:1516 -msgid "Edit Album" -msgstr "Endre album" +#: ../../addon/workflow/workflow.php:222 +msgid "Workflow user." +msgstr "" -#: ../../Zotlabs/Module/Photos.php:870 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Tillatelse avvist. Tilgang til dette elementet kan være begrenset." +#: ../../addon/workflow/workflow.php:272 +msgid "This channel" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:872 -msgid "Photo not available" -msgstr "Bilde er utilgjengelig" +#: ../../addon/workflow/workflow.php:285 ../../Zotlabs/Module/Locs.php:123 +msgid "Primary" +msgstr "Primær" -#: ../../Zotlabs/Module/Photos.php:930 -msgid "Use as profile photo" -msgstr "Bruk som profilbilde" +#: ../../addon/workflow/workflow.php:327 +msgid "Create New Workflow Item" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:931 -msgid "Use as cover photo" +#: ../../addon/workflow/workflow.php:546 ../../addon/workflow/workflow.php:1442 +#: ../../addon/workflow/workflow.php:1461 +msgid "Workflow" msgstr "" -#: ../../Zotlabs/Module/Photos.php:938 -msgid "Private Photo" -msgstr "Privat bilde" +#: ../../addon/workflow/workflow.php:1430 +msgid "No Workflows Available" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:953 -msgid "View Full Size" -msgstr "Vis i full størrelse" +#: ../../addon/workflow/workflow.php:1460 +msgid "Add item to which workflow" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:998 ../../Zotlabs/Module/Admin.php:1437 -#: ../../Zotlabs/Module/Tagrm.php:137 -msgid "Remove" -msgstr "Fjern" +#: ../../addon/workflow/workflow.php:1520 +#: ../../addon/workflow/workflow.php:1639 +msgid "Create Workflow Item" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:1032 -msgid "Edit photo" -msgstr "Endre bilde" +#: ../../addon/workflow/workflow.php:2601 +msgid "Link" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:1034 -msgid "Rotate CW (right)" -msgstr "Roter med klokka (mot høyre)" +#: ../../addon/workflow/workflow.php:2603 +msgid "Web link." +msgstr "" -#: ../../Zotlabs/Module/Photos.php:1035 -msgid "Rotate CCW (left)" -msgstr "Roter mot klokka (venstre)" +#: ../../addon/workflow/workflow.php:2622 +#: ../../addon/workflow/workflow.php:2683 ../../Zotlabs/Module/Cdav.php:1374 +#: ../../Zotlabs/Module/Connedit.php:734 +msgid "Title" +msgstr "Tittel" -#: ../../Zotlabs/Module/Photos.php:1038 -msgid "Enter a new album name" -msgstr "Skriv et nytt albumnavn" +#: ../../addon/workflow/workflow.php:2624 +#: ../../addon/workflow/workflow.php:2685 +msgid "Brief description or title" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:1039 -msgid "or select an existing one (doubleclick)" -msgstr "eller velg et eksisterende album (dobbeltklikk)" +#: ../../addon/workflow/workflow.php:2630 ../../Zotlabs/Widget/Notes.php:38 +#: ../../Zotlabs/Lib/Apps.php:374 +msgid "Notes" +msgstr "Merknader" -#: ../../Zotlabs/Module/Photos.php:1042 -msgid "Caption" -msgstr "Overskrift" +#: ../../addon/workflow/workflow.php:2632 +#: ../../addon/workflow/workflow.php:2693 +msgid "Notes and Info" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:1044 -msgid "Add a Tag" -msgstr "Legg til merkelapp" +#: ../../addon/workflow/workflow.php:2691 +msgid "Body" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:1048 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Eksempel: @bob, @Barbara_Jensen, @jim@example.com" +#: ../../addon/workflow/Settings/Mod_WorkflowSettings.php:101 +msgid "Workflow Settings" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:1051 -msgid "Flag as adult in album view" -msgstr "Flag som voksent i albumvisning" +#: ../../addon/donate/donate.php:21 +msgid "Project Servers and Resources" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:1070 ../../Zotlabs/Lib/ThreadItem.php:261 -msgid "I like this (toggle)" -msgstr "Jeg liker dette (skru av og på)" +#: ../../addon/donate/donate.php:22 +msgid "Project Creator and Tech Lead" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:262 -msgid "I don't like this (toggle)" -msgstr "Jeg liker ikke dette (skru av og på)" +#: ../../addon/donate/donate.php:49 +msgid "" +"And the hundreds of other people and organisations who helped make the " +"Hubzilla possible." +msgstr "" -#: ../../Zotlabs/Module/Photos.php:1073 ../../Zotlabs/Lib/ThreadItem.php:397 -#: ../../include/conversation.php:740 -msgid "Please wait" -msgstr "Vennligst vent" +#: ../../addon/donate/donate.php:52 +msgid "" +"The Redmatrix/Hubzilla projects are provided primarily by volunteers giving " +"their time and expertise - and often paying out of pocket for services they " +"share with others." +msgstr "" -#: ../../Zotlabs/Module/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207 -#: ../../Zotlabs/Lib/ThreadItem.php:707 -msgid "This is you" -msgstr "Dette er deg" +#: ../../addon/donate/donate.php:53 +msgid "" +"There is no corporate funding and no ads, and we do not collect and sell " +"your personal information. (We don't control your personal information - " +"you do.)" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:1091 ../../Zotlabs/Module/Photos.php:1209 -#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6 -msgid "Comment" -msgstr "Kommentar" +#: ../../addon/donate/donate.php:54 +msgid "" +"Help support our ground-breaking work in decentralisation, web identity, and " +"privacy." +msgstr "" -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 -msgctxt "title" -msgid "Likes" -msgstr "Liker" +#: ../../addon/donate/donate.php:56 +msgid "" +"Your donations keep servers and services running and also helps us to " +"provide innovative new features and continued development." +msgstr "" -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 -msgctxt "title" -msgid "Dislikes" -msgstr "Liker ikke" +#: ../../addon/donate/donate.php:59 +msgid "Donate" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 -msgctxt "title" -msgid "Agree" -msgstr "Enig" +#: ../../addon/donate/donate.php:61 +msgid "" +"Choose a project, developer, or public hub to support with a one-time " +"donation" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 -msgctxt "title" -msgid "Disagree" -msgstr "Uenig" +#: ../../addon/donate/donate.php:62 +msgid "Donate Now" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 -msgctxt "title" -msgid "Abstain" -msgstr "Avstår" +#: ../../addon/donate/donate.php:63 +msgid "" +"Or become a project sponsor (Hubzilla Project only)" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 -msgctxt "title" -msgid "Attending" -msgstr "Deltar" +#: ../../addon/donate/donate.php:64 +msgid "" +"Please indicate if you would like your first name or full name (or nothing) " +"to appear in our sponsor listing" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 -msgctxt "title" -msgid "Not attending" -msgstr "Deltar ikke" +#: ../../addon/donate/donate.php:65 +msgid "Sponsor" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 -msgctxt "title" -msgid "Might attend" -msgstr "Deltar kanskje" +#: ../../addon/donate/donate.php:68 +msgid "Special thanks to: " +msgstr "" -#: ../../Zotlabs/Module/Photos.php:1126 ../../Zotlabs/Module/Photos.php:1138 -#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 -#: ../../include/conversation.php:1717 -msgid "View all" -msgstr "Vis alle" +#: ../../addon/likebanner/likebanner.php:51 +msgid "Your Webbie:" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:1130 ../../Zotlabs/Lib/ThreadItem.php:185 -#: ../../include/taxonomy.php:403 ../../include/conversation.php:1741 -#: ../../include/channel.php:1158 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "Liker" -msgstr[1] "Liker" +#: ../../addon/likebanner/likebanner.php:54 +msgid "Fontsize (px):" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:1135 ../../Zotlabs/Lib/ThreadItem.php:190 -#: ../../include/conversation.php:1744 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "Liker ikke" -msgstr[1] "Liker ikke" +#: ../../addon/likebanner/likebanner.php:68 +msgid "Link:" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:1235 -msgid "Photo Tools" +#: ../../addon/likebanner/likebanner.php:70 +msgid "Like us on Hubzilla" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1244 -msgid "In This Photo:" -msgstr "I dette bildet:" +#: ../../addon/likebanner/likebanner.php:72 +msgid "Embed:" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:1249 -msgid "Map" -msgstr "Kart" +#: ../../addon/opensearch/opensearch.php:26 +#, php-format +msgctxt "opensearch" +msgid "Search %1$s (%2$s)" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:1257 ../../Zotlabs/Lib/ThreadItem.php:386 -msgctxt "noun" -msgid "Likes" -msgstr "Liker" +#: ../../addon/opensearch/opensearch.php:28 +msgctxt "opensearch" +msgid "$Projectname" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:1258 ../../Zotlabs/Lib/ThreadItem.php:387 -msgctxt "noun" -msgid "Dislikes" -msgstr "Liker ikke" +#: ../../addon/opensearch/opensearch.php:42 ../../Zotlabs/Module/Invite.php:225 +#: ../../Zotlabs/Module/Invite.php:494 ../../Zotlabs/Module/Invite.php:508 +#: ../../Zotlabs/Module/Home.php:87 ../../Zotlabs/Module/Home.php:95 +#: ../../Zotlabs/Lib/Enotify.php:66 +msgid "$Projectname" +msgstr "$Projectname" -#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:392 -#: ../../include/acl_selectors.php:285 -msgid "Close" -msgstr "Lukk" +#: ../../addon/opensearch/opensearch.php:43 +msgid "Search $Projectname" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:1337 -msgid "View Album" -msgstr "Vis album" +#: ../../addon/fuzzloc/Mod_Fuzzloc.php:22 +msgid "Fuzzloc Settings updated." +msgstr "" -#: ../../Zotlabs/Module/Photos.php:1348 ../../Zotlabs/Module/Photos.php:1361 -#: ../../Zotlabs/Module/Photos.php:1362 -msgid "Recent Photos" -msgstr "Nye bilder" +#: ../../addon/fuzzloc/Mod_Fuzzloc.php:38 +msgid "Minimum offset in meters" +msgstr "" -#: ../../Zotlabs/Module/Ping.php:265 -msgid "sent you a private message" -msgstr "sendte deg en privat melding" +#: ../../addon/fuzzloc/Mod_Fuzzloc.php:42 +msgid "Maximum offset in meters" +msgstr "" -#: ../../Zotlabs/Module/Ping.php:313 -msgid "added your channel" -msgstr "la til din kanal" +#: ../../addon/fuzzloc/Mod_Fuzzloc.php:51 +msgid "Fuzzy Location" +msgstr "" -#: ../../Zotlabs/Module/Ping.php:323 -msgid "g A l F d" -msgstr "g A l F d" +#: ../../addon/hubwall/hubwall.php:19 +msgid "Send email to all members" +msgstr "" -#: ../../Zotlabs/Module/Ping.php:346 -msgid "[today]" -msgstr "[idag]" +#: ../../addon/hubwall/hubwall.php:33 ../../Zotlabs/Lib/Enotify.php:65 +#, php-format +msgid "%s Administrator" +msgstr "%s administrator" -#: ../../Zotlabs/Module/Ping.php:355 -msgid "posted an event" -msgstr "la ut en hendelse" +#: ../../addon/hubwall/hubwall.php:50 ../../addon/mailtest/mailtest.php:50 +msgid "No recipients found." +msgstr "" -#: ../../Zotlabs/Module/Oexchange.php:27 -msgid "Unable to find your hub." -msgstr "Ikke i stand til å finne hubben din." +#: ../../addon/hubwall/hubwall.php:73 +#, php-format +msgid "%1$d of %2$d messages sent." +msgstr "" -#: ../../Zotlabs/Module/Oexchange.php:41 -msgid "Post successful." -msgstr "Innlegg vellykket." +#: ../../addon/hubwall/hubwall.php:81 +msgid "Send email to all hub members." +msgstr "" -#: ../../Zotlabs/Module/Openid.php:30 -msgid "OpenID protocol error. No ID returned." -msgstr "OpenID protokollfeil. Ingen ID ble returnert." +#: ../../addon/hubwall/hubwall.php:92 ../../addon/mailtest/mailtest.php:96 +msgid "Message subject" +msgstr "" -#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:226 -msgid "Login failed." -msgstr "Innlogging mislyktes." +#: ../../addon/hubwall/hubwall.php:93 +msgid "Sender Email address" +msgstr "" -#: ../../Zotlabs/Module/Page.php:133 -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " -"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," -" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " -"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " -"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " -"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." -msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +#: ../../addon/hubwall/hubwall.php:94 +msgid "Test mode (only send to hub administrator)" +msgstr "" -#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 -msgid "This setting requires special processing and editing has been blocked." -msgstr "Denne innstillingen krever spesiell behandling og redigering har blitt blokkert." - -#: ../../Zotlabs/Module/Pconfig.php:48 -msgid "Configuration Editor" -msgstr "Konfigurasjonsbehandler" - -#: ../../Zotlabs/Module/Pconfig.php:49 -msgid "" -"Warning: Changing some settings could render your channel inoperable. Please" -" leave this page unless you are comfortable with and knowledgeable about how" -" to correctly use this feature." -msgstr "Advarsel: kanalen din kan slutte å virke ved endring av enkelte innstillinger. Vennligst forlat denne siden med mindre du er komfortabel med dette og vet hvordan du bruker denne funksjonen riktig." - -#: ../../Zotlabs/Module/Pdledit.php:18 -msgid "Layout updated." -msgstr "Layout er oppdatert." - -#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 -msgid "Edit System Page Description" -msgstr "Endre beskrivelsen av systemsiden" +#: ../../addon/cards/Widget/Cards_categories.php:74 +#: ../../addon/articles/Widget/Articles_categories.php:74 +#: ../../include/contact_widgets.php:115 ../../include/contact_widgets.php:149 +#: ../../include/taxonomy.php:420 ../../include/taxonomy.php:502 +#: ../../include/taxonomy.php:522 ../../include/taxonomy.php:543 +#: ../../Zotlabs/Module/Cdav.php:1070 ../../Zotlabs/Storage/Browser.php:293 +#: ../../Zotlabs/Storage/Browser.php:388 ../../Zotlabs/Storage/Browser.php:403 +msgid "Categories" +msgstr "Kategorier" -#: ../../Zotlabs/Module/Pdledit.php:56 -msgid "Layout not found." -msgstr "Layouten ble ikke funnet." +#: ../../addon/cards/Widget/Cards_categories.php:77 +#: ../../addon/articles/Widget/Articles_categories.php:77 +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:118 +#: ../../include/contact_widgets.php:152 +#: ../../Zotlabs/Widget/Appcategories.php:52 ../../Zotlabs/Widget/Filer.php:36 +msgid "Everything" +msgstr "Alt" -#: ../../Zotlabs/Module/Pdledit.php:62 -msgid "Module Name:" -msgstr "Modulnavn:" +#: ../../addon/cards/Mod_Card_edit.php:17 +#: ../../addon/cards/Mod_Card_edit.php:33 +#: ../../addon/articles/Mod_Article_edit.php:17 +#: ../../addon/articles/Mod_Article_edit.php:33 +#: ../../Zotlabs/Module/Editwebpage.php:80 ../../Zotlabs/Module/Editpost.php:24 +#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 +#: ../../Zotlabs/Module/Editlayout.php:79 +msgid "Item not found" +msgstr "Elementet ble ikke funnet." -#: ../../Zotlabs/Module/Pdledit.php:63 -msgid "Layout Help" -msgstr "Layout-hjelp" +#: ../../addon/cards/Mod_Card_edit.php:44 +#: ../../addon/articles/Mod_Article_edit.php:44 +#: ../../Zotlabs/Module/Attach_edit.php:52 +#: ../../Zotlabs/Module/Wall_upload.php:31 ../../Zotlabs/Module/Chanview.php:95 +#: ../../Zotlabs/Module/Cal.php:31 ../../Zotlabs/Module/Attach.php:22 +#: ../../Zotlabs/Module/Page.php:75 ../../Zotlabs/Module/Block.php:41 +msgid "Channel not found." +msgstr "Kanalen ble ikke funnet." -#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:226 -#: ../../include/conversation.php:960 -msgid "Poke" -msgstr "Prikk" +#: ../../addon/cards/Mod_Card_edit.php:129 +msgid "Edit Card" +msgstr "" + +#: ../../addon/cards/Mod_Card_edit.php:130 +#: ../../addon/articles/Mod_Article_edit.php:128 +#: ../../include/conversation.php:737 ../../include/conversation.php:797 +#: ../../Zotlabs/Module/Tokens.php:295 ../../Zotlabs/Module/Group.php:251 +#: ../../Zotlabs/Module/Oauth.php:172 ../../Zotlabs/Module/Editwebpage.php:167 +#: ../../Zotlabs/Module/Cdav.php:1055 ../../Zotlabs/Module/Cdav.php:1389 +#: ../../Zotlabs/Module/Webpages.php:254 +#: ../../Zotlabs/Module/Admin/Accounts.php:320 +#: ../../Zotlabs/Module/Admin/Channels.php:149 +#: ../../Zotlabs/Module/Admin/Profs.php:176 +#: ../../Zotlabs/Module/Permcats.php:261 +#: ../../Zotlabs/Module/Contactedit.php:667 ../../Zotlabs/Module/Blocks.php:162 +#: ../../Zotlabs/Module/Editblock.php:139 +#: ../../Zotlabs/Module/Editlayout.php:138 ../../Zotlabs/Module/Photos.php:1185 +#: ../../Zotlabs/Module/Oauth2.php:193 ../../Zotlabs/Module/Thing.php:269 +#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Connedit.php:749 +#: ../../Zotlabs/Lib/Apps.php:601 ../../Zotlabs/Lib/ThreadItem.php:187 +#: ../../Zotlabs/Storage/Browser.php:384 +msgid "Delete" +msgstr "Slett" -#: ../../Zotlabs/Module/Poke.php:169 -msgid "Poke somebody" -msgstr "Dult noen" +#: ../../addon/cards/cards.php:47 ../../addon/cards/cards.php:159 +#: ../../addon/cards/Mod_Cards.php:209 ../../Zotlabs/Lib/Apps.php:330 +msgid "Cards" +msgstr "" -#: ../../Zotlabs/Module/Poke.php:172 -msgid "Poke/Prod" -msgstr "Prikke/oppildne" +#: ../../addon/cards/cards.php:50 +msgid "View Cards" +msgstr "" -#: ../../Zotlabs/Module/Poke.php:173 -msgid "Poke, prod or do other things to somebody" -msgstr "Dult, prikk eller gjør andre ting med noen" +#: ../../addon/cards/cards.php:81 ../../addon/articles/articles.php:83 +#: ../../include/conversation.php:849 +msgid "View in context" +msgstr "Vis i sammenheng" -#: ../../Zotlabs/Module/Poke.php:180 -msgid "Recipient" -msgstr "Mottaker" +#: ../../addon/cards/Mod_Cards.php:115 +msgid "Add Card" +msgstr "" -#: ../../Zotlabs/Module/Poke.php:181 -msgid "Choose what you wish to do to recipient" -msgstr "Velg hva du ønsker å gjøre med mottakeren" +#: ../../addon/notifyadmin/notifyadmin.php:34 +msgid "New registration" +msgstr "" -#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 -msgid "Make this post private" -msgstr "Gjør dette innlegget privat" +#: ../../addon/notifyadmin/notifyadmin.php:40 +#: ../../Zotlabs/Module/Invite.php:252 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : meldingslevering feilet." -#: ../../Zotlabs/Module/Probe.php:30 ../../Zotlabs/Module/Probe.php:34 +#: ../../addon/notifyadmin/notifyadmin.php:42 #, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "Henting av URL gir følgende feil: %1$s" +msgid "Message sent to %s. New account registration: %s" +msgstr "" -#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 -#: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 -msgid "Profile not found." -msgstr "Profilen ble ikke funnet." +#: ../../addon/flashcards/Mod_Flashcards.php:225 +msgid "Not allowed." +msgstr "" -#: ../../Zotlabs/Module/Profiles.php:44 -msgid "Profile deleted." -msgstr "Profilen er slettet." +#: ../../addon/flashcards/Mod_Flashcards.php:261 +#: ../../include/acl_selectors.php:154 ../../Zotlabs/Module/Chat.php:239 +#: ../../Zotlabs/Module/Filestorage.php:195 ../../Zotlabs/Module/Photos.php:682 +#: ../../Zotlabs/Module/Photos.php:1053 ../../Zotlabs/Module/Thing.php:321 +#: ../../Zotlabs/Module/Thing.php:374 +msgid "Permissions" +msgstr "Tillatelser" -#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104 -msgid "Profile-" -msgstr "Profil-" +#: ../../addon/flashcards/Mod_Flashcards.php:268 +#: ../../Zotlabs/Module/Filestorage.php:202 +msgid "Set/edit permissions" +msgstr "Angi/endre tillatelser" -#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132 -msgid "New profile created." -msgstr "Ny profil opprettet." +#: ../../addon/flashcards/Mod_Flashcards.php:291 +#: ../../addon/flashcards/Mod_Flashcards.php:292 ../../include/items.php:3817 +#: ../../Zotlabs/Module/Filestorage.php:29 +#: ../../Zotlabs/Module/Admin/Themes.php:72 +#: ../../Zotlabs/Module/Admin/Addons.php:260 +#: ../../Zotlabs/Module/Viewsrc.php:25 ../../Zotlabs/Module/Display.php:53 +#: ../../Zotlabs/Module/Display.php:388 ../../Zotlabs/Module/Admin.php:61 +#: ../../Zotlabs/Module/Thing.php:96 +msgid "Item not found." +msgstr "Elementet ble ikke funnet." -#: ../../Zotlabs/Module/Profiles.php:110 -msgid "Profile unavailable to clone." -msgstr "Profilen er utilgjengelig for klonen." +#: ../../addon/libertree/libertree.php:43 +msgid "Post to Libertree" +msgstr "" -#: ../../Zotlabs/Module/Profiles.php:151 -msgid "Profile unavailable to export." -msgstr "Profilen er utilgjengelig for eksport." +#: ../../addon/libertree/Mod_Libertree.php:25 +msgid "Libertree Crosspost Connector Settings saved." +msgstr "" -#: ../../Zotlabs/Module/Profiles.php:256 -msgid "Profile Name is required." -msgstr "Profilnavn er påkrevd." +#: ../../addon/libertree/Mod_Libertree.php:49 +msgid "Libertree API token" +msgstr "" -#: ../../Zotlabs/Module/Profiles.php:427 -msgid "Marital Status" -msgstr "Sivilstand" +#: ../../addon/libertree/Mod_Libertree.php:53 +msgid "Libertree site URL" +msgstr "" -#: ../../Zotlabs/Module/Profiles.php:431 -msgid "Romantic Partner" -msgstr "Romantisk partner" +#: ../../addon/libertree/Mod_Libertree.php:57 +msgid "Post to Libertree by default" +msgstr "" -#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736 -msgid "Likes" -msgstr "Liker" +#: ../../addon/libertree/Mod_Libertree.php:65 +msgid "Libertree Crosspost Connector" +msgstr "" -#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737 -msgid "Dislikes" -msgstr "Liker ikke" +#: ../../addon/randpost/randpost.php:99 +msgid "You're welcome." +msgstr "" -#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744 -msgid "Work/Employment" -msgstr "Arbeid/sysselsetting" +#: ../../addon/randpost/randpost.php:100 +msgid "Ah shucks..." +msgstr "" -#: ../../Zotlabs/Module/Profiles.php:446 -msgid "Religion" -msgstr "Religion" +#: ../../addon/randpost/randpost.php:101 +msgid "Don't mention it." +msgstr "" -#: ../../Zotlabs/Module/Profiles.php:450 -msgid "Political Views" -msgstr "Politiske synspunkter" +#: ../../addon/randpost/randpost.php:102 +msgid "<blush>" +msgstr "" -#: ../../Zotlabs/Module/Profiles.php:458 -msgid "Sexual Preference" -msgstr "Seksuelle preferanser" +#: ../../addon/buglink/buglink.php:16 ../../Zotlabs/Lib/Apps.php:332 +msgid "Report Bug" +msgstr "" -#: ../../Zotlabs/Module/Profiles.php:462 -msgid "Homepage" -msgstr "Hjemmeside" +#: ../../addon/totp/Mod_Totp.php:32 +msgid "TOTP Two-Step Verification" +msgstr "" -#: ../../Zotlabs/Module/Profiles.php:466 -msgid "Interests" -msgstr "Interesser" +#: ../../addon/totp/Mod_Totp.php:33 +msgid "Enter the 2-step verification generated by your authenticator app:" +msgstr "" -#: ../../Zotlabs/Module/Profiles.php:560 -msgid "Profile updated." -msgstr "Profilen er oppdatert." +#: ../../addon/totp/Mod_Totp.php:34 +msgid "Success!" +msgstr "" -#: ../../Zotlabs/Module/Profiles.php:644 -msgid "Hide your connections list from viewers of this profile" +#: ../../addon/totp/Mod_Totp.php:35 +msgid "Invalid code, please try again." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:686 -msgid "Edit Profile Details" -msgstr "Endre profildetaljer" +#: ../../addon/totp/Mod_Totp.php:36 +msgid "Too many invalid codes..." +msgstr "" -#: ../../Zotlabs/Module/Profiles.php:688 -msgid "View this profile" -msgstr "Vis denne profilen" +#: ../../addon/totp/Mod_Totp.php:37 +msgid "Verify" +msgstr "" -#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 -#: ../../include/channel.php:959 -msgid "Edit visibility" -msgstr "Endre synlighet" +#: ../../addon/totp/Settings/Totp.php:92 +msgid "" +"You haven't set a TOTP secret yet.\n" +"Please click the button below to generate one and register this site\n" +"with your preferred authenticator app." +msgstr "" -#: ../../Zotlabs/Module/Profiles.php:690 -msgid "Profile Tools" +#: ../../addon/totp/Settings/Totp.php:95 +msgid "Your TOTP secret is" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:691 -msgid "Change cover photo" +#: ../../addon/totp/Settings/Totp.php:96 +msgid "" +"Be sure to save it somewhere in case you lose or replace your mobile " +"device.\n" +"Use your mobile device to scan the QR code below to register this site\n" +"with your preferred authenticator app." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:930 -msgid "Change profile photo" -msgstr "Endre profilbilde" +#: ../../addon/totp/Settings/Totp.php:101 +msgid "Test" +msgstr "" -#: ../../Zotlabs/Module/Profiles.php:693 -msgid "Create a new profile using these settings" -msgstr "Lag en ny profil ved å bruke disse innstillingene" +#: ../../addon/totp/Settings/Totp.php:102 +msgid "Generate New Secret" +msgstr "" -#: ../../Zotlabs/Module/Profiles.php:694 -msgid "Clone this profile" -msgstr "Klon denne profilen" +#: ../../addon/totp/Settings/Totp.php:103 +msgid "Go" +msgstr "" -#: ../../Zotlabs/Module/Profiles.php:695 -msgid "Delete this profile" -msgstr "Slett denne profilen" +#: ../../addon/totp/Settings/Totp.php:104 +msgid "Enter your password" +msgstr "" -#: ../../Zotlabs/Module/Profiles.php:696 -msgid "Add profile things" -msgstr "Legg til profilting" +#: ../../addon/totp/Settings/Totp.php:105 +msgid "enter TOTP code from your device" +msgstr "" -#: ../../Zotlabs/Module/Profiles.php:697 ../../include/widgets.php:105 -#: ../../include/conversation.php:1526 -msgid "Personal" -msgstr "Personlig" +#: ../../addon/totp/Settings/Totp.php:106 +msgid "Pass!" +msgstr "" -#: ../../Zotlabs/Module/Profiles.php:699 -msgid "Relation" +#: ../../addon/totp/Settings/Totp.php:107 +msgid "Fail" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48 -msgid "Miscellaneous" -msgstr "Forskjellig" +#: ../../addon/totp/Settings/Totp.php:108 +msgid "Incorrect password, try again." +msgstr "" -#: ../../Zotlabs/Module/Profiles.php:702 -msgid "Import profile from file" -msgstr "Importer profil fra fil" +#: ../../addon/totp/Settings/Totp.php:109 +msgid "Record your new TOTP secret and rescan the QR code above." +msgstr "" -#: ../../Zotlabs/Module/Profiles.php:703 -msgid "Export profile to file" -msgstr "Eksporter profil til fil" +#: ../../addon/totp/Settings/Totp.php:117 +msgid "TOTP Settings" +msgstr "" -#: ../../Zotlabs/Module/Profiles.php:704 -msgid "Your gender" +#: ../../addon/logrot/logrot.php:36 +msgid "Logfile archive directory" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:705 -msgid "Marital status" +#: ../../addon/logrot/logrot.php:36 +msgid "Directory to store rotated logs" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:706 -msgid "Sexual preference" +#: ../../addon/logrot/logrot.php:37 +msgid "Logfile size in bytes before rotating" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:709 -msgid "Profile name" +#: ../../addon/logrot/logrot.php:38 +msgid "Number of logfiles to retain" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:711 -msgid "This is your default profile." -msgstr "Dette er din standardprofil." +#: ../../addon/testdrive/testdrive.php:104 +#, php-format +msgid "Your account on %s will expire in a few days." +msgstr "" -#: ../../Zotlabs/Module/Profiles.php:713 -msgid "Your full name" +#: ../../addon/testdrive/testdrive.php:105 +msgid "Your test account is about to expire." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:714 -msgid "Title/Description" +#: ../../addon/hideaside/Mod_Hideaside.php:28 +msgid "Hide Aside App" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:717 -msgid "Street address" +#: ../../addon/hideaside/Mod_Hideaside.php:29 +msgid "Fade out aside areas after a while when using endless scroll" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:718 -msgid "Locality/City" +#: ../../addon/skeleton/Mod_Skeleton.php:38 +msgid "Some setting" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:719 -msgid "Region/State" +#: ../../addon/skeleton/Mod_Skeleton.php:38 +msgid "A setting" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:720 -msgid "Postal/Zip code" +#: ../../addon/skeleton/Mod_Skeleton.php:46 +msgid "Skeleton Settings" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:721 -msgid "Country" +#: ../../addon/socialauth/Mod_SocialAuth.php:106 +#: ../../addon/socialauth/Mod_SocialAuth.php:179 +msgid "Network error" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "Who (if applicable)" +#: ../../addon/socialauth/Mod_SocialAuth.php:110 +#: ../../addon/socialauth/Mod_SocialAuth.php:183 +msgid "API error" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Eksempler: kari123, Kari Villiamsen, kari@example.com" +#: ../../addon/socialauth/Mod_SocialAuth.php:114 +#: ../../addon/socialauth/Mod_SocialAuth.php:187 +msgid "Unknown issue" +msgstr "" -#: ../../Zotlabs/Module/Profiles.php:727 -msgid "Since (date)" +#: ../../addon/socialauth/Mod_SocialAuth.php:152 +msgid "Unable to retrieve email address from remote identity provider" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:730 -msgid "Tell us about yourself" +#: ../../addon/socialauth/Mod_SocialAuth.php:171 +msgid "Unable to login using email address " msgstr "" -#: ../../Zotlabs/Module/Profiles.php:732 -msgid "Hometown" +#: ../../addon/socialauth/Mod_SocialAuth.php:211 +msgid "Social Authentication using your social media account" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:733 -msgid "Political views" +#: ../../addon/socialauth/Mod_SocialAuth.php:215 +msgid "" +"This app enables one or more social provider sign-in buttons on the login " +"page." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:734 -msgid "Religious views" +#: ../../addon/socialauth/Mod_SocialAuth.php:233 +msgid "Add an identity provider" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Keywords used in directory listings" +#: ../../addon/socialauth/Mod_SocialAuth.php:260 +msgid "Enable " msgstr "" -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Example: fishing photography software" -msgstr "Eksempel: fisking fotografering programvare" +#: ../../addon/socialauth/Mod_SocialAuth.php:267 +msgid "Key" +msgstr "" -#: ../../Zotlabs/Module/Profiles.php:738 -msgid "Musical interests" -msgstr "Musikkinteresser" +#: ../../addon/socialauth/Mod_SocialAuth.php:267 +#: ../../addon/socialauth/Mod_SocialAuth.php:272 +#: ../../addon/socialauth/Mod_SocialAuth.php:288 +#: ../../addon/socialauth/Mod_SocialAuth.php:299 +#: ../../addon/socialauth/Mod_SocialAuth.php:308 +msgid "Word" +msgstr "" -#: ../../Zotlabs/Module/Profiles.php:739 -msgid "Books, literature" -msgstr "Bøker, litteratur" +#: ../../addon/socialauth/Mod_SocialAuth.php:272 +msgid "Secret" +msgstr "" -#: ../../Zotlabs/Module/Profiles.php:740 -msgid "Television" -msgstr "TV/fjernsyn" +#: ../../addon/socialauth/Mod_SocialAuth.php:308 +msgid "Add a custom provider" +msgstr "" -#: ../../Zotlabs/Module/Profiles.php:741 -msgid "Film/Dance/Culture/Entertainment" +#: ../../addon/socialauth/Mod_SocialAuth.php:328 +msgid "Remove an identity provider" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:742 -msgid "Hobbies/Interests" -msgstr "Hobbier/Interesser" +#: ../../addon/socialauth/Mod_SocialAuth.php:338 +msgid "Social authentication" +msgstr "" -#: ../../Zotlabs/Module/Profiles.php:743 -msgid "Love/Romance" +#: ../../addon/socialauth/Mod_SocialAuth.php:380 +msgid "Error while saving provider settings" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:745 -msgid "School/Education" +#: ../../addon/socialauth/Mod_SocialAuth.php:403 +msgid "Custom provider already exists" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:746 -msgid "Contact information and social networks" +#: ../../addon/socialauth/Mod_SocialAuth.php:420 +msgid "Social authentication settings saved." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:747 -msgid "My other channels" -msgstr "Mine andre kanaler" +#: ../../addon/nsfw/nsfw.php:152 +msgid "Possible adult content" +msgstr "" -#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:955 -msgid "Profile Image" -msgstr "Profilbilde" +#: ../../addon/nsfw/nsfw.php:167 +#, php-format +msgid "%s - view" +msgstr "" -#: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:88 -#: ../../include/channel.php:937 -msgid "Edit Profiles" -msgstr "Endre profiler" +#: ../../addon/nsfw/Mod_Nsfw.php:22 +msgid "NSFW Settings saved." +msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:179 +#: ../../addon/nsfw/Mod_Nsfw.php:42 msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Hold nede Shift-knappen og last siden på nytt eller tøm nettleserens mellomlager hvis det nye bildet ikke vises umiddelbart." +"This app looks in posts for the words/text you specify below, and collapses " +"any content containing those keywords so it is not displayed at " +"inappropriate times, such as sexual innuendo that may be improper in a work " +"setting. It is polite and recommended to tag any content containing nudity " +"with #NSFW. This filter can also match any other word/text you specify, and " +"can thereby be used as a general purpose content filter." +msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:367 -msgid "Upload Profile Photo" -msgstr "Last opp profilbilde:" +#: ../../addon/nsfw/Mod_Nsfw.php:47 +msgid "Comma separated list of keywords to hide" +msgstr "" -#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 -msgid "Invalid profile identifier." -msgstr "Ugyldig profil-identifikator." +#: ../../addon/nsfw/Mod_Nsfw.php:47 +msgid "Word, /regular-expression/, lang=xx, lang!=xx" +msgstr "" -#: ../../Zotlabs/Module/Profperm.php:115 -msgid "Profile Visibility Editor" -msgstr "Endre profilsynlighet" +#: ../../addon/nsfw/Mod_Nsfw.php:56 +msgid "NSFW" +msgstr "" -#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1249 -msgid "Profile" -msgstr "Profil" +#: ../../addon/upload_limits/upload_limits.php:25 +msgid "Show Upload Limits" +msgstr "" -#: ../../Zotlabs/Module/Profperm.php:119 -msgid "Click on a contact to add or remove." -msgstr "Klikk på en kontakt for å legge til eller fjerne." +#: ../../addon/upload_limits/upload_limits.php:27 +msgid "Hubzilla configured maximum size: " +msgstr "" -#: ../../Zotlabs/Module/Profperm.php:128 -msgid "Visible To" -msgstr "Synlig for" +#: ../../addon/upload_limits/upload_limits.php:28 +msgid "PHP upload_max_filesize: " +msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1270 -msgid "Public Hubs" -msgstr "Offentlige huber" +#: ../../addon/upload_limits/upload_limits.php:29 +msgid "PHP post_max_size (must be larger than upload_max_filesize): " +msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:25 -msgid "" -"The listed hubs allow public registration for the $Projectname network. All " -"hubs in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some hubs may require subscription or " -"provide tiered service plans. The hub itself may provide " -"additional details." -msgstr "Nettstedene på listen tillater offentlig registrering i $Projectname-nettverket. Alle nettsteder i nettverket er forbundet så medlemskap på enhver av dem formidler medlemskap i nettverket som helhet. Noen nettsteder kan kreve abonnement eller tilby lagdelte tjenesteavtaler. Nettstedene selv kan gi tilleggsopplysninger." +#: ../../addon/tictac/tictac.php:21 +msgid "Three Dimensional Tic-Tac-Toe" +msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Hub URL" -msgstr "Nettstedets URL" +#: ../../addon/tictac/tictac.php:54 +msgid "3D Tic-Tac-Toe" +msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Access Type" -msgstr "Tilgangstype" +#: ../../addon/tictac/tictac.php:59 +msgid "New game" +msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Registration Policy" -msgstr "Retningslinjer for registrering" +#: ../../addon/tictac/tictac.php:60 +msgid "New game with handicap" +msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Stats" +#: ../../addon/tictac/tictac.php:61 +msgid "" +"Three dimensional tic-tac-toe is just like the traditional game except that " +"it is played on multiple levels simultaneously. " msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Software" +#: ../../addon/tictac/tictac.php:62 +msgid "" +"In this case there are three levels. You win by getting three in a row on " +"any level, as well as up, down, and diagonally across the different levels." msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 -#: ../../include/conversation.php:959 -msgid "Ratings" -msgstr "Vurderinger" +#: ../../addon/tictac/tictac.php:64 +msgid "" +"The handicap game disables the center position on the middle level because " +"the player claiming this square often has an unfair advantage." +msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:38 -msgid "Rate" -msgstr "Vurder" +#: ../../addon/tictac/tictac.php:183 +msgid "You go first..." +msgstr "" -#: ../../Zotlabs/Module/Rate.php:160 -msgid "Website:" -msgstr "Nettsted:" +#: ../../addon/tictac/tictac.php:188 +msgid "I'm going first this time..." +msgstr "" -#: ../../Zotlabs/Module/Rate.php:163 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "Fjerntliggende kanal [%s] (foreløpig ikke kjent på dette nettstedet)" +#: ../../addon/tictac/tictac.php:194 +msgid "You won!" +msgstr "" -#: ../../Zotlabs/Module/Rate.php:164 -msgid "Rating (this information is public)" -msgstr "Vurdering (denne informasjonen er offentlig)" +#: ../../addon/tictac/tictac.php:200 ../../addon/tictac/tictac.php:225 +msgid "\"Cat\" game!" +msgstr "" -#: ../../Zotlabs/Module/Rate.php:165 -msgid "Optionally explain your rating (this information is public)" -msgstr "Velg om du vil forklare din vurdering (denne informasjonen er offentlig)" +#: ../../addon/tictac/tictac.php:223 +msgid "I won!" +msgstr "" -#: ../../Zotlabs/Module/Ratings.php:73 -msgid "No ratings" -msgstr "Ingen vurderinger" +#: ../../addon/mailtest/mailtest.php:19 +msgid "Send test email" +msgstr "" -#: ../../Zotlabs/Module/Ratings.php:104 -msgid "Rating: " -msgstr "Vurdering:" +#: ../../addon/mailtest/mailtest.php:66 +msgid "Mail sent." +msgstr "" -#: ../../Zotlabs/Module/Ratings.php:105 -msgid "Website: " -msgstr "Nettsted:" +#: ../../addon/mailtest/mailtest.php:68 +msgid "Sending of mail failed." +msgstr "" -#: ../../Zotlabs/Module/Ratings.php:107 -msgid "Description: " -msgstr "Beskrivelse:" +#: ../../addon/mailtest/mailtest.php:77 +msgid "Mail Test" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:77 -msgid "Theme settings updated." -msgstr "Temainnstillinger er oppdatert." +#: ../../addon/ljpost/Mod_Ljpost.php:53 +msgid "Livejournal username" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:197 -msgid "# Accounts" -msgstr "# Kontoer" +#: ../../addon/ljpost/Mod_Ljpost.php:57 +msgid "Livejournal password" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:198 -msgid "# blocked accounts" -msgstr "# blokkerte kontoer" +#: ../../addon/ljpost/Mod_Ljpost.php:61 +msgid "Post to Livejournal by default" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:199 -msgid "# expired accounts" -msgstr "# utgåtte kontoer" +#: ../../addon/ljpost/Mod_Ljpost.php:65 +msgid "Send wall-to-wall posts to Livejournal" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:200 -msgid "# expiring accounts" -msgstr "# kontoer som holder på å gå ut" +#: ../../addon/ljpost/Mod_Ljpost.php:77 +msgid "Livejournal Crosspost Connector" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:211 -msgid "# Channels" -msgstr "# Kanaler" +#: ../../addon/ljpost/ljpost.php:49 +msgid "Post to Livejournal" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:212 -msgid "# primary" -msgstr "# hoved" +#: ../../addon/ljpost/ljpost.php:127 +msgid "Posted by" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:213 -msgid "# clones" -msgstr "# kloner" +#: ../../addon/mdpost/mdpost.php:42 +msgid "Use markdown for editing posts" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:219 -msgid "Message queues" -msgstr "Meldingskøer" +#: ../../addon/articles/Mod_Article_edit.php:127 +msgid "Edit Article" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:236 -msgid "Your software should be updated" +#: ../../addon/articles/articles.php:48 ../../addon/articles/articles.php:160 +#: ../../addon/articles/Mod_Articles.php:228 ../../Zotlabs/Lib/Apps.php:329 +msgid "Articles" msgstr "" -#: ../../Zotlabs/Module/Admin.php:241 ../../Zotlabs/Module/Admin.php:490 -#: ../../Zotlabs/Module/Admin.php:711 ../../Zotlabs/Module/Admin.php:755 -#: ../../Zotlabs/Module/Admin.php:1030 ../../Zotlabs/Module/Admin.php:1209 -#: ../../Zotlabs/Module/Admin.php:1329 ../../Zotlabs/Module/Admin.php:1419 -#: ../../Zotlabs/Module/Admin.php:1612 ../../Zotlabs/Module/Admin.php:1646 -#: ../../Zotlabs/Module/Admin.php:1731 -msgid "Administration" -msgstr "Administrasjon" +#: ../../addon/articles/articles.php:51 +msgid "View Articles" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:242 -msgid "Summary" -msgstr "Sammendrag" +#: ../../addon/articles/Mod_Articles.php:119 +msgid "Add Article" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:245 -msgid "Registered accounts" -msgstr "Registrerte kontoer" +#: ../../addon/hzfiles/hzfiles.php:81 +msgid "Hubzilla File Storage Import" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:246 ../../Zotlabs/Module/Admin.php:715 -msgid "Pending registrations" -msgstr "Ventende registreringer" +#: ../../addon/hzfiles/hzfiles.php:82 +msgid "This will import all your cloud files from another server." +msgstr "" -#: ../../Zotlabs/Module/Admin.php:247 -msgid "Registered channels" -msgstr "Registrerte kanaler" +#: ../../addon/hzfiles/hzfiles.php:83 +msgid "Hubzilla Server base URL" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:248 ../../Zotlabs/Module/Admin.php:716 -msgid "Active plugins" -msgstr "Aktive tilleggsfunksjoner" +#: ../../addon/authchoose/Mod_Authchoose.php:30 +msgid "" +"Allow magic authentication only to websites of your immediate connections" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:249 -msgid "Version" -msgstr "Versjon" +#: ../../addon/authchoose/Mod_Authchoose.php:36 +msgid "Authchoose" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:250 -msgid "Repository version (master)" +#: ../../addon/pageheader/Mod_Pageheader.php:22 +msgid "pageheader Settings saved." msgstr "" -#: ../../Zotlabs/Module/Admin.php:251 -msgid "Repository version (dev)" +#: ../../addon/pageheader/Mod_Pageheader.php:41 +msgid "Message to display on every page on this server" msgstr "" -#: ../../Zotlabs/Module/Admin.php:373 -msgid "Site settings updated." -msgstr "Nettstedsinnstillinger er oppdatert." +#: ../../addon/pageheader/Mod_Pageheader.php:49 +msgid "Page Header" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2841 -msgid "Default" -msgstr "Standard" +#: ../../addon/irc/Mod_Irc.php:23 ../../addon/irc/irc.php:41 +msgid "Popular Channels" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:798 -msgid "mobile" -msgstr "mobil" +#: ../../addon/irc/irc.php:37 +msgid "Channels to auto connect" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:412 -msgid "experimental" -msgstr "eksperimentell" +#: ../../addon/irc/irc.php:37 ../../addon/irc/irc.php:41 +msgid "Comma separated list" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:414 -msgid "unsupported" -msgstr "ikke støttet" +#: ../../addon/irc/irc.php:45 +msgid "IRC Settings" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:460 -msgid "Yes - with approval" -msgstr "Ja - med godkjenning" +#: ../../addon/irc/irc.php:54 +msgid "IRC settings saved." +msgstr "" -#: ../../Zotlabs/Module/Admin.php:466 -msgid "My site is not a public server" -msgstr "Mitt nettsted er ikke en offentlig tjeneste" +#: ../../addon/irc/irc.php:58 +msgid "IRC Chatroom" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:467 -msgid "My site has paid access only" -msgstr "Mitt nettsted gir kun tilgang mot betaling" +#: ../../addon/xmpp/xmpp.php:44 +msgid "Jabber BOSH host" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:468 -msgid "My site has free access only" -msgstr "Mitt nettsted har kun gratis tilgang" +#: ../../addon/xmpp/xmpp.php:45 +msgid "Use central userbase" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:469 -msgid "My site offers free accounts with optional paid upgrades" -msgstr "Mitt nettsted tilbyr gratis konto med valgfri oppgradering til betalt tjeneste" +#: ../../addon/xmpp/xmpp.php:45 +msgid "" +"If enabled, members will automatically login to an ejabberd server that has " +"to be installed on this machine with synchronized credentials via the " +"\"auth_ejabberd.php\" script." +msgstr "" -#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1382 -msgid "Site" -msgstr "Nettsted" +#: ../../addon/xmpp/Mod_Xmpp.php:23 +msgid "XMPP settings updated." +msgstr "" -#: ../../Zotlabs/Module/Admin.php:493 ../../Zotlabs/Module/Register.php:245 -msgid "Registration" -msgstr "Registrering" +#: ../../addon/xmpp/Mod_Xmpp.php:35 +msgid "XMPP App" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:494 -msgid "File upload" -msgstr "Last opp fil" +#: ../../addon/xmpp/Mod_Xmpp.php:36 +msgid "Embedded XMPP (Jabber) client" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:495 -msgid "Policies" -msgstr "Retningslinjer" +#: ../../addon/xmpp/Mod_Xmpp.php:52 +msgid "Individual credentials" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:496 ../../include/contact_widgets.php:16 -msgid "Advanced" -msgstr "Avansert" +#: ../../addon/xmpp/Mod_Xmpp.php:58 +msgid "Jabber BOSH server" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:500 -msgid "Site name" -msgstr "Nettstedets navn" +#: ../../addon/xmpp/Mod_Xmpp.php:67 +msgid "XMPP Settings" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:501 -msgid "Banner/Logo" -msgstr "Banner/Logo" +#: ../../include/text.php:546 +msgid "prev" +msgstr "forrige" -#: ../../Zotlabs/Module/Admin.php:502 -msgid "Administrator Information" -msgstr "Administratorinformasjon" +#: ../../include/text.php:548 +msgid "first" +msgstr "første" -#: ../../Zotlabs/Module/Admin.php:502 -msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "Kontaktinformasjon til nettstedsadministratorer. Vises på siteinfo-siden. BBCode kan brukes her" +#: ../../include/text.php:577 +msgid "last" +msgstr "siste" -#: ../../Zotlabs/Module/Admin.php:503 -msgid "System language" -msgstr "Systemspråk" +#: ../../include/text.php:580 +msgid "next" +msgstr "neste" -#: ../../Zotlabs/Module/Admin.php:504 -msgid "System theme" -msgstr "Systemtema" +#: ../../include/text.php:598 +msgid "older" +msgstr "eldre" -#: ../../Zotlabs/Module/Admin.php:504 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Standard systemtema - kan overstyres av brukerprofiler - endre temainnstillinger" +#: ../../include/text.php:600 +msgid "newer" +msgstr "nyere" -#: ../../Zotlabs/Module/Admin.php:505 -msgid "Mobile system theme" -msgstr "Mobilt systemtema" +#: ../../include/text.php:1055 ../../include/features.php:133 +#: ../../Zotlabs/Module/Connections.php:390 ../../Zotlabs/Lib/Apps.php:337 +msgid "Connections" +msgstr "Forbindelser" -#: ../../Zotlabs/Module/Admin.php:505 -msgid "Theme for mobile devices" -msgstr "Tema for mobile enheter" +#: ../../include/text.php:1063 ../../Zotlabs/Module/Viewconnections.php:80 +#: ../../Zotlabs/Module/Connections.php:297 +msgid "Accepts" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:507 -msgid "Allow Feeds as Connections" -msgstr "Tillat strømmer som forbindelser" +#: ../../include/text.php:1066 ../../Zotlabs/Module/Viewconnections.php:83 +#: ../../Zotlabs/Module/Connections.php:300 +msgid "Comments" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:507 -msgid "(Heavy system resource usage)" -msgstr "(Tung bruk av systemressurser)" +#: ../../include/text.php:1071 ../../Zotlabs/Module/Viewconnections.php:88 +#: ../../Zotlabs/Module/Connections.php:305 +msgid "Stream items" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:508 -msgid "Maximum image size" -msgstr "Største bildestørrelse" +#: ../../include/text.php:1076 ../../Zotlabs/Module/Viewconnections.php:93 +#: ../../Zotlabs/Module/Connections.php:310 +msgid "Wall posts" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:508 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Største størrelse i bytes for opplastede bilder. Standard er 0, som betyr ubegrenset." +#: ../../include/text.php:1080 ../../Zotlabs/Module/Viewconnections.php:97 +#: ../../Zotlabs/Module/Connections.php:314 +msgid "Nothing" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:509 -msgid "Does this site allow new member registration?" -msgstr "Tillater dette nettstedet registrering av nye medlemmer?" +#: ../../include/text.php:1093 +#, php-format +msgid "View all %s connections" +msgstr "Vis alle %s forbindelser" -#: ../../Zotlabs/Module/Admin.php:510 -msgid "Invitation only" -msgstr "Kun inviterte" +#: ../../include/text.php:1156 +#, php-format +msgid "Network: %s" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:510 -msgid "" -"Only allow new member registrations with an invitation code. Above register " -"policy must be set to Yes." -msgstr "Tillat bare nye medlemsregistreringer med en invitasjonskode. Ovenstående retningslinjer for registrering må være satt til Ja." +#: ../../include/text.php:1167 ../../include/text.php:1179 +#: ../../include/nav.php:193 ../../include/acl_selectors.php:149 +#: ../../Zotlabs/Widget/Sitesearch.php:37 +#: ../../Zotlabs/Widget/Activity_filter.php:210 +#: ../../Zotlabs/Module/Search.php:46 ../../Zotlabs/Module/Connections.php:394 +#: ../../Zotlabs/Lib/Apps.php:357 +msgid "Search" +msgstr "Søk" -#: ../../Zotlabs/Module/Admin.php:511 -msgid "Which best describes the types of account offered by this hub?" -msgstr "Hvilket alternativ beskriver best hva slags kontotype som tilbys av dette nettstedet/denne hubben?" +#: ../../include/text.php:1259 ../../include/text.php:1263 +msgid "poke" +msgstr "prikk" -#: ../../Zotlabs/Module/Admin.php:512 -msgid "Register text" -msgstr "Registreringstekst" +#: ../../include/text.php:1259 ../../include/text.php:1263 +#: ../../include/conversation.php:277 +msgid "poked" +msgstr "prikket" -#: ../../Zotlabs/Module/Admin.php:512 -msgid "Will be displayed prominently on the registration page." -msgstr "Vil bli vist på en fremtredende måte på registreringssiden." +#: ../../include/text.php:1264 +msgid "ping" +msgstr "varsle" -#: ../../Zotlabs/Module/Admin.php:513 -msgid "Site homepage to show visitors (default: login box)" -msgstr "Nettstedets hjemmeside som vises til besøkende (standard: innloggingsboks)" +#: ../../include/text.php:1264 +msgid "pinged" +msgstr "varslet" -#: ../../Zotlabs/Module/Admin.php:513 -msgid "" -"example: 'public' to show public stream, 'page/sys/home' to show a system " -"webpage called 'home' or 'include:home.html' to include a file." -msgstr "eksempel: 'public' for å vise offentlig strøm av innlegg, 'page/sys/home/ for å vise en system-webside called 'home\" eller 'include:home.html' for å inkludere en fil." +#: ../../include/text.php:1265 +msgid "prod" +msgstr "oppildne" -#: ../../Zotlabs/Module/Admin.php:514 -msgid "Preserve site homepage URL" -msgstr "Bevar URL-en til nettstedets hjemmeside" +#: ../../include/text.php:1265 +msgid "prodded" +msgstr "oppildnet" -#: ../../Zotlabs/Module/Admin.php:514 -msgid "" -"Present the site homepage in a frame at the original location instead of " -"redirecting" -msgstr "Presenter hjemmesiden til nettstedet i en ramme fra den opprinnelige plasseringen i stedet for å omdirigere" +#: ../../include/text.php:1266 +msgid "slap" +msgstr "daske" -#: ../../Zotlabs/Module/Admin.php:515 -msgid "Accounts abandoned after x days" -msgstr "Kontoer forlatt etter x dager" +#: ../../include/text.php:1266 +msgid "slapped" +msgstr "dasket" -#: ../../Zotlabs/Module/Admin.php:515 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Vil ikke kaste bort systemressurser på å spørre eksterne nettsteder etter forlatte kontoer. Skriv 0 for å ikke sette noen tidsgrense." +#: ../../include/text.php:1267 +msgid "finger" +msgstr "fingre" -#: ../../Zotlabs/Module/Admin.php:516 -msgid "Allowed friend domains" -msgstr "Tillatte vennedomener" +#: ../../include/text.php:1267 +msgid "fingered" +msgstr "fingret" -#: ../../Zotlabs/Module/Admin.php:516 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Kommaseparert liste over domener som har lov til å etablere vennskap med dette nettstedet. Jokertegn er akseptert. Tøm for å tillate alle domener." +#: ../../include/text.php:1268 +msgid "rebuff" +msgstr "tilbakevise" -#: ../../Zotlabs/Module/Admin.php:517 -msgid "Allowed email domains" -msgstr "Tillate e-postdomener" +#: ../../include/text.php:1268 +msgid "rebuffed" +msgstr "tilbakeviste" -#: ../../Zotlabs/Module/Admin.php:517 -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 "Kommaseparert liste med domener som er tillatt i e-postadresser ved registrering på dette nettstedet. Jokertegn er akseptert. Tomt betyr at alle domener er tillatt" +#: ../../include/text.php:1291 +msgid "happy" +msgstr "glad" -#: ../../Zotlabs/Module/Admin.php:518 -msgid "Not allowed email domains" -msgstr "Ikke tillatte e-postdomener" +#: ../../include/text.php:1292 +msgid "sad" +msgstr "trist" -#: ../../Zotlabs/Module/Admin.php:518 -msgid "" -"Comma separated list of domains which are not allowed in email addresses for" -" registrations to this site. Wildcards are accepted. Empty to allow any " -"domains, unless allowed domains have been defined." -msgstr "Kommaseparert liste med domener som ikke er tillatt i e-postadresser ved registrering på dette nettstedet. Jokertegn er akseptert. Tomt betyr at alle domener er tillatt, med mindre tillate domener er blitt definert." +#: ../../include/text.php:1293 +msgid "mellow" +msgstr "dempet" -#: ../../Zotlabs/Module/Admin.php:519 -msgid "Verify Email Addresses" -msgstr "Bekreft e-postadresser" +#: ../../include/text.php:1294 +msgid "tired" +msgstr "trøtt" -#: ../../Zotlabs/Module/Admin.php:519 -msgid "" -"Check to verify email addresses used in account registration (recommended)." -msgstr "Sett hake for å sjekke e-postadresser brukt ved kontoregistrering (anbefales)." +#: ../../include/text.php:1295 +msgid "perky" +msgstr "oppkvikket" -#: ../../Zotlabs/Module/Admin.php:520 -msgid "Force publish" -msgstr "Tving publisering" +#: ../../include/text.php:1296 +msgid "angry" +msgstr "sint" -#: ../../Zotlabs/Module/Admin.php:520 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Kryss av for å tvinge alle profiler på dette nettstedet til å bli oppført i nettstedet sin katalog." +#: ../../include/text.php:1297 +msgid "stupefied" +msgstr "lamslått" -#: ../../Zotlabs/Module/Admin.php:521 -msgid "Import Public Streams" -msgstr "Importer offentlige innholdsstrømmer" +#: ../../include/text.php:1298 +msgid "puzzled" +msgstr "forundret" -#: ../../Zotlabs/Module/Admin.php:521 -msgid "" -"Import and allow access to public content pulled from other sites. Warning: " -"this content is unmoderated." -msgstr "Importer og gi tilgang til offentlig innhold trukket inn fra andre nettsteder. Advarsel: dette innholdet er ikke moderert." +#: ../../include/text.php:1299 +msgid "interested" +msgstr "interessert" -#: ../../Zotlabs/Module/Admin.php:522 -msgid "Login on Homepage" -msgstr "" +#: ../../include/text.php:1300 +msgid "bitter" +msgstr "bitter" -#: ../../Zotlabs/Module/Admin.php:522 -msgid "" -"Present a login box to visitors on the home page if no other content has " -"been configured." -msgstr "Presenter en innloggingsboks til besøkende på hjemmesiden hvis ikke noe annet innhold har blitt konfigurert." +#: ../../include/text.php:1301 +msgid "cheerful" +msgstr "munter" -#: ../../Zotlabs/Module/Admin.php:523 -msgid "Enable context help" -msgstr "" +#: ../../include/text.php:1302 +msgid "alive" +msgstr "levende" -#: ../../Zotlabs/Module/Admin.php:523 -msgid "" -"Display contextual help for the current page when the help button is " -"pressed." -msgstr "" +#: ../../include/text.php:1303 +msgid "annoyed" +msgstr "irritert" -#: ../../Zotlabs/Module/Admin.php:525 -msgid "Directory Server URL" -msgstr "Katalogtjener URL" +#: ../../include/text.php:1304 +msgid "anxious" +msgstr "nervøs" -#: ../../Zotlabs/Module/Admin.php:525 -msgid "Default directory server" -msgstr "Standard katalogtjener" +#: ../../include/text.php:1305 +msgid "cranky" +msgstr "gretten" -#: ../../Zotlabs/Module/Admin.php:527 -msgid "Proxy user" -msgstr "Brukernavn mellomtjener" +#: ../../include/text.php:1306 +msgid "disturbed" +msgstr "foruroliget" -#: ../../Zotlabs/Module/Admin.php:528 -msgid "Proxy URL" -msgstr "Mellomtjener URL" +#: ../../include/text.php:1307 +msgid "frustrated" +msgstr "frustrert" -#: ../../Zotlabs/Module/Admin.php:529 -msgid "Network timeout" -msgstr "Nettverk tidsavbrudd" +#: ../../include/text.php:1308 +msgid "depressed" +msgstr "lei seg" -#: ../../Zotlabs/Module/Admin.php:529 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Verdien i sekunder. Skriv 0 for ubegrenset (ikke anbefalt)." +#: ../../include/text.php:1309 +msgid "motivated" +msgstr "motivert" -#: ../../Zotlabs/Module/Admin.php:530 -msgid "Delivery interval" -msgstr "Leveringsinterval" +#: ../../include/text.php:1310 +msgid "relaxed" +msgstr "avslappet" -#: ../../Zotlabs/Module/Admin.php:530 -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 "Forsink leveringsprosessene i bakgrunnen med dette antall sekunder for å redusere systembelastningen. Anbefaling: 4-5 for delte tjenere, 2-3 for virtuelle tjenere, 0-1 for større dedikerte tjenere." +#: ../../include/text.php:1311 +msgid "surprised" +msgstr "overrasket" -#: ../../Zotlabs/Module/Admin.php:531 -msgid "Deliveries per process" -msgstr "Leveranser per prosess" +#: ../../include/text.php:1499 ../../include/js_strings.php:100 +msgid "Monday" +msgstr "mandag" -#: ../../Zotlabs/Module/Admin.php:531 -msgid "" -"Number of deliveries to attempt in a single operating system process. Adjust" -" if necessary to tune system performance. Recommend: 1-5." -msgstr "Antall leveranser som forsøkes i en enkelt operativsystemprosess. Juster om nødvendig for å fininnstille systemets yteevne. Anbefaling: 1-5." +#: ../../include/text.php:1499 ../../include/js_strings.php:101 +msgid "Tuesday" +msgstr "tirsdag" -#: ../../Zotlabs/Module/Admin.php:532 -msgid "Poll interval" -msgstr "Spørreintervall" +#: ../../include/text.php:1499 ../../include/js_strings.php:102 +msgid "Wednesday" +msgstr "onsdag" -#: ../../Zotlabs/Module/Admin.php:532 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Forsink spørreprosessene i bakgrunnen med dette antall sekunder for å redusere systembelastningen. Hvis 0, bruk dette leveringsintervallet." +#: ../../include/text.php:1499 ../../include/js_strings.php:103 +msgid "Thursday" +msgstr "torsdag" -#: ../../Zotlabs/Module/Admin.php:533 -msgid "Maximum Load Average" -msgstr "Største belastningsgjennomsnitt" +#: ../../include/text.php:1499 ../../include/js_strings.php:104 +msgid "Friday" +msgstr "fredag" -#: ../../Zotlabs/Module/Admin.php:533 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Største systembelastning før leverings- og spørreprosesser blir utsatt - standard 50." +#: ../../include/text.php:1499 ../../include/js_strings.php:105 +msgid "Saturday" +msgstr "lørdag" -#: ../../Zotlabs/Module/Admin.php:534 -msgid "Expiration period in days for imported (grid/network) content" -msgstr "Antall dager før importert innhold (nettet/nettverk) utgår" +#: ../../include/text.php:1499 ../../include/js_strings.php:99 +msgid "Sunday" +msgstr "søndag" -#: ../../Zotlabs/Module/Admin.php:534 -msgid "0 for no expiration of imported content" -msgstr "0 dersom importert innhold ikke skal utgå" +#: ../../include/text.php:1503 ../../include/js_strings.php:75 +msgid "January" +msgstr "januar" -#: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:722 -msgid "Off" -msgstr "Av" +#: ../../include/text.php:1503 ../../include/js_strings.php:76 +msgid "February" +msgstr "februar" -#: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:722 -msgid "On" -msgstr "På" +#: ../../include/text.php:1503 ../../include/js_strings.php:77 +msgid "March" +msgstr "mars" -#: ../../Zotlabs/Module/Admin.php:678 -#, php-format -msgid "Lock feature %s" -msgstr "Lås funksjon %s" +#: ../../include/text.php:1503 ../../include/js_strings.php:78 +msgid "April" +msgstr "april" -#: ../../Zotlabs/Module/Admin.php:686 -msgid "Manage Additional Features" -msgstr "Håndter tilleggsfunksjoner" +#: ../../include/text.php:1503 +msgid "May" +msgstr "mai" -#: ../../Zotlabs/Module/Admin.php:703 -msgid "No server found" -msgstr "Ingen tjener funnet" +#: ../../include/text.php:1503 ../../include/js_strings.php:80 +msgid "June" +msgstr "juni" -#: ../../Zotlabs/Module/Admin.php:710 ../../Zotlabs/Module/Admin.php:1046 -msgid "ID" -msgstr "ID" +#: ../../include/text.php:1503 ../../include/js_strings.php:81 +msgid "July" +msgstr "juli" -#: ../../Zotlabs/Module/Admin.php:710 -msgid "for channel" -msgstr "for kanalen" +#: ../../include/text.php:1503 ../../include/js_strings.php:82 +msgid "August" +msgstr "august" -#: ../../Zotlabs/Module/Admin.php:710 -msgid "on server" -msgstr "på tjener" +#: ../../include/text.php:1503 ../../include/js_strings.php:83 +msgid "September" +msgstr "september" -#: ../../Zotlabs/Module/Admin.php:712 -msgid "Server" -msgstr "Tjener" +#: ../../include/text.php:1503 ../../include/js_strings.php:84 +msgid "October" +msgstr "oktober" -#: ../../Zotlabs/Module/Admin.php:746 -msgid "" -"By default, unfiltered HTML is allowed in embedded media. This is inherently" -" insecure." -msgstr "" +#: ../../include/text.php:1503 ../../include/js_strings.php:85 +msgid "November" +msgstr "november" -#: ../../Zotlabs/Module/Admin.php:749 -msgid "" -"The recommended setting is to only allow unfiltered HTML from the following " -"sites:" -msgstr "" +#: ../../include/text.php:1503 ../../include/js_strings.php:86 +msgid "December" +msgstr "desember" -#: ../../Zotlabs/Module/Admin.php:750 -msgid "" -"https://youtube.com/
https://www.youtube.com/
https://youtu.be/https://vimeo.com/
https://soundcloud.com/
" -msgstr "" +#: ../../include/text.php:1569 +msgid "Unknown Attachment" +msgstr "Ukjent vedlegg" -#: ../../Zotlabs/Module/Admin.php:751 -msgid "" -"All other embedded content will be filtered, unless " -"embedded content from that site is explicitly blocked." -msgstr "" +#: ../../include/text.php:1571 ../../Zotlabs/Module/Sharedwithme.php:108 +#: ../../Zotlabs/Storage/Browser.php:379 +msgid "Size" +msgstr "Størrelse" -#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1385 -msgid "Security" -msgstr "Sikkerhet" +#: ../../include/text.php:1571 ../../include/feedutils.php:871 +msgid "unknown" +msgstr "ukjent" -#: ../../Zotlabs/Module/Admin.php:758 -msgid "Block public" -msgstr "Blokker offentlig tilgang" +#: ../../include/text.php:1614 +msgid "remove category" +msgstr "fjern kategori" -#: ../../Zotlabs/Module/Admin.php:758 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently authenticated." -msgstr "Kryss av for å blokkere tilgang til alle personlige sider som ellers ville vært offentlig tilgjengelige på dette nettstedet med mindre du er logget inn." +#: ../../include/text.php:1691 +msgid "remove from file" +msgstr "fjern fra fil" -#: ../../Zotlabs/Module/Admin.php:759 -msgid "Set \"Transport Security\" HTTP header" +#: ../../include/text.php:1878 +msgid "Download binary/encrypted content" msgstr "" -#: ../../Zotlabs/Module/Admin.php:760 -msgid "Set \"Content Security Policy\" HTTP header" +#: ../../include/text.php:1936 ../../include/text.php:1945 +#: ../../include/text.php:1972 ../../include/text.php:1981 +#, php-format +msgctxt "noun" +msgid "%d Vote" +msgid_plural "%d Votes" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/text.php:1988 +#, php-format +msgctxt "noun" +msgid "%d Vote in total" +msgid_plural "%d Votes in total" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/text.php:1994 +msgid "Poll has ended" msgstr "" -#: ../../Zotlabs/Module/Admin.php:761 -msgid "Allow communications only from these sites" -msgstr "Tillat kommunikasjon med bare disse nettstedene" +#: ../../include/text.php:1997 +#, php-format +msgid "Poll ends in %s" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:761 -msgid "" -"One site per line. Leave empty to allow communication from anywhere by " -"default" -msgstr "Et nettsted per linje. La det stå tomt for å tillate kommunikasjon med ethvert nettsted som standard" +#: ../../include/text.php:2004 ../../Zotlabs/Lib/ThreadItem.php:453 +msgid "Vote" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:762 -msgid "Block communications from these sites" -msgstr "Blokker kommunikasjon fra disse nettstedene" +#: ../../include/text.php:2159 +msgid "Link to Source" +msgstr "Lenke til kilde" -#: ../../Zotlabs/Module/Admin.php:763 -msgid "Allow communications only from these channels" -msgstr "Tillat kommunikasjon med bare disse kanalene" +#: ../../include/text.php:2181 ../../include/language.php:433 +msgid "default" +msgstr "standard" -#: ../../Zotlabs/Module/Admin.php:763 -msgid "" -"One channel (hash) per line. Leave empty to allow from any channel by " -"default" -msgstr "En kanal (hash) per linje. La det stå tomt for å tillate enhver kanal som standard" +#: ../../include/text.php:2189 +msgid "Page layout" +msgstr "Sidens layout" -#: ../../Zotlabs/Module/Admin.php:764 -msgid "Block communications from these channels" -msgstr "Blokker kommunikasjon fra disse kanalene" +#: ../../include/text.php:2189 +msgid "You can create your own with the layouts tool" +msgstr "Du kan lage din egen med layout-verktøyet" -#: ../../Zotlabs/Module/Admin.php:765 -msgid "Only allow embeds from secure (SSL) websites and links." +#: ../../include/text.php:2200 +msgid "HTML" msgstr "" -#: ../../Zotlabs/Module/Admin.php:766 -msgid "Allow unfiltered embedded HTML content only from these domains" +#: ../../include/text.php:2203 +msgid "Comanche Layout" msgstr "" -#: ../../Zotlabs/Module/Admin.php:766 -msgid "One site per line. By default embedded content is filtered." +#: ../../include/text.php:2208 +msgid "PHP" msgstr "" -#: ../../Zotlabs/Module/Admin.php:767 -msgid "Block embedded HTML from these domains" -msgstr "Blokker innbygget HTML fra disse domenene" +#: ../../include/text.php:2217 +msgid "Page content type" +msgstr "Sidens innholdstype" -#: ../../Zotlabs/Module/Admin.php:785 -msgid "Update has been marked successful" -msgstr "Oppdateringen har blitt merket som en suksess" +#: ../../include/text.php:2340 ../../include/event.php:1347 +#: ../../include/conversation.php:142 +#: ../../Zotlabs/Module/Channel_calendar.php:221 +#: ../../Zotlabs/Module/Like.php:447 ../../Zotlabs/Module/Tagger.php:75 +msgid "event" +msgstr "hendelse" -#: ../../Zotlabs/Module/Admin.php:795 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "Utføring av %s feilet. Sjekk systemlogger." +#: ../../include/text.php:2343 ../../include/conversation.php:168 +#: ../../include/bbcode.php:564 ../../include/markdown.php:205 +#: ../../Zotlabs/Module/Tagger.php:79 ../../Zotlabs/Lib/Activity.php:3546 +msgid "post" +msgstr "innlegg" -#: ../../Zotlabs/Module/Admin.php:798 -#, php-format -msgid "Update %s was successfully applied." -msgstr "Oppdatering %s ble gjennomført med suksess." +#: ../../include/text.php:2345 ../../include/conversation.php:170 +#: ../../Zotlabs/Module/Tagger.php:81 +msgid "comment" +msgstr "kommentar" -#: ../../Zotlabs/Module/Admin.php:802 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "Oppdatering %s returnerte ingen status. Det er ukjent om den ble vellykket." +#: ../../include/text.php:2350 +msgid "activity" +msgstr "aktivitet" -#: ../../Zotlabs/Module/Admin.php:805 -#, php-format -msgid "Update function %s could not be found." -msgstr "Oppdatering av funksjon %s kunne ikke finnes." +#: ../../include/text.php:2353 +msgid "poll" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:821 -msgid "No failed updates." -msgstr "Ingen mislykkede oppdateringer." +#: ../../include/text.php:2466 +msgid "a-z, 0-9, -, and _ only" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:825 -msgid "Failed Updates" -msgstr "Mislykkede oppdateringer" +#: ../../include/text.php:2771 +msgid "Design Tools" +msgstr "Designverktøy" -#: ../../Zotlabs/Module/Admin.php:827 -msgid "Mark success (if update was manually applied)" -msgstr "Marker suksess (hvis oppdateringen ble gjennomført manuelt)" +#: ../../include/text.php:2774 ../../Zotlabs/Module/Blocks.php:154 +msgid "Blocks" +msgstr "Byggeklosser" -#: ../../Zotlabs/Module/Admin.php:828 -msgid "Attempt to execute this update step automatically" -msgstr "Prøv å gjennomføre dette oppdateringstrinnet automatisk" +#: ../../include/text.php:2775 ../../Zotlabs/Module/Menu.php:171 +msgid "Menus" +msgstr "Menyer" -#: ../../Zotlabs/Module/Admin.php:859 -msgid "Queue Statistics" -msgstr "Køstatistikk" +#: ../../include/text.php:2776 ../../Zotlabs/Module/Layouts.php:184 +msgid "Layouts" +msgstr "Layout" -#: ../../Zotlabs/Module/Admin.php:860 -msgid "Total Entries" -msgstr "Totalt antall oppføringer" +#: ../../include/text.php:2777 +msgid "Pages" +msgstr "Sider" -#: ../../Zotlabs/Module/Admin.php:861 -msgid "Priority" -msgstr "Prioritet" +#: ../../include/text.php:2789 +msgid "Import" +msgstr "Importer" -#: ../../Zotlabs/Module/Admin.php:862 -msgid "Destination URL" -msgstr "Mål-URL" +#: ../../include/text.php:2790 +msgid "Import website..." +msgstr "" -#: ../../Zotlabs/Module/Admin.php:863 -msgid "Mark hub permanently offline" -msgstr "Merk hub som permanent offline" +#: ../../include/text.php:2791 +msgid "Select folder to import" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:864 -msgid "Empty queue for this hub" -msgstr "Tøm køen for denne hubben" +#: ../../include/text.php:2792 +msgid "Import from a zipped folder:" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:865 -msgid "Last known contact" -msgstr "Siste kjente kontakt" +#: ../../include/text.php:2793 +msgid "Import from cloud files:" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:901 -#, php-format -msgid "%s account blocked/unblocked" -msgid_plural "%s account blocked/unblocked" -msgstr[0] "%s konto blokkert/ikke blokkert lenger" -msgstr[1] "%s kontoer blokkert/ikke blokkert lenger" +#: ../../include/text.php:2794 +msgid "/cloud/channel/path/to/folder" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:908 -#, php-format -msgid "%s account deleted" -msgid_plural "%s accounts deleted" -msgstr[0] "%s konto slettet" -msgstr[1] "%s kontoer slettet" +#: ../../include/text.php:2795 +msgid "Enter path to website files" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:944 -msgid "Account not found" -msgstr "Kontoen ble ikke funnet" +#: ../../include/text.php:2796 +msgid "Select folder" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:955 -#, php-format -msgid "Account '%s' deleted" -msgstr "Kontoen '%s' slettet" +#: ../../include/text.php:2797 +msgid "Export website..." +msgstr "" -#: ../../Zotlabs/Module/Admin.php:963 -#, php-format -msgid "Account '%s' blocked" -msgstr "Kontoen '%s' blokkert" +#: ../../include/text.php:2798 +msgid "Export to a zip file" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:971 -#, php-format -msgid "Account '%s' unblocked" -msgstr "Kontoen '%s' er ikke blokkert lenger" +#: ../../include/text.php:2799 +msgid "website.zip" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:1031 ../../Zotlabs/Module/Admin.php:1044 -#: ../../include/widgets.php:1383 -msgid "Accounts" -msgstr "Kontoer" +#: ../../include/text.php:2800 +msgid "Enter a name for the zip file." +msgstr "" -#: ../../Zotlabs/Module/Admin.php:1033 ../../Zotlabs/Module/Admin.php:1212 -msgid "select all" -msgstr "velg alle" +#: ../../include/text.php:2801 +msgid "Export to cloud files" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:1034 -msgid "Registrations waiting for confirm" +#: ../../include/text.php:2802 +msgid "/path/to/export/folder" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1035 -msgid "Request date" -msgstr "Dato for forespørsel" - -#: ../../Zotlabs/Module/Admin.php:1036 -msgid "No registrations." -msgstr "Ingen registreringer." - -#: ../../Zotlabs/Module/Admin.php:1038 -msgid "Deny" -msgstr "Avslå" - -#: ../../Zotlabs/Module/Admin.php:1048 ../../include/group.php:267 -msgid "All Channels" -msgstr "Alle kanaler" +#: ../../include/text.php:2803 +msgid "Enter a path to a cloud files destination." +msgstr "" -#: ../../Zotlabs/Module/Admin.php:1049 -msgid "Register date" -msgstr "Registreringsdato" +#: ../../include/text.php:2804 +msgid "Specify folder" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:1050 -msgid "Last login" -msgstr "Siste innlogging" +#: ../../include/opengraph.php:56 +#, php-format +msgid "This is the home page of %s." +msgstr "" -#: ../../Zotlabs/Module/Admin.php:1051 -msgid "Expires" -msgstr "Utløper" +#: ../../include/event.php:33 ../../include/event.php:128 +msgid "l F d, Y \\@ g:i A" +msgstr "l F d, Y \\@ g:i A" -#: ../../Zotlabs/Module/Admin.php:1052 -msgid "Service Class" -msgstr "Tjenesteklasse" +#: ../../include/event.php:41 +msgid "Starts:" +msgstr "Starter:" -#: ../../Zotlabs/Module/Admin.php:1054 -msgid "" -"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" -" on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Valgte kontoer vil bli slettet!\\n\\nAlt disse kontoene har lagt inn på dette nettstedet vil bli slettet permanent!\\n\\nEr du sikker på at du vil slette disse valgte kontoene?" +#: ../../include/event.php:51 +msgid "Finishes:" +msgstr "Slutter:" -#: ../../Zotlabs/Module/Admin.php:1055 -msgid "" -"The account {0} will be deleted!\\n\\nEverything this account has posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Kontoen {0} vl bli slettet!\\n\\nAlt denne kontoen har lagt inn på dette nettstedet vil bli slettet permanent!\\n\\nEr du sikker på at du vil slette denne kontoen?" +#: ../../include/event.php:63 ../../include/event.php:153 +#: ../../include/channel.php:1625 ../../Zotlabs/Module/Directory.php:353 +msgid "Location:" +msgstr "Plassering:" -#: ../../Zotlabs/Module/Admin.php:1091 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "%s kanal er sensurert/ikke sensurert lenger" -msgstr[1] "%s kanaler er sensurert/ikke sensurert lenger" +#: ../../include/event.php:128 +msgid "l F d, Y" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:1100 -#, php-format -msgid "%s channel code allowed/disallowed" -msgid_plural "%s channels code allowed/disallowed" -msgstr[0] "%s kanal med kode tillatt/ikke tillatt" -msgstr[1] "%s kanaler med kode tillatt/ikke tillatt" +#: ../../include/event.php:132 +msgid "Start:" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:1106 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "%s kanal slettet" -msgstr[1] "%s kanaler slettet" +#: ../../include/event.php:136 +msgid "End:" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:1126 -msgid "Channel not found" -msgstr "Kanalen ble ikke funnet" +#: ../../include/event.php:1193 +msgid "This event has been added to your calendar." +msgstr "Denne hendelsen er lagt til i din kalender." -#: ../../Zotlabs/Module/Admin.php:1136 -#, php-format -msgid "Channel '%s' deleted" -msgstr "Kanalen '%s' er slettet" +#: ../../include/event.php:1426 +msgid "Not specified" +msgstr "Ikke spesifisert" -#: ../../Zotlabs/Module/Admin.php:1148 -#, php-format -msgid "Channel '%s' censored" -msgstr "Kanalen '%s' er sensurert" +#: ../../include/event.php:1427 +msgid "Needs Action" +msgstr "Trenger handling" -#: ../../Zotlabs/Module/Admin.php:1148 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "Kanalen '%s' er ikke sensurert lenger" +#: ../../include/event.php:1428 +msgid "Completed" +msgstr "Ferdig" -#: ../../Zotlabs/Module/Admin.php:1159 -#, php-format -msgid "Channel '%s' code allowed" -msgstr "Kanal '%s' kode tillatt" +#: ../../include/event.php:1429 +msgid "In Process" +msgstr "Igang" -#: ../../Zotlabs/Module/Admin.php:1159 -#, php-format -msgid "Channel '%s' code disallowed" -msgstr "Kanal '%s' kode ikke tillatt" +#: ../../include/event.php:1430 +msgid "Cancelled" +msgstr "Avbrutt" -#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1384 -msgid "Channels" -msgstr "Kanaler" +#: ../../include/event.php:1511 ../../include/connections.php:752 +#: ../../Zotlabs/Module/Cdav.php:1381 ../../Zotlabs/Module/Connedit.php:741 +msgid "Mobile" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:1214 -msgid "Censor" -msgstr "Sensurer" +#: ../../include/event.php:1512 ../../include/connections.php:753 +#: ../../Zotlabs/Widget/Notifications.php:43 ../../Zotlabs/Module/Cdav.php:1382 +#: ../../Zotlabs/Module/Connedit.php:742 +msgid "Home" +msgstr "Hjem" -#: ../../Zotlabs/Module/Admin.php:1215 -msgid "Uncensor" -msgstr "Ikke sensurer lenger" +#: ../../include/event.php:1513 ../../include/connections.php:754 +msgid "Home, Voice" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:1216 -msgid "Allow Code" -msgstr "Tillat kode" +#: ../../include/event.php:1514 ../../include/connections.php:755 +msgid "Home, Fax" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:1217 -msgid "Disallow Code" -msgstr "Ikke tillat kode" +#: ../../include/event.php:1515 ../../include/connections.php:756 +#: ../../Zotlabs/Module/Cdav.php:1383 ../../Zotlabs/Module/Connedit.php:743 +msgid "Work" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1611 -msgid "Channel" -msgstr "Kanal" +#: ../../include/event.php:1516 ../../include/connections.php:757 +msgid "Work, Voice" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:1222 -msgid "UID" -msgstr "UID" +#: ../../include/event.php:1517 ../../include/connections.php:758 +msgid "Work, Fax" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:1226 -msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Valgte kanaler vil bli slettet!\\n\\nAlt innhold som er lagt inn i disse kanalene på dette nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette disse kanalene med alt innhold?" +#: ../../include/event.php:1518 ../../include/event.php:1525 +#: ../../include/selectors.php:64 ../../include/selectors.php:81 +#: ../../include/selectors.php:119 ../../include/selectors.php:155 +#: ../../include/connections.php:759 ../../include/connections.php:766 +#: ../../Zotlabs/Module/Cdav.php:1384 ../../Zotlabs/Module/Connedit.php:744 +#: ../../Zotlabs/Access/PermissionRoles.php:360 +msgid "Other" +msgstr "Annen" -#: ../../Zotlabs/Module/Admin.php:1227 -msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Kanalen {0} vil bli slettet!\\n\\nAlt innhold som er lagt inn i denne kanalen på dettet nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette denne kanalen med alt innhold?" +#: ../../include/features.php:55 ../../Zotlabs/Module/Admin/Features.php:55 +#: ../../Zotlabs/Module/Admin/Features.php:56 +#: ../../Zotlabs/Module/Settings/Features.php:38 +msgid "Off" +msgstr "Av" -#: ../../Zotlabs/Module/Admin.php:1284 -#, php-format -msgid "Plugin %s disabled." -msgstr "Tilleggsfunksjonen %s er avskrudd." +#: ../../include/features.php:55 ../../Zotlabs/Module/Admin/Features.php:55 +#: ../../Zotlabs/Module/Admin/Features.php:56 +#: ../../Zotlabs/Module/Settings/Features.php:38 +msgid "On" +msgstr "På" -#: ../../Zotlabs/Module/Admin.php:1288 -#, php-format -msgid "Plugin %s enabled." -msgstr "Tilleggsfunksjonen %s er påskrudd." +#: ../../include/features.php:82 ../../include/nav.php:466 +#: ../../include/nav.php:469 ../../Zotlabs/Lib/Apps.php:350 +msgid "Calendar" +msgstr "Kalender" -#: ../../Zotlabs/Module/Admin.php:1298 ../../Zotlabs/Module/Admin.php:1585 -msgid "Disable" -msgstr "Skru av" +#: ../../include/features.php:86 +msgid "Start calendar week on Monday" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:1301 ../../Zotlabs/Module/Admin.php:1587 -msgid "Enable" -msgstr "Skru på" +#: ../../include/features.php:87 +msgid "Default is Sunday" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:1330 ../../Zotlabs/Module/Admin.php:1420 -#: ../../include/widgets.php:1387 -msgid "Plugins" -msgstr "Tilleggsfunksjoner" +#: ../../include/features.php:94 +msgid "Event Timezone Selection" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:1331 ../../Zotlabs/Module/Admin.php:1614 -msgid "Toggle" -msgstr "Skru av og på" +#: ../../include/features.php:95 +msgid "Allow event creation in timezones other than your own." +msgstr "" -#: ../../Zotlabs/Module/Admin.php:1332 ../../Zotlabs/Module/Admin.php:1615 -#: ../../Zotlabs/Lib/Apps.php:215 ../../include/widgets.php:638 -#: ../../include/nav.php:208 -msgid "Settings" -msgstr "Innstillinger" +#: ../../include/features.php:104 +msgid "Channel Home" +msgstr "Kanalhjem" -#: ../../Zotlabs/Module/Admin.php:1339 ../../Zotlabs/Module/Admin.php:1624 -msgid "Author: " -msgstr "Forfatter:" +#: ../../include/features.php:108 +msgid "Search by Date" +msgstr "Søk etter dato" -#: ../../Zotlabs/Module/Admin.php:1340 ../../Zotlabs/Module/Admin.php:1625 -msgid "Maintainer: " -msgstr "Vedlikeholder:" +#: ../../include/features.php:109 +msgid "Ability to select posts by date ranges" +msgstr "Mulighet for å velge innlegg etter datoområde" -#: ../../Zotlabs/Module/Admin.php:1341 -msgid "Minimum project version: " -msgstr "Minimum prosjektversjon:" +#: ../../include/features.php:116 +msgid "Tag Cloud" +msgstr "Merkelappsky" -#: ../../Zotlabs/Module/Admin.php:1342 -msgid "Maximum project version: " -msgstr "Maksimum prosjektversjon:" +#: ../../include/features.php:117 +msgid "Provide a personal tag cloud on your channel page" +msgstr "Tilby en personlig merkelappsky på din kanalside" -#: ../../Zotlabs/Module/Admin.php:1343 -msgid "Minimum PHP version: " -msgstr "Minimum PHP-versjon:" +#: ../../include/features.php:124 ../../include/features.php:358 +msgid "Use blog/list mode" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:1344 -msgid "Requires: " -msgstr "Krever:" +#: ../../include/features.php:125 ../../include/features.php:359 +msgid "Comments will be displayed separately" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:1345 ../../Zotlabs/Module/Admin.php:1425 -msgid "Disabled - version incompatibility" -msgstr "Skrudd av - versjonsinkompatibilitet" +#: ../../include/features.php:137 +msgid "Connection Filtering" +msgstr "Filtrer forbindelser" -#: ../../Zotlabs/Module/Admin.php:1394 -msgid "Enter the public git repository URL of the plugin repo." +#: ../../include/features.php:138 +msgid "Filter incoming posts from connections based on keywords/content" msgstr "" +"Filtrer innkommende innlegg fra forbindelser basert på nøkkelord/innhold" -#: ../../Zotlabs/Module/Admin.php:1395 -msgid "Plugin repo git URL" +#: ../../include/features.php:146 +msgid "Conversation" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1396 -msgid "Custom repo name" +#: ../../include/features.php:158 +msgid "Emoji Reactions" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1396 -msgid "(optional)" +#: ../../include/features.php:159 +msgid "Add emoji reaction ability to posts" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1397 -msgid "Download Plugin Repo" +#: ../../include/features.php:166 +msgid "Dislike Posts" +msgstr "Mislik innlegg" + +#: ../../include/features.php:167 +msgid "Ability to dislike posts/comments" +msgstr "Mulighet til å mislike innlegg/kommentarer" + +#: ../../include/features.php:174 +msgid "Star Posts" +msgstr "Stjerneinnlegg" + +#: ../../include/features.php:175 +msgid "Ability to mark special posts with a star indicator" +msgstr "Mulighet til å merke spesielle innlegg med en stjerne" + +#: ../../include/features.php:182 +msgid "Reply on comment" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1404 -msgid "Install new repo" +#: ../../include/features.php:183 +msgid "Ability to reply on selected comment" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:330 -msgid "Install" -msgstr "Installer" +#: ../../include/features.php:192 ../../Zotlabs/Lib/Apps.php:351 +msgid "Directory" +msgstr "Katalog" -#: ../../Zotlabs/Module/Admin.php:1427 -msgid "Manage Repos" +#: ../../include/features.php:196 +msgid "Advanced Directory Search" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1428 -msgid "Installed Plugin Repositories" +#: ../../include/features.php:197 +msgid "Allows creation of complex directory search queries" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1429 -msgid "Install a New Plugin Repository" +#: ../../include/features.php:206 +msgid "Editor" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:77 -#: ../../Zotlabs/Module/Settings.php:616 ../../Zotlabs/Lib/Apps.php:330 -msgid "Update" -msgstr "Oppdater" +#: ../../include/features.php:210 +msgid "Post Categories" +msgstr "Innleggskategorier" -#: ../../Zotlabs/Module/Admin.php:1436 -msgid "Switch branch" -msgstr "" +#: ../../include/features.php:211 +msgid "Add categories to your posts" +msgstr "Legg kategorier til dine innlegg" -#: ../../Zotlabs/Module/Admin.php:1550 -msgid "No themes found." -msgstr "Ingen temaer er funnet." +#: ../../include/features.php:218 +msgid "Large Photos" +msgstr "Store bilder" -#: ../../Zotlabs/Module/Admin.php:1606 -msgid "Screenshot" -msgstr "Skjermbilde" +#: ../../include/features.php:219 +msgid "" +"Include large (1024px) photo thumbnails in posts. If not enabled, use small " +"(640px) photo thumbnails" +msgstr "" +"Inkluder store (1024px) småbilder i innlegg. Hvis denne ikke er påskrudd," +" bruk små (640px) småbilder." -#: ../../Zotlabs/Module/Admin.php:1613 ../../Zotlabs/Module/Admin.php:1647 -#: ../../include/widgets.php:1388 -msgid "Themes" -msgstr "Temaer" +#: ../../include/features.php:226 +msgid "Even More Encryption" +msgstr "Enda mer kryptering" -#: ../../Zotlabs/Module/Admin.php:1652 -msgid "[Experimental]" -msgstr "[Eksperimentelt]" +#: ../../include/features.php:227 +msgid "" +"Allow optional encryption of content end-to-end with a shared secret key" +msgstr "" +"Tillat valgfri kryptering av innhold ende-til-ende via en delt hemmelig nøkkel" -#: ../../Zotlabs/Module/Admin.php:1653 -msgid "[Unsupported]" -msgstr "[Ingen støtte]" +#: ../../include/features.php:234 +msgid "Disable Comments" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:1677 -msgid "Log settings updated." -msgstr "Logginnstillinger er oppdatert." +#: ../../include/features.php:235 +msgid "Provide the option to disable comments for a post" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1409 -#: ../../include/widgets.php:1419 -msgid "Logs" -msgstr "Logger" +#: ../../include/features.php:242 +msgid "Delayed Posting" +msgstr "Tidfest publisering" -#: ../../Zotlabs/Module/Admin.php:1734 -msgid "Clear" -msgstr "Tøm" +#: ../../include/features.php:243 +msgid "Allow posts to be published at a later date" +msgstr "Tillat innlegg å bli publisert på et senere tidspunkt" -#: ../../Zotlabs/Module/Admin.php:1740 -msgid "Debugging" -msgstr "Feilsøking" +#: ../../include/features.php:250 +msgid "Content Expiration" +msgstr "Innholdet utløper" -#: ../../Zotlabs/Module/Admin.php:1741 -msgid "Log file" -msgstr "Loggfil" +#: ../../include/features.php:251 +msgid "Remove posts/comments and/or private messages at a future time" +msgstr "" +"Fjern innlegg/kommentarer og/eller private meldinger på et angitt tidspunkt i" +" fremtiden" + +#: ../../include/features.php:258 +msgid "Suppress Duplicate Posts/Comments" +msgstr "Forhindre duplikat av innlegg/kommentarer" -#: ../../Zotlabs/Module/Admin.php:1741 +#: ../../include/features.php:259 msgid "" -"Must be writable by web server. Relative to your top-level webserver " -"directory." +"Prevent posts with identical content to be published with less than two " +"minutes in between submissions." msgstr "" +"Forhindre innlegg med identisk innhold fra å bli publisert hvis det er mindre" +" enn to minutter mellom innsendingene." -#: ../../Zotlabs/Module/Admin.php:1742 -msgid "Log level" -msgstr "Loggnivå" +#: ../../include/features.php:266 +msgid "Auto-save drafts of posts and comments" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:2028 -msgid "New Profile Field" -msgstr "Nytt profilfelt" +#: ../../include/features.php:267 +msgid "" +"Automatically saves post and comment drafts in local browser storage to help " +"prevent accidental loss of compositions" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 -msgid "Field nickname" -msgstr "Feltets kallenavn" +#: ../../include/features.php:276 +msgid "Manage" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 -msgid "System name of field" -msgstr "Systemnavnet til feltet" +#: ../../include/features.php:280 +msgid "Navigation Channel Select" +msgstr "Navigasjon kanalvalg" -#: ../../Zotlabs/Module/Admin.php:2030 ../../Zotlabs/Module/Admin.php:2050 -msgid "Input type" -msgstr "Inndata-type" +#: ../../include/features.php:281 +msgid "Change channels directly from within the navigation dropdown menu" +msgstr "Endre kanaler direkte fra navigasjonsmenyen" -#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 -msgid "Field Name" -msgstr "Feltnavn" +#: ../../include/features.php:290 ../../Zotlabs/Widget/Notifications.php:23 +#: ../../Zotlabs/Module/Connections.php:338 +msgid "Network" +msgstr "Nettverk" -#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 -msgid "Label on profile pages" -msgstr "Merkelapp på profilsider" +#: ../../include/features.php:294 +msgid "Events Filter" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 -msgid "Help text" -msgstr "Hjelpetekst" +#: ../../include/features.php:295 +msgid "Ability to display only events" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 -msgid "Additional info (optional)" -msgstr "Tilleggsinformasjon (valgfritt)" +#: ../../include/features.php:302 +msgid "Polls Filter" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:2042 -msgid "Field definition not found" -msgstr "Feltdefinisjonen ble ikke funnet" +#: ../../include/features.php:303 +msgid "Ability to display only polls" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:2048 -msgid "Edit Profile Field" -msgstr "Endre profilfelt" +#: ../../include/features.php:310 ../../Zotlabs/Widget/Savedsearch.php:89 +msgid "Saved Searches" +msgstr "Lagrede søk" -#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1390 -msgid "Profile Fields" -msgstr "" +#: ../../include/features.php:311 +msgid "Save search terms for re-use" +msgstr "Lagre søkeuttrykk for senere bruk" -#: ../../Zotlabs/Module/Admin.php:2107 -msgid "Basic Profile Fields" -msgstr "" +#: ../../include/features.php:318 ../../include/contact_widgets.php:53 +#: ../../Zotlabs/Widget/Activity_filter.php:196 +#: ../../Zotlabs/Widget/Filer.php:33 +msgid "Saved Folders" +msgstr "Lagrede mapper" -#: ../../Zotlabs/Module/Admin.php:2108 -msgid "Advanced Profile Fields" -msgstr "" +#: ../../include/features.php:319 +msgid "Ability to file posts under folders" +msgstr "Mulighet til å sortere innlegg i mapper" -#: ../../Zotlabs/Module/Admin.php:2108 -msgid "(In addition to basic fields)" +#: ../../include/features.php:326 +msgid "Alternate Stream Order" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2110 -msgid "All available fields" +#: ../../include/features.php:327 +msgid "" +"Ability to order the stream by last post date, last comment date or " +"unthreaded activities" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2111 -msgid "Custom Fields" +#: ../../include/features.php:334 +msgid "Contact Filter" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2115 -msgid "Create Custom Field" +#: ../../include/features.php:335 +msgid "Ability to display only posts of a selected contact" msgstr "" -#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 -msgid "App installed." -msgstr "App installert." - -#: ../../Zotlabs/Module/Appman.php:46 -msgid "Malformed app." -msgstr "Feil oppsett for app-en." - -#: ../../Zotlabs/Module/Appman.php:104 -msgid "Embed code" -msgstr "Innbyggingskode" - -#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 -msgid "Edit App" -msgstr "Endre app" +#: ../../include/features.php:342 +msgid "Forum Filter" +msgstr "" -#: ../../Zotlabs/Module/Appman.php:110 -msgid "Create App" -msgstr "Lag app" +#: ../../include/features.php:343 +msgid "Ability to display only posts of a specific forum" +msgstr "" -#: ../../Zotlabs/Module/Appman.php:115 -msgid "Name of app" -msgstr "Navn på app" +#: ../../include/features.php:350 +msgid "Personal Posts Filter" +msgstr "" -#: ../../Zotlabs/Module/Appman.php:116 -msgid "Location (URL) of app" -msgstr "Plassering (URL) til app" +#: ../../include/features.php:351 +msgid "Ability to display only posts that you've interacted on" +msgstr "" -#: ../../Zotlabs/Module/Appman.php:118 -msgid "Photo icon URL" -msgstr "Bildeikon URL" +#: ../../include/features.php:368 ../../include/nav.php:447 +#: ../../Zotlabs/Widget/Channel_activities.php:93 +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:349 +msgid "Photos" +msgstr "Bilder" -#: ../../Zotlabs/Module/Appman.php:118 -msgid "80 x 80 pixels - optional" -msgstr "80 x80 pixler - valgfritt" +#: ../../include/features.php:372 +msgid "Photo Location" +msgstr "Bildeplassering" -#: ../../Zotlabs/Module/Appman.php:119 -msgid "Categories (optional, comma separated list)" +#: ../../include/features.php:373 +msgid "If location data is available on uploaded photos, link this to a map." msgstr "" +"Hvis plasseringsdata er tilgjengelige i opplastede bilder, plasser dette på" +" et kart." -#: ../../Zotlabs/Module/Appman.php:120 -msgid "Version ID" -msgstr "Versjons-ID" - -#: ../../Zotlabs/Module/Appman.php:121 -msgid "Price of app" -msgstr "Pris på app" +#: ../../include/features.php:380 +msgid "Flag Adult Photos" +msgstr "" -#: ../../Zotlabs/Module/Appman.php:122 -msgid "Location (URL) to purchase app" -msgstr "Plassering (URL) for å kjøpe app" +#: ../../include/features.php:381 +msgid "" +"Provide photo edit option to hide inappropriate photos from default album " +"view" +msgstr "" -#: ../../Zotlabs/Module/Rbmark.php:94 -msgid "Select a bookmark folder" -msgstr "Velg en bokmerkemappe" +#: ../../include/features.php:390 ../../Zotlabs/Module/Contactedit.php:444 +#: ../../Zotlabs/Lib/Apps.php:367 +msgid "Profiles" +msgstr "" -#: ../../Zotlabs/Module/Rbmark.php:99 -msgid "Save Bookmark" -msgstr "Lagre bokmerke" +#: ../../include/features.php:394 +msgid "Advanced Profiles" +msgstr "Avanserte profiler" -#: ../../Zotlabs/Module/Rbmark.php:100 -msgid "URL of bookmark" -msgstr "URL-en til bokmerket" +#: ../../include/features.php:395 +msgid "Additional profile sections and selections" +msgstr "Ytterlige seksjoner og utvalg til profilen" -#: ../../Zotlabs/Module/Rbmark.php:105 -msgid "Or enter new bookmark folder name" -msgstr "Eller skriv nytt navn på bokmerkemappe" +#: ../../include/features.php:402 +msgid "Profile Import/Export" +msgstr "Profil-import/-eksport" -#: ../../Zotlabs/Module/Register.php:49 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "Antallet daglige registreringer ved nettstedet er overskredet. Vær vennlig å prøve igjen imorgen." +#: ../../include/features.php:403 +msgid "Save and load profile details across sites/channels" +msgstr "Lagre og åpne profildetaljer på tvers av nettsteder/kanaler" -#: ../../Zotlabs/Module/Register.php:55 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Vennligst angi at tjenesteavtalen er akseptert. Registrering mislyktes." +#: ../../include/features.php:410 +msgid "Multiple Profiles" +msgstr "Flere profiler" -#: ../../Zotlabs/Module/Register.php:89 -msgid "Passwords do not match." -msgstr "Passordene er ikke like." +#: ../../include/features.php:411 +msgid "Ability to create multiple profiles" +msgstr "Mulig å lage flere profiler" -#: ../../Zotlabs/Module/Register.php:131 +#: ../../include/security.php:630 msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "Registreringen er vellykket. Vennligst sjekk e-posten din for å bekrefte opprettelsen." - -#: ../../Zotlabs/Module/Register.php:137 -msgid "Your registration is pending approval by the site owner." -msgstr "Din registrering venter på godkjenning av nettstedets eier." - -#: ../../Zotlabs/Module/Register.php:140 -msgid "Your registration can not be processed." -msgstr "Din registrering kan ikke behandles." - -#: ../../Zotlabs/Module/Register.php:184 -msgid "Registration on this hub is disabled." -msgstr "Registrering ved dette nettstedet er skrudd av." +"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 "" +"Skjemaets sikkerhetspollett var ikke gyldig. Dette skjedde antakelig fordi" +" skjemaet har vært åpnet for lenge (>3 timer) før det ble sendt inn." -#: ../../Zotlabs/Module/Register.php:193 -msgid "Registration on this hub is by approval only." -msgstr "Registrering ved dette nettstedet skjer på godkjenning." +#: ../../include/js_strings.php:5 +msgid "Delete this item?" +msgstr "Slett dette elementet?" -#: ../../Zotlabs/Module/Register.php:194 -msgid "Register at another affiliated hub." -msgstr "Registrer ved et annet tilsluttet nettsted." +#: ../../include/js_strings.php:6 +msgid "Item deleted" +msgstr "" -#: ../../Zotlabs/Module/Register.php:204 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Dette nettstedet har overskredet antallet tillate kontoregistreringer per dag. Vennligst prøv igjen imorgen." +#: ../../include/js_strings.php:7 ../../Zotlabs/Module/Photos.php:1103 +#: ../../Zotlabs/Module/Photos.php:1219 ../../Zotlabs/Lib/ThreadItem.php:834 +msgid "Comment" +msgstr "Kommentar" -#: ../../Zotlabs/Module/Register.php:215 -msgid "Terms of Service" -msgstr "Tjenesteavtale" +#: ../../include/js_strings.php:8 ../../Zotlabs/Lib/ThreadItem.php:543 +#, php-format +msgid "%s show all" +msgstr "" -#: ../../Zotlabs/Module/Register.php:221 +#: ../../include/js_strings.php:9 #, php-format -msgid "I accept the %s for this website" -msgstr "Jeg godtar %s for dette nettstedet" +msgid "%s show less" +msgstr "" -#: ../../Zotlabs/Module/Register.php:223 +#: ../../include/js_strings.php:10 #, php-format -msgid "I am over 13 years of age and accept the %s for this website" -msgstr "Jeg er over 13 år gammel og aksepterer %s for dette nettstedet." +msgid "%s expand" +msgstr "" -#: ../../Zotlabs/Module/Register.php:227 -msgid "Your email address" -msgstr "Din e-postadresse" +#: ../../include/js_strings.php:11 +#, php-format +msgid "%s collapse" +msgstr "" -#: ../../Zotlabs/Module/Register.php:228 -msgid "Choose a password" -msgstr "Velg et passord" +#: ../../include/js_strings.php:12 +msgid "Password too short" +msgstr "Passordet er for kort" -#: ../../Zotlabs/Module/Register.php:229 -msgid "Please re-enter your password" -msgstr "Vennligst skriv ditt passord en gang til" +#: ../../include/js_strings.php:13 ../../Zotlabs/Module/Register.php:161 +msgid "Passwords do not match" +msgstr "Passordene er ikke like" -#: ../../Zotlabs/Module/Register.php:230 -msgid "Please enter your invitation code" -msgstr "Vennligst skriv din invitasjonskode" +#: ../../include/js_strings.php:14 +msgid "everybody" +msgstr "alle" -#: ../../Zotlabs/Module/Register.php:236 -msgid "no" -msgstr "nei" +#: ../../include/js_strings.php:15 +msgid "Secret Passphrase" +msgstr "Hemmelig passordsetning" -#: ../../Zotlabs/Module/Register.php:236 -msgid "yes" -msgstr "ja" +#: ../../include/js_strings.php:16 +msgid "Passphrase hint" +msgstr "Hint om passordsetning" -#: ../../Zotlabs/Module/Register.php:250 -msgid "Membership on this site is by invitation only." -msgstr "Medlemskap ved dette nettstedet skjer kun via invitasjon." +#: ../../include/js_strings.php:17 +msgid "Notice: Permissions have changed but have not yet been submitted." +msgstr "" +"Varsel: Tillatelser har blitt endret, men de har ennå ikke blitt sendt inn." -#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:147 -#: ../../boot.php:1685 -msgid "Register" -msgstr "Registrer" +#: ../../include/js_strings.php:18 +msgid "close all" +msgstr "Lukk alle" -#: ../../Zotlabs/Module/Register.php:262 -msgid "Proceed to create your first channel" -msgstr "Gå videre for å lage din første kanal" +#: ../../include/js_strings.php:19 +msgid "Nothing new here" +msgstr "Ikke noe nytt her" -#: ../../Zotlabs/Module/Regmod.php:15 -msgid "Please login." -msgstr "Vennligst logg inn." +#: ../../include/js_strings.php:20 +msgid "Rate This Channel (this is public)" +msgstr "Vurder denne kanalen (dette er offentlig)" -#: ../../Zotlabs/Module/Removeaccount.php:34 -msgid "" -"Account removals are not allowed within 48 hours of changing the account " -"password." -msgstr "Sletting av kontoer er ikke tillatt innen 48 timer etter endring av kontopassordet." +#: ../../include/js_strings.php:21 +msgid "Rating" +msgstr "Vurdering" -#: ../../Zotlabs/Module/Removeaccount.php:56 -msgid "Remove This Account" -msgstr "Slett denne kontoen" +#: ../../include/js_strings.php:22 +msgid "Describe (optional)" +msgstr "Beskriv (valgfritt)" -#: ../../Zotlabs/Module/Removeaccount.php:57 -#: ../../Zotlabs/Module/Removeme.php:59 -msgid "WARNING: " -msgstr "ADVARSEL:" +#: ../../include/js_strings.php:24 +msgid "Please enter a link URL" +msgstr "Vennligst skriv inn en lenke URL:" -#: ../../Zotlabs/Module/Removeaccount.php:57 -msgid "" -"This account and all its channels will be completely removed from the " -"network. " -msgstr "Denne kontoen og alle dens kanaler vil bli fullstendig fjernet fra nettverket." +#: ../../include/js_strings.php:25 +msgid "Unsaved changes. Are you sure you wish to leave this page?" +msgstr "" +"Endringene er ikke lagret. Er du sikker på at du ønsker å forlate denne siden?" -#: ../../Zotlabs/Module/Removeaccount.php:57 -#: ../../Zotlabs/Module/Removeme.php:59 -msgid "This action is permanent and can not be undone!" -msgstr "Denne handlingen er permanent og kan ikke angres!" +#: ../../include/js_strings.php:26 ../../Zotlabs/Module/Pubsites.php:52 +#: ../../Zotlabs/Module/Cdav.php:1014 ../../Zotlabs/Module/Profiles.php:480 +#: ../../Zotlabs/Module/Profiles.php:751 ../../Zotlabs/Module/Locs.php:121 +msgid "Location" +msgstr "Plassering" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:60 -msgid "Please enter your password for verification:" -msgstr "Vennligst skriv ditt passord for å få bekreftelse:" +#: ../../include/js_strings.php:27 +msgid "lovely" +msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:59 -msgid "" -"Remove this account, all its channels and all its channel clones from the " -"network" -msgstr "Slett denne kontoen, alle dens kanaler og alle dens kanalkloner fra dette nettverket" +#: ../../include/js_strings.php:28 +msgid "wonderful" +msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:59 -msgid "" -"By default only the instances of the channels located on this hub will be " -"removed from the network" -msgstr "Som standard vil bare forekomster av kanalene lokalisert på denne hubben bli slettet fra nettverket" +#: ../../include/js_strings.php:29 +msgid "fantastic" +msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:60 -#: ../../Zotlabs/Module/Settings.php:705 -msgid "Remove Account" -msgstr "Slett konto" +#: ../../include/js_strings.php:30 +msgid "great" +msgstr "" -#: ../../Zotlabs/Module/Removeme.php:33 +#: ../../include/js_strings.php:31 msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." -msgstr "Fjerning av kanaler er ikke tillatt innen 48 timer etter endring av kontopassordet." +"Your chosen nickname was either already taken or not valid. Please use our " +"suggestion (" +msgstr "" -#: ../../Zotlabs/Module/Removeme.php:58 -msgid "Remove This Channel" -msgstr "Fjern denne kanalen" +#: ../../include/js_strings.php:32 +msgid ") or enter a new one." +msgstr "" -#: ../../Zotlabs/Module/Removeme.php:59 -msgid "This channel will be completely removed from the network. " -msgstr "Denne kanalen vil bli fullstendig fjernet fra nettverket." +#: ../../include/js_strings.php:33 +msgid "Thank you, this nickname is valid." +msgstr "" -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "Remove this channel and all its clones from the network" -msgstr "Fjern denne kanalen og alle dens kloner fra nettverket" +#: ../../include/js_strings.php:34 +msgid "A channel name is required." +msgstr "" -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "" -"By default only the instance of the channel located on this hub will be " -"removed from the network" -msgstr "Som standard vil bare forekomsten av denne kanalen lokalisert på denne hubben bli fjernet fra nettverket" +#: ../../include/js_strings.php:35 +msgid "This is a " +msgstr "" -#: ../../Zotlabs/Module/Removeme.php:62 ../../Zotlabs/Module/Settings.php:1124 -msgid "Remove Channel" -msgstr "Fjern kanal" +#: ../../include/js_strings.php:36 +msgid " channel name" +msgstr "" -#: ../../Zotlabs/Module/Rmagic.php:44 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Vi støtte på et problem under innloggingen med din OpenID. Vennligst sjekk at ID-en er stavet riktig." +#: ../../include/js_strings.php:37 +msgid "Back to reply" +msgstr "" -#: ../../Zotlabs/Module/Rmagic.php:44 -msgid "The error message was:" -msgstr "Feilmeldingen var:" +#: ../../include/js_strings.php:38 +msgid "Pinned" +msgstr "" -#: ../../Zotlabs/Module/Rmagic.php:48 -msgid "Authentication failed." -msgstr "Autentisering mislyktes." +#: ../../include/js_strings.php:39 ../../Zotlabs/Lib/ThreadItem.php:480 +msgid "Pin to the top" +msgstr "" -#: ../../Zotlabs/Module/Rmagic.php:88 -msgid "Remote Authentication" -msgstr "Fjernautentisering" +#: ../../include/js_strings.php:40 ../../Zotlabs/Widget/Pinned.php:158 +#: ../../Zotlabs/Lib/ThreadItem.php:480 +msgid "Unpin from the top" +msgstr "" -#: ../../Zotlabs/Module/Rmagic.php:89 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Skriv din kanaladresse (for eksempel channel@exampel.com)" +#: ../../include/js_strings.php:46 +#, php-format +msgid "%d minutes" +msgid_plural "%d minutes" +msgstr[0] "%d minutter" +msgstr[1] "%d minutter" -#: ../../Zotlabs/Module/Rmagic.php:90 -msgid "Authenticate" -msgstr "Autentiser" +#: ../../include/js_strings.php:47 +#, php-format +msgid "about %d hours" +msgid_plural "about %d hours" +msgstr[0] "omtrent %d timer" +msgstr[1] "omtrent %d timer" -#: ../../Zotlabs/Module/Search.php:216 +#: ../../include/js_strings.php:48 #, php-format -msgid "Items tagged with: %s" -msgstr "Elementer merket med: %s" +msgid "%d days" +msgid_plural "%d days" +msgstr[0] "%d dager" +msgstr[1] "%d dager" -#: ../../Zotlabs/Module/Search.php:218 +#: ../../include/js_strings.php:49 #, php-format -msgid "Search results for: %s" -msgstr "Søkeresultater for: %s" +msgid "%d months" +msgid_plural "%d months" +msgstr[0] "%d måneder" +msgstr[1] "%d måneder" -#: ../../Zotlabs/Module/Service_limits.php:23 -msgid "No service class restrictions found." -msgstr "Ingen restriksjoner er funnet i tjenesteklasse." +#: ../../include/js_strings.php:50 +#, php-format +msgid "%d years" +msgid_plural "%d years" +msgstr[0] "%d år" +msgstr[1] "%d år" -#: ../../Zotlabs/Module/Settings.php:69 -msgid "Name is required" -msgstr "Navn er påkrevd" +#: ../../include/js_strings.php:55 +msgid "timeago.prefixAgo" +msgstr "timeago.prefixAgo" -#: ../../Zotlabs/Module/Settings.php:73 -msgid "Key and Secret are required" -msgstr "Nøkkel og hemmelighet er påkrevd" +#: ../../include/js_strings.php:56 +msgid "timeago.prefixFromNow" +msgstr "timeago.prefixFromNow" -#: ../../Zotlabs/Module/Settings.php:225 -msgid "Not valid email." -msgstr "Ikke gyldig e-post." +#: ../../include/js_strings.php:57 +msgid "timeago.suffixAgo" +msgstr "" -#: ../../Zotlabs/Module/Settings.php:228 -msgid "Protected email address. Cannot change to that email." -msgstr "Beskyttet e-postadresse. Kan ikke endre til den e-postadressen." +#: ../../include/js_strings.php:58 +msgid "timeago.suffixFromNow" +msgstr "" -#: ../../Zotlabs/Module/Settings.php:237 -msgid "System failure storing new email. Please try again." -msgstr "Systemfeil ved lagring av ny e-post. Vennligst prøv igjen." +#: ../../include/js_strings.php:61 +msgid "less than a minute" +msgstr "mindre enn ett minutt" -#: ../../Zotlabs/Module/Settings.php:254 -msgid "Password verification failed." -msgstr "Passordbekreftelsen mislyktes." +#: ../../include/js_strings.php:62 +msgid "about a minute" +msgstr "omtrent et minutt" -#: ../../Zotlabs/Module/Settings.php:261 -msgid "Passwords do not match. Password unchanged." -msgstr "Passordene stemmer ikke overens. Passord uforandret." +#: ../../include/js_strings.php:64 +msgid "about an hour" +msgstr "omtrent en time" -#: ../../Zotlabs/Module/Settings.php:265 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Tomme passord er ikke tillatt. Passord uforandret." +#: ../../include/js_strings.php:66 +msgid "a day" +msgstr "en dag" -#: ../../Zotlabs/Module/Settings.php:279 -msgid "Password changed." -msgstr "Passord endret." +#: ../../include/js_strings.php:68 +msgid "about a month" +msgstr "omtrent en måned" -#: ../../Zotlabs/Module/Settings.php:281 -msgid "Password update failed. Please try again." -msgstr "Passord oppdatering mislyktes. Vennligst prøv igjen." +#: ../../include/js_strings.php:70 +msgid "about a year" +msgstr "omtrent et år" -#: ../../Zotlabs/Module/Settings.php:525 -msgid "Settings updated." -msgstr "Innstillinger oppdatert." +#: ../../include/js_strings.php:72 +msgid " " +msgstr " " -#: ../../Zotlabs/Module/Settings.php:589 ../../Zotlabs/Module/Settings.php:615 -#: ../../Zotlabs/Module/Settings.php:651 -msgid "Add application" -msgstr "Legg til program" +#: ../../include/js_strings.php:73 +msgid "timeago.numbers" +msgstr "timeago.numbers" -#: ../../Zotlabs/Module/Settings.php:592 -msgid "Name of application" -msgstr "Navn på program" +#: ../../include/js_strings.php:79 +msgctxt "long" +msgid "May" +msgstr "mai" -#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:619 -msgid "Consumer Key" -msgstr "Consumer Key" +#: ../../include/js_strings.php:87 +msgid "Jan" +msgstr "Jan" -#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:594 -msgid "Automatically generated - change if desired. Max length 20" -msgstr "Automatisk laget - kan endres om du vil. Største lengde 20" +#: ../../include/js_strings.php:88 +msgid "Feb" +msgstr "Feb" -#: ../../Zotlabs/Module/Settings.php:594 ../../Zotlabs/Module/Settings.php:620 -msgid "Consumer Secret" -msgstr "Consumer Secret" +#: ../../include/js_strings.php:89 +msgid "Mar" +msgstr "Mar" -#: ../../Zotlabs/Module/Settings.php:595 ../../Zotlabs/Module/Settings.php:621 -msgid "Redirect" -msgstr "Omdirigering" +#: ../../include/js_strings.php:90 +msgid "Apr" +msgstr "Apr" -#: ../../Zotlabs/Module/Settings.php:595 -msgid "" -"Redirect URI - leave blank unless your application specifically requires " -"this" -msgstr "Omdirigerings-URI - la stå tomt hvis ikke ditt program spesifikt krever dette" +#: ../../include/js_strings.php:91 +msgctxt "short" +msgid "May" +msgstr "mai" -#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Settings.php:622 -msgid "Icon url" -msgstr "Ikon-URL" +#: ../../include/js_strings.php:92 +msgid "Jun" +msgstr "Jun" -#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Sources.php:112 -#: ../../Zotlabs/Module/Sources.php:147 -msgid "Optional" -msgstr "Valgfritt" +#: ../../include/js_strings.php:93 +msgid "Jul" +msgstr "Jul" -#: ../../Zotlabs/Module/Settings.php:607 -msgid "Application not found." -msgstr "Programmet ble ikke funnet." +#: ../../include/js_strings.php:94 +msgid "Aug" +msgstr "Aug" -#: ../../Zotlabs/Module/Settings.php:650 -msgid "Connected Apps" -msgstr "Tilkoblede app-er" +#: ../../include/js_strings.php:95 +msgid "Sep" +msgstr "Sep" -#: ../../Zotlabs/Module/Settings.php:654 -msgid "Client key starts with" -msgstr "Klientnøkkel starter med" +#: ../../include/js_strings.php:96 +msgid "Oct" +msgstr "Okt" -#: ../../Zotlabs/Module/Settings.php:655 -msgid "No name" -msgstr "Ikke noe navn" +#: ../../include/js_strings.php:97 +msgid "Nov" +msgstr "Nov" -#: ../../Zotlabs/Module/Settings.php:656 -msgid "Remove authorization" -msgstr "Fjern tillatelse" +#: ../../include/js_strings.php:98 +msgid "Dec" +msgstr "Des" -#: ../../Zotlabs/Module/Settings.php:669 -msgid "No feature settings configured" -msgstr "Ingen funksjonsinnstillinger er konfigurert" +#: ../../include/js_strings.php:106 +msgid "Sun" +msgstr "Søn" -#: ../../Zotlabs/Module/Settings.php:676 -msgid "Feature/Addon Settings" -msgstr "Funksjons-/Tilleggsinnstillinger" +#: ../../include/js_strings.php:107 +msgid "Mon" +msgstr "Man" -#: ../../Zotlabs/Module/Settings.php:699 -msgid "Account Settings" -msgstr "Kontoinnstillinger" +#: ../../include/js_strings.php:108 +msgid "Tue" +msgstr "Tirs" -#: ../../Zotlabs/Module/Settings.php:700 -msgid "Current Password" -msgstr "Nåværende passord" +#: ../../include/js_strings.php:109 +msgid "Wed" +msgstr "Ons" -#: ../../Zotlabs/Module/Settings.php:701 -msgid "Enter New Password" -msgstr "Skriv nytt passord" +#: ../../include/js_strings.php:110 +msgid "Thu" +msgstr "Tors" -#: ../../Zotlabs/Module/Settings.php:702 -msgid "Confirm New Password" -msgstr "Bekreft nytt passord" +#: ../../include/js_strings.php:111 +msgid "Fri" +msgstr "Fre" -#: ../../Zotlabs/Module/Settings.php:702 -msgid "Leave password fields blank unless changing" -msgstr "La passordfeltene stå blanke om det ikke skal endres" +#: ../../include/js_strings.php:112 +msgid "Sat" +msgstr "Lør" -#: ../../Zotlabs/Module/Settings.php:704 -#: ../../Zotlabs/Module/Settings.php:1041 -msgid "Email Address:" -msgstr "E-postadresse:" +#: ../../include/js_strings.php:113 +msgctxt "calendar" +msgid "today" +msgstr "idag" -#: ../../Zotlabs/Module/Settings.php:706 -msgid "Remove this account including all its channels" -msgstr "Slett denne kontoen inkludert alle dens kanaler" +#: ../../include/js_strings.php:114 +msgctxt "calendar" +msgid "month" +msgstr "måned" -#: ../../Zotlabs/Module/Settings.php:729 -msgid "Additional Features" -msgstr "Ekstra funksjoner" +#: ../../include/js_strings.php:115 +msgctxt "calendar" +msgid "week" +msgstr "uke" -#: ../../Zotlabs/Module/Settings.php:753 -msgid "Connector Settings" -msgstr "Koblingsinnstillinger" +#: ../../include/js_strings.php:116 +msgctxt "calendar" +msgid "day" +msgstr "dag" -#: ../../Zotlabs/Module/Settings.php:792 -msgid "No special theme for mobile devices" -msgstr "Ikke noe spesielt tema for mobile enheter" +#: ../../include/js_strings.php:117 +msgctxt "calendar" +msgid "All day" +msgstr "Hele dagen" -#: ../../Zotlabs/Module/Settings.php:795 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s - (Eksperimentelt)" +#: ../../include/js_strings.php:120 +msgid "Please stand by while your download is being prepared." +msgstr "" -#: ../../Zotlabs/Module/Settings.php:837 -msgid "Display Settings" -msgstr "Visningsinnstillinger" +#: ../../include/js_strings.php:123 +msgid "Email address not valid" +msgstr "" -#: ../../Zotlabs/Module/Settings.php:838 -msgid "Theme Settings" -msgstr "Temainnstillinger" +#: ../../include/help.php:81 +msgid "Help:" +msgstr "Hjelp:" -#: ../../Zotlabs/Module/Settings.php:839 -msgid "Custom Theme Settings" -msgstr "Tilpassede temainnstillinger" +#: ../../include/help.php:118 ../../include/help.php:126 +#: ../../include/nav.php:179 ../../include/nav.php:318 +#: ../../Zotlabs/Module/Layouts.php:186 ../../Zotlabs/Lib/Apps.php:352 +msgid "Help" +msgstr "Hjelp" -#: ../../Zotlabs/Module/Settings.php:840 -msgid "Content Settings" -msgstr "Innholdsinnstillinger" +#: ../../include/help.php:130 +msgid "Not Found" +msgstr "Ikke funnet" -#: ../../Zotlabs/Module/Settings.php:846 -msgid "Display Theme:" -msgstr "Visningstema:" +#: ../../include/photos.php:153 +#, php-format +msgid "Image exceeds website size limit of %lu bytes" +msgstr "Bilde overstiger nettstedets størrelsesbegrensning på %lu bytes" -#: ../../Zotlabs/Module/Settings.php:847 -msgid "Mobile Theme:" -msgstr "Mobiltema:" +#: ../../include/photos.php:164 +msgid "Image file is empty." +msgstr "Bildefilen er tom." -#: ../../Zotlabs/Module/Settings.php:848 -msgid "Preload images before rendering the page" -msgstr "Last inn bildene før gjengivelsen av siden" +#: ../../include/photos.php:198 ../../Zotlabs/Module/Profile_photo.php:275 +#: ../../Zotlabs/Module/Cover_photo.php:241 +msgid "Unable to process image" +msgstr "Kan ikke behandle bildet" -#: ../../Zotlabs/Module/Settings.php:848 -msgid "" -"The subjective page load time will be longer but the page will be ready when" -" displayed" -msgstr "Den personlige opplevelsen av lastetiden vil være lenger, men siden vil være klar når den vises" +#: ../../include/photos.php:324 +msgid "Photo storage failed." +msgstr "Bildelagring mislyktes." -#: ../../Zotlabs/Module/Settings.php:849 -msgid "Enable user zoom on mobile devices" -msgstr "Skru på brukerstyrt zoom på mobile enheter" +#: ../../include/photos.php:373 +msgid "a new photo" +msgstr "et nytt bilde" -#: ../../Zotlabs/Module/Settings.php:850 -msgid "Update browser every xx seconds" -msgstr "Oppdater nettleser hvert xx sekunder" +#: ../../include/photos.php:377 +#, php-format +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" +msgstr "%1$s la inn %2$s til %3$s" -#: ../../Zotlabs/Module/Settings.php:850 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minimum 10 sekunder, ikke noe maksimum" +#: ../../include/photos.php:722 ../../include/nav.php:450 +msgid "Photo Albums" +msgstr "Fotoalbum" -#: ../../Zotlabs/Module/Settings.php:851 -msgid "Maximum number of conversations to load at any time:" -msgstr "Maksimalt antall samtaler å laste samtidig:" +#: ../../include/photos.php:723 ../../Zotlabs/Module/Photos.php:1352 +#: ../../Zotlabs/Module/Photos.php:1365 ../../Zotlabs/Module/Photos.php:1366 +msgid "Recent Photos" +msgstr "Nye bilder" -#: ../../Zotlabs/Module/Settings.php:851 -msgid "Maximum of 100 items" -msgstr "Maksimum 100 elementer" +#: ../../include/photos.php:727 +msgid "Upload New Photos" +msgstr "Last opp nye bilder" -#: ../../Zotlabs/Module/Settings.php:852 -msgid "Show emoticons (smilies) as images" -msgstr "Vis emoticons (smilefjes) som bilder" +#: ../../include/network.php:412 +msgid "url: " +msgstr "" -#: ../../Zotlabs/Module/Settings.php:853 -msgid "Link post titles to source" -msgstr "Lenk innleggets tittel til kilden" +#: ../../include/network.php:413 +msgid "error_code: " +msgstr "" -#: ../../Zotlabs/Module/Settings.php:854 -msgid "System Page Layout Editor - (advanced)" -msgstr "Systemsidens layoutbehandler - (avansert)" +#: ../../include/network.php:414 +msgid "error_string: " +msgstr "" -#: ../../Zotlabs/Module/Settings.php:857 -msgid "Use blog/list mode on channel page" -msgstr "Bruk blogg-/listemodus på kanalsiden" +#: ../../include/network.php:415 +msgid "content-type: " +msgstr "" -#: ../../Zotlabs/Module/Settings.php:857 ../../Zotlabs/Module/Settings.php:858 -msgid "(comments displayed separately)" -msgstr "(kommentarer vist separat)" +#: ../../include/network.php:1762 ../../include/network.php:1763 +msgid "Friendica" +msgstr "Friendica" -#: ../../Zotlabs/Module/Settings.php:858 -msgid "Use blog/list mode on grid page" -msgstr "Bruk blogg-/liste-modus på nettverkssiden" +#: ../../include/network.php:1764 +msgid "OStatus" +msgstr "OStatus" -#: ../../Zotlabs/Module/Settings.php:859 -msgid "Channel page max height of content (in pixels)" -msgstr "Kanalsidens makshøyde for innhold (i pixler)" +#: ../../include/network.php:1765 +msgid "GNU-Social" +msgstr "" -#: ../../Zotlabs/Module/Settings.php:859 ../../Zotlabs/Module/Settings.php:860 -msgid "click to expand content exceeding this height" -msgstr "klikk for å utvide innhold som overstiger denne høyden" +#: ../../include/network.php:1766 +msgid "RSS/Atom" +msgstr "RSS/Atom" -#: ../../Zotlabs/Module/Settings.php:860 -msgid "Grid page max height of content (in pixels)" -msgstr "Nettverkssidens makshøyde for innhold (i piksler)" +#: ../../include/network.php:1769 +msgid "Diaspora" +msgstr "Diaspora" -#: ../../Zotlabs/Module/Settings.php:894 -msgid "Nobody except yourself" -msgstr "Ingen unntatt deg selv" +#: ../../include/network.php:1770 +msgid "Facebook" +msgstr "Facebook" -#: ../../Zotlabs/Module/Settings.php:895 -msgid "Only those you specifically allow" -msgstr "Bare de du spesifikt tillater" +#: ../../include/network.php:1771 +msgid "Zot" +msgstr "Zot" -#: ../../Zotlabs/Module/Settings.php:896 -msgid "Approved connections" -msgstr "Godkjente forbindelser" +#: ../../include/network.php:1772 +msgid "LinkedIn" +msgstr "LinkedIn" -#: ../../Zotlabs/Module/Settings.php:897 -msgid "Any connections" -msgstr "Enhver forbindelse" +#: ../../include/network.php:1773 +msgid "XMPP/IM" +msgstr "XMPP/IM" -#: ../../Zotlabs/Module/Settings.php:898 -msgid "Anybody on this website" -msgstr "Enhver ved dette nettstedet" +#: ../../include/network.php:1774 +msgid "MySpace" +msgstr "MySpace" -#: ../../Zotlabs/Module/Settings.php:899 -msgid "Anybody in this network" -msgstr "Enhver i dette nettverket" +#: ../../include/activities.php:42 +msgid " and " +msgstr "og" -#: ../../Zotlabs/Module/Settings.php:900 -msgid "Anybody authenticated" -msgstr "Enhver som er autentisert" +#: ../../include/activities.php:50 +msgid "public profile" +msgstr "offentlig profil" -#: ../../Zotlabs/Module/Settings.php:901 -msgid "Anybody on the internet" -msgstr "Enhver på Internett" +#: ../../include/activities.php:59 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s endret %2$s til “%3$s”" -#: ../../Zotlabs/Module/Settings.php:976 -msgid "Publish your default profile in the network directory" -msgstr "Publiser din standardprofil i nettverkskatalogen" +#: ../../include/activities.php:60 +#, php-format +msgid "Visit %1$s's %2$s" +msgstr "Besøk %1$s sitt %2$s" -#: ../../Zotlabs/Module/Settings.php:981 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Tillat oss å foreslå deg som en mulig venn til nye medlemmer?" +#: ../../include/activities.php:63 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s har oppdatert %2$s, endret %3$s." -#: ../../Zotlabs/Module/Settings.php:990 -msgid "Your channel address is" -msgstr "Din kanaladresse er" +#: ../../include/contact_widgets.php:11 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d invitasjon tilgjengelig" +msgstr[1] "%d invitasjoner tilgjengelig" -#: ../../Zotlabs/Module/Settings.php:1032 -msgid "Channel Settings" -msgstr "Kanalinnstillinger" +#: ../../include/contact_widgets.php:16 ../../include/acl_selectors.php:145 +#: ../../Zotlabs/Module/Admin/Site.php:419 +msgid "Advanced" +msgstr "Avansert" -#: ../../Zotlabs/Module/Settings.php:1039 -msgid "Basic Settings" -msgstr "Grunninnstillinger" +#: ../../include/contact_widgets.php:19 +msgid "Find Channels" +msgstr "Finn kanaler" -#: ../../Zotlabs/Module/Settings.php:1040 ../../include/channel.php:1140 -msgid "Full Name:" -msgstr "Fullt navn:" +#: ../../include/contact_widgets.php:20 +msgid "Enter name or interest" +msgstr "Skriv navn eller interesse" -#: ../../Zotlabs/Module/Settings.php:1042 -msgid "Your Timezone:" -msgstr "Din tidssone:" +#: ../../include/contact_widgets.php:21 +msgid "Connect/Follow" +msgstr "Forbindelse/Følg" -#: ../../Zotlabs/Module/Settings.php:1043 -msgid "Default Post Location:" -msgstr "Standard plassering ved innlegg:" +#: ../../include/contact_widgets.php:22 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Eksempler: Ola Nordmann, fisking" -#: ../../Zotlabs/Module/Settings.php:1043 -msgid "Geographical location to display on your posts" -msgstr "Geografisk plassering som vises på dine innlegg" +#: ../../include/contact_widgets.php:23 ../../Zotlabs/Module/Directory.php:432 +#: ../../Zotlabs/Module/Directory.php:437 +#: ../../Zotlabs/Module/Connections.php:398 +msgid "Find" +msgstr "Finn" -#: ../../Zotlabs/Module/Settings.php:1044 -msgid "Use Browser Location:" -msgstr "Bruk nettleseren sin plassering:" +#: ../../include/contact_widgets.php:24 ../../Zotlabs/Module/Directory.php:436 +#: ../../Zotlabs/Module/Suggest.php:77 +msgid "Channel Suggestions" +msgstr "Kanalforslag" -#: ../../Zotlabs/Module/Settings.php:1046 -msgid "Adult Content" -msgstr "Voksent innhold" +#: ../../include/contact_widgets.php:26 +msgid "Random Profile" +msgstr "Tilfeldig profil" -#: ../../Zotlabs/Module/Settings.php:1046 -msgid "" -"This channel frequently or regularly publishes adult content. (Please tag " -"any adult material and/or nudity with #NSFW)" -msgstr "Denne kanalen vil ofte eller jevnlig publisere voksent innhold. (Vennligst merk alt voksent materiale og/eller nakenhet med #NSFW)" +#: ../../include/contact_widgets.php:27 +msgid "Invite Friends" +msgstr "Inviter venner" -#: ../../Zotlabs/Module/Settings.php:1048 -msgid "Security and Privacy Settings" -msgstr "Sikkerhets- og personverninnstillinger" +#: ../../include/contact_widgets.php:29 +msgid "Advanced example: name=fred and country=iceland" +msgstr "Avansert eksempel: navn=fred og land=island" -#: ../../Zotlabs/Module/Settings.php:1051 -msgid "Your permissions are already configured. Click to view/adjust" -msgstr "Dine tillatelser er allerede satt. Klikk for å se/justere." +#: ../../include/contact_widgets.php:182 +msgid "Common Connections" +msgstr "" -#: ../../Zotlabs/Module/Settings.php:1053 -msgid "Hide my online presence" -msgstr "Skjul min tilstedeværelse online" +#: ../../include/contact_widgets.php:186 +#, php-format +msgid "View all %d common connections" +msgstr "" -#: ../../Zotlabs/Module/Settings.php:1053 -msgid "Prevents displaying in your profile that you are online" -msgstr "Forhindrer visning på din profil av at du er online " +#: ../../include/language.php:446 +msgid "Select an alternate language" +msgstr "Velg et annet språk" -#: ../../Zotlabs/Module/Settings.php:1055 -msgid "Simple Privacy Settings:" -msgstr "Enkle personverninnstillinger:" +#: ../../include/import.php:30 +msgid "Unable to import a removed channel." +msgstr "" -#: ../../Zotlabs/Module/Settings.php:1056 +#: ../../include/import.php:56 msgid "" -"Very Public - extremely permissive (should be used with caution)" -msgstr "Svært offentlig - ekstremt åpent (bør brukes med varsomhet)" +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "" +"Kan ikke lage en kopi av kanal-identifikatoren på dette systemet. Import" +" mislyktes." -#: ../../Zotlabs/Module/Settings.php:1057 -msgid "" -"Typical - default public, privacy when desired (similar to social " -"network permissions but with improved privacy)" -msgstr "Typisk - standard er offentlig, personvern når ønsket (likner på tillatelser i sosiale nettverk, men med forbedret personvern)" +#: ../../include/import.php:122 +msgid "Cloned channel not found. Import failed." +msgstr "Klonet kanal ble ikke funnet. Import mislyktes." -#: ../../Zotlabs/Module/Settings.php:1058 -msgid "Private - default private, never open or public" -msgstr "Privat - standard er privat, aldri åpen eller offentlig" +#: ../../include/nav.php:95 +msgid "Remote authentication" +msgstr "Fjernautentisering" -#: ../../Zotlabs/Module/Settings.php:1059 -msgid "Blocked - default blocked to/from everybody" -msgstr "Blokkert - standard blokkert til/fra alle" +#: ../../include/nav.php:95 +msgid "Click to authenticate to your home hub" +msgstr "Klikk for å godkjennes mot din hjemme-hub" -#: ../../Zotlabs/Module/Settings.php:1061 -msgid "Allow others to tag your posts" -msgstr "Tillat andre å merke dine innlegg" +#: ../../include/nav.php:101 ../../Zotlabs/Widget/Channel_activities.php:239 +#: ../../Zotlabs/Widget/Admin.php:29 +#: ../../Zotlabs/Module/Admin/Channels.php:146 +#: ../../Zotlabs/Module/Manage.php:162 ../../Zotlabs/Module/Admin.php:116 +msgid "Channels" +msgstr "Kanaler" -#: ../../Zotlabs/Module/Settings.php:1061 -msgid "" -"Often used by the community to retro-actively flag inappropriate content" -msgstr "Ofte brukt av fellesskapet for å merke upassende innhold i etterkant" +#: ../../include/nav.php:101 +msgid "Manage your channels" +msgstr "" -#: ../../Zotlabs/Module/Settings.php:1063 -msgid "Advanced Privacy Settings" -msgstr "Avanserte personverninnstillinger" +#: ../../include/nav.php:104 ../../Zotlabs/Widget/Settings_menu.php:71 +#: ../../Zotlabs/Widget/Newmember.php:58 +#: ../../Zotlabs/Module/Admin/Themes.php:125 +#: ../../Zotlabs/Module/Admin/Addons.php:345 ../../Zotlabs/Lib/Apps.php:343 +msgid "Settings" +msgstr "Innstillinger" -#: ../../Zotlabs/Module/Settings.php:1065 -msgid "Expire other channel content after this many days" -msgstr "Annet kanal innhold utløper etter så mange dager" +#: ../../include/nav.php:104 +msgid "Account/Channel Settings" +msgstr "Konto-/kanal-innstillinger" -#: ../../Zotlabs/Module/Settings.php:1065 -msgid "0 or blank to use the website limit." -msgstr "" +#: ../../include/nav.php:110 ../../include/nav.php:140 +#: ../../include/nav.php:161 ../../boot.php:1747 +msgid "Logout" +msgstr "Logg ut" -#: ../../Zotlabs/Module/Settings.php:1065 -#, php-format -msgid "This website expires after %d days." -msgstr "" +#: ../../include/nav.php:110 ../../include/nav.php:140 +msgid "End this session" +msgstr "Avslutt denne økten" -#: ../../Zotlabs/Module/Settings.php:1065 -msgid "This website does not expire imported content." -msgstr "" +#: ../../include/nav.php:113 +msgid "Your profile page" +msgstr "Din profilside" -#: ../../Zotlabs/Module/Settings.php:1065 -msgid "The website limit takes precedence if lower than your limit." -msgstr "" +#: ../../include/nav.php:116 ../../include/channel.php:1530 +#: ../../Zotlabs/Module/Profiles.php:852 +msgid "Edit Profiles" +msgstr "Endre profiler" -#: ../../Zotlabs/Module/Settings.php:1066 -msgid "Maximum Friend Requests/Day:" -msgstr "Maksimalt antall venneforespørsler per dag:" +#: ../../include/nav.php:116 +msgid "Manage/Edit profiles" +msgstr "Håndter/endre profiler" -#: ../../Zotlabs/Module/Settings.php:1066 -msgid "May reduce spam activity" -msgstr "Kan redusere søppelpostaktivitet" +#: ../../include/nav.php:118 ../../Zotlabs/Widget/Newmember.php:40 +msgid "Edit your profile" +msgstr "Rediger profil" -#: ../../Zotlabs/Module/Settings.php:1067 -msgid "Default Post and Publish Permissions" -msgstr "" +#: ../../include/nav.php:125 ../../include/nav.php:129 +#: ../../Zotlabs/Lib/Apps.php:340 ../../boot.php:1748 +msgid "Login" +msgstr "Logg inn" + +#: ../../include/nav.php:125 ../../include/nav.php:129 +msgid "Sign in" +msgstr "Logg på" -#: ../../Zotlabs/Module/Settings.php:1069 -msgid "Use my default audience setting for the type of object published" +#: ../../include/nav.php:159 +msgid "Take me home" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1072 -msgid "Channel permissions category:" -msgstr "Kategori med kanaltillatelser:" +#: ../../include/nav.php:161 +msgid "Log me out of this site" +msgstr "" -#: ../../Zotlabs/Module/Settings.php:1078 -msgid "Maximum private messages per day from unknown people:" -msgstr "Maksimalt antall private meldinger per dag fra ukjente personer:" +#: ../../include/nav.php:166 ../../Zotlabs/Module/Register.php:542 +#: ../../boot.php:1725 +msgid "Register" +msgstr "Registrer" -#: ../../Zotlabs/Module/Settings.php:1078 -msgid "Useful to reduce spamming" -msgstr "Nyttig for å redusere søppelpost" +#: ../../include/nav.php:166 +msgid "Create an account" +msgstr "Lag en konto" -#: ../../Zotlabs/Module/Settings.php:1081 -msgid "Notification Settings" -msgstr "Varslingsinnstillinger" +#: ../../include/nav.php:179 +msgid "Help and documentation" +msgstr "Hjelp og dokumentasjon" -#: ../../Zotlabs/Module/Settings.php:1082 -msgid "By default post a status message when:" -msgstr "Legg inn en statusmelding når du:" +#: ../../include/nav.php:193 +msgid "Search site @name, !forum, #tag, ?docs, content" +msgstr "" -#: ../../Zotlabs/Module/Settings.php:1083 -msgid "accepting a friend request" -msgstr "aksepterer en venneforespørsel" +#: ../../include/nav.php:199 ../../Zotlabs/Widget/Admin.php:60 +msgid "Admin" +msgstr "Administrator" -#: ../../Zotlabs/Module/Settings.php:1084 -msgid "joining a forum/community" -msgstr "blir med i et forum/miljø" +#: ../../include/nav.php:199 +msgid "Site Setup and Configuration" +msgstr "Nettstedsoppsett og -konfigurasjon" -#: ../../Zotlabs/Module/Settings.php:1085 -msgid "making an interesting profile change" -msgstr "gjør en interessant profilendring" +#: ../../include/nav.php:322 ../../Zotlabs/Widget/Messages.php:36 +#: ../../Zotlabs/Widget/Notifications.php:173 +#: ../../Zotlabs/Module/New_channel.php:157 +#: ../../Zotlabs/Module/New_channel.php:164 +#: ../../Zotlabs/Module/Defperms.php:254 +msgid "Loading" +msgstr "" -#: ../../Zotlabs/Module/Settings.php:1086 -msgid "Send a notification email when:" -msgstr "Send en varsel-e-post når:" +#: ../../include/nav.php:327 +msgid "@name, #tag, ?doc, content" +msgstr "@navn, #merkelapp, ?dokumentasjon, innhold" -#: ../../Zotlabs/Module/Settings.php:1087 -msgid "You receive a connection request" -msgstr "Du har mottatt en forespørsel om forbindelse" +#: ../../include/nav.php:328 +msgid "Please wait..." +msgstr "Vennligst vent..." -#: ../../Zotlabs/Module/Settings.php:1088 -msgid "Your connections are confirmed" -msgstr "Dine forbindelser er bekreftet" +#: ../../include/nav.php:334 ../../Zotlabs/Lib/Apps.php:327 +msgid "Apps" +msgstr "Apper" -#: ../../Zotlabs/Module/Settings.php:1089 -msgid "Someone writes on your profile wall" -msgstr "Noen skriver på din profilvegg" +#: ../../include/nav.php:335 +msgid "Channel Apps" +msgstr "" -#: ../../Zotlabs/Module/Settings.php:1090 -msgid "Someone writes a followup comment" -msgstr "Noen skriver en oppfølgende kommentar" +#: ../../include/nav.php:336 +msgid "System Apps" +msgstr "" -#: ../../Zotlabs/Module/Settings.php:1091 -msgid "You receive a private message" -msgstr "Du mottar en privat melding" +#: ../../include/nav.php:337 +msgid "Pinned Apps" +msgstr "" -#: ../../Zotlabs/Module/Settings.php:1092 -msgid "You receive a friend suggestion" -msgstr "Du mottok et venneforslag" +#: ../../include/nav.php:338 +msgid "Featured Apps" +msgstr "" -#: ../../Zotlabs/Module/Settings.php:1093 -msgid "You are tagged in a post" -msgstr "Du merkes i et innlegg" +#: ../../include/nav.php:424 ../../Zotlabs/Module/Admin/Channels.php:154 +#: ../../Zotlabs/Lib/Apps.php:347 +msgid "Channel" +msgstr "Kanal" -#: ../../Zotlabs/Module/Settings.php:1094 -msgid "You are poked/prodded/etc. in a post" -msgstr "Du ble prikket/oppildnet/og så vider i et innlegg" +#: ../../include/nav.php:427 +msgid "Status Messages and Posts" +msgstr "Statusmeldinger og -innlegg" -#: ../../Zotlabs/Module/Settings.php:1097 -msgid "Show visual notifications including:" -msgstr "Vis visuelle varslinger om:" +#: ../../include/nav.php:437 ../../Zotlabs/Module/Help.php:83 +msgid "About" +msgstr "Om" -#: ../../Zotlabs/Module/Settings.php:1099 -msgid "Unseen grid activity" -msgstr "Usett nettverksaktivitet" +#: ../../include/nav.php:440 +msgid "Profile Details" +msgstr "Profildetaljer" -#: ../../Zotlabs/Module/Settings.php:1100 -msgid "Unseen channel activity" -msgstr "Usett kanalaktivitet" +#: ../../include/nav.php:455 ../../Zotlabs/Widget/Channel_activities.php:125 +#: ../../Zotlabs/Widget/Notifications.php:108 +#: ../../Zotlabs/Module/Fbrowser.php:85 ../../Zotlabs/Lib/Apps.php:344 +#: ../../Zotlabs/Storage/Browser.php:351 +msgid "Files" +msgstr "Filer" -#: ../../Zotlabs/Module/Settings.php:1101 -msgid "Unseen private messages" -msgstr "Usette private meldinger" +#: ../../include/nav.php:458 +msgid "Files and Storage" +msgstr "Filer og lagring" -#: ../../Zotlabs/Module/Settings.php:1101 -#: ../../Zotlabs/Module/Settings.php:1106 -#: ../../Zotlabs/Module/Settings.php:1107 -#: ../../Zotlabs/Module/Settings.php:1108 -msgid "Recommended" -msgstr "Anbefalt" +#: ../../include/nav.php:480 ../../include/nav.php:483 +#: ../../Zotlabs/Widget/Chatroom_list.php:22 ../../Zotlabs/Lib/Apps.php:334 +msgid "Chatrooms" +msgstr "Chatrom" -#: ../../Zotlabs/Module/Settings.php:1102 -msgid "Upcoming events" -msgstr "Kommende hendelser" +#: ../../include/nav.php:493 ../../Zotlabs/Module/Bookmarks.php:90 +#: ../../Zotlabs/Lib/Apps.php:333 +msgid "Bookmarks" +msgstr "Bokmerker" -#: ../../Zotlabs/Module/Settings.php:1103 -msgid "Events today" -msgstr "Hendelser idag" +#: ../../include/nav.php:496 +msgid "Saved Bookmarks" +msgstr "Lagrede bokmerker" -#: ../../Zotlabs/Module/Settings.php:1104 -msgid "Upcoming birthdays" -msgstr "Kommende fødselsdager" +#: ../../include/nav.php:504 ../../Zotlabs/Widget/Channel_activities.php:168 +#: ../../Zotlabs/Module/Webpages.php:249 ../../Zotlabs/Lib/Apps.php:345 +msgid "Webpages" +msgstr "Websider" -#: ../../Zotlabs/Module/Settings.php:1104 -msgid "Not available in all themes" -msgstr "Ikke tilgjengelig i alle temaer" +#: ../../include/nav.php:507 +msgid "View Webpages" +msgstr "" -#: ../../Zotlabs/Module/Settings.php:1105 -msgid "System (personal) notifications" -msgstr "System (personlige) varslinger" +#: ../../include/nav.php:518 ../../Zotlabs/Lib/Apps.php:346 +msgid "Wiki" +msgstr "" -#: ../../Zotlabs/Module/Settings.php:1106 -msgid "System info messages" -msgstr "System infomeldinger" +#: ../../include/auth.php:194 +msgid "Delegation session ended." +msgstr "" -#: ../../Zotlabs/Module/Settings.php:1107 -msgid "System critical alerts" -msgstr "System kritiske varsel" +#: ../../include/auth.php:198 +msgid "Logged out." +msgstr "Logget ut." -#: ../../Zotlabs/Module/Settings.php:1108 -msgid "New connections" -msgstr "Nye forbindelser" +#: ../../include/auth.php:297 +msgid "Email validation is incomplete. Please check your email." +msgstr "" -#: ../../Zotlabs/Module/Settings.php:1109 -msgid "System Registrations" -msgstr "Systemregistreringer" +#: ../../include/auth.php:313 +msgid "Failed authentication" +msgstr "Mislykket autentisering" -#: ../../Zotlabs/Module/Settings.php:1110 -msgid "" -"Also show new wall posts, private messages and connections under Notices" -msgstr "Vis også nye vegginnlegg, private meldinger og forbindelser under Varsler" +#: ../../include/datetime.php:58 ../../Zotlabs/Widget/Newmember.php:56 +#: ../../Zotlabs/Module/Profiles.php:753 +msgid "Miscellaneous" +msgstr "Forskjellig" -#: ../../Zotlabs/Module/Settings.php:1112 -msgid "Notify me of events this many days in advance" -msgstr "Varsle meg om hendelser dette antall dager på forhånd" +#: ../../include/datetime.php:140 +msgid "Birthday" +msgstr "" -#: ../../Zotlabs/Module/Settings.php:1112 -msgid "Must be greater than 0" -msgstr "Må være større enn 0" +#: ../../include/datetime.php:140 +msgid "Age: " +msgstr "Alder:" -#: ../../Zotlabs/Module/Settings.php:1114 -msgid "Advanced Account/Page Type Settings" -msgstr "Avanserte innstillinger for konto/sidetype" +#: ../../include/datetime.php:140 +msgid "YYYY-MM-DD or MM-DD" +msgstr "YYYY-MM-DD eller MM-DD" -#: ../../Zotlabs/Module/Settings.php:1115 -msgid "Change the behaviour of this account for special situations" -msgstr "Endre oppførselen til denne kontoen i spesielle situasjoner" +#: ../../include/datetime.php:238 ../../boot.php:2764 +msgid "never" +msgstr "aldri" -#: ../../Zotlabs/Module/Settings.php:1118 -msgid "" -"Please enable expert mode (in Settings > " -"Additional features) to adjust!" -msgstr "Vennligst skru på ekspertmodus (under Innstillinger > Ekstra funksjoner) for å justere!" +#: ../../include/datetime.php:244 +msgid "less than a second ago" +msgstr "for mindre enn ett sekund siden" -#: ../../Zotlabs/Module/Settings.php:1119 -msgid "Miscellaneous Settings" -msgstr "Diverse innstillinger" +#: ../../include/datetime.php:262 +#, php-format +msgctxt "e.g. 22 hours ago, 1 minute ago" +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s siden" -#: ../../Zotlabs/Module/Settings.php:1120 -msgid "Default photo upload folder" -msgstr "Standard mappe for opplasting av bilder" +#: ../../include/datetime.php:273 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "år" +msgstr[1] "år" -#: ../../Zotlabs/Module/Settings.php:1120 -#: ../../Zotlabs/Module/Settings.php:1121 -msgid "%Y - current year, %m - current month" -msgstr "%Y - nåværende år, %m - nåværende måned" +#: ../../include/datetime.php:276 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "måned" +msgstr[1] "måneder" + +#: ../../include/datetime.php:279 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "uke" +msgstr[1] "uker" + +#: ../../include/datetime.php:282 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "dag" +msgstr[1] "dager" + +#: ../../include/datetime.php:285 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "time" +msgstr[1] "timer" + +#: ../../include/datetime.php:288 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "minutt" +msgstr[1] "minutter" + +#: ../../include/datetime.php:291 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "sekund" +msgstr[1] "sekunder" + +#: ../../include/datetime.php:520 +#, php-format +msgid "%1$s's birthday" +msgstr "%1$s sin fødselsdag" + +#: ../../include/datetime.php:521 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "Gratulerer med dagen, %1$s !" + +#: ../../include/cdav.php:157 +msgid "INVALID EVENT DISMISSED!" +msgstr "" + +#: ../../include/cdav.php:158 +msgid "Summary: " +msgstr "" + +#: ../../include/cdav.php:158 ../../include/cdav.php:159 +#: ../../include/cdav.php:167 ../../include/conversation.php:1214 +#: ../../Zotlabs/Widget/Album.php:90 ../../Zotlabs/Widget/Pinned.php:271 +#: ../../Zotlabs/Widget/Portfolio.php:99 +#: ../../Zotlabs/Module/Embedphotos.php:177 ../../Zotlabs/Module/Photos.php:799 +#: ../../Zotlabs/Module/Photos.php:1259 ../../Zotlabs/Lib/Activity.php:1604 +#: ../../Zotlabs/Lib/Apps.php:1151 ../../Zotlabs/Lib/Apps.php:1235 +msgid "Unknown" +msgstr "Ukjent" + +#: ../../include/cdav.php:159 +msgid "Date: " +msgstr "" + +#: ../../include/cdav.php:160 ../../include/cdav.php:168 +msgid "Reason: " +msgstr "" + +#: ../../include/cdav.php:166 +msgid "INVALID CARD DISMISSED!" +msgstr "" + +#: ../../include/cdav.php:167 +msgid "Name: " +msgstr "" + +#: ../../include/conversation.php:145 ../../Zotlabs/Module/Like.php:184 +msgid "channel" +msgstr "kanal" + +#: ../../include/conversation.php:193 +#, php-format +msgid "likes %1$s's %2$s" +msgstr "" + +#: ../../include/conversation.php:196 +#, php-format +msgid "doesn't like %1$s's %2$s" +msgstr "" + +#: ../../include/conversation.php:236 ../../include/conversation.php:238 +#, php-format +msgid "%1$s is now connected with %2$s" +msgstr "%1$s er nå forbundet med %2$s" + +#: ../../include/conversation.php:273 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s prikket %2$s" + +#: ../../include/conversation.php:296 ../../Zotlabs/Module/Mood.php:76 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "%1$s er %2$s" + +#: ../../include/conversation.php:526 ../../Zotlabs/Lib/ThreadItem.php:508 +msgid "This is an unsaved preview" +msgstr "" + +#: ../../include/conversation.php:659 ../../Zotlabs/Module/Photos.php:1119 +msgctxt "title" +msgid "Likes" +msgstr "Liker" + +#: ../../include/conversation.php:660 ../../Zotlabs/Module/Photos.php:1119 +msgctxt "title" +msgid "Dislikes" +msgstr "Liker ikke" + +#: ../../include/conversation.php:661 ../../Zotlabs/Widget/Pinned.php:80 +#: ../../Zotlabs/Module/Photos.php:1120 +msgctxt "title" +msgid "Agree" +msgstr "Enig" + +#: ../../include/conversation.php:662 ../../Zotlabs/Widget/Pinned.php:81 +#: ../../Zotlabs/Module/Photos.php:1120 +msgctxt "title" +msgid "Disagree" +msgstr "Uenig" + +#: ../../include/conversation.php:663 ../../Zotlabs/Widget/Pinned.php:82 +#: ../../Zotlabs/Module/Photos.php:1120 +msgctxt "title" +msgid "Abstain" +msgstr "Avstår" + +#: ../../include/conversation.php:664 ../../Zotlabs/Widget/Pinned.php:69 +#: ../../Zotlabs/Module/Photos.php:1121 +msgctxt "title" +msgid "Attending" +msgstr "Deltar" + +#: ../../include/conversation.php:665 ../../Zotlabs/Widget/Pinned.php:70 +#: ../../Zotlabs/Module/Photos.php:1121 +msgctxt "title" +msgid "Not attending" +msgstr "Deltar ikke" + +#: ../../include/conversation.php:666 ../../Zotlabs/Widget/Pinned.php:71 +#: ../../Zotlabs/Module/Photos.php:1121 +msgctxt "title" +msgid "Might attend" +msgstr "Deltar kanskje" + +#: ../../include/conversation.php:736 +msgid "Select" +msgstr "Velg" + +#: ../../include/conversation.php:743 ../../Zotlabs/Lib/ThreadItem.php:270 +msgid "Toggle Star Status" +msgstr "Skru av og på stjernestatus" + +#: ../../include/conversation.php:749 +msgid "Private Message" +msgstr "Privat melding" + +#: ../../include/conversation.php:758 ../../Zotlabs/Widget/Pinned.php:91 +#: ../../Zotlabs/Lib/ThreadItem.php:280 +msgid "Message signature validated" +msgstr "Innleggets signatur er bekreftet" + +#: ../../include/conversation.php:759 ../../Zotlabs/Widget/Pinned.php:92 +#: ../../Zotlabs/Lib/ThreadItem.php:281 +msgid "Message signature incorrect" +msgstr "Innleggets signatur er feil" + +#: ../../include/conversation.php:796 +#: ../../Zotlabs/Module/Admin/Accounts.php:318 +#: ../../Zotlabs/Module/Connections.php:349 +#: ../../Zotlabs/Module/Connections.php:400 +msgid "Approve" +msgstr "Godkjenn" + +#: ../../include/conversation.php:802 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Vis %s sin profile @ %s" + +#: ../../include/conversation.php:823 +msgid "Categories:" +msgstr "Kategorier:" + +#: ../../include/conversation.php:824 +msgid "Filed under:" +msgstr "Sortert under:" + +#: ../../include/conversation.php:830 ../../Zotlabs/Widget/Pinned.php:135 +#: ../../Zotlabs/Lib/ThreadItem.php:437 +#, php-format +msgid "from %s" +msgstr "fra %s" + +#: ../../include/conversation.php:833 ../../Zotlabs/Widget/Pinned.php:138 +#: ../../Zotlabs/Lib/ThreadItem.php:440 +#, php-format +msgid "last edited: %s" +msgstr "sist endret: %s" + +#: ../../include/conversation.php:834 ../../Zotlabs/Widget/Pinned.php:139 +#: ../../Zotlabs/Lib/ThreadItem.php:441 +#, php-format +msgid "Expires: %s" +msgstr "Utløper: %s" + +#: ../../include/conversation.php:851 ../../Zotlabs/Module/Photos.php:1085 +#: ../../Zotlabs/Lib/ThreadItem.php:509 +msgid "Please wait" +msgstr "Vennligst vent" + +#: ../../include/conversation.php:952 +msgid "remove" +msgstr "fjern" + +#: ../../include/conversation.php:956 +msgid "Loading..." +msgstr "Laster..." + +#: ../../include/conversation.php:957 ../../Zotlabs/Lib/ThreadItem.php:297 +msgid "Conversation Features" +msgstr "" + +#: ../../include/conversation.php:958 +msgid "Delete Selected Items" +msgstr "Slett valgte elementer" + +#: ../../include/conversation.php:994 +msgid "View Source" +msgstr "Vis kilde" + +#: ../../include/conversation.php:1004 +msgid "Follow Thread" +msgstr "Følg tråd" + +#: ../../include/conversation.php:1013 +msgid "Unfollow Thread" +msgstr "Ikke følg tråd" + +#: ../../include/conversation.php:1105 ../../Zotlabs/Module/Connedit.php:501 +msgid "Recent Activity" +msgstr "Nylig aktivitet" + +#: ../../include/conversation.php:1117 ../../include/connections.php:112 +#: ../../include/channel.php:1610 ../../Zotlabs/Widget/Suggestions.php:51 +#: ../../Zotlabs/Widget/Follow.php:37 ../../Zotlabs/Module/Directory.php:369 +#: ../../Zotlabs/Module/Connections.php:356 ../../Zotlabs/Module/Suggest.php:69 +msgid "Connect" +msgstr "Koble" + +#: ../../include/conversation.php:1129 +msgid "Edit Connection" +msgstr "Endre forbindelse" + +#: ../../include/conversation.php:1141 ../../Zotlabs/Module/Poke.php:197 +#: ../../Zotlabs/Lib/Apps.php:355 +msgid "Poke" +msgstr "Prikk" + +#: ../../include/conversation.php:1265 +#, php-format +msgid "%s likes this." +msgstr "%s liker dette." + +#: ../../include/conversation.php:1265 +#, php-format +msgid "%s doesn't like this." +msgstr "%s liker ikke dette." + +#: ../../include/conversation.php:1269 +#, php-format +msgid "%2$d people like this." +msgid_plural "%2$d people like this." +msgstr[0] "%2$d person liker dette." +msgstr[1] "%2$d personer liker dette." + +#: ../../include/conversation.php:1271 +#, php-format +msgid "%2$d people don't like this." +msgid_plural "%2$d people don't like this." +msgstr[0] "%2$d person liker ikke dette." +msgstr[1] "%2$d personer liker ikke dette." + +#: ../../include/conversation.php:1277 +msgid "and" +msgstr "og" + +#: ../../include/conversation.php:1280 +#, php-format +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] ", og %d annen person" +msgstr[1] ", og %d andre personer" + +#: ../../include/conversation.php:1281 +#, php-format +msgid "%s like this." +msgstr "%s liker dette." + +#: ../../include/conversation.php:1281 +#, php-format +msgid "%s don't like this." +msgstr "%s liker ikke dette." + +#: ../../include/conversation.php:1471 +msgid "Toggle poll" +msgstr "" + +#: ../../include/conversation.php:1472 +msgid "Option" +msgstr "" + +#: ../../include/conversation.php:1473 +msgid "Add option" +msgstr "" + +#: ../../include/conversation.php:1474 +msgid "Minutes" +msgstr "" + +#: ../../include/conversation.php:1474 +msgid "Hours" +msgstr "" + +#: ../../include/conversation.php:1474 +msgid "Days" +msgstr "" + +#: ../../include/conversation.php:1475 +msgid "Allow multiple answers" +msgstr "" + +#: ../../include/conversation.php:1485 +msgid "Summary (optional)" +msgstr "" + +#: ../../include/conversation.php:1760 ../../include/taxonomy.php:672 +#: ../../include/channel.php:1771 ../../Zotlabs/Module/Photos.php:1142 +#: ../../Zotlabs/Lib/ThreadItem.php:241 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "Liker" +msgstr[1] "Liker" + +#: ../../include/conversation.php:1763 ../../Zotlabs/Module/Photos.php:1147 +#: ../../Zotlabs/Lib/ThreadItem.php:246 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "Liker ikke" +msgstr[1] "Liker ikke" + +#: ../../include/conversation.php:1766 +msgctxt "noun" +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "Deltar" +msgstr[1] "Deltar" + +#: ../../include/conversation.php:1769 +msgctxt "noun" +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "Deltar ikke" +msgstr[1] "Deltar ikke" + +#: ../../include/conversation.php:1772 +msgctxt "noun" +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "Ikke bestemt" +msgstr[1] "Ikke bestemt" + +#: ../../include/conversation.php:1775 +msgctxt "noun" +msgid "Agree" +msgid_plural "Agrees" +msgstr[0] "Enig" +msgstr[1] "Enige" + +#: ../../include/conversation.php:1778 +msgctxt "noun" +msgid "Disagree" +msgid_plural "Disagrees" +msgstr[0] "Uenig" +msgstr[1] "Uenige" + +#: ../../include/conversation.php:1781 +msgctxt "noun" +msgid "Abstain" +msgid_plural "Abstains" +msgstr[0] "Avstår" +msgstr[1] "Avstår" + +#: ../../include/selectors.php:17 +msgid "Select a profile to assign to this contact" +msgstr "" + +#: ../../include/selectors.php:45 +msgid "Frequently" +msgstr "Ofte" + +#: ../../include/selectors.php:46 +msgid "Hourly" +msgstr "Hver time" + +#: ../../include/selectors.php:47 +msgid "Twice daily" +msgstr "To ganger daglig" + +#: ../../include/selectors.php:48 +msgid "Daily" +msgstr "Daglig" + +#: ../../include/selectors.php:49 +msgid "Weekly" +msgstr "Ukentlig" + +#: ../../include/selectors.php:50 +msgid "Monthly" +msgstr "Månedlig" + +#: ../../include/selectors.php:64 +msgid "Currently Male" +msgstr "For tiden mann" + +#: ../../include/selectors.php:64 +msgid "Currently Female" +msgstr "For tiden kvinne" + +#: ../../include/selectors.php:64 +msgid "Mostly Male" +msgstr "For det meste mann" + +#: ../../include/selectors.php:64 +msgid "Mostly Female" +msgstr "For det meste kvinne" + +#: ../../include/selectors.php:64 +msgid "Transgender" +msgstr "Transkjønnet" + +#: ../../include/selectors.php:64 +msgid "Intersex" +msgstr "interkjønnet" + +#: ../../include/selectors.php:64 +msgid "Transsexual" +msgstr "Transseksuell" + +#: ../../include/selectors.php:64 +msgid "Hermaphrodite" +msgstr "Hermafroditt" + +#: ../../include/selectors.php:64 ../../include/channel.php:1716 +msgid "Neuter" +msgstr "Intetkjønn" + +#: ../../include/selectors.php:64 ../../include/channel.php:1718 +msgid "Non-specific" +msgstr "Ubestemt" + +#: ../../include/selectors.php:64 +msgid "Undecided" +msgstr "Ubestemt" + +#: ../../include/selectors.php:100 ../../include/selectors.php:119 +msgid "Males" +msgstr "Menn" + +#: ../../include/selectors.php:100 ../../include/selectors.php:119 +msgid "Females" +msgstr "Kvinner" + +#: ../../include/selectors.php:100 +msgid "Gay" +msgstr "Homo" + +#: ../../include/selectors.php:100 +msgid "Lesbian" +msgstr "Lesbisk" + +#: ../../include/selectors.php:100 +msgid "No Preference" +msgstr "Ingen preferanse" + +#: ../../include/selectors.php:100 +msgid "Bisexual" +msgstr "Biseksuell" + +#: ../../include/selectors.php:100 +msgid "Autosexual" +msgstr "Autoseksuell" + +#: ../../include/selectors.php:100 +msgid "Abstinent" +msgstr "Avholdende" + +#: ../../include/selectors.php:100 +msgid "Virgin" +msgstr "Jomfru" + +#: ../../include/selectors.php:100 +msgid "Deviant" +msgstr "Avviker" + +#: ../../include/selectors.php:100 +msgid "Fetish" +msgstr "Fetisj" + +#: ../../include/selectors.php:100 +msgid "Oodles" +msgstr "Masse" + +#: ../../include/selectors.php:100 +msgid "Nonsexual" +msgstr "Ikke-seksuell" + +#: ../../include/selectors.php:138 ../../include/selectors.php:155 +msgid "Single" +msgstr "Enslig" + +#: ../../include/selectors.php:138 +msgid "Lonely" +msgstr "Ensom" + +#: ../../include/selectors.php:138 +msgid "Available" +msgstr "Tilgjengelig" + +#: ../../include/selectors.php:138 +msgid "Unavailable" +msgstr "Ikke tilgjengelig" + +#: ../../include/selectors.php:138 +msgid "Has crush" +msgstr "Er forelsket" + +#: ../../include/selectors.php:138 +msgid "Infatuated" +msgstr "Betatt" + +#: ../../include/selectors.php:138 ../../include/selectors.php:155 +msgid "Dating" +msgstr "Sammen med" + +#: ../../include/selectors.php:138 +msgid "Unfaithful" +msgstr "Utro" + +#: ../../include/selectors.php:138 +msgid "Sex Addict" +msgstr "Sexavhengig" + +#: ../../include/selectors.php:138 ../../include/channel.php:456 +#: ../../include/channel.php:459 ../../Zotlabs/Widget/Affinity.php:38 +#: ../../Zotlabs/Module/Contactedit.php:297 +#: ../../Zotlabs/Module/Connedit.php:581 +msgid "Friends" +msgstr "Venner" + +#: ../../include/selectors.php:138 +msgid "Friends/Benefits" +msgstr "Venner med frynsegoder" + +#: ../../include/selectors.php:138 +msgid "Casual" +msgstr "Tilfeldig" + +#: ../../include/selectors.php:138 +msgid "Engaged" +msgstr "Forlovet" + +#: ../../include/selectors.php:138 ../../include/selectors.php:155 +msgid "Married" +msgstr "Gift" + +#: ../../include/selectors.php:138 +msgid "Imaginarily married" +msgstr "Gift i fantasien" + +#: ../../include/selectors.php:138 +msgid "Partners" +msgstr "Partnere" + +#: ../../include/selectors.php:138 ../../include/selectors.php:155 +msgid "Cohabiting" +msgstr "Samboer" + +#: ../../include/selectors.php:138 +msgid "Common law" +msgstr "Samboer" + +#: ../../include/selectors.php:138 +msgid "Happy" +msgstr "Lykkelig" + +#: ../../include/selectors.php:138 +msgid "Not looking" +msgstr "Ikke på utkikk" + +#: ../../include/selectors.php:138 +msgid "Swinger" +msgstr "Partnerbytte" + +#: ../../include/selectors.php:138 +msgid "Betrayed" +msgstr "Bedratt" + +#: ../../include/selectors.php:138 ../../include/selectors.php:155 +msgid "Separated" +msgstr "Separert" + +#: ../../include/selectors.php:138 +msgid "Unstable" +msgstr "Ustabilt" + +#: ../../include/selectors.php:138 ../../include/selectors.php:155 +msgid "Divorced" +msgstr "Skilt" + +#: ../../include/selectors.php:138 +msgid "Imaginarily divorced" +msgstr "Skilt i fantasien" + +#: ../../include/selectors.php:138 ../../include/selectors.php:155 +msgid "Widowed" +msgstr "Enke" + +#: ../../include/selectors.php:138 +msgid "Uncertain" +msgstr "Usikkert" + +#: ../../include/selectors.php:138 ../../include/selectors.php:155 +msgid "It's complicated" +msgstr "Det er komplisert" + +#: ../../include/selectors.php:138 +msgid "Don't care" +msgstr "Bryr meg ikke" + +#: ../../include/selectors.php:138 +msgid "Ask me" +msgstr "Spør meg" + +#: ../../include/connections.php:136 +msgid "New window" +msgstr "Nytt vindu" + +#: ../../include/connections.php:137 +msgid "Open the selected location in a different window or browser tab" +msgstr "Åpne det valgte stedet i et annet vindu eller nettleser-fane" + +#: ../../include/group.php:23 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "" +"En slettet gruppe med dette navnet ble gjenopprettet. Eksisterende" +" tillatelser for elementet kan gjelde for denne gruppen og" +" fremtidige medlemmer. Hvis du ønsket noe annet, vennligst lag en ny gruppe" +" med et annet navn." + +#: ../../include/group.php:271 +msgid "Add new connections to this privacy group" +msgstr "Legg nye forbindelser i denne personverngruppen" + +#: ../../include/group.php:305 +msgid "edit" +msgstr "endre" + +#: ../../include/group.php:327 ../../include/acl_selectors.php:87 +#: ../../Zotlabs/Widget/Activity_filter.php:95 +#: ../../Zotlabs/Module/Group.php:143 ../../Zotlabs/Lib/Apps.php:368 +msgid "Privacy Groups" +msgstr "Personverngrupper" + +#: ../../include/group.php:328 +msgid "Edit group" +msgstr "Endre gruppe" + +#: ../../include/group.php:329 +msgid "Manage privacy groups" +msgstr "" + +#: ../../include/group.php:330 +msgid "Channels not in any privacy group" +msgstr "Kanaler uten personverngruppe" + +#: ../../include/group.php:332 ../../Zotlabs/Widget/Savedsearch.php:90 +msgid "add" +msgstr "legg til" + +#: ../../include/taxonomy.php:323 +msgid "Trending" +msgstr "" + +#: ../../include/taxonomy.php:323 ../../include/taxonomy.php:460 +#: ../../include/taxonomy.php:481 ../../Zotlabs/Widget/Tagcloud.php:27 +msgid "Tags" +msgstr "Merkelapper" + +#: ../../include/taxonomy.php:561 +msgid "Keywords" +msgstr "Nøkkelord" + +#: ../../include/taxonomy.php:582 +msgid "have" +msgstr "har" + +#: ../../include/taxonomy.php:582 +msgid "has" +msgstr "har" + +#: ../../include/taxonomy.php:583 +msgid "want" +msgstr "ønsker" + +#: ../../include/taxonomy.php:583 +msgid "wants" +msgstr "ønsker" + +#: ../../include/taxonomy.php:584 ../../Zotlabs/Lib/ThreadItem.php:317 +msgid "like" +msgstr "liker" + +#: ../../include/taxonomy.php:584 +msgid "likes" +msgstr "liker" + +#: ../../include/taxonomy.php:585 ../../Zotlabs/Lib/ThreadItem.php:318 +msgid "dislike" +msgstr "misliker" + +#: ../../include/taxonomy.php:585 +msgid "dislikes" +msgstr "misliker" + +#: ../../include/items.php:1040 +msgid "(Unknown)" +msgstr "(Ukjent)" + +#: ../../include/items.php:1228 +msgid "Visible to anybody on the internet." +msgstr "Synlig for enhver på Internett." + +#: ../../include/items.php:1230 +msgid "Visible to you only." +msgstr "Synlig bare for deg." + +#: ../../include/items.php:1232 +msgid "Visible to anybody in this network." +msgstr "Synlig for enhver i dette nettverket." + +#: ../../include/items.php:1234 +msgid "Visible to anybody authenticated." +msgstr "Synlig for enhver som er autentisert." + +#: ../../include/items.php:1236 +#, php-format +msgid "Visible to anybody on %s." +msgstr "Synlig for alle på %s." + +#: ../../include/items.php:1238 +msgid "Visible to all connections." +msgstr "Synlig for alle forbindelser." + +#: ../../include/items.php:1240 +msgid "Visible to approved connections." +msgstr "Synlig for godkjente forbindelser." + +#: ../../include/items.php:1242 +msgid "Visible to specific connections." +msgstr "Synlig for spesifikke forbindelser." + +#: ../../include/items.php:3302 ../../Zotlabs/Module/Share.php:104 +#, php-format +msgid "🔁 Repeated %1$s's %2$s" +msgstr "" + +#: ../../include/items.php:4394 ../../Zotlabs/Module/Group.php:62 +#: ../../Zotlabs/Module/Group.php:206 +msgid "Privacy group not found." +msgstr "Personverngruppen ble ikke funnet" + +#: ../../include/items.php:4410 +msgid "Privacy group is empty." +msgstr "Personverngruppen er tom." + +#: ../../include/items.php:4417 +#, php-format +msgid "Privacy group: %s" +msgstr "Personverngruppe: %s" + +#: ../../include/items.php:4427 +#, php-format +msgid "Connection: %s" +msgstr "Forbindelse: %s" + +#: ../../include/items.php:4429 +msgid "Connection not found." +msgstr "Forbindelsen ble ikke funnet." + +#: ../../include/items.php:4775 ../../Zotlabs/Module/Cover_photo.php:297 +msgid "female" +msgstr "kvinne" + +#: ../../include/items.php:4776 ../../Zotlabs/Module/Cover_photo.php:298 +#, php-format +msgid "%1$s updated her %2$s" +msgstr "%1$s oppdaterte %2$s sitt" + +#: ../../include/items.php:4777 ../../Zotlabs/Module/Cover_photo.php:299 +msgid "male" +msgstr "mann" + +#: ../../include/items.php:4778 ../../Zotlabs/Module/Cover_photo.php:300 +#, php-format +msgid "%1$s updated his %2$s" +msgstr "%1$s oppdaterte %2$s sitt" + +#: ../../include/items.php:4780 ../../Zotlabs/Module/Cover_photo.php:302 +#, php-format +msgid "%1$s updated their %2$s" +msgstr "%1$s oppdaterte %2$s deres" + +#: ../../include/items.php:4782 +msgid "profile photo" +msgstr "profilbilde" + +#: ../../include/items.php:4979 +#, php-format +msgid "[Edited %s]" +msgstr "" + +#: ../../include/items.php:4979 +#, fuzzy +msgctxt "edit_activity" +msgid "Post" +msgstr "" + +#: ../../include/items.php:4979 +#, fuzzy +msgctxt "edit_activity" +msgid "Comment" +msgstr "" + +#: ../../include/account.php:38 +msgid "The provided email address is not valid" +msgstr "" + +#: ../../include/account.php:41 +msgid "The provided email domain is not among those allowed on this site" +msgstr "" + +#: ../../include/account.php:48 +msgid "The provided email address is already registered at this site" +msgstr "" + +#: ../../include/account.php:55 +msgid "" +"There is a pending registration for this address - click \"Register\" to " +"continue verification" +msgstr "" + +#: ../../include/account.php:94 +msgid "An invitation is required." +msgstr "En invitasjon er påkrevd." + +#: ../../include/account.php:103 +msgid "Invitation could not be verified." +msgstr "Invitasjon kunne ikke bekreftes." + +#: ../../include/account.php:191 +msgid "Please enter the required information." +msgstr "Vennligst skriv inn nødvendig informasjon." + +#: ../../include/account.php:258 ../../include/account.php:366 +msgid "Failed to store account information." +msgstr "Mislyktes med å lagre kontoinformasjon." + +#: ../../include/account.php:435 ../../include/account.php:503 +#: ../../Zotlabs/Module/Register.php:328 +#, php-format +msgid "Registration confirmation for %s" +msgstr "Registreringsbekreftelse for %s" + +#: ../../include/account.php:578 +#, php-format +msgid "Registration request at %s" +msgstr "Registreringsforespørsel hos %s" + +#: ../../include/account.php:600 +msgid "your registration password" +msgstr "ditt registreringspassord" + +#: ../../include/account.php:606 ../../include/account.php:695 +#, php-format +msgid "Registration details for %s" +msgstr "Registreringsdetaljer for %s" + +#: ../../include/account.php:706 +msgid "Account approved." +msgstr "Konto godkjent." + +#: ../../include/account.php:762 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registrering trukket tilbake for %s" + +#: ../../include/account.php:769 +#, php-format +msgid "Could not revoke registration for %s" +msgstr "" + +#: ../../include/account.php:1185 ../../include/account.php:1187 +msgid "Click here to upgrade." +msgstr "Klikk her for å oppgradere." + +#: ../../include/account.php:1193 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Denne handlingen går utenfor grensene satt i din abonnementsplan." + +#: ../../include/account.php:1198 +msgid "This action is not available under your subscription plan." +msgstr "Denne handlingen er ikke tilgjengelig i din abonnementsplan." + +#: ../../include/account.php:1258 +msgid "open" +msgstr "" + +#: ../../include/account.php:1258 +msgid "closed" +msgstr "" + +#: ../../include/account.php:1265 +msgid "Registration is currently" +msgstr "" + +#: ../../include/account.php:1274 +msgid "please come back" +msgstr "" + +#: ../../include/photo/photo_driver.php:449 +#: ../../Zotlabs/Module/Profile_photo.php:167 +#: ../../Zotlabs/Module/Profile_photo.php:337 +msgid "Profile Photos" +msgstr "Profilbilder" + +#: ../../include/attach.php:273 ../../include/attach.php:324 +#: ../../include/attach.php:419 +msgid "Item was not found." +msgstr "Elementet ble ikke funnet." + +#: ../../include/attach.php:290 +msgid "Unknown error." +msgstr "" + +#: ../../include/attach.php:612 +msgid "No source file." +msgstr "Ingen kildefil." + +#: ../../include/attach.php:634 +msgid "Cannot locate file to replace" +msgstr "Kan ikke finne filen som skal byttes ut" + +#: ../../include/attach.php:653 +msgid "Cannot locate file to revise/update" +msgstr "Finner ikke filen som skal revideres/oppdateres" + +#: ../../include/attach.php:800 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "Filens størrelse overgår grensen på %d" + +#: ../../include/attach.php:821 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgstr "Du har nådd din lagringsgrense for vedlegg på %1$.0f Mbytes." + +#: ../../include/attach.php:1009 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "" +"Mislyktes med å laste opp filen. Mulig systemgrense eller handling avbrutt." + +#: ../../include/attach.php:1038 +msgid "Stored file could not be verified. Upload failed." +msgstr "Lagret fil kunne ikke bekreftes. Opplasting mislyktes." + +#: ../../include/attach.php:1110 ../../include/attach.php:1126 +msgid "Path not available." +msgstr "Stien er ikke tilgjengelig." + +#: ../../include/attach.php:1174 ../../include/attach.php:1337 +msgid "Empty pathname" +msgstr "Tomt sti-navn" + +#: ../../include/attach.php:1200 +msgid "duplicate filename or path" +msgstr "duplikat av filnavn eller sti" + +#: ../../include/attach.php:1225 +msgid "Path not found." +msgstr "Stien ble ikke funnet." + +#: ../../include/attach.php:1293 +msgid "mkdir failed." +msgstr "mkdir mislyktes." + +#: ../../include/attach.php:1297 +msgid "database storage failed." +msgstr "databaselagring mislyktes." + +#: ../../include/attach.php:1343 +msgid "Empty path" +msgstr "Tom sti" + +#: ../../include/attach.php:2104 +#, php-format +msgid "%s shared a %s with you" +msgstr "" + +#: ../../include/bookmarks.php:34 +#, php-format +msgid "%1$s's bookmarks" +msgstr "%1$s sine bokmerker" + +#: ../../include/bbcode.php:233 ../../include/bbcode.php:937 +#: ../../include/bbcode.php:1558 ../../include/bbcode.php:1566 +msgid "Image/photo" +msgstr "Bilde/fotografi" + +#: ../../include/bbcode.php:280 ../../include/bbcode.php:1583 +msgid "Encrypted content" +msgstr "Kryptert innhold" + +#: ../../include/bbcode.php:334 +#, php-format +msgid "Install %1$s element %2$s" +msgstr "" + +#: ../../include/bbcode.php:338 +#, php-format +msgid "" +"This post contains an installable %s element, however you lack permissions " +"to install it on this site." +msgstr "" +"Dette innlegget inneholder det installerbare elementet %s, men du mangler" +" tillatelse til å installere det på dette nettstedet." + +#: ../../include/bbcode.php:348 ../../Zotlabs/Module/Impel.php:47 +msgid "webpage" +msgstr "nettside" + +#: ../../include/bbcode.php:351 ../../Zotlabs/Module/Impel.php:57 +msgid "layout" +msgstr "layout" + +#: ../../include/bbcode.php:354 ../../Zotlabs/Module/Impel.php:52 +msgid "block" +msgstr "byggekloss" + +#: ../../include/bbcode.php:357 ../../Zotlabs/Module/Impel.php:64 +msgid "menu" +msgstr "meny" + +#: ../../include/bbcode.php:560 +msgid "card" +msgstr "" + +#: ../../include/bbcode.php:562 +msgid "article" +msgstr "" + +#: ../../include/bbcode.php:568 ../../include/markdown.php:203 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s skrev følgende %2$s %3$s" + +#: ../../include/bbcode.php:645 ../../include/bbcode.php:653 +msgid "Click to open/close" +msgstr "Klikk for å åpne/lukke" + +#: ../../include/bbcode.php:653 ../../include/markdown.php:256 +msgid "spoiler" +msgstr "" + +#: ../../include/bbcode.php:666 +msgid "View article" +msgstr "" + +#: ../../include/bbcode.php:666 +msgid "View summary" +msgstr "" + +#: ../../include/bbcode.php:1534 +msgid "$1 wrote:" +msgstr "$1 skrev:" + +#: ../../include/channel.php:48 +msgid "Unable to obtain identity information from database" +msgstr "Klarer ikke å få tak i identitetsinformasjon fra databasen" + +#: ../../include/channel.php:81 +msgid "Empty name" +msgstr "Mangler navn" + +#: ../../include/channel.php:84 +msgid "Name too long" +msgstr "Navnet er for langt" + +#: ../../include/channel.php:201 +msgid "No account identifier" +msgstr "Ingen kontoidentifikator" + +#: ../../include/channel.php:213 ../../Zotlabs/Module/Register.php:95 +msgid "Nickname is required." +msgstr "Kallenavn er påkrevd." + +#: ../../include/channel.php:227 ../../include/channel.php:659 +#: ../../Zotlabs/Module/Register.php:100 ../../Zotlabs/Module/Changeaddr.php:46 +msgid "Reserved nickname. Please choose another." +msgstr "Reservert kallenavn. Vennligst velg et annet." + +#: ../../include/channel.php:232 ../../include/channel.php:664 +#: ../../Zotlabs/Module/Register.php:105 ../../Zotlabs/Module/Changeaddr.php:51 +msgid "" +"Nickname has unsupported characters or is already being used on this site." +msgstr "" +"Kallenavnet inneholder tegn som ikke er støttet eller det er allerede i bruk" +" på dette nettstedet." + +#: ../../include/channel.php:292 +msgid "Unable to retrieve created identity" +msgstr "Klarer ikke å hente den lagede identiteten" + +#: ../../include/channel.php:402 +msgid "Default Profile" +msgstr "Standardprofil" + +#: ../../include/channel.php:592 ../../include/channel.php:681 +msgid "Unable to retrieve modified identity" +msgstr "" + +#: ../../include/channel.php:1373 +msgid "Requested channel is not available" +msgstr "" + +#: ../../include/channel.php:1523 ../../Zotlabs/Module/Profiles.php:745 +msgid "Change profile photo" +msgstr "Endre profilbilde" + +#: ../../include/channel.php:1531 +msgid "Create New Profile" +msgstr "Lag ny profil" + +#: ../../include/channel.php:1549 ../../Zotlabs/Module/Profiles.php:842 +msgid "Profile Image" +msgstr "Profilbilde" + +#: ../../include/channel.php:1552 +msgid "Visible to everybody" +msgstr "" + +#: ../../include/channel.php:1553 ../../Zotlabs/Module/Profiles.php:742 +#: ../../Zotlabs/Module/Profiles.php:846 +msgid "Edit visibility" +msgstr "Endre synlighet" + +#: ../../include/channel.php:1629 ../../include/channel.php:1755 +msgid "Gender:" +msgstr "Kjønn:" + +#: ../../include/channel.php:1630 ../../include/channel.php:1799 +msgid "Status:" +msgstr "Status:" + +#: ../../include/channel.php:1631 ../../include/channel.php:1823 +msgid "Homepage:" +msgstr "Hjemmeside:" + +#: ../../include/channel.php:1632 ../../include/channel.php:1825 +#: ../../Zotlabs/Module/Directory.php:366 +msgid "Hometown:" +msgstr "Hjemby:" + +#: ../../include/channel.php:1633 +msgid "Online Now" +msgstr "Online nå" + +#: ../../include/channel.php:1683 +msgid "Change your profile photo" +msgstr "" + +#: ../../include/channel.php:1714 +msgid "Trans" +msgstr "" + +#: ../../include/channel.php:1753 +msgid "Full Name:" +msgstr "Fullt navn:" + +#: ../../include/channel.php:1760 +msgid "Like this channel" +msgstr "Lik denne kanalen" + +#: ../../include/channel.php:1784 +msgid "j F, Y" +msgstr "j F, Y" + +#: ../../include/channel.php:1785 +msgid "j F" +msgstr "j F" + +#: ../../include/channel.php:1792 +msgid "Birthday:" +msgstr "Fødselsdag:" + +#: ../../include/channel.php:1796 ../../Zotlabs/Module/Directory.php:348 +msgid "Age:" +msgstr "Alder:" + +#: ../../include/channel.php:1805 +#, php-format +msgid "for %1$d %2$s" +msgstr "for %1$d %2$s" + +#: ../../include/channel.php:1817 +msgid "Tags:" +msgstr "Merkelapper:" + +#: ../../include/channel.php:1821 +msgid "Sexual Preference:" +msgstr "Seksuell preferanse:" + +#: ../../include/channel.php:1827 +msgid "Political Views:" +msgstr "Politiske synspunkter:" + +#: ../../include/channel.php:1829 +msgid "Religion:" +msgstr "Religion:" + +#: ../../include/channel.php:1831 ../../Zotlabs/Module/Directory.php:368 +msgid "About:" +msgstr "Om:" + +#: ../../include/channel.php:1833 +msgid "Hobbies/Interests:" +msgstr "Hobbyer/interesser:" + +#: ../../include/channel.php:1835 +msgid "Likes:" +msgstr "Liker:" + +#: ../../include/channel.php:1837 +msgid "Dislikes:" +msgstr "Misliker:" + +#: ../../include/channel.php:1839 +msgid "Contact information and Social Networks:" +msgstr "Kontaktinformasjon og sosiale nettverk:" + +#: ../../include/channel.php:1841 +msgid "My other channels:" +msgstr "Mine andre kanaler:" + +#: ../../include/channel.php:1843 +msgid "Musical interests:" +msgstr "Musikkinteresse:" + +#: ../../include/channel.php:1845 +msgid "Books, literature:" +msgstr "Bøker, litteratur:" + +#: ../../include/channel.php:1847 +msgid "Television:" +msgstr "TV:" + +#: ../../include/channel.php:1849 +msgid "Film/dance/culture/entertainment:" +msgstr "Film/dans/kultur/underholdning:" + +#: ../../include/channel.php:1851 +msgid "Love/Romance:" +msgstr "Kjærlighet/romantikk:" + +#: ../../include/channel.php:1853 +msgid "Work/employment:" +msgstr "Arbeid/sysselsetting:" + +#: ../../include/channel.php:1855 +msgid "School/education:" +msgstr "Skole/utdannelse:" + +#: ../../include/channel.php:1876 ../../Zotlabs/Module/Profperm.php:113 +#: ../../Zotlabs/Lib/Apps.php:366 +msgid "Profile" +msgstr "Profil" + +#: ../../include/channel.php:1878 +msgid "Like this thing" +msgstr "Lik denne tingen" + +#: ../../include/channel.php:1879 +msgid "Export" +msgstr "Eksport" + +#: ../../include/channel.php:2332 ../../Zotlabs/Module/Cover_photo.php:304 +msgid "cover photo" +msgstr "forsidebilde" + +#: ../../include/channel.php:2607 ../../Zotlabs/Module/Rmagic.php:96 +#: ../../boot.php:1749 +msgid "Remote Authentication" +msgstr "Fjernautentisering" + +#: ../../include/channel.php:2608 ../../Zotlabs/Module/Rmagic.php:97 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Skriv din kanaladresse (for eksempel channel@exampel.com)" + +#: ../../include/channel.php:2609 ../../Zotlabs/Module/Rmagic.php:98 +msgid "Authenticate" +msgstr "Autentiser" + +#: ../../include/channel.php:2767 ../../Zotlabs/Module/Admin/Accounts.php:184 +#, php-format +msgid "Account '%s' deleted" +msgstr "Kontoen '%s' slettet" + +#: ../../include/acl_selectors.php:33 +#: ../../Zotlabs/Lib/PermissionDescription.php:34 +msgid "Visible to your default audience" +msgstr "Synlig for ditt standard publikum" + +#: ../../include/acl_selectors.php:100 +msgid "Profile-Based Privacy Groups" +msgstr "" + +#: ../../include/acl_selectors.php:119 +msgid "Private Forum" +msgstr "" + +#: ../../include/acl_selectors.php:125 ../../Zotlabs/Widget/Forums.php:77 +#: ../../Zotlabs/Widget/Activity_filter.php:130 +#: ../../Zotlabs/Widget/Notifications.php:131 +#: ../../Zotlabs/Widget/Notifications.php:132 +msgid "Forums" +msgstr "Forum" + +#: ../../include/acl_selectors.php:136 +#: ../../Zotlabs/Module/Settings/Privacy.php:56 +#: ../../Zotlabs/Lib/PermissionDescription.php:107 +msgid "Only me" +msgstr "" + +#: ../../include/acl_selectors.php:143 +msgid "Share with" +msgstr "" + +#: ../../include/acl_selectors.php:144 +msgid "Custom selection" +msgstr "" + +#: ../../include/acl_selectors.php:146 +msgid "" +"Select \"Allow\" to allow viewing. \"Don't allow\" lets you override and " +"limit the scope of \"Allow\"." +msgstr "" + +#: ../../include/acl_selectors.php:147 ../../Zotlabs/Module/Authorize.php:32 +msgid "Allow" +msgstr "" + +#: ../../include/acl_selectors.php:148 +msgid "Don't allow" +msgstr "" + +#: ../../include/acl_selectors.php:181 +#, php-format +msgid "" +"Post permissions %s cannot be changed %s after a post is shared.
These " +"permissions set who is allowed to view the post." +msgstr "" + +#: ../../include/oembed.php:154 +msgid "View PDF" +msgstr "" + +#: ../../include/oembed.php:386 +msgid " by " +msgstr "" + +#: ../../include/oembed.php:387 +msgid " on " +msgstr "" + +#: ../../include/oembed.php:416 +msgid "Embedded content" +msgstr "Innebygget innhold" + +#: ../../include/oembed.php:425 +msgid "Embedding disabled" +msgstr "Innbygging avskrudd" + +#: ../../include/zid.php:408 +#, php-format +msgid "OpenWebAuth: %1$s welcomes %2$s" +msgstr "OpenWebAuth: %1$s ønsker %2$s velkommen" + +#: ../../Zotlabs/Widget/Activity_order.php:96 +msgid "Commented Date" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_order.php:100 +msgid "Order by last commented date" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_order.php:103 +msgid "Posted Date" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_order.php:107 +msgid "Order by last posted date" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_order.php:110 +msgid "Date Unthreaded" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_order.php:114 +msgid "Order unthreaded by date" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_order.php:129 +msgid "Stream Order" +msgstr "" + +#: ../../Zotlabs/Widget/Tokens.php:41 +msgid "Add new guest" +msgstr "" + +#: ../../Zotlabs/Widget/Tokens.php:49 ../../Zotlabs/Module/Lockview.php:226 +msgid "Guest access" +msgstr "" + +#: ../../Zotlabs/Widget/Archive.php:49 +msgid "Archives" +msgstr "Arkiv" + +#: ../../Zotlabs/Widget/Album.php:84 ../../Zotlabs/Widget/Portfolio.php:91 +#: ../../Zotlabs/Module/Embedphotos.php:171 ../../Zotlabs/Module/Photos.php:793 +#: ../../Zotlabs/Module/Photos.php:1337 +msgid "View Photo" +msgstr "Vis foto" + +#: ../../Zotlabs/Widget/Album.php:101 ../../Zotlabs/Widget/Portfolio.php:112 +#: ../../Zotlabs/Module/Embedphotos.php:187 ../../Zotlabs/Module/Photos.php:824 +msgid "Edit Album" +msgstr "Endre album" + +#: ../../Zotlabs/Widget/Album.php:103 ../../Zotlabs/Widget/Cdav.php:150 +#: ../../Zotlabs/Widget/Cdav.php:186 ../../Zotlabs/Widget/Portfolio.php:114 +#: ../../Zotlabs/Module/Embedphotos.php:189 +#: ../../Zotlabs/Module/Profile_photo.php:547 +#: ../../Zotlabs/Module/Cover_photo.php:423 ../../Zotlabs/Module/Photos.php:692 +#: ../../Zotlabs/Storage/Browser.php:540 +msgid "Upload" +msgstr "Last opp" + +#: ../../Zotlabs/Widget/Tasklist.php:31 +msgid "Tasks" +msgstr "Oppgaver" + +#: ../../Zotlabs/Widget/Chatroom_members.php:17 +msgid "Chat Members" +msgstr "" + +#: ../../Zotlabs/Widget/Channel_activities.php:214 +msgctxt "noun" +msgid "new connection" +msgid_plural "new connections" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Widget/Channel_activities.php:220 +msgctxt "noun" +msgid "notice" +msgid_plural "notices" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Widget/Pinned.php:73 ../../Zotlabs/Lib/ThreadItem.php:214 +msgid "I will attend" +msgstr "Jeg vil delta" + +#: ../../Zotlabs/Widget/Pinned.php:73 ../../Zotlabs/Lib/ThreadItem.php:214 +msgid "I will not attend" +msgstr "Jeg deltar ikke" + +#: ../../Zotlabs/Widget/Pinned.php:73 ../../Zotlabs/Lib/ThreadItem.php:214 +msgid "I might attend" +msgstr "Jeg vil kanskje delta" + +#: ../../Zotlabs/Widget/Pinned.php:84 +msgid "I agree" +msgstr "Jeg er enig" + +#: ../../Zotlabs/Widget/Pinned.php:84 +msgid "I disagree" +msgstr "Jeg er uenig" + +#: ../../Zotlabs/Widget/Pinned.php:84 +msgid "I abstain" +msgstr "Jeg avstår" + +#: ../../Zotlabs/Widget/Pinned.php:102 ../../Zotlabs/Lib/ThreadItem.php:331 +msgid "Share This" +msgstr "Del dette" + +#: ../../Zotlabs/Widget/Pinned.php:102 ../../Zotlabs/Lib/ThreadItem.php:331 +msgid "share" +msgstr "del" + +#: ../../Zotlabs/Widget/Pinned.php:125 ../../Zotlabs/Widget/Pinned.php:126 +#, php-format +msgid "View %s's profile - %s" +msgstr "Vis %s sin profil - %s" + +#: ../../Zotlabs/Widget/Pinned.php:130 ../../Zotlabs/Widget/Messages.php:104 +#: ../../Zotlabs/Lib/ThreadItem.php:421 +msgid "via" +msgstr "via" + +#: ../../Zotlabs/Widget/Pinned.php:144 ../../Zotlabs/Lib/ThreadItem.php:452 +msgid "Attendance Options" +msgstr "" + +#: ../../Zotlabs/Widget/Pinned.php:145 ../../Zotlabs/Lib/ThreadItem.php:454 +msgid "Voting Options" +msgstr "" + +#: ../../Zotlabs/Widget/Pinned.php:157 ../../Zotlabs/Lib/ThreadItem.php:478 +msgid "Pinned post" +msgstr "" + +#: ../../Zotlabs/Widget/Pinned.php:159 +msgid "Don't show" +msgstr "Ikke vis" + +#: ../../Zotlabs/Widget/Activity.php:55 +msgctxt "widget" +msgid "Activity" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:41 +msgid "Select Channel" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:46 +msgid "Read-write" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:47 +msgid "Read-only" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:131 +msgid "Channel Calendar" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:133 ../../Zotlabs/Widget/Cdav.php:147 +#: ../../Zotlabs/Module/Cdav.php:1054 +msgid "CalDAV Calendars" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:135 +msgid "Shared CalDAV Calendars" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:139 +msgid "Share this calendar" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:141 +msgid "Calendar name and color" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:143 +msgid "Create new CalDAV calendar" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:144 ../../Zotlabs/Widget/Cdav.php:182 +#: ../../Zotlabs/Module/Cdav.php:1058 ../../Zotlabs/Module/Cdav.php:1387 +#: ../../Zotlabs/Module/Webpages.php:251 +#: ../../Zotlabs/Module/New_channel.php:189 ../../Zotlabs/Module/Blocks.php:159 +#: ../../Zotlabs/Module/Menu.php:182 ../../Zotlabs/Module/Connedit.php:747 +#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Storage/Browser.php:365 +#: ../../Zotlabs/Storage/Browser.php:538 +msgid "Create" +msgstr "Lag" + +#: ../../Zotlabs/Widget/Cdav.php:145 +msgid "Calendar Name" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:146 +msgid "Calendar Tools" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:147 ../../Zotlabs/Module/Cdav.php:1054 +msgid "Channel Calendars" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:148 +msgid "Import calendar" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:149 +msgid "Select a calendar to import to" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:176 +msgid "Addressbooks" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:178 +msgid "Addressbook name" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:180 +msgid "Create new addressbook" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:181 +msgid "Addressbook Name" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:183 +msgid "Addressbook Tools" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:184 +msgid "Import addressbook" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:185 +msgid "Select an addressbook to import to" +msgstr "" + +#: ../../Zotlabs/Widget/Savedsearch.php:81 +msgid "Remove term" +msgstr "Fjern begrep" + +#: ../../Zotlabs/Widget/Suggestedchats.php:36 +msgid "Suggested Chatrooms" +msgstr "Foreslåtte chatrom" + +#: ../../Zotlabs/Widget/Settings_menu.php:37 +msgid "Account settings" +msgstr "Kontoinnstillinger" + +#: ../../Zotlabs/Widget/Settings_menu.php:43 +msgid "Channel settings" +msgstr "Kanalinnstillinger" + +#: ../../Zotlabs/Widget/Settings_menu.php:49 +msgid "Privacy settings" +msgstr "" + +#: ../../Zotlabs/Widget/Settings_menu.php:56 +msgid "Display settings" +msgstr "Visningsinnstillinger" + +#: ../../Zotlabs/Widget/Settings_menu.php:63 +msgid "Manage locations" +msgstr "" + +#: ../../Zotlabs/Widget/Chatroom_list.php:26 +msgid "Overview" +msgstr "" + +#: ../../Zotlabs/Widget/Suggestions.php:53 ../../Zotlabs/Module/Suggest.php:71 +msgid "Ignore/Hide" +msgstr "Ignorer/Skjul" + +#: ../../Zotlabs/Widget/Suggestions.php:58 +msgid "Suggestions" +msgstr "Forslag" + +#: ../../Zotlabs/Widget/Suggestions.php:59 +msgid "See more..." +msgstr "Se mer..." + +#: ../../Zotlabs/Widget/Bookmarkedchats.php:25 +msgid "Bookmarked Chatrooms" +msgstr "Bokmerkede chatrom" + +#: ../../Zotlabs/Widget/Appcategories.php:49 +msgid "App Categories" +msgstr "" + +#: ../../Zotlabs/Widget/Hq_controls.php:23 +msgid "Toggle post editor" +msgstr "" + +#: ../../Zotlabs/Widget/Hq_controls.php:33 +msgid "Toggle personal notes" +msgstr "" + +#: ../../Zotlabs/Widget/Hq_controls.php:43 +msgid "Channel activities" +msgstr "" + +#: ../../Zotlabs/Widget/Permcats.php:42 +msgid "Add new role" +msgstr "" + +#: ../../Zotlabs/Widget/Permcats.php:93 +#: ../../Zotlabs/Module/Contactedit.php:409 +msgid "Contact roles" +msgstr "" + +#: ../../Zotlabs/Widget/Permcats.php:94 +msgid "Role members" +msgstr "" + +#: ../../Zotlabs/Widget/Photo.php:54 ../../Zotlabs/Widget/Photo_rand.php:63 +msgid "photo/image" +msgstr "foto/bilde" + +#: ../../Zotlabs/Widget/Admin.php:27 ../../Zotlabs/Module/Admin/Site.php:414 +msgid "Site" +msgstr "Nettsted" + +#: ../../Zotlabs/Widget/Admin.php:28 +#: ../../Zotlabs/Module/Admin/Accounts.php:308 +#: ../../Zotlabs/Module/Admin/Accounts.php:327 +#: ../../Zotlabs/Module/Admin.php:95 +msgid "Accounts" +msgstr "Kontoer" + +#: ../../Zotlabs/Widget/Admin.php:28 ../../Zotlabs/Widget/Admin.php:65 +msgid "Member registrations waiting for confirmation" +msgstr "" + +#: ../../Zotlabs/Widget/Admin.php:30 ../../Zotlabs/Module/Admin/Security.php:99 +msgid "Security" +msgstr "Sikkerhet" + +#: ../../Zotlabs/Widget/Admin.php:31 ../../Zotlabs/Lib/Apps.php:362 +msgid "Features" +msgstr "Funksjoner" + +#: ../../Zotlabs/Widget/Admin.php:32 ../../Zotlabs/Module/Admin/Addons.php:343 +#: ../../Zotlabs/Module/Admin/Addons.php:441 +msgid "Addons" +msgstr "Tillegg" + +#: ../../Zotlabs/Widget/Admin.php:33 ../../Zotlabs/Module/Admin/Themes.php:123 +#: ../../Zotlabs/Module/Admin/Themes.php:157 +msgid "Themes" +msgstr "Utseende" + +#: ../../Zotlabs/Widget/Admin.php:34 +msgid "Inspect queue" +msgstr "Inspiser kø" + +#: ../../Zotlabs/Widget/Admin.php:35 ../../Zotlabs/Module/Admin/Profs.php:168 +msgid "Profile Fields" +msgstr "Profilfelter" + +#: ../../Zotlabs/Widget/Admin.php:36 +msgid "DB updates" +msgstr "Databaseoppdateringer" + +#: ../../Zotlabs/Widget/Admin.php:53 ../../Zotlabs/Widget/Admin.php:63 +#: ../../Zotlabs/Module/Admin/Logs.php:83 +msgid "Logs" +msgstr "Logger" + +#: ../../Zotlabs/Widget/Admin.php:61 +msgid "Addon Features" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:44 +#: ../../Zotlabs/Widget/Notifications.php:62 +msgid "Direct Messages" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:48 +msgid "Show direct (private) messages" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:53 +#: ../../Zotlabs/Widget/Notifications.php:81 +msgid "Events" +msgstr "Hendelser" + +#: ../../Zotlabs/Widget/Activity_filter.php:57 +msgid "Show posts that include events" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:63 +msgid "Polls" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:67 +msgid "Show posts that include polls" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:90 +#, php-format +msgid "Show posts related to the %s privacy group" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:99 +msgid "Show my privacy groups" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:123 +msgid "Show posts to this forum" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:134 +msgid "Show forums" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:148 +msgid "Starred Posts" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:152 +msgid "Show posts that I have starred" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:163 +msgid "Personal Posts" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:167 +msgid "Show posts that mention or involve me" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:190 +#, php-format +msgid "Show posts that I have filed to %s" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:200 +msgid "Show filed post categories" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:214 +msgid "Panel search" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:224 +msgid "Filter by name" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:239 +msgid "Remove active filter" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:255 +msgid "Stream Filters" +msgstr "" + +#: ../../Zotlabs/Widget/Appstore.php:16 +msgid "App Collections" +msgstr "" + +#: ../../Zotlabs/Widget/Appstore.php:18 +msgid "Installed apps" +msgstr "" + +#: ../../Zotlabs/Widget/Appstore.php:19 ../../Zotlabs/Module/Apps.php:50 +msgid "Available Apps" +msgstr "" + +#: ../../Zotlabs/Widget/Privacygroups.php:45 +msgid "Add new group" +msgstr "" + +#: ../../Zotlabs/Widget/Privacygroups.php:54 +#: ../../Zotlabs/Module/Contactedit.php:443 +msgid "Privacy groups" +msgstr "" + +#: ../../Zotlabs/Widget/Rating.php:57 +msgid "Rating Tools" +msgstr "Vurderingsverktøy" + +#: ../../Zotlabs/Widget/Rating.php:61 ../../Zotlabs/Widget/Rating.php:63 +msgid "Rate Me" +msgstr "Vurder meg" + +#: ../../Zotlabs/Widget/Rating.php:66 +msgid "View Ratings" +msgstr "Vis vurderinger" + +#: ../../Zotlabs/Widget/Cover_photo.php:71 +msgid "Click to show more" +msgstr "" + +#: ../../Zotlabs/Widget/Follow.php:27 ../../Zotlabs/Module/Connections.php:368 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "Du har %1$.0f av %2$.0f tillate forbindelser." + +#: ../../Zotlabs/Widget/Follow.php:34 +msgid "Add New Connection" +msgstr "Legg til ny forbindelse" + +#: ../../Zotlabs/Widget/Follow.php:35 +msgid "Enter channel address" +msgstr "Skriv kanaladressen" + +#: ../../Zotlabs/Widget/Follow.php:36 +msgid "Examples: bob@example.com, https://example.com/barbara" +msgstr "Eksempel: ola@eksempel.no, https://eksempel.no/kari" + +#: ../../Zotlabs/Widget/Messages.php:32 +msgid "Public and restricted messages" +msgstr "" + +#: ../../Zotlabs/Widget/Messages.php:33 +msgid "Direct messages" +msgstr "" + +#: ../../Zotlabs/Widget/Messages.php:34 +msgid "Starred messages" +msgstr "" + +#: ../../Zotlabs/Widget/Messages.php:35 +#: ../../Zotlabs/Widget/Notifications.php:116 +#: ../../Zotlabs/Widget/Notifications.php:117 +msgid "Notices" +msgstr "Varsel" + +#: ../../Zotlabs/Widget/Messages.php:37 +msgid "No messages" +msgstr "" + +#: ../../Zotlabs/Widget/Newmember.php:36 +msgid "Profile Creation" +msgstr "Oppretting av profil" + +#: ../../Zotlabs/Widget/Newmember.php:38 +msgid "Upload profile photo" +msgstr "Last opp profilbilde" + +#: ../../Zotlabs/Widget/Newmember.php:39 +msgid "Upload cover photo" +msgstr "Last opp bannerbilde" + +#: ../../Zotlabs/Widget/Newmember.php:43 +msgid "Find and Connect with others" +msgstr "Finn andre" + +#: ../../Zotlabs/Widget/Newmember.php:45 +msgid "View the directory" +msgstr "Se i katalogen" + +#: ../../Zotlabs/Widget/Newmember.php:46 ../../Zotlabs/Module/Go.php:38 +msgid "View friend suggestions" +msgstr "Vis venneforslag" + +#: ../../Zotlabs/Widget/Newmember.php:47 +msgid "Manage your connections" +msgstr "Behandle forbindelser" + +#: ../../Zotlabs/Widget/Newmember.php:50 +msgid "Communicate" +msgstr "Kommuniser" + +#: ../../Zotlabs/Widget/Newmember.php:52 +msgid "View your channel homepage" +msgstr "Vis kanalens hjemmeside" + +#: ../../Zotlabs/Widget/Newmember.php:53 +msgid "View your network stream" +msgstr "Vis nettverksstrømmen" + +#: ../../Zotlabs/Widget/Newmember.php:59 +msgid "Documentation" +msgstr "Dokumentasjon" + +#: ../../Zotlabs/Widget/Newmember.php:62 +msgid "Missing Features?" +msgstr "Noe som mangler?" + +#: ../../Zotlabs/Widget/Newmember.php:64 +msgid "Pin apps to navigation bar" +msgstr "Fest apper til navigasjonslinjen" + +#: ../../Zotlabs/Widget/Newmember.php:65 +msgid "Install more apps" +msgstr "Legg til flere apper" + +#: ../../Zotlabs/Widget/Newmember.php:76 +msgid "View public stream" +msgstr "" + +#: ../../Zotlabs/Widget/Newmember.php:80 +#: ../../Zotlabs/Module/Settings/Display.php:200 +msgid "New Member Links" +msgstr "Lenker for nye medlemmer" + +#: ../../Zotlabs/Widget/Notes.php:39 +msgid "Read mode" +msgstr "" + +#: ../../Zotlabs/Widget/Notes.php:40 +msgid "Edit mode" +msgstr "" + +#: ../../Zotlabs/Widget/Notes.php:41 +msgid "Editing" +msgstr "" + +#: ../../Zotlabs/Widget/Notes.php:42 +msgid "Saving" +msgstr "" + +#: ../../Zotlabs/Widget/Notes.php:43 +msgid "Saved" +msgstr "" + +#: ../../Zotlabs/Widget/Affinity.php:36 +#: ../../Zotlabs/Module/Contactedit.php:295 +#: ../../Zotlabs/Module/Connedit.php:579 +msgid "Me" +msgstr "Meg" + +#: ../../Zotlabs/Widget/Affinity.php:37 +#: ../../Zotlabs/Module/Contactedit.php:296 +#: ../../Zotlabs/Module/Connedit.php:580 +msgid "Family" +msgstr "Familie" + +#: ../../Zotlabs/Widget/Affinity.php:39 +#: ../../Zotlabs/Module/Contactedit.php:298 +#: ../../Zotlabs/Module/Connedit.php:582 +msgid "Acquaintances" +msgstr "Bekjente" + +#: ../../Zotlabs/Widget/Affinity.php:40 +#: ../../Zotlabs/Module/Contactedit.php:299 +#: ../../Zotlabs/Module/Connections.php:97 +#: ../../Zotlabs/Module/Connections.php:111 +#: ../../Zotlabs/Module/Connedit.php:583 +msgid "All" +msgstr "Alle" + +#: ../../Zotlabs/Widget/Affinity.php:60 +msgid "Refresh" +msgstr "Forny" + +#: ../../Zotlabs/Widget/Notifications.php:24 +msgid "New network activity notifications" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:27 +msgid "Network stream" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:30 +#: ../../Zotlabs/Widget/Notifications.php:69 +msgid "Mark all notifications read" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:33 +#: ../../Zotlabs/Widget/Notifications.php:53 +#: ../../Zotlabs/Widget/Notifications.php:72 +#: ../../Zotlabs/Widget/Notifications.php:164 +msgid "Show new posts only" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:34 +#: ../../Zotlabs/Widget/Notifications.php:54 +#: ../../Zotlabs/Widget/Notifications.php:73 +#: ../../Zotlabs/Widget/Notifications.php:134 +#: ../../Zotlabs/Widget/Notifications.php:165 +msgid "Filter by name or address" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:44 +msgid "New home activity notifications" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:47 +msgid "Home stream" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:50 +#: ../../Zotlabs/Widget/Notifications.php:161 +msgid "Mark all notifications seen" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:63 +msgid "New direct messages notifications" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:66 +msgid "Direct messages stream" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:82 +msgid "New events notifications" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:85 +msgid "View events" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:88 +msgid "Mark all events seen" +msgstr "Merk alle hendelser som sett" + +#: ../../Zotlabs/Widget/Notifications.php:96 +#: ../../Zotlabs/Module/Connections.php:165 +msgid "New Connections" +msgstr "Nye forbindelser" + +#: ../../Zotlabs/Widget/Notifications.php:97 +msgid "New connections notifications" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:100 +msgid "View all connections" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:109 +msgid "New files notifications" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:120 +msgid "View all notices" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:123 +msgid "Mark all notices seen" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:144 +msgid "Registrations" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:145 +msgid "New registrations notifications" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:154 +#: ../../Zotlabs/Module/Pubstream.php:100 ../../Zotlabs/Lib/Apps.php:379 +msgid "Public Stream" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:155 +msgid "New public stream notifications" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:158 +msgid "Public stream" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:172 +msgid "Sorry, you have got no notifications at the moment" +msgstr "" + +#: ../../Zotlabs/Module/Tokens.php:94 +#, php-format +msgid "This channel is limited to %d tokens" +msgstr "" + +#: ../../Zotlabs/Module/Tokens.php:100 +msgid "Name and Password are required." +msgstr "" + +#: ../../Zotlabs/Module/Tokens.php:215 +msgid "Token saved." +msgstr "" + +#: ../../Zotlabs/Module/Tokens.php:261 +msgid "" +"Use this form to create temporary access identifiers to share things with " +"non-members. These identities may be used in privacy groups and visitors may " +"login using these credentials to access private content." +msgstr "" + +#: ../../Zotlabs/Module/Tokens.php:274 +msgid "Please select a role for this guest!" +msgstr "" + +#: ../../Zotlabs/Module/Tokens.php:287 +msgid "Select a role for this guest" +msgstr "" + +#: ../../Zotlabs/Module/Tokens.php:288 ../../Zotlabs/Lib/Apps.php:373 +msgid "Guest Access" +msgstr "" + +#: ../../Zotlabs/Module/Tokens.php:291 +msgid "Login Name" +msgstr "" + +#: ../../Zotlabs/Module/Tokens.php:292 +msgid "Login Password" +msgstr "" + +#: ../../Zotlabs/Module/Tokens.php:293 +msgid "Expires (yyyy-mm-dd)" +msgstr "" + +#: ../../Zotlabs/Module/Attach_edit.php:69 +#: ../../Zotlabs/Module/Filestorage.php:109 +msgid "File not found." +msgstr "Filen ble ikke funnet." + +#: ../../Zotlabs/Module/Attach_edit.php:118 +msgid "Can not copy folder into itself." +msgstr "" + +#: ../../Zotlabs/Module/Attach_edit.php:131 +#, php-format +msgid "Can not move folder \"%s\" into itself." +msgstr "" + +#: ../../Zotlabs/Module/Network.php:106 +msgid "No such group" +msgstr "Gruppen finnes ikke" + +#: ../../Zotlabs/Module/Network.php:158 +msgid "No such channel" +msgstr "Ingen slik kanal" + +#: ../../Zotlabs/Module/Network.php:170 ../../Zotlabs/Module/Channel.php:232 +msgid "Search Results For:" +msgstr "Søkeresultat for:" + +#: ../../Zotlabs/Module/Network.php:211 ../../Zotlabs/Module/Channel.php:267 +#: ../../Zotlabs/Module/Hq.php:101 ../../Zotlabs/Module/Pubstream.php:90 +#: ../../Zotlabs/Module/Display.php:87 +msgid "Reset form" +msgstr "" + +#: ../../Zotlabs/Module/Network.php:246 +msgid "Privacy group is empty" +msgstr "Personverngruppen er tom" + +#: ../../Zotlabs/Module/Network.php:256 +msgid "Privacy group: " +msgstr "Personverngruppe:" + +#: ../../Zotlabs/Module/Import_items.php:50 +msgid "Not a zip file or zip file corrupted." +msgstr "" + +#: ../../Zotlabs/Module/Import_items.php:121 +msgid "Import Items" +msgstr "Importer elementer" + +#: ../../Zotlabs/Module/Import_items.php:122 +msgid "Use this form to import existing posts and content from an export file." +msgstr "" +"Bruk dette skjemaet for å importere eksisterende innlegg og innhold fra en" +" eksportfil." + +#: ../../Zotlabs/Module/Import_items.php:123 +#: ../../Zotlabs/Module/Import.php:594 +msgid "File to Upload" +msgstr "Fil som skal lastes opp" + +#: ../../Zotlabs/Module/Import_items.php:136 +#: ../../Zotlabs/Module/Import.php:107 +msgid "Imported file is empty." +msgstr "Importert fil er tom." + +#: ../../Zotlabs/Module/Import_items.php:159 +msgid "Content import completed" +msgstr "" + +#: ../../Zotlabs/Module/Import_items.php:164 +msgid "Chatroom import completed" +msgstr "" + +#: ../../Zotlabs/Module/Import_items.php:170 +msgid "Channel calendar import 1/2 completed" +msgstr "" + +#: ../../Zotlabs/Module/Import_items.php:176 +msgid "Channel calendar import 2/2 completed" +msgstr "" + +#: ../../Zotlabs/Module/Import_items.php:181 +msgid "Menu import completed" +msgstr "" + +#: ../../Zotlabs/Module/Import_items.php:186 +msgid "Wiki import completed" +msgstr "" + +#: ../../Zotlabs/Module/Import_items.php:191 +msgid "Webpages import completed" +msgstr "" + +#: ../../Zotlabs/Module/Import.php:70 +msgid "Nothing to import." +msgstr "Ingenting å importere." + +#: ../../Zotlabs/Module/Import.php:86 ../../Zotlabs/Module/Import.php:100 +msgid "Unable to download data from old server" +msgstr "Ikke i stand til å laste ned data fra gammel tjener" + +#: ../../Zotlabs/Module/Import.php:163 +#, php-format +msgid "Your service plan only allows %d channels." +msgstr "Din tjenesteplan tillater bare %d kanaler." + +#: ../../Zotlabs/Module/Import.php:190 +msgid "No channel. Import failed." +msgstr "Ingen kanal. Import mislyktes." + +#: ../../Zotlabs/Module/Import.php:557 +msgid "" +"Automatic content and files import was not possible due to API version " +"incompatiblity. Please import content and files manually!" +msgstr "" + +#: ../../Zotlabs/Module/Import.php:585 +msgid "You must be logged in to use this feature." +msgstr "Du må være innlogget for å bruke denne funksjonen." + +#: ../../Zotlabs/Module/Import.php:592 +msgid "Channel Import" +msgstr "" + +#: ../../Zotlabs/Module/Import.php:593 +msgid "" +"Use this form to import an existing channel from a different server/hub. You " +"may retrieve the channel identity from the old server/hub via the network or " +"provide an export file." +msgstr "" +"Bruk dette skjemaet for å importere en eksisterende kanal fra en annen" +" tjener/hub. Du kan hente inn kanalidentiteten fra den gamle tjeneren/huben" +" via nettverket eller ved å bruke en eksportfil." + +#: ../../Zotlabs/Module/Import.php:595 +msgid "Or provide the old server/hub details" +msgstr "Eller oppgi detaljene fra den gamle tjeneren/hub-en" + +#: ../../Zotlabs/Module/Import.php:597 +msgid "Your old identity address (xyz@example.com)" +msgstr "Din gamle identitetsadresse (xyz@example.com)" + +#: ../../Zotlabs/Module/Import.php:598 +msgid "Your old login email address" +msgstr "Din gamle innloggings e-postadresse" + +#: ../../Zotlabs/Module/Import.php:599 +msgid "Your old login password" +msgstr "Ditt gamle innloggingspassord" + +#: ../../Zotlabs/Module/Import.php:600 +msgid "Import your items and files (limited by available memory)" +msgstr "" + +#: ../../Zotlabs/Module/Import.php:602 +msgid "" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be " +"able to post from either location, but only one can be marked as the primary " +"location for files, photos, and media." +msgstr "" +"Enten du tar det ene eller det andre valget, vennligst angi om du vil at" +" denne hubben skal være din nye primære adresse, eller om din gamle" +" plassering skal fortsette å ha denne rollen. Du kan lage innlegg fra den ene" +" eller den andre plasseringen, men bare en av dem kan markeres som den" +" primære plasseringen for filer, bilder og media." + +#: ../../Zotlabs/Module/Import.php:604 +msgid "Make this hub my primary location" +msgstr "Gjør dette nettstedet til min primære plassering" + +#: ../../Zotlabs/Module/Import.php:605 +msgid "Move this channel (disable all previous locations)" +msgstr "" + +#: ../../Zotlabs/Module/Import.php:606 +msgid "Use this channel nickname instead of the one provided" +msgstr "" + +#: ../../Zotlabs/Module/Import.php:606 +msgid "" +"Leave blank to keep your existing channel nickname. You will be randomly " +"assigned a similar nickname if either name is already allocated on this site." +msgstr "" + +#: ../../Zotlabs/Module/Import.php:608 +msgid "" +"This process may take several minutes to complete. Please submit the form " +"only once and leave this page open until finished." +msgstr "" +"Denne prosessen kan ta flere minutter å fullføre. Vennligst send inn dette" +" skjemaet bare en gang og la siden være åpen inntil den er ferdig." + +#: ../../Zotlabs/Module/Ochannel.php:32 ../../Zotlabs/Module/Channel.php:44 +#: ../../Zotlabs/Module/Chat.php:29 +msgid "You must be logged in to see this page." +msgstr "Du må være innloegget for å se denne siden." + +#: ../../Zotlabs/Module/Z6trans.php:19 +msgid "Update to Hubzilla 5.0 step 2" +msgstr "" + +#: ../../Zotlabs/Module/Z6trans.php:21 +msgid "To complete the update please run" +msgstr "" + +#: ../../Zotlabs/Module/Z6trans.php:23 +msgid "php util/z6convert.php" +msgstr "" + +#: ../../Zotlabs/Module/Z6trans.php:25 +msgid "from the terminal." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:112 +msgid "Email address required" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:156 +msgid "No password provided" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:179 +msgid "Terms of Service not accepted" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:241 +msgid "Invitation code succesfully applied" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:261 +msgid "Invitation not in time or too late" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:267 +msgid "Invitation email failed" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:275 +msgid "Invitation code failed" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:282 +msgid "Invitations are not available" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:292 +msgid "Registration on this hub is by invitation only" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:399 +msgid "New register request" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:417 +msgid "Error creating dId A" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:435 +msgid "Registration on this hub is disabled." +msgstr "Registrering ved dette nettstedet er skrudd av." + +#: ../../Zotlabs/Module/Register.php:444 +msgid "Registration on this hub is by approval only." +msgstr "Registrering ved dette nettstedet skjer på godkjenning." + +#: ../../Zotlabs/Module/Register.php:445 +msgid "Register at another affiliated hub in case when prefered" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:458 +msgid "Registration on this hub is by invitation only." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:459 +msgid "Register at another affiliated hub" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:473 ../../Zotlabs/Module/Siteinfo.php:28 +msgid "Terms of Service" +msgstr "Tjenesteavtale" + +#: ../../Zotlabs/Module/Register.php:479 +#, php-format +msgid "I accept the %s for this website" +msgstr "Jeg godtar %s for dette nettstedet" + +#: ../../Zotlabs/Module/Register.php:486 +#, php-format +msgid "I am over %s years of age and accept the %s for this website" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:496 +msgid "Your email address" +msgstr "Din e-postadresse" + +#: ../../Zotlabs/Module/Register.php:498 ../../Zotlabs/Module/Oauth.php:115 +#: ../../Zotlabs/Module/Sources.php:121 ../../Zotlabs/Module/Sources.php:156 +msgid "Optional" +msgstr "Valgfritt" + +#: ../../Zotlabs/Module/Register.php:503 +msgid "Choose a password" +msgstr "Velg et passord" + +#: ../../Zotlabs/Module/Register.php:504 +msgid "Please re-enter your password" +msgstr "Vennligst skriv ditt passord en gang til" + +#: ../../Zotlabs/Module/Register.php:506 +msgid "Please enter your invitation code" +msgstr "Vennligst skriv din invitasjonskode" + +#: ../../Zotlabs/Module/Register.php:508 +msgid "Your name" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:508 +msgid "Real name is preferred" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:510 +#: ../../Zotlabs/Module/New_channel.php:177 +msgid "Choose a short nickname" +msgstr "Velg et kort kallenavn" + +#: ../../Zotlabs/Module/Register.php:510 +msgid "" +"Your nickname will be used to create an easy to remember channel address" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:514 +msgid "Why do you want to join this hub?" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:514 +msgid "This will help to review your registration" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:520 +#: ../../Zotlabs/Module/Admin/Site.php:416 +msgid "Registration" +msgstr "Registrering" + +#: ../../Zotlabs/Module/Register.php:528 +msgid "I have an invite code" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:575 +msgid "" +"This site has exceeded the number of allowed daily account registrations." +msgstr "" + +#: ../../Zotlabs/Module/Search.php:23 +#: ../../Zotlabs/Module/Viewconnections.php:23 +#: ../../Zotlabs/Module/Display.php:28 ../../Zotlabs/Module/Directory.php:72 +#: ../../Zotlabs/Module/Directory.php:77 ../../Zotlabs/Module/Photos.php:523 +msgid "Public access denied." +msgstr "Offentlig tilgang avvist." + +#: ../../Zotlabs/Module/Search.php:255 +#, php-format +msgid "Items tagged with: %s" +msgstr "Elementer merket med: %s" + +#: ../../Zotlabs/Module/Search.php:257 +#, php-format +msgid "Search results for: %s" +msgstr "Søkeresultater for: %s" + +#: ../../Zotlabs/Module/Setup.php:179 +msgid "$Projectname Server - Setup" +msgstr "$Projectname-tjener - oppsett" + +#: ../../Zotlabs/Module/Setup.php:183 +msgid "Could not connect to database." +msgstr "Fikk ikke kontakt med databasen." + +#: ../../Zotlabs/Module/Setup.php:187 +msgid "" +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." +msgstr "" +"Fikk ikke kontakt med det angitte nettstedets URL. Problemet kan muligens" +" skyldes SSL-sertifikatet eller DNS." + +#: ../../Zotlabs/Module/Setup.php:194 +msgid "Could not create table." +msgstr "Kunne ikke lage tabellen." + +#: ../../Zotlabs/Module/Setup.php:200 +msgid "Your site database has been installed." +msgstr "Databasen til ditt nettsted har blitt installert." + +#: ../../Zotlabs/Module/Setup.php:206 +msgid "" +"You may need to import the file \"install/schema_xxx.sql\" manually using a " +"database client." +msgstr "" +"Du må kanskje importere filen \"install/schmea_xxx.sql\" manuelt ved å bruke" +" en databaseklient." + +#: ../../Zotlabs/Module/Setup.php:207 ../../Zotlabs/Module/Setup.php:271 +#: ../../Zotlabs/Module/Setup.php:778 +msgid "Please see the file \"install/INSTALL.txt\"." +msgstr "Vennligst les filen \"install/INSTALL.txt\"." + +#: ../../Zotlabs/Module/Setup.php:268 +msgid "System check" +msgstr "Systemsjekk" + +#: ../../Zotlabs/Module/Setup.php:272 ../../Zotlabs/Module/Cdav.php:1035 +#: ../../Zotlabs/Module/Cal.php:204 ../../Zotlabs/Module/Photos.php:962 +msgid "Next" +msgstr "Neste" + +#: ../../Zotlabs/Module/Setup.php:273 +msgid "Check again" +msgstr "Sjekk igjen" + +#: ../../Zotlabs/Module/Setup.php:294 +msgid "Database connection" +msgstr "Databaseforbindelse" + +#: ../../Zotlabs/Module/Setup.php:295 +msgid "" +"In order to install $Projectname we need to know how to connect to your " +"database." +msgstr "" +"For å installere $Projectname må du oppgi hvordan din database kan kontaktes." + +#: ../../Zotlabs/Module/Setup.php:296 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "" +"Vennligst kontakt din nettstedstilbyder eller nettstedsadministrator hvis du" +" har spørsmål om disse innstillingene." + +#: ../../Zotlabs/Module/Setup.php:297 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "" +"Databasen du oppgir nedenfor må finnes på forhånd. Hvis den ikke finnes," +" vennligst lag den før du fortsetter." + +#: ../../Zotlabs/Module/Setup.php:301 +msgid "Database Server Name" +msgstr "Navn på databasetjener" + +#: ../../Zotlabs/Module/Setup.php:301 +msgid "Default is 127.0.0.1" +msgstr "Standard er 127.0.0.1" + +#: ../../Zotlabs/Module/Setup.php:302 +msgid "Database Port" +msgstr "Databaseport" + +#: ../../Zotlabs/Module/Setup.php:302 +msgid "Communication port number - use 0 for default" +msgstr "Kommunikasjonsportnummer - bruk 0 for standard" + +#: ../../Zotlabs/Module/Setup.php:303 +msgid "Database Login Name" +msgstr "Database innloggingsnavn" + +#: ../../Zotlabs/Module/Setup.php:304 +msgid "Database Login Password" +msgstr "Database innloggingspassord" + +#: ../../Zotlabs/Module/Setup.php:305 +msgid "Database Name" +msgstr "Databasenavn" + +#: ../../Zotlabs/Module/Setup.php:306 +msgid "Database Type" +msgstr "Databasetype" + +#: ../../Zotlabs/Module/Setup.php:308 ../../Zotlabs/Module/Setup.php:348 +msgid "Site administrator email address" +msgstr "E-postadressen til administrator ved nettstedet" + +#: ../../Zotlabs/Module/Setup.php:308 ../../Zotlabs/Module/Setup.php:348 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "" +"Din konto sin e-postadresse må være lik denne for å kunne bruke" +" web-administrasjonspanelet." + +#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:350 +msgid "Website URL" +msgstr "Nettstedets URL" + +#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:350 +msgid "Please use SSL (https) URL if available." +msgstr "Vennligst bruk SSL (https) URL hvis tilgjengelig." + +#: ../../Zotlabs/Module/Setup.php:310 ../../Zotlabs/Module/Setup.php:352 +msgid "Please select a default timezone for your website" +msgstr "Vennligst velg en standard tidssone for ditt nettsted" + +#: ../../Zotlabs/Module/Setup.php:337 +msgid "Site settings" +msgstr "Nettstedets innstillinger" + +#: ../../Zotlabs/Module/Setup.php:391 +msgid "PHP version 8.0 or greater is required." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:392 +msgid "PHP version" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:408 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Fant ikke en kommandolinjeversjon av PHP i webtjenerens sti (PATH)." + +#: ../../Zotlabs/Module/Setup.php:409 +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." +msgstr "" +"Hvis du ikke har en kommandolinjeversjon av PHP installert på tjeneren, så" +" vil du ikke kunne kjøre bakgrunnshenting via cron." + +#: ../../Zotlabs/Module/Setup.php:413 +msgid "PHP executable path" +msgstr "PHP-kjørefilens sti" + +#: ../../Zotlabs/Module/Setup.php:413 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "" +"Skriv full sti til kjørefilen for PHP. Du kan la denne stå blank for å" +" fortsette installasjonen." + +#: ../../Zotlabs/Module/Setup.php:418 +msgid "Command line PHP" +msgstr "Kommandolinje PHP" + +#: ../../Zotlabs/Module/Setup.php:428 +msgid "" +"Unable to check command line PHP, as shell_exec() is disabled. This is " +"required." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:432 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "" +"Kommandolinjeversjonen av PHP på ditt system har ikke \"register_argc_argv\"" +" påskrudd." + +#: ../../Zotlabs/Module/Setup.php:433 +msgid "This is required for message delivery to work." +msgstr "Dette er påkrevd for at meldingslevering skal virke." + +#: ../../Zotlabs/Module/Setup.php:436 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" + +#: ../../Zotlabs/Module/Setup.php:456 +msgid "" +"This is not sufficient to upload larger images or files. You should be able " +"to upload at least 4 MB at once." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:458 +#, php-format +msgid "" +"Your max allowed total upload size is set to %s. Maximum size of one file to " +"upload is set to %s. You are allowed to upload up to %d files at once." +msgstr "" +"Den største totale opplastingsstørrelsen du er tillatt er satt til %s." +" Filstørrelsen på en enkelt fil er satt til å maksimalt være %s. Du har lov" +" til å laste opp inntil %d filer samtidig." + +#: ../../Zotlabs/Module/Setup.php:464 +msgid "You can adjust these settings in the server php.ini file." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:466 +msgid "PHP upload limits" +msgstr "PHP opplastingsgrenser" + +#: ../../Zotlabs/Module/Setup.php:489 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "" +"Feil: \"openssl_pkey_new\"-funksjonen på dette systemet er ikke i stand til å" +" lage krypteringsnøkler" + +#: ../../Zotlabs/Module/Setup.php:490 +msgid "" +"If running under Windows, please see \"http://www.php.net/manual/en/openssl." +"installation.php\"." +msgstr "" +"Ved kjøring på Windows, vennligst se \"http://www.php.net/manual/en/openssl.in" +"stallation.php\"." + +#: ../../Zotlabs/Module/Setup.php:493 +msgid "Generate encryption keys" +msgstr "Lag krypteringsnøkler" + +#: ../../Zotlabs/Module/Setup.php:510 +msgid "libCurl PHP module" +msgstr "libCurl PHP-modul" + +#: ../../Zotlabs/Module/Setup.php:511 +msgid "GD graphics PHP module" +msgstr "GD graphics PHP-modul" + +#: ../../Zotlabs/Module/Setup.php:512 +msgid "OpenSSL PHP module" +msgstr "OpenSSL PHP-modul" + +#: ../../Zotlabs/Module/Setup.php:513 +msgid "PDO database PHP module" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:514 +msgid "mb_string PHP module" +msgstr "mb_string PHP-modul" + +#: ../../Zotlabs/Module/Setup.php:515 +msgid "xml PHP module" +msgstr "XML PHP modul" + +#: ../../Zotlabs/Module/Setup.php:516 +msgid "zip PHP module" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:520 ../../Zotlabs/Module/Setup.php:522 +msgid "Apache mod_rewrite module" +msgstr "Apache mod_rewrite-modul" + +#: ../../Zotlabs/Module/Setup.php:520 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "" +"Feil: Apache web-tjenerens mod-rewrite-modul er påkrevd, men ikke installert." + +#: ../../Zotlabs/Module/Setup.php:526 ../../Zotlabs/Module/Setup.php:529 +msgid "exec" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:526 +msgid "" +"Error: exec is required but is either not installed or has been disabled in " +"php.ini" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:532 ../../Zotlabs/Module/Setup.php:535 +msgid "shell_exec" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:532 +msgid "" +"Error: shell_exec is required but is either not installed or has been " +"disabled in php.ini" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:540 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Feil: libCURL PHP-modul er påkrevd, men er ikke installert." + +#: ../../Zotlabs/Module/Setup.php:544 +msgid "" +"Error: GD PHP module with JPEG support or ImageMagick graphics library " +"required but not installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:548 +msgid "Error: openssl PHP module required but not installed." +msgstr "Feil: openssl PHP-modul er påkrevd, men er ikke installert." + +#: ../../Zotlabs/Module/Setup.php:554 +msgid "" +"Error: PDO database PHP module missing a driver for either mysql or pgsql." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:559 +msgid "Error: PDO database PHP module required but not installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:563 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Feil: mb_string PHP-modul er påkrevd, men er ikke installert." + +#: ../../Zotlabs/Module/Setup.php:567 +msgid "Error: xml PHP module required for DAV but not installed." +msgstr "Feil: XML PHP modul er påkrevet for DAV, men den er ikke installert." + +#: ../../Zotlabs/Module/Setup.php:571 +msgid "Error: zip PHP module required but not installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:590 ../../Zotlabs/Module/Setup.php:599 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php kan skrives til" + +#: ../../Zotlabs/Module/Setup.php:595 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\" " +"in the top folder of your web server and it is unable to do so." +msgstr "" +"Web-installasjonen må kunne lage en fil kalt \".htconfig.php\" i" +" toppkatalogen til web-tjeneren din, men dette får den ikke til." + +#: ../../Zotlabs/Module/Setup.php:596 +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 "" +"Dette er oftest tillatelsesinnstilling, ettersom webtjeneren kanskje kan" +" skrive til filer i din mappe - selv om du kan." + +#: ../../Zotlabs/Module/Setup.php:597 +msgid "Please see install/INSTALL.txt for additional information." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:613 +msgid "" +"This software uses the Smarty3 template engine to render its web views. " +"Smarty3 compiles templates to PHP to speed up rendering." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:614 +#, php-format +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory %s under the top level web folder." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:615 ../../Zotlabs/Module/Setup.php:636 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has " +"write access to this folder." +msgstr "" +"Vennligst sikre at brukeren som din web-tjeneste kjører som (for eksempel" +" www-data) har skrivetilgang til denne katalogen." + +#: ../../Zotlabs/Module/Setup.php:616 +#, php-format +msgid "" +"Note: as a security measure, you should give the web server write access to " +"%s only--not the template files (.tpl) that it contains." +msgstr "" +"Merknad: som et sikkerhetstiltak bør du bare gi webtjerenn skrivetilgang til " +"%s - ikke til malfilene (.tpl) som den inneholder." + +#: ../../Zotlabs/Module/Setup.php:619 +#, php-format +msgid "%s is writable" +msgstr "%s kan skrives til" + +#: ../../Zotlabs/Module/Setup.php:635 +msgid "" +"This software uses the store directory to save uploaded files. The web " +"server needs to have write access to the store directory under the top level " +"web folder" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:639 +msgid "store is writable" +msgstr "lageret kan skrives til" + +#: ../../Zotlabs/Module/Setup.php:671 +msgid "" +"SSL certificate cannot be validated. Fix certificate or disable https access " +"to this site." +msgstr "" +"SSL-sertifikatet kan ikke kontrolleres. Fiks sertifikatet eller skru av https" +" tilgang til dette nettstedet." + +#: ../../Zotlabs/Module/Setup.php:672 +msgid "" +"If you have https access to your website or allow connections to TCP port " +"443 (the https: port), you MUST use a browser-valid certificate. You MUST " +"NOT use self-signed certificates!" +msgstr "" +"Hvis du har HTTPS-tilgang til ditt nettsted eller tillater forbindelser til" +" TCP port 443 (HTTPS-porten), så MÅ du bruke nettlesergodkjent sertifkater." +" Du MÅ IKKE bruke egensignert sertifikater!" + +#: ../../Zotlabs/Module/Setup.php:673 +msgid "" +"This restriction is incorporated because public posts from you may for " +"example contain references to images on your own hub." +msgstr "" +"Denne begrensningen er tatt inn fordi offentlige innlegg fra deg kan for" +" eksempel inneholde referanser til bilder på din egen hub." + +#: ../../Zotlabs/Module/Setup.php:674 +msgid "" +"If your certificate is not recognized, members of other sites (who may " +"themselves have valid certificates) will get a warning message on their own " +"site complaining about security issues." +msgstr "" +"Hvis sertifikatet ditt ikke gjenkjennes, så vil medlemmer på andre nettsteder" +" (som selv kan ha godkjente sertifikater) få en beskjed med en advarsel på" +" deres eget nettsted som klager over sikkerhetsproblemer." + +#: ../../Zotlabs/Module/Setup.php:675 +msgid "" +"This can cause usability issues elsewhere (not just on your own site) so we " +"must insist on this requirement." +msgstr "" +"Dette kan gi problemer med brukervennlighet (ikke bare på ditt eget" +" nettsted), så vi må insistere på dette kravet." + +#: ../../Zotlabs/Module/Setup.php:676 +msgid "" +"Providers are available that issue free certificates which are browser-valid." +msgstr "" +"Det finnes tilbydere som utsteder gratis sertifikater som er gyldige i" +" nettlesere." + +#: ../../Zotlabs/Module/Setup.php:677 +msgid "" +"If you are confident that the certificate is valid and signed by a trusted " +"authority, check to see if you have failed to install an intermediate cert. " +"These are not normally required by browsers, but are required for server-to-" +"server communications." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:679 +msgid "SSL certificate validation" +msgstr "SSL sertifikat-kontroll" + +#: ../../Zotlabs/Module/Setup.php:685 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +"Test: " +msgstr "" +"URL omskriving (rewrite) i .htaccess virker ikke. Sjekk konfigurasjonen til" +" tjeneren din. Test:" + +#: ../../Zotlabs/Module/Setup.php:688 +msgid "Url rewrite is working" +msgstr "URL rewrite virker" + +#: ../../Zotlabs/Module/Setup.php:701 +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 "" +"Databasekonfigurasjonsfilen \".htconfig.php\" kunne ikke skrives. Vennligst" +" bruk den medfølgende teksten for å lage en konfigurasjonsfil i toppkatalogen" +" av din web-tjener." + +#: ../../Zotlabs/Module/Setup.php:776 +msgid "

What next?

" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:777 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." +msgstr "" +"VIKTIG: Du må [manuelt] sette opp en automatisert tidfestet oppgave til" +" bakgrunnshenteren." + +#: ../../Zotlabs/Module/Viewconnections.php:65 +msgid "No connections." +msgstr "Ingen forbindelser." + +#: ../../Zotlabs/Module/Viewconnections.php:105 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Besøk %s sin profil [%s]" + +#: ../../Zotlabs/Module/Viewconnections.php:135 +msgid "View Connections" +msgstr "Vis forbindelser" + +#: ../../Zotlabs/Module/Pubsites.php:24 +msgid "Public Hubs" +msgstr "Offentlige huber" + +#: ../../Zotlabs/Module/Pubsites.php:27 +msgid "" +"The listed hubs allow public registration for the $Projectname network. All " +"hubs in the network are interlinked so membership on any of them conveys " +"membership in the network as a whole. Some hubs may require subscription or " +"provide tiered service plans. The hub itself may provide " +"additional details." +msgstr "" +"Nettstedene på listen tillater offentlig registrering i" +" $Projectname-nettverket. Alle nettsteder i nettverket er forbundet så" +" medlemskap på enhver av dem formidler medlemskap i nettverket som helhet." +" Noen nettsteder kan kreve abonnement eller tilby lagdelte tjenesteavtaler." +" Nettstedene selv kan gi tilleggsopplysninger." + +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Hub URL" +msgstr "Nettstedets URL" + +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Access Type" +msgstr "Tilgangstype" + +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Registration Policy" +msgstr "Retningslinjer for registrering" + +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Stats" +msgstr "Statistikk" + +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Software" +msgstr "Programvare" + +#: ../../Zotlabs/Module/Pubsites.php:35 +msgid "Ratings" +msgstr "Vurderinger" + +#: ../../Zotlabs/Module/Pubsites.php:49 +msgid "Rate" +msgstr "Vurder" + +#: ../../Zotlabs/Module/Channel.php:139 ../../Zotlabs/Module/Hcard.php:37 +#: ../../Zotlabs/Module/Profile.php:62 +msgid "Posts and comments" +msgstr "Innlegg og kommentarer" + +#: ../../Zotlabs/Module/Channel.php:146 ../../Zotlabs/Module/Hcard.php:44 +#: ../../Zotlabs/Module/Profile.php:69 +msgid "Only posts" +msgstr "Kun innlegg" + +#: ../../Zotlabs/Module/Channel.php:159 ../../Zotlabs/Module/Channel.php:181 +#: ../../Zotlabs/Module/Hq.php:41 ../../Zotlabs/Module/Pubstream.php:47 +#: ../../Zotlabs/Module/Display.php:47 ../../Zotlabs/Module/Oep.php:83 +msgid "Malformed message id." +msgstr "" + +#: ../../Zotlabs/Module/Channel.php:217 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Utilstrekkelig tillatelse. Forespørsel omdirigert til profilsiden." + +#: ../../Zotlabs/Module/Channel.php:495 ../../Zotlabs/Module/Display.php:318 +msgid "" +"You must enable javascript for your browser to be able to view this content." +msgstr "" + +#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." +msgstr "Ugyldig profil-identifikator." + +#: ../../Zotlabs/Module/Profperm.php:111 +msgid "Profile Visibility Editor" +msgstr "Endre profilsynlighet" + +#: ../../Zotlabs/Module/Profperm.php:115 +msgid "Click on a contact to add or remove." +msgstr "Klikk på en kontakt for å legge til eller fjerne." + +#: ../../Zotlabs/Module/Profperm.php:124 +msgid "Visible To" +msgstr "Synlig for" + +#: ../../Zotlabs/Module/Profperm.php:140 +#: ../../Zotlabs/Module/Connections.php:218 +msgid "All Connections" +msgstr "Alle forbindelser" + +#: ../../Zotlabs/Module/Group.php:47 +msgid "Privacy group created." +msgstr "Personverngruppen er opprettet." + +#: ../../Zotlabs/Module/Group.php:50 +msgid "Could not create privacy group." +msgstr "Kunne ikke opprette personverngruppen." + +#: ../../Zotlabs/Module/Group.php:82 +msgid "Privacy group updated." +msgstr "Personverngruppen er oppdatert." + +#: ../../Zotlabs/Module/Group.php:137 ../../Zotlabs/Module/Group.php:301 +msgid "Post to this group by default" +msgstr "" + +#: ../../Zotlabs/Module/Group.php:138 ../../Zotlabs/Module/Group.php:302 +msgid "Add new contacts to this group by default" +msgstr "" + +#: ../../Zotlabs/Module/Group.php:146 +msgid "Privacy group name" +msgstr "" + +#: ../../Zotlabs/Module/Group.php:147 ../../Zotlabs/Module/Group.php:249 +msgid "Members are visible to other channels" +msgstr "Medlemmer er synlig for andre kanaler" + +#: ../../Zotlabs/Module/Group.php:175 +msgid "Privacy group removed." +msgstr "Personverngruppen er fjernet." + +#: ../../Zotlabs/Module/Group.php:178 +msgid "Unable to remove privacy group." +msgstr "Ikke i stand til å fjerne personverngruppen." + +#: ../../Zotlabs/Module/Group.php:244 +#, php-format +msgid "Privacy Group: %s" +msgstr "" + +#: ../../Zotlabs/Module/Group.php:246 +msgid "Privacy group name: " +msgstr "Personverngruppens navn:" + +#: ../../Zotlabs/Module/Group.php:262 +msgid "Group members" +msgstr "" + +#: ../../Zotlabs/Module/Group.php:264 +msgid "Not in this group" +msgstr "" + +#: ../../Zotlabs/Module/Group.php:296 +msgid "Click a channel to toggle membership" +msgstr "" + +#: ../../Zotlabs/Module/Go.php:21 +msgid "This page is available only to site members" +msgstr "" + +#: ../../Zotlabs/Module/Go.php:27 +msgid "Welcome" +msgstr "Velkommen" + +#: ../../Zotlabs/Module/Go.php:29 +msgid "What would you like to do?" +msgstr "" + +#: ../../Zotlabs/Module/Go.php:31 +msgid "" +"Please bookmark this page if you would like to return to it in the future" +msgstr "" + +#: ../../Zotlabs/Module/Go.php:35 +msgid "Upload a profile photo" +msgstr "" + +#: ../../Zotlabs/Module/Go.php:36 +msgid "Upload a cover photo" +msgstr "" + +#: ../../Zotlabs/Module/Go.php:37 +msgid "Edit your default profile" +msgstr "" + +#: ../../Zotlabs/Module/Go.php:39 +msgid "View the channel directory" +msgstr "" + +#: ../../Zotlabs/Module/Go.php:40 +msgid "View/edit your channel settings" +msgstr "" + +#: ../../Zotlabs/Module/Go.php:41 +msgid "View the site or project documentation" +msgstr "" + +#: ../../Zotlabs/Module/Go.php:42 +msgid "Visit your channel homepage" +msgstr "" + +#: ../../Zotlabs/Module/Go.php:43 +msgid "" +"View your connections and/or add somebody whose address you already know" +msgstr "" + +#: ../../Zotlabs/Module/Go.php:44 +msgid "" +"View your personal stream (this may be empty until you add some connections)" +msgstr "" + +#: ../../Zotlabs/Module/Go.php:52 +msgid "View the public stream. Warning: this content is not moderated" +msgstr "" + +#: ../../Zotlabs/Module/Oauth.php:45 +msgid "Name is required" +msgstr "Navn er påkrevd" + +#: ../../Zotlabs/Module/Oauth.php:49 +msgid "Key and Secret are required" +msgstr "Nøkkel og hemmelighet er påkrevd" + +#: ../../Zotlabs/Module/Oauth.php:53 ../../Zotlabs/Module/Oauth.php:135 +#: ../../Zotlabs/Module/Cdav.php:1052 ../../Zotlabs/Module/Cdav.php:1388 +#: ../../Zotlabs/Module/Admin/Addons.php:457 ../../Zotlabs/Module/Oauth2.php:58 +#: ../../Zotlabs/Module/Oauth2.php:142 ../../Zotlabs/Module/Connedit.php:748 +#: ../../Zotlabs/Lib/Apps.php:545 +msgid "Update" +msgstr "Oppdater" + +#: ../../Zotlabs/Module/Oauth.php:108 ../../Zotlabs/Module/Oauth.php:134 +#: ../../Zotlabs/Module/Oauth.php:170 ../../Zotlabs/Module/Oauth2.php:141 +#: ../../Zotlabs/Module/Oauth2.php:191 +msgid "Add application" +msgstr "Legg til program" + +#: ../../Zotlabs/Module/Oauth.php:111 ../../Zotlabs/Module/Oauth2.php:116 +#: ../../Zotlabs/Module/Oauth2.php:144 +msgid "Name of application" +msgstr "Navn på program" + +#: ../../Zotlabs/Module/Oauth.php:112 ../../Zotlabs/Module/Oauth.php:113 +#: ../../Zotlabs/Module/Oauth2.php:117 ../../Zotlabs/Module/Oauth2.php:145 +msgid "Automatically generated - change if desired. Max length 20" +msgstr "Automatisk laget - kan endres om du vil. Største lengde 20" + +#: ../../Zotlabs/Module/Oauth.php:114 ../../Zotlabs/Module/Oauth.php:140 +#: ../../Zotlabs/Module/Oauth2.php:118 ../../Zotlabs/Module/Oauth2.php:146 +msgid "Redirect" +msgstr "Omdirigering" + +#: ../../Zotlabs/Module/Oauth.php:114 ../../Zotlabs/Module/Oauth2.php:118 +#: ../../Zotlabs/Module/Oauth2.php:146 +msgid "" +"Redirect URI - leave blank unless your application specifically requires this" +msgstr "" +"Omdirigerings-URI - la stå tomt hvis ikke ditt program spesifikt krever dette" + +#: ../../Zotlabs/Module/Oauth.php:115 ../../Zotlabs/Module/Oauth.php:141 +msgid "Icon url" +msgstr "Ikon-URL" + +#: ../../Zotlabs/Module/Oauth.php:126 +msgid "Application not found." +msgstr "Programmet ble ikke funnet." + +#: ../../Zotlabs/Module/Oauth.php:169 +msgid "Connected OAuth Apps" +msgstr "" + +#: ../../Zotlabs/Module/Oauth.php:173 ../../Zotlabs/Module/Oauth2.php:194 +msgid "Client key starts with" +msgstr "Klientnøkkel starter med" + +#: ../../Zotlabs/Module/Oauth.php:174 ../../Zotlabs/Module/Oauth2.php:195 +msgid "No name" +msgstr "Ikke noe navn" + +#: ../../Zotlabs/Module/Oauth.php:175 ../../Zotlabs/Module/Oauth2.php:196 +msgid "Remove authorization" +msgstr "Fjern tillatelse" + +#: ../../Zotlabs/Module/Editwebpage.php:139 +msgid "Page link" +msgstr "Sidelenke" + +#: ../../Zotlabs/Module/Editwebpage.php:166 +msgid "Edit Webpage" +msgstr "Endre webside" + +#: ../../Zotlabs/Module/Dirsearch.php:24 ../../Zotlabs/Module/Regdir.php:52 +msgid "This site is not a directory server" +msgstr "Dette nettstedet er ikke en katalogtjener" + +#: ../../Zotlabs/Module/Dirsearch.php:33 +msgid "This directory server requires an access token" +msgstr "Denne katalogtjeneren krever en tilgangsnøkkel (access token)" + +#: ../../Zotlabs/Module/Pin.php:36 ../../Zotlabs/Module/Item.php:466 +msgid "Unable to locate original post." +msgstr "Ikke i stand til å finne opprinnelig innlegg." + +#: ../../Zotlabs/Module/Chat.php:192 +msgid "Room not found" +msgstr "Rommet ble ikke funnet" + +#: ../../Zotlabs/Module/Chat.php:208 +msgid "Leave Room" +msgstr "Forlat rom" + +#: ../../Zotlabs/Module/Chat.php:209 +msgid "Delete Room" +msgstr "Slett rom" + +#: ../../Zotlabs/Module/Chat.php:210 +msgid "I am away right now" +msgstr "Jeg er borte akkurat nå" + +#: ../../Zotlabs/Module/Chat.php:211 +msgid "I am online" +msgstr "Jeg er online" + +#: ../../Zotlabs/Module/Chat.php:213 +msgid "Bookmark this room" +msgstr "Bokmerk dette rommet" + +#: ../../Zotlabs/Module/Chat.php:236 +msgid "New Chatroom" +msgstr "Nytt chatrom" + +#: ../../Zotlabs/Module/Chat.php:237 +msgid "Chatroom name" +msgstr "Romnavn" + +#: ../../Zotlabs/Module/Chat.php:238 +msgid "Expiration of chats (minutes)" +msgstr "Chat utgår (antall minutter)" + +#: ../../Zotlabs/Module/Chat.php:254 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "%1$s sine chatrom" + +#: ../../Zotlabs/Module/Chat.php:259 +msgid "No chatrooms available" +msgstr "Ingen rom tilgjengelige" + +#: ../../Zotlabs/Module/Chat.php:260 +msgid "Add Room" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:263 +msgid "Expiration" +msgstr "Utløp" + +#: ../../Zotlabs/Module/Chat.php:264 +msgid "min" +msgstr "min" + +#: ../../Zotlabs/Module/Channel_calendar.php:62 +msgid "Event can not end before it has started." +msgstr "Hendelsen kan ikke slutte før den starter." + +#: ../../Zotlabs/Module/Channel_calendar.php:64 +#: ../../Zotlabs/Module/Channel_calendar.php:72 +#: ../../Zotlabs/Module/Channel_calendar.php:87 +msgid "Unable to generate preview." +msgstr "Klarer ikke å lage forhåndsvisning." + +#: ../../Zotlabs/Module/Channel_calendar.php:70 +msgid "Event title and start time are required." +msgstr "Hendelsestittel og starttidspunkt er påkrevd." + +#: ../../Zotlabs/Module/Channel_calendar.php:85 +#: ../../Zotlabs/Module/Channel_calendar.php:226 +msgid "Event not found." +msgstr "Hendelsen ble ikke funnet." + +#: ../../Zotlabs/Module/Channel_calendar.php:370 +msgid "Edit event" +msgstr "Endre hendelse" + +#: ../../Zotlabs/Module/Channel_calendar.php:372 +msgid "Delete event" +msgstr "Slett hendelse" + +#: ../../Zotlabs/Module/Channel_calendar.php:392 +#: ../../Zotlabs/Module/Cdav.php:942 ../../Zotlabs/Module/Cal.php:165 +msgid "Link to source" +msgstr "" + +#: ../../Zotlabs/Module/Channel_calendar.php:406 +msgid "calendar" +msgstr "kalender" + +#: ../../Zotlabs/Module/Channel_calendar.php:493 +msgid "Failed to remove event" +msgstr "Mislyktes med å slette hendelse" + +#: ../../Zotlabs/Module/Like.php:112 +msgid "Like/Dislike" +msgstr "Liker/Liker ikke" + +#: ../../Zotlabs/Module/Like.php:118 +msgid "This action is restricted to members." +msgstr "Denne handlingen er begrenset til medlemmer." + +#: ../../Zotlabs/Module/Like.php:119 +msgid "" +"Please login with your $Projectname ID or register as a new $Projectname member to continue." +msgstr "" +"Vennligst logg inn med din $Projectname ID eller registrer deg som et nytt $Projectname-medlem for å" +" fortsette" + +#: ../../Zotlabs/Module/Like.php:172 ../../Zotlabs/Module/Like.php:198 +#: ../../Zotlabs/Module/Like.php:236 +msgid "Invalid request." +msgstr "Ugyldig forespørsel." + +#: ../../Zotlabs/Module/Like.php:213 +msgid "thing" +msgstr "ting" + +#: ../../Zotlabs/Module/Like.php:259 +msgid "Channel unavailable." +msgstr "Kanalen er utilgjengelig." + +#: ../../Zotlabs/Module/Like.php:295 +msgid "Previous action reversed." +msgstr "Forrige handling er omgjort." + +#: ../../Zotlabs/Module/Like.php:481 +#, php-format +msgid "%1$s agrees with %2$s's %3$s" +msgstr "%1$s er enig med %2$s sin %3$s" + +#: ../../Zotlabs/Module/Like.php:483 +#, php-format +msgid "%1$s doesn't agree with %2$s's %3$s" +msgstr "%1$s er ikke enig med %2$s sin %3$s" + +#: ../../Zotlabs/Module/Like.php:485 +#, php-format +msgid "%1$s abstains from a decision on %2$s's %3$s" +msgstr "%1$s avstår fra å mene noe om %2$s sin %3$s" + +#: ../../Zotlabs/Module/Like.php:592 +msgid "Action completed." +msgstr "Handling ferdig." + +#: ../../Zotlabs/Module/Like.php:593 +msgid "Thank you." +msgstr "Tusen takk." + +#: ../../Zotlabs/Module/Poke.php:198 +msgid "Poke somebody" +msgstr "Dult noen" + +#: ../../Zotlabs/Module/Poke.php:201 +msgid "Poke/Prod" +msgstr "Prikke/oppildne" + +#: ../../Zotlabs/Module/Poke.php:202 +msgid "Poke, prod or do other things to somebody" +msgstr "Dult, prikk eller gjør andre ting med noen" + +#: ../../Zotlabs/Module/Poke.php:209 +msgid "Recipient" +msgstr "Mottaker" + +#: ../../Zotlabs/Module/Poke.php:210 +msgid "Choose what you wish to do to recipient" +msgstr "Velg hva du ønsker å gjøre med mottakeren" + +#: ../../Zotlabs/Module/Poke.php:213 ../../Zotlabs/Module/Poke.php:214 +msgid "Make this post private" +msgstr "Gjør dette innlegget privat" + +#: ../../Zotlabs/Module/Cdav.php:819 +msgid "Calendar entries imported." +msgstr "Kalenderhendelsene er importert." + +#: ../../Zotlabs/Module/Cdav.php:821 +msgid "No calendar entries found." +msgstr "Ingen kalenderhendelser funnet." + +#: ../../Zotlabs/Module/Cdav.php:1008 +msgid "Event title" +msgstr "Tittel på hendelse" + +#: ../../Zotlabs/Module/Cdav.php:1009 +msgid "Start date and time" +msgstr "Startdato og tidspunkt" + +#: ../../Zotlabs/Module/Cdav.php:1010 +msgid "End date and time" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1011 +msgid "Timezone:" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1034 ../../Zotlabs/Module/Cal.php:203 +#: ../../Zotlabs/Module/Photos.php:953 +msgid "Previous" +msgstr "Forrige" + +#: ../../Zotlabs/Module/Cdav.php:1036 ../../Zotlabs/Module/Cal.php:205 +msgid "Today" +msgstr "Idag" + +#: ../../Zotlabs/Module/Cdav.php:1037 +msgid "Month" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1038 +msgid "Week" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1039 +msgid "Day" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1040 +msgid "List month" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1041 +msgid "List week" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1042 +msgid "List day" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1050 +msgid "More" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1051 +msgid "Less" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1053 +msgid "Select calendar" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1056 +msgid "Delete all" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1059 +msgid "Sorry! Editing of recurrent events is not yet implemented." +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1060 +msgid "" +"Could not fetch calendar resource. The selected calendar might be disabled." +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1373 ../../Zotlabs/Module/Connedit.php:733 +msgid "Organisation" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1375 ../../Zotlabs/Module/Connedit.php:735 +msgid "Phone" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1377 ../../Zotlabs/Module/Connedit.php:737 +msgid "Instant messenger" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1378 ../../Zotlabs/Module/Connedit.php:738 +msgid "Website" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1379 +#: ../../Zotlabs/Module/Admin/Channels.php:160 +#: ../../Zotlabs/Module/Profiles.php:473 ../../Zotlabs/Module/Connedit.php:739 +#: ../../Zotlabs/Module/Locs.php:122 +msgid "Address" +msgstr "Adresse" + +#: ../../Zotlabs/Module/Cdav.php:1380 ../../Zotlabs/Module/Connedit.php:740 +msgid "Note" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1385 ../../Zotlabs/Module/Connedit.php:745 +msgid "Add Contact" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1386 ../../Zotlabs/Module/Connedit.php:746 +msgid "Add Field" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1391 ../../Zotlabs/Module/Connedit.php:751 +msgid "P.O. Box" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1392 ../../Zotlabs/Module/Connedit.php:752 +msgid "Additional" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1393 ../../Zotlabs/Module/Connedit.php:753 +msgid "Street" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1394 ../../Zotlabs/Module/Connedit.php:754 +msgid "Locality" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1395 ../../Zotlabs/Module/Connedit.php:755 +msgid "Region" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1396 ../../Zotlabs/Module/Connedit.php:756 +msgid "ZIP Code" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1397 ../../Zotlabs/Module/Profiles.php:774 +#: ../../Zotlabs/Module/Connedit.php:757 +msgid "Country" +msgstr "Land" + +#: ../../Zotlabs/Module/Cdav.php:1456 +msgid "Default Calendar" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1467 +msgid "Default Addressbook" +msgstr "" + +#: ../../Zotlabs/Module/Lockview.php:100 +msgid "Remote privacy information not available" +msgstr "" + +#: ../../Zotlabs/Module/Lockview.php:143 ../../Zotlabs/Module/Lockview.php:184 +#, fuzzy +#: ../../Zotlabs/Module/Acl.php:123 +msgctxt "acl" +msgid "Profile" +msgstr "" + +#: ../../Zotlabs/Module/Lockview.php:154 ../../Zotlabs/Module/Lockview.php:193 +msgid "Privacy group" +msgstr "" + +#: ../../Zotlabs/Module/Lockview.php:214 +#, php-format +msgid "Click to copy link to this ressource for guest %s to clipboard" +msgstr "" + +#: ../../Zotlabs/Module/Lockview.php:214 +msgid "Link copied" +msgstr "" + +#: ../../Zotlabs/Module/Lockview.php:221 +msgid "Access" +msgstr "" + +#: ../../Zotlabs/Module/Item.php:751 +msgid "Empty post discarded." +msgstr "Tomt innlegg forkastet." + +#: ../../Zotlabs/Module/Item.php:1153 +msgid "Duplicate post suppressed." +msgstr "Duplikat av innlegg forhindret." + +#: ../../Zotlabs/Module/Item.php:1296 +msgid "System error. Post not saved." +msgstr "Systemfeil. Innlegg ble ikke lagret." + +#: ../../Zotlabs/Module/Item.php:1330 +msgid "Your comment is awaiting approval." +msgstr "" + +#: ../../Zotlabs/Module/Item.php:1463 +msgid "Unable to obtain post information from database." +msgstr "Ikke i stand til å få tak i informasjon om innlegg fra databasen." + +#: ../../Zotlabs/Module/Item.php:1470 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "Du har nådd din grense på %1$.0f startinnlegg." + +#: ../../Zotlabs/Module/Item.php:1477 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Du har nådd din grense på %1$.0f websider." + +#: ../../Zotlabs/Module/Mitem.php:31 ../../Zotlabs/Module/Menu.php:209 +msgid "Menu not found." +msgstr "Menyen ble ikke funnet." + +#: ../../Zotlabs/Module/Mitem.php:63 +msgid "Unable to create element." +msgstr "Klarer ikke å lage element." + +#: ../../Zotlabs/Module/Mitem.php:87 +msgid "Unable to update menu element." +msgstr "Ikke i stand til å oppdatere menyelement." + +#: ../../Zotlabs/Module/Mitem.php:103 +msgid "Unable to add menu element." +msgstr "Ikke i stand til å legge til menyelement." + +#: ../../Zotlabs/Module/Mitem.php:134 ../../Zotlabs/Module/Xchan.php:41 +#: ../../Zotlabs/Module/Menu.php:232 +msgid "Not found." +msgstr "Ikke funnet." + +#: ../../Zotlabs/Module/Mitem.php:167 ../../Zotlabs/Module/Mitem.php:246 +msgid "Menu Item Permissions" +msgstr "Menyelement Tillatelser" + +#: ../../Zotlabs/Module/Mitem.php:168 ../../Zotlabs/Module/Mitem.php:247 +msgid "(click to open/close)" +msgstr "(klikk for å åpne/lukke)" + +#: ../../Zotlabs/Module/Mitem.php:174 ../../Zotlabs/Module/Mitem.php:191 +msgid "Link Name" +msgstr "Lenkenavn" + +#: ../../Zotlabs/Module/Mitem.php:175 ../../Zotlabs/Module/Mitem.php:255 +msgid "Link or Submenu Target" +msgstr "Lenke- eller undermeny-mål" + +#: ../../Zotlabs/Module/Mitem.php:175 +msgid "Enter URL of the link or select a menu name to create a submenu" +msgstr "Skriv URL-en til lenken eller velg et menynavn for å lage en undermeny" + +#: ../../Zotlabs/Module/Mitem.php:176 ../../Zotlabs/Module/Mitem.php:256 +msgid "Use magic-auth if available" +msgstr "Bruk magic-autent hvis mulig" + +#: ../../Zotlabs/Module/Mitem.php:177 ../../Zotlabs/Module/Mitem.php:257 +msgid "Open link in new window" +msgstr "Åpne lenke i nytt vindu" + +#: ../../Zotlabs/Module/Mitem.php:178 ../../Zotlabs/Module/Mitem.php:258 +msgid "Order in list" +msgstr "Ordne i liste" + +#: ../../Zotlabs/Module/Mitem.php:178 ../../Zotlabs/Module/Mitem.php:258 +msgid "Higher numbers will sink to bottom of listing" +msgstr "Høyere tall vil synke mot bunnen av listen" + +#: ../../Zotlabs/Module/Mitem.php:179 +msgid "Submit and finish" +msgstr "Send inn og avslutt" + +#: ../../Zotlabs/Module/Mitem.php:180 +msgid "Submit and continue" +msgstr "Send inn og fortsett" + +#: ../../Zotlabs/Module/Mitem.php:189 +msgid "Menu:" +msgstr "Meny:" + +#: ../../Zotlabs/Module/Mitem.php:192 +msgid "Link Target" +msgstr "Lenkemål" + +#: ../../Zotlabs/Module/Mitem.php:195 +msgid "Edit menu" +msgstr "Endre meny" + +#: ../../Zotlabs/Module/Mitem.php:198 +msgid "Edit element" +msgstr "Endre element" + +#: ../../Zotlabs/Module/Mitem.php:199 +msgid "Drop element" +msgstr "Slett element" + +#: ../../Zotlabs/Module/Mitem.php:200 +msgid "New element" +msgstr "Nytt element" + +#: ../../Zotlabs/Module/Mitem.php:201 +msgid "Edit this menu container" +msgstr "Endre denne menybeholderen" + +#: ../../Zotlabs/Module/Mitem.php:202 +msgid "Add menu element" +msgstr "Legg til menyelement" + +#: ../../Zotlabs/Module/Mitem.php:203 +msgid "Delete this menu item" +msgstr "Slett dette menyelementet" + +#: ../../Zotlabs/Module/Mitem.php:204 +msgid "Edit this menu item" +msgstr "Endre dette menyelementet" + +#: ../../Zotlabs/Module/Mitem.php:222 +msgid "Menu item not found." +msgstr "Menyelement ble ikke funnet." + +#: ../../Zotlabs/Module/Mitem.php:235 +msgid "Menu item deleted." +msgstr "Menyelement slettet." + +#: ../../Zotlabs/Module/Mitem.php:237 +msgid "Menu item could not be deleted." +msgstr "Menyelement kunne ikke bli slettet." + +#: ../../Zotlabs/Module/Mitem.php:244 +msgid "Edit Menu Element" +msgstr "Endre menyelement" + +#: ../../Zotlabs/Module/Mitem.php:254 +msgid "Link text" +msgstr "Lenketekst" + +#: ../../Zotlabs/Module/Profile.php:106 +msgid "vcard" +msgstr "" + +#: ../../Zotlabs/Module/Sharedwithme.php:105 +msgid "Files: shared with me" +msgstr "Filer: delt med meg" + +#: ../../Zotlabs/Module/Sharedwithme.php:107 +msgid "NEW" +msgstr "NY" + +#: ../../Zotlabs/Module/Sharedwithme.php:109 +#: ../../Zotlabs/Storage/Browser.php:380 +msgid "Last Modified" +msgstr "Sist endret" + +#: ../../Zotlabs/Module/Sharedwithme.php:110 +msgid "Remove all files" +msgstr "Fjern alle filer" + +#: ../../Zotlabs/Module/Sharedwithme.php:111 +msgid "Remove this file" +msgstr "Fjern denne filen" + +#: ../../Zotlabs/Module/Help.php:23 +msgid "Documentation Search" +msgstr "Søk i dokumentasjon" + +#: ../../Zotlabs/Module/Help.php:84 +msgid "Members" +msgstr "Medlemmer" + +#: ../../Zotlabs/Module/Help.php:85 +msgid "Administrators" +msgstr "" + +#: ../../Zotlabs/Module/Help.php:86 +msgid "Developers" +msgstr "" + +#: ../../Zotlabs/Module/Help.php:87 +msgid "Tutorials" +msgstr "" + +#: ../../Zotlabs/Module/Help.php:98 +msgid "$Projectname Documentation" +msgstr "$Projectname dokumentasjon" + +#: ../../Zotlabs/Module/Help.php:99 +msgid "Contents" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:67 +msgid "Import Webpage Elements" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:68 +msgid "Import selected" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:91 +msgid "Export Webpage Elements" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:92 +msgid "Export selected" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:260 +msgid "Actions" +msgstr "Handlinger" + +#: ../../Zotlabs/Module/Webpages.php:261 +msgid "Page Link" +msgstr "Sidelenke" + +#: ../../Zotlabs/Module/Webpages.php:262 +msgid "Page Title" +msgstr "Sidetittel" + +#: ../../Zotlabs/Module/Webpages.php:263 ../../Zotlabs/Module/Blocks.php:157 +#: ../../Zotlabs/Module/Menu.php:178 ../../Zotlabs/Module/Layouts.php:191 +msgid "Created" +msgstr "Laget" + +#: ../../Zotlabs/Module/Webpages.php:264 ../../Zotlabs/Module/Blocks.php:158 +#: ../../Zotlabs/Module/Menu.php:179 ../../Zotlabs/Module/Layouts.php:192 +msgid "Edited" +msgstr "Endret" + +#: ../../Zotlabs/Module/Webpages.php:292 +msgid "Invalid file type." +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:304 +msgid "Error opening zip file" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:315 +msgid "Invalid folder path." +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:342 +msgid "No webpage elements detected." +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:417 +msgid "Import complete." +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:14 +#: ../../Zotlabs/Module/Filestorage.php:53 +msgid "Deprecated!" +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:157 +msgid "Permission Denied." +msgstr "Tillatelse avvist." + +#: ../../Zotlabs/Module/Filestorage.php:190 +msgid "Edit file permissions" +msgstr "Endre filtillatelser" + +#: ../../Zotlabs/Module/Filestorage.php:203 +msgid "Include all files and sub folders" +msgstr "Inkluder alle filer og undermapper" + +#: ../../Zotlabs/Module/Filestorage.php:204 +msgid "Return to file list" +msgstr "Gå tilbake til filoversikten" + +#: ../../Zotlabs/Module/Filestorage.php:206 +#: ../../Zotlabs/Storage/Browser.php:386 +msgid "Copy/paste this code to attach file to a post" +msgstr "Kopier og lim inn denne koden for å legge til filen i et innlegg" + +#: ../../Zotlabs/Module/Filestorage.php:207 +#: ../../Zotlabs/Storage/Browser.php:387 +msgid "Copy/paste this URL to link file from a web page" +msgstr "Kopier og lim inn denne URL-en for å lenke til filen fra en webside" + +#: ../../Zotlabs/Module/Filestorage.php:209 +msgid "Share this file" +msgstr "Del denne filen" + +#: ../../Zotlabs/Module/Filestorage.php:210 +msgid "Show URL to this file" +msgstr "Vis URLen til denne filen" + +#: ../../Zotlabs/Module/Filestorage.php:211 +#: ../../Zotlabs/Storage/Browser.php:552 +msgid "Show in your contacts shared folder" +msgstr "" + +#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 +msgid "Tag removed" +msgstr "Merkelapp fjernet" + +#: ../../Zotlabs/Module/Tagrm.php:123 +msgid "Remove Item Tag" +msgstr "Fjern merkelapp fra element" + +#: ../../Zotlabs/Module/Tagrm.php:125 +msgid "Select a tag to remove: " +msgstr "Velg merkelapp å fjerne:" + +#: ../../Zotlabs/Module/Connect.php:65 ../../Zotlabs/Module/Connect.php:118 +msgid "Continue" +msgstr "Fortsett" + +#: ../../Zotlabs/Module/Connect.php:99 +msgid "Premium Channel Setup" +msgstr "Premiumkanal-oppsett" + +#: ../../Zotlabs/Module/Connect.php:101 +msgid "Enable premium channel connection restrictions" +msgstr "Slå på restriksjoner for forbindelse med premiumkanal" + +#: ../../Zotlabs/Module/Connect.php:102 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "" +"Vennligst skriv dine restriksjoner og betingelser, slik som" +" PayPal-kvittering, retningslinjer for bruk, og så videre." + +#: ../../Zotlabs/Module/Connect.php:104 ../../Zotlabs/Module/Connect.php:124 +msgid "" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" +msgstr "" +"Denne kanalen kan kreve ytterligere steg og bekreftelse av følgende" +" betingelser før tilkobling:" + +#: ../../Zotlabs/Module/Connect.php:105 +msgid "" +"Potential connections will then see the following text before proceeding:" +msgstr "Potensielle forbindelser vil da se følgende tekst før de går videre:" + +#: ../../Zotlabs/Module/Connect.php:106 ../../Zotlabs/Module/Connect.php:127 +msgid "" +"By continuing, I certify that I have complied with any instructions provided " +"on this page." +msgstr "" +"Ved å fortsette bekrefter jeg at jeg har oppfylt alle instruksjoner gitt på" +" denne siden." + +#: ../../Zotlabs/Module/Connect.php:115 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "(Ingen spesifikke instruksjoner er gitt av kanaleieren.)" + +#: ../../Zotlabs/Module/Connect.php:123 +msgid "Restricted or Premium Channel" +msgstr "Begrenset kanal eller premiumkanal" + +#: ../../Zotlabs/Module/Cloud.php:120 +msgid "Not found" +msgstr "" + +#: ../../Zotlabs/Module/Cloud.php:130 +msgid "Unknown error" +msgstr "" + +#: ../../Zotlabs/Module/Share.php:120 +msgid "Post repeated" +msgstr "" + +#: ../../Zotlabs/Module/Acl.php:370 +msgid "network" +msgstr "nettverk" + +#: ../../Zotlabs/Module/Editpost.php:38 ../../Zotlabs/Module/Editpost.php:43 +msgid "Item is not editable" +msgstr "Elementet kan ikke endres" + +#: ../../Zotlabs/Module/Editpost.php:110 ../../Zotlabs/Module/Rpost.php:218 +msgid "Edit post" +msgstr "Endre innlegg" + +#: ../../Zotlabs/Module/Tagger.php:50 +msgid "Post not found." +msgstr "" + +#: ../../Zotlabs/Module/Tagger.php:121 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s merket %3$s til %2$s med %4$s" + +#: ../../Zotlabs/Module/Authorize.php:17 +msgid "Unknown App" +msgstr "" + +#: ../../Zotlabs/Module/Authorize.php:29 +msgid "Authorize" +msgstr "" + +#: ../../Zotlabs/Module/Authorize.php:30 +#, php-format +msgid "Do you authorize the app %s to access your channel data?" +msgstr "" + +#: ../../Zotlabs/Module/Authorize.php:33 +#: ../../Zotlabs/Module/Admin/Accounts.php:319 +msgid "Deny" +msgstr "Avslå" + +#: ../../Zotlabs/Module/Admin/Queue.php:45 +msgid "Queue Statistics" +msgstr "Køstatistikk" + +#: ../../Zotlabs/Module/Admin/Queue.php:46 +msgid "Total Entries" +msgstr "Totalt antall oppføringer" + +#: ../../Zotlabs/Module/Admin/Queue.php:47 +msgid "Priority" +msgstr "Prioritet" + +#: ../../Zotlabs/Module/Admin/Queue.php:48 +msgid "Destination URL" +msgstr "Mål-URL" + +#: ../../Zotlabs/Module/Admin/Queue.php:49 +msgid "Mark hub permanently offline" +msgstr "Merk hub som permanent offline" + +#: ../../Zotlabs/Module/Admin/Queue.php:50 +msgid "Retry delivery to this hub" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Queue.php:51 +msgid "Empty queue for this hub" +msgstr "Tøm køen for denne hubben" + +#: ../../Zotlabs/Module/Admin/Queue.php:52 +msgid "Last known contact" +msgstr "Siste kjente kontakt" + +#: ../../Zotlabs/Module/Admin/Themes.php:26 +msgid "Theme settings updated." +msgstr "Temainnstillinger er oppdatert." + +#: ../../Zotlabs/Module/Admin/Themes.php:61 +msgid "No themes found." +msgstr "Ingen temaer er funnet." + +#: ../../Zotlabs/Module/Admin/Themes.php:95 +#: ../../Zotlabs/Module/Admin/Addons.php:311 +msgid "Disable" +msgstr "Skru av" + +#: ../../Zotlabs/Module/Admin/Themes.php:97 +#: ../../Zotlabs/Module/Admin/Addons.php:314 +msgid "Enable" +msgstr "Skru på" + +#: ../../Zotlabs/Module/Admin/Themes.php:116 +msgid "Screenshot" +msgstr "Skjermbilde" + +#: ../../Zotlabs/Module/Admin/Themes.php:122 +#: ../../Zotlabs/Module/Admin/Themes.php:156 +#: ../../Zotlabs/Module/Admin/Security.php:98 +#: ../../Zotlabs/Module/Admin/Accounts.php:307 +#: ../../Zotlabs/Module/Admin/Site.php:411 +#: ../../Zotlabs/Module/Admin/Logs.php:82 +#: ../../Zotlabs/Module/Admin/Channels.php:145 +#: ../../Zotlabs/Module/Admin/Addons.php:342 +#: ../../Zotlabs/Module/Admin/Addons.php:440 ../../Zotlabs/Module/Admin.php:140 +msgid "Administration" +msgstr "Administrasjon" + +#: ../../Zotlabs/Module/Admin/Themes.php:124 +#: ../../Zotlabs/Module/Admin/Addons.php:344 +msgid "Toggle" +msgstr "Skru av og på" + +#: ../../Zotlabs/Module/Admin/Themes.php:134 +#: ../../Zotlabs/Module/Admin/Addons.php:352 +msgid "Author: " +msgstr "Forfatter:" + +#: ../../Zotlabs/Module/Admin/Themes.php:135 +#: ../../Zotlabs/Module/Admin/Addons.php:353 +msgid "Maintainer: " +msgstr "Vedlikeholder:" + +#: ../../Zotlabs/Module/Admin/Themes.php:162 +msgid "[Experimental]" +msgstr "[Eksperimentelt]" + +#: ../../Zotlabs/Module/Admin/Themes.php:163 +msgid "[Unsupported]" +msgstr "[Ingen støtte]" + +#: ../../Zotlabs/Module/Admin/Features.php:56 +#, php-format +msgid "Lock feature %s" +msgstr "Lås funksjon %s" + +#: ../../Zotlabs/Module/Admin/Features.php:64 +msgid "Manage Additional Features" +msgstr "Håndter tilleggsfunksjoner" + +#: ../../Zotlabs/Module/Admin/Security.php:89 +msgid "" +"By default, unfiltered HTML is allowed in embedded media. This is inherently " +"insecure." +msgstr "" +"Ufiltrert HTML er i utgangspunktet tillatt i innebygde media. Dette er en" +" sikkerhetsrisiko." + +#: ../../Zotlabs/Module/Admin/Security.php:92 +msgid "" +"The recommended setting is to only allow unfiltered HTML from the following " +"sites:" +msgstr "" +"Det anbefales at man kun tillater ufiltrert HTML fra følgende nettsteder:" + +#: ../../Zotlabs/Module/Admin/Security.php:93 +msgid "" +"https://youtube.com/
https://www.youtube.com/
https://youtu.be/" +"
https://vimeo.com/
https://soundcloud.com/
" +msgstr "" +"https://youtube.com/
https://www.youtube.com/
https://youtu.be/https://vimeo.com/
https://soundcloud.com/
" + +#: ../../Zotlabs/Module/Admin/Security.php:94 +msgid "" +"All other embedded content will be filtered, unless " +"embedded content from that site is explicitly blocked." +msgstr "" +"Alt annet innebygget innhold vil bli filtrert, med mindre" +" innebygget innhold fra den aktuelle siden eksplisitt er blokkert." + +#: ../../Zotlabs/Module/Admin/Security.php:101 +msgid "Block public" +msgstr "Blokker offentlig tilgang" + +#: ../../Zotlabs/Module/Admin/Security.php:101 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently authenticated." +msgstr "" +"Kryss av for å blokkere tilgang til alle personlige sider som ellers ville" +" vært offentlig tilgjengelige på dette nettstedet med mindre du er logget inn." + +#: ../../Zotlabs/Module/Admin/Security.php:102 +msgid "Provide a cloud root directory" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:102 +msgid "" +"The cloud root directory lists all channel names which provide public files" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:103 +msgid "Show total disk space available to cloud uploads" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:104 +msgid "Set \"Transport Security\" HTTP header" +msgstr "Slå på \"Transport Security\" i HTTP meldingshodet" + +#: ../../Zotlabs/Module/Admin/Security.php:105 +msgid "Set \"Content Security Policy\" HTTP header" +msgstr "Sett \"Content Security Policy\" i HTTP meldingshodet" + +#: ../../Zotlabs/Module/Admin/Security.php:106 +msgid "Allowed email domains" +msgstr "Tillate e-postdomener" + +#: ../../Zotlabs/Module/Admin/Security.php:106 +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 "" +"Kommaseparert liste med domener som er tillatt i e-postadresser ved" +" registrering på dette nettstedet. Jokertegn er akseptert. Tomt betyr at alle" +" domener er tillatt" + +#: ../../Zotlabs/Module/Admin/Security.php:107 +msgid "Not allowed email domains" +msgstr "Ikke tillatte e-postdomener" + +#: ../../Zotlabs/Module/Admin/Security.php:107 +msgid "" +"Comma separated list of domains which are not allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains, unless allowed domains have been defined." +msgstr "" +"Kommaseparert liste med domener som ikke er tillatt i e-postadresser ved" +" registrering på dette nettstedet. Jokertegn er akseptert. Tomt betyr at alle" +" domener er tillatt, med mindre tillate domener er blitt definert." + +#: ../../Zotlabs/Module/Admin/Security.php:108 +msgid "Allow communications only from these sites" +msgstr "Tillat kommunikasjon med bare disse nettstedene" + +#: ../../Zotlabs/Module/Admin/Security.php:108 +msgid "" +"One site per line. Leave empty to allow communication from anywhere by " +"default" +msgstr "" +"Et nettsted per linje. La det stå tomt for å tillate kommunikasjon med" +" ethvert nettsted som standard" + +#: ../../Zotlabs/Module/Admin/Security.php:109 +msgid "Block communications from these sites" +msgstr "Blokker kommunikasjon fra disse nettstedene" + +#: ../../Zotlabs/Module/Admin/Security.php:110 +msgid "Allow communications only from these channels" +msgstr "Tillat kommunikasjon med bare disse kanalene" + +#: ../../Zotlabs/Module/Admin/Security.php:110 +msgid "" +"One channel (hash) per line. Leave empty to allow from any channel by default" +msgstr "" +"En kanal (hash) per linje. La det stå tomt for å tillate enhver kanal som" +" standard" + +#: ../../Zotlabs/Module/Admin/Security.php:111 +msgid "Block communications from these channels" +msgstr "Blokker kommunikasjon fra disse kanalene" + +#: ../../Zotlabs/Module/Admin/Security.php:112 +msgid "Only allow embeds from secure (SSL) websites and links." +msgstr "Kun tillat innebygget innhold fra sikre (HTTPS) nettsteder og lenker." + +#: ../../Zotlabs/Module/Admin/Security.php:113 +msgid "Allow unfiltered embedded HTML content only from these domains" +msgstr "Kun tillat ufiltrert innebygget innhold fra disse domenene" + +#: ../../Zotlabs/Module/Admin/Security.php:113 +msgid "One site per line. By default embedded content is filtered." +msgstr "" +"Ett nettsted pr. linje. Innebygget innhold er filtrert i utgangsounktet." + +#: ../../Zotlabs/Module/Admin/Security.php:114 +msgid "Block embedded HTML from these domains" +msgstr "Blokker innbygget HTML fra disse domenene" + +#: ../../Zotlabs/Module/Admin/Security.php:115 +msgid "Allow SVG thumbnails in file browser" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:115 +msgid "WARNING: SVG images may contain malicious code." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:116 +msgid "Allow embedded (inline) PDF files" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:128 +#, php-format +msgid "%s account blocked/unblocked" +msgid_plural "%s account blocked/unblocked" +msgstr[0] "%s konto blokkert/ikke blokkert lenger" +msgstr[1] "%s kontoer blokkert/ikke blokkert lenger" + +#: ../../Zotlabs/Module/Admin/Accounts.php:135 +#, php-format +msgid "%s account deleted" +msgid_plural "%s accounts deleted" +msgstr[0] "%s konto slettet" +msgstr[1] "%s kontoer slettet" + +#: ../../Zotlabs/Module/Admin/Accounts.php:171 +msgid "Account not found" +msgstr "Kontoen ble ikke funnet" + +#: ../../Zotlabs/Module/Admin/Accounts.php:192 +#, php-format +msgid "Account '%s' blocked" +msgstr "Kontoen '%s' blokkert" + +#: ../../Zotlabs/Module/Admin/Accounts.php:200 +#, php-format +msgid "Account '%s' unblocked" +msgstr "Kontoen '%s' er ikke blokkert lenger" + +#: ../../Zotlabs/Module/Admin/Accounts.php:240 +msgid "Unverified" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:243 +msgid "Expired" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:310 +msgid "Show verified registrations" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:310 +msgid "Show all registrations" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:312 +msgid "Select toggle" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:313 +msgid "Deny selected" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:314 +msgid "Approve selected" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:315 +msgid "All registrations" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:315 +msgid "Verified registrations waiting for approval" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:316 +msgid "Request date" +msgstr "Dato for forespørsel" + +#: ../../Zotlabs/Module/Admin/Accounts.php:316 +msgid "Requests" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:317 +msgid "No registrations available" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:317 +msgid "No verified registrations available" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:321 +#: ../../Zotlabs/Module/Contactedit.php:639 +#: ../../Zotlabs/Module/Connedit.php:508 +msgid "Block" +msgstr "Blokker" + +#: ../../Zotlabs/Module/Admin/Accounts.php:322 +#: ../../Zotlabs/Module/Contactedit.php:639 +#: ../../Zotlabs/Module/Connedit.php:508 +msgid "Unblock" +msgstr "Ikke blokker lenger" + +#: ../../Zotlabs/Module/Admin/Accounts.php:323 +msgid "Verified" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:324 +msgid "Not yet verified" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:329 +msgid "ID" +msgstr "ID" + +#: ../../Zotlabs/Module/Admin/Accounts.php:331 +msgid "All channels" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:332 +msgid "Register date" +msgstr "Registreringsdato" + +#: ../../Zotlabs/Module/Admin/Accounts.php:333 +msgid "Last login" +msgstr "Siste innlogging" + +#: ../../Zotlabs/Module/Admin/Accounts.php:334 +msgid "Expires" +msgstr "Utløper" + +#: ../../Zotlabs/Module/Admin/Accounts.php:335 +#: ../../Zotlabs/Module/Admin/Account_edit.php:72 +msgid "Service class" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:337 +msgid "" +"Selected accounts will be deleted!\\n\\nEverything these accounts had posted " +"on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" +"Valgte kontoer vil bli slettet!\\n\\nAlt disse kontoene har lagt inn på dette" +" nettstedet vil bli slettet permanent!\\n\\nEr du sikker på at du vil slette" +" disse valgte kontoene?" + +#: ../../Zotlabs/Module/Admin/Accounts.php:338 +msgid "" +"The account {0} will be deleted!\\n\\nEverything this account has posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" +"Kontoen {0} vl bli slettet!\\n\\nAlt denne kontoen har lagt inn på dette" +" nettstedet vil bli slettet permanent!\\n\\nEr du sikker på at du vil slette" +" denne kontoen?" + +#: ../../Zotlabs/Module/Admin/Accounts.php:347 +msgid "Message" +msgstr "Melding" + +#: ../../Zotlabs/Module/Admin/Site.php:112 +msgid "Invalid input" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:132 +msgid "Errors" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:225 +msgid "Site settings updated." +msgstr "Nettstedsinnstillinger er oppdatert." + +#: ../../Zotlabs/Module/Admin/Site.php:262 +#: ../../Zotlabs/Module/Settings/Display.php:116 +#, php-format +msgid "%s - (Incompatible)" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:269 +msgid "mobile" +msgstr "mobil" + +#: ../../Zotlabs/Module/Admin/Site.php:271 +msgid "experimental" +msgstr "eksperimentell" + +#: ../../Zotlabs/Module/Admin/Site.php:273 +msgid "unsupported" +msgstr "ikke støttet" + +#: ../../Zotlabs/Module/Admin/Site.php:320 +msgid "Yes - with approval" +msgstr "Ja - med godkjenning" + +#: ../../Zotlabs/Module/Admin/Site.php:328 +msgid "My site is not a public server" +msgstr "Mitt nettsted er ikke en offentlig tjeneste" + +#: ../../Zotlabs/Module/Admin/Site.php:329 +msgid "My site has paid access only" +msgstr "Mitt nettsted gir kun tilgang mot betaling" + +#: ../../Zotlabs/Module/Admin/Site.php:330 +msgid "My site has free access only" +msgstr "Mitt nettsted har kun gratis tilgang" + +#: ../../Zotlabs/Module/Admin/Site.php:331 +msgid "My site offers free accounts with optional paid upgrades" +msgstr "" +"Mitt nettsted tilbyr gratis konto med valgfri oppgradering til betalt tjeneste" + +#: ../../Zotlabs/Module/Admin/Site.php:349 +msgid "Default permission role for new accounts" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:349 +msgid "" +"This role will be used for the first channel created after registration." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:356 ../../Zotlabs/Module/Invite.php:397 +msgid "Minute(s)" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:357 ../../Zotlabs/Module/Invite.php:398 +msgid "Hour(s)" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:358 ../../Zotlabs/Module/Invite.php:399 +msgid "Day(s)" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:359 +msgid "Week(s)" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:360 +msgid "Month(s)" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:361 +msgid "Year(s)" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:369 +msgid "Register verification delay" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:372 +msgid "Time to wait before a registration can be verified" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:375 +#: ../../Zotlabs/Module/Admin/Site.php:397 ../../Zotlabs/Module/Invite.php:408 +msgid "duration up from now" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:391 +msgid "Register verification expiration time" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:394 +msgid "Time before an unverified registration will expire" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:417 +msgid "File upload" +msgstr "Last opp fil" + +#: ../../Zotlabs/Module/Admin/Site.php:418 +msgid "Policies" +msgstr "Retningslinjer" + +#: ../../Zotlabs/Module/Admin/Site.php:425 +msgid "Banner/Logo" +msgstr "Banner/Logo" + +#: ../../Zotlabs/Module/Admin/Site.php:425 +msgid "Unfiltered HTML/CSS/JS is allowed" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:426 +msgid "Administrator Information" +msgstr "Administratorinformasjon" + +#: ../../Zotlabs/Module/Admin/Site.php:426 +msgid "" +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode can be used here" +msgstr "" +"Kontaktinformasjon til nettstedsadministratorer. Vises på siteinfo-siden." +" BBCode kan brukes her" + +#: ../../Zotlabs/Module/Admin/Site.php:427 ../../Zotlabs/Module/Siteinfo.php:24 +msgid "Site Information" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:427 +msgid "" +"Publicly visible description of this site. Displayed on siteinfo page. " +"BBCode can be used here" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:428 +msgid "System language" +msgstr "Systemspråk" + +#: ../../Zotlabs/Module/Admin/Site.php:429 +msgid "System theme" +msgstr "Systemtema" + +#: ../../Zotlabs/Module/Admin/Site.php:429 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "" +"Standard systemtema - kan overstyres av brukerprofiler - endre temainnstillinger" + +#: ../../Zotlabs/Module/Admin/Site.php:432 +msgid "Allow Feeds as Connections" +msgstr "Tillat strømmer som forbindelser" + +#: ../../Zotlabs/Module/Admin/Site.php:432 +msgid "(Heavy system resource usage)" +msgstr "(Tung bruk av systemressurser)" + +#: ../../Zotlabs/Module/Admin/Site.php:433 +msgid "Maximum image size" +msgstr "Største bildestørrelse" + +#: ../../Zotlabs/Module/Admin/Site.php:433 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "" +"Største størrelse i bytes for opplastede bilder. Standard er 0, som betyr" +" ubegrenset." + +#: ../../Zotlabs/Module/Admin/Site.php:434 +msgid "Minimum age" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:434 +msgid "Minimum age (in years) for who may register on this site." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:435 +msgid "Which best describes the types of account offered by this hub?" +msgstr "" +"Hvilket alternativ beskriver best hva slags kontotype som tilbys av dette" +" nettstedet/denne hubben?" + +#: ../../Zotlabs/Module/Admin/Site.php:435 +msgid "This is displayed on the public server site list." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:441 +msgid "Register text" +msgstr "Registreringstekst" + +#: ../../Zotlabs/Module/Admin/Site.php:443 +msgid "This text will be displayed prominently at the registration page" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:447 +msgid "Does this site allow new member registration?" +msgstr "Tillater dette nettstedet registrering av nye medlemmer?" + +#: ../../Zotlabs/Module/Admin/Site.php:454 +msgid "Configure the registration open days/hours" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:456 +msgid "Empty or '-:-' value will keep registration open 24/7 (default)" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:457 +msgid "" +"Weekdays and hours must be separated by colon ':', From-To ranges with a " +"dash `-` example: 1:800-1200" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:458 +msgid "" +"Weekday:Hour pairs must be separated by space ' ' example: 1:900-1700 " +"2:900-1700" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:459 +msgid "" +"From-To ranges must be separated by comma ',' example: 1:800-1200,1300-1700 " +"or 1-2,4-5:900-1700" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:460 +msgid "Advanced examples:" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:460 +#: ../../Zotlabs/Module/Settings/Channel.php:182 +msgid "or" +msgstr "eller" + +#: ../../Zotlabs/Module/Admin/Site.php:461 +msgid "Check your configuration" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:465 +msgid "Max account registrations per day" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:467 +msgid "Unlimited if zero or no value - default 50" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:471 +msgid "Max account registrations from same IP" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:473 +msgid "Unlimited if zero or no value - default 3" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:479 +msgid "Auto channel create" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:481 +msgid "" +"If disabled the channel will be created in a separate step during the " +"registration process" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:485 +msgid "Require invite code" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:490 +msgid "Allow invite code" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:495 +msgid "Require email address" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:497 +msgid "The provided email address will be verified (recommended)" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:501 +msgid "Abandon account after x days" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:503 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "" +"Vil ikke kaste bort systemressurser på å spørre eksterne nettsteder etter" +" forlatte kontoer. Skriv 0 for å ikke sette noen tidsgrense." + +#: ../../Zotlabs/Module/Admin/Site.php:508 +msgid "Site homepage to show visitors (default: login box)" +msgstr "" +"Nettstedets hjemmeside som vises til besøkende (standard: innloggingsboks)" + +#: ../../Zotlabs/Module/Admin/Site.php:508 +msgid "" +"example: 'pubstream' to show public stream, 'page/sys/home' to show a system " +"webpage called 'home' or 'include:home.html' to include a file." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:509 +msgid "Preserve site homepage URL" +msgstr "Bevar URL-en til nettstedets hjemmeside" + +#: ../../Zotlabs/Module/Admin/Site.php:509 +msgid "" +"Present the site homepage in a frame at the original location instead of " +"redirecting" +msgstr "" +"Presenter hjemmesiden til nettstedet i en ramme fra den opprinnelige" +" plasseringen i stedet for å omdirigere" + +#: ../../Zotlabs/Module/Admin/Site.php:510 +msgid "Allowed friend domains" +msgstr "Tillatte vennedomener" + +#: ../../Zotlabs/Module/Admin/Site.php:510 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "" +"Kommaseparert liste over domener som har lov til å etablere vennskap med" +" dette nettstedet. Jokertegn er akseptert. Tøm for å tillate alle domener." + +#: ../../Zotlabs/Module/Admin/Site.php:511 +msgid "Force publish" +msgstr "Tving publisering" + +#: ../../Zotlabs/Module/Admin/Site.php:511 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "" +"Kryss av for å tvinge alle profiler på dette nettstedet til å bli oppført i" +" nettstedet sin katalog." + +#: ../../Zotlabs/Module/Admin/Site.php:512 +msgid "Import Public Streams" +msgstr "Importer offentlige innholdsstrømmer" + +#: ../../Zotlabs/Module/Admin/Site.php:512 +msgid "" +"Import and allow access to public content pulled from other sites. Warning: " +"this content is unmoderated." +msgstr "" +"Importer og gi tilgang til offentlig innhold trukket inn fra andre" +" nettsteder. Advarsel: dette innholdet er ikke moderert." + +#: ../../Zotlabs/Module/Admin/Site.php:513 +msgid "Site only Public Streams" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:513 +msgid "" +"Allow access to public content originating only from this site if Imported " +"Public Streams are disabled." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:514 +msgid "Allow anybody on the internet to access the Public streams" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:514 +msgid "" +"Disable to require authentication before viewing. Warning: this content is " +"unmoderated." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:515 +msgid "Only import Public stream posts with this text" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:515 +#: ../../Zotlabs/Module/Admin/Site.php:516 +#: ../../Zotlabs/Module/Contactedit.php:423 +#: ../../Zotlabs/Module/Contactedit.php:424 +#: ../../Zotlabs/Module/Connedit.php:706 ../../Zotlabs/Module/Connedit.php:707 +msgid "" +"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " +"all posts" +msgstr "" +"ord per linje eller #merkelapper eller /mønster/ eller språk lang=xx, la stå" +" blankt for å importere alle innlegg" + +#: ../../Zotlabs/Module/Admin/Site.php:516 +msgid "Do not import Public stream posts with this text" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:519 +msgid "Login on Homepage" +msgstr "Logg inn på hjemmesiden" + +#: ../../Zotlabs/Module/Admin/Site.php:519 +msgid "" +"Present a login box to visitors on the home page if no other content has " +"been configured." +msgstr "" +"Presenter en innloggingsboks til besøkende på hjemmesiden hvis ikke noe annet" +" innhold har blitt konfigurert." + +#: ../../Zotlabs/Module/Admin/Site.php:520 +msgid "Enable context help" +msgstr "Slå på kontekstuell hjelp" + +#: ../../Zotlabs/Module/Admin/Site.php:520 +msgid "" +"Display contextual help for the current page when the help button is pressed." +msgstr "" +"Vis kontekstuell hjelp for den gjeldende siden når du klikker på" +" hjelpeknappen." + +#: ../../Zotlabs/Module/Admin/Site.php:522 +msgid "Reply-to email address for system generated email." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:523 +msgid "Sender (From) email address for system generated email." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:524 +msgid "Name of email sender for system generated email." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:526 +msgid "Directory Server URL" +msgstr "Katalogtjener URL" + +#: ../../Zotlabs/Module/Admin/Site.php:526 +msgid "Default directory server" +msgstr "Standard katalogtjener" + +#: ../../Zotlabs/Module/Admin/Site.php:528 +msgid "Enable SSE Notifications" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:528 +msgid "" +"If disabled, traditional polling will be used. Warning: this setting might " +"not be suited for shared hosting" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:530 +msgid "Proxy user" +msgstr "Brukernavn mellomtjener" + +#: ../../Zotlabs/Module/Admin/Site.php:531 +msgid "Proxy URL" +msgstr "Mellomtjener URL" + +#: ../../Zotlabs/Module/Admin/Site.php:532 +msgid "Network timeout" +msgstr "Nettverk tidsavbrudd" + +#: ../../Zotlabs/Module/Admin/Site.php:532 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Verdien i sekunder. Skriv 0 for ubegrenset (ikke anbefalt)." + +#: ../../Zotlabs/Module/Admin/Site.php:533 +msgid "Delivery interval" +msgstr "Leveringsinterval" + +#: ../../Zotlabs/Module/Admin/Site.php:533 +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 "" +"Forsink leveringsprosessene i bakgrunnen med dette antall sekunder for å" +" redusere systembelastningen. Anbefaling: 4-5 for delte tjenere, 2-3 for" +" virtuelle tjenere, 0-1 for større dedikerte tjenere." + +#: ../../Zotlabs/Module/Admin/Site.php:534 +msgid "Deliveries per process" +msgstr "Leveranser per prosess" + +#: ../../Zotlabs/Module/Admin/Site.php:534 +msgid "" +"Number of deliveries to attempt in a single operating system process. Adjust " +"if necessary to tune system performance. Recommend: 1-5." +msgstr "" +"Antall leveranser som forsøkes i en enkelt operativsystemprosess. Juster om" +" nødvendig for å fininnstille systemets yteevne. Anbefaling: 1-5." + +#: ../../Zotlabs/Module/Admin/Site.php:535 +msgid "Queue Threshold" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:535 +msgid "" +"Always defer immediate delivery if queue contains more than this number of " +"entries." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:536 +msgid "Poll interval" +msgstr "Spørreintervall" + +#: ../../Zotlabs/Module/Admin/Site.php:536 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "" +"Forsink spørreprosessene i bakgrunnen med dette antall sekunder for å" +" redusere systembelastningen. Hvis 0, bruk dette leveringsintervallet." + +#: ../../Zotlabs/Module/Admin/Site.php:537 +msgid "Path to ImageMagick convert program" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:537 +msgid "" +"If set, use this program to generate photo thumbnails for huge images ( > " +"4000 pixels in either dimension), otherwise memory exhaustion may occur. " +"Example: /usr/bin/convert" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:538 +msgid "Maximum Load Average" +msgstr "Største belastningsgjennomsnitt" + +#: ../../Zotlabs/Module/Admin/Site.php:538 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "" +"Største systembelastning før leverings- og spørreprosesser blir utsatt -" +" standard 50." + +#: ../../Zotlabs/Module/Admin/Site.php:539 +msgid "Expiration period in days for imported (grid/network) content" +msgstr "Antall dager før importert innhold (nettet/nettverk) utgår" + +#: ../../Zotlabs/Module/Admin/Site.php:539 +msgid "0 for no expiration of imported content" +msgstr "0 dersom importert innhold ikke skal utgå" + +#: ../../Zotlabs/Module/Admin/Site.php:540 +msgid "" +"Do not expire any posts which have comments less than this many days ago" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:541 +msgid "" +"Public servers: Optional landing (marketing) webpage for new registrants" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:541 +#, php-format +msgid "Create this page first. Default is %s/register" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:542 +msgid "Page to display after creating a new channel" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:542 +msgid "Default: profiles" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:543 +msgid "Optional: site location" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:543 +msgid "Region or country" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:628 +#: ../../Zotlabs/Module/Admin/Site.php:629 +msgid "Invalid 24h time value (hhmm/hmm)" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Logs.php:28 +msgid "Log settings updated." +msgstr "Logginnstillinger er oppdatert." + +#: ../../Zotlabs/Module/Admin/Logs.php:85 +msgid "Clear" +msgstr "Tøm" + +#: ../../Zotlabs/Module/Admin/Logs.php:91 +msgid "Debugging" +msgstr "Feilsøking" + +#: ../../Zotlabs/Module/Admin/Logs.php:92 +msgid "Log file" +msgstr "Loggfil" + +#: ../../Zotlabs/Module/Admin/Logs.php:92 +msgid "" +"Must be writable by web server. Relative to your top-level webserver " +"directory." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Logs.php:93 +msgid "Log level" +msgstr "Loggnivå" + +#: ../../Zotlabs/Module/Admin/Channels.php:31 +#, php-format +msgid "%s channel censored/uncensored" +msgid_plural "%s channels censored/uncensored" +msgstr[0] "%s kanal er sensurert/ikke sensurert lenger" +msgstr[1] "%s kanaler er sensurert/ikke sensurert lenger" + +#: ../../Zotlabs/Module/Admin/Channels.php:40 +#, php-format +msgid "%s channel code allowed/disallowed" +msgid_plural "%s channels code allowed/disallowed" +msgstr[0] "%s kanal med kode tillatt/ikke tillatt" +msgstr[1] "%s kanaler med kode tillatt/ikke tillatt" + +#: ../../Zotlabs/Module/Admin/Channels.php:46 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "%s kanal slettet" +msgstr[1] "%s kanaler slettet" + +#: ../../Zotlabs/Module/Admin/Channels.php:65 +msgid "Channel not found" +msgstr "Kanalen ble ikke funnet" + +#: ../../Zotlabs/Module/Admin/Channels.php:75 +#, php-format +msgid "Channel '%s' deleted" +msgstr "Kanalen '%s' er slettet" + +#: ../../Zotlabs/Module/Admin/Channels.php:87 +#, php-format +msgid "Channel '%s' censored" +msgstr "Kanalen '%s' er sensurert" + +#: ../../Zotlabs/Module/Admin/Channels.php:87 +#, php-format +msgid "Channel '%s' uncensored" +msgstr "Kanalen '%s' er ikke sensurert lenger" + +#: ../../Zotlabs/Module/Admin/Channels.php:98 +#, php-format +msgid "Channel '%s' code allowed" +msgstr "Kanal '%s' kode tillatt" + +#: ../../Zotlabs/Module/Admin/Channels.php:98 +#, php-format +msgid "Channel '%s' code disallowed" +msgstr "Kanal '%s' kode ikke tillatt" + +#: ../../Zotlabs/Module/Admin/Channels.php:148 +msgid "select all" +msgstr "velg alle" + +#: ../../Zotlabs/Module/Admin/Channels.php:150 +#: ../../Zotlabs/Module/Directory.php:361 +msgid "Censor" +msgstr "Sensurer" + +#: ../../Zotlabs/Module/Admin/Channels.php:151 +#: ../../Zotlabs/Module/Directory.php:361 +msgid "Uncensor" +msgstr "Ikke sensurer lenger" + +#: ../../Zotlabs/Module/Admin/Channels.php:152 +msgid "Allow Code" +msgstr "Tillat kode" + +#: ../../Zotlabs/Module/Admin/Channels.php:153 +msgid "Disallow Code" +msgstr "Ikke tillat kode" + +#: ../../Zotlabs/Module/Admin/Channels.php:158 +msgid "UID" +msgstr "UID" + +#: ../../Zotlabs/Module/Admin/Channels.php:162 +msgid "" +"Selected channels will be deleted!\\n\\nEverything that was posted in these " +"channels on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" +"Valgte kanaler vil bli slettet!\\n\\nAlt innhold som er lagt inn i disse" +" kanalene på dette nettstedet vil bli slettet for alltid!\\n\\nEr du sikker" +" på at du vil slette disse kanalene med alt innhold?" + +#: ../../Zotlabs/Module/Admin/Channels.php:163 +msgid "" +"The channel {0} will be deleted!\\n\\nEverything that was posted in this " +"channel on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" +"Kanalen {0} vil bli slettet!\\n\\nAlt innhold som er lagt inn i denne kanalen" +" på dettet nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du" +" vil slette denne kanalen med alt innhold?" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:29 +#, php-format +msgid "Password changed for account %d." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:46 +msgid "Account settings updated." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:61 +msgid "Account not found." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:68 +msgid "Account Edit" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:69 +msgid "New Password" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:70 +msgid "New Password again" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:71 +msgid "Account language (for emails)" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:89 +msgid "New Profile Field" +msgstr "Nytt profilfelt" + +#: ../../Zotlabs/Module/Admin/Profs.php:90 +#: ../../Zotlabs/Module/Admin/Profs.php:110 +msgid "Field nickname" +msgstr "Feltets kallenavn" + +#: ../../Zotlabs/Module/Admin/Profs.php:90 +#: ../../Zotlabs/Module/Admin/Profs.php:110 +msgid "System name of field" +msgstr "Systemnavnet til feltet" + +#: ../../Zotlabs/Module/Admin/Profs.php:91 +#: ../../Zotlabs/Module/Admin/Profs.php:111 +msgid "Input type" +msgstr "Inndata-type" + +#: ../../Zotlabs/Module/Admin/Profs.php:92 +#: ../../Zotlabs/Module/Admin/Profs.php:112 +msgid "Field Name" +msgstr "Feltnavn" + +#: ../../Zotlabs/Module/Admin/Profs.php:92 +#: ../../Zotlabs/Module/Admin/Profs.php:112 +msgid "Label on profile pages" +msgstr "Merkelapp på profilsider" + +#: ../../Zotlabs/Module/Admin/Profs.php:93 +#: ../../Zotlabs/Module/Admin/Profs.php:113 +msgid "Help text" +msgstr "Hjelpetekst" + +#: ../../Zotlabs/Module/Admin/Profs.php:93 +#: ../../Zotlabs/Module/Admin/Profs.php:113 +msgid "Additional info (optional)" +msgstr "Tilleggsinformasjon (valgfritt)" -#: ../../Zotlabs/Module/Settings.php:1121 -msgid "Default file upload folder" -msgstr "Standard mappe for opplasting av filer" +#: ../../Zotlabs/Module/Admin/Profs.php:103 +msgid "Field definition not found" +msgstr "Feltdefinisjonen ble ikke funnet" -#: ../../Zotlabs/Module/Settings.php:1123 -msgid "Personal menu to display in your channel pages" -msgstr "Personlig meny som kan vises på dine kanalsider" +#: ../../Zotlabs/Module/Admin/Profs.php:109 +msgid "Edit Profile Field" +msgstr "Endre profilfelt" -#: ../../Zotlabs/Module/Settings.php:1125 -msgid "Remove this channel." -msgstr "Fjern denne kanalen." +#: ../../Zotlabs/Module/Admin/Profs.php:169 +msgid "Basic Profile Fields" +msgstr "Grunnleggende profilfelter" -#: ../../Zotlabs/Module/Settings.php:1126 -msgid "Firefox Share $Projectname provider" -msgstr "$Projectname Firefox Share tilbyder" +#: ../../Zotlabs/Module/Admin/Profs.php:170 +msgid "Advanced Profile Fields" +msgstr "Utvidede profilfelter" -#: ../../Zotlabs/Module/Settings.php:1127 -msgid "Start calendar week on monday" -msgstr "Start uken med mandag i kalenderen" +#: ../../Zotlabs/Module/Admin/Profs.php:170 +msgid "(In addition to basic fields)" +msgstr "(I tillegg til grunnleggende felt)" -#: ../../Zotlabs/Module/Setup.php:179 -msgid "$Projectname Server - Setup" -msgstr "$Projectname-tjener - oppsett" +#: ../../Zotlabs/Module/Admin/Profs.php:172 +msgid "All available fields" +msgstr "Alle tilgjengelige felt" -#: ../../Zotlabs/Module/Setup.php:183 -msgid "Could not connect to database." -msgstr "Fikk ikke kontakt med databasen." +#: ../../Zotlabs/Module/Admin/Profs.php:173 +msgid "Custom Fields" +msgstr "" -#: ../../Zotlabs/Module/Setup.php:187 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." -msgstr "Fikk ikke kontakt med det angitte nettstedets URL. Problemet kan muligens skyldes SSL-sertifikatet eller DNS." +#: ../../Zotlabs/Module/Admin/Profs.php:177 +msgid "Create Custom Field" +msgstr "Legg til egendefinert felt" -#: ../../Zotlabs/Module/Setup.php:194 -msgid "Could not create table." -msgstr "Kunne ikke lage tabellen." +#: ../../Zotlabs/Module/Admin/Dbsync.php:19 +#: ../../Zotlabs/Module/Admin/Dbsync.php:59 +msgid "Update has been marked successful" +msgstr "Oppdateringen har blitt merket som en suksess" -#: ../../Zotlabs/Module/Setup.php:199 -msgid "Your site database has been installed." -msgstr "Databasen til ditt nettsted har blitt installert." +#: ../../Zotlabs/Module/Admin/Dbsync.php:32 +#, php-format +msgid "Verification of update %s failed. Check system logs." +msgstr "" -#: ../../Zotlabs/Module/Setup.php:203 -msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." -msgstr "Du må kanskje importere filen \"install/schmea_xxx.sql\" manuelt ved å bruke en databaseklient." +#: ../../Zotlabs/Module/Admin/Dbsync.php:35 +#: ../../Zotlabs/Module/Admin/Dbsync.php:74 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Oppdatering %s ble gjennomført med suksess." -#: ../../Zotlabs/Module/Setup.php:204 ../../Zotlabs/Module/Setup.php:266 -#: ../../Zotlabs/Module/Setup.php:721 -msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "Vennligst les filen \"install/INSTALL.txt\"." +#: ../../Zotlabs/Module/Admin/Dbsync.php:39 +#, php-format +msgid "Verifying update %s did not return a status. Unknown if it succeeded." +msgstr "" -#: ../../Zotlabs/Module/Setup.php:263 -msgid "System check" -msgstr "Systemsjekk" +#: ../../Zotlabs/Module/Admin/Dbsync.php:42 +#, php-format +msgid "Update %s does not contain a verification function." +msgstr "" -#: ../../Zotlabs/Module/Setup.php:268 -msgid "Check again" -msgstr "Sjekk igjen" +#: ../../Zotlabs/Module/Admin/Dbsync.php:46 +#: ../../Zotlabs/Module/Admin/Dbsync.php:81 +#, php-format +msgid "Update function %s could not be found." +msgstr "Oppdatering av funksjon %s kunne ikke finnes." -#: ../../Zotlabs/Module/Setup.php:290 -msgid "Database connection" -msgstr "Databaseforbindelse" +#: ../../Zotlabs/Module/Admin/Dbsync.php:71 +#, php-format +msgid "Executing update procedure %s failed. Check system logs." +msgstr "" -#: ../../Zotlabs/Module/Setup.php:291 +#: ../../Zotlabs/Module/Admin/Dbsync.php:78 +#, php-format msgid "" -"In order to install $Projectname we need to know how to connect to your " -"database." -msgstr "For å installere $Projectname må du oppgi hvordan din database kan kontaktes." +"Update %s did not return a status. It cannot be determined if it was " +"successful." +msgstr "" -#: ../../Zotlabs/Module/Setup.php:292 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Vennligst kontakt din nettstedstilbyder eller nettstedsadministrator hvis du har spørsmål om disse innstillingene." +#: ../../Zotlabs/Module/Admin/Dbsync.php:99 +msgid "Failed Updates" +msgstr "Mislykkede oppdateringer" -#: ../../Zotlabs/Module/Setup.php:293 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "Databasen du oppgir nedenfor må finnes på forhånd. Hvis den ikke finnes, vennligst lag den før du fortsetter." +#: ../../Zotlabs/Module/Admin/Dbsync.php:101 +msgid "Mark success (if update was manually applied)" +msgstr "Marker suksess (hvis oppdateringen ble gjennomført manuelt)" -#: ../../Zotlabs/Module/Setup.php:297 -msgid "Database Server Name" -msgstr "Navn på databasetjener" +#: ../../Zotlabs/Module/Admin/Dbsync.php:102 +msgid "Attempt to verify this update if a verification procedure exists" +msgstr "" -#: ../../Zotlabs/Module/Setup.php:297 -msgid "Default is 127.0.0.1" -msgstr "Standard er 127.0.0.1" +#: ../../Zotlabs/Module/Admin/Dbsync.php:103 +msgid "Attempt to execute this update step automatically" +msgstr "Prøv å gjennomføre dette oppdateringstrinnet automatisk" -#: ../../Zotlabs/Module/Setup.php:298 -msgid "Database Port" -msgstr "Databaseport" +#: ../../Zotlabs/Module/Admin/Dbsync.php:108 +msgid "No failed updates." +msgstr "Ingen mislykkede oppdateringer." -#: ../../Zotlabs/Module/Setup.php:298 -msgid "Communication port number - use 0 for default" -msgstr "Kommunikasjonsportnummer - bruk 0 for standard" +#: ../../Zotlabs/Module/Admin/Addons.php:290 +#, php-format +msgid "Plugin %s disabled." +msgstr "Tilleggsfunksjonen %s er avskrudd." -#: ../../Zotlabs/Module/Setup.php:299 -msgid "Database Login Name" -msgstr "Database innloggingsnavn" +#: ../../Zotlabs/Module/Admin/Addons.php:295 +#, php-format +msgid "Plugin %s enabled." +msgstr "Tilleggsfunksjonen %s er påskrudd." -#: ../../Zotlabs/Module/Setup.php:300 -msgid "Database Login Password" -msgstr "Database innloggingspassord" +#: ../../Zotlabs/Module/Admin/Addons.php:354 +msgid "Minimum project version: " +msgstr "Minimum prosjektversjon:" -#: ../../Zotlabs/Module/Setup.php:301 -msgid "Database Name" -msgstr "Databasenavn" +#: ../../Zotlabs/Module/Admin/Addons.php:355 +msgid "Maximum project version: " +msgstr "Maksimum prosjektversjon:" -#: ../../Zotlabs/Module/Setup.php:302 -msgid "Database Type" -msgstr "Databasetype" +#: ../../Zotlabs/Module/Admin/Addons.php:356 +msgid "Minimum PHP version: " +msgstr "Minimum PHP-versjon:" -#: ../../Zotlabs/Module/Setup.php:304 ../../Zotlabs/Module/Setup.php:344 -msgid "Site administrator email address" -msgstr "E-postadressen til administrator ved nettstedet" +#: ../../Zotlabs/Module/Admin/Addons.php:357 +msgid "Compatible Server Roles: " +msgstr "" -#: ../../Zotlabs/Module/Setup.php:304 ../../Zotlabs/Module/Setup.php:344 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Din konto sin e-postadresse må være lik denne for å kunne bruke web-administrasjonspanelet." +#: ../../Zotlabs/Module/Admin/Addons.php:358 +msgid "Requires: " +msgstr "Krever:" -#: ../../Zotlabs/Module/Setup.php:305 ../../Zotlabs/Module/Setup.php:346 -msgid "Website URL" -msgstr "Nettstedets URL" +#: ../../Zotlabs/Module/Admin/Addons.php:359 +#: ../../Zotlabs/Module/Admin/Addons.php:446 +msgid "Disabled - version incompatibility" +msgstr "Skrudd av - versjonsinkompatibilitet" -#: ../../Zotlabs/Module/Setup.php:305 ../../Zotlabs/Module/Setup.php:346 -msgid "Please use SSL (https) URL if available." -msgstr "Vennligst bruk SSL (https) URL hvis tilgjengelig." +#: ../../Zotlabs/Module/Admin/Addons.php:415 +msgid "Enter the public git repository URL of the addon repo." +msgstr "" -#: ../../Zotlabs/Module/Setup.php:306 ../../Zotlabs/Module/Setup.php:349 -msgid "Please select a default timezone for your website" -msgstr "Vennligst velg en standard tidssone for ditt nettsted" +#: ../../Zotlabs/Module/Admin/Addons.php:416 +msgid "Addon repo git URL" +msgstr "" -#: ../../Zotlabs/Module/Setup.php:333 -msgid "Site settings" -msgstr "Nettstedets innstillinger" +#: ../../Zotlabs/Module/Admin/Addons.php:417 +msgid "Custom repo name" +msgstr "" -#: ../../Zotlabs/Module/Setup.php:347 -msgid "Enable $Projectname advanced features?" -msgstr "Skru på avansertechannel " +"role, which have higher priority than contact role settings." +msgstr "" -#: ../../Zotlabs/Module/Setup.php:641 -msgid "" -"Providers are available that issue free certificates which are browser-" -"valid." -msgstr "Det finnes tilbydere som utsteder gratis sertifikater som er gyldige i nettlesere." +#: ../../Zotlabs/Module/Email_resend.php:12 +#: ../../Zotlabs/Module/Email_validation.php:24 +msgid "Token verification failed." +msgstr "" -#: ../../Zotlabs/Module/Setup.php:643 -msgid "SSL certificate validation" -msgstr "SSL sertifikat-kontroll" +#: ../../Zotlabs/Module/Email_resend.php:30 +msgid "Email verification resent" +msgstr "" -#: ../../Zotlabs/Module/Setup.php:649 -msgid "" -"Url rewrite in .htaccess is not working. Check your server " -"configuration.Test: " -msgstr "URL omskriving (rewrite) i .htaccess virker ikke. Sjekk konfigurasjonen til tjeneren din. Test:" +#: ../../Zotlabs/Module/Email_resend.php:33 +msgid "Unable to resend email verification message." +msgstr "" -#: ../../Zotlabs/Module/Setup.php:652 -msgid "Url rewrite is working" -msgstr "URL rewrite virker" +#: ../../Zotlabs/Module/Cal.php:62 +msgid "Permissions denied." +msgstr "Tillatelse avvist." -#: ../../Zotlabs/Module/Setup.php:661 -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 "Databasekonfigurasjonsfilen \".htconfig.php\" kunne ikke skrives. Vennligst bruk den medfølgende teksten for å lage en konfigurasjonsfil i toppkatalogen av din web-tjener." +#: ../../Zotlabs/Module/Viewsrc.php:43 +msgid "item" +msgstr "" -#: ../../Zotlabs/Module/Setup.php:685 -msgid "Errors encountered creating database tables." -msgstr "Feil oppstod under opprettelsen av databasetabeller." +#: ../../Zotlabs/Module/Apporder.php:47 +msgid "Change Order of Pinned Navbar Apps" +msgstr "" -#: ../../Zotlabs/Module/Setup.php:719 -msgid "

What next

" -msgstr "

Hva gjenstår

" +#: ../../Zotlabs/Module/Apporder.php:47 +msgid "Change Order of App Tray Apps" +msgstr "" -#: ../../Zotlabs/Module/Setup.php:720 +#: ../../Zotlabs/Module/Apporder.php:48 msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "VIKTIG: Du må [manuelt] sette opp en automatisert tidfestet oppgave til bakgrunnshenteren." +"Use arrows to move the corresponding app left (top) or right (bottom) in the " +"navbar" +msgstr "" -#: ../../Zotlabs/Module/Sharedwithme.php:98 -msgid "Files: shared with me" -msgstr "Filer: delt med meg" +#: ../../Zotlabs/Module/Apporder.php:48 +msgid "Use arrows to move the corresponding app up or down in the app tray" +msgstr "" -#: ../../Zotlabs/Module/Sharedwithme.php:100 -msgid "NEW" -msgstr "NY" +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." +msgstr "Ikke i stand til å finne hubben din." -#: ../../Zotlabs/Module/Sharedwithme.php:103 -msgid "Remove all files" -msgstr "Fjern alle filer" +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." +msgstr "Innlegg vellykket." -#: ../../Zotlabs/Module/Sharedwithme.php:104 -msgid "Remove this file" -msgstr "Fjern denne filen" +#: ../../Zotlabs/Module/Moderate.php:67 +msgid "Comment approved" +msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:19 -#, php-format -msgid "Version %s" -msgstr "Versjon %s" +#: ../../Zotlabs/Module/Moderate.php:71 +msgid "Comment deleted" +msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:40 -msgid "Installed plugins/addons/apps:" -msgstr "Installerte tilleggsfunksjoner/tillegg/apper:" +#: ../../Zotlabs/Module/Removeaccount.php:35 +msgid "" +"Account removals are not allowed within 48 hours of changing the account " +"password." +msgstr "" +"Sletting av kontoer er ikke tillatt innen 48 timer etter endring av" +" kontopassordet." -#: ../../Zotlabs/Module/Siteinfo.php:53 -msgid "No installed plugins/addons/apps" -msgstr "Ingen installerte tilleggsfunksjoner/tillegg/apper" +#: ../../Zotlabs/Module/Removeaccount.php:57 +msgid "Remove This Account" +msgstr "Slett denne kontoen" -#: ../../Zotlabs/Module/Siteinfo.php:66 +#: ../../Zotlabs/Module/Removeaccount.php:58 msgid "" -"This is a hub of $Projectname - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "Dette er en $Projectname-hub - et globalt samhandlende nettverk av desentraliserte nettsteder med innbygget personvern." +"This account and all its channels will be completely removed from the " +"network. " +msgstr "" +"Denne kontoen og alle dens kanaler vil bli fullstendig fjernet fra nettverket." -#: ../../Zotlabs/Module/Siteinfo.php:68 -msgid "Tag: " -msgstr "Merkelapp:" +#: ../../Zotlabs/Module/Removeaccount.php:58 +msgid "This action is permanent and can not be undone!" +msgstr "Denne handlingen er permanent og kan ikke angres!" -#: ../../Zotlabs/Module/Siteinfo.php:70 -msgid "Last background fetch: " -msgstr "Siste innhenting i bakgrunnen:" +#: ../../Zotlabs/Module/Removeaccount.php:61 +#: ../../Zotlabs/Module/Settings/Account.php:109 +msgid "Remove Account" +msgstr "Slett konto" -#: ../../Zotlabs/Module/Siteinfo.php:72 -msgid "Current load average: " -msgstr "Gjeldende belastningsgjennomsnitt:" +#: ../../Zotlabs/Module/Lang.php:20 +msgid "Language App" +msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:75 -msgid "Running at web location" -msgstr "Kjører på webplasseringen" +#: ../../Zotlabs/Module/Uexport.php:108 +msgid "No content available for year" +msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:76 -msgid "" -"Please visit hubzilla.org to learn more " -"about $Projectname." -msgstr "Vennligst besøk hubzilla.org for å lære mer om $Projectname." +#: ../../Zotlabs/Module/Uexport.php:171 +msgid "Export Channel" +msgstr "Eksporter kanal" + +#: ../../Zotlabs/Module/Uexport.php:173 +msgid "Export channel" +msgstr "Eksporter kanal" -#: ../../Zotlabs/Module/Siteinfo.php:77 -msgid "Bug reports and issues: please visit" -msgstr "Feilmeldinger og feilretting: vennligst besøk" +#: ../../Zotlabs/Module/Uexport.php:174 +msgid "" +"This will export your identity and social graph into a file which can be " +"used to import your channel to a new hub." +msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:79 -msgid "$projectname issues" -msgstr "$projectname problemer" +#: ../../Zotlabs/Module/Uexport.php:177 +msgid "Export content" +msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:80 +#: ../../Zotlabs/Module/Uexport.php:178 msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " -"com" -msgstr "Forslag, ros og så videre - vennligst e-post \"redmatrix\" hos librelist - punktum com" +"This will export your posts, direct messages, articles and cards per month " +"stored into a zip file per year. Months with no posts will be dismissed." +msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:82 -msgid "Site Administrators" -msgstr "Nettstedsadministratorer" +#: ../../Zotlabs/Module/Uexport.php:180 +msgid "Export wikis" +msgstr "" -#: ../../Zotlabs/Module/Sources.php:37 -msgid "Failed to create source. No channel selected." -msgstr "Mislyktes med å lage kilde. Ingen kanal er valgt." +#: ../../Zotlabs/Module/Uexport.php:181 +msgid "This will export your wikis and wiki pages." +msgstr "" -#: ../../Zotlabs/Module/Sources.php:51 -msgid "Source created." -msgstr "Kilden er laget." +#: ../../Zotlabs/Module/Uexport.php:183 +msgid "Export webpages" +msgstr "" -#: ../../Zotlabs/Module/Sources.php:64 -msgid "Source updated." -msgstr "Kilden er oppdatert." +#: ../../Zotlabs/Module/Uexport.php:184 +msgid "This will export your webpages and menus." +msgstr "" -#: ../../Zotlabs/Module/Sources.php:90 -msgid "*" -msgstr "*" +#: ../../Zotlabs/Module/Uexport.php:186 +msgid "Export channel calendar" +msgstr "" -#: ../../Zotlabs/Module/Sources.php:96 ../../include/widgets.php:630 -#: ../../include/features.php:71 -msgid "Channel Sources" -msgstr "Kanalkilder" +#: ../../Zotlabs/Module/Uexport.php:187 +msgid "" +"This will export your channel calendar events and associated items. CalDAV " +"calendars are not included." +msgstr "" -#: ../../Zotlabs/Module/Sources.php:97 -msgid "Manage remote sources of content for your channel." -msgstr "Håndtere eksterne innholdskilder til din kanal." +#: ../../Zotlabs/Module/Uexport.php:189 +msgid "Export chatrooms" +msgstr "" -#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 -msgid "New Source" -msgstr "Ny kilde" +#: ../../Zotlabs/Module/Uexport.php:190 +msgid "This will export your chatrooms. Chat history is dismissed." +msgstr "" -#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:143 +#: ../../Zotlabs/Module/Uexport.php:192 +#, php-format msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." -msgstr "Importer alt eller et utvalgt av innhold fra følgende kanal inn i denne kanalen og distribuer det i henhold til dine egne kanalinnstillinger." +"This export can be imported or restored by visiting %2$s on any site containing your channel." +msgstr "" -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Only import content with these words (one per line)" -msgstr "Bare importer innhold med disse ordene (ett ord per linje)" +#: ../../Zotlabs/Module/Display.php:336 +msgid "Article" +msgstr "" -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Leave blank to import all public content" -msgstr "La stå tomt for å importere alt offentlig innhold" +#: ../../Zotlabs/Module/Display.php:381 +msgid "Item has been removed." +msgstr "" -#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 -msgid "Channel Name" -msgstr "Kanalnavn" +#: ../../Zotlabs/Module/Common.php:14 +msgid "No channel." +msgstr "Ingen kanal." -#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 -msgid "" -"Add the following categories to posts imported from this source (comma " -"separated)" +#: ../../Zotlabs/Module/Common.php:45 +msgid "No connections in common." +msgstr "Ingen forbindelser felles." + +#: ../../Zotlabs/Module/Common.php:65 +msgid "View Common Connections" msgstr "" -#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 -msgid "Source not found." -msgstr "Kilden ble ikke funnet." +#: ../../Zotlabs/Module/Impel.php:188 +#, php-format +msgid "%s element installed" +msgstr "%s element installert" -#: ../../Zotlabs/Module/Sources.php:140 -msgid "Edit Source" -msgstr "Endre kilde" +#: ../../Zotlabs/Module/Impel.php:191 +#, php-format +msgid "%s element installation failed" +msgstr "Installasjon av %s-element mislyktes" -#: ../../Zotlabs/Module/Sources.php:141 -msgid "Delete Source" -msgstr "Slett kilde" +#: ../../Zotlabs/Module/New_channel.php:159 +msgid "Your real name is recommended." +msgstr "" -#: ../../Zotlabs/Module/Sources.php:169 -msgid "Source removed" -msgstr "Kilden er fjernet" +#: ../../Zotlabs/Module/New_channel.php:160 +msgid "" +"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation " +"Group\"" +msgstr "" +"Eksempel: \"Ola Nordmann\", \"Lisa og hestene hennes\", \"Fotball\"," +" \"Sykkelgruppa\"" -#: ../../Zotlabs/Module/Sources.php:171 -msgid "Unable to remove source." -msgstr "Ikke i stand til å fjerne kilde." +#: ../../Zotlabs/Module/New_channel.php:165 +msgid "" +"This will be used to create a unique network address (like an email address)." +msgstr "" -#: ../../Zotlabs/Module/Subthread.php:118 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s følger %2$s sin %3$s" +#: ../../Zotlabs/Module/New_channel.php:167 +msgid "Allowed characters are a-z 0-9, - and _" +msgstr "" + +#: ../../Zotlabs/Module/New_channel.php:175 +msgid "Channel name" +msgstr "" -#: ../../Zotlabs/Module/Subthread.php:120 -#, php-format -msgid "%1$s stopped following %2$s's %3$s" -msgstr "%1$s stopped å følge %2$s sin %3$s" +#: ../../Zotlabs/Module/New_channel.php:178 +#: ../../Zotlabs/Module/Settings/Channel.php:232 +msgid "Channel role" +msgstr "" -#: ../../Zotlabs/Module/Suggest.php:39 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Ingen forslag tilgjengelige. Hvis dette er et nytt nettsted, vennligst prøv igjen om 24 timer." +#: ../../Zotlabs/Module/New_channel.php:181 +msgid "Create a Channel" +msgstr "" -#: ../../Zotlabs/Module/Suggest.php:58 ../../include/widgets.php:149 -msgid "Ignore/Hide" -msgstr "Ignorer/Skjul" +#: ../../Zotlabs/Module/New_channel.php:182 +msgid "" +"A channel is a unique network identity. It can represent a person (social " +"network profile), a forum (group), a business or celebrity page, a newsfeed, " +"and many other things." +msgstr "" -#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:256 -msgid "post" -msgstr "innlegg" +#: ../../Zotlabs/Module/New_channel.php:183 +msgid "" +"or import an existing channel from another location." +msgstr "" +"eller importer en eksisterende kanal fra et annet sted." -#: ../../Zotlabs/Module/Tagger.php:57 ../../include/text.php:1948 -#: ../../include/conversation.php:150 -msgid "comment" -msgstr "kommentar" +#: ../../Zotlabs/Module/New_channel.php:188 +msgid "Validate" +msgstr "" -#: ../../Zotlabs/Module/Tagger.php:100 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s merket %3$s til %2$s med %4$s" +#: ../../Zotlabs/Module/Dircensor.php:42 +msgid "Entry censored" +msgstr "" -#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 -msgid "Tag removed" -msgstr "Merkelapp fjernet" +#: ../../Zotlabs/Module/Dircensor.php:45 +msgid "Entry uncensored" +msgstr "" -#: ../../Zotlabs/Module/Tagrm.php:123 -msgid "Remove Item Tag" -msgstr "Fjern merkelapp fra element" +#: ../../Zotlabs/Module/Service_limits.php:23 +msgid "No service class restrictions found." +msgstr "Ingen restriksjoner er funnet i tjenesteklasse." -#: ../../Zotlabs/Module/Tagrm.php:125 -msgid "Select a tag to remove: " -msgstr "Velg merkelapp å fjerne:" +#: ../../Zotlabs/Module/Mood.php:152 ../../Zotlabs/Lib/Apps.php:354 +msgid "Mood" +msgstr "Stemning" -#: ../../Zotlabs/Module/Thing.php:114 -msgid "Thing updated" -msgstr "Tingen er oppdatert" +#: ../../Zotlabs/Module/Mood.php:153 +msgid "Set your current mood and tell your friends" +msgstr "Angi ditt nåværende humør og fortell dine venner" -#: ../../Zotlabs/Module/Thing.php:166 -msgid "Object store: failed" -msgstr "Objektlagring: mislyktes" +#: ../../Zotlabs/Module/Siteinfo.php:21 +msgid "About this site" +msgstr "" -#: ../../Zotlabs/Module/Thing.php:170 -msgid "Thing added" -msgstr "Ting lagt til" +#: ../../Zotlabs/Module/Siteinfo.php:22 +msgid "Site Name" +msgstr "" -#: ../../Zotlabs/Module/Thing.php:196 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" +#: ../../Zotlabs/Module/Siteinfo.php:26 +msgid "Administrator" +msgstr "Administrator" -#: ../../Zotlabs/Module/Thing.php:259 -msgid "Show Thing" -msgstr "Vis ting" +#: ../../Zotlabs/Module/Siteinfo.php:29 +msgid "Software and Project information" +msgstr "" -#: ../../Zotlabs/Module/Thing.php:266 -msgid "item not found." -msgstr "element ble ikke funnet." +#: ../../Zotlabs/Module/Siteinfo.php:30 +msgid "This site is powered by $Projectname" +msgstr "" -#: ../../Zotlabs/Module/Thing.php:299 -msgid "Edit Thing" -msgstr "Endre ting" +#: ../../Zotlabs/Module/Siteinfo.php:31 +msgid "" +"Federated and decentralised networking and identity services provided by Zot" +msgstr "" -#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351 -msgid "Select a profile" -msgstr "Velg en profil" +#: ../../Zotlabs/Module/Siteinfo.php:34 +msgid "Additional federated transport protocols:" +msgstr "" -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 -msgid "Post an activity" -msgstr "Legg inn en aktivitet" +#: ../../Zotlabs/Module/Siteinfo.php:36 +#, php-format +msgid "Version %s" +msgstr "Versjon %s" -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 -msgid "Only sends to viewers of the applicable profile" -msgstr "Sender bare til seere av den aktuelle profilen" +#: ../../Zotlabs/Module/Siteinfo.php:37 +msgid "Project homepage" +msgstr "" -#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:356 -msgid "Name of thing e.g. something" -msgstr "Navn på ting for eksempel noe" +#: ../../Zotlabs/Module/Siteinfo.php:38 +msgid "Developer homepage" +msgstr "" -#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357 -msgid "URL of thing (optional)" -msgstr "URL til ting (valgfritt)" +#: ../../Zotlabs/Module/Appman.php:39 ../../Zotlabs/Module/Appman.php:56 +msgid "App installed." +msgstr "App installert." -#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:358 -msgid "URL for photo of thing (optional)" -msgstr "URL til bilde av ting (valgfritt)" +#: ../../Zotlabs/Module/Appman.php:49 +msgid "Malformed app." +msgstr "Feil oppsett for app-en." -#: ../../Zotlabs/Module/Thing.php:349 -msgid "Add Thing to your Profile" -msgstr "Legg til ting i din profil" +#: ../../Zotlabs/Module/Appman.php:198 +msgid "Embed code" +msgstr "Innbyggingskode" -#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 -msgid "Export Channel" -msgstr "Eksporter kanal" +#: ../../Zotlabs/Module/Appman.php:204 +msgid "Edit App" +msgstr "Endre app" -#: ../../Zotlabs/Module/Uexport.php:57 -msgid "" -"Export your basic channel information to a file. This acts as a backup of " -"your connections, permissions, profile and basic data, which can be used to " -"import your data to a new server hub, but does not contain your content." -msgstr "Eksporter grunnleggende informasjon om kanalen din til en fil. Denne er en sikkerhetskopi av dine forbindelser, tillatelser, profil og grunnleggende data, som kan brukes til å importere dine data til en ny hub, men den tar ikke med innholdet." +#: ../../Zotlabs/Module/Appman.php:204 +msgid "Create App" +msgstr "Lag app" -#: ../../Zotlabs/Module/Uexport.php:58 -msgid "Export Content" -msgstr "Eksporter innhold" +#: ../../Zotlabs/Module/Appman.php:209 +msgid "Name of app" +msgstr "Navn på app" -#: ../../Zotlabs/Module/Uexport.php:59 -msgid "" -"Export your channel information and recent content to a JSON backup that can" -" be restored or imported to another server hub. This backs up all of your " -"connections, permissions, profile data and several months of posts. This " -"file may be VERY large. Please be patient - it may take several minutes for" -" this download to begin." -msgstr "Eksporter din kanalinformasjon og det nyeste innholdet til en JSON-sikkerhetskopi, som kan gjenopprettes eller importeres til en annen hub. Denne lager en sikkerhetskopi av alle dine forbindelser, tillatelser, profildata og flere måneder av innholdet ditt. Denne filen kan være SVÆRT stor. Vennligst vær tålmodig - det kan ta flere minutter før denne nedlastningen begynner." +#: ../../Zotlabs/Module/Appman.php:210 +msgid "Location (URL) of app" +msgstr "Plassering (URL) til app" -#: ../../Zotlabs/Module/Uexport.php:60 -msgid "Export your posts from a given year." -msgstr "Eksporter dine innlegg fra et bestemt år" +#: ../../Zotlabs/Module/Appman.php:212 +msgid "Photo icon URL" +msgstr "Bildeikon URL" -#: ../../Zotlabs/Module/Uexport.php:62 -msgid "" -"You may also export your posts and conversations for a particular year or " -"month. Adjust the date in your browser location bar to select other dates. " -"If the export fails (possibly due to memory exhaustion on your server hub), " -"please try again selecting a more limited date range." -msgstr "Du kan også eksportere dine innlegg og samtaler for et bestemt år eller måned. Juster datoen i din nettlesers adresselinje for å velge andre datoer. Hvis eksporten feiler (muligens på grunn av utilstrekkelig minne på din hub), vennligst prøv igjen med et mer begrenset datoområde." +#: ../../Zotlabs/Module/Appman.php:212 +msgid "80 x 80 pixels - optional" +msgstr "80 x80 pixler - valgfritt" -#: ../../Zotlabs/Module/Uexport.php:63 -#, php-format -msgid "" -"To select all posts for a given year, such as this year, visit %2$s" -msgstr "For å velge alle innlegg for et gitt år, slik som iår, besøk %2$s" +#: ../../Zotlabs/Module/Appman.php:213 +msgid "Categories (optional, comma separated list)" +msgstr "" -#: ../../Zotlabs/Module/Uexport.php:64 -#, php-format -msgid "" -"To select all posts for a given month, such as January of this year, visit " -"%2$s" -msgstr "For å velge alle innlegg fra en gitt måned, slik som januar i år, besøk %2$s" +#: ../../Zotlabs/Module/Appman.php:214 +msgid "Version ID" +msgstr "Versjons-ID" -#: ../../Zotlabs/Module/Uexport.php:65 -#, php-format -msgid "" -"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" -" please import or restore these in date order (oldest first)." -msgstr "Disse innholdsfilene kan importeres eller gjenopprettes ved å besøke %2$s på ethvert nettsted som inneholder din kanal. For best resultat, vennligst importer eller gjenopprett disse etter dato (eldste først)." +#: ../../Zotlabs/Module/Appman.php:215 +msgid "Price of app" +msgstr "Pris på app" -#: ../../Zotlabs/Module/Viewconnections.php:62 -msgid "No connections." -msgstr "Ingen forbindelser." +#: ../../Zotlabs/Module/Appman.php:216 +msgid "Location (URL) to purchase app" +msgstr "Plassering (URL) for å kjøpe app" -#: ../../Zotlabs/Module/Viewconnections.php:75 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Besøk %s sin profil [%s]" +#: ../../Zotlabs/Module/Admin.php:96 +msgid "Blocked accounts" +msgstr "" -#: ../../Zotlabs/Module/Viewconnections.php:104 -msgid "View Connections" -msgstr "Vis forbindelser" +#: ../../Zotlabs/Module/Admin.php:97 +msgid "Expired accounts" +msgstr "" -#: ../../Zotlabs/Module/Viewsrc.php:44 -msgid "Source of Item" -msgstr "Kilde til element" +#: ../../Zotlabs/Module/Admin.php:98 +msgid "Expiring accounts" +msgstr "" -#: ../../Zotlabs/Module/Webpages.php:184 ../../Zotlabs/Lib/Apps.php:217 -#: ../../include/nav.php:106 ../../include/conversation.php:1685 -msgid "Webpages" -msgstr "Websider" +#: ../../Zotlabs/Module/Admin.php:122 +msgid "Message queues" +msgstr "Meldingskøer" -#: ../../Zotlabs/Module/Webpages.php:195 ../../include/page_widgets.php:41 -msgid "Actions" -msgstr "Handlinger" +#: ../../Zotlabs/Module/Admin.php:136 +msgid "Your software should be updated" +msgstr "Programvaren bør oppdateres" -#: ../../Zotlabs/Module/Webpages.php:196 ../../include/page_widgets.php:42 -msgid "Page Link" -msgstr "Sidelenke" +#: ../../Zotlabs/Module/Admin.php:141 +msgid "Summary" +msgstr "Sammendrag" -#: ../../Zotlabs/Module/Webpages.php:197 -msgid "Page Title" -msgstr "Sidetittel" +#: ../../Zotlabs/Module/Admin.php:144 +msgid "Registered accounts" +msgstr "Registrerte kontoer" -#: ../../Zotlabs/Module/Xchan.php:10 -msgid "Xchan Lookup" -msgstr "Xchan oppslag" +#: ../../Zotlabs/Module/Admin.php:145 +msgid "Pending registrations" +msgstr "Ventende registreringer" -#: ../../Zotlabs/Module/Xchan.php:13 -msgid "Lookup xchan beginning with (or webbie): " -msgstr "Slå opp xchan som begynner med (eller webbie):" +#: ../../Zotlabs/Module/Admin.php:146 +msgid "Registered channels" +msgstr "Registrerte kanaler" -#: ../../Zotlabs/Lib/Apps.php:204 -msgid "Site Admin" -msgstr "Nettstedsadministrator" +#: ../../Zotlabs/Module/Admin.php:147 +msgid "Active addons" +msgstr "Aktive tillegg" -#: ../../Zotlabs/Lib/Apps.php:205 -msgid "Bug Report" -msgstr "" +#: ../../Zotlabs/Module/Admin.php:148 +msgid "Version" +msgstr "Versjon" -#: ../../Zotlabs/Lib/Apps.php:206 -msgid "View Bookmarks" +#: ../../Zotlabs/Module/Admin.php:149 +msgid "Repository version (master)" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:207 -msgid "My Chatrooms" +#: ../../Zotlabs/Module/Admin.php:150 +msgid "Repository version (dev)" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:209 -msgid "Firefox Share" +#: ../../Zotlabs/Module/Contactedit.php:50 +msgid "Invalid abook_id" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:210 -msgid "Remote Diagnostics" -msgstr "" +#: ../../Zotlabs/Module/Contactedit.php:78 ../../Zotlabs/Module/Defperms.php:67 +#: ../../Zotlabs/Module/Connedit.php:80 +msgid "Could not access contact record." +msgstr "Fikk ikke tilgang til kontaktinformasjonen." -#: ../../Zotlabs/Lib/Apps.php:211 ../../include/features.php:89 -msgid "Suggest Channels" -msgstr "Foreslå kanaler" +#: ../../Zotlabs/Module/Contactedit.php:107 +#: ../../Zotlabs/Module/Connedit.php:101 +msgid "Could not locate selected profile." +msgstr "Fant ikke valgt profil." -#: ../../Zotlabs/Lib/Apps.php:212 ../../include/nav.php:110 -#: ../../boot.php:1703 -msgid "Login" -msgstr "Logg inn" +#: ../../Zotlabs/Module/Contactedit.php:192 +#: ../../Zotlabs/Module/Connedit.php:215 +msgid "is now connected to" +msgstr "er nå forbundet til" -#: ../../Zotlabs/Lib/Apps.php:214 ../../include/nav.php:179 -msgid "Grid" -msgstr "Nett" +#: ../../Zotlabs/Module/Contactedit.php:252 +#: ../../Zotlabs/Module/Contactedit.php:401 +#: ../../Zotlabs/Module/Connedit.php:701 +msgid "Contact Tools" +msgstr "" -#: ../../Zotlabs/Lib/Apps.php:218 ../../include/nav.php:182 -msgid "Channel Home" -msgstr "Kanalhjem" +#: ../../Zotlabs/Module/Contactedit.php:329 +#: ../../Zotlabs/Module/Connedit.php:622 +msgid "Approve this contact" +msgstr "" -#: ../../Zotlabs/Lib/Apps.php:221 ../../include/nav.php:201 -#: ../../include/conversation.php:1649 ../../include/conversation.php:1652 -msgid "Events" -msgstr "Hendelser" +#: ../../Zotlabs/Module/Contactedit.php:329 +#: ../../Zotlabs/Module/Connedit.php:622 +msgid "Accept contact to allow communication" +msgstr "" -#: ../../Zotlabs/Lib/Apps.php:222 ../../include/nav.php:167 -msgid "Directory" -msgstr "Katalog" +#: ../../Zotlabs/Module/Contactedit.php:362 +#: ../../Zotlabs/Module/Connedit.php:658 +msgid "Please select a role for this contact!" +msgstr "" -#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:193 -msgid "Mail" -msgstr "Melding" +#: ../../Zotlabs/Module/Contactedit.php:382 +#: ../../Zotlabs/Module/Connedit.php:678 +msgid "This contact is unreachable from this location." +msgstr "" -#: ../../Zotlabs/Lib/Apps.php:227 ../../include/nav.php:96 -msgid "Chat" -msgstr "Chat" +#: ../../Zotlabs/Module/Contactedit.php:383 +#: ../../Zotlabs/Module/Connedit.php:679 +msgid "This contact may be unreachable from other channel locations." +msgstr "" -#: ../../Zotlabs/Lib/Apps.php:229 -msgid "Probe" -msgstr "Undersøk" +#: ../../Zotlabs/Module/Contactedit.php:385 +#: ../../Zotlabs/Module/Connedit.php:681 +msgid "Location independence is not supported by their network." +msgstr "" -#: ../../Zotlabs/Lib/Apps.php:230 -msgid "Suggest" -msgstr "Forreslå" +#: ../../Zotlabs/Module/Contactedit.php:395 +msgid "View profile" +msgstr "" -#: ../../Zotlabs/Lib/Apps.php:231 -msgid "Random Channel" -msgstr "Tilfeldig kanal" +#: ../../Zotlabs/Module/Contactedit.php:397 +#: ../../Zotlabs/Module/Connections.php:405 +msgid "This is a group/forum channel" +msgstr "" -#: ../../Zotlabs/Lib/Apps.php:232 -msgid "Invite" -msgstr "Inviter" +#: ../../Zotlabs/Module/Contactedit.php:408 +msgid "Select a role for this contact" +msgstr "" -#: ../../Zotlabs/Lib/Apps.php:233 ../../include/widgets.php:1386 -msgid "Features" -msgstr "Funksjoner" +#: ../../Zotlabs/Module/Contactedit.php:420 +#: ../../Zotlabs/Module/Connedit.php:703 +msgid "Slide to adjust your degree of friendship" +msgstr "Flytt for å justere din grad av vennskap" -#: ../../Zotlabs/Lib/Apps.php:235 -msgid "Post" -msgstr "Innlegg" +#: ../../Zotlabs/Module/Contactedit.php:422 +#: ../../Zotlabs/Module/Connedit.php:705 +msgid "Custom Filter" +msgstr "Tilpasset filter" -#: ../../Zotlabs/Lib/Apps.php:335 -msgid "Purchase" -msgstr "Kjøp" +#: ../../Zotlabs/Module/Contactedit.php:423 +#: ../../Zotlabs/Module/Settings/Channel.php:285 +#: ../../Zotlabs/Module/Connedit.php:706 +msgid "Only import posts with this text" +msgstr "Bare importer innlegg med disse ordene" -#: ../../Zotlabs/Lib/Chatroom.php:27 -msgid "Missing room name" -msgstr "Mangler romnavn" +#: ../../Zotlabs/Module/Contactedit.php:424 +#: ../../Zotlabs/Module/Settings/Channel.php:284 +#: ../../Zotlabs/Module/Connedit.php:707 +msgid "Do not import posts with this text" +msgstr "Ikke importer innlegg med denne teksten" -#: ../../Zotlabs/Lib/Chatroom.php:36 -msgid "Duplicate room name" -msgstr "Duplikat romnavn" +#: ../../Zotlabs/Module/Contactedit.php:429 +#: ../../Zotlabs/Module/Connedit.php:714 +msgid "Approve contact" +msgstr "" -#: ../../Zotlabs/Lib/Chatroom.php:86 ../../Zotlabs/Lib/Chatroom.php:94 -msgid "Invalid room specifier." -msgstr "Ugyldig rom-spesifisering" +#: ../../Zotlabs/Module/Contactedit.php:431 +#: ../../Zotlabs/Module/Connedit.php:717 +msgid "Their" +msgstr "" -#: ../../Zotlabs/Lib/Chatroom.php:126 -msgid "Room not found." -msgstr "Rommet ble ikke funnet." +#: ../../Zotlabs/Module/Contactedit.php:432 +#: ../../Zotlabs/Module/Connedit.php:718 +msgid "My" +msgstr "" -#: ../../Zotlabs/Lib/Chatroom.php:147 -msgid "Room is full" -msgstr "Rommet er fullt" +#: ../../Zotlabs/Module/Contactedit.php:440 +msgid "Roles" +msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1823 -msgid "$Projectname Notification" -msgstr "$Projectname varsling" +#: ../../Zotlabs/Module/Contactedit.php:441 +msgid "Compare permissions" +msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1824 -msgid "$projectname" -msgstr "$projectname" +#: ../../Zotlabs/Module/Contactedit.php:442 +msgid "Permission" +msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1826 -msgid "Thank You," -msgstr "Tusen takk," +#: ../../Zotlabs/Module/Contactedit.php:445 +#: ../../Zotlabs/Module/Connedit.php:572 +msgid "Affinity" +msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1828 -#, php-format -msgid "%s Administrator" -msgstr "%s administrator" +#: ../../Zotlabs/Module/Contactedit.php:446 +msgid "Content filter" +msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:100 -#, php-format -msgid "%s " -msgstr "%s " +#: ../../Zotlabs/Module/Contactedit.php:456 +msgid "Contact updated" +msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:104 -#, php-format -msgid "[Hubzilla:Notify] New mail received at %s" -msgstr "[Hubzilla:Notify] Ny melding mottatt hos %s" +#: ../../Zotlabs/Module/Contactedit.php:456 +msgid "Contact update failed" +msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:106 -#, php-format -msgid "%1$s, %2$s sent you a new private message at %3$s." -msgstr "%1$s, %2$s sendte deg en ny privat melding på %3$s." +#: ../../Zotlabs/Module/Contactedit.php:462 +#: ../../Zotlabs/Module/Connections.php:348 +msgid "Approve connection" +msgstr "Godkjenn forbindelse" -#: ../../Zotlabs/Lib/Enotify.php:107 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s sendte deg %2$s." +#: ../../Zotlabs/Module/Contactedit.php:508 +#: ../../Zotlabs/Module/Contactedit.php:518 +msgid "Refresh succeeded" +msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:107 -msgid "a private message" -msgstr "en privat melding" +#: ../../Zotlabs/Module/Contactedit.php:511 +msgid "Refresh failed - channel is currently unavailable" +msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:108 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Vennligst besøk %s for å se og/eller svare på dine private meldinger." +#: ../../Zotlabs/Module/Contactedit.php:530 +msgid "Block status updated" +msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:164 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" -msgstr "%1$s, %2$s kommenterte på [zrl=%3$s]a %4$s[/zrl]" +#: ../../Zotlabs/Module/Contactedit.php:534 +msgid "Block failed" +msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:172 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" -msgstr "%1$s, %2$s kommenterte på [zrl=%3$s]%4$s's %5$s[/zrl]" +#: ../../Zotlabs/Module/Contactedit.php:545 +msgid "Ignore status updated" +msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:181 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" -msgstr "%1$s, %2$s kommenterte på [zrl=%3$s]din %4$s[/zrl]" +#: ../../Zotlabs/Module/Contactedit.php:549 +msgid "Ignore failed" +msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:192 -#, php-format -msgid "[Hubzilla:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Hubzilla:Notify] Kommentar til samtale #%1$d av %2$s" +#: ../../Zotlabs/Module/Contactedit.php:560 +msgid "Archive status updated" +msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:193 -#, php-format -msgid "%1$s, %2$s commented on an item/conversation you have been following." -msgstr "%1$s, %2$s kommenterte på et element eller en samtale du følger" +#: ../../Zotlabs/Module/Contactedit.php:564 +msgid "Archive failed" +msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:196 ../../Zotlabs/Lib/Enotify.php:211 -#: ../../Zotlabs/Lib/Enotify.php:237 ../../Zotlabs/Lib/Enotify.php:255 -#: ../../Zotlabs/Lib/Enotify.php:269 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Vennligst besøk %s for å se og/eller svare i samtalen" +#: ../../Zotlabs/Module/Contactedit.php:575 +msgid "Hide status updated" +msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:202 -#, php-format -msgid "[Hubzilla:Notify] %s posted to your profile wall" -msgstr "[Hubzilla:Notify] %s skrev et innlegg på din profilvegg" +#: ../../Zotlabs/Module/Contactedit.php:579 +msgid "Hide failed" +msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:204 -#, php-format -msgid "%1$s, %2$s posted to your profile wall at %3$s" -msgstr "%1$s, %2$s skrev et innlegg på din profilvegg på %3$s" +#: ../../Zotlabs/Module/Contactedit.php:614 +msgid "Contact removed" +msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:206 -#, php-format -msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" -msgstr "%1$s, %2$s skrev et innlegg på [zrl=%3$s]din vegg[/zrl]" +#: ../../Zotlabs/Module/Contactedit.php:618 +msgid "Delete failed" +msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:230 -#, php-format -msgid "[Hubzilla:Notify] %s tagged you" -msgstr "[Hubzilla:Notify] %s merket deg" +#: ../../Zotlabs/Module/Contactedit.php:628 +#: ../../Zotlabs/Module/Connedit.php:487 +msgid "Refresh Permissions" +msgstr "Oppfrisk tillatelser" -#: ../../Zotlabs/Lib/Enotify.php:231 -#, php-format -msgid "%1$s, %2$s tagged you at %3$s" -msgstr "%1$s, %2$s merket deg på %3$s" +#: ../../Zotlabs/Module/Contactedit.php:629 +#: ../../Zotlabs/Module/Connedit.php:490 +msgid "Fetch updated permissions" +msgstr "Hent oppdaterte tillatelser" -#: ../../Zotlabs/Lib/Enotify.php:232 -#, php-format -msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." -msgstr "%1$s, %2$s [zrl=%3$s]merket deg[/zrl]." +#: ../../Zotlabs/Module/Contactedit.php:633 +#: ../../Zotlabs/Module/Connedit.php:494 +msgid "Refresh Photo" +msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:244 -#, php-format -msgid "[Hubzilla:Notify] %1$s poked you" -msgstr "[Hubzilla:Notify] %1$s prikket deg" +#: ../../Zotlabs/Module/Contactedit.php:634 +#: ../../Zotlabs/Module/Connedit.php:497 +msgid "Fetch updated photo" +msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:245 -#, php-format -msgid "%1$s, %2$s poked you at %3$s" -msgstr "%1$s, %2$s dyttet deg på %3$s" +#: ../../Zotlabs/Module/Contactedit.php:641 +#: ../../Zotlabs/Module/Connedit.php:511 +msgid "Block (or Unblock) all communications with this connection" +msgstr "" +"Blokker eller fjern blokkering av all kommunikasjon med denne forbindelsen" -#: ../../Zotlabs/Lib/Enotify.php:246 -#, php-format -msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." -msgstr "%1$s, %2$s [zrl=%2$s]dyttet deg[/zrl]." +#: ../../Zotlabs/Module/Contactedit.php:642 +#: ../../Zotlabs/Module/Connedit.php:512 +msgid "This connection is blocked!" +msgstr "Denne forbindelsen er blokkert!" -#: ../../Zotlabs/Lib/Enotify.php:262 -#, php-format -msgid "[Hubzilla:Notify] %s tagged your post" -msgstr "[Hubzilla:Notify] %s merket ditt innlegg" +#: ../../Zotlabs/Module/Contactedit.php:646 +#: ../../Zotlabs/Module/Connedit.php:516 +msgid "Unignore" +msgstr "Ikke ignorer lenger" -#: ../../Zotlabs/Lib/Enotify.php:263 -#, php-format -msgid "%1$s, %2$s tagged your post at %3$s" -msgstr "%1$s, %2$s merket ditt innlegg på %3$s" +#: ../../Zotlabs/Module/Contactedit.php:646 +#: ../../Zotlabs/Module/Connections.php:351 +#: ../../Zotlabs/Module/Connedit.php:516 +msgid "Ignore" +msgstr "Ignorer" -#: ../../Zotlabs/Lib/Enotify.php:264 -#, php-format -msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" -msgstr "%1$s, %2$s merket [zrl=%3$s]ditt innlegg[/zrl]" +#: ../../Zotlabs/Module/Contactedit.php:648 +#: ../../Zotlabs/Module/Connedit.php:519 +msgid "Ignore (or Unignore) all inbound communications from this connection" +msgstr "" +"Ignorer eller fjern ignorering av all inngående kommunikasjon fra denne" +" forbindelsen" -#: ../../Zotlabs/Lib/Enotify.php:276 -msgid "[Hubzilla:Notify] Introduction received" -msgstr "[Hubzilla:Notify] Introduksjon mottatt" +#: ../../Zotlabs/Module/Contactedit.php:649 +#: ../../Zotlabs/Module/Connedit.php:520 +msgid "This connection is ignored!" +msgstr "Denne forbindelsen er ignorert!" -#: ../../Zotlabs/Lib/Enotify.php:277 -#, php-format -msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" -msgstr "%1$s, du har mottatt en ny forespørsel om forbindelse fra '%2$s' hos %3$s" +#: ../../Zotlabs/Module/Contactedit.php:653 +#: ../../Zotlabs/Module/Connedit.php:524 +msgid "Unarchive" +msgstr "Ikke arkiver lenger" -#: ../../Zotlabs/Lib/Enotify.php:278 -#, php-format +#: ../../Zotlabs/Module/Contactedit.php:653 +#: ../../Zotlabs/Module/Connedit.php:524 +msgid "Archive" +msgstr "Arkiver" + +#: ../../Zotlabs/Module/Contactedit.php:655 +#: ../../Zotlabs/Module/Connedit.php:527 msgid "" -"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." -msgstr "%1$s, du mottok [zrl=%2$s]en ny forespørsel om forbindelse[/zrl] fra %3$s." +"Archive (or Unarchive) this connection - mark channel dead but keep content" +msgstr "" +"Arkiver eller fjern arkivering av denne forbindelsen - marker kanal som død," +" men behold innhold" -#: ../../Zotlabs/Lib/Enotify.php:282 ../../Zotlabs/Lib/Enotify.php:301 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Du kan besøke profilen deres på %s" +#: ../../Zotlabs/Module/Contactedit.php:656 +#: ../../Zotlabs/Module/Connedit.php:528 +msgid "This connection is archived!" +msgstr "Denne forbindelsen er arkivert!" -#: ../../Zotlabs/Lib/Enotify.php:284 -#, php-format -msgid "Please visit %s to approve or reject the connection request." -msgstr "Vennligst besøk %s for å godkjenne eller avslå forespørselen om forbindelse." +#: ../../Zotlabs/Module/Contactedit.php:660 +#: ../../Zotlabs/Module/Connedit.php:532 +msgid "Unhide" +msgstr "Ikke skjul lenger" -#: ../../Zotlabs/Lib/Enotify.php:291 -msgid "[Hubzilla:Notify] Friend suggestion received" -msgstr "[Hubzilla:Notify] Venneforslag mottatt" +#: ../../Zotlabs/Module/Contactedit.php:660 +#: ../../Zotlabs/Module/Connedit.php:532 +msgid "Hide" +msgstr "Skjul" -#: ../../Zotlabs/Lib/Enotify.php:292 -#, php-format -msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" -msgstr "%1$s, du har mottatt en venneforespørsel fra '%2$s' hos %3$s" +#: ../../Zotlabs/Module/Contactedit.php:662 +#: ../../Zotlabs/Module/Connedit.php:535 +msgid "Hide or Unhide this connection from your other connections" +msgstr "" +"Skjul eller fjern skjuling av denne forbindelsen fra dine andre forbindelser" -#: ../../Zotlabs/Lib/Enotify.php:293 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " -"%4$s." -msgstr "%1$s, du har mottatt [zrl=%2$s]et venneforslaget[/zrl] angående %3$s fra %4$s. " +#: ../../Zotlabs/Module/Contactedit.php:663 +#: ../../Zotlabs/Module/Connedit.php:536 +msgid "This connection is hidden!" +msgstr "Denne forbindelsen er skjult!" -#: ../../Zotlabs/Lib/Enotify.php:299 -msgid "Name:" -msgstr "Navn:" +#: ../../Zotlabs/Module/Contactedit.php:669 +#: ../../Zotlabs/Module/Connedit.php:543 +msgid "Delete this connection" +msgstr "Slett denne forbindelsen" -#: ../../Zotlabs/Lib/Enotify.php:300 -msgid "Photo:" -msgstr "Bilde:" +#: ../../Zotlabs/Module/Directory.php:121 +msgid "No default suggestions were found." +msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:303 +#: ../../Zotlabs/Module/Directory.php:281 #, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Vennligst besøk %s for å godkjenne eller avslå dette forslaget." +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "%d vurdering" +msgstr[1] "%d vurderinger" -#: ../../Zotlabs/Lib/Enotify.php:518 -msgid "[Hubzilla:Notify]" -msgstr "[Hubzilla:Notify]" +#: ../../Zotlabs/Module/Directory.php:292 +msgid "Gender: " +msgstr "Kjønn:" -#: ../../Zotlabs/Lib/Enotify.php:667 -msgid "created a new post" -msgstr "laget et nytt innlegg" +#: ../../Zotlabs/Module/Directory.php:294 +msgid "Status: " +msgstr "Status:" -#: ../../Zotlabs/Lib/Enotify.php:668 -#, php-format -msgid "commented on %s's post" -msgstr "kommenterte på %s sitt innlegg" +#: ../../Zotlabs/Module/Directory.php:296 +msgid "Homepage: " +msgstr "Hjemmeside:" -#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:664 -msgid "Private Message" -msgstr "Privat melding" +#: ../../Zotlabs/Module/Directory.php:359 +msgid "Description:" +msgstr "Beskrivelse:" -#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:656 -msgid "Select" -msgstr "Velg" +#: ../../Zotlabs/Module/Directory.php:370 +msgid "Public Forum:" +msgstr "Offentlig forum:" -#: ../../Zotlabs/Lib/ThreadItem.php:136 -msgid "Save to Folder" -msgstr "Lagre i mappe" +#: ../../Zotlabs/Module/Directory.php:373 +msgid "Keywords: " +msgstr "Nøkkelord:" -#: ../../Zotlabs/Lib/ThreadItem.php:157 -msgid "I will attend" -msgstr "Jeg vil delta" +#: ../../Zotlabs/Module/Directory.php:376 +msgid "Don't suggest" +msgstr "Ikke foreslå" -#: ../../Zotlabs/Lib/ThreadItem.php:157 -msgid "I will not attend" -msgstr "Jeg deltar ikke" +#: ../../Zotlabs/Module/Directory.php:378 +msgid "Common connections (estimated):" +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:157 -msgid "I might attend" -msgstr "Jeg vil kanskje delta" +#: ../../Zotlabs/Module/Directory.php:427 +msgid "Global Directory" +msgstr "Global katalog" -#: ../../Zotlabs/Lib/ThreadItem.php:167 -msgid "I agree" -msgstr "Jeg er enig" +#: ../../Zotlabs/Module/Directory.php:427 +msgid "Local Directory" +msgstr "Lokal katalog" -#: ../../Zotlabs/Lib/ThreadItem.php:167 -msgid "I disagree" -msgstr "Jeg er uenig" +#: ../../Zotlabs/Module/Directory.php:433 +msgid "Finding:" +msgstr "Finner:" -#: ../../Zotlabs/Lib/ThreadItem.php:167 -msgid "I abstain" -msgstr "Jeg avstår" +#: ../../Zotlabs/Module/Directory.php:438 +msgid "next page" +msgstr "Neste side" -#: ../../Zotlabs/Lib/ThreadItem.php:218 -msgid "Add Star" -msgstr "Legg til stjerne" +#: ../../Zotlabs/Module/Directory.php:438 +msgid "previous page" +msgstr "Forrige side" -#: ../../Zotlabs/Lib/ThreadItem.php:219 -msgid "Remove Star" -msgstr "Fjern stjerne" +#: ../../Zotlabs/Module/Directory.php:439 +msgid "Sort options" +msgstr "Sorteringsvalg" -#: ../../Zotlabs/Lib/ThreadItem.php:220 -msgid "Toggle Star Status" -msgstr "Skru av og på stjernestatus" +#: ../../Zotlabs/Module/Directory.php:440 +msgid "Alphabetic" +msgstr "Alfabetisk" -#: ../../Zotlabs/Lib/ThreadItem.php:224 -msgid "starred" -msgstr "stjernemerket" +#: ../../Zotlabs/Module/Directory.php:441 +msgid "Reverse Alphabetic" +msgstr "Omvendt alfabetisk" -#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:671 -msgid "Message signature validated" -msgstr "Innleggets signatur er bekreftet" +#: ../../Zotlabs/Module/Directory.php:442 +msgid "Newest to Oldest" +msgstr "Nyest til eldst" -#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:672 -msgid "Message signature incorrect" -msgstr "Innleggets signatur er feil" +#: ../../Zotlabs/Module/Directory.php:443 +msgid "Oldest to Newest" +msgstr "Eldst til nyest" -#: ../../Zotlabs/Lib/ThreadItem.php:243 -msgid "Add Tag" -msgstr "Legg til merkelapp" +#: ../../Zotlabs/Module/Directory.php:460 +msgid "No entries (some entries may be hidden)." +msgstr "Ingen oppføringer (noen oppføringer kan være skjult)." -#: ../../Zotlabs/Lib/ThreadItem.php:261 ../../include/taxonomy.php:316 -msgid "like" -msgstr "liker" +#: ../../Zotlabs/Module/Api.php:74 ../../Zotlabs/Module/Api.php:95 +msgid "Authorize application connection" +msgstr "Tillat programforbindelse" -#: ../../Zotlabs/Lib/ThreadItem.php:262 ../../include/taxonomy.php:317 -msgid "dislike" -msgstr "misliker" +#: ../../Zotlabs/Module/Api.php:75 +msgid "Return to your app and insert this Security Code:" +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:266 -msgid "Share This" -msgstr "Del dette" +#: ../../Zotlabs/Module/Api.php:85 +msgid "Please login to continue." +msgstr "Vennligst logg inn for å fortsette." -#: ../../Zotlabs/Lib/ThreadItem.php:266 -msgid "share" -msgstr "del" +#: ../../Zotlabs/Module/Api.php:97 +msgid "" +"Do you want to authorize this application to access your posts and contacts, " +"and/or create new posts for you?" +msgstr "" +"Vil du tillate dette programmet å få tilgang til dine innlegg og kontakter," +" og/eller lage nye innlegg for deg?" -#: ../../Zotlabs/Lib/ThreadItem.php:275 -msgid "Delivery Report" -msgstr "Leveringsrapport" +#: ../../Zotlabs/Module/Regmod.php:15 +msgid "Please login." +msgstr "Vennligst logg inn." -#: ../../Zotlabs/Lib/ThreadItem.php:293 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d kommentar" -msgstr[1] "%d kommentarer" +#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:155 +#: ../../Zotlabs/Module/Editblock.php:113 +msgid "Block Name" +msgstr "Byggeklossens navn" -#: ../../Zotlabs/Lib/ThreadItem.php:322 ../../Zotlabs/Lib/ThreadItem.php:323 -#, php-format -msgid "View %s's profile - %s" -msgstr "Vis %s sin profil - %s" +#: ../../Zotlabs/Module/Blocks.php:156 +msgid "Block Title" +msgstr "Byggeklossens tittel" -#: ../../Zotlabs/Lib/ThreadItem.php:326 -msgid "to" -msgstr "til" +#: ../../Zotlabs/Module/Email_validation.php:36 +msgid "Email Verification Required" +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:327 -msgid "via" -msgstr "via" +#: ../../Zotlabs/Module/Email_validation.php:37 +#, php-format +msgid "" +"A verification token was sent to your email address [%s]. Enter that token " +"here to complete the account verification step. Please allow a few minutes " +"for delivery, and check your spam folder if you do not see the message." +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:328 -msgid "Wall-to-Wall" -msgstr "vegg-til-vegg" +#: ../../Zotlabs/Module/Email_validation.php:38 +msgid "Resend Email" +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:329 -msgid "via Wall-To-Wall:" -msgstr "via vegg-til-vegg:" +#: ../../Zotlabs/Module/Email_validation.php:41 +msgid "Validation token" +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:719 -#, php-format -msgid "from %s" -msgstr "fra %s" +#: ../../Zotlabs/Module/Attach.php:68 +msgid "Item not available." +msgstr "Elementet er ikke tilgjengelig." -#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:722 -#, php-format -msgid "last edited: %s" -msgstr "sist endret: %s" +#: ../../Zotlabs/Module/Vote.php:40 +msgid "Poll not found." +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:723 -#, php-format -msgid "Expires: %s" -msgstr "Utløper: %s" +#: ../../Zotlabs/Module/Vote.php:71 +msgid "Invalid response." +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:370 -msgid "Save Bookmarks" -msgstr "Lagre bokmerker" +#: ../../Zotlabs/Module/Vote.php:127 +msgid "Response submitted. Updates may not appear instantly." +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:371 -msgid "Add to Calendar" -msgstr "Legg til i kalender" +#: ../../Zotlabs/Module/Profile_photo.php:128 +#: ../../Zotlabs/Module/Cover_photo.php:85 +msgid "Image uploaded but image cropping failed." +msgstr "Bildet ble lastet opp, men beskjæring av bildet mislyktes." -#: ../../Zotlabs/Lib/ThreadItem.php:380 -msgid "Mark all seen" -msgstr "Merk alle som sett" +#: ../../Zotlabs/Module/Profile_photo.php:184 +#: ../../Zotlabs/Module/Cover_photo.php:212 +msgid "Image resize failed." +msgstr "Endring av bildestørrelse mislyktes." -#: ../../Zotlabs/Lib/ThreadItem.php:421 ../../include/js_strings.php:7 -msgid "[+] show all" -msgstr "[+] Vis alle" +#: ../../Zotlabs/Module/Profile_photo.php:350 +#: ../../Zotlabs/Module/Cover_photo.php:265 +msgid "Image upload failed." +msgstr "Opplasting av bildet mislyktes." -#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1215 -msgid "Bold" -msgstr "Uthevet" +#: ../../Zotlabs/Module/Profile_photo.php:370 +#: ../../Zotlabs/Module/Cover_photo.php:282 +msgid "Unable to process image." +msgstr "Kan ikke behandle bildet." -#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1216 -msgid "Italic" -msgstr "Kursiv" +#: ../../Zotlabs/Module/Profile_photo.php:432 +#: ../../Zotlabs/Module/Profile_photo.php:497 +#: ../../Zotlabs/Module/Cover_photo.php:367 +#: ../../Zotlabs/Module/Cover_photo.php:382 +msgid "Photo not available." +msgstr "Bildet er ikke tilgjengelig." -#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1217 -msgid "Underline" -msgstr "Understreket" +#: ../../Zotlabs/Module/Profile_photo.php:544 +msgid "" +"This profile photo will be visible to anybody on the internet and may be " +"distributed to other websites." +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1218 -msgid "Quote" -msgstr "Sitat" +#: ../../Zotlabs/Module/Profile_photo.php:544 +msgid "" +"This profile photo will be visible only to channels with permission to view " +"this profile." +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1219 -msgid "Code" -msgstr "Kode" +#: ../../Zotlabs/Module/Profile_photo.php:546 +msgid "Use Photo for Profile" +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:716 -msgid "Image" -msgstr "Bilde" +#: ../../Zotlabs/Module/Profile_photo.php:546 +msgid "Change Profile Photo" +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:717 -msgid "Insert Link" -msgstr "Sett inn lenke" +#: ../../Zotlabs/Module/Profile_photo.php:548 +msgid "Reset to default" +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:718 -msgid "Video" -msgstr "Video" +#: ../../Zotlabs/Module/Profile_photo.php:551 +#: ../../Zotlabs/Module/Profile_photo.php:552 +#: ../../Zotlabs/Module/Cover_photo.php:426 +#: ../../Zotlabs/Module/Cover_photo.php:427 +msgid "Use a photo from your albums" +msgstr "" -#: ../../include/Import/import_diaspora.php:16 -msgid "No username found in import file." -msgstr "Ingen brukernavn ble funnet i importfilen." +#: ../../Zotlabs/Module/Profile_photo.php:562 +msgid "Select existing" +msgstr "" -#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:50 -msgid "Unable to create a unique channel address. Import failed." -msgstr "Klarte ikke å lage en unik kanaladresse. Import mislyktes." +#: ../../Zotlabs/Module/Profile_photo.php:581 +#: ../../Zotlabs/Module/Cover_photo.php:455 +msgid "Crop Image" +msgstr "Beskjær bildet" -#: ../../include/dba/dba_driver.php:171 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Kan ikke finne DNS-informasjon om databasetjener '%s'" +#: ../../Zotlabs/Module/Profile_photo.php:582 +#: ../../Zotlabs/Module/Cover_photo.php:456 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Vennligst juster bildebeskjæringen for optimal visning." -#: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 -#: ../../include/widgets.php:46 ../../include/widgets.php:429 -#: ../../include/contact_widgets.php:91 -msgid "Categories" -msgstr "Kategorier" +#: ../../Zotlabs/Module/Profile_photo.php:584 +msgid "Done editing" +msgstr "" -#: ../../include/taxonomy.php:228 ../../include/taxonomy.php:249 -msgid "Tags" -msgstr "Merkelapper" +#: ../../Zotlabs/Module/Editblock.php:138 +msgid "Edit Block" +msgstr "Endre byggekloss" -#: ../../include/taxonomy.php:293 -msgid "Keywords" -msgstr "Nøkkelord" +#: ../../Zotlabs/Module/Filer.php:53 +msgid "Enter a folder name" +msgstr "" -#: ../../include/taxonomy.php:314 -msgid "have" -msgstr "har" +#: ../../Zotlabs/Module/Filer.php:53 +msgid "or select an existing folder (doubleclick)" +msgstr "" -#: ../../include/taxonomy.php:314 -msgid "has" -msgstr "har" +#: ../../Zotlabs/Module/Filer.php:55 ../../Zotlabs/Lib/ThreadItem.php:194 +msgid "Save to Folder" +msgstr "Lagre i mappe" -#: ../../include/taxonomy.php:315 -msgid "want" -msgstr "ønsker" +#: ../../Zotlabs/Module/Editlayout.php:128 ../../Zotlabs/Module/Layouts.php:129 +#: ../../Zotlabs/Module/Layouts.php:189 +msgid "Layout Name" +msgstr "Layout-navn" -#: ../../include/taxonomy.php:315 -msgid "wants" -msgstr "ønsker" +#: ../../Zotlabs/Module/Editlayout.php:129 ../../Zotlabs/Module/Layouts.php:132 +msgid "Layout Description (Optional)" +msgstr "Layoutens beskrivelse (valgfritt)" -#: ../../include/taxonomy.php:316 -msgid "likes" -msgstr "liker" +#: ../../Zotlabs/Module/Editlayout.php:137 +msgid "Edit Layout" +msgstr "Endre layout" -#: ../../include/taxonomy.php:317 -msgid "dislikes" -msgstr "misliker" +#: ../../Zotlabs/Module/Connections.php:58 +#: ../../Zotlabs/Module/Connections.php:116 +#: ../../Zotlabs/Module/Connections.php:282 +msgid "Active" +msgstr "" -#: ../../include/event.php:22 ../../include/event.php:69 -#: ../../include/bb2diaspora.php:485 -msgid "l F d, Y \\@ g:i A" -msgstr "l F d, Y \\@ g:i A" +#: ../../Zotlabs/Module/Connections.php:63 +#: ../../Zotlabs/Module/Connections.php:182 +#: ../../Zotlabs/Module/Connections.php:287 +msgid "Blocked" +msgstr "Blokkert" -#: ../../include/event.php:30 ../../include/event.php:73 -#: ../../include/bb2diaspora.php:491 -msgid "Starts:" -msgstr "Starter:" +#: ../../Zotlabs/Module/Connections.php:68 +#: ../../Zotlabs/Module/Connections.php:189 +#: ../../Zotlabs/Module/Connections.php:286 +msgid "Ignored" +msgstr "Ignorert" -#: ../../include/event.php:40 ../../include/event.php:77 -#: ../../include/bb2diaspora.php:499 -msgid "Finishes:" -msgstr "Slutter:" +#: ../../Zotlabs/Module/Connections.php:73 +#: ../../Zotlabs/Module/Connections.php:203 +#: ../../Zotlabs/Module/Connections.php:285 +msgid "Hidden" +msgstr "Skjult" -#: ../../include/event.php:812 -msgid "This event has been added to your calendar." -msgstr "Denne hendelsen er lagt til i din kalender." +#: ../../Zotlabs/Module/Connections.php:78 +#: ../../Zotlabs/Module/Connections.php:196 +msgid "Archived/Unreachable" +msgstr "" -#: ../../include/event.php:1012 -msgid "Not specified" -msgstr "Ikke spesifisert" +#: ../../Zotlabs/Module/Connections.php:83 +#: ../../Zotlabs/Module/Connections.php:92 ../../Zotlabs/Module/Menu.php:180 +#: ../../Zotlabs/Module/Notifications.php:101 +msgid "New" +msgstr "Nye" -#: ../../include/event.php:1013 -msgid "Needs Action" -msgstr "Trenger handling" +#: ../../Zotlabs/Module/Connections.php:158 +msgid "Active Connections" +msgstr "" -#: ../../include/event.php:1014 -msgid "Completed" -msgstr "Ferdig" +#: ../../Zotlabs/Module/Connections.php:161 +msgid "Show active connections" +msgstr "" -#: ../../include/event.php:1015 -msgid "In Process" -msgstr "Igang" +#: ../../Zotlabs/Module/Connections.php:168 +msgid "Show pending (new) connections" +msgstr "Vis ventende (nye) forbindelser" -#: ../../include/event.php:1016 -msgid "Cancelled" -msgstr "Avbrutt" +#: ../../Zotlabs/Module/Connections.php:185 +msgid "Only show blocked connections" +msgstr "Vis bare forbindelser som er blokkert" -#: ../../include/import.php:29 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "Kan ikke lage en kopi av kanal-identifikatoren på dette systemet. Import mislyktes." +#: ../../Zotlabs/Module/Connections.php:192 +msgid "Only show ignored connections" +msgstr "Vis bare ignorerte forbindelser" -#: ../../include/import.php:76 -msgid "Channel clone failed. Import failed." -msgstr "Kanalkloning mislyktes. Import mislyktes." +#: ../../Zotlabs/Module/Connections.php:199 +msgid "Only show archived/unreachable connections" +msgstr "" -#: ../../include/items.php:892 ../../include/items.php:937 -msgid "(Unknown)" -msgstr "(Ukjent)" +#: ../../Zotlabs/Module/Connections.php:206 +msgid "Only show hidden connections" +msgstr "Vis bare skjulte forbindelser" -#: ../../include/items.php:1136 -msgid "Visible to anybody on the internet." -msgstr "Synlig for enhver på Internett." +#: ../../Zotlabs/Module/Connections.php:221 +msgid "Show all connections" +msgstr "Vis alle forbindelser" -#: ../../include/items.php:1138 -msgid "Visible to you only." -msgstr "Synlig bare for deg." +#: ../../Zotlabs/Module/Connections.php:283 +msgid "Pending approval" +msgstr "Venter på godkjenning" -#: ../../include/items.php:1140 -msgid "Visible to anybody in this network." -msgstr "Synlig for enhver i dette nettverket." +#: ../../Zotlabs/Module/Connections.php:284 +msgid "Archived" +msgstr "Arkivert" -#: ../../include/items.php:1142 -msgid "Visible to anybody authenticated." -msgstr "Synlig for enhver som er autentisert." +#: ../../Zotlabs/Module/Connections.php:288 +msgid "Not connected at this location" +msgstr "" -#: ../../include/items.php:1144 +#: ../../Zotlabs/Module/Connections.php:327 #, php-format -msgid "Visible to anybody on %s." -msgstr "Synlig for alle på %s." +msgid "%1$s [%2$s]" +msgstr "%1$s [%2$s]" -#: ../../include/items.php:1146 -msgid "Visible to all connections." -msgstr "Synlig for alle forbindelser." +#: ../../Zotlabs/Module/Connections.php:328 +msgid "Edit connection" +msgstr "Endre forbindelse" -#: ../../include/items.php:1148 -msgid "Visible to approved connections." -msgstr "Synlig for godkjente forbindelser." +#: ../../Zotlabs/Module/Connections.php:330 +msgid "Delete connection" +msgstr "Slett forbindelse" -#: ../../include/items.php:1150 -msgid "Visible to specific connections." -msgstr "Synlig for spesifikke forbindelser." +#: ../../Zotlabs/Module/Connections.php:336 +msgid "Channel address" +msgstr "Kanaladresse" -#: ../../include/items.php:3909 -msgid "Privacy group is empty." -msgstr "Personverngruppen er tom." +#: ../../Zotlabs/Module/Connections.php:341 +msgid "Call" +msgstr "" -#: ../../include/items.php:3916 -#, php-format -msgid "Privacy group: %s" -msgstr "Personverngruppe: %s" +#: ../../Zotlabs/Module/Connections.php:343 +msgid "Status" +msgstr "Status" -#: ../../include/items.php:3928 -msgid "Connection not found." -msgstr "Forbindelsen ble ikke funnet." +#: ../../Zotlabs/Module/Connections.php:346 +msgid "Connected" +msgstr "Forbundet" -#: ../../include/items.php:4277 -msgid "profile photo" -msgstr "profilbilde" +#: ../../Zotlabs/Module/Connections.php:350 +msgid "Ignore connection" +msgstr "Ignorer forbindelse" -#: ../../include/message.php:20 -msgid "No recipient provided." -msgstr "Ingen mottaker angitt." +#: ../../Zotlabs/Module/Connections.php:352 +msgid "Recent activity" +msgstr "Nylig aktivitet" -#: ../../include/message.php:25 -msgid "[no subject]" -msgstr "[ikke noe emne]" +#: ../../Zotlabs/Module/Connections.php:358 +msgid "Connect at this location" +msgstr "" -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "Kan ikke avgjøre avsender." +#: ../../Zotlabs/Module/Connections.php:395 +#: ../../Zotlabs/Module/Connedit.php:686 +msgid "Contact role" +msgstr "" -#: ../../include/message.php:222 -msgid "Stored post could not be verified." -msgstr "Lagret innlegg kunne ikke bekreftes." +#: ../../Zotlabs/Module/Connections.php:396 +msgid "Search your connections" +msgstr "Søk blant dine forbindelser" -#: ../../include/text.php:428 -msgid "prev" -msgstr "forrige" +#: ../../Zotlabs/Module/Connections.php:397 +msgid "Contact search" +msgstr "" -#: ../../include/text.php:430 -msgid "first" -msgstr "første" +#: ../../Zotlabs/Module/Cover_photo.php:196 +#: ../../Zotlabs/Module/Cover_photo.php:254 +msgid "Cover Photos" +msgstr "Forsidebilder" -#: ../../include/text.php:459 -msgid "last" -msgstr "siste" +#: ../../Zotlabs/Module/Cover_photo.php:418 +msgid "Your cover photo may be visible to anybody on the internet" +msgstr "" -#: ../../include/text.php:462 -msgid "next" -msgstr "neste" +#: ../../Zotlabs/Module/Cover_photo.php:420 +msgid "Upload File:" +msgstr "Last opp fil:" -#: ../../include/text.php:472 -msgid "older" -msgstr "eldre" +#: ../../Zotlabs/Module/Cover_photo.php:421 +msgid "Select a profile:" +msgstr "Velg en profil:" -#: ../../include/text.php:474 -msgid "newer" -msgstr "nyere" +#: ../../Zotlabs/Module/Cover_photo.php:422 +msgid "Change Cover Photo" +msgstr "" -#: ../../include/text.php:863 -msgid "No connections" -msgstr "Ingen forbindelser" +#: ../../Zotlabs/Module/Cover_photo.php:438 +msgid "Select existing photo" +msgstr "" -#: ../../include/text.php:888 -#, php-format -msgid "View all %s connections" -msgstr "Vis alle %s forbindelser" +#: ../../Zotlabs/Module/Cover_photo.php:458 +msgid "Done Editing" +msgstr "Avslutt redigering" -#: ../../include/text.php:1033 ../../include/text.php:1038 -msgid "poke" -msgstr "prikk" +#: ../../Zotlabs/Module/Photos.php:80 +msgid "Page owner information could not be retrieved." +msgstr "Informasjon om sideeier kunne ikke hentes." -#: ../../include/text.php:1033 ../../include/text.php:1038 -#: ../../include/conversation.php:243 -msgid "poked" -msgstr "prikket" +#: ../../Zotlabs/Module/Photos.php:96 ../../Zotlabs/Module/Photos.php:115 +msgid "Album not found." +msgstr "Albumet ble ikke funnet." -#: ../../include/text.php:1039 -msgid "ping" -msgstr "varsle" +#: ../../Zotlabs/Module/Photos.php:105 +msgid "Delete Album" +msgstr "Slett album" -#: ../../include/text.php:1039 -msgid "pinged" -msgstr "varslet" +#: ../../Zotlabs/Module/Photos.php:177 ../../Zotlabs/Module/Photos.php:1065 +msgid "Delete Photo" +msgstr "Slett bilde" -#: ../../include/text.php:1040 -msgid "prod" -msgstr "oppildne" +#: ../../Zotlabs/Module/Photos.php:534 +msgid "No photos selected" +msgstr "Ingen bilder valgt" -#: ../../include/text.php:1040 -msgid "prodded" -msgstr "oppildnet" +#: ../../Zotlabs/Module/Photos.php:583 +msgid "Access to this item is restricted." +msgstr "Tilgang til dette elementet er begrenset." -#: ../../include/text.php:1041 -msgid "slap" -msgstr "daske" +#: ../../Zotlabs/Module/Photos.php:626 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "%1$.2f MB av %2$.2f MB lagringsplass til bilder er brukt." -#: ../../include/text.php:1041 -msgid "slapped" -msgstr "dasket" +#: ../../Zotlabs/Module/Photos.php:629 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "%1$.2f MB lagringsplass til bilder er brukt." -#: ../../include/text.php:1042 -msgid "finger" -msgstr "fingre" +#: ../../Zotlabs/Module/Photos.php:671 +msgid "Upload Photos" +msgstr "Last opp bilder" -#: ../../include/text.php:1042 -msgid "fingered" -msgstr "fingret" +#: ../../Zotlabs/Module/Photos.php:675 +msgid "Enter an album name" +msgstr "Skriv et albumnavn" -#: ../../include/text.php:1043 -msgid "rebuff" -msgstr "tilbakevise" +#: ../../Zotlabs/Module/Photos.php:676 +msgid "or select an existing album (doubleclick)" +msgstr "eller velg et eksisterende album (dobbeltklikk)" -#: ../../include/text.php:1043 -msgid "rebuffed" -msgstr "tilbakeviste" +#: ../../Zotlabs/Module/Photos.php:677 +msgid "Create a status post for this upload" +msgstr "Lag et statusinnlegg for denne opplastingen" -#: ../../include/text.php:1055 -msgid "happy" -msgstr "glad" +#: ../../Zotlabs/Module/Photos.php:679 +msgid "Description (optional)" +msgstr "" -#: ../../include/text.php:1056 -msgid "sad" -msgstr "trist" +#: ../../Zotlabs/Module/Photos.php:767 +msgid "Show Newest First" +msgstr "Vis nyeste først" -#: ../../include/text.php:1057 -msgid "mellow" -msgstr "dempet" +#: ../../Zotlabs/Module/Photos.php:769 +msgid "Show Oldest First" +msgstr "Vis eldste først" -#: ../../include/text.php:1058 -msgid "tired" -msgstr "trøtt" +#: ../../Zotlabs/Module/Photos.php:826 ../../Zotlabs/Module/Photos.php:1368 +msgid "Add Photos" +msgstr "" -#: ../../include/text.php:1059 -msgid "perky" -msgstr "oppkvikket" +#: ../../Zotlabs/Module/Photos.php:874 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Tillatelse avvist. Tilgang til dette elementet kan være begrenset." + +#: ../../Zotlabs/Module/Photos.php:876 +msgid "Photo not available" +msgstr "Bilde er utilgjengelig" + +#: ../../Zotlabs/Module/Photos.php:934 +msgid "Use as profile photo" +msgstr "Bruk som profilbilde" + +#: ../../Zotlabs/Module/Photos.php:935 +msgid "Use as cover photo" +msgstr "Bruk som omslagsbilde" -#: ../../include/text.php:1060 -msgid "angry" -msgstr "sint" +#: ../../Zotlabs/Module/Photos.php:942 +msgid "Private Photo" +msgstr "Privat bilde" -#: ../../include/text.php:1061 -msgid "stupefied" -msgstr "lamslått" +#: ../../Zotlabs/Module/Photos.php:957 +msgid "View Full Size" +msgstr "Vis i full størrelse" -#: ../../include/text.php:1062 -msgid "puzzled" -msgstr "forundret" +#: ../../Zotlabs/Module/Photos.php:1039 +msgid "Edit photo" +msgstr "Endre bilde" -#: ../../include/text.php:1063 -msgid "interested" -msgstr "interessert" +#: ../../Zotlabs/Module/Photos.php:1041 +msgid "Rotate CW (right)" +msgstr "Roter med klokka (mot høyre)" -#: ../../include/text.php:1064 -msgid "bitter" -msgstr "bitter" +#: ../../Zotlabs/Module/Photos.php:1042 +msgid "Rotate CCW (left)" +msgstr "Roter mot klokka (venstre)" -#: ../../include/text.php:1065 -msgid "cheerful" -msgstr "munter" +#: ../../Zotlabs/Module/Photos.php:1045 +msgid "Move photo to album" +msgstr "" -#: ../../include/text.php:1066 -msgid "alive" -msgstr "levende" +#: ../../Zotlabs/Module/Photos.php:1046 +msgid "Enter a new album name" +msgstr "Skriv et nytt albumnavn" -#: ../../include/text.php:1067 -msgid "annoyed" -msgstr "irritert" +#: ../../Zotlabs/Module/Photos.php:1047 +msgid "or select an existing one (doubleclick)" +msgstr "eller velg et eksisterende album (dobbeltklikk)" -#: ../../include/text.php:1068 -msgid "anxious" -msgstr "nervøs" +#: ../../Zotlabs/Module/Photos.php:1052 +msgid "Add a Tag" +msgstr "Legg til merkelapp" -#: ../../include/text.php:1069 -msgid "cranky" -msgstr "gretten" +#: ../../Zotlabs/Module/Photos.php:1060 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Eksempel: @bob, @Barbara_Jensen, @jim@example.com" -#: ../../include/text.php:1070 -msgid "disturbed" -msgstr "foruroliget" +#: ../../Zotlabs/Module/Photos.php:1063 +msgid "Flag as adult in album view" +msgstr "Flag som voksent i albumvisning" -#: ../../include/text.php:1071 -msgid "frustrated" -msgstr "frustrert" +#: ../../Zotlabs/Module/Photos.php:1082 ../../Zotlabs/Lib/ThreadItem.php:317 +msgid "I like this (toggle)" +msgstr "Jeg liker dette (skru av og på)" -#: ../../include/text.php:1072 -msgid "depressed" -msgstr "lei seg" +#: ../../Zotlabs/Module/Photos.php:1083 ../../Zotlabs/Lib/ThreadItem.php:318 +msgid "I don't like this (toggle)" +msgstr "Jeg liker ikke dette (skru av og på)" -#: ../../include/text.php:1073 -msgid "motivated" -msgstr "motivert" +#: ../../Zotlabs/Module/Photos.php:1101 ../../Zotlabs/Module/Photos.php:1217 +#: ../../Zotlabs/Lib/ThreadItem.php:832 +msgid "This is you" +msgstr "Dette er deg" -#: ../../include/text.php:1074 -msgid "relaxed" -msgstr "avslappet" +#: ../../Zotlabs/Module/Photos.php:1138 ../../Zotlabs/Module/Photos.php:1150 +#: ../../Zotlabs/Lib/ThreadItem.php:237 ../../Zotlabs/Lib/ThreadItem.php:249 +msgid "View all" +msgstr "Vis alle" -#: ../../include/text.php:1075 -msgid "surprised" -msgstr "overrasket" +#: ../../Zotlabs/Module/Photos.php:1251 +msgid "Photo Tools" +msgstr "Fotoverktøy" -#: ../../include/text.php:1257 ../../include/js_strings.php:70 -msgid "Monday" -msgstr "mandag" +#: ../../Zotlabs/Module/Photos.php:1260 +msgid "In This Photo:" +msgstr "I dette bildet:" -#: ../../include/text.php:1257 ../../include/js_strings.php:71 -msgid "Tuesday" -msgstr "tirsdag" +#: ../../Zotlabs/Module/Photos.php:1265 +msgid "Map" +msgstr "Kart" -#: ../../include/text.php:1257 ../../include/js_strings.php:72 -msgid "Wednesday" -msgstr "onsdag" +#: ../../Zotlabs/Module/Photos.php:1273 ../../Zotlabs/Lib/ThreadItem.php:497 +msgctxt "noun" +msgid "Likes" +msgstr "Liker" -#: ../../include/text.php:1257 ../../include/js_strings.php:73 -msgid "Thursday" -msgstr "torsdag" +#: ../../Zotlabs/Module/Photos.php:1274 ../../Zotlabs/Lib/ThreadItem.php:498 +msgctxt "noun" +msgid "Dislikes" +msgstr "Liker ikke" -#: ../../include/text.php:1257 ../../include/js_strings.php:74 -msgid "Friday" -msgstr "fredag" +#: ../../Zotlabs/Module/Lostpass.php:19 +msgid "No valid account found." +msgstr "Ingen gyldig konto funnet." -#: ../../include/text.php:1257 ../../include/js_strings.php:75 -msgid "Saturday" -msgstr "lørdag" +#: ../../Zotlabs/Module/Lostpass.php:33 +msgid "Password reset request issued. Check your email." +msgstr "Forespørsel om å tilbakestille passord er mottatt. Sjekk e-posten din." -#: ../../include/text.php:1257 ../../include/js_strings.php:69 -msgid "Sunday" -msgstr "søndag" +#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:108 +#, php-format +msgid "Site Member (%s)" +msgstr "Nettstedsmedlem (%s)" -#: ../../include/text.php:1261 ../../include/js_strings.php:45 -msgid "January" -msgstr "januar" +#: ../../Zotlabs/Module/Lostpass.php:44 ../../Zotlabs/Module/Lostpass.php:49 +#, php-format +msgid "Password reset requested at %s" +msgstr "Forespurt om å tilbakestille passord hos %s" -#: ../../include/text.php:1261 ../../include/js_strings.php:46 -msgid "February" -msgstr "februar" +#: ../../Zotlabs/Module/Lostpass.php:68 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "" +"Forespørsel kunne ikke bekreftes. (Du kan ha sendt den inn tidligere.)" +" Tilbakestilling av passord mislyktes." -#: ../../include/text.php:1261 ../../include/js_strings.php:47 -msgid "March" -msgstr "mars" +#: ../../Zotlabs/Module/Lostpass.php:91 ../../boot.php:1757 +msgid "Password Reset" +msgstr "Tilbakestill passord" -#: ../../include/text.php:1261 ../../include/js_strings.php:48 -msgid "April" -msgstr "april" +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your password has been reset as requested." +msgstr "Ditt passord har blitt tilbakestilt som forespurt." -#: ../../include/text.php:1261 -msgid "May" -msgstr "mai" +#: ../../Zotlabs/Module/Lostpass.php:93 +msgid "Your new password is" +msgstr "Ditt nye passord er" -#: ../../include/text.php:1261 ../../include/js_strings.php:50 -msgid "June" -msgstr "juni" +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "Save or copy your new password - and then" +msgstr "Lagre eller kopier ditt nye passord, og deretter kan du" -#: ../../include/text.php:1261 ../../include/js_strings.php:51 -msgid "July" -msgstr "juli" +#: ../../Zotlabs/Module/Lostpass.php:95 +msgid "click here to login" +msgstr "klikke her for å logge inn" -#: ../../include/text.php:1261 ../../include/js_strings.php:52 -msgid "August" -msgstr "august" +#: ../../Zotlabs/Module/Lostpass.php:96 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "" +"Ditt passord kan endres på siden Innstillinger etter vellykket" +" innlogging." -#: ../../include/text.php:1261 ../../include/js_strings.php:53 -msgid "September" -msgstr "september" +#: ../../Zotlabs/Module/Lostpass.php:117 +#, php-format +msgid "Your password has changed at %s" +msgstr "Ditt passord er endret hos %s" -#: ../../include/text.php:1261 ../../include/js_strings.php:54 -msgid "October" -msgstr "oktober" +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Forgot your Password?" +msgstr "Glemt passord ditt?" -#: ../../include/text.php:1261 ../../include/js_strings.php:55 -msgid "November" -msgstr "november" +#: ../../Zotlabs/Module/Lostpass.php:131 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "" +"Skriv e-postadressen din og send inn for å tilbakestille passordet ditt." +" Sjekk deretter din e-post for videre instruksjoner." -#: ../../include/text.php:1261 ../../include/js_strings.php:56 -msgid "December" -msgstr "desember" +#: ../../Zotlabs/Module/Lostpass.php:132 +msgid "Email Address" +msgstr "E-postadresse" -#: ../../include/text.php:1338 ../../include/text.php:1342 -msgid "Unknown Attachment" -msgstr "Ukjent vedlegg" +#: ../../Zotlabs/Module/Lostpass.php:133 ../../Zotlabs/Module/Pdledit.php:76 +msgid "Reset" +msgstr "Tilbakestill" -#: ../../include/text.php:1344 -msgid "unknown" -msgstr "ukjent" +#: ../../Zotlabs/Module/Follow.php:93 +msgid "Connection added." +msgstr "" -#: ../../include/text.php:1380 -msgid "remove category" -msgstr "fjern kategori" +#: ../../Zotlabs/Module/Page.php:39 ../../Zotlabs/Module/Block.php:29 +msgid "Invalid item." +msgstr "Ugyldig element." -#: ../../include/text.php:1457 -msgid "remove from file" -msgstr "fjern fra fil" +#: ../../Zotlabs/Module/Page.php:174 +msgid "" +"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " +"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, " +"quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " +"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " +"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " +"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +msgstr "" +"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod" +" tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," +" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo" +" consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse" +" cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat" +" non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." -#: ../../include/text.php:1753 ../../include/text.php:1824 -msgid "default" -msgstr "standard" +#: ../../Zotlabs/Module/Profiles.php:26 ../../Zotlabs/Module/Profiles.php:214 +#: ../../Zotlabs/Module/Profiles.php:643 +msgid "Profile not found." +msgstr "Profilen ble ikke funnet." -#: ../../include/text.php:1761 -msgid "Page layout" -msgstr "Sidens layout" +#: ../../Zotlabs/Module/Profiles.php:46 +msgid "Profile deleted." +msgstr "Profilen er slettet." -#: ../../include/text.php:1761 -msgid "You can create your own with the layouts tool" -msgstr "Du kan lage din egen med layout-verktøyet" +#: ../../Zotlabs/Module/Profiles.php:70 ../../Zotlabs/Module/Profiles.php:107 +msgid "Profile-" +msgstr "Profil-" -#: ../../include/text.php:1803 -msgid "Page content type" -msgstr "Sidens innholdstype" +#: ../../Zotlabs/Module/Profiles.php:92 ../../Zotlabs/Module/Profiles.php:129 +msgid "New profile created." +msgstr "Ny profil opprettet." -#: ../../include/text.php:1836 -msgid "Select an alternate language" -msgstr "Velg et annet språk" +#: ../../Zotlabs/Module/Profiles.php:113 +msgid "Profile unavailable to clone." +msgstr "Profilen er utilgjengelig for klonen." -#: ../../include/text.php:1953 -msgid "activity" -msgstr "aktivitet" +#: ../../Zotlabs/Module/Profiles.php:148 +msgid "Profile unavailable to export." +msgstr "Profilen er utilgjengelig for eksport." -#: ../../include/text.php:2262 -msgid "Design Tools" -msgstr "Designverktøy" +#: ../../Zotlabs/Module/Profiles.php:225 +msgid "Profile Name is required." +msgstr "Profilnavn er påkrevd." -#: ../../include/text.php:2268 -msgid "Pages" -msgstr "Sider" +#: ../../Zotlabs/Module/Profiles.php:430 +msgid "Marital Status" +msgstr "Sivilstand" -#: ../../include/widgets.php:103 -msgid "System" -msgstr "System" +#: ../../Zotlabs/Module/Profiles.php:434 +msgid "Romantic Partner" +msgstr "Romantisk partner" -#: ../../include/widgets.php:106 -msgid "New App" -msgstr "" +#: ../../Zotlabs/Module/Profiles.php:438 ../../Zotlabs/Module/Profiles.php:789 +msgid "Likes" +msgstr "Liker" -#: ../../include/widgets.php:154 -msgid "Suggestions" -msgstr "Forslag" +#: ../../Zotlabs/Module/Profiles.php:442 ../../Zotlabs/Module/Profiles.php:790 +msgid "Dislikes" +msgstr "Liker ikke" -#: ../../include/widgets.php:155 -msgid "See more..." -msgstr "Se mer..." +#: ../../Zotlabs/Module/Profiles.php:446 ../../Zotlabs/Module/Profiles.php:797 +msgid "Work/Employment" +msgstr "Arbeid/sysselsetting" -#: ../../include/widgets.php:175 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "Du har %1$.0f av %2$.0f tillate forbindelser." +#: ../../Zotlabs/Module/Profiles.php:449 +msgid "Religion" +msgstr "Religion" -#: ../../include/widgets.php:181 -msgid "Add New Connection" -msgstr "Legg til ny forbindelse" +#: ../../Zotlabs/Module/Profiles.php:453 +msgid "Political Views" +msgstr "Politiske synspunkter" -#: ../../include/widgets.php:182 -msgid "Enter channel address" -msgstr "Skriv kanaladressen" +#: ../../Zotlabs/Module/Profiles.php:461 +msgid "Sexual Preference" +msgstr "Seksuelle preferanser" -#: ../../include/widgets.php:183 -msgid "Examples: bob@example.com, https://example.com/barbara" -msgstr "Eksempel: ola@eksempel.no, https://eksempel.no/kari" +#: ../../Zotlabs/Module/Profiles.php:465 +msgid "Homepage" +msgstr "Hjemmeside" -#: ../../include/widgets.php:199 -msgid "Notes" -msgstr "Merknader" +#: ../../Zotlabs/Module/Profiles.php:469 +msgid "Interests" +msgstr "Interesser" -#: ../../include/widgets.php:273 -msgid "Remove term" -msgstr "Fjern begrep" +#: ../../Zotlabs/Module/Profiles.php:577 +msgid "Profile updated." +msgstr "Profilen er oppdatert." -#: ../../include/widgets.php:281 ../../include/features.php:84 -msgid "Saved Searches" -msgstr "Lagrede søk" +#: ../../Zotlabs/Module/Profiles.php:673 +msgid "Hide my connections from viewers of this profile" +msgstr "" -#: ../../include/widgets.php:282 ../../include/group.php:316 -msgid "add" -msgstr "legg til" +#: ../../Zotlabs/Module/Profiles.php:686 +msgid "Publish my default profile in the network directory" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:694 +msgid "Suggest me as a potential contact to new members" +msgstr "" -#: ../../include/widgets.php:310 ../../include/contact_widgets.php:53 -#: ../../include/features.php:98 -msgid "Saved Folders" -msgstr "Lagrede mapper" +#: ../../Zotlabs/Module/Profiles.php:698 +msgid "Reveal my online status" +msgstr "" -#: ../../include/widgets.php:313 ../../include/widgets.php:432 -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 -msgid "Everything" -msgstr "Alt" +#: ../../Zotlabs/Module/Profiles.php:739 +msgid "Edit Profile Details" +msgstr "Endre profildetaljer" -#: ../../include/widgets.php:354 -msgid "Archives" -msgstr "Arkiv" +#: ../../Zotlabs/Module/Profiles.php:741 +msgid "View this profile" +msgstr "Vis denne profilen" -#: ../../include/widgets.php:516 -msgid "Refresh" -msgstr "Forny" +#: ../../Zotlabs/Module/Profiles.php:743 +msgid "Profile Tools" +msgstr "Profilverktøy" -#: ../../include/widgets.php:556 -msgid "Account settings" -msgstr "Kontoinnstillinger" +#: ../../Zotlabs/Module/Profiles.php:744 +msgid "Change cover photo" +msgstr "Endre omslagsbilde" -#: ../../include/widgets.php:562 -msgid "Channel settings" -msgstr "Kanalinnstillinger" +#: ../../Zotlabs/Module/Profiles.php:746 +msgid "Create a new profile using these settings" +msgstr "Lag en ny profil ved å bruke disse innstillingene" -#: ../../include/widgets.php:571 -msgid "Additional features" -msgstr "Tilleggsfunksjoner" +#: ../../Zotlabs/Module/Profiles.php:747 +msgid "Clone this profile" +msgstr "Klon denne profilen" -#: ../../include/widgets.php:578 -msgid "Feature/Addon settings" -msgstr "Funksjons-/Tilleggsinnstillinger" +#: ../../Zotlabs/Module/Profiles.php:748 +msgid "Delete this profile" +msgstr "Slett denne profilen" -#: ../../include/widgets.php:584 -msgid "Display settings" -msgstr "Visningsinnstillinger" +#: ../../Zotlabs/Module/Profiles.php:749 +msgid "Add profile things" +msgstr "Legg til profilting" -#: ../../include/widgets.php:591 -msgid "Manage locations" +#: ../../Zotlabs/Module/Profiles.php:750 +msgid "Basic" msgstr "" -#: ../../include/widgets.php:600 -msgid "Export channel" -msgstr "Eksporter kanal" +#: ../../Zotlabs/Module/Profiles.php:752 +msgid "Relationship" +msgstr "" -#: ../../include/widgets.php:607 -msgid "Connected apps" -msgstr "Tilkoblede app-er" +#: ../../Zotlabs/Module/Profiles.php:755 +msgid "Import profile from file" +msgstr "Importer profil fra fil" -#: ../../include/widgets.php:622 -msgid "Premium Channel Settings" -msgstr "Premiumkanal-innstillinger" +#: ../../Zotlabs/Module/Profiles.php:756 +msgid "Export profile to file" +msgstr "Eksporter profil til fil" -#: ../../include/widgets.php:651 -msgid "Private Mail Menu" -msgstr "Meny for privat post" +#: ../../Zotlabs/Module/Profiles.php:757 +msgid "Your gender" +msgstr "Kjønn" -#: ../../include/widgets.php:653 -msgid "Combined View" -msgstr "Kombinert visning" +#: ../../Zotlabs/Module/Profiles.php:758 +msgid "Marital status" +msgstr "Sivilstatus" -#: ../../include/widgets.php:658 ../../include/nav.php:196 -msgid "Inbox" -msgstr "Innboks" +#: ../../Zotlabs/Module/Profiles.php:759 +msgid "Sexual preference" +msgstr "Legning" -#: ../../include/widgets.php:663 ../../include/nav.php:197 -msgid "Outbox" -msgstr "Utboks" +#: ../../Zotlabs/Module/Profiles.php:762 +msgid "Profile name" +msgstr "Profilnavn" -#: ../../include/widgets.php:668 ../../include/nav.php:198 -msgid "New Message" -msgstr "Ny melding" +#: ../../Zotlabs/Module/Profiles.php:764 +msgid "This is your default profile." +msgstr "Dette er din standardprofil." -#: ../../include/widgets.php:685 ../../include/widgets.php:697 -msgid "Conversations" -msgstr "Samtaler" +#: ../../Zotlabs/Module/Profiles.php:766 +msgid "Your full name" +msgstr "Fullt navn" -#: ../../include/widgets.php:689 -msgid "Received Messages" -msgstr "Mottatte meldinger" +#: ../../Zotlabs/Module/Profiles.php:767 +msgid "Short title/description" +msgstr "" -#: ../../include/widgets.php:693 -msgid "Sent Messages" -msgstr "Sendte meldinger" +#: ../../Zotlabs/Module/Profiles.php:767 +msgid "Maximal 190 characters" +msgstr "" -#: ../../include/widgets.php:707 -msgid "No messages." -msgstr "Ingen meldinger." +#: ../../Zotlabs/Module/Profiles.php:770 +msgid "Street address" +msgstr "Gateadresse" -#: ../../include/widgets.php:725 -msgid "Delete conversation" -msgstr "Slett samtale" +#: ../../Zotlabs/Module/Profiles.php:771 +msgid "Locality/City" +msgstr "Sted/by" -#: ../../include/widgets.php:751 -msgid "Events Menu" -msgstr "Meny for hendelser" +#: ../../Zotlabs/Module/Profiles.php:772 +msgid "Region/State" +msgstr "Region" -#: ../../include/widgets.php:752 -msgid "Day View" -msgstr "Dag" +#: ../../Zotlabs/Module/Profiles.php:773 +msgid "Postal/Zip code" +msgstr "Postnummer" -#: ../../include/widgets.php:753 -msgid "Week View" -msgstr "Uke" +#: ../../Zotlabs/Module/Profiles.php:779 +msgid "Who (if applicable)" +msgstr "Hvem (om relevant)" -#: ../../include/widgets.php:754 -msgid "Month View" -msgstr "Måned" +#: ../../Zotlabs/Module/Profiles.php:779 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Eksempler: kari123, Kari Villiamsen, kari@example.com" -#: ../../include/widgets.php:766 -msgid "Events Tools" -msgstr "Kalenderverktøy" +#: ../../Zotlabs/Module/Profiles.php:780 +msgid "Since (date)" +msgstr "Fra (dato)" -#: ../../include/widgets.php:767 -msgid "Export Calendar" -msgstr "Eksporter kalender" +#: ../../Zotlabs/Module/Profiles.php:783 +msgid "Tell us about yourself" +msgstr "Fortell oss om deg selv" -#: ../../include/widgets.php:768 -msgid "Import Calendar" -msgstr "Importer kalender" +#: ../../Zotlabs/Module/Profiles.php:785 +msgid "Hometown" +msgstr "Hjemsted" -#: ../../include/widgets.php:842 ../../include/conversation.php:1662 -#: ../../include/conversation.php:1665 -msgid "Chatrooms" -msgstr "Chatrom" +#: ../../Zotlabs/Module/Profiles.php:786 +msgid "Political views" +msgstr "Politiske holdninger" -#: ../../include/widgets.php:846 -msgid "Overview" -msgstr "" +#: ../../Zotlabs/Module/Profiles.php:787 +msgid "Religious views" +msgstr "Religiøse holdninger" -#: ../../include/widgets.php:853 -msgid "Chat Members" -msgstr "" +#: ../../Zotlabs/Module/Profiles.php:788 +msgid "Keywords used in directory listings" +msgstr "Nøkkelord for bruk i katalogoppføringen" -#: ../../include/widgets.php:876 -msgid "Bookmarked Chatrooms" -msgstr "Bokmerkede chatrom" +#: ../../Zotlabs/Module/Profiles.php:788 +msgid "Example: fishing photography software" +msgstr "Eksempel: fisking fotografering programvare" -#: ../../include/widgets.php:899 -msgid "Suggested Chatrooms" -msgstr "Foreslåtte chatrom" +#: ../../Zotlabs/Module/Profiles.php:791 +msgid "Musical interests" +msgstr "Musikkinteresser" -#: ../../include/widgets.php:1044 ../../include/widgets.php:1156 -msgid "photo/image" -msgstr "foto/bilde" +#: ../../Zotlabs/Module/Profiles.php:792 +msgid "Books, literature" +msgstr "Bøker, litteratur" -#: ../../include/widgets.php:1099 -msgid "Click to show more" -msgstr "" +#: ../../Zotlabs/Module/Profiles.php:793 +msgid "Television" +msgstr "TV/fjernsyn" -#: ../../include/widgets.php:1250 -msgid "Rating Tools" -msgstr "Vurderingsverktøy" +#: ../../Zotlabs/Module/Profiles.php:794 +msgid "Film/Dance/Culture/Entertainment" +msgstr "Film/dans/kultur/underholdning" -#: ../../include/widgets.php:1254 ../../include/widgets.php:1256 -msgid "Rate Me" -msgstr "Vurder meg" +#: ../../Zotlabs/Module/Profiles.php:795 +msgid "Hobbies/Interests" +msgstr "Hobbier/Interesser" -#: ../../include/widgets.php:1259 -msgid "View Ratings" -msgstr "Vis vurderinger" +#: ../../Zotlabs/Module/Profiles.php:796 +msgid "Love/Romance" +msgstr "Kjærlighet/romantikk" -#: ../../include/widgets.php:1316 -msgid "Forums" -msgstr "Forum" +#: ../../Zotlabs/Module/Profiles.php:798 +msgid "School/Education" +msgstr "Skolle/utdanning" -#: ../../include/widgets.php:1345 -msgid "Tasks" -msgstr "Oppgaver" +#: ../../Zotlabs/Module/Profiles.php:799 +msgid "Contact information and social networks" +msgstr "Kontaktinformasjon og andre sosiale nettverk" -#: ../../include/widgets.php:1354 -msgid "Documentation" -msgstr "Dokumentasjon" +#: ../../Zotlabs/Module/Profiles.php:800 +msgid "My other channels" +msgstr "Mine andre kanaler" -#: ../../include/widgets.php:1356 -msgid "Project/Site Information" -msgstr "Prosjekt-/Nettstedsinformasjon" +#: ../../Zotlabs/Module/Subthread.php:128 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s følger %2$s sin %3$s" -#: ../../include/widgets.php:1357 -msgid "For Members" -msgstr "For medlemmer" +#: ../../Zotlabs/Module/Subthread.php:130 +#, php-format +msgid "%1$s stopped following %2$s's %3$s" +msgstr "%1$s stopped å følge %2$s sin %3$s" -#: ../../include/widgets.php:1358 -msgid "For Administrators" -msgstr "For administratorer" +#: ../../Zotlabs/Module/Bookmarks.php:62 +msgid "Bookmark added" +msgstr "Bokmerke lagt til" -#: ../../include/widgets.php:1359 -msgid "For Developers" -msgstr "For utviklere" +#: ../../Zotlabs/Module/Bookmarks.php:101 +msgid "My Connections Bookmarks" +msgstr "Mine forbindelsers bokmerker" -#: ../../include/widgets.php:1383 ../../include/widgets.php:1421 -msgid "Member registrations waiting for confirmation" +#: ../../Zotlabs/Module/Changeaddr.php:35 +msgid "" +"Channel name changes are not allowed within 48 hours of changing the account " +"password." msgstr "" -#: ../../include/widgets.php:1389 -msgid "Inspect queue" -msgstr "Inspiser kø" - -#: ../../include/widgets.php:1391 -msgid "DB updates" -msgstr "Databaseoppdateringer" - -#: ../../include/widgets.php:1416 ../../include/nav.php:216 -msgid "Admin" -msgstr "Administrator" +#: ../../Zotlabs/Module/Changeaddr.php:77 +msgid "Change channel nickname/address" +msgstr "" -#: ../../include/widgets.php:1417 -msgid "Plugin Features" -msgstr "Tilleggsfunksjoner" +#: ../../Zotlabs/Module/Changeaddr.php:78 +msgid "Any/all connections on other networks will be lost!" +msgstr "" -#: ../../include/follow.php:27 -msgid "Channel is blocked on this site." -msgstr "Kanalen er blokkert på dette nettstedet." +#: ../../Zotlabs/Module/Changeaddr.php:80 +msgid "New channel address" +msgstr "" -#: ../../include/follow.php:32 -msgid "Channel location missing." -msgstr "Kanalplassering mangler." +#: ../../Zotlabs/Module/Changeaddr.php:81 +msgid "Rename Channel" +msgstr "" -#: ../../include/follow.php:81 -msgid "Response from remote channel was incomplete." -msgstr "Svaret fra den andre kanalen var ikke komplett." +#: ../../Zotlabs/Module/Invite.php:56 +msgid "Invite App" +msgstr "" -#: ../../include/follow.php:98 -msgid "Channel was deleted and no longer exists." -msgstr "Kanalen er slettet og finnes ikke lenger." +#: ../../Zotlabs/Module/Invite.php:68 +msgid "Register is closed" +msgstr "" -#: ../../include/follow.php:154 ../../include/follow.php:190 -msgid "Protocol disabled." -msgstr "Protokollen er avskrudd." +#: ../../Zotlabs/Module/Invite.php:102 ../../Zotlabs/Module/Invite.php:549 +msgid "Note, the invitation code is valid up to" +msgstr "" -#: ../../include/follow.php:178 -msgid "Channel discovery failed." -msgstr "Kanaloppdagelse mislyktes." +#: ../../Zotlabs/Module/Invite.php:115 +#, php-format +msgid "Too many recipients for one invitation (max %d)" +msgstr "" -#: ../../include/follow.php:216 -msgid "Cannot connect to yourself." -msgstr "Kan ikke lage forbindelse med deg selv." +#: ../../Zotlabs/Module/Invite.php:119 +msgid "No recipients for this invitation" +msgstr "" -#: ../../include/bookmarks.php:35 +#: ../../Zotlabs/Module/Invite.php:138 #, php-format -msgid "%1$s's bookmarks" -msgstr "%1$s sine bokmerker" +msgid "(%s) : Not a real email address" +msgstr "" -#: ../../include/api.php:1336 -msgid "Public Timeline" -msgstr "Offentlig tidslinje" - -#: ../../include/bbcode.php:123 ../../include/bbcode.php:844 -#: ../../include/bbcode.php:847 ../../include/bbcode.php:852 -#: ../../include/bbcode.php:855 ../../include/bbcode.php:858 -#: ../../include/bbcode.php:861 ../../include/bbcode.php:866 -#: ../../include/bbcode.php:869 ../../include/bbcode.php:874 -#: ../../include/bbcode.php:877 ../../include/bbcode.php:880 -#: ../../include/bbcode.php:883 -msgid "Image/photo" -msgstr "Bilde/fotografi" +#: ../../Zotlabs/Module/Invite.php:145 +#, php-format +msgid "(%s) : Not allowed email address" +msgstr "" -#: ../../include/bbcode.php:162 ../../include/bbcode.php:894 -msgid "Encrypted content" -msgstr "Kryptert innhold" +#: ../../Zotlabs/Module/Invite.php:158 +#, php-format +msgid "(%s) : email address already in use" +msgstr "" -#: ../../include/bbcode.php:178 +#: ../../Zotlabs/Module/Invite.php:165 #, php-format -msgid "Install %s element: " -msgstr "Installer %s element:" +msgid "(%s) : Accepted email address" +msgstr "" -#: ../../include/bbcode.php:182 +#: ../../Zotlabs/Module/Invite.php:257 #, php-format -msgid "" -"This post contains an installable %s element, however you lack permissions " -"to install it on this site." -msgstr "Dette innlegget inneholder det installerbare elementet %s, men du mangler tillatelse til å installere det på dette nettstedet." +msgid "To %s : Message delivery success." +msgstr "" -#: ../../include/bbcode.php:254 +#: ../../Zotlabs/Module/Invite.php:289 #, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s skrev følgende %2$s %3$s" +msgid "%1$d mail(s) sent, %2$d mail error(s)" +msgstr "" -#: ../../include/bbcode.php:331 ../../include/bbcode.php:339 -msgid "Click to open/close" -msgstr "Klikk for å åpne/lukke" +#: ../../Zotlabs/Module/Invite.php:314 +msgid "Invites not proposed by configuration" +msgstr "" -#: ../../include/bbcode.php:339 -msgid "spoiler" +#: ../../Zotlabs/Module/Invite.php:315 +msgid "Contact the site admin" msgstr "" -#: ../../include/bbcode.php:585 -msgid "Different viewers will see this text differently" -msgstr "Denne teksten vil se forskjellig ut for ulike besøkende" +#: ../../Zotlabs/Module/Invite.php:331 +msgid "Invites by users not enabled" +msgstr "" -#: ../../include/bbcode.php:832 -msgid "$1 wrote:" -msgstr "$1 skrev:" +#: ../../Zotlabs/Module/Invite.php:336 +msgid "You have no more invitations available" +msgstr "Du har ikke flere invitasjoner tilgjengelig" -#: ../../include/dir_fns.php:141 -msgid "Directory Options" -msgstr "Kataloginnstillinger" +#: ../../Zotlabs/Module/Invite.php:352 +msgid "Not on xchan" +msgstr "" -#: ../../include/dir_fns.php:143 -msgid "Safe Mode" -msgstr "Trygt modus" +#: ../../Zotlabs/Module/Invite.php:385 +msgid "All users invitation limit exceeded." +msgstr "" -#: ../../include/dir_fns.php:144 -msgid "Public Forums Only" -msgstr "Bare offentlige forum" +#: ../../Zotlabs/Module/Invite.php:403 +msgid "Invitation expires after" +msgstr "" -#: ../../include/dir_fns.php:145 -msgid "This Website Only" -msgstr "Kun dette nettstedet" +#: ../../Zotlabs/Module/Invite.php:504 ../../Zotlabs/Module/Invite.php:543 +msgid "Invitation" +msgstr "" -#: ../../include/security.php:383 -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 "Skjemaets sikkerhetspollett var ikke gyldig. Dette skjedde antakelig fordi skjemaet har vært åpnet for lenge (>3 timer) før det ble sendt inn." +#: ../../Zotlabs/Module/Invite.php:534 +msgid "Send invitations" +msgstr "Send invitasjoner" -#: ../../include/nav.php:82 ../../include/nav.php:113 ../../boot.php:1702 -msgid "Logout" -msgstr "Logg ut" +#: ../../Zotlabs/Module/Invite.php:535 +msgid "Invitations I am using" +msgstr "" -#: ../../include/nav.php:82 ../../include/nav.php:113 -msgid "End this session" -msgstr "Avslutt denne økten" +#: ../../Zotlabs/Module/Invite.php:536 +msgid "Invitations we are using" +msgstr "" -#: ../../include/nav.php:85 ../../include/nav.php:144 -msgid "Home" -msgstr "Hjem" +#: ../../Zotlabs/Module/Invite.php:537 +msgid "§ Note, the email(s) sent will be recorded in the system logs" +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:538 +msgid "Enter email addresses, one per line:" +msgstr "Skriv e-postadresser, en per linje:" -#: ../../include/nav.php:85 -msgid "Your posts and conversations" -msgstr "Dine innlegg og samtaler" +#: ../../Zotlabs/Module/Invite.php:539 +msgid "Your message:" +msgstr "Din melding:" -#: ../../include/nav.php:86 -msgid "Your profile page" -msgstr "Din profilside" +#: ../../Zotlabs/Module/Invite.php:540 +msgid "Invite template" +msgstr "" -#: ../../include/nav.php:88 -msgid "Manage/Edit profiles" -msgstr "Håndter/endre profiler" +#: ../../Zotlabs/Module/Invite.php:542 +msgid "Subject:" +msgstr "Emne:" -#: ../../include/nav.php:90 ../../include/channel.php:941 -msgid "Edit Profile" -msgstr "Endre profil" +#: ../../Zotlabs/Module/Invite.php:548 +msgid "Here you may enter personal notes to the recipient(s)" +msgstr "" -#: ../../include/nav.php:90 -msgid "Edit your profile" -msgstr "Endre din profil" +#: ../../Zotlabs/Module/Sse_bs.php:588 +msgid "Private forum" +msgstr "" -#: ../../include/nav.php:92 -msgid "Your photos" -msgstr "Dine bilder" +#: ../../Zotlabs/Module/Sse_bs.php:588 +msgid "Public forum" +msgstr "" -#: ../../include/nav.php:93 -msgid "Your files" -msgstr "Dine filer" +#: ../../Zotlabs/Module/Xchan.php:10 +msgid "Xchan Lookup" +msgstr "Xchan oppslag" -#: ../../include/nav.php:96 -msgid "Your chatrooms" -msgstr "Dine chatterom" +#: ../../Zotlabs/Module/Xchan.php:13 +msgid "Lookup xchan beginning with (or webbie): " +msgstr "Slå opp xchan som begynner med (eller webbie):" -#: ../../include/nav.php:102 ../../include/conversation.php:1675 -msgid "Bookmarks" -msgstr "Bokmerker" +#: ../../Zotlabs/Module/Affinity.php:35 +msgid "Affinity Tool settings updated." +msgstr "" -#: ../../include/nav.php:102 -msgid "Your bookmarks" -msgstr "Dine bokmerker" +#: ../../Zotlabs/Module/Affinity.php:54 +msgid "" +"The numbers below represent the minimum and maximum slider default positions " +"for your network/stream page as a percentage." +msgstr "" -#: ../../include/nav.php:106 -msgid "Your webpages" -msgstr "Dine websider" +#: ../../Zotlabs/Module/Affinity.php:61 +msgid "Default maximum affinity level" +msgstr "" -#: ../../include/nav.php:110 -msgid "Sign in" -msgstr "Logg på" +#: ../../Zotlabs/Module/Affinity.php:61 +msgid "0-99 default 99" +msgstr "" -#: ../../include/nav.php:127 -#, php-format -msgid "%s - click to logout" -msgstr "%s - klikk for å logge ut" +#: ../../Zotlabs/Module/Affinity.php:67 +msgid "Default minimum affinity level" +msgstr "" -#: ../../include/nav.php:130 -msgid "Remote authentication" -msgstr "Fjernautentisering" +#: ../../Zotlabs/Module/Affinity.php:67 +msgid "0-99 - default 0" +msgstr "" + +#: ../../Zotlabs/Module/Affinity.php:73 +msgid "Persistent affinity levels" +msgstr "" + +#: ../../Zotlabs/Module/Affinity.php:73 +msgid "" +"If disabled the max and min levels will be reset to default after page reload" +msgstr "" + +#: ../../Zotlabs/Module/Affinity.php:81 +msgid "Affinity Tool Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Network.php:42 +#: ../../Zotlabs/Module/Settings/Channel_home.php:46 +msgid "Max height of content (in pixels)" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Network.php:44 +#: ../../Zotlabs/Module/Settings/Channel_home.php:48 +msgid "Click to expand content exceeding this height" +msgstr "" -#: ../../include/nav.php:130 -msgid "Click to authenticate to your home hub" -msgstr "Klikk for å godkjennes mot din hjemme-hub" +#: ../../Zotlabs/Module/Settings/Network.php:59 +msgid "Stream Settings" +msgstr "" -#: ../../include/nav.php:144 -msgid "Home Page" -msgstr "Hjemmeside" +#: ../../Zotlabs/Module/Settings/Features.php:45 +msgid "Additional Features" +msgstr "Ekstra funksjoner" -#: ../../include/nav.php:147 -msgid "Create an account" -msgstr "Lag en konto" +#: ../../Zotlabs/Module/Settings/Channel.php:105 +#: ../../Zotlabs/Module/Settings/Channel.php:216 +msgid "Please select a channel role" +msgstr "" -#: ../../include/nav.php:159 -msgid "Help and documentation" -msgstr "Hjelp og dokumentasjon" +#: ../../Zotlabs/Module/Settings/Channel.php:193 +msgid "Your channel address is" +msgstr "Din kanaladresse er" -#: ../../include/nav.php:163 -msgid "Applications, utilities, links, games" -msgstr "Programmer, verktøy, lenker, spill" +#: ../../Zotlabs/Module/Settings/Channel.php:196 +msgid "Your files/photos are accessible via WebDAV at" +msgstr "" -#: ../../include/nav.php:165 -msgid "Search site @name, #tag, ?docs, content" -msgstr "Søk nettstedet for @navn, #merkelapp, ?dokumentasjon, innhold" +#: ../../Zotlabs/Module/Settings/Channel.php:227 +msgid "Channel Settings" +msgstr "Kanalinnstillinger" -#: ../../include/nav.php:167 -msgid "Channel Directory" -msgstr "Kanalkatalog" +#: ../../Zotlabs/Module/Settings/Channel.php:234 +msgid "Basic Settings" +msgstr "Grunninnstillinger" -#: ../../include/nav.php:179 -msgid "Your grid" -msgstr "Ditt nett" +#: ../../Zotlabs/Module/Settings/Channel.php:235 +msgid "Channel timezone:" +msgstr "" -#: ../../include/nav.php:180 -msgid "Mark all grid notifications seen" -msgstr "Marker alle nettvarsler som sett" +#: ../../Zotlabs/Module/Settings/Channel.php:236 +msgid "Default post location:" +msgstr "" -#: ../../include/nav.php:182 -msgid "Channel home" -msgstr "Kanalhjem" +#: ../../Zotlabs/Module/Settings/Channel.php:236 +msgid "Geographical location to display on your posts" +msgstr "Geografisk plassering som vises på dine innlegg" -#: ../../include/nav.php:183 -msgid "Mark all channel notifications seen" -msgstr "Merk alle kanalvarsler som sett" +#: ../../Zotlabs/Module/Settings/Channel.php:237 +msgid "Use browser location" +msgstr "" -#: ../../include/nav.php:189 -msgid "Notices" -msgstr "Varsel" +#: ../../Zotlabs/Module/Settings/Channel.php:238 +msgid "Adult content" +msgstr "" -#: ../../include/nav.php:189 -msgid "Notifications" -msgstr "Varsler" +#: ../../Zotlabs/Module/Settings/Channel.php:238 +msgid "This channel frequently or regularly publishes adult content" +msgstr "" -#: ../../include/nav.php:190 -msgid "See all notifications" -msgstr "Se alle varsler" +#: ../../Zotlabs/Module/Settings/Channel.php:239 +msgid "Maximum Friend Requests/Day:" +msgstr "Maksimalt antall venneforespørsler per dag:" -#: ../../include/nav.php:193 -msgid "Private mail" -msgstr "Privat post" +#: ../../Zotlabs/Module/Settings/Channel.php:239 +msgid "May reduce spam activity" +msgstr "Kan redusere søppelpostaktivitet" -#: ../../include/nav.php:194 -msgid "See all private messages" -msgstr "Se alle private meldinger" +#: ../../Zotlabs/Module/Settings/Channel.php:240 +#: ../../Zotlabs/Lib/Enotify.php:68 +msgid "Notification Settings" +msgstr "Varslingsinnstillinger" -#: ../../include/nav.php:195 -msgid "Mark all private messages seen" -msgstr "Merk alle private meldinger som sett" +#: ../../Zotlabs/Module/Settings/Channel.php:241 +msgid "By default post a status message when:" +msgstr "Legg inn en statusmelding når du:" -#: ../../include/nav.php:201 -msgid "Event Calendar" -msgstr "Kalender" +#: ../../Zotlabs/Module/Settings/Channel.php:242 +msgid "accepting a friend request" +msgstr "aksepterer en venneforespørsel" -#: ../../include/nav.php:202 -msgid "See all events" -msgstr "Se alle hendelser" +#: ../../Zotlabs/Module/Settings/Channel.php:243 +msgid "joining a forum/community" +msgstr "blir med i et forum/miljø" -#: ../../include/nav.php:203 -msgid "Mark all events seen" -msgstr "Merk alle hendelser som sett" +#: ../../Zotlabs/Module/Settings/Channel.php:244 +msgid "making an interesting profile change" +msgstr "gjør en interessant profilendring" -#: ../../include/nav.php:206 -msgid "Manage Your Channels" -msgstr "Håndter dine kanaler" +#: ../../Zotlabs/Module/Settings/Channel.php:245 +msgid "Send a notification email when:" +msgstr "Send en varsel-e-post når:" -#: ../../include/nav.php:208 -msgid "Account/Channel Settings" -msgstr "Konto-/kanal-innstillinger" +#: ../../Zotlabs/Module/Settings/Channel.php:246 +msgid "You receive a connection request" +msgstr "Du har mottatt en forespørsel om forbindelse" -#: ../../include/nav.php:216 -msgid "Site Setup and Configuration" -msgstr "Nettstedsoppsett og -konfigurasjon" +#: ../../Zotlabs/Module/Settings/Channel.php:247 +msgid "Your connections are confirmed" +msgstr "Dine forbindelser er bekreftet" -#: ../../include/nav.php:247 ../../include/conversation.php:851 -msgid "Loading..." -msgstr "Laster..." +#: ../../Zotlabs/Module/Settings/Channel.php:248 +msgid "Someone writes on your profile wall" +msgstr "Noen skriver på din profilvegg" -#: ../../include/nav.php:252 -msgid "@name, #tag, ?doc, content" -msgstr "@navn, #merkelapp, ?dokumentasjon, innhold" +#: ../../Zotlabs/Module/Settings/Channel.php:249 +msgid "Someone writes a followup comment" +msgstr "Noen skriver en oppfølgende kommentar" -#: ../../include/nav.php:253 -msgid "Please wait..." -msgstr "Vennligst vent..." +#: ../../Zotlabs/Module/Settings/Channel.php:250 +msgid "You receive a private message" +msgstr "Du mottar en privat melding" -#: ../../include/connections.php:95 -msgid "New window" -msgstr "Nytt vindu" +#: ../../Zotlabs/Module/Settings/Channel.php:251 +msgid "You receive a friend suggestion" +msgstr "Du mottok et venneforslag" -#: ../../include/connections.php:96 -msgid "Open the selected location in a different window or browser tab" -msgstr "Åpne det valgte stedet i et annet vindu eller nettleser-fane" +#: ../../Zotlabs/Module/Settings/Channel.php:252 +msgid "You are tagged in a post" +msgstr "Du merkes i et innlegg" -#: ../../include/connections.php:214 -#, php-format -msgid "User '%s' deleted" -msgstr "Brukeren '%s' er slettet" +#: ../../Zotlabs/Module/Settings/Channel.php:253 +msgid "You are poked/prodded/etc. in a post" +msgstr "Du ble prikket/oppildnet/og så vider i et innlegg" -#: ../../include/contact_widgets.php:11 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d invitasjon tilgjengelig" -msgstr[1] "%d invitasjoner tilgjengelig" +#: ../../Zotlabs/Module/Settings/Channel.php:254 +msgid "Someone likes your post/comment" +msgstr "" -#: ../../include/contact_widgets.php:19 -msgid "Find Channels" -msgstr "Finn kanaler" +#: ../../Zotlabs/Module/Settings/Channel.php:255 +msgid "Show visual notifications including:" +msgstr "Vis visuelle varslinger om:" -#: ../../include/contact_widgets.php:20 -msgid "Enter name or interest" -msgstr "Skriv navn eller interesse" +#: ../../Zotlabs/Module/Settings/Channel.php:256 +msgid "Unseen stream activity" +msgstr "" -#: ../../include/contact_widgets.php:21 -msgid "Connect/Follow" -msgstr "Forbindelse/Følg" +#: ../../Zotlabs/Module/Settings/Channel.php:257 +msgid "Unseen channel activity" +msgstr "Usett kanalaktivitet" -#: ../../include/contact_widgets.php:22 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Eksempler: Ola Nordmann, fisking" +#: ../../Zotlabs/Module/Settings/Channel.php:258 +msgid "Unseen private messages" +msgstr "Usette private meldinger" -#: ../../include/contact_widgets.php:26 -msgid "Random Profile" -msgstr "Tilfeldig profil" +#: ../../Zotlabs/Module/Settings/Channel.php:258 +#: ../../Zotlabs/Module/Settings/Channel.php:263 +#: ../../Zotlabs/Module/Settings/Channel.php:264 +#: ../../Zotlabs/Module/Settings/Channel.php:265 +msgid "Recommended" +msgstr "Anbefalt" -#: ../../include/contact_widgets.php:27 -msgid "Invite Friends" -msgstr "Inviter venner" +#: ../../Zotlabs/Module/Settings/Channel.php:259 +msgid "Upcoming events" +msgstr "Kommende hendelser" -#: ../../include/contact_widgets.php:29 -msgid "Advanced example: name=fred and country=iceland" -msgstr "Avansert eksempel: navn=fred og land=island" +#: ../../Zotlabs/Module/Settings/Channel.php:260 +msgid "Events today" +msgstr "Hendelser idag" -#: ../../include/contact_widgets.php:122 -#, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "%d forbindelse felles" -msgstr[1] "%d forbindelser felles" +#: ../../Zotlabs/Module/Settings/Channel.php:261 +msgid "Upcoming birthdays" +msgstr "Kommende fødselsdager" + +#: ../../Zotlabs/Module/Settings/Channel.php:261 +msgid "Not available in all themes" +msgstr "Ikke tilgjengelig i alle temaer" -#: ../../include/contact_widgets.php:127 -msgid "show more" -msgstr "vis mer" +#: ../../Zotlabs/Module/Settings/Channel.php:262 +msgid "System (personal) notifications" +msgstr "System (personlige) varslinger" -#: ../../include/conversation.php:204 -#, php-format -msgid "%1$s is now connected with %2$s" -msgstr "%1$s er nå forbundet med %2$s" +#: ../../Zotlabs/Module/Settings/Channel.php:263 +msgid "System info messages" +msgstr "System infomeldinger" -#: ../../include/conversation.php:239 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s prikket %2$s" +#: ../../Zotlabs/Module/Settings/Channel.php:264 +msgid "System critical alerts" +msgstr "System kritiske varsel" -#: ../../include/conversation.php:691 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Vis %s sin profile @ %s" +#: ../../Zotlabs/Module/Settings/Channel.php:265 +msgid "New connections" +msgstr "Nye forbindelser" -#: ../../include/conversation.php:710 -msgid "Categories:" -msgstr "Kategorier:" +#: ../../Zotlabs/Module/Settings/Channel.php:266 +msgid "System Registrations" +msgstr "Systemregistreringer" -#: ../../include/conversation.php:711 -msgid "Filed under:" -msgstr "Sortert under:" +#: ../../Zotlabs/Module/Settings/Channel.php:267 +msgid "Unseen shared files" +msgstr "" -#: ../../include/conversation.php:738 -msgid "View in context" -msgstr "Vis i sammenheng" +#: ../../Zotlabs/Module/Settings/Channel.php:268 +msgid "Unseen public stream activity" +msgstr "" -#: ../../include/conversation.php:847 -msgid "remove" -msgstr "fjern" +#: ../../Zotlabs/Module/Settings/Channel.php:269 +msgid "Unseen likes and dislikes" +msgstr "" -#: ../../include/conversation.php:852 -msgid "Delete Selected Items" -msgstr "Slett valgte elementer" +#: ../../Zotlabs/Module/Settings/Channel.php:270 +msgid "Unseen forum posts" +msgstr "" -#: ../../include/conversation.php:948 -msgid "View Source" -msgstr "Vis kilde" +#: ../../Zotlabs/Module/Settings/Channel.php:271 +msgid "Email notification hub (hostname)" +msgstr "" -#: ../../include/conversation.php:949 -msgid "Follow Thread" -msgstr "Følg tråd" +#: ../../Zotlabs/Module/Settings/Channel.php:271 +#, php-format +msgid "" +"If your channel is mirrored to multiple hubs, set this to your preferred " +"location. This will prevent duplicate email notifications. Example: %s" +msgstr "" -#: ../../include/conversation.php:950 -msgid "Unfollow Thread" -msgstr "Ikke følg tråd" +#: ../../Zotlabs/Module/Settings/Channel.php:272 +msgid "Show new wall posts, private messages and connections under Notices" +msgstr "" -#: ../../include/conversation.php:955 -msgid "Activity/Posts" -msgstr "Aktivitet/Innlegg" +#: ../../Zotlabs/Module/Settings/Channel.php:273 +msgid "Mark all notices of the thread read if a notice is clicked" +msgstr "" -#: ../../include/conversation.php:957 -msgid "Edit Connection" -msgstr "Endre forbindelse" +#: ../../Zotlabs/Module/Settings/Channel.php:273 +msgid "If no, only the clicked notice will be marked read" +msgstr "" -#: ../../include/conversation.php:958 -msgid "Message" -msgstr "Melding" +#: ../../Zotlabs/Module/Settings/Channel.php:274 +msgid "" +"Desktop notifications are unavailable because the required browser " +"permission has not been granted" +msgstr "" -#: ../../include/conversation.php:1075 -#, php-format -msgid "%s likes this." -msgstr "%s liker dette." +#: ../../Zotlabs/Module/Settings/Channel.php:275 +msgid "Grant permission" +msgstr "" -#: ../../include/conversation.php:1075 -#, php-format -msgid "%s doesn't like this." -msgstr "%s liker ikke dette." +#: ../../Zotlabs/Module/Settings/Channel.php:276 +msgid "Notify me of events this many days in advance" +msgstr "Varsle meg om hendelser dette antall dager på forhånd" -#: ../../include/conversation.php:1079 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "%2$d person liker dette." -msgstr[1] "%2$d personer liker dette." +#: ../../Zotlabs/Module/Settings/Channel.php:276 +msgid "Must be greater than 0" +msgstr "Må være større enn 0" -#: ../../include/conversation.php:1081 -#, php-format -msgid "%2$d people don't like this." -msgid_plural "%2$d people don't like this." -msgstr[0] "%2$d person liker ikke dette." -msgstr[1] "%2$d personer liker ikke dette." +#: ../../Zotlabs/Module/Settings/Channel.php:279 +msgid "Default photo upload folder" +msgstr "Standard mappe for opplasting av bilder" -#: ../../include/conversation.php:1087 -msgid "and" -msgstr "og" +#: ../../Zotlabs/Module/Settings/Channel.php:279 +#: ../../Zotlabs/Module/Settings/Channel.php:280 +msgid "%Y - current year, %m - current month" +msgstr "%Y - nåværende år, %m - nåværende måned" -#: ../../include/conversation.php:1090 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] ", og %d annen person" -msgstr[1] ", og %d andre personer" +#: ../../Zotlabs/Module/Settings/Channel.php:280 +msgid "Default file upload folder" +msgstr "Standard mappe for opplasting av filer" -#: ../../include/conversation.php:1091 -#, php-format -msgid "%s like this." -msgstr "%s liker dette." +#: ../../Zotlabs/Module/Settings/Channel.php:282 +msgid "Remove this channel." +msgstr "Fjern denne kanalen." -#: ../../include/conversation.php:1091 -#, php-format -msgid "%s don't like this." -msgstr "%s liker ikke dette." +#: ../../Zotlabs/Module/Settings/Channel.php:283 +msgid "Expire other channel content after this many days" +msgstr "Annet kanal innhold utløper etter så mange dager" -#: ../../include/conversation.php:1130 -msgid "Set your location" -msgstr "Angi din plassering" +#: ../../Zotlabs/Module/Settings/Channel.php:283 +msgid "0 or blank to use the website limit." +msgstr "" -#: ../../include/conversation.php:1131 -msgid "Clear browser location" -msgstr "Fjern nettleserplassering" +#: ../../Zotlabs/Module/Settings/Channel.php:283 +#, php-format +msgid "This website expires after %d days." +msgstr "" -#: ../../include/conversation.php:1177 -msgid "Tag term:" -msgstr "Merkelapp:" +#: ../../Zotlabs/Module/Settings/Channel.php:283 +msgid "This website does not expire imported content." +msgstr "" -#: ../../include/conversation.php:1178 -msgid "Where are you right now?" -msgstr "Hvor er du akkurat nå?" +#: ../../Zotlabs/Module/Settings/Channel.php:283 +msgid "The website limit takes precedence if lower than your limit." +msgstr "" -#: ../../include/conversation.php:1210 -msgid "Page link name" -msgstr "Sidens lenkenavn" +#: ../../Zotlabs/Module/Settings/Channel.php:284 +#: ../../Zotlabs/Module/Settings/Channel.php:285 +msgid "" +"Words one per line or #tags, $categories, /patterns/, lang=xx, lang!=xx - " +"leave blank to import all posts" +msgstr "" -#: ../../include/conversation.php:1213 -msgid "Post as" -msgstr "Lag innlegg som" +#: ../../Zotlabs/Module/Settings/Account.php:21 +msgid "Not valid email." +msgstr "Ikke gyldig e-post." -#: ../../include/conversation.php:1223 -msgid "Toggle voting" -msgstr "Skru av eller på stemming" +#: ../../Zotlabs/Module/Settings/Account.php:24 +msgid "Protected email address. Cannot change to that email." +msgstr "Beskyttet e-postadresse. Kan ikke endre til den e-postadressen." -#: ../../include/conversation.php:1231 -msgid "Categories (optional, comma-separated list)" -msgstr "Kategorier (valgfri, kommaseparert liste)" +#: ../../Zotlabs/Module/Settings/Account.php:33 +msgid "System failure storing new email. Please try again." +msgstr "Systemfeil ved lagring av ny e-post. Vennligst prøv igjen." -#: ../../include/conversation.php:1254 -msgid "Set publish date" -msgstr "Angi publiseringsdato" +#: ../../Zotlabs/Module/Settings/Account.php:51 +msgid "Password verification failed." +msgstr "Passordbekreftelsen mislyktes." -#: ../../include/conversation.php:1258 -msgid "OK" -msgstr "OK" +#: ../../Zotlabs/Module/Settings/Account.php:58 +msgid "Passwords do not match. Password unchanged." +msgstr "Passordene stemmer ikke overens. Passord uforandret." -#: ../../include/conversation.php:1503 -msgid "Discover" -msgstr "Oppdage" +#: ../../Zotlabs/Module/Settings/Account.php:62 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Tomme passord er ikke tillatt. Passord uforandret." -#: ../../include/conversation.php:1506 -msgid "Imported public streams" -msgstr "Importerte offentlige strømmer" +#: ../../Zotlabs/Module/Settings/Account.php:76 +msgid "Password changed." +msgstr "Passord endret." -#: ../../include/conversation.php:1511 -msgid "Commented Order" -msgstr "Kommentert" +#: ../../Zotlabs/Module/Settings/Account.php:78 +msgid "Password update failed. Please try again." +msgstr "Passord oppdatering mislyktes. Vennligst prøv igjen." -#: ../../include/conversation.php:1514 -msgid "Sort by Comment Date" -msgstr "Sorter etter kommentert dato" +#: ../../Zotlabs/Module/Settings/Account.php:103 +msgid "Account Settings" +msgstr "Kontoinnstillinger" -#: ../../include/conversation.php:1518 -msgid "Posted Order" -msgstr "Lagt inn" +#: ../../Zotlabs/Module/Settings/Account.php:104 +msgid "Current Password" +msgstr "Nåværende passord" -#: ../../include/conversation.php:1521 -msgid "Sort by Post Date" -msgstr "Sorter etter innleggsdato" +#: ../../Zotlabs/Module/Settings/Account.php:105 +msgid "Enter New Password" +msgstr "Skriv nytt passord" -#: ../../include/conversation.php:1529 -msgid "Posts that mention or involve you" -msgstr "Innlegg som nevner eller involverer deg" +#: ../../Zotlabs/Module/Settings/Account.php:106 +msgid "Confirm New Password" +msgstr "Bekreft nytt passord" -#: ../../include/conversation.php:1538 -msgid "Activity Stream - by date" -msgstr "Aktivitetsstrøm - etter dato" +#: ../../Zotlabs/Module/Settings/Account.php:106 +msgid "Leave password fields blank unless changing" +msgstr "La passordfeltene stå blanke om det ikke skal endres" -#: ../../include/conversation.php:1544 -msgid "Starred" -msgstr "Stjerne" +#: ../../Zotlabs/Module/Settings/Account.php:108 +msgid "DId2 or Email Address:" +msgstr "" -#: ../../include/conversation.php:1547 -msgid "Favourite Posts" -msgstr "Favorittinnlegg" +#: ../../Zotlabs/Module/Settings/Account.php:110 +msgid "Remove this account including all its channels" +msgstr "Slett denne kontoen inkludert alle dens kanaler" -#: ../../include/conversation.php:1554 -msgid "Spam" -msgstr "Søppel" +#: ../../Zotlabs/Module/Settings/Featured.php:25 +msgid "No feature settings configured" +msgstr "Ingen funksjonsinnstillinger er konfigurert" -#: ../../include/conversation.php:1557 -msgid "Posts flagged as SPAM" -msgstr "Innlegg merket som SØPPEL" +#: ../../Zotlabs/Module/Settings/Featured.php:34 +msgid "Addon Settings" +msgstr "" -#: ../../include/conversation.php:1614 -msgid "Status Messages and Posts" -msgstr "Statusmeldinger og -innlegg" +#: ../../Zotlabs/Module/Settings/Featured.php:35 +msgid "Please save/submit changes to any panel before opening another." +msgstr "" -#: ../../include/conversation.php:1623 -msgid "About" -msgstr "Om" +#: ../../Zotlabs/Module/Settings/Events.php:40 +msgid "Events Settings" +msgstr "" -#: ../../include/conversation.php:1626 -msgid "Profile Details" -msgstr "Profildetaljer" +#: ../../Zotlabs/Module/Settings/Manage.php:41 +msgid "Channel Manager Settings" +msgstr "" -#: ../../include/conversation.php:1635 ../../include/photos.php:502 -msgid "Photo Albums" -msgstr "Fotoalbum" +#: ../../Zotlabs/Module/Settings/Channel_home.php:61 +msgid "Personal menu to display in your channel pages" +msgstr "Personlig meny som kan vises på dine kanalsider" -#: ../../include/conversation.php:1642 -msgid "Files and Storage" -msgstr "Filer og lagring" +#: ../../Zotlabs/Module/Settings/Channel_home.php:88 +msgid "Channel Home Settings" +msgstr "" -#: ../../include/conversation.php:1678 -msgid "Saved Bookmarks" -msgstr "Lagrede bokmerker" +#: ../../Zotlabs/Module/Settings/Calendar.php:40 +msgid "Calendar Settings" +msgstr "" -#: ../../include/conversation.php:1688 -msgid "Manage Webpages" -msgstr "Håndtere websider" +#: ../../Zotlabs/Module/Settings/Display.php:125 +#, php-format +msgid "%s - (Experimental)" +msgstr "%s - (Eksperimentelt)" -#: ../../include/conversation.php:1747 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "Deltar" -msgstr[1] "Deltar" +#: ../../Zotlabs/Module/Settings/Display.php:181 +msgid "Display Settings" +msgstr "Visningsinnstillinger" -#: ../../include/conversation.php:1750 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "Deltar ikke" -msgstr[1] "Deltar ikke" +#: ../../Zotlabs/Module/Settings/Display.php:182 +msgid "Theme Settings" +msgstr "Temainnstillinger" -#: ../../include/conversation.php:1753 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "Ikke bestemt" -msgstr[1] "Ikke bestemt" +#: ../../Zotlabs/Module/Settings/Display.php:183 +msgid "Custom Theme Settings" +msgstr "Tilpassede temainnstillinger" -#: ../../include/conversation.php:1756 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "Enig" -msgstr[1] "Enige" +#: ../../Zotlabs/Module/Settings/Display.php:184 +msgid "Content Settings" +msgstr "Innholdsinnstillinger" -#: ../../include/conversation.php:1759 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "Uenig" -msgstr[1] "Uenige" +#: ../../Zotlabs/Module/Settings/Display.php:190 +msgid "Display Theme:" +msgstr "Visningstema:" -#: ../../include/conversation.php:1762 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "Avstår" -msgstr[1] "Avstår" +#: ../../Zotlabs/Module/Settings/Display.php:191 +msgid "Select scheme" +msgstr "Velg skjema" -#: ../../include/selectors.php:30 -msgid "Frequently" -msgstr "Ofte" +#: ../../Zotlabs/Module/Settings/Display.php:193 +msgid "Preload images before rendering the page" +msgstr "Last inn bildene før gjengivelsen av siden" -#: ../../include/selectors.php:31 -msgid "Hourly" -msgstr "Hver time" +#: ../../Zotlabs/Module/Settings/Display.php:193 +msgid "" +"The subjective page load time will be longer but the page will be ready when " +"displayed" +msgstr "" +"Den personlige opplevelsen av lastetiden vil være lenger, men siden vil være" +" klar når den vises" -#: ../../include/selectors.php:32 -msgid "Twice daily" -msgstr "To ganger daglig" +#: ../../Zotlabs/Module/Settings/Display.php:194 +msgid "Enable user zoom on mobile devices" +msgstr "Skru på brukerstyrt zoom på mobile enheter" -#: ../../include/selectors.php:33 -msgid "Daily" -msgstr "Daglig" +#: ../../Zotlabs/Module/Settings/Display.php:195 +msgid "Update browser every xx seconds" +msgstr "Oppdater nettleser hvert xx sekunder" -#: ../../include/selectors.php:34 -msgid "Weekly" -msgstr "Ukentlig" +#: ../../Zotlabs/Module/Settings/Display.php:195 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Minimum 10 sekunder, ikke noe maksimum" -#: ../../include/selectors.php:35 -msgid "Monthly" -msgstr "Månedlig" +#: ../../Zotlabs/Module/Settings/Display.php:196 +msgid "Maximum number of conversations to load at any time:" +msgstr "Maksimalt antall samtaler å laste samtidig:" -#: ../../include/selectors.php:49 -msgid "Currently Male" -msgstr "For tiden mann" +#: ../../Zotlabs/Module/Settings/Display.php:196 +msgid "Maximum of 30 items" +msgstr "" -#: ../../include/selectors.php:49 -msgid "Currently Female" -msgstr "For tiden kvinne" +#: ../../Zotlabs/Module/Settings/Display.php:197 +msgid "Show emoticons (smilies) as images" +msgstr "Vis emoticons (smilefjes) som bilder" -#: ../../include/selectors.php:49 -msgid "Mostly Male" -msgstr "For det meste mann" +#: ../../Zotlabs/Module/Settings/Display.php:198 +msgid "Link post titles to source" +msgstr "Lenk innleggets tittel til kilden" -#: ../../include/selectors.php:49 -msgid "Mostly Female" -msgstr "For det meste kvinne" +#: ../../Zotlabs/Module/Settings/Display.php:200 +msgid "Display new member quick links menu" +msgstr "" -#: ../../include/selectors.php:49 -msgid "Transgender" -msgstr "Transkjønnet" +#: ../../Zotlabs/Module/Settings/Directory.php:40 +msgid "Directory Settings" +msgstr "" -#: ../../include/selectors.php:49 -msgid "Intersex" -msgstr "interkjønnet" +#: ../../Zotlabs/Module/Settings/Editor.php:40 +msgid "Editor Settings" +msgstr "" -#: ../../include/selectors.php:49 -msgid "Transsexual" -msgstr "Transseksuell" +#: ../../Zotlabs/Module/Settings/Connections.php:40 +msgid "Connections Settings" +msgstr "" -#: ../../include/selectors.php:49 -msgid "Hermaphrodite" -msgstr "Hermafroditt" +#: ../../Zotlabs/Module/Settings/Photos.php:40 +msgid "Photos Settings" +msgstr "" -#: ../../include/selectors.php:49 -msgid "Neuter" -msgstr "Intetkjønn" +#: ../../Zotlabs/Module/Settings/Profiles.php:41 +msgid "Default profile for new contacts" +msgstr "" -#: ../../include/selectors.php:49 -msgid "Non-specific" -msgstr "Ubestemt" +#: ../../Zotlabs/Module/Settings/Profiles.php:49 +msgid "Profiles Settings" +msgstr "" -#: ../../include/selectors.php:49 ../../include/selectors.php:66 -#: ../../include/selectors.php:104 ../../include/selectors.php:140 -#: ../../include/permissions.php:881 -msgid "Other" -msgstr "Annen" +#: ../../Zotlabs/Module/Settings/Privacy.php:39 +msgid "Privacy settings updated." +msgstr "" -#: ../../include/selectors.php:49 -msgid "Undecided" -msgstr "Ubestemt" +#: ../../Zotlabs/Module/Settings/Privacy.php:57 +msgid "Only those you specifically allow" +msgstr "Bare de du spesifikt tillater" -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Males" -msgstr "Menn" +#: ../../Zotlabs/Module/Settings/Privacy.php:58 +msgid "Approved connections" +msgstr "Godkjente forbindelser" -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Females" -msgstr "Kvinner" +#: ../../Zotlabs/Module/Settings/Privacy.php:59 +msgid "Any connections" +msgstr "Enhver forbindelse" -#: ../../include/selectors.php:85 -msgid "Gay" -msgstr "Homo" +#: ../../Zotlabs/Module/Settings/Privacy.php:60 +msgid "Anybody on this website" +msgstr "Enhver ved dette nettstedet" -#: ../../include/selectors.php:85 -msgid "Lesbian" -msgstr "Lesbisk" +#: ../../Zotlabs/Module/Settings/Privacy.php:61 +msgid "Anybody in this network" +msgstr "Enhver i dette nettverket" -#: ../../include/selectors.php:85 -msgid "No Preference" -msgstr "Ingen preferanse" +#: ../../Zotlabs/Module/Settings/Privacy.php:62 +msgid "Anybody authenticated" +msgstr "Enhver som er autentisert" -#: ../../include/selectors.php:85 -msgid "Bisexual" -msgstr "Biseksuell" +#: ../../Zotlabs/Module/Settings/Privacy.php:63 +msgid "Anybody on the internet" +msgstr "Enhver på Internett" -#: ../../include/selectors.php:85 -msgid "Autosexual" -msgstr "Autoseksuell" +#: ../../Zotlabs/Module/Settings/Privacy.php:73 +msgid "" +"Advise: set to \"Anybody on the internet\" and use privacy groups to " +"restrict access" +msgstr "" -#: ../../include/selectors.php:85 -msgid "Abstinent" -msgstr "Avholdende" +#: ../../Zotlabs/Module/Settings/Privacy.php:109 +msgid "Privacy Settings" +msgstr "" -#: ../../include/selectors.php:85 -msgid "Virgin" -msgstr "Jomfru" +#: ../../Zotlabs/Module/Settings/Privacy.php:114 +msgid "Advanced configuration" +msgstr "" -#: ../../include/selectors.php:85 -msgid "Deviant" -msgstr "Avviker" +#: ../../Zotlabs/Module/Settings/Privacy.php:116 +msgid "Proceed with caution" +msgstr "" -#: ../../include/selectors.php:85 -msgid "Fetish" -msgstr "Fetisj" +#: ../../Zotlabs/Module/Settings/Privacy.php:117 +msgid "" +"Changing advanced configuration settings can impact your, and your contacts " +"channels functionality and security." +msgstr "" -#: ../../include/selectors.php:85 -msgid "Oodles" -msgstr "Masse" +#: ../../Zotlabs/Module/Settings/Privacy.php:118 +msgid "Accept the risk and continue" +msgstr "" -#: ../../include/selectors.php:85 -msgid "Nonsexual" -msgstr "Ikke-seksuell" +#: ../../Zotlabs/Module/Settings/Privacy.php:120 +msgid "Automatically approve new contacts" +msgstr "" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Single" -msgstr "Enslig" +#: ../../Zotlabs/Module/Settings/Privacy.php:121 +msgid "Opt-out of search engine indexing" +msgstr "" -#: ../../include/selectors.php:123 -msgid "Lonely" -msgstr "Ensom" +#: ../../Zotlabs/Module/Settings/Privacy.php:122 +msgid "Group actor" +msgstr "" -#: ../../include/selectors.php:123 -msgid "Available" -msgstr "Tilgjengelig" +#: ../../Zotlabs/Module/Settings/Privacy.php:122 +msgid "Allow this channel to act as a forum" +msgstr "" -#: ../../include/selectors.php:123 -msgid "Unavailable" -msgstr "Ikke tilgjengelig" +#: ../../Zotlabs/Module/Settings/Conversation.php:23 +msgid "Settings saved." +msgstr "" -#: ../../include/selectors.php:123 -msgid "Has crush" -msgstr "Er forelsket" +#: ../../Zotlabs/Module/Settings/Conversation.php:25 +msgid "Settings saved. Reload page please." +msgstr "" -#: ../../include/selectors.php:123 -msgid "Infatuated" -msgstr "Betatt" +#: ../../Zotlabs/Module/Settings/Conversation.php:47 +msgid "Conversation Settings" +msgstr "" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Dating" -msgstr "Sammen med" +#: ../../Zotlabs/Module/Menu.php:68 +msgid "Unable to update menu." +msgstr "Ikke i stand til å oppdatere meny." -#: ../../include/selectors.php:123 -msgid "Unfaithful" -msgstr "Utro" +#: ../../Zotlabs/Module/Menu.php:79 +msgid "Unable to create menu." +msgstr "Ikke i stand til å lage meny." -#: ../../include/selectors.php:123 -msgid "Sex Addict" -msgstr "Sexavhengig" +#: ../../Zotlabs/Module/Menu.php:161 ../../Zotlabs/Module/Menu.php:174 +msgid "Menu Name" +msgstr "Menynavn" -#: ../../include/selectors.php:123 -msgid "Friends/Benefits" -msgstr "Venner med frynsegoder" +#: ../../Zotlabs/Module/Menu.php:161 +msgid "Unique name (not visible on webpage) - required" +msgstr "Unikt navn (ikke synlig på websiden) - påkrevet" + +#: ../../Zotlabs/Module/Menu.php:162 ../../Zotlabs/Module/Menu.php:175 +msgid "Menu Title" +msgstr "Menytittel" -#: ../../include/selectors.php:123 -msgid "Casual" -msgstr "Tilfeldig" +#: ../../Zotlabs/Module/Menu.php:162 +msgid "Visible on webpage - leave empty for no title" +msgstr "Synlig på websiden - la stå tomt for ingen tittel" -#: ../../include/selectors.php:123 -msgid "Engaged" -msgstr "Forlovet" +#: ../../Zotlabs/Module/Menu.php:163 +msgid "Allow Bookmarks" +msgstr "Tillat bokmerker" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Married" -msgstr "Gift" +#: ../../Zotlabs/Module/Menu.php:163 ../../Zotlabs/Module/Menu.php:222 +msgid "Menu may be used to store saved bookmarks" +msgstr "Menyen kan brukes til å lagre lagrede bokmerker" -#: ../../include/selectors.php:123 -msgid "Imaginarily married" -msgstr "Gift i fantasien" +#: ../../Zotlabs/Module/Menu.php:164 ../../Zotlabs/Module/Menu.php:225 +msgid "Submit and proceed" +msgstr "Send inn og fortsett" -#: ../../include/selectors.php:123 -msgid "Partners" -msgstr "Partnere" +#: ../../Zotlabs/Module/Menu.php:177 ../../Zotlabs/Module/Locs.php:124 +msgid "Drop" +msgstr "Slett" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Cohabiting" -msgstr "Samboer" +#: ../../Zotlabs/Module/Menu.php:181 +msgid "Bookmarks allowed" +msgstr "Bokmerker tillatt" -#: ../../include/selectors.php:123 -msgid "Common law" -msgstr "Samboer" +#: ../../Zotlabs/Module/Menu.php:183 +msgid "Delete this menu" +msgstr "Slett denne menyen" -#: ../../include/selectors.php:123 -msgid "Happy" -msgstr "Lykkelig" +#: ../../Zotlabs/Module/Menu.php:184 ../../Zotlabs/Module/Menu.php:219 +msgid "Edit menu contents" +msgstr "Endre menyinnholdet" -#: ../../include/selectors.php:123 -msgid "Not looking" -msgstr "Ikke på utkikk" +#: ../../Zotlabs/Module/Menu.php:185 +msgid "Edit this menu" +msgstr "Endre denne menyen" -#: ../../include/selectors.php:123 -msgid "Swinger" -msgstr "Partnerbytte" +#: ../../Zotlabs/Module/Menu.php:201 +msgid "Menu could not be deleted." +msgstr "Menyen kunne ikke bli slettet." -#: ../../include/selectors.php:123 -msgid "Betrayed" -msgstr "Bedratt" +#: ../../Zotlabs/Module/Menu.php:214 +msgid "Edit Menu" +msgstr "Endre meny" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Separated" -msgstr "Separert" +#: ../../Zotlabs/Module/Menu.php:218 +msgid "Add or remove entries to this menu" +msgstr "Legg til eller fjern punkter i denne menyen" -#: ../../include/selectors.php:123 -msgid "Unstable" -msgstr "Ustabilt" +#: ../../Zotlabs/Module/Menu.php:220 +msgid "Menu name" +msgstr "Menynavn" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Divorced" -msgstr "Skilt" +#: ../../Zotlabs/Module/Menu.php:220 +msgid "Must be unique, only seen by you" +msgstr "Må være unik, ses bare av deg" -#: ../../include/selectors.php:123 -msgid "Imaginarily divorced" -msgstr "Skilt i fantasien" +#: ../../Zotlabs/Module/Menu.php:221 +msgid "Menu title" +msgstr "Menytittel" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Widowed" -msgstr "Enke" +#: ../../Zotlabs/Module/Menu.php:221 +msgid "Menu title as seen by others" +msgstr "Menytittelen andre ser" -#: ../../include/selectors.php:123 -msgid "Uncertain" -msgstr "Usikkert" +#: ../../Zotlabs/Module/Menu.php:222 +msgid "Allow bookmarks" +msgstr "Tillat bokmerker" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "It's complicated" -msgstr "Det er komplisert" +#: ../../Zotlabs/Module/Defperms.php:252 +msgid "Connection Default Permissions" +msgstr "Forbindelsens standard tillatelser" -#: ../../include/selectors.php:123 -msgid "Don't care" -msgstr "Bryr meg ikke" +#: ../../Zotlabs/Module/Defperms.php:253 +msgid "Apply these permissions automatically" +msgstr "Bruk disse tillatelsene automatisk" -#: ../../include/selectors.php:123 -msgid "Ask me" -msgstr "Spør meg" +#: ../../Zotlabs/Module/Defperms.php:253 +msgid "" +"If enabled, connection requests will be approved without your interaction" +msgstr "" -#: ../../include/PermissionDescription.php:31 -#: ../../include/acl_selectors.php:232 -msgid "Visible to your default audience" -msgstr "Synlig for ditt standard publikum" +#: ../../Zotlabs/Module/Defperms.php:254 +msgid "Permission role" +msgstr "" -#: ../../include/PermissionDescription.php:115 -#: ../../include/acl_selectors.php:268 -msgid "Only me" +#: ../../Zotlabs/Module/Defperms.php:255 +msgid "Add permission role" msgstr "" -#: ../../include/PermissionDescription.php:116 -msgid "Public" -msgstr "Offentlig" +#: ../../Zotlabs/Module/Defperms.php:259 ../../Zotlabs/Module/Connedit.php:700 +msgid "" +"The permissions indicated on this page will be applied to all new " +"connections." +msgstr "" +"Tillatelsene angitt på denne siden gjøres gjeldende for alle nye forbindelser." -#: ../../include/PermissionDescription.php:117 -msgid "Anybody in the $Projectname network" +#: ../../Zotlabs/Module/Defperms.php:260 +msgid "Automatic approval settings" msgstr "" -#: ../../include/PermissionDescription.php:118 -#, php-format -msgid "Any account on %s" +#: ../../Zotlabs/Module/Defperms.php:264 +msgid "My Settings" +msgstr "Mine innstillinger" + +#: ../../Zotlabs/Module/Defperms.php:267 ../../Zotlabs/Module/Connedit.php:720 +msgid "Individual Permissions" +msgstr "Individuelle tillatelser" + +#: ../../Zotlabs/Module/Defperms.php:268 +msgid "" +"Some individual permissions may have been preset or locked based on your " +"channel type and privacy settings." msgstr "" -#: ../../include/PermissionDescription.php:119 -msgid "Any of my connections" +#: ../../Zotlabs/Module/Pconfig.php:32 ../../Zotlabs/Module/Pconfig.php:68 +msgid "This setting requires special processing and editing has been blocked." msgstr "" +"Denne innstillingen krever spesiell behandling og redigering har blitt" +" blokkert." -#: ../../include/PermissionDescription.php:120 -msgid "Only connections I specifically allow" +#: ../../Zotlabs/Module/Pconfig.php:57 +msgid "Configuration Editor" +msgstr "Konfigurasjonsbehandler" + +#: ../../Zotlabs/Module/Pconfig.php:58 +msgid "" +"Warning: Changing some settings could render your channel inoperable. Please " +"leave this page unless you are comfortable with and knowledgeable about how " +"to correctly use this feature." msgstr "" +"Advarsel: kanalen din kan slutte å virke ved endring av enkelte" +" innstillinger. Vennligst forlat denne siden med mindre du er komfortabel med" +" dette og vet hvordan du bruker denne funksjonen riktig." -#: ../../include/PermissionDescription.php:121 -msgid "Anybody authenticated (could include visitors from other networks)" +#: ../../Zotlabs/Module/Oauth2.php:54 +msgid "Name and Secret are required" msgstr "" -#: ../../include/PermissionDescription.php:122 -msgid "Any connections including those who haven't yet been approved" +#: ../../Zotlabs/Module/Oauth2.php:113 +msgid "Add OAuth2 application" msgstr "" -#: ../../include/PermissionDescription.php:161 -msgid "" -"This is your default setting for the audience of your normal stream, and " -"posts." +#: ../../Zotlabs/Module/Oauth2.php:119 ../../Zotlabs/Module/Oauth2.php:147 +msgid "Grant Types" msgstr "" -#: ../../include/PermissionDescription.php:162 -msgid "" -"This is your default setting for who can view your default channel profile" +#: ../../Zotlabs/Module/Oauth2.php:119 ../../Zotlabs/Module/Oauth2.php:120 +msgid "leave blank unless your application sepcifically requires this" msgstr "" -#: ../../include/PermissionDescription.php:163 -msgid "This is your default setting for who can view your connections" +#: ../../Zotlabs/Module/Oauth2.php:120 ../../Zotlabs/Module/Oauth2.php:148 +msgid "Authorization scope" msgstr "" -#: ../../include/PermissionDescription.php:164 -msgid "" -"This is your default setting for who can view your file storage and photos" +#: ../../Zotlabs/Module/Oauth2.php:132 +msgid "OAuth2 Application not found." msgstr "" -#: ../../include/PermissionDescription.php:165 -msgid "This is your default setting for the audience of your webpages" +#: ../../Zotlabs/Module/Oauth2.php:147 ../../Zotlabs/Module/Oauth2.php:148 +msgid "leave blank unless your application specifically requires this" msgstr "" -#: ../../include/account.php:28 -msgid "Not a valid email address" -msgstr "Ikke en gyldig e-postadresse" +#: ../../Zotlabs/Module/Oauth2.php:190 +msgid "Connected OAuth2 Apps" +msgstr "" -#: ../../include/account.php:30 -msgid "Your email domain is not among those allowed on this site" -msgstr "Ditt e-postdomene er ikke blant de som er tillatt på dette stedet" +#: ../../Zotlabs/Module/Dreport.php:38 +msgid "Invalid message" +msgstr "Ugyldig melding" -#: ../../include/account.php:36 -msgid "Your email address is already registered at this site." -msgstr "Din e-postadresse er allerede registrert på dette nettstedet." +#: ../../Zotlabs/Module/Dreport.php:66 +msgid "no results" +msgstr "ingen resultater" -#: ../../include/account.php:68 -msgid "An invitation is required." -msgstr "En invitasjon er påkrevd." +#: ../../Zotlabs/Module/Dreport.php:80 +msgid "channel sync processed" +msgstr "Kanalsynkronisering er behandlet" -#: ../../include/account.php:72 -msgid "Invitation could not be verified." -msgstr "Invitasjon kunne ikke bekreftes." +#: ../../Zotlabs/Module/Dreport.php:84 +msgid "queued" +msgstr "lagt i kø" -#: ../../include/account.php:122 -msgid "Please enter the required information." -msgstr "Vennligst skriv inn nødvendig informasjon." +#: ../../Zotlabs/Module/Dreport.php:88 +msgid "posted" +msgstr "lagt inn" -#: ../../include/account.php:189 -msgid "Failed to store account information." -msgstr "Mislyktes med å lagre kontoinformasjon." +#: ../../Zotlabs/Module/Dreport.php:92 +msgid "accepted for delivery" +msgstr "akseptert for levering" -#: ../../include/account.php:249 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Registreringsbekreftelse for %s" +#: ../../Zotlabs/Module/Dreport.php:96 +msgid "updated" +msgstr "oppdatert" -#: ../../include/account.php:315 -#, php-format -msgid "Registration request at %s" -msgstr "Registreringsforespørsel hos %s" +#: ../../Zotlabs/Module/Dreport.php:99 +msgid "update ignored" +msgstr "oppdatering ignorert" -#: ../../include/account.php:317 ../../include/account.php:344 -#: ../../include/account.php:404 ../../include/network.php:1871 -msgid "Administrator" -msgstr "Administrator" +#: ../../Zotlabs/Module/Dreport.php:102 +msgid "permission denied" +msgstr "tillatelse avvist" -#: ../../include/account.php:339 -msgid "your registration password" -msgstr "ditt registreringspassord" +#: ../../Zotlabs/Module/Dreport.php:106 +msgid "recipient not found" +msgstr "mottaker ble ikke funnet" -#: ../../include/account.php:342 ../../include/account.php:402 +#: ../../Zotlabs/Module/Dreport.php:126 #, php-format -msgid "Registration details for %s" -msgstr "Registreringsdetaljer for %s" +msgid "Delivery report for %1$s" +msgstr "Leveringsrapport for %1$s" -#: ../../include/account.php:414 -msgid "Account approved." -msgstr "Konto godkjent." +#: ../../Zotlabs/Module/Dreport.php:131 +msgid "Redeliver" +msgstr "" -#: ../../include/account.php:454 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registrering trukket tilbake for %s" +#: ../../Zotlabs/Module/Thing.php:122 +msgid "Thing updated" +msgstr "Tingen er oppdatert" -#: ../../include/account.php:506 -msgid "Account verified. Please login." -msgstr "Konto bekreftet. Vennligst logg inn." +#: ../../Zotlabs/Module/Thing.php:174 +msgid "Object store: failed" +msgstr "Objektlagring: mislyktes" -#: ../../include/account.php:723 ../../include/account.php:725 -msgid "Click here to upgrade." -msgstr "Klikk her for å oppgradere." +#: ../../Zotlabs/Module/Thing.php:178 +msgid "Thing added" +msgstr "Ting lagt til" -#: ../../include/account.php:731 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Denne handlingen går utenfor grensene satt i din abonnementsplan." +#: ../../Zotlabs/Module/Thing.php:204 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" -#: ../../include/account.php:736 -msgid "This action is not available under your subscription plan." -msgstr "Denne handlingen er ikke tilgjengelig i din abonnementsplan." +#: ../../Zotlabs/Module/Thing.php:267 +msgid "Show Thing" +msgstr "Vis ting" -#: ../../include/attach.php:247 ../../include/attach.php:333 -msgid "Item was not found." -msgstr "Elementet ble ikke funnet." +#: ../../Zotlabs/Module/Thing.php:274 +msgid "item not found." +msgstr "element ble ikke funnet." -#: ../../include/attach.php:497 -msgid "No source file." -msgstr "Ingen kildefil." +#: ../../Zotlabs/Module/Thing.php:307 +msgid "Edit Thing" +msgstr "Endre ting" -#: ../../include/attach.php:519 -msgid "Cannot locate file to replace" -msgstr "Kan ikke finne filen som skal byttes ut" +#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:366 +msgid "Select a profile" +msgstr "Velg en profil" -#: ../../include/attach.php:537 -msgid "Cannot locate file to revise/update" -msgstr "Finner ikke filen som skal revideres/oppdateres" +#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:369 +msgid "Post an activity" +msgstr "Legg inn en aktivitet" -#: ../../include/attach.php:672 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Filens størrelse overgår grensen på %d" +#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:369 +msgid "Only sends to viewers of the applicable profile" +msgstr "Sender bare til seere av den aktuelle profilen" -#: ../../include/attach.php:686 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "Du har nådd din lagringsgrense for vedlegg på %1$.0f Mbytes." +#: ../../Zotlabs/Module/Thing.php:315 ../../Zotlabs/Module/Thing.php:371 +msgid "Name of thing e.g. something" +msgstr "Navn på ting for eksempel noe" -#: ../../include/attach.php:842 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Mislyktes med å laste opp filen. Mulig systemgrense eller handling avbrutt." +#: ../../Zotlabs/Module/Thing.php:317 ../../Zotlabs/Module/Thing.php:372 +msgid "URL of thing (optional)" +msgstr "URL til ting (valgfritt)" -#: ../../include/attach.php:855 -msgid "Stored file could not be verified. Upload failed." -msgstr "Lagret fil kunne ikke bekreftes. Opplasting mislyktes." +#: ../../Zotlabs/Module/Thing.php:319 ../../Zotlabs/Module/Thing.php:373 +msgid "URL for photo of thing (optional)" +msgstr "URL til bilde av ting (valgfritt)" -#: ../../include/attach.php:909 ../../include/attach.php:925 -msgid "Path not available." -msgstr "Stien er ikke tilgjengelig." +#: ../../Zotlabs/Module/Thing.php:364 +msgid "Add Thing to your Profile" +msgstr "Legg til ting i din profil" -#: ../../include/attach.php:971 ../../include/attach.php:1123 -msgid "Empty pathname" -msgstr "Tomt sti-navn" +#: ../../Zotlabs/Module/Rmagic.php:46 +msgid "Authentication failed." +msgstr "Autentisering mislyktes." -#: ../../include/attach.php:997 -msgid "duplicate filename or path" -msgstr "duplikat av filnavn eller sti" +#: ../../Zotlabs/Module/Import_progress.php:36 +msgid "Item sync completed!" +msgstr "" -#: ../../include/attach.php:1019 -msgid "Path not found." -msgstr "Stien ble ikke funnet." +#: ../../Zotlabs/Module/Import_progress.php:51 +msgid "Item sync completed but no items were found!" +msgstr "" -#: ../../include/attach.php:1077 -msgid "mkdir failed." -msgstr "mkdir mislyktes." +#: ../../Zotlabs/Module/Import_progress.php:68 +msgid "File sync completed!" +msgstr "" -#: ../../include/attach.php:1081 -msgid "database storage failed." -msgstr "databaselagring mislyktes." +#: ../../Zotlabs/Module/Import_progress.php:83 +msgid "File sync completed but no files were found!" +msgstr "" -#: ../../include/attach.php:1129 -msgid "Empty path" -msgstr "Tom sti" +#: ../../Zotlabs/Module/Import_progress.php:98 +msgid "Channel clone status" +msgstr "" -#: ../../include/channel.php:32 -msgid "Unable to obtain identity information from database" -msgstr "Klarer ikke å få tak i identitetsinformasjon fra databasen" +#: ../../Zotlabs/Module/Import_progress.php:99 +msgid "Item sync status" +msgstr "" -#: ../../include/channel.php:66 -msgid "Empty name" -msgstr "Mangler navn" +#: ../../Zotlabs/Module/Import_progress.php:100 +msgid "File sync status" +msgstr "" -#: ../../include/channel.php:69 -msgid "Name too long" -msgstr "Navnet er for langt" +#: ../../Zotlabs/Module/Import_progress.php:107 +msgid "Channel cloning completed!" +msgstr "" -#: ../../include/channel.php:180 -msgid "No account identifier" -msgstr "Ingen kontoidentifikator" +#: ../../Zotlabs/Module/Import_progress.php:108 +msgid "Resume" +msgstr "" -#: ../../include/channel.php:192 -msgid "Nickname is required." -msgstr "Kallenavn er påkrevd." +#: ../../Zotlabs/Module/Import_progress.php:109 +msgid "Only resume if sync stalled!" +msgstr "" -#: ../../include/channel.php:206 -msgid "Reserved nickname. Please choose another." -msgstr "Reservert kallenavn. Vennligst velg et annet." +#: ../../Zotlabs/Module/Pdledit.php:27 +msgid "Layout updated." +msgstr "Layout er oppdatert." -#: ../../include/channel.php:211 -msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "Kallenavnet inneholder tegn som ikke er støttet eller det er allerede i bruk på dette nettstedet." +#: ../../Zotlabs/Module/Pdledit.php:55 ../../Zotlabs/Module/Pdledit.php:98 +msgid "Edit System Page Description" +msgstr "Endre beskrivelsen av systemsiden" -#: ../../include/channel.php:287 -msgid "Unable to retrieve created identity" -msgstr "Klarer ikke å hente den lagede identiteten" +#: ../../Zotlabs/Module/Pdledit.php:76 +msgid "(modified)" +msgstr "" -#: ../../include/channel.php:345 -msgid "Default Profile" -msgstr "Standardprofil" +#: ../../Zotlabs/Module/Pdledit.php:93 +msgid "Layout not found." +msgstr "Layouten ble ikke funnet." -#: ../../include/channel.php:791 -msgid "Requested channel is not available." -msgstr "Forespurt kanal er ikke tilgjengelig." +#: ../../Zotlabs/Module/Pdledit.php:99 +msgid "Module Name:" +msgstr "Modulnavn:" -#: ../../include/channel.php:938 -msgid "Create New Profile" -msgstr "Lag ny profil" +#: ../../Zotlabs/Module/Pdledit.php:100 +msgid "Layout Help" +msgstr "Layout-hjelp" -#: ../../include/channel.php:958 -msgid "Visible to everybody" +#: ../../Zotlabs/Module/Pdledit.php:101 +msgid "Edit another layout" msgstr "" -#: ../../include/channel.php:1031 ../../include/channel.php:1142 -msgid "Gender:" -msgstr "Kjønn:" - -#: ../../include/channel.php:1032 ../../include/channel.php:1186 -msgid "Status:" -msgstr "Status:" +#: ../../Zotlabs/Module/Pdledit.php:102 +msgid "System layout" +msgstr "" -#: ../../include/channel.php:1033 ../../include/channel.php:1197 -msgid "Homepage:" -msgstr "Hjemmeside:" +#: ../../Zotlabs/Module/Home.php:104 +#, php-format +msgid "Welcome to %s" +msgstr "Velkommen til %s" -#: ../../include/channel.php:1034 -msgid "Online Now" -msgstr "Online nå" +#: ../../Zotlabs/Module/Suggest.php:52 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "" +"Ingen forslag tilgjengelige. Hvis dette er et nytt nettsted, vennligst prøv" +" igjen om 24 timer." -#: ../../include/channel.php:1147 -msgid "Like this channel" -msgstr "Lik denne kanalen" +#: ../../Zotlabs/Module/Connedit.php:171 +msgid "Connection updated." +msgstr "Forbindelsen er oppdatert." -#: ../../include/channel.php:1171 -msgid "j F, Y" -msgstr "j F, Y" +#: ../../Zotlabs/Module/Connedit.php:173 +msgid "Failed to update connection record." +msgstr "Mislyktes med å oppdatere forbindelsesinformasjonen." -#: ../../include/channel.php:1172 -msgid "j F" -msgstr "j F" +#: ../../Zotlabs/Module/Connedit.php:320 +msgid "Could not access address book record." +msgstr "Fikk ikke tilgang til informasjonen i adresseboken." -#: ../../include/channel.php:1179 -msgid "Birthday:" -msgstr "Fødselsdag:" +#: ../../Zotlabs/Module/Connedit.php:368 +msgid "Refresh failed - channel is currently unavailable." +msgstr "Oppfrisking mislyktes - kanalen er for øyeblikket utilgjengelig." -#: ../../include/channel.php:1192 -#, php-format -msgid "for %1$d %2$s" -msgstr "for %1$d %2$s" +#: ../../Zotlabs/Module/Connedit.php:382 ../../Zotlabs/Module/Connedit.php:391 +#: ../../Zotlabs/Module/Connedit.php:400 ../../Zotlabs/Module/Connedit.php:409 +#: ../../Zotlabs/Module/Connedit.php:422 +msgid "Unable to set address book parameters." +msgstr "Ikke i stand til å angi parametre for adresseboken." -#: ../../include/channel.php:1195 -msgid "Sexual Preference:" -msgstr "Seksuell preferanse:" +#: ../../Zotlabs/Module/Connedit.php:441 +msgid "Connection has been removed." +msgstr "Forbindelsen har blitt fjernet." -#: ../../include/channel.php:1201 -msgid "Tags:" -msgstr "Merkelapper:" +#: ../../Zotlabs/Module/Connedit.php:483 +#, php-format +msgid "View %s's profile" +msgstr "Vis %s sin profil" -#: ../../include/channel.php:1203 -msgid "Political Views:" -msgstr "Politiske synspunkter:" +#: ../../Zotlabs/Module/Connedit.php:504 +msgid "View recent posts and comments" +msgstr "Vis nylige innlegg og kommentarer" -#: ../../include/channel.php:1205 -msgid "Religion:" -msgstr "Religion:" +#: ../../Zotlabs/Module/Connedit.php:550 +msgid "Fetch Vcard" +msgstr "" -#: ../../include/channel.php:1209 -msgid "Hobbies/Interests:" -msgstr "Hobbyer/interesser:" +#: ../../Zotlabs/Module/Connedit.php:553 +msgid "Fetch electronic calling card for this connection" +msgstr "" -#: ../../include/channel.php:1211 -msgid "Likes:" -msgstr "Liker:" +#: ../../Zotlabs/Module/Connedit.php:575 +msgid "Open Set Affinity section by default" +msgstr "" -#: ../../include/channel.php:1213 -msgid "Dislikes:" -msgstr "Misliker:" +#: ../../Zotlabs/Module/Connedit.php:612 +msgid "Filter" +msgstr "" -#: ../../include/channel.php:1215 -msgid "Contact information and Social Networks:" -msgstr "Kontaktinformasjon og sosiale nettverk:" +#: ../../Zotlabs/Module/Connedit.php:615 +msgid "Open Custom Filter section by default" +msgstr "" -#: ../../include/channel.php:1217 -msgid "My other channels:" -msgstr "Mine andre kanaler:" +#: ../../Zotlabs/Module/Connedit.php:626 +msgid "Set Affinity" +msgstr "Angi nærhet" -#: ../../include/channel.php:1219 -msgid "Musical interests:" -msgstr "Musikkinteresse:" +#: ../../Zotlabs/Module/Connedit.php:629 +msgid "Set Profile" +msgstr "Angi profil" -#: ../../include/channel.php:1221 -msgid "Books, literature:" -msgstr "Bøker, litteratur:" +#: ../../Zotlabs/Module/Connedit.php:632 +msgid "Set Affinity & Profile" +msgstr "Angi nærhet og profil" -#: ../../include/channel.php:1223 -msgid "Television:" -msgstr "TV:" +#: ../../Zotlabs/Module/Connedit.php:685 +#, php-format +msgid "Contact: %s" +msgstr "" -#: ../../include/channel.php:1225 -msgid "Film/dance/culture/entertainment:" -msgstr "Film/dans/kultur/underholdning:" +#: ../../Zotlabs/Module/Connedit.php:687 +msgid "Manage contact roles" +msgstr "" -#: ../../include/channel.php:1227 -msgid "Love/Romance:" -msgstr "Kjærlighet/romantikk:" +#: ../../Zotlabs/Module/Connedit.php:694 +msgid "This contacts's primary address is" +msgstr "" -#: ../../include/channel.php:1229 -msgid "Work/employment:" -msgstr "Arbeid/sysselsetting:" +#: ../../Zotlabs/Module/Connedit.php:695 +msgid "Available locations:" +msgstr "Tilgjengelige plasseringer:" -#: ../../include/channel.php:1231 -msgid "School/education:" -msgstr "Skole/utdannelse:" +#: ../../Zotlabs/Module/Connedit.php:710 +msgid "Contact Pending Approval" +msgstr "" -#: ../../include/channel.php:1251 -msgid "Like this thing" -msgstr "Lik denne tingen" +#: ../../Zotlabs/Module/Connedit.php:715 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "" +"Vennligst velg profilen du ønsker å vise %s når profilen din ses på en sikret" +" måte. " -#: ../../include/features.php:48 -msgid "General Features" -msgstr "Generelle funksjoner" +#: ../../Zotlabs/Module/Connedit.php:721 +msgid "" +"Some permissions may be inherited from your channel's privacy settings, which have higher " +"priority than individual settings. You can not change those " +"settings here." +msgstr "" +"Noen tillatelser kan være arvet fra din kanals personverninnstillinger, som har høyere prioritet enn" +" individuelle innstillinger. Du kan ikke endre arvede" +" innstillingene her." -#: ../../include/features.php:50 -msgid "Content Expiration" -msgstr "Innholdet utløper" +#: ../../Zotlabs/Module/Connedit.php:722 +msgid "" +"Some permissions may be inherited from your channel's privacy settings, which have higher " +"priority than individual settings. You can change those settings here but " +"they wont have any impact unless the inherited setting changes." +msgstr "" +"Noen tillatelser kan være arvet fra din kanals personverninnstillinger, som har høyere prioritet enn" +" individuelle innstillinger. Du kan endre disse innstillingene her, men de" +" vil ikke få noen effekt før de arvede innstillingene endres." -#: ../../include/features.php:50 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "Fjern innlegg/kommentarer og/eller private meldinger på et angitt tidspunkt i fremtiden" +#: ../../Zotlabs/Module/Connedit.php:723 +msgid "Last update:" +msgstr "Siste oppdatering:" -#: ../../include/features.php:51 -msgid "Multiple Profiles" -msgstr "Flere profiler" +#: ../../Zotlabs/Module/Connedit.php:731 +msgid "Details" +msgstr "" -#: ../../include/features.php:51 -msgid "Ability to create multiple profiles" -msgstr "Mulig å lage flere profiler" +#: ../../Zotlabs/Module/Notifications.php:106 +#: ../../Zotlabs/Module/Notify.php:85 +msgid "No more system notifications." +msgstr "Ingen flere systemvarsler." -#: ../../include/features.php:52 -msgid "Advanced Profiles" -msgstr "Avanserte profiler" +#: ../../Zotlabs/Module/Notifications.php:110 +#: ../../Zotlabs/Module/Notify.php:89 +msgid "System Notifications" +msgstr "Systemvarsler" -#: ../../include/features.php:52 -msgid "Additional profile sections and selections" -msgstr "Ytterlige seksjoner og utvalg til profilen" +#: ../../Zotlabs/Module/Notifications.php:111 +#: ../../Zotlabs/Lib/ThreadItem.php:490 +msgid "Mark all seen" +msgstr "Merk alle som sett" -#: ../../include/features.php:53 -msgid "Profile Import/Export" -msgstr "Profil-import/-eksport" +#: ../../Zotlabs/Module/Layouts.php:186 +msgid "Comanche page description language help" +msgstr "Hjelp med Comanche sidebeskrivelsesspråk" -#: ../../include/features.php:53 -msgid "Save and load profile details across sites/channels" -msgstr "Lagre og åpne profildetaljer på tvers av nettsteder/kanaler" +#: ../../Zotlabs/Module/Layouts.php:190 +msgid "Layout Description" +msgstr "Layout-beskrivelse" -#: ../../include/features.php:54 -msgid "Web Pages" -msgstr "Web-sider" +#: ../../Zotlabs/Module/Layouts.php:195 +msgid "Download PDL file" +msgstr "Last ned PDL-fil" -#: ../../include/features.php:54 -msgid "Provide managed web pages on your channel" -msgstr "Tilby kontrollerte web-sider på din kanal" +#: ../../Zotlabs/Module/Locs.php:27 ../../Zotlabs/Module/Locs.php:65 +msgid "Location not found." +msgstr "Plassering er ikke funnet." -#: ../../include/features.php:55 -msgid "Hide Rating" -msgstr "Skjul vurdering" +#: ../../Zotlabs/Module/Locs.php:74 +msgid "Location lookup failed." +msgstr "Oppslag på plassering mislyktes." -#: ../../include/features.php:55 +#: ../../Zotlabs/Module/Locs.php:78 msgid "" -"Hide the rating buttons on your channel and profile pages. Note: People can " -"still rate you somewhere else." -msgstr "Skjul vurderingsknappene for din kanal og profilsider. Merknad: folk kan fortsatt vurdere deg et annet sted." - -#: ../../include/features.php:56 -msgid "Private Notes" -msgstr "Private merknader" +"Please select another location to become primary before removing the primary " +"location." +msgstr "" +"Vennligst velg en annen plassering som primær før du sletter gjeldende" +" primære plassering." -#: ../../include/features.php:56 -msgid "Enables a tool to store notes and reminders (note: not encrypted)" -msgstr "Skru på et verktøy for å lagre notater og påminnelser (merknad: ikke kryptert)" +#: ../../Zotlabs/Module/Locs.php:106 +msgid "Syncing locations" +msgstr "Synkroniserer plasseringer" -#: ../../include/features.php:57 -msgid "Navigation Channel Select" -msgstr "Navigasjon kanalvalg" +#: ../../Zotlabs/Module/Locs.php:115 +msgid "No locations found." +msgstr "Ingen plasseringer ble funnet." -#: ../../include/features.php:57 -msgid "Change channels directly from within the navigation dropdown menu" -msgstr "Endre kanaler direkte fra navigasjonsmenyen" +#: ../../Zotlabs/Module/Locs.php:120 +msgid "Manage Channel Locations" +msgstr "Håndter kanalplasseringer" -#: ../../include/features.php:58 -msgid "Photo Location" -msgstr "Bildeplassering" +#: ../../Zotlabs/Module/Locs.php:126 +msgid "Sync Now" +msgstr "Synkroniser nå" -#: ../../include/features.php:58 -msgid "If location data is available on uploaded photos, link this to a map." -msgstr "Hvis plasseringsdata er tilgjengelige i opplastede bilder, plasser dette på et kart." +#: ../../Zotlabs/Module/Locs.php:127 +msgid "Please wait several minutes between consecutive operations." +msgstr "Vennligst vent flere minutter mellom hver etterfølgende operasjon." -#: ../../include/features.php:59 -msgid "Access Controlled Chatrooms" +#: ../../Zotlabs/Module/Locs.php:128 +msgid "" +"When possible, drop a location by logging into that website/hub and removing " +"your channel." msgstr "" +"Når mulig, fjern en plassering ved å logge inn på det nettstedet eller den" +" hub-en og fjern din kanal." -#: ../../include/features.php:59 -msgid "Provide chatrooms and chat services with access control." +#: ../../Zotlabs/Module/Locs.php:129 +msgid "Use this form to drop the location if the hub is no longer operating." msgstr "" +"Bruk dette skjemaet for å fjerne plasseringen hvis huben ikke er i drift" +" lenger." -#: ../../include/features.php:60 -msgid "Smart Birthdays" -msgstr "" +#: ../../Zotlabs/Module/Sources.php:41 +msgid "Failed to create source. No channel selected." +msgstr "Mislyktes med å lage kilde. Ingen kanal er valgt." + +#: ../../Zotlabs/Module/Sources.php:57 +msgid "Source created." +msgstr "Kilden er laget." + +#: ../../Zotlabs/Module/Sources.php:70 +msgid "Source updated." +msgstr "Kilden er oppdatert." + +#: ../../Zotlabs/Module/Sources.php:99 +msgid "*" +msgstr "*" + +#: ../../Zotlabs/Module/Sources.php:105 ../../Zotlabs/Lib/Apps.php:372 +msgid "Channel Sources" +msgstr "Kanalkilder" + +#: ../../Zotlabs/Module/Sources.php:106 +msgid "Manage remote sources of content for your channel." +msgstr "Håndtere eksterne innholdskilder til din kanal." + +#: ../../Zotlabs/Module/Sources.php:107 ../../Zotlabs/Module/Sources.php:117 +msgid "New Source" +msgstr "Ny kilde" -#: ../../include/features.php:60 +#: ../../Zotlabs/Module/Sources.php:118 ../../Zotlabs/Module/Sources.php:152 msgid "" -"Make birthday events timezone aware in case your friends are scattered " -"across the planet." +"Import all or selected content from the following channel into this channel " +"and distribute it according to your channel settings." msgstr "" +"Importer alt eller et utvalgt av innhold fra følgende kanal inn i denne" +" kanalen og distribuer det i henhold til dine egne kanalinnstillinger." -#: ../../include/features.php:61 -msgid "Expert Mode" -msgstr "Ekspertmodus" +#: ../../Zotlabs/Module/Sources.php:119 ../../Zotlabs/Module/Sources.php:153 +msgid "Only import content with these words (one per line)" +msgstr "Bare importer innhold med disse ordene (ett ord per linje)" -#: ../../include/features.php:61 -msgid "Enable Expert Mode to provide advanced configuration options" -msgstr "Skru på Ekspertmodus for å tilby avanserte konfigurasjonsvalg" +#: ../../Zotlabs/Module/Sources.php:119 ../../Zotlabs/Module/Sources.php:153 +msgid "Leave blank to import all public content" +msgstr "La stå tomt for å importere alt offentlig innhold" -#: ../../include/features.php:62 -msgid "Premium Channel" -msgstr "Premiumkanal" +#: ../../Zotlabs/Module/Sources.php:120 ../../Zotlabs/Module/Sources.php:159 +msgid "Channel Name" +msgstr "Kanalnavn" -#: ../../include/features.php:62 +#: ../../Zotlabs/Module/Sources.php:121 ../../Zotlabs/Module/Sources.php:156 msgid "" -"Allows you to set restrictions and terms on those that connect with your " -"channel" -msgstr "Lar deg angi restriksjoner og betingelser for de som kobler seg til din kanal" +"Add the following categories to posts imported from this source (comma " +"separated)" +msgstr "" -#: ../../include/features.php:67 -msgid "Post Composition Features" -msgstr "Funksjoner for å lage innlegg" +#: ../../Zotlabs/Module/Sources.php:122 ../../Zotlabs/Module/Sources.php:157 +msgid "Resend posts with this channel as author" +msgstr "" -#: ../../include/features.php:70 -msgid "Large Photos" -msgstr "Store bilder" +#: ../../Zotlabs/Module/Sources.php:122 ../../Zotlabs/Module/Sources.php:157 +msgid "Copyrights may apply" +msgstr "" -#: ../../include/features.php:70 -msgid "" -"Include large (1024px) photo thumbnails in posts. If not enabled, use small " -"(640px) photo thumbnails" -msgstr "Inkluder store (1024px) småbilder i innlegg. Hvis denne ikke er påskrudd, bruk små (640px) småbilder." +#: ../../Zotlabs/Module/Sources.php:142 ../../Zotlabs/Module/Sources.php:172 +msgid "Source not found." +msgstr "Kilden ble ikke funnet." -#: ../../include/features.php:71 -msgid "Automatically import channel content from other channels or feeds" -msgstr "Automatisk import av kanalinnhold fra andre kanaler eller strømmer" +#: ../../Zotlabs/Module/Sources.php:149 +msgid "Edit Source" +msgstr "Endre kilde" -#: ../../include/features.php:72 -msgid "Even More Encryption" -msgstr "Enda mer kryptering" +#: ../../Zotlabs/Module/Sources.php:150 +msgid "Delete Source" +msgstr "Slett kilde" -#: ../../include/features.php:72 -msgid "" -"Allow optional encryption of content end-to-end with a shared secret key" -msgstr "Tillat valgfri kryptering av innhold ende-til-ende via en delt hemmelig nøkkel" +#: ../../Zotlabs/Module/Sources.php:180 +msgid "Source removed" +msgstr "Kilden er fjernet" -#: ../../include/features.php:73 -msgid "Enable Voting Tools" -msgstr "Skru på verktøy for å stemme" +#: ../../Zotlabs/Module/Sources.php:182 +msgid "Unable to remove source." +msgstr "Ikke i stand til å fjerne kilde." -#: ../../include/features.php:73 -msgid "Provide a class of post which others can vote on" -msgstr "Tilby en type innlegg som andre kan stemme på" +#: ../../Zotlabs/Module/Rbmark.php:93 +msgid "Select a bookmark folder" +msgstr "Velg en bokmerkemappe" -#: ../../include/features.php:74 -msgid "Delayed Posting" -msgstr "Tidfest publisering" +#: ../../Zotlabs/Module/Rbmark.php:98 +msgid "Save Bookmark" +msgstr "Lagre bokmerke" -#: ../../include/features.php:74 -msgid "Allow posts to be published at a later date" -msgstr "Tillat innlegg å bli publisert på et senere tidspunkt" +#: ../../Zotlabs/Module/Rbmark.php:99 +msgid "URL of bookmark" +msgstr "URL-en til bokmerket" -#: ../../include/features.php:75 -msgid "Suppress Duplicate Posts/Comments" -msgstr "Forhindre duplikat av innlegg/kommentarer" +#: ../../Zotlabs/Module/Rbmark.php:104 +msgid "Or enter new bookmark folder name" +msgstr "Eller skriv nytt navn på bokmerkemappe" -#: ../../include/features.php:75 +#: ../../Zotlabs/Lib/AccessList.php:26 msgid "" -"Prevent posts with identical content to be published with less than two " -"minutes in between submissions." -msgstr "Forhindre innlegg med identisk innhold fra å bli publisert hvis det er mindre enn to minutter mellom innsendingene." - -#: ../../include/features.php:81 -msgid "Network and Stream Filtering" -msgstr "Nettverk- og strømfiltrering" +"A deleted privacy group with this name was revived. Existing item " +"permissions may apply to this privacy group and any future " +"members. If this is not what you intended, please create another privacy " +"group with a different name." +msgstr "" -#: ../../include/features.php:82 -msgid "Search by Date" -msgstr "Søk etter dato" +#: ../../Zotlabs/Lib/AccessList.php:268 +msgid "Select a privacy group" +msgstr "" -#: ../../include/features.php:82 -msgid "Ability to select posts by date ranges" -msgstr "Mulighet for å velge innlegg etter datoområde" +#: ../../Zotlabs/Lib/Permcat.php:83 +#, fuzzy +msgctxt "permcat" +msgid "Default" +msgstr "" -#: ../../include/features.php:83 ../../include/group.php:311 -msgid "Privacy Groups" -msgstr "Personverngrupper" +#: ../../Zotlabs/Lib/Activity.php:2271 +#, php-format +msgid "Likes %1$s's %2$s" +msgstr "" -#: ../../include/features.php:83 -msgid "Enable management and selection of privacy groups" -msgstr "Skru på håndtering og valg av personverngrupper" +#: ../../Zotlabs/Lib/Activity.php:2274 +#, php-format +msgid "Doesn't like %1$s's %2$s" +msgstr "" -#: ../../include/features.php:84 -msgid "Save search terms for re-use" -msgstr "Lagre søkeuttrykk for senere bruk" +#: ../../Zotlabs/Lib/Activity.php:2280 +#, php-format +msgid "Will attend %s's event" +msgstr "" -#: ../../include/features.php:85 -msgid "Network Personal Tab" -msgstr "Nettverk personlig fane" +#: ../../Zotlabs/Lib/Activity.php:2283 +#, php-format +msgid "Will not attend %s's event" +msgstr "" -#: ../../include/features.php:85 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Skru på fane for å bare vise Nettverksinnlegg som du har deltatt i" +#: ../../Zotlabs/Lib/Activity.php:2286 +#, php-format +msgid "May attend %s's event" +msgstr "" -#: ../../include/features.php:86 -msgid "Network New Tab" -msgstr "Nettverk Ny fane" +#: ../../Zotlabs/Lib/Activity.php:2289 +#, php-format +msgid "May not attend %s's event" +msgstr "" -#: ../../include/features.php:86 -msgid "Enable tab to display all new Network activity" -msgstr "Skru på fane for å vise all ny nettverksaktivitet" +#: ../../Zotlabs/Lib/Enotify.php:60 +msgid "$Projectname Notification" +msgstr "$Projectname varsling" -#: ../../include/features.php:87 -msgid "Affinity Tool" -msgstr "Nærhetsverktøy" +#: ../../Zotlabs/Lib/Enotify.php:63 +msgid "Thank You," +msgstr "Tusen takk," -#: ../../include/features.php:87 -msgid "Filter stream activity by depth of relationships" -msgstr "Filtrer strømaktiviteten etter releasjonsdybde" +#: ../../Zotlabs/Lib/Enotify.php:66 +#, php-format +msgid "This email was sent by %1$s at %2$s." +msgstr "" -#: ../../include/features.php:88 -msgid "Connection Filtering" -msgstr "Filtrer forbindelser" +#: ../../Zotlabs/Lib/Enotify.php:67 +#, php-format +msgid "" +"To stop receiving these messages, please adjust your Notification Settings " +"at %s" +msgstr "" -#: ../../include/features.php:88 -msgid "Filter incoming posts from connections based on keywords/content" -msgstr "Filtrer innkommende innlegg fra forbindelser basert på nøkkelord/innhold" +#: ../../Zotlabs/Lib/Enotify.php:68 +#, php-format +msgid "To stop receiving these messages, please adjust your %s." +msgstr "" -#: ../../include/features.php:89 -msgid "Show channel suggestions" -msgstr "Vis kanalforslag" +#: ../../Zotlabs/Lib/Enotify.php:123 +#, php-format +msgid "%s " +msgstr "%s " -#: ../../include/features.php:94 -msgid "Post/Comment Tools" -msgstr "Innlegg-/Kommentar-verktøy" +#: ../../Zotlabs/Lib/Enotify.php:128 +#, php-format +msgid "[$Projectname:Notify] New direct message received at %s" +msgstr "" -#: ../../include/features.php:95 -msgid "Community Tagging" -msgstr "Felleskapsmerkelapper" +#: ../../Zotlabs/Lib/Enotify.php:130 +#, php-format +msgid "%1$s sent you a new direct message at %2$s" +msgstr "" -#: ../../include/features.php:95 -msgid "Ability to tag existing posts" -msgstr "Mulighet til å merke eksisterende meldinger" +#: ../../Zotlabs/Lib/Enotify.php:131 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s sendte deg %2$s." -#: ../../include/features.php:96 -msgid "Post Categories" -msgstr "Innleggskategorier" +#: ../../Zotlabs/Lib/Enotify.php:131 +msgid "a direct message" +msgstr "" -#: ../../include/features.php:96 -msgid "Add categories to your posts" -msgstr "Legg kategorier til dine innlegg" +#: ../../Zotlabs/Lib/Enotify.php:132 +#, php-format +msgid "Please visit %s to view and/or reply to your direct messages." +msgstr "" -#: ../../include/features.php:97 -msgid "Emoji Reactions" +#: ../../Zotlabs/Lib/Enotify.php:145 +msgid "commented on" msgstr "" -#: ../../include/features.php:97 -msgid "Add emoji reaction ability to posts" +#: ../../Zotlabs/Lib/Enotify.php:158 ../../Zotlabs/Lib/Enotify.php:307 +msgid "liked" msgstr "" -#: ../../include/features.php:98 -msgid "Ability to file posts under folders" -msgstr "Mulighet til å sortere innlegg i mapper" +#: ../../Zotlabs/Lib/Enotify.php:161 ../../Zotlabs/Lib/Enotify.php:307 +msgid "disliked" +msgstr "" -#: ../../include/features.php:99 -msgid "Dislike Posts" -msgstr "Mislik innlegg" +#: ../../Zotlabs/Lib/Enotify.php:166 +msgid "voted on" +msgstr "" -#: ../../include/features.php:99 -msgid "Ability to dislike posts/comments" -msgstr "Mulighet til å mislike innlegg/kommentarer" +#: ../../Zotlabs/Lib/Enotify.php:209 +#, php-format +msgid "%1$s %2$s [zrl=%3$s]a %4$s[/zrl]" +msgstr "" -#: ../../include/features.php:100 -msgid "Star Posts" -msgstr "Stjerneinnlegg" +#: ../../Zotlabs/Lib/Enotify.php:217 +#, php-format +msgid "%1$s %2$s [zrl=%3$s]%4$s's %5$s[/zrl]" +msgstr "" -#: ../../include/features.php:100 -msgid "Ability to mark special posts with a star indicator" -msgstr "Mulighet til å merke spesielle innlegg med en stjerne" +#: ../../Zotlabs/Lib/Enotify.php:226 ../../Zotlabs/Lib/Enotify.php:311 +#, php-format +msgid "%1$s %2$s [zrl=%3$s]your %4$s[/zrl]" +msgstr "" -#: ../../include/features.php:101 -msgid "Tag Cloud" -msgstr "Merkelappsky" +#: ../../Zotlabs/Lib/Enotify.php:238 +#, php-format +msgid "[$Projectname:Notify] Moderated Comment to conversation #%1$d by %2$s" +msgstr "" -#: ../../include/features.php:101 -msgid "Provide a personal tag cloud on your channel page" -msgstr "Tilby en personlig merkelappsky på din kanalside" +#: ../../Zotlabs/Lib/Enotify.php:240 +#, php-format +msgid "[$Projectname:Notify] Comment to conversation #%1$d by %2$s" +msgstr "" -#: ../../include/oembed.php:324 -msgid "Embedded content" -msgstr "Innebygget innhold" +#: ../../Zotlabs/Lib/Enotify.php:241 +#, php-format +msgid "%1$s commented on an item/conversation you have been following" +msgstr "" -#: ../../include/oembed.php:333 -msgid "Embedding disabled" -msgstr "Innbygging avskrudd" +#: ../../Zotlabs/Lib/Enotify.php:244 ../../Zotlabs/Lib/Enotify.php:331 +#: ../../Zotlabs/Lib/Enotify.php:347 ../../Zotlabs/Lib/Enotify.php:371 +#: ../../Zotlabs/Lib/Enotify.php:388 ../../Zotlabs/Lib/Enotify.php:401 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Vennligst besøk %s for å se og/eller svare i samtalen" -#: ../../include/acl_selectors.php:271 -msgid "Who can see this?" +#: ../../Zotlabs/Lib/Enotify.php:248 ../../Zotlabs/Lib/Enotify.php:249 +#, php-format +msgid "Please visit %s to approve or reject this comment." msgstr "" -#: ../../include/acl_selectors.php:272 -msgid "Custom selection" +#: ../../Zotlabs/Lib/Enotify.php:327 +#, php-format +msgid "[$Projectname:Notify] Like received to conversation #%1$d by %2$s" msgstr "" -#: ../../include/acl_selectors.php:273 -msgid "" -"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" -" the scope of \"Show\"." +#: ../../Zotlabs/Lib/Enotify.php:328 +#, php-format +msgid "%1$s liked an item/conversation you created" msgstr "" -#: ../../include/acl_selectors.php:274 -msgid "Show" -msgstr "Vis" - -#: ../../include/acl_selectors.php:275 -msgid "Don't show" -msgstr "Ikke vis" +#: ../../Zotlabs/Lib/Enotify.php:339 +#, php-format +msgid "[$Projectname:Notify] %s posted to your profile wall" +msgstr "" -#: ../../include/acl_selectors.php:281 -msgid "Other networks and post services" -msgstr "Andre nettverk og innleggstjenester" +#: ../../Zotlabs/Lib/Enotify.php:341 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "" -#: ../../include/acl_selectors.php:311 +#: ../../Zotlabs/Lib/Enotify.php:343 #, php-format -msgid "" -"Post permissions %s cannot be changed %s after a post is shared.
These" -" permissions set who is allowed to view the post." +msgid "%1$s posted to [zrl=%2$s]your wall[/zrl]" msgstr "" -#: ../../include/auth.php:105 -msgid "Logged out." -msgstr "Logget ut." +#: ../../Zotlabs/Lib/Enotify.php:365 +#, php-format +msgid "[$Projectname:Notify] %s tagged you" +msgstr "" -#: ../../include/auth.php:212 -msgid "Failed authentication" -msgstr "Mislykket autentisering" +#: ../../Zotlabs/Lib/Enotify.php:366 +#, php-format +msgid "%1$s tagged you at %2$s" +msgstr "" -#: ../../include/datetime.php:135 -msgid "Birthday" +#: ../../Zotlabs/Lib/Enotify.php:367 +#, php-format +msgid "%1$s [zrl=%2$s]tagged you[/zrl]." msgstr "" -#: ../../include/datetime.php:137 -msgid "Age: " -msgstr "Alder:" +#: ../../Zotlabs/Lib/Enotify.php:378 +#, php-format +msgid "[$Projectname:Notify] %1$s poked you" +msgstr "" -#: ../../include/datetime.php:139 -msgid "YYYY-MM-DD or MM-DD" -msgstr "YYYY-MM-DD eller MM-DD" +#: ../../Zotlabs/Lib/Enotify.php:379 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "" -#: ../../include/datetime.php:272 ../../boot.php:2470 -msgid "never" -msgstr "aldri" +#: ../../Zotlabs/Lib/Enotify.php:380 +#, php-format +msgid "%1$s [zrl=%2$s]poked you[/zrl]." +msgstr "" -#: ../../include/datetime.php:278 -msgid "less than a second ago" -msgstr "for mindre enn ett sekund siden" +#: ../../Zotlabs/Lib/Enotify.php:395 +#, php-format +msgid "[$Projectname:Notify] %s tagged your post" +msgstr "" -#: ../../include/datetime.php:296 +#: ../../Zotlabs/Lib/Enotify.php:396 #, php-format -msgctxt "e.g. 22 hours ago, 1 minute ago" -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s siden" +msgid "%1$s tagged your post at %2$s" +msgstr "" -#: ../../include/datetime.php:307 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "år" -msgstr[1] "år" +#: ../../Zotlabs/Lib/Enotify.php:397 +#, php-format +msgid "%1$s tagged [zrl=%2$s]your post[/zrl]" +msgstr "" -#: ../../include/datetime.php:310 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "måned" -msgstr[1] "måneder" +#: ../../Zotlabs/Lib/Enotify.php:408 +msgid "[$Projectname:Notify] Introduction received" +msgstr "" -#: ../../include/datetime.php:313 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "uke" -msgstr[1] "uker" +#: ../../Zotlabs/Lib/Enotify.php:409 +#, php-format +msgid "You've received an new connection request from '%1$s' at %2$s" +msgstr "" -#: ../../include/datetime.php:316 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "dag" -msgstr[1] "dager" +#: ../../Zotlabs/Lib/Enotify.php:410 +#, php-format +msgid "You've received [zrl=%1$s]a new connection request[/zrl] from %2$s." +msgstr "" -#: ../../include/datetime.php:319 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "time" -msgstr[1] "timer" +#: ../../Zotlabs/Lib/Enotify.php:413 ../../Zotlabs/Lib/Enotify.php:431 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Du kan besøke profilen deres på %s" -#: ../../include/datetime.php:322 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minutt" -msgstr[1] "minutter" +#: ../../Zotlabs/Lib/Enotify.php:415 +#, php-format +msgid "Please visit %s to approve or reject the connection request." +msgstr "" +"Vennligst besøk %s for å godkjenne eller avslå forespørselen om forbindelse." -#: ../../include/datetime.php:325 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "sekund" -msgstr[1] "sekunder" +#: ../../Zotlabs/Lib/Enotify.php:422 +msgid "[$Projectname:Notify] Friend suggestion received" +msgstr "" -#: ../../include/datetime.php:562 +#: ../../Zotlabs/Lib/Enotify.php:423 #, php-format -msgid "%1$s's birthday" -msgstr "%1$s sin fødselsdag" +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "" -#: ../../include/datetime.php:563 +#: ../../Zotlabs/Lib/Enotify.php:424 #, php-format -msgid "Happy Birthday %1$s" -msgstr "Gratulerer med dagen, %1$s !" +msgid "You've received [zrl=%1$s]a friend suggestion[/zrl] for %2$s from %3$s." +msgstr "" -#: ../../include/group.php:26 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "En slettet gruppe med dette navnet ble gjenopprettet. Eksisterende tillatelser for elementet kan gjelde for denne gruppen og fremtidige medlemmer. Hvis du ønsket noe annet, vennligst lag en ny gruppe med et annet navn." +#: ../../Zotlabs/Lib/Enotify.php:429 +msgid "Name:" +msgstr "Navn:" -#: ../../include/group.php:248 -msgid "Add new connections to this privacy group" -msgstr "Legg nye forbindelser i denne personverngruppen" +#: ../../Zotlabs/Lib/Enotify.php:430 +msgid "Photo:" +msgstr "Bilde:" -#: ../../include/group.php:289 -msgid "edit" -msgstr "endre" +#: ../../Zotlabs/Lib/Enotify.php:433 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Vennligst besøk %s for å godkjenne eller avslå dette forslaget." -#: ../../include/group.php:312 -msgid "Edit group" -msgstr "Endre gruppe" +#: ../../Zotlabs/Lib/Enotify.php:658 +msgid "[$Projectname:Notify]" +msgstr "" -#: ../../include/group.php:313 -msgid "Add privacy group" -msgstr "Legg til personverngruppe" +#: ../../Zotlabs/Lib/Enotify.php:826 +msgid "created a new poll" +msgstr "" -#: ../../include/group.php:314 -msgid "Channels not in any privacy group" -msgstr "Kanaler uten personverngruppe" +#: ../../Zotlabs/Lib/Enotify.php:826 +msgid "created a new post" +msgstr "laget et nytt innlegg" -#: ../../include/js_strings.php:5 -msgid "Delete this item?" -msgstr "Slett dette elementet?" +#: ../../Zotlabs/Lib/Enotify.php:827 +#, php-format +msgid "voted on %s's poll" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:827 +#, php-format +msgid "commented on %s's post" +msgstr "kommenterte på %s sitt innlegg" -#: ../../include/js_strings.php:8 -msgid "[-] show less" -msgstr "[-] Vis mindre" +#: ../../Zotlabs/Lib/Enotify.php:831 +#, php-format +msgid "repeated %s's post" +msgstr "" -#: ../../include/js_strings.php:9 -msgid "[+] expand" -msgstr "[+] Utvid" +#: ../../Zotlabs/Lib/Enotify.php:835 +#, php-format +msgid "liked %s's post" +msgstr "" -#: ../../include/js_strings.php:10 -msgid "[-] collapse" -msgstr "[-] Lukk" +#: ../../Zotlabs/Lib/Enotify.php:839 +#, php-format +msgid "disliked %s's post" +msgstr "" -#: ../../include/js_strings.php:11 -msgid "Password too short" -msgstr "Passordet er for kort" +#: ../../Zotlabs/Lib/Enotify.php:843 ../../Zotlabs/Lib/Enotify.php:946 +msgid "shared a file with you" +msgstr "" -#: ../../include/js_strings.php:12 -msgid "Passwords do not match" -msgstr "Passordene er ikke like" +#: ../../Zotlabs/Lib/Enotify.php:852 +#, php-format +msgid "edited a post dated %s" +msgstr "" -#: ../../include/js_strings.php:13 -msgid "everybody" -msgstr "alle" +#: ../../Zotlabs/Lib/Enotify.php:855 +#, php-format +msgid "edited a comment dated %s" +msgstr "" -#: ../../include/js_strings.php:14 -msgid "Secret Passphrase" -msgstr "Hemmelig passordsetning" +#: ../../Zotlabs/Lib/Enotify.php:931 +msgid "added your channel" +msgstr "la til din kanal" -#: ../../include/js_strings.php:15 -msgid "Passphrase hint" -msgstr "Hint om passordsetning" +#: ../../Zotlabs/Lib/Enotify.php:961 +msgid "sent you a direct message" +msgstr "" -#: ../../include/js_strings.php:16 -msgid "Notice: Permissions have changed but have not yet been submitted." -msgstr "Varsel: Tillatelser har blitt endret, men de har ennå ikke blitt sendt inn." +#: ../../Zotlabs/Lib/Enotify.php:968 +msgid "g A l F d" +msgstr "g A l F d" -#: ../../include/js_strings.php:17 -msgid "close all" -msgstr "Lukk alle" +#: ../../Zotlabs/Lib/Enotify.php:971 +msgid "[today]" +msgstr "[idag]" -#: ../../include/js_strings.php:18 -msgid "Nothing new here" -msgstr "Ikke noe nytt her" +#: ../../Zotlabs/Lib/Enotify.php:981 +msgid "created an event" +msgstr "" -#: ../../include/js_strings.php:19 -msgid "Rate This Channel (this is public)" -msgstr "Vurder denne kanalen (dette er offentlig)" +#: ../../Zotlabs/Lib/Enotify.php:996 +msgid "status verified" +msgstr "" -#: ../../include/js_strings.php:21 -msgid "Describe (optional)" -msgstr "Beskriv (valgfritt)" +#: ../../Zotlabs/Lib/Connect.php:46 ../../Zotlabs/Lib/Connect.php:143 +msgid "Channel is blocked on this site." +msgstr "Kanalen er blokkert på dette nettstedet." -#: ../../include/js_strings.php:23 -msgid "Please enter a link URL" -msgstr "Vennligst skriv inn en lenke URL:" +#: ../../Zotlabs/Lib/Connect.php:51 +msgid "Channel location missing." +msgstr "Kanalplassering mangler." -#: ../../include/js_strings.php:24 -msgid "Unsaved changes. Are you sure you wish to leave this page?" -msgstr "Endringene er ikke lagret. Er du sikker på at du ønsker å forlate denne siden?" +#: ../../Zotlabs/Lib/Connect.php:103 +msgid "Remote channel or protocol unavailable." +msgstr "" -#: ../../include/js_strings.php:27 -msgid "timeago.prefixAgo" -msgstr "timeago.prefixAgo" +#: ../../Zotlabs/Lib/Connect.php:137 +msgid "Channel discovery failed." +msgstr "Kanaloppdagelse mislyktes." -#: ../../include/js_strings.php:28 -msgid "timeago.prefixFromNow" -msgstr "timeago.prefixFromNow" +#: ../../Zotlabs/Lib/Connect.php:155 +msgid "Protocol disabled." +msgstr "Protokollen er avskrudd." -#: ../../include/js_strings.php:29 -msgid "ago" -msgstr "siden" +#: ../../Zotlabs/Lib/Connect.php:167 +msgid "Cannot connect to yourself." +msgstr "Kan ikke lage forbindelse med deg selv." -#: ../../include/js_strings.php:30 -msgid "from now" -msgstr "fra nå" +#: ../../Zotlabs/Lib/Connect.php:272 +msgid "error saving data" +msgstr "" -#: ../../include/js_strings.php:31 -msgid "less than a minute" -msgstr "mindre enn ett minutt" +#: ../../Zotlabs/Lib/Chatroom.php:25 +msgid "Missing room name" +msgstr "Mangler romnavn" -#: ../../include/js_strings.php:32 -msgid "about a minute" -msgstr "omtrent et minutt" +#: ../../Zotlabs/Lib/Chatroom.php:34 +msgid "Duplicate room name" +msgstr "Duplikat romnavn" -#: ../../include/js_strings.php:33 -#, php-format -msgid "%d minutes" -msgstr "%d minutter" +#: ../../Zotlabs/Lib/Chatroom.php:84 ../../Zotlabs/Lib/Chatroom.php:92 +msgid "Invalid room specifier." +msgstr "Ugyldig rom-spesifisering" -#: ../../include/js_strings.php:34 -msgid "about an hour" -msgstr "omtrent en time" +#: ../../Zotlabs/Lib/Chatroom.php:124 +msgid "Room not found." +msgstr "Rommet ble ikke funnet." -#: ../../include/js_strings.php:35 -#, php-format -msgid "about %d hours" -msgstr "omtrent %d timer" +#: ../../Zotlabs/Lib/Chatroom.php:145 +msgid "Room is full" +msgstr "Rommet er fullt" -#: ../../include/js_strings.php:36 -msgid "a day" -msgstr "en dag" +#: ../../Zotlabs/Lib/Apps.php:328 +msgid "Affinity Tool" +msgstr "Nærhetsverktøy" -#: ../../include/js_strings.php:37 -#, php-format -msgid "%d days" -msgstr "%d dager" +#: ../../Zotlabs/Lib/Apps.php:331 +msgid "Site Admin" +msgstr "Nettstedsadministrator" -#: ../../include/js_strings.php:38 -msgid "about a month" -msgstr "omtrent en måned" +#: ../../Zotlabs/Lib/Apps.php:335 +msgid "Content Filter" +msgstr "" -#: ../../include/js_strings.php:39 -#, php-format -msgid "%d months" -msgstr "%d måneder" +#: ../../Zotlabs/Lib/Apps.php:338 +msgid "Remote Diagnostics" +msgstr "" -#: ../../include/js_strings.php:40 -msgid "about a year" -msgstr "omtrent et år" +#: ../../Zotlabs/Lib/Apps.php:339 +msgid "Suggest Channels" +msgstr "Foreslå kanaler" -#: ../../include/js_strings.php:41 -#, php-format -msgid "%d years" -msgstr "%d år" +#: ../../Zotlabs/Lib/Apps.php:341 +msgid "Channel Manager" +msgstr "Kanalstyring" -#: ../../include/js_strings.php:42 -msgid " " -msgstr " " +#: ../../Zotlabs/Lib/Apps.php:342 +msgid "Stream" +msgstr "" -#: ../../include/js_strings.php:43 -msgid "timeago.numbers" -msgstr "timeago.numbers" +#: ../../Zotlabs/Lib/Apps.php:353 +msgid "Mail" +msgstr "Melding" -#: ../../include/js_strings.php:49 -msgctxt "long" -msgid "May" -msgstr "mai" +#: ../../Zotlabs/Lib/Apps.php:356 +msgid "Chat" +msgstr "Chat" -#: ../../include/js_strings.php:57 -msgid "Jan" -msgstr "Jan" +#: ../../Zotlabs/Lib/Apps.php:358 +msgid "Probe" +msgstr "Undersøk" -#: ../../include/js_strings.php:58 -msgid "Feb" -msgstr "Feb" +#: ../../Zotlabs/Lib/Apps.php:359 +msgid "Suggest" +msgstr "Forreslå" -#: ../../include/js_strings.php:59 -msgid "Mar" -msgstr "Mar" +#: ../../Zotlabs/Lib/Apps.php:360 +msgid "Random Channel" +msgstr "Tilfeldig kanal" -#: ../../include/js_strings.php:60 -msgid "Apr" -msgstr "Apr" +#: ../../Zotlabs/Lib/Apps.php:361 +msgid "Invite" +msgstr "Inviter" -#: ../../include/js_strings.php:61 -msgctxt "short" -msgid "May" -msgstr "mai" +#: ../../Zotlabs/Lib/Apps.php:364 ../../Zotlabs/Storage/Browser.php:407 +msgid "Post" +msgstr "Innlegg" -#: ../../include/js_strings.php:62 -msgid "Jun" -msgstr "Jun" +#: ../../Zotlabs/Lib/Apps.php:369 +msgid "Notifications" +msgstr "Varsler" -#: ../../include/js_strings.php:63 -msgid "Jul" -msgstr "Jul" +#: ../../Zotlabs/Lib/Apps.php:370 +msgid "Order Apps" +msgstr "" -#: ../../include/js_strings.php:64 -msgid "Aug" -msgstr "Aug" +#: ../../Zotlabs/Lib/Apps.php:371 +msgid "CardDAV" +msgstr "" -#: ../../include/js_strings.php:65 -msgid "Sep" -msgstr "Sep" +#: ../../Zotlabs/Lib/Apps.php:375 +msgid "OAuth Apps Manager" +msgstr "" -#: ../../include/js_strings.php:66 -msgid "Oct" -msgstr "Okt" +#: ../../Zotlabs/Lib/Apps.php:376 +msgid "OAuth2 Apps Manager" +msgstr "" -#: ../../include/js_strings.php:67 -msgid "Nov" -msgstr "Nov" +#: ../../Zotlabs/Lib/Apps.php:377 +msgid "PDL Editor" +msgstr "" -#: ../../include/js_strings.php:68 -msgid "Dec" -msgstr "Des" +#: ../../Zotlabs/Lib/Apps.php:380 +msgid "My Chatrooms" +msgstr "" -#: ../../include/js_strings.php:76 -msgid "Sun" -msgstr "Søn" +#: ../../Zotlabs/Lib/Apps.php:381 +msgid "Channel Export" +msgstr "" -#: ../../include/js_strings.php:77 -msgid "Mon" -msgstr "Man" +#: ../../Zotlabs/Lib/Apps.php:575 ../../Zotlabs/Lib/Apps.php:597 +msgid "Purchase" +msgstr "Kjøp" -#: ../../include/js_strings.php:78 -msgid "Tue" -msgstr "Tirs" +#: ../../Zotlabs/Lib/Apps.php:602 +msgid "Undelete" +msgstr "" -#: ../../include/js_strings.php:79 -msgid "Wed" -msgstr "Ons" +#: ../../Zotlabs/Lib/Apps.php:610 +msgid "Add to app-tray" +msgstr "" -#: ../../include/js_strings.php:80 -msgid "Thu" -msgstr "Tors" +#: ../../Zotlabs/Lib/Apps.php:611 +msgid "Remove from app-tray" +msgstr "" -#: ../../include/js_strings.php:81 -msgid "Fri" -msgstr "Fre" +#: ../../Zotlabs/Lib/Apps.php:612 +msgid "Pin to navbar" +msgstr "" -#: ../../include/js_strings.php:82 -msgid "Sat" -msgstr "Lør" +#: ../../Zotlabs/Lib/Apps.php:613 +msgid "Unpin from navbar" +msgstr "" -#: ../../include/js_strings.php:83 -msgctxt "calendar" -msgid "today" -msgstr "idag" +#: ../../Zotlabs/Lib/Techlevels.php:10 +msgid "0. Beginner/Basic" +msgstr "" -#: ../../include/js_strings.php:84 -msgctxt "calendar" -msgid "month" -msgstr "måned" +#: ../../Zotlabs/Lib/Techlevels.php:11 +msgid "1. Novice - not skilled but willing to learn" +msgstr "" -#: ../../include/js_strings.php:85 -msgctxt "calendar" -msgid "week" -msgstr "uke" +#: ../../Zotlabs/Lib/Techlevels.php:12 +msgid "2. Intermediate - somewhat comfortable" +msgstr "" -#: ../../include/js_strings.php:86 -msgctxt "calendar" -msgid "day" -msgstr "dag" +#: ../../Zotlabs/Lib/Techlevels.php:13 +msgid "3. Advanced - very comfortable" +msgstr "" -#: ../../include/js_strings.php:87 -msgctxt "calendar" -msgid "All day" -msgstr "Hele dagen" +#: ../../Zotlabs/Lib/Techlevels.php:14 +msgid "4. Expert - I can write computer code" +msgstr "" -#: ../../include/network.php:657 -msgid "view full size" -msgstr "vis full størrelse" +#: ../../Zotlabs/Lib/Techlevels.php:15 +msgid "5. Wizard - I probably know more than you do" +msgstr "" -#: ../../include/network.php:1885 -msgid "No Subject" -msgstr "Uten emne" +#: ../../Zotlabs/Lib/Libzotdir.php:163 +msgid "Directory Options" +msgstr "Kataloginnstillinger" -#: ../../include/network.php:2146 ../../include/network.php:2147 -msgid "Friendica" -msgstr "Friendica" +#: ../../Zotlabs/Lib/Libzotdir.php:165 +msgid "Safe Mode" +msgstr "Trygt modus" -#: ../../include/network.php:2148 -msgid "OStatus" -msgstr "OStatus" +#: ../../Zotlabs/Lib/Libzotdir.php:166 +msgid "Public Forums Only" +msgstr "Bare offentlige forum" -#: ../../include/network.php:2149 -msgid "GNU-Social" -msgstr "" +#: ../../Zotlabs/Lib/Libzotdir.php:168 +msgid "This Website Only" +msgstr "Kun dette nettstedet" -#: ../../include/network.php:2150 -msgid "RSS/Atom" -msgstr "RSS/Atom" +#: ../../Zotlabs/Lib/Libzot.php:679 +msgid "Unable to verify channel signature" +msgstr "Ikke i stand til å sjekke kanalsignaturen" -#: ../../include/network.php:2152 -msgid "Diaspora" -msgstr "Diaspora" +#: ../../Zotlabs/Lib/ThreadItem.php:110 +msgid "Restricted message" +msgstr "" -#: ../../include/network.php:2153 -msgid "Facebook" -msgstr "Facebook" +#: ../../Zotlabs/Lib/ThreadItem.php:117 +msgid "Direct message" +msgstr "" -#: ../../include/network.php:2154 -msgid "Zot" -msgstr "Zot" +#: ../../Zotlabs/Lib/ThreadItem.php:122 +msgid "Public Policy" +msgstr "" -#: ../../include/network.php:2155 -msgid "LinkedIn" -msgstr "LinkedIn" +#: ../../Zotlabs/Lib/ThreadItem.php:160 +msgid "Privacy conflict. Discretion advised." +msgstr "" -#: ../../include/network.php:2156 -msgid "XMPP/IM" -msgstr "XMPP/IM" +#: ../../Zotlabs/Lib/ThreadItem.php:191 ../../Zotlabs/Storage/Browser.php:369 +msgid "Admin Delete" +msgstr "" -#: ../../include/network.php:2157 -msgid "MySpace" -msgstr "MySpace" +#: ../../Zotlabs/Lib/ThreadItem.php:319 +msgid "Reply on this comment" +msgstr "" -#: ../../include/photos.php:110 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "Bilde overstiger nettstedets størrelsesbegrensning på %lu bytes" +#: ../../Zotlabs/Lib/ThreadItem.php:319 +msgid "reply" +msgstr "" -#: ../../include/photos.php:117 -msgid "Image file is empty." -msgstr "Bildefilen er tom." +#: ../../Zotlabs/Lib/ThreadItem.php:319 +msgid "Reply to" +msgstr "" -#: ../../include/photos.php:255 -msgid "Photo storage failed." -msgstr "Bildelagring mislyktes." +#: ../../Zotlabs/Lib/ThreadItem.php:342 +msgid "Delivery Report" +msgstr "Leveringsrapport" -#: ../../include/photos.php:295 -msgid "a new photo" -msgstr "et nytt bilde" +#: ../../Zotlabs/Lib/ThreadItem.php:362 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d kommentar" +msgstr[1] "%d kommentarer" -#: ../../include/photos.php:299 +#: ../../Zotlabs/Lib/ThreadItem.php:363 #, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" -msgstr "%1$s la inn %2$s til %3$s" +msgid "%d unseen" +msgstr "" -#: ../../include/photos.php:506 -msgid "Upload New Photos" -msgstr "Last opp nye bilder" +#: ../../Zotlabs/Lib/ThreadItem.php:413 +msgid "Forum" +msgstr "" -#: ../../include/zot.php:699 -msgid "Invalid data packet" -msgstr "Ugyldig datapakke" +#: ../../Zotlabs/Lib/ThreadItem.php:420 +msgid "to" +msgstr "til" -#: ../../include/zot.php:715 -msgid "Unable to verify channel signature" -msgstr "Ikke i stand til å sjekke kanalsignaturen" +#: ../../Zotlabs/Lib/ThreadItem.php:422 +msgid "Wall-to-Wall" +msgstr "vegg-til-vegg" -#: ../../include/zot.php:2363 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "Ikke i stand til å bekrefte signaturen til %s" +#: ../../Zotlabs/Lib/ThreadItem.php:423 +msgid "via Wall-To-Wall:" +msgstr "via vegg-til-vegg:" -#: ../../include/zot.php:3712 -msgid "invalid target signature" -msgstr "Målets signatur er ugyldig" +#: ../../Zotlabs/Lib/ThreadItem.php:451 +msgid "Attend" +msgstr "" -#: ../../include/page_widgets.php:6 -msgid "New Page" -msgstr "Ny side" +#: ../../Zotlabs/Lib/ThreadItem.php:469 +msgid "Go to previous comment" +msgstr "" -#: ../../include/page_widgets.php:43 -msgid "Title" -msgstr "Tittel" +#: ../../Zotlabs/Lib/ThreadItem.php:482 +msgid "Add to Calendar" +msgstr "Legg til i kalender" -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "Kan se min normale strøm og innlegg" +#: ../../Zotlabs/Lib/ThreadItem.php:841 +msgid "Image" +msgstr "Bilde" -#: ../../include/permissions.php:27 -msgid "Can view my default channel profile" -msgstr "Kan se min standard kanalprofil" +#: ../../Zotlabs/Lib/ThreadItem.php:843 +msgid "Insert Link" +msgstr "Sett inn lenke" -#: ../../include/permissions.php:28 -msgid "Can view my connections" -msgstr "Kan se mine forbindelser" +#: ../../Zotlabs/Lib/ThreadItem.php:844 +msgid "Video" +msgstr "Video" -#: ../../include/permissions.php:29 -msgid "Can view my file storage and photos" -msgstr "Kan se mine filer og bilder" +#: ../../Zotlabs/Lib/ThreadItem.php:853 +msgid "Your full name (required)" +msgstr "" -#: ../../include/permissions.php:30 -msgid "Can view my webpages" -msgstr "Kan se mine websider" +#: ../../Zotlabs/Lib/ThreadItem.php:854 +msgid "Your email address (required)" +msgstr "" -#: ../../include/permissions.php:33 -msgid "Can send me their channel stream and posts" -msgstr "Kan sende meg deres kanalstrøm og innlegg" +#: ../../Zotlabs/Lib/ThreadItem.php:855 +msgid "Your website URL (optional)" +msgstr "" -#: ../../include/permissions.php:34 -msgid "Can post on my channel page (\"wall\")" -msgstr "Kan lage innlegg på min kanalside (\"vegg\")" +#: ../../Zotlabs/Lib/DB_Upgrade.php:67 +msgid "Source code of failed update: " +msgstr "" -#: ../../include/permissions.php:35 -msgid "Can comment on or like my posts" -msgstr "Kan kommentere på eller like mine innlegg" +#: ../../Zotlabs/Lib/DB_Upgrade.php:88 +#, php-format +msgid "Update Error at %s" +msgstr "Oppdateringsfeil ved %s" -#: ../../include/permissions.php:36 -msgid "Can send me private mail messages" -msgstr "Kan sende meg private meldinger" +#: ../../Zotlabs/Lib/DB_Upgrade.php:94 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "Oppdatering %s mislyktes. Se feilloggen." -#: ../../include/permissions.php:37 -msgid "Can like/dislike stuff" -msgstr "Kan like/ikke like forskjellige greier" +#: ../../Zotlabs/Lib/PermissionDescription.php:108 +#: ../../Zotlabs/Access/PermissionRoles.php:384 +msgid "Public" +msgstr "Offentlig" -#: ../../include/permissions.php:37 -msgid "Profiles and things other than posts/comments" -msgstr "Profiler og andre ting enn innlegg/kommentarer" +#: ../../Zotlabs/Lib/PermissionDescription.php:109 +msgid "Anybody in the $Projectname network" +msgstr "" -#: ../../include/permissions.php:39 -msgid "Can forward to all my channel contacts via post @mentions" -msgstr "Kan videresende til alle mine kanalkontakter via @navn i innlegg" +#: ../../Zotlabs/Lib/PermissionDescription.php:110 +#, php-format +msgid "Any account on %s" +msgstr "" -#: ../../include/permissions.php:39 -msgid "Advanced - useful for creating group forum channels" -msgstr "Avansert - nyttig for å lage forumkanaler for grupper" +#: ../../Zotlabs/Lib/PermissionDescription.php:111 +msgid "Any of my connections" +msgstr "" -#: ../../include/permissions.php:40 -msgid "Can chat with me (when available)" -msgstr "Kan chatte/sende lynmeldinger til meg (når tilgjengelig)" +#: ../../Zotlabs/Lib/PermissionDescription.php:112 +msgid "Only connections I specifically allow" +msgstr "" -#: ../../include/permissions.php:41 -msgid "Can write to my file storage and photos" -msgstr "Kan skrive til mitt lager for filer og bilder" +#: ../../Zotlabs/Lib/PermissionDescription.php:113 +msgid "Anybody authenticated (could include visitors from other networks)" +msgstr "" -#: ../../include/permissions.php:42 -msgid "Can edit my webpages" -msgstr "Kan endre mine websider" +#: ../../Zotlabs/Lib/PermissionDescription.php:114 +msgid "Any connections including those who haven't yet been approved" +msgstr "" -#: ../../include/permissions.php:44 -msgid "Can source my public posts in derived channels" -msgstr "Kan bruke mine offentlige innlegg som kanalkilde i egne kanaler" +#: ../../Zotlabs/Lib/PermissionDescription.php:150 +msgid "" +"This is your default setting for the audience of your normal stream, and " +"posts." +msgstr "" -#: ../../include/permissions.php:44 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Litt avansert - svært nyttig i åpne fellesskap" +#: ../../Zotlabs/Lib/PermissionDescription.php:151 +msgid "" +"This is your default setting for who can view your default channel profile" +msgstr "" -#: ../../include/permissions.php:46 -msgid "Can administer my channel resources" -msgstr "Kan administrere mine kanalressurser" +#: ../../Zotlabs/Lib/PermissionDescription.php:152 +msgid "This is your default setting for who can view your connections" +msgstr "" -#: ../../include/permissions.php:46 +#: ../../Zotlabs/Lib/PermissionDescription.php:153 msgid "" -"Extremely advanced. Leave this alone unless you know what you are doing" -msgstr "Ekstremt avansert. La dette være med mindre du vet hva du gjør" +"This is your default setting for who can view your file storage and photos" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:154 +msgid "This is your default setting for the audience of your webpages" +msgstr "" + +#: ../../Zotlabs/Lib/Libsync.php:805 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "Ikke i stand til å bekrefte signaturen til %s" -#: ../../include/permissions.php:877 +#: ../../Zotlabs/Access/PermissionRoles.php:337 msgid "Social Networking" msgstr "Sosialt nettverk" -#: ../../include/permissions.php:877 +#: ../../Zotlabs/Access/PermissionRoles.php:338 +msgid "Social - Federation" +msgstr "" + +#: ../../Zotlabs/Access/PermissionRoles.php:339 msgid "Social - Mostly Public" msgstr "Sosial - ganske offentlig" -#: ../../include/permissions.php:877 +#: ../../Zotlabs/Access/PermissionRoles.php:340 msgid "Social - Restricted" msgstr "Sosial - begrenset" -#: ../../include/permissions.php:877 +#: ../../Zotlabs/Access/PermissionRoles.php:341 msgid "Social - Private" msgstr "Sosial - privat" -#: ../../include/permissions.php:878 +#: ../../Zotlabs/Access/PermissionRoles.php:344 msgid "Community Forum" msgstr "Forum for fellesskap" -#: ../../include/permissions.php:878 +#: ../../Zotlabs/Access/PermissionRoles.php:345 msgid "Forum - Mostly Public" msgstr "Forum - ganske offentlig" -#: ../../include/permissions.php:878 +#: ../../Zotlabs/Access/PermissionRoles.php:346 msgid "Forum - Restricted" msgstr "Forum - begrenset" -#: ../../include/permissions.php:878 +#: ../../Zotlabs/Access/PermissionRoles.php:347 msgid "Forum - Private" msgstr "Forum - privat" -#: ../../include/permissions.php:879 +#: ../../Zotlabs/Access/PermissionRoles.php:350 msgid "Feed Republish" msgstr "Republisering av strømmet innhold" -#: ../../include/permissions.php:879 +#: ../../Zotlabs/Access/PermissionRoles.php:351 msgid "Feed - Mostly Public" msgstr "Strøm - ganske offentlig" -#: ../../include/permissions.php:879 +#: ../../Zotlabs/Access/PermissionRoles.php:352 msgid "Feed - Restricted" msgstr "Strøm - begrenset" -#: ../../include/permissions.php:880 +#: ../../Zotlabs/Access/PermissionRoles.php:355 msgid "Special Purpose" msgstr "Spesiell bruk" -#: ../../include/permissions.php:880 +#: ../../Zotlabs/Access/PermissionRoles.php:356 msgid "Special - Celebrity/Soapbox" msgstr "Spesiell - kjendis/talerstol" -#: ../../include/permissions.php:880 +#: ../../Zotlabs/Access/PermissionRoles.php:357 msgid "Special - Group Repository" msgstr "Spesiell - gruppelager" -#: ../../include/permissions.php:881 +#: ../../Zotlabs/Access/PermissionRoles.php:361 msgid "Custom/Expert Mode" msgstr "Tilpasset/Ekspertmodus" -#: ../../include/activities.php:41 -msgid " and " -msgstr "og" - -#: ../../include/activities.php:49 -msgid "public profile" -msgstr "offentlig profil" - -#: ../../include/activities.php:58 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s endret %2$s til “%3$s”" - -#: ../../include/activities.php:59 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "Besøk %1$s sitt %2$s" - -#: ../../include/activities.php:62 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s har oppdatert %2$s, endret %3$s." +#: ../../Zotlabs/Access/PermissionRoles.php:385 +msgid "Personal" +msgstr "Personlig" -#: ../../include/bb2diaspora.php:398 -msgid "Attachments:" -msgstr "Vedlegg:" +#: ../../Zotlabs/Access/PermissionRoles.php:386 +msgid "Community forum" +msgstr "" -#: ../../include/bb2diaspora.php:487 -msgid "$Projectname event notification:" -msgstr "$Projectname hendelsesvarsling:" +#: ../../Zotlabs/Access/PermissionRoles.php:387 +msgid "Custom" +msgstr "" -#: ../../view/theme/redbasic/php/config.php:82 -msgid "Focus (Hubzilla default)" -msgstr "Focus (Hubzilla standardtema)" +#: ../../Zotlabs/Access/Permissions.php:56 +msgid "Can view my channel stream and posts" +msgstr "" -#: ../../view/theme/redbasic/php/config.php:103 -msgid "Theme settings" -msgstr "Temainnstillinger" +#: ../../Zotlabs/Access/Permissions.php:57 +msgid "Can send me their channel stream and posts" +msgstr "Kan sende meg deres kanalstrøm og innlegg" -#: ../../view/theme/redbasic/php/config.php:104 -msgid "Select scheme" -msgstr "Velg skjema" +#: ../../Zotlabs/Access/Permissions.php:58 +msgid "Can view my default channel profile" +msgstr "Kan se min standard kanalprofil" -#: ../../view/theme/redbasic/php/config.php:105 -msgid "Narrow navbar" -msgstr "Smal navigasjonslinje" +#: ../../Zotlabs/Access/Permissions.php:59 +msgid "Can view my connections" +msgstr "Kan se mine forbindelser" -#: ../../view/theme/redbasic/php/config.php:106 -msgid "Navigation bar background color" -msgstr "Navigasjonslinjens bakgrunnsfarge" +#: ../../Zotlabs/Access/Permissions.php:60 +msgid "Can view my file storage and photos" +msgstr "Kan se mine filer og bilder" -#: ../../view/theme/redbasic/php/config.php:107 -msgid "Navigation bar gradient top color" -msgstr "Navigasjonslinjens graderte toppfarge" +#: ../../Zotlabs/Access/Permissions.php:61 +msgid "Can upload/modify my file storage and photos" +msgstr "" -#: ../../view/theme/redbasic/php/config.php:108 -msgid "Navigation bar gradient bottom color" -msgstr "Navigasjonslinjens graderte bunnfarge" +#: ../../Zotlabs/Access/Permissions.php:62 +msgid "Can view my channel webpages" +msgstr "" -#: ../../view/theme/redbasic/php/config.php:109 -msgid "Navigation active button gradient top color" -msgstr "Aktiv navigasjonsknapp sin graderte toppfarge" +#: ../../Zotlabs/Access/Permissions.php:63 +msgid "Can view my wiki pages" +msgstr "" -#: ../../view/theme/redbasic/php/config.php:110 -msgid "Navigation active button gradient bottom color" -msgstr "Aktiv navigasjonsknapp sin graderte bunnfarge" +#: ../../Zotlabs/Access/Permissions.php:64 +msgid "Can create/edit my channel webpages" +msgstr "" -#: ../../view/theme/redbasic/php/config.php:111 -msgid "Navigation bar border color " -msgstr "Navigasjonslinjens kantfarge" +#: ../../Zotlabs/Access/Permissions.php:65 +msgid "Can write to my wiki pages" +msgstr "" -#: ../../view/theme/redbasic/php/config.php:112 -msgid "Navigation bar icon color " -msgstr "Navigasjonslinjens ikonfarge" +#: ../../Zotlabs/Access/Permissions.php:66 +msgid "Can post on my channel (wall) page" +msgstr "" -#: ../../view/theme/redbasic/php/config.php:113 -msgid "Navigation bar active icon color " -msgstr "Navigasjonslinjens aktive ikoners farge" +#: ../../Zotlabs/Access/Permissions.php:67 +msgid "Can comment on or like my posts" +msgstr "Kan kommentere på eller like mine innlegg" -#: ../../view/theme/redbasic/php/config.php:114 -msgid "link color" -msgstr "lenkefarge" +#: ../../Zotlabs/Access/Permissions.php:68 +msgid "Can send me direct messages" +msgstr "" -#: ../../view/theme/redbasic/php/config.php:115 -msgid "Set font-color for banner" -msgstr "Angi skriftfargen for banneret" +#: ../../Zotlabs/Access/Permissions.php:69 +msgid "Can like/dislike profiles and profile things" +msgstr "" -#: ../../view/theme/redbasic/php/config.php:116 -msgid "Set the background color" -msgstr "Angi bakgrunnsfargen" +#: ../../Zotlabs/Access/Permissions.php:70 +msgid "Can chat with me" +msgstr "" -#: ../../view/theme/redbasic/php/config.php:117 -msgid "Set the background image" -msgstr "Angi bakgrunnsbilde" +#: ../../Zotlabs/Access/Permissions.php:71 +msgid "Can source/mirror my public posts in derived channels" +msgstr "" -#: ../../view/theme/redbasic/php/config.php:118 -msgid "Set the background color of items" -msgstr "Angi bakgrunnsfargen til elementer" +#: ../../Zotlabs/Access/Permissions.php:73 +msgid "Can administer my channel" +msgstr "" -#: ../../view/theme/redbasic/php/config.php:119 -msgid "Set the background color of comments" -msgstr "Angi bakgrunnsfargen til kommentarer" +#: ../../Zotlabs/Storage/Browser.php:292 +msgid "Change filename to" +msgstr "" -#: ../../view/theme/redbasic/php/config.php:120 -msgid "Set the border color of comments" -msgstr "Angi kantfargen til kommentarer" +#: ../../Zotlabs/Storage/Browser.php:309 ../../Zotlabs/Storage/Browser.php:390 +msgid "Select a target location" +msgstr "" -#: ../../view/theme/redbasic/php/config.php:121 -msgid "Set the indent for comments" -msgstr "Angi innrykket til kommentarer" +#: ../../Zotlabs/Storage/Browser.php:310 ../../Zotlabs/Storage/Browser.php:391 +msgid "Copy to target location" +msgstr "" -#: ../../view/theme/redbasic/php/config.php:122 -msgid "Set the basic color for item icons" -msgstr "Angi grunnfargen for elementikoner" +#: ../../Zotlabs/Storage/Browser.php:311 ../../Zotlabs/Storage/Browser.php:389 +msgid "Set permissions for all files and sub folders" +msgstr "" -#: ../../view/theme/redbasic/php/config.php:123 -msgid "Set the hover color for item icons" -msgstr "Angi fargen til elementikoner ved berøring" +#: ../../Zotlabs/Storage/Browser.php:312 +msgid "Notify your contacts about this file" +msgstr "Varsle dine kontakter om denne filen" -#: ../../view/theme/redbasic/php/config.php:124 -msgid "Set font-size for the entire application" -msgstr "Angi skriftstørrelsen for hele programmet" +#: ../../Zotlabs/Storage/Browser.php:351 +msgid "File category" +msgstr "" -#: ../../view/theme/redbasic/php/config.php:124 -msgid "Example: 14px" -msgstr "Eksempel: 14px" +#: ../../Zotlabs/Storage/Browser.php:362 +msgid "Total" +msgstr "Totalt" -#: ../../view/theme/redbasic/php/config.php:125 -msgid "Set font-size for posts and comments" -msgstr "Angi skriftstørrelse for innlegg og kommentarer" +#: ../../Zotlabs/Storage/Browser.php:364 +msgid "Shared" +msgstr "Delt" -#: ../../view/theme/redbasic/php/config.php:126 -msgid "Set font-color for posts and comments" -msgstr "Angi skriftfargen for innlegg og kommentarer" +#: ../../Zotlabs/Storage/Browser.php:366 +msgid "Add Files" +msgstr "" -#: ../../view/theme/redbasic/php/config.php:127 -msgid "Set radius of corners" -msgstr "Angi hjørneradius" +#: ../../Zotlabs/Storage/Browser.php:381 +msgid "parent" +msgstr "opp et nivå" -#: ../../view/theme/redbasic/php/config.php:128 -msgid "Set shadow depth of photos" -msgstr "Angi skyggedybden til bilder" +#: ../../Zotlabs/Storage/Browser.php:399 +msgid "Select All" +msgstr "" -#: ../../view/theme/redbasic/php/config.php:129 -msgid "Set maximum width of content region in pixel" -msgstr "Angi største bredde for innholdsregionen i pixler" +#: ../../Zotlabs/Storage/Browser.php:400 +msgid "Bulk Actions" +msgstr "" -#: ../../view/theme/redbasic/php/config.php:129 -msgid "Leave empty for default width" -msgstr "La feltet stå tomt for å bruke standard bredde" +#: ../../Zotlabs/Storage/Browser.php:401 +msgid "Adjust Permissions" +msgstr "" -#: ../../view/theme/redbasic/php/config.php:130 -msgid "Left align page content" -msgstr "Venstrejuster sideinnhold" +#: ../../Zotlabs/Storage/Browser.php:402 +msgid "Move or Copy" +msgstr "" -#: ../../view/theme/redbasic/php/config.php:131 -msgid "Set minimum opacity of nav bar - to hide it" -msgstr "Angi minste dekkevne for navigasjonslinjen - for å skjule den" +#: ../../Zotlabs/Storage/Browser.php:405 +msgid "Info" +msgstr "" -#: ../../view/theme/redbasic/php/config.php:132 -msgid "Set size of conversation author photo" -msgstr "Angi størrelsen for samtalens forfatterbilde" +#: ../../Zotlabs/Storage/Browser.php:406 +msgid "Rename" +msgstr "" -#: ../../view/theme/redbasic/php/config.php:133 -msgid "Set size of followup author photos" -msgstr "Angi størrelsen på forfatterbilder ved oppfølging" +#: ../../Zotlabs/Storage/Browser.php:408 +msgid "Attachment BBcode" +msgstr "" -#: ../../boot.php:1162 -#, php-format -msgctxt "opensearch" -msgid "Search %1$s (%2$s)" +#: ../../Zotlabs/Storage/Browser.php:409 +msgid "Embed BBcode" msgstr "" -#: ../../boot.php:1162 -msgctxt "opensearch" -msgid "$Projectname" +#: ../../Zotlabs/Storage/Browser.php:410 +msgid "Link BBcode" msgstr "" -#: ../../boot.php:1480 +#: ../../Zotlabs/Storage/Browser.php:480 #, php-format -msgid "Update %s failed. See error logs." -msgstr "Oppdatering %s mislyktes. Se feilloggen." +msgid "You are using %1$s of your available file storage." +msgstr "Du bruker %1$s av din tilgjengelige lagringsplass." -#: ../../boot.php:1483 +#: ../../Zotlabs/Storage/Browser.php:485 #, php-format -msgid "Update Error at %s" -msgstr "Oppdateringsfeil ved %s" +msgid "You are using %1$s of %2$s available file storage. (%3$s%)" +msgstr "Du bruker %1$s av %2$s tilgjengelig lagringsplass (%3$s%)" + +#: ../../Zotlabs/Storage/Browser.php:496 +msgid "WARNING:" +msgstr "ADVARSEL:" + +#: ../../Zotlabs/Storage/Browser.php:537 +msgid "Create new folder" +msgstr "Lag ny mappe" + +#: ../../Zotlabs/Storage/Browser.php:539 +msgid "Upload file" +msgstr "Last opp fil" -#: ../../boot.php:1684 +#: ../../Zotlabs/Storage/Browser.php:551 +msgid "Drop files here to immediately upload" +msgstr "" + +#: ../../Zotlabs/Storage/Browser.php:554 msgid "" -"Create an account to access services and applications within the Hubzilla" -msgstr "Lag en konto for å få tilgang til tjenester og programmer i Hubzilla" +"You can select files via the upload button or drop them right here or into " +"an existing folder." +msgstr "" + +#: ../../boot.php:1724 +msgid "Create an account to access services and applications" +msgstr "" + +#: ../../boot.php:1742 +msgid "Email or nickname" +msgstr "" -#: ../../boot.php:1706 +#: ../../boot.php:1752 msgid "Password" msgstr "Passord" -#: ../../boot.php:1707 +#: ../../boot.php:1753 msgid "Remember me" msgstr "Husk meg" -#: ../../boot.php:1710 +#: ../../boot.php:1756 msgid "Forgot your password?" msgstr "Glemt passordet ditt?" -#: ../../boot.php:2276 -msgid "toggle mobile" -msgstr "Skru på mobil" +#: ../../boot.php:2637 +#, php-format +msgid "[$Projectname] Website SSL error for %s" +msgstr "" -#: ../../boot.php:2425 +#: ../../boot.php:2642 msgid "Website SSL certificate is not valid. Please correct." msgstr "Nettstedets SSL-sertifikat er ikke gyldig. Vennligst fiks dette." -#: ../../boot.php:2428 +#: ../../boot.php:2758 #, php-format -msgid "[hubzilla] Website SSL error for %s" -msgstr "[hubzilla] SSL-feil ved nettsted hos %s" +msgid "[$Projectname] Cron tasks not running on %s" +msgstr "" -#: ../../boot.php:2469 +#: ../../boot.php:2763 msgid "Cron/Scheduled tasks not running." msgstr "Cron/planlagte oppgaver kjører ikke." - -#: ../../boot.php:2473 -#, php-format -msgid "[hubzilla] Cron tasks not running on %s" -msgstr "[hubzilla] Cron-oppgaver kjører ikke på %s" diff --git a/view/nb-no/hstrings.php b/view/nb-no/hstrings.php index e03ba321d..ceb56ce8f 100644 --- a/view/nb-no/hstrings.php +++ b/view/nb-no/hstrings.php @@ -2,1798 +2,1333 @@ if(! function_exists("string_plural_select_nb_no")) { function string_plural_select_nb_no($n){ - return ($n != 1);; + return ($n != 1); }} -; -App::$strings["parent"] = "opp et nivå"; -App::$strings["Collection"] = "Samling"; -App::$strings["Principal"] = "Viktigste"; -App::$strings["Addressbook"] = "Adressebok"; -App::$strings["Calendar"] = "Kalender"; -App::$strings["Schedule Inbox"] = "Tidsplan innboks"; -App::$strings["Schedule Outbox"] = "Tidsplan utboks"; -App::$strings["Unknown"] = "Ukjent"; -App::$strings["Files"] = "Filer"; -App::$strings["Total"] = "Totalt"; -App::$strings["Shared"] = "Delt"; -App::$strings["Create"] = "Lag"; -App::$strings["Upload"] = "Last opp"; +App::$rtl = 0; +App::$strings["plural_function_code"] = "(n != 1)"; +App::$strings["Default"] = "Standard"; +App::$strings["Focus (Hubzilla default)"] = "Focus (Hubzilla standard)"; +App::$strings["Submit"] = "Lagre"; +App::$strings["Theme settings"] = "Instillinger for utseende"; +App::$strings["Narrow navbar"] = "Smal navigasjonslinje"; +App::$strings["No"] = "Nei"; +App::$strings["Yes"] = "Ja"; +App::$strings["Navigation bar background color"] = "Navigasjonslinjens bakgrunnsfarge"; +App::$strings["Navigation bar icon color "] = "Navigasjonslinjens ikonfarge"; +App::$strings["Navigation bar active icon color "] = "Navigasjonslinjens aktive ikoners farge"; +App::$strings["Link color"] = "Lenkefarge"; +App::$strings["Link hover color"] = "Lenkefarge når musepekeren er over"; +App::$strings["Set font-color for banner"] = "Angi skriftfargen for banneret"; +App::$strings["Set the background color"] = "Angi bakgrunnsfargen"; +App::$strings["Set the background image"] = "Angi bakgrunnsbilde"; +App::$strings["Set the background color of items"] = "Angi bakgrunnsfargen til elementer"; +App::$strings["Set the background color of comments"] = "Angi bakgrunnsfargen til kommentarer"; +App::$strings["Set font-size for the entire application"] = "Angi skriftstørrelsen for hele programmet"; +App::$strings["Examples: 1rem, 100%, 16px"] = "For eksempel: 1rem, 100%, 16px"; +App::$strings["Set font-color for posts and comments"] = "Angi skriftfargen for innlegg og kommentarer"; +App::$strings["Set radius of corners"] = "Angi hjørneradius"; +App::$strings["Example: 4px"] = "For eksempel: 4px"; +App::$strings["Set shadow depth of photos"] = "Angi skyggedybden til bilder"; +App::$strings["Set maximum width of content region in rem"] = "Set maksbredde for hovedregionen i rem"; +App::$strings["Leave empty for default width"] = "La feltet stå tomt for å bruke standard bredde"; +App::$strings["Set size of conversation author photo"] = "Angi størrelsen for samtalens forfatterbilde"; +App::$strings["Set size of followup author photos"] = "Angi størrelsen på forfatterbilder ved oppfølging"; +App::$strings["Show advanced settings"] = "Vis avanserte innstillinger"; +App::$strings["Source channel not found."] = "Fant ikke kildekanalen."; +App::$strings["Access Denied"] = "Ingen tilgang"; +App::$strings["Enable Community Moderation"] = "Slå på gruppemoderering"; +App::$strings["Reputation automatically given to new members"] = ""; +App::$strings["Reputation will never fall below this value"] = ""; +App::$strings["Minimum reputation before posting is allowed"] = ""; +App::$strings["Minimum reputation before commenting is allowed"] = ""; +App::$strings["Minimum reputation before a member is able to moderate other posts"] = ""; +App::$strings["Max ratio of moderator's reputation that can be added to/deducted from reputation of person being moderated"] = ""; +App::$strings["Reputation \"cost\" to post"] = ""; +App::$strings["Reputation \"cost\" to comment"] = ""; +App::$strings["Reputation automatically recovers at this rate per hour until it reaches minimum_to_post"] = ""; +App::$strings["When minimum_to_moderate > reputation > minimum_to_post reputation recovers at this rate per hour"] = ""; +App::$strings["Community Moderation Settings"] = ""; +App::$strings["Channel Reputation"] = ""; +App::$strings["Close"] = "Lukk"; +App::$strings["An Error has occurred."] = "Det oppsto en feil."; +App::$strings["Upvote"] = "Stem opp"; +App::$strings["Downvote"] = "Stem ned"; +App::$strings["Can moderate reputation on my channel."] = ""; +App::$strings["Block Completely"] = "Blokker helt"; +App::$strings["superblock settings updated"] = "innstillingene til superblokk ble oppdatert"; +App::$strings["Currently blocked"] = "Blokkert for øyeblikket"; +App::$strings["No channels currently blocked"] = "Ingen kanaler er blokkert i øyeblikket"; +App::$strings["Remove"] = "Fjern"; +App::$strings["NSA Bait App"] = ""; +App::$strings["Make yourself a political target."] = ""; +App::$strings["Recent Channel/Profile Viewers"] = ""; +App::$strings["No entries."] = ""; +App::$strings["Add new page"] = "Legg til ny side"; +App::$strings["Markdown"] = "Markdown"; +App::$strings["BBcode"] = "BBcode"; +App::$strings["Text"] = "Tekst"; +App::$strings["Options"] = "Valg"; +App::$strings["Wiki Pages"] = "Wikisider"; +App::$strings["Page name"] = "Sidenavn"; +App::$strings["Wikis"] = "Wikier"; App::$strings["Name"] = "Navn"; -App::$strings["Type"] = "Type"; -App::$strings["Size"] = "Størrelse"; -App::$strings["Last Modified"] = "Sist endret"; -App::$strings["Edit"] = "Endre"; -App::$strings["Delete"] = "Slett"; -App::$strings["You are using %1\$s of your available file storage."] = "Du bruker %1\$s av din tilgjengelige lagringsplass."; -App::$strings["You are using %1\$s of %2\$s available file storage. (%3\$s%)"] = "Du bruker %1\$s av %2\$s tilgjengelig lagringsplass (%3\$s%)"; -App::$strings["WARNING:"] = "ADVARSEL:"; -App::$strings["Create new folder"] = "Lag ny mappe"; -App::$strings["Upload file"] = "Last opp fil"; -App::$strings["Permission denied"] = "Tillatelse avvist"; -App::$strings["Permission denied."] = "Tillatelse avslått."; -App::$strings["Not Found"] = "Ikke funnet"; +App::$strings["__ctx:wiki_history__ Message"] = "Melding"; +App::$strings["Date"] = "Dato"; +App::$strings["Revert"] = "Tilbakestill"; +App::$strings["Compare"] = "Sammenlign"; +App::$strings["Wiki updated successfully"] = "Wikien ble oppdatert"; +App::$strings["Wiki files deleted successfully"] = "Wikifiler ble slettet"; +App::$strings["(No Title)"] = "(Ingen tittel)"; +App::$strings["Wiki page create failed."] = "Kunne ikke opprette wikiside."; +App::$strings["Wiki not found."] = "Fant ikke wikien."; +App::$strings["Destination name already exists"] = "Navnet finnes allerede"; +App::$strings["Page not found"] = "Fant ikke siden"; +App::$strings["Error reading page content"] = "Det oppstod en feil under lesing av innholder på siden"; +App::$strings["Error reading wiki"] = "Det oppstod en feil ved lesing av wikien"; +App::$strings["Page update failed."] = "Oppdatering av siden mislyktes."; +App::$strings["Nothing deleted"] = "Ingenting ble slettet"; +App::$strings["Compare: object not found."] = "Sammanlign: fant ikke objektet."; +App::$strings["Page updated"] = "Siden ble oppdatert"; +App::$strings["Wiki resource_id required for git commit"] = "Wiki ressurs_id er nødvendig for å lagre i git"; App::$strings["Page not found."] = "Siden ikke funnet."; -App::$strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Fjernautentisering blokkert. Du er logget inn på dette nettstedet lokalt. Vennligst logg ut og prøv på nytt."; -App::$strings["Welcome %s. Remote authentication successful."] = "Velkommen %s. Ekstern autentisering er vellykket."; -App::$strings["Requested profile is not available."] = "Forespurt profil er ikke tilgjengelig."; -App::$strings["Some blurb about what to do when you're new here"] = "En standardtekst om hva du bør gjøre som ny her"; -App::$strings["Block Name"] = "Byggeklossens navn"; -App::$strings["Blocks"] = "Byggeklosser"; -App::$strings["Block Title"] = "Byggeklossens tittel"; -App::$strings["Created"] = "Laget"; -App::$strings["Edited"] = "Endret"; -App::$strings["Share"] = "Del"; +App::$strings["Different viewers will see this text differently"] = "Denne teksten vil se forskjellig ut for ulike besøkende"; +App::$strings["Profile Unavailable."] = "Profilen er ikke tilgjengelig."; +App::$strings["Permission denied."] = "Tillatelse avslått."; +App::$strings["Invalid channel"] = "Ugyldig kanal"; +App::$strings["Error retrieving wiki"] = "Det oppstod en feil ved henting av wikien"; +App::$strings["Error creating zip file export folder"] = "Det oppstod en feil ved eksport av mappe til zip fil"; +App::$strings["Error downloading wiki: "] = ""; +App::$strings["Edit"] = "Endre"; +App::$strings["Download"] = ""; App::$strings["View"] = "Vis"; -App::$strings["Channel not found."] = "Kanalen ble ikke funnet."; -App::$strings["Permissions denied."] = "Tillatelse avvist."; -App::$strings["l, F j"] = "l, F j"; -App::$strings["Link to Source"] = "Lenke til kilde"; -App::$strings["Edit Event"] = "Endre hendelse"; -App::$strings["Create Event"] = "Lag hendelse"; -App::$strings["Previous"] = "Forrige"; -App::$strings["Next"] = "Neste"; -App::$strings["Export"] = "Eksport"; -App::$strings["Import"] = "Importer"; -App::$strings["Submit"] = "Send"; -App::$strings["Today"] = "Idag"; -App::$strings["You must be logged in to see this page."] = "Du må være innloegget for å se denne siden."; -App::$strings["Posts and comments"] = ""; -App::$strings["Only posts"] = ""; -App::$strings["Insufficient permissions. Request redirected to profile page."] = "Utilstrekkelig tillatelse. Forespørsel omdirigert til profilsiden."; -App::$strings["Room not found"] = "Rommet ble ikke funnet"; -App::$strings["Leave Room"] = "Forlat rom"; -App::$strings["Delete Room"] = ""; -App::$strings["I am away right now"] = "Jeg er borte akkurat nå"; -App::$strings["I am online"] = "Jeg er online"; -App::$strings["Bookmark this room"] = "Bokmerk dette rommet"; +App::$strings["Create New"] = "Opprett nytt"; +App::$strings["Wiki name"] = ""; +App::$strings["Content type"] = ""; +App::$strings["Type"] = "Type"; +App::$strings["Any type"] = ""; +App::$strings["Lock content type"] = ""; +App::$strings["Create a status post for this wiki"] = ""; +App::$strings["Edit Wiki Name"] = ""; +App::$strings["Wiki not found"] = ""; +App::$strings["Rename page"] = ""; +App::$strings["Share"] = "Del"; +App::$strings["Error retrieving page content"] = ""; +App::$strings["New page"] = ""; +App::$strings["Revision Comparison"] = ""; +App::$strings["Cancel"] = "Avbryt"; +App::$strings["Short description of your changes (optional)"] = ""; +App::$strings["Source"] = ""; +App::$strings["New page name"] = ""; +App::$strings["Embed image from photo albums"] = ""; +App::$strings["Embed an image from your albums"] = ""; +App::$strings["OK"] = "OK"; +App::$strings["Choose images to embed"] = ""; +App::$strings["Choose an album"] = ""; +App::$strings["Choose a different album"] = ""; +App::$strings["Error getting album list"] = ""; +App::$strings["Error getting photo link"] = ""; +App::$strings["Error getting album"] = ""; +App::$strings["History"] = ""; +App::$strings["Error creating wiki. Invalid name."] = ""; +App::$strings["A wiki with this name already exists."] = ""; +App::$strings["Wiki created, but error creating Home page."] = ""; +App::$strings["Error creating wiki"] = ""; +App::$strings["Error updating wiki. Invalid name."] = ""; +App::$strings["Error updating wiki"] = ""; +App::$strings["Wiki delete permission denied."] = ""; +App::$strings["Error deleting wiki"] = ""; +App::$strings["New page created"] = ""; +App::$strings["Cannot delete Home"] = ""; +App::$strings["Current Revision"] = ""; +App::$strings["Selected Revision"] = ""; +App::$strings["You must be authenticated."] = ""; +App::$strings["System defaults:"] = ""; +App::$strings["Preferred Clipart IDs"] = ""; +App::$strings["List of preferred clipart ids. These will be shown first."] = ""; +App::$strings["Default Search Term"] = ""; +App::$strings["The default search term. These will be shown second."] = ""; +App::$strings["Return After"] = ""; +App::$strings["Page to load after image selection."] = ""; +App::$strings["View Profile"] = "Vis profil"; +App::$strings["Edit Profile"] = "Endre profil"; +App::$strings["Profile List"] = ""; +App::$strings["Order of Preferred"] = ""; +App::$strings["Sort order of preferred clipart ids."] = ""; +App::$strings["Newest first"] = ""; +App::$strings["As entered"] = ""; +App::$strings["Order of other"] = ""; +App::$strings["Sort order of other clipart ids."] = ""; +App::$strings["Most downloaded first"] = ""; +App::$strings["Most liked first"] = ""; +App::$strings["Preferred IDs Message"] = ""; +App::$strings["Message to display above preferred results."] = ""; +App::$strings["Uploaded by: "] = ""; +App::$strings["Drawn by: "] = ""; +App::$strings["Use this image"] = ""; +App::$strings["Or select from a free OpenClipart.org image:"] = ""; +App::$strings["Search Term"] = ""; +App::$strings["Unknown error. Please try again later."] = ""; +App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Hold nede Shift-knappen og last siden på nytt eller tøm nettleserens mellomlager hvis det nye bildet ikke vises umiddelbart."; +App::$strings["Profile photo updated successfully."] = ""; +App::$strings["Save Bookmarks"] = "Lagre bokmerker"; +App::$strings["Max queueworker threads"] = ""; +App::$strings["Minimum 4, default 4"] = ""; +App::$strings["Assume workers dead after"] = ""; +App::$strings["Minimum 120, default 300 seconds"] = ""; +App::$strings["Pause before starting next task"] = ""; +App::$strings["Minimum 100, default 100 microseconds"] = ""; +App::$strings["Queueworker Settings"] = ""; +App::$strings["Save"] = "Lagre"; +App::$strings["Rainbow Tag App"] = ""; +App::$strings["Add some colour to tag clouds"] = ""; +App::$strings["Rainbow Tag"] = ""; +App::$strings["Photo Cache settings saved."] = ""; +App::$strings["Saves a copy of images from external sites locally to increase your anonymity in the web."] = ""; +App::$strings["Minimal photo size for caching"] = ""; +App::$strings["In pixels. From 1 up to 1024, 0 will be replaced with system default."] = ""; +App::$strings["Photo Cache"] = ""; +App::$strings["Gallery"] = ""; +App::$strings["Photo Gallery"] = ""; +App::$strings["Requested profile is not available."] = "Forespurt profil er ikke tilgjengelig."; +App::$strings["Random Planet App"] = ""; +App::$strings["Set a random planet from the Star Wars Empire as your location when posting"] = ""; +App::$strings["Male"] = "Mannlig"; +App::$strings["Female"] = "Kvinnelig"; +App::$strings["OpenID protocol error. No ID returned."] = "OpenID protokollfeil. Ingen ID ble returnert."; +App::$strings["Welcome %s. Remote authentication successful."] = "Velkommen %s. Ekstern autentisering er vellykket."; +App::$strings["Login failed."] = "Innlogging mislyktes."; +App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Vi støtte på et problem under innloggingen med din OpenID. Vennligst sjekk at ID-en er stavet riktig."; +App::$strings["The error message was:"] = "Feilmeldingen var:"; +App::$strings["First Name"] = "Fornavn"; +App::$strings["Last Name"] = "Etternavn"; +App::$strings["Nickname"] = "Kallenavn"; +App::$strings["Full Name"] = "Fullt navn"; +App::$strings["Email"] = "E-post"; +App::$strings["Profile Photo"] = "Profilbilde"; +App::$strings["Profile Photo 16px"] = "Profilbilde 16px"; +App::$strings["Profile Photo 32px"] = "Profilbilde 32px"; +App::$strings["Profile Photo 48px"] = "Profilbilde 48px"; +App::$strings["Profile Photo 64px"] = "Profilbilde 64px"; +App::$strings["Profile Photo 80px"] = "Profilbilde 80px"; +App::$strings["Profile Photo 128px"] = "Profilbilde 128px"; +App::$strings["Timezone"] = "Tidssone"; +App::$strings["Homepage URL"] = "Hjemmeside URL"; +App::$strings["Language"] = "Språk"; +App::$strings["Birth Year"] = "Fødselsår"; +App::$strings["Birth Month"] = "Fødselsmåne"; +App::$strings["Birth Day"] = "Fødselsdag"; +App::$strings["Birthdate"] = "Fødselsdato"; +App::$strings["Gender"] = "Kjønn"; +App::$strings["lonely"] = ""; +App::$strings["drunk"] = ""; +App::$strings["horny"] = ""; +App::$strings["stoned"] = ""; +App::$strings["fucked up"] = ""; +App::$strings["clusterfucked"] = ""; +App::$strings["crazy"] = ""; +App::$strings["hurt"] = ""; +App::$strings["sleepy"] = ""; +App::$strings["grumpy"] = ""; +App::$strings["high"] = ""; +App::$strings["semi-conscious"] = ""; +App::$strings["in love"] = ""; +App::$strings["in lust"] = ""; +App::$strings["naked"] = ""; +App::$strings["stinky"] = ""; +App::$strings["sweaty"] = ""; +App::$strings["bleeding out"] = ""; +App::$strings["victorious"] = ""; +App::$strings["defeated"] = ""; +App::$strings["envious"] = ""; +App::$strings["jealous"] = ""; +App::$strings["Hubzilla Directory Stats"] = ""; +App::$strings["Total Hubs"] = ""; +App::$strings["Hubzilla Hubs"] = ""; +App::$strings["Friendica Hubs"] = ""; +App::$strings["Diaspora Pods"] = ""; +App::$strings["Hubzilla Channels"] = ""; +App::$strings["Friendica Channels"] = ""; +App::$strings["Diaspora Channels"] = ""; +App::$strings["Aged 35 and above"] = ""; +App::$strings["Aged 34 and under"] = ""; +App::$strings["Average Age"] = ""; +App::$strings["Known Chatrooms"] = ""; +App::$strings["Known Tags"] = ""; +App::$strings["Please note Diaspora and Friendica statistics are merely those **this directory** is aware of, and not all those known in the network. This also applies to chatrooms,"] = ""; +App::$strings["Channel is required."] = ""; +App::$strings["Invalid channel."] = ""; +App::$strings["Hubzilla Crosspost Connector Settings saved."] = ""; +App::$strings["Send public postings to Hubzilla channel by default"] = ""; +App::$strings["Hubzilla API Path"] = ""; +App::$strings["https://{sitename}/api"] = ""; +App::$strings["Hubzilla login name"] = ""; +App::$strings["Hubzilla channel name"] = ""; +App::$strings["Hubzilla password"] = ""; +App::$strings["Hubzilla Crosspost Connector"] = ""; +App::$strings["Post to Hubzilla"] = ""; +App::$strings["Photos imported"] = ""; +App::$strings["Permission denied"] = "Tillatelse avvist"; +App::$strings["Redmatrix Photo Album Import"] = ""; +App::$strings["This will import all your Redmatrix photo albums to this channel."] = ""; +App::$strings["Redmatrix Server base URL"] = ""; +App::$strings["Redmatrix Login Username"] = ""; +App::$strings["Redmatrix Login Password"] = ""; +App::$strings["Import just this album"] = ""; +App::$strings["Leave blank to import all albums"] = ""; +App::$strings["Maximum count to import"] = ""; +App::$strings["0 or blank to import all available"] = ""; +App::$strings["photo"] = "foto"; +App::$strings["Please contact your site administrator.
The provided API URL is not valid."] = ""; +App::$strings["We could not contact the GNU social API with the Path you entered."] = ""; +App::$strings["GNU social settings updated."] = ""; +App::$strings["Globally Available GNU social OAuthKeys"] = ""; +App::$strings["There are preconfigured OAuth key pairs for some GNU social servers available. If you are using one of them, please use these credentials.
If not feel free to connect to any other GNU social instance (see below)."] = ""; +App::$strings["Provide your own OAuth Credentials"] = ""; +App::$strings["No consumer key pair for GNU social found. Register your Hubzilla Account as an desktop client on your GNU social account, copy the consumer key pair here and enter the API base root.
Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Hubzilla installation at your favourite GNU social installation."] = ""; +App::$strings["OAuth Consumer Key"] = ""; +App::$strings["OAuth Consumer Secret"] = ""; +App::$strings["Base API Path"] = ""; +App::$strings["Remember the trailing /"] = ""; +App::$strings["GNU social application name"] = ""; +App::$strings["To connect to your GNU social account click the button below to get a security code from GNU social which you have to copy into the input box below and submit the form. Only your public posts will be posted to GNU social."] = ""; +App::$strings["Log in with GNU social"] = ""; +App::$strings["Copy the security code from GNU social here"] = ""; +App::$strings["Cancel Connection Process"] = ""; +App::$strings["Current GNU social API is"] = ""; +App::$strings["Cancel GNU social Connection"] = ""; +App::$strings["Currently connected to: "] = ""; +App::$strings["Note: Due your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to GNU social will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = ""; +App::$strings["Post to GNU social by default"] = ""; +App::$strings["If enabled your public postings will be posted to the associated GNU-social account by default"] = ""; +App::$strings["Clear OAuth configuration"] = ""; +App::$strings["GNU-Social Crosspost Connector"] = ""; +App::$strings["Post to GNU social"] = ""; +App::$strings["Site name"] = "Nettstedets navn"; +App::$strings["API URL"] = ""; +App::$strings["Consumer Secret"] = "Consumer Secret"; +App::$strings["Consumer Key"] = "Consumer Key"; +App::$strings["Application name"] = ""; +App::$strings["Friendica Crosspost Connector Settings saved."] = ""; +App::$strings["Send public postings to Friendica by default"] = ""; +App::$strings["Friendica API Path"] = ""; +App::$strings["Friendica login name"] = ""; +App::$strings["Friendica password"] = ""; +App::$strings["Friendica Crosspost Connector"] = ""; +App::$strings["Post to Friendica"] = ""; +App::$strings["Post to WordPress"] = ""; +App::$strings["Wordpress Settings saved."] = ""; +App::$strings["WordPress username"] = ""; +App::$strings["WordPress password"] = ""; +App::$strings["WordPress API URL"] = ""; +App::$strings["Typically https://your-blog.tld/xmlrpc.php"] = ""; +App::$strings["WordPress blogid"] = ""; +App::$strings["For multi-user sites such as wordpress.com, otherwise leave blank"] = ""; +App::$strings["Post to WordPress by default"] = ""; +App::$strings["Forward comments (requires hubzilla_wp plugin)"] = ""; +App::$strings["Add link to original post"] = ""; +App::$strings["Link description (default:"] = ""; +App::$strings["Wordpress Post"] = ""; +App::$strings["No server specified"] = ""; +App::$strings["Posts imported"] = ""; +App::$strings["Files imported"] = ""; +App::$strings["Content Import"] = ""; +App::$strings["This will import all your conversations and cloud files from a cloned channel on another server. This may take a while if you have lots of posts and or files."] = ""; +App::$strings["Include posts"] = ""; +App::$strings["Conversations, Articles, Cards, and other posted content"] = ""; +App::$strings["Include files"] = ""; +App::$strings["Files, Photos and other cloud storage"] = ""; +App::$strings["Original Server base URL"] = ""; +App::$strings["Since modified date yyyy-mm-dd"] = ""; +App::$strings["Until modified date yyyy-mm-dd"] = ""; +App::$strings["Set your location"] = "Angi din plassering"; +App::$strings["Clear browser location"] = "Fjern nettleserplassering"; +App::$strings["Insert web link"] = "Sett inn web-lenke"; +App::$strings["Embed (existing) photo from your photo albums"] = ""; App::$strings["Please enter a link URL:"] = "Vennligst skriv inn en lenke URL:"; +App::$strings["Tag term:"] = "Merkelapp:"; +App::$strings["Where are you right now?"] = "Hvor er du akkurat nå?"; +App::$strings["Choose a different album..."] = ""; +App::$strings["Comments enabled"] = ""; +App::$strings["Comments disabled"] = ""; +App::$strings["Preview"] = "Forhåndsvisning"; +App::$strings["Page link name"] = "Sidens lenkenavn"; +App::$strings["Post as"] = "Lag innlegg som"; +App::$strings["Bold"] = "Uthevet"; +App::$strings["Italic"] = "Kursiv"; +App::$strings["Underline"] = "Understreket"; +App::$strings["Quote"] = "Sitat"; +App::$strings["Code"] = "Kode"; +App::$strings["Attach/Upload file"] = ""; +App::$strings["Toggle voting"] = "Skru av eller på stemming"; +App::$strings["Disable comments"] = ""; +App::$strings["Toggle comments"] = ""; +App::$strings["Title (optional)"] = "Tittel (valgfri)"; +App::$strings["Categories (optional, comma-separated list)"] = "Kategorier (valgfri, kommaseparert liste)"; +App::$strings["Permission settings"] = "Tillatelser - innstillinger"; +App::$strings["Other networks and post services"] = "Andre nettverk og innleggstjenester"; +App::$strings["Set expiration date"] = "Angi utløpsdato"; +App::$strings["Set publish date"] = "Angi publiseringsdato"; App::$strings["Encrypt text"] = "Krypter tekst"; -App::$strings["Insert web link"] = "Sett inn web-lenke"; -App::$strings["Feature disabled."] = ""; -App::$strings["New Chatroom"] = "Nytt chatrom"; -App::$strings["Chatroom name"] = ""; -App::$strings["Expiration of chats (minutes)"] = "Chat utgår (antall minutter)"; +App::$strings["WYSIWYG status editor"] = ""; +App::$strings["WYSIWYG Status App"] = ""; +App::$strings["WYSIWYG Status"] = ""; +App::$strings["View Larger"] = ""; +App::$strings["Tile Server URL"] = ""; +App::$strings["A list of public tile servers"] = ""; +App::$strings["Nominatim (reverse geocoding) Server URL"] = ""; +App::$strings["A list of Nominatim servers"] = ""; +App::$strings["Default zoom"] = ""; +App::$strings["The default zoom level. (1:world, 18:highest, also depends on tile server)"] = ""; +App::$strings["Include marker on map"] = ""; +App::$strings["Include a marker on the map."] = ""; +App::$strings["Settings updated."] = "Innstillinger oppdatert."; +App::$strings["Insane Journal Crosspost Connector Settings saved."] = ""; +App::$strings["Insane Journal Crosspost Connector App"] = ""; +App::$strings["Not Installed"] = ""; +App::$strings["Relay public postings to Insane Journal"] = ""; +App::$strings["InsaneJournal username"] = ""; +App::$strings["InsaneJournal password"] = ""; +App::$strings["Post to InsaneJournal by default"] = ""; +App::$strings["Insane Journal Crosspost Connector"] = ""; +App::$strings["Post to Insane Journal"] = ""; +App::$strings["Who likes me?"] = ""; +App::$strings["QR code"] = ""; +App::$strings["QR Generator"] = ""; +App::$strings["Enter some text"] = ""; +App::$strings["ActivityPub"] = ""; +App::$strings["status"] = "status"; +App::$strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s liker %2\$s sin %3\$s"; +App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s liker ikke %2\$s sin %3\$s"; +App::$strings["ActivityPub Protocol Settings updated."] = ""; +App::$strings["The activitypub protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = ""; +App::$strings["Deliver to ActivityPub recipients in privacy groups"] = ""; +App::$strings["May result in a large number of mentions and expose all the members of your privacy group"] = ""; +App::$strings["Send multi-media HTML articles"] = ""; +App::$strings["Not supported by some microblog services such as Mastodon"] = ""; +App::$strings["Activitypub Protocol"] = ""; +App::$strings["ERROR: word length is not correct!"] = ""; +App::$strings["Fediwordle App"] = ""; +App::$strings["A distributed word game inspired by wordle."] = ""; +App::$strings["To start a game, enter [wordle]your_word[/wordle] somewhere in a toplevel post."] = ""; +App::$strings["Your contacts can post their guess in the comments."] = ""; +App::$strings["Your channel will evaluate the guess and automatically post the response."] = ""; +App::$strings["Correct letters"] = ""; +App::$strings["Letters contained in the word but at the wrong spot"] = ""; +App::$strings["Letters not contained in the word"] = ""; +App::$strings["An account has been created for you."] = ""; +App::$strings["Authentication successful but rejected: account creation is disabled."] = ""; +App::$strings["Dreamwidth Crosspost Connector Settings saved."] = ""; +App::$strings["Dreamwidth username"] = ""; +App::$strings["Dreamwidth password"] = ""; +App::$strings["Post to Dreamwidth by default"] = ""; +App::$strings["Dreamwidth Crosspost Connector"] = ""; +App::$strings["Post to Dreamwidth"] = ""; +App::$strings["bitchslap"] = ""; +App::$strings["bitchslapped"] = ""; +App::$strings["shag"] = ""; +App::$strings["shagged"] = ""; +App::$strings["patent"] = ""; +App::$strings["patented"] = ""; +App::$strings["hug"] = ""; +App::$strings["hugged"] = ""; +App::$strings["murder"] = ""; +App::$strings["murdered"] = ""; +App::$strings["worship"] = ""; +App::$strings["worshipped"] = ""; +App::$strings["kiss"] = ""; +App::$strings["kissed"] = ""; +App::$strings["tempt"] = ""; +App::$strings["tempted"] = ""; +App::$strings["raise eyebrows at"] = ""; +App::$strings["raised their eyebrows at"] = ""; +App::$strings["insult"] = ""; +App::$strings["insulted"] = ""; +App::$strings["praise"] = ""; +App::$strings["praised"] = ""; +App::$strings["be dubious of"] = ""; +App::$strings["was dubious of"] = ""; +App::$strings["eat"] = ""; +App::$strings["ate"] = ""; +App::$strings["giggle and fawn at"] = ""; +App::$strings["giggled and fawned at"] = ""; +App::$strings["doubt"] = ""; +App::$strings["doubted"] = ""; +App::$strings["glare"] = ""; +App::$strings["glared at"] = ""; +App::$strings["fuck"] = ""; +App::$strings["fucked"] = ""; +App::$strings["bonk"] = ""; +App::$strings["bonked"] = ""; +App::$strings["declare undying love for"] = ""; +App::$strings["declared undying love for"] = ""; +App::$strings["Errors encountered deleting database table "] = ""; +App::$strings["Submit Settings"] = ""; +App::$strings["Drop tables when uninstalling?"] = ""; +App::$strings["If checked, the Rendezvous database tables will be deleted when the plugin is uninstalled."] = ""; +App::$strings["Mapbox Access Token"] = ""; +App::$strings["If you enter a Mapbox access token, it will be used to retrieve map tiles from Mapbox instead of the default OpenStreetMap tile server."] = ""; +App::$strings["Rendezvous"] = ""; +App::$strings["This identity has been deleted by another member due to inactivity. Please press the \"New identity\" button or refresh the page to register a new identity. You may use the same name."] = ""; +App::$strings["Welcome to Rendezvous!"] = ""; +App::$strings["Enter your name to join this rendezvous. To begin sharing your location with the other members, tap the GPS control. When your location is discovered, a red dot will appear and others will be able to see you on the map."] = ""; +App::$strings["Let's meet here"] = ""; +App::$strings["Description"] = "Beskrivelse"; +App::$strings["New marker"] = ""; +App::$strings["Edit marker"] = ""; +App::$strings["New identity"] = ""; +App::$strings["Delete marker"] = ""; +App::$strings["Delete member"] = ""; +App::$strings["Edit proximity alert"] = ""; +App::$strings["A proximity alert will be issued when this member is within a certain radius of you.

Enter a radius in meters (0 to disable):"] = ""; +App::$strings["distance"] = ""; +App::$strings["Proximity alert distance (meters)"] = ""; +App::$strings["A proximity alert will be issued when you are within a certain radius of the marker location.

Enter a radius in meters (0 to disable):"] = ""; +App::$strings["Marker proximity alert"] = ""; +App::$strings["Reminder note"] = ""; +App::$strings["Enter a note to be displayed when you are within the specified proximity..."] = ""; +App::$strings["Add new rendezvous"] = ""; +App::$strings["Create a new rendezvous and share the access link with those you wish to invite to the group. Those who open the link become members of the rendezvous. They can view other member locations, add markers to the map, or share their own locations with the group."] = ""; +App::$strings["You have no rendezvous. Press the button above to create a rendezvous!"] = ""; +App::$strings["Errors encountered creating database tables."] = "Feil oppstod under opprettelsen av databasetabeller."; +App::$strings["Page to load after login"] = ""; +App::$strings["Examples: "apps", "network?f=&gid=37" (privacy collection), "channel" or "notifications/system" (leave blank for default network page (grid)."] = ""; +App::$strings["Startpage"] = ""; +App::$strings["Your channel has been upgraded to \$Projectname version"] = ""; +App::$strings["Please have a look at the"] = ""; +App::$strings["git history"] = ""; +App::$strings["change log"] = ""; +App::$strings["for further info."] = ""; +App::$strings["Upgrade Info"] = ""; +App::$strings["Do not show this again"] = ""; +App::$strings["Twitter settings updated."] = ""; +App::$strings["No consumer key pair for Twitter found. Please contact your site administrator."] = ""; +App::$strings["At this Hubzilla instance the Twitter plugin was enabled but you have not yet connected your account to your Twitter account. To do so click the button below to get a PIN from Twitter which you have to copy into the input box below and submit the form. Only your public posts will be posted to Twitter."] = ""; +App::$strings["Log in with Twitter"] = ""; +App::$strings["Copy the PIN from Twitter here"] = ""; +App::$strings["Note: Due your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to Twitter will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = ""; +App::$strings["Twitter post length"] = ""; +App::$strings["Maximum tweet length"] = ""; +App::$strings["Send public postings to Twitter by default"] = ""; +App::$strings["If enabled your public postings will be posted to the associated Twitter account by default"] = ""; +App::$strings["Twitter Crosspost Connector"] = ""; +App::$strings["Post to Twitter"] = ""; +App::$strings["You are now authenticated to pumpio."] = ""; +App::$strings["return to the featured settings page"] = ""; +App::$strings["Post to Pump.io"] = ""; +App::$strings["Pump.io Settings saved."] = ""; +App::$strings["Pump.io servername"] = ""; +App::$strings["Without \"http://\" or \"https://\""] = ""; +App::$strings["Pump.io username"] = ""; +App::$strings["Without the servername"] = ""; +App::$strings["You are not authenticated to pumpio"] = ""; +App::$strings["(Re-)Authenticate your pump.io connection"] = ""; +App::$strings["Post to pump.io by default"] = ""; +App::$strings["Should posts be public"] = ""; +App::$strings["Mirror all public posts"] = ""; +App::$strings["Pump.io Crosspost Connector"] = ""; +App::$strings["generic profile image"] = ""; +App::$strings["random geometric pattern"] = ""; +App::$strings["monster face"] = ""; +App::$strings["computer generated face"] = ""; +App::$strings["retro arcade style face"] = ""; +App::$strings["Hub default profile photo"] = ""; +App::$strings["Information"] = ""; +App::$strings["Libravatar addon is installed, too. Please disable Libravatar addon or this Gravatar addon.
The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = ""; +App::$strings["Save Settings"] = ""; +App::$strings["Default avatar image"] = ""; +App::$strings["Select default avatar image if none was found at Gravatar. See README"] = ""; +App::$strings["Rating of images"] = ""; +App::$strings["Select the appropriate avatar rating for your site. See README"] = ""; +App::$strings["Gravatar settings updated."] = ""; +App::$strings["text to include in all outgoing posts from this site"] = ""; +App::$strings["Send your identity to all websites"] = ""; +App::$strings["Send ZID"] = ""; +App::$strings["Price"] = ""; +App::$strings["Error: order mismatch. Please try again."] = ""; +App::$strings["Manual payments are not enabled."] = ""; +App::$strings["Order not found."] = ""; +App::$strings["Finished"] = ""; +App::$strings["Enable Subscription Management Module"] = ""; +App::$strings["Cannot include subscription items with different terms in the same order."] = ""; +App::$strings["Select Subscription to Edit"] = ""; +App::$strings["Edit Subscriptions"] = ""; +App::$strings["Subscription SKU"] = ""; +App::$strings["Catalog Description"] = ""; +App::$strings["Subscription available for purchase."] = ""; +App::$strings["Maximum active subscriptions to this item per account."] = ""; +App::$strings["Subscription price."] = ""; +App::$strings["Quantity"] = ""; +App::$strings["Term"] = ""; +App::$strings["Enable Hubzilla Services Module"] = ""; +App::$strings["New Sku"] = ""; +App::$strings["Cannot save edits to locked item."] = ""; +App::$strings["SKU not found."] = ""; +App::$strings["Invalid Activation Directive."] = ""; +App::$strings["Invalid Deactivation Directive."] = ""; +App::$strings["Add to this privacy group"] = ""; +App::$strings["Set user service class"] = ""; +App::$strings["You must be using a local account to purchase this service."] = ""; +App::$strings["Changes Locked"] = ""; +App::$strings["Item available for purchase."] = ""; +App::$strings["Photo URL"] = ""; +App::$strings["Add buyer to privacy group"] = ""; +App::$strings["Add buyer as connection"] = ""; +App::$strings["Set Service Class"] = ""; +App::$strings["Enable Order/Item Options"] = ""; +App::$strings["Label"] = ""; +App::$strings["Required"] = "Påkrevd"; +App::$strings["Instructions"] = ""; +App::$strings["Enable Paypal Button Module"] = ""; +App::$strings["Use Production Key"] = ""; +App::$strings["Paypal Sandbox Client Key"] = ""; +App::$strings["Paypal Sandbox Secret Key"] = ""; +App::$strings["Paypal Production Client Key"] = ""; +App::$strings["Paypal Production Secret Key"] = ""; +App::$strings["Paypal button payments are not enabled."] = ""; +App::$strings["Paypal button payments are not properly configured. Please choose another payment option."] = ""; +App::$strings["Enable Paypal Button Module (API-v2)"] = ""; +App::$strings["Enable Manual Cart Module"] = ""; +App::$strings["Access Denied."] = ""; +App::$strings["Order Not Found"] = ""; +App::$strings["Invalid Item"] = ""; +App::$strings["Enable Test Catalog"] = ""; +App::$strings["Enable Manual Payments"] = ""; +App::$strings["Base Merchant Currency"] = ""; +App::$strings["Cart Settings"] = ""; +App::$strings["DB Cleanup Failure"] = ""; +App::$strings["[cart] Item Added"] = ""; +App::$strings["Order already checked out."] = ""; +App::$strings["Drop database tables when uninstalling."] = ""; +App::$strings["Shop"] = ""; +App::$strings["You must be logged into the Grid to shop."] = ""; +App::$strings["Access denied."] = ""; +App::$strings["No Order Found"] = ""; +App::$strings["An unknown error has occurred Please start again."] = ""; +App::$strings["Requirements not met."] = ""; +App::$strings["Review your order and complete any needed requirements."] = ""; +App::$strings["Invalid Payment Type. Please start again."] = ""; +App::$strings["Order not found"] = ""; +App::$strings["nofed Settings saved."] = ""; +App::$strings["Federate posts by default"] = ""; +App::$strings["No Federation"] = ""; +App::$strings["Federate"] = ""; +App::$strings["Hide the button and show the smilies directly."] = ""; +App::$strings["Smileybutton Settings"] = ""; +App::$strings["file"] = ""; +App::$strings["Redmatrix File Storage Import"] = ""; +App::$strings["This will import all your Redmatrix cloud files to this channel."] = ""; +App::$strings["Please install the statistics addon to be able to configure a diaspora relay"] = ""; +App::$strings["Diaspora Relay Handle"] = ""; +App::$strings["Address of a diaspora relay. Example: relay@diasporarelay.tld"] = ""; +App::$strings["Diaspora relay could not be imported"] = ""; +App::$strings["No subject"] = ""; +App::$strings["\$projectname"] = "\$projectname"; +App::$strings["No username found in import file."] = "Ingen brukernavn ble funnet i importfilen."; +App::$strings["Unable to create a unique channel address. Import failed."] = "Klarte ikke å lage en unik kanaladresse. Import mislyktes."; +App::$strings["Import completed."] = "Import ferdig."; +App::$strings["Diaspora Protocol Settings updated."] = ""; +App::$strings["The diaspora protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = ""; +App::$strings["Allow any Diaspora member to comment or like your public posts"] = ""; +App::$strings["If this setting is disabled only your contacts will be able to comment or like your public posts"] = ""; +App::$strings["Prevent your hashtags from being redirected to other sites"] = ""; +App::$strings["Sign and forward posts and comments with no existing Diaspora signature"] = ""; +App::$strings["Followed hashtags (comma separated, do not include the #)"] = ""; +App::$strings["Diaspora Protocol"] = ""; +App::$strings["%1\$s dislikes %2\$s's %3\$s"] = ""; +App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s deltar på %2\$ss %3\$s"; +App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s deltar ikke på %2\$ss %3\$s"; +App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s deltar kanskje på %2\$ss %3\$s"; +App::$strings["This website is tracked using the Piwik analytics tool."] = ""; +App::$strings["If you do not want that your visits are logged this way you can set a cookie to prevent Piwik from tracking further visits of the site (opt-out)."] = ""; +App::$strings["Piwik Base URL"] = ""; +App::$strings["Absolute path to your Piwik installation. (without protocol (http/s), with trailing slash)"] = ""; +App::$strings["Site ID"] = ""; +App::$strings["Show opt-out cookie link?"] = ""; +App::$strings["Asynchronous tracking"] = ""; +App::$strings["Enable frontend JavaScript error tracking"] = ""; +App::$strings["This feature requires Piwik >= 2.2.0"] = ""; +App::$strings["Workflow user."] = ""; +App::$strings["This channel"] = ""; +App::$strings["Primary"] = "Primær"; +App::$strings["Create New Workflow Item"] = ""; +App::$strings["Workflow"] = ""; +App::$strings["No Workflows Available"] = ""; +App::$strings["Add item to which workflow"] = ""; +App::$strings["Create Workflow Item"] = ""; +App::$strings["Link"] = ""; +App::$strings["Web link."] = ""; +App::$strings["Title"] = "Tittel"; +App::$strings["Brief description or title"] = ""; +App::$strings["Notes"] = "Merknader"; +App::$strings["Notes and Info"] = ""; +App::$strings["Body"] = ""; +App::$strings["Workflow Settings"] = ""; +App::$strings["Project Servers and Resources"] = ""; +App::$strings["Project Creator and Tech Lead"] = ""; +App::$strings["And the hundreds of other people and organisations who helped make the Hubzilla possible."] = ""; +App::$strings["The Redmatrix/Hubzilla projects are provided primarily by volunteers giving their time and expertise - and often paying out of pocket for services they share with others."] = ""; +App::$strings["There is no corporate funding and no ads, and we do not collect and sell your personal information. (We don't control your personal information - you do.)"] = ""; +App::$strings["Help support our ground-breaking work in decentralisation, web identity, and privacy."] = ""; +App::$strings["Your donations keep servers and services running and also helps us to provide innovative new features and continued development."] = ""; +App::$strings["Donate"] = ""; +App::$strings["Choose a project, developer, or public hub to support with a one-time donation"] = ""; +App::$strings["Donate Now"] = ""; +App::$strings["Or become a project sponsor (Hubzilla Project only)"] = ""; +App::$strings["Please indicate if you would like your first name or full name (or nothing) to appear in our sponsor listing"] = ""; +App::$strings["Sponsor"] = ""; +App::$strings["Special thanks to: "] = ""; +App::$strings["Your Webbie:"] = ""; +App::$strings["Fontsize (px):"] = ""; +App::$strings["Link:"] = ""; +App::$strings["Like us on Hubzilla"] = ""; +App::$strings["Embed:"] = ""; +App::$strings["__ctx:opensearch__ Search %1\$s (%2\$s)"] = ""; +App::$strings["__ctx:opensearch__ \$Projectname"] = ""; +App::$strings["\$Projectname"] = "\$Projectname"; +App::$strings["Search \$Projectname"] = ""; +App::$strings["Fuzzloc Settings updated."] = ""; +App::$strings["Minimum offset in meters"] = ""; +App::$strings["Maximum offset in meters"] = ""; +App::$strings["Fuzzy Location"] = ""; +App::$strings["Send email to all members"] = ""; +App::$strings["%s Administrator"] = "%s administrator"; +App::$strings["No recipients found."] = ""; +App::$strings["%1\$d of %2\$d messages sent."] = ""; +App::$strings["Send email to all hub members."] = ""; +App::$strings["Message subject"] = ""; +App::$strings["Sender Email address"] = ""; +App::$strings["Test mode (only send to hub administrator)"] = ""; +App::$strings["Categories"] = "Kategorier"; +App::$strings["Everything"] = "Alt"; +App::$strings["Item not found"] = "Elementet ble ikke funnet."; +App::$strings["Channel not found."] = "Kanalen ble ikke funnet."; +App::$strings["Edit Card"] = ""; +App::$strings["Delete"] = "Slett"; +App::$strings["Cards"] = ""; +App::$strings["View Cards"] = ""; +App::$strings["View in context"] = "Vis i sammenheng"; +App::$strings["Add Card"] = ""; +App::$strings["New registration"] = ""; +App::$strings["%s : Message delivery failed."] = "%s : meldingslevering feilet."; +App::$strings["Message sent to %s. New account registration: %s"] = ""; +App::$strings["Not allowed."] = ""; App::$strings["Permissions"] = "Tillatelser"; -App::$strings["%1\$s's Chatrooms"] = "%1\$s sine chatrom"; -App::$strings["No chatrooms available"] = ""; -App::$strings["Create New"] = ""; -App::$strings["Expiration"] = ""; -App::$strings["min"] = ""; -App::$strings["Away"] = "Borte"; -App::$strings["Online"] = "Online"; -App::$strings["Invalid item."] = "Ugyldig element."; -App::$strings["Bookmark added"] = "Bokmerke lagt til"; -App::$strings["My Bookmarks"] = "Mine bokmerker"; -App::$strings["My Connections Bookmarks"] = "Mine forbindelsers bokmerker"; -App::$strings["Continue"] = "Fortsett"; -App::$strings["Premium Channel Setup"] = "Premiumkanal-oppsett"; -App::$strings["Enable premium channel connection restrictions"] = "Slå på restriksjoner for forbindelse med premiumkanal"; -App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Vennligst skriv dine restriksjoner og betingelser, slik som PayPal-kvittering, retningslinjer for bruk, og så videre."; -App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Denne kanalen kan kreve ytterligere steg og bekreftelse av følgende betingelser før tilkobling:"; -App::$strings["Potential connections will then see the following text before proceeding:"] = "Potensielle forbindelser vil da se følgende tekst før de går videre:"; -App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Ved å fortsette bekrefter jeg at jeg har oppfylt alle instruksjoner gitt på denne siden."; -App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Ingen spesifikke instruksjoner er gitt av kanaleieren.)"; -App::$strings["Restricted or Premium Channel"] = "Begrenset kanal eller premiumkanal"; -App::$strings["Could not access contact record."] = "Fikk ikke tilgang til kontaktinformasjonen."; -App::$strings["Could not locate selected profile."] = "Fant ikke valgt profil."; -App::$strings["Connection updated."] = "Forbindelsen er oppdatert."; -App::$strings["Failed to update connection record."] = "Mislyktes med å oppdatere forbindelsesinformasjonen."; -App::$strings["is now connected to"] = "er nå forbundet til"; -App::$strings["No"] = "Nei"; -App::$strings["Yes"] = "Ja"; -App::$strings["Could not access address book record."] = "Fikk ikke tilgang til informasjonen i adresseboken."; -App::$strings["Refresh failed - channel is currently unavailable."] = "Oppfrisking mislyktes - kanalen er for øyeblikket utilgjengelig."; -App::$strings["Unable to set address book parameters."] = "Ikke i stand til å angi parametre for adresseboken."; -App::$strings["Connection has been removed."] = "Forbindelsen har blitt fjernet."; -App::$strings["View Profile"] = "Vis profil"; -App::$strings["View %s's profile"] = "Vis %s sin profil"; -App::$strings["Refresh Permissions"] = "Oppfrisk tillatelser"; -App::$strings["Fetch updated permissions"] = "Hent oppdaterte tillatelser"; -App::$strings["Recent Activity"] = "Nylig aktivitet"; -App::$strings["View recent posts and comments"] = "Vis nylige innlegg og kommentarer"; -App::$strings["Unblock"] = "Ikke blokker lenger"; -App::$strings["Block"] = "Blokker"; -App::$strings["Block (or Unblock) all communications with this connection"] = "Blokker eller fjern blokkering av all kommunikasjon med denne forbindelsen"; -App::$strings["This connection is blocked!"] = "Denne forbindelsen er blokkert!"; -App::$strings["Unignore"] = "Ikke ignorer lenger"; -App::$strings["Ignore"] = "Ignorer"; -App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "Ignorer eller fjern ignorering av all inngående kommunikasjon fra denne forbindelsen"; -App::$strings["This connection is ignored!"] = "Denne forbindelsen er ignorert!"; -App::$strings["Unarchive"] = "Ikke arkiver lenger"; -App::$strings["Archive"] = "Arkiver"; -App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Arkiver eller fjern arkivering av denne forbindelsen - marker kanal som død, men behold innhold"; -App::$strings["This connection is archived!"] = "Denne forbindelsen er arkivert!"; -App::$strings["Unhide"] = "Ikke skjul lenger"; -App::$strings["Hide"] = "Skjul"; -App::$strings["Hide or Unhide this connection from your other connections"] = "Skjul eller fjern skjuling av denne forbindelsen fra dine andre forbindelser"; -App::$strings["This connection is hidden!"] = "Denne forbindelsen er skjult!"; -App::$strings["Delete this connection"] = "Slett denne forbindelsen"; -App::$strings["Me"] = "Meg"; -App::$strings["Family"] = "Familie"; -App::$strings["Friends"] = "Venner"; -App::$strings["Acquaintances"] = "Bekjente"; -App::$strings["All"] = "Alle"; -App::$strings["Approve this connection"] = "Godta denne forbindelsen"; -App::$strings["Accept connection to allow communication"] = "Godta denne forbindelsen for å tillate kommunikasjon"; -App::$strings["Set Affinity"] = "Angi nærhet"; -App::$strings["Set Profile"] = "Angi profil"; -App::$strings["Set Affinity & Profile"] = "Angi nærhet og profil"; -App::$strings["none"] = "ingen"; -App::$strings["Connection Default Permissions"] = "Forbindelsens standard tillatelser"; -App::$strings["Connection: %s"] = "Forbindelse: %s"; -App::$strings["Apply these permissions automatically"] = "Bruk disse tillatelsene automatisk"; -App::$strings["Connection requests will be approved without your interaction"] = "Forespørsler om forbindelse vil bli godkjent automatisk"; -App::$strings["This connection's primary address is"] = "Denne forbindelsens primære adresse er"; -App::$strings["Available locations:"] = "Tilgjengelige plasseringer:"; -App::$strings["The permissions indicated on this page will be applied to all new connections."] = "Tillatelsene angitt på denne siden gjøres gjeldende for alle nye forbindelser."; -App::$strings["Connection Tools"] = ""; -App::$strings["Slide to adjust your degree of friendship"] = "Flytt for å justere din grad av vennskap"; -App::$strings["Rating"] = "Vurdering"; -App::$strings["Slide to adjust your rating"] = "Flytt for å justere din vurdering"; -App::$strings["Optionally explain your rating"] = "Velg om du vil forklare vurderingen"; -App::$strings["Custom Filter"] = "Tilpasset filter"; -App::$strings["Only import posts with this text"] = "Bare importer innlegg med disse ordene"; -App::$strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = "ord per linje eller #merkelapper eller /mønster/ eller språk lang=xx, la stå blankt for å importere alle innlegg"; -App::$strings["Do not import posts with this text"] = "Ikke importer innlegg med denne teksten"; -App::$strings["This information is public!"] = "Denne informasjonen er offentlig!"; -App::$strings["Connection Pending Approval"] = "Forbindelse venter på godkjenning"; -App::$strings["inherited"] = "arvet"; -App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Vennligst velg profilen du ønsker å vise %s når profilen din ses på en sikret måte. "; -App::$strings["Their Settings"] = "Deres innstillinger"; -App::$strings["My Settings"] = "Mine innstillinger"; -App::$strings["Individual Permissions"] = "Individuelle tillatelser"; -App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can not change those settings here."] = "Noen tillatelser kan være arvet fra din kanals personverninnstillinger, som har høyere prioritet enn individuelle innstillinger. Du kan ikke endre arvede innstillingene her."; -App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Noen tillatelser kan være arvet fra din kanals personverninnstillinger, som har høyere prioritet enn individuelle innstillinger. Du kan endre disse innstillingene her, men de vil ikke få noen effekt før de arvede innstillingene endres."; -App::$strings["Last update:"] = "Siste oppdatering:"; -App::$strings["Public access denied."] = "Offentlig tilgang avvist."; -App::$strings["%d rating"] = array( - 0 => "%d vurdering", - 1 => "%d vurderinger", -); -App::$strings["Gender: "] = "Kjønn:"; -App::$strings["Status: "] = "Status:"; -App::$strings["Homepage: "] = "Hjemmeside:"; -App::$strings["Age:"] = "Alder:"; -App::$strings["Location:"] = "Plassering:"; -App::$strings["Description:"] = "Beskrivelse:"; -App::$strings["Hometown:"] = "Hjemby:"; -App::$strings["About:"] = "Om:"; -App::$strings["Connect"] = "Koble"; -App::$strings["Public Forum:"] = "Offentlig forum:"; -App::$strings["Keywords: "] = "Nøkkelord:"; -App::$strings["Don't suggest"] = "Ikke foreslå"; -App::$strings["Common connections:"] = "Felles forbindelser:"; -App::$strings["Global Directory"] = "Global katalog"; -App::$strings["Local Directory"] = "Lokal katalog"; -App::$strings["Find"] = "Finn"; -App::$strings["Finding:"] = "Finner:"; -App::$strings["Channel Suggestions"] = "Kanalforslag"; -App::$strings["next page"] = "Neste side"; -App::$strings["previous page"] = "Forrige side"; -App::$strings["Sort options"] = "Sorteringsvalg"; -App::$strings["Alphabetic"] = "Alfabetisk"; -App::$strings["Reverse Alphabetic"] = "Omvendt alfabetisk"; -App::$strings["Newest to Oldest"] = "Nyest til eldst"; -App::$strings["Oldest to Newest"] = "Eldst til nyest"; -App::$strings["No entries (some entries may be hidden)."] = "Ingen oppføringer (noen oppføringer kan være skjult)."; +App::$strings["Set/edit permissions"] = "Angi/endre tillatelser"; App::$strings["Item not found."] = "Elementet ble ikke funnet."; -App::$strings["Item not found"] = "Elementet ble ikke funnet."; -App::$strings["Title (optional)"] = "Tittel (valgfri)"; -App::$strings["Edit Block"] = "Endre byggekloss"; -App::$strings["No channel."] = "Ingen kanal."; -App::$strings["Common connections"] = "Felles forbindelser"; -App::$strings["No connections in common."] = "Ingen forbindelser felles."; -App::$strings["Blocked"] = "Blokkert"; -App::$strings["Ignored"] = "Ignorert"; -App::$strings["Hidden"] = "Skjult"; -App::$strings["Archived"] = "Arkivert"; -App::$strings["New"] = "Nye"; -App::$strings["New Connections"] = "Nye forbindelser"; -App::$strings["Show pending (new) connections"] = "Vis ventende (nye) forbindelser"; -App::$strings["All Connections"] = "Alle forbindelser"; -App::$strings["Show all connections"] = "Vis alle forbindelser"; -App::$strings["Only show blocked connections"] = "Vis bare forbindelser som er blokkert"; -App::$strings["Only show ignored connections"] = "Vis bare ignorerte forbindelser"; -App::$strings["Only show archived connections"] = "Vis bare arkiverte forbindelser"; -App::$strings["Only show hidden connections"] = "Vis bare skjulte forbindelser"; -App::$strings["Pending approval"] = "Venter på godkjenning"; -App::$strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; -App::$strings["Edit connection"] = "Endre forbindelse"; -App::$strings["Delete connection"] = "Slett forbindelse"; -App::$strings["Channel address"] = "Kanaladresse"; -App::$strings["Network"] = "Nettverk"; -App::$strings["Status"] = "Status"; -App::$strings["Connected"] = "Forbundet"; -App::$strings["Approve connection"] = "Godkjenn forbindelse"; -App::$strings["Approve"] = "Godkjenn"; -App::$strings["Ignore connection"] = "Ignorer forbindelse"; -App::$strings["Recent activity"] = "Nylig aktivitet"; +App::$strings["Post to Libertree"] = ""; +App::$strings["Libertree Crosspost Connector Settings saved."] = ""; +App::$strings["Libertree API token"] = ""; +App::$strings["Libertree site URL"] = ""; +App::$strings["Post to Libertree by default"] = ""; +App::$strings["Libertree Crosspost Connector"] = ""; +App::$strings["You're welcome."] = ""; +App::$strings["Ah shucks..."] = ""; +App::$strings["Don't mention it."] = ""; +App::$strings["<blush>"] = ""; +App::$strings["Report Bug"] = ""; +App::$strings["TOTP Two-Step Verification"] = ""; +App::$strings["Enter the 2-step verification generated by your authenticator app:"] = ""; +App::$strings["Success!"] = ""; +App::$strings["Invalid code, please try again."] = ""; +App::$strings["Too many invalid codes..."] = ""; +App::$strings["Verify"] = ""; +App::$strings["You haven't set a TOTP secret yet.\nPlease click the button below to generate one and register this site\nwith your preferred authenticator app."] = ""; +App::$strings["Your TOTP secret is"] = ""; +App::$strings["Be sure to save it somewhere in case you lose or replace your mobile device.\nUse your mobile device to scan the QR code below to register this site\nwith your preferred authenticator app."] = ""; +App::$strings["Test"] = ""; +App::$strings["Generate New Secret"] = ""; +App::$strings["Go"] = ""; +App::$strings["Enter your password"] = ""; +App::$strings["enter TOTP code from your device"] = ""; +App::$strings["Pass!"] = ""; +App::$strings["Fail"] = ""; +App::$strings["Incorrect password, try again."] = ""; +App::$strings["Record your new TOTP secret and rescan the QR code above."] = ""; +App::$strings["TOTP Settings"] = ""; +App::$strings["Logfile archive directory"] = ""; +App::$strings["Directory to store rotated logs"] = ""; +App::$strings["Logfile size in bytes before rotating"] = ""; +App::$strings["Number of logfiles to retain"] = ""; +App::$strings["Your account on %s will expire in a few days."] = ""; +App::$strings["Your test account is about to expire."] = ""; +App::$strings["Hide Aside App"] = ""; +App::$strings["Fade out aside areas after a while when using endless scroll"] = ""; +App::$strings["Some setting"] = ""; +App::$strings["A setting"] = ""; +App::$strings["Skeleton Settings"] = ""; +App::$strings["Network error"] = ""; +App::$strings["API error"] = ""; +App::$strings["Unknown issue"] = ""; +App::$strings["Unable to retrieve email address from remote identity provider"] = ""; +App::$strings["Unable to login using email address "] = ""; +App::$strings["Social Authentication using your social media account"] = ""; +App::$strings["This app enables one or more social provider sign-in buttons on the login page."] = ""; +App::$strings["Add an identity provider"] = ""; +App::$strings["Enable "] = ""; +App::$strings["Key"] = ""; +App::$strings["Word"] = ""; +App::$strings["Secret"] = ""; +App::$strings["Add a custom provider"] = ""; +App::$strings["Remove an identity provider"] = ""; +App::$strings["Social authentication"] = ""; +App::$strings["Error while saving provider settings"] = ""; +App::$strings["Custom provider already exists"] = ""; +App::$strings["Social authentication settings saved."] = ""; +App::$strings["Possible adult content"] = ""; +App::$strings["%s - view"] = ""; +App::$strings["NSFW Settings saved."] = ""; +App::$strings["This app looks in posts for the words/text you specify below, and collapses any content containing those keywords so it is not displayed at inappropriate times, such as sexual innuendo that may be improper in a work setting. It is polite and recommended to tag any content containing nudity with #NSFW. This filter can also match any other word/text you specify, and can thereby be used as a general purpose content filter."] = ""; +App::$strings["Comma separated list of keywords to hide"] = ""; +App::$strings["Word, /regular-expression/, lang=xx, lang!=xx"] = ""; +App::$strings["NSFW"] = ""; +App::$strings["Show Upload Limits"] = ""; +App::$strings["Hubzilla configured maximum size: "] = ""; +App::$strings["PHP upload_max_filesize: "] = ""; +App::$strings["PHP post_max_size (must be larger than upload_max_filesize): "] = ""; +App::$strings["Three Dimensional Tic-Tac-Toe"] = ""; +App::$strings["3D Tic-Tac-Toe"] = ""; +App::$strings["New game"] = ""; +App::$strings["New game with handicap"] = ""; +App::$strings["Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. "] = ""; +App::$strings["In this case there are three levels. You win by getting three in a row on any level, as well as up, down, and diagonally across the different levels."] = ""; +App::$strings["The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage."] = ""; +App::$strings["You go first..."] = ""; +App::$strings["I'm going first this time..."] = ""; +App::$strings["You won!"] = ""; +App::$strings["\"Cat\" game!"] = ""; +App::$strings["I won!"] = ""; +App::$strings["Send test email"] = ""; +App::$strings["Mail sent."] = ""; +App::$strings["Sending of mail failed."] = ""; +App::$strings["Mail Test"] = ""; +App::$strings["Livejournal username"] = ""; +App::$strings["Livejournal password"] = ""; +App::$strings["Post to Livejournal by default"] = ""; +App::$strings["Send wall-to-wall posts to Livejournal"] = ""; +App::$strings["Livejournal Crosspost Connector"] = ""; +App::$strings["Post to Livejournal"] = ""; +App::$strings["Posted by"] = ""; +App::$strings["Use markdown for editing posts"] = ""; +App::$strings["Edit Article"] = ""; +App::$strings["Articles"] = ""; +App::$strings["View Articles"] = ""; +App::$strings["Add Article"] = ""; +App::$strings["Hubzilla File Storage Import"] = ""; +App::$strings["This will import all your cloud files from another server."] = ""; +App::$strings["Hubzilla Server base URL"] = ""; +App::$strings["Allow magic authentication only to websites of your immediate connections"] = ""; +App::$strings["Authchoose"] = ""; +App::$strings["pageheader Settings saved."] = ""; +App::$strings["Message to display on every page on this server"] = ""; +App::$strings["Page Header"] = ""; +App::$strings["Popular Channels"] = ""; +App::$strings["Channels to auto connect"] = ""; +App::$strings["Comma separated list"] = ""; +App::$strings["IRC Settings"] = ""; +App::$strings["IRC settings saved."] = ""; +App::$strings["IRC Chatroom"] = ""; +App::$strings["Jabber BOSH host"] = ""; +App::$strings["Use central userbase"] = ""; +App::$strings["If enabled, members will automatically login to an ejabberd server that has to be installed on this machine with synchronized credentials via the \"auth_ejabberd.php\" script."] = ""; +App::$strings["XMPP settings updated."] = ""; +App::$strings["XMPP App"] = ""; +App::$strings["Embedded XMPP (Jabber) client"] = ""; +App::$strings["Individual credentials"] = ""; +App::$strings["Jabber BOSH server"] = ""; +App::$strings["XMPP Settings"] = ""; +App::$strings["prev"] = "forrige"; +App::$strings["first"] = "første"; +App::$strings["last"] = "siste"; +App::$strings["next"] = "neste"; +App::$strings["older"] = "eldre"; +App::$strings["newer"] = "nyere"; App::$strings["Connections"] = "Forbindelser"; +App::$strings["Accepts"] = ""; +App::$strings["Comments"] = ""; +App::$strings["Stream items"] = ""; +App::$strings["Wall posts"] = ""; +App::$strings["Nothing"] = ""; +App::$strings["View all %s connections"] = "Vis alle %s forbindelser"; +App::$strings["Network: %s"] = ""; App::$strings["Search"] = "Søk"; -App::$strings["Search your connections"] = "Søk blant dine forbindelser"; -App::$strings["Connections search"] = "Søk blant forbindelser"; -App::$strings["Image uploaded but image cropping failed."] = "Bildet ble lastet opp, men beskjæring av bildet mislyktes."; -App::$strings["Cover Photos"] = "Forsidebilder"; -App::$strings["Image resize failed."] = "Endring av bildestørrelse mislyktes."; -App::$strings["Unable to process image"] = "Kan ikke behandle bildet"; -App::$strings["Image upload failed."] = "Opplasting av bildet mislyktes."; -App::$strings["Unable to process image."] = "Kan ikke behandle bildet."; -App::$strings["female"] = "kvinne"; -App::$strings["%1\$s updated her %2\$s"] = "%1\$s oppdaterte %2\$s sitt"; -App::$strings["male"] = "mann"; -App::$strings["%1\$s updated his %2\$s"] = "%1\$s oppdaterte %2\$s sitt"; -App::$strings["%1\$s updated their %2\$s"] = "%1\$s oppdaterte %2\$s deres"; -App::$strings["cover photo"] = "forsidebilde"; -App::$strings["Photo not available."] = "Bildet er ikke tilgjengelig."; -App::$strings["Upload File:"] = "Last opp fil:"; -App::$strings["Select a profile:"] = "Velg en profil:"; -App::$strings["Upload Cover Photo"] = "Last opp forsidebilde"; -App::$strings["or"] = "eller"; -App::$strings["skip this step"] = "hopp over dette steget"; -App::$strings["select a photo from your photo albums"] = "velg et bilde fra dine fotoalbum"; -App::$strings["Crop Image"] = "Beskjær bildet"; -App::$strings["Please adjust the image cropping for optimum viewing."] = "Vennligst juster bildebeskjæringen for optimal visning."; -App::$strings["Done Editing"] = "Avslutt redigering"; -App::$strings["Item is not editable"] = "Elementet kan ikke endres"; -App::$strings["Edit post"] = "Endre innlegg"; -App::$strings["Calendar entries imported."] = "Kalenderhendelsene er importert."; -App::$strings["No calendar entries found."] = "Ingen kalenderhendelser funnet."; -App::$strings["Event can not end before it has started."] = "Hendelsen kan ikke slutte før den starter."; -App::$strings["Unable to generate preview."] = "Klarer ikke å lage forhåndsvisning."; -App::$strings["Event title and start time are required."] = "Hendelsestittel og starttidspunkt er påkrevd."; -App::$strings["Event not found."] = "Hendelsen ble ikke funnet."; +App::$strings["poke"] = "prikk"; +App::$strings["poked"] = "prikket"; +App::$strings["ping"] = "varsle"; +App::$strings["pinged"] = "varslet"; +App::$strings["prod"] = "oppildne"; +App::$strings["prodded"] = "oppildnet"; +App::$strings["slap"] = "daske"; +App::$strings["slapped"] = "dasket"; +App::$strings["finger"] = "fingre"; +App::$strings["fingered"] = "fingret"; +App::$strings["rebuff"] = "tilbakevise"; +App::$strings["rebuffed"] = "tilbakeviste"; +App::$strings["happy"] = "glad"; +App::$strings["sad"] = "trist"; +App::$strings["mellow"] = "dempet"; +App::$strings["tired"] = "trøtt"; +App::$strings["perky"] = "oppkvikket"; +App::$strings["angry"] = "sint"; +App::$strings["stupefied"] = "lamslått"; +App::$strings["puzzled"] = "forundret"; +App::$strings["interested"] = "interessert"; +App::$strings["bitter"] = "bitter"; +App::$strings["cheerful"] = "munter"; +App::$strings["alive"] = "levende"; +App::$strings["annoyed"] = "irritert"; +App::$strings["anxious"] = "nervøs"; +App::$strings["cranky"] = "gretten"; +App::$strings["disturbed"] = "foruroliget"; +App::$strings["frustrated"] = "frustrert"; +App::$strings["depressed"] = "lei seg"; +App::$strings["motivated"] = "motivert"; +App::$strings["relaxed"] = "avslappet"; +App::$strings["surprised"] = "overrasket"; +App::$strings["Monday"] = "mandag"; +App::$strings["Tuesday"] = "tirsdag"; +App::$strings["Wednesday"] = "onsdag"; +App::$strings["Thursday"] = "torsdag"; +App::$strings["Friday"] = "fredag"; +App::$strings["Saturday"] = "lørdag"; +App::$strings["Sunday"] = "søndag"; +App::$strings["January"] = "januar"; +App::$strings["February"] = "februar"; +App::$strings["March"] = "mars"; +App::$strings["April"] = "april"; +App::$strings["May"] = "mai"; +App::$strings["June"] = "juni"; +App::$strings["July"] = "juli"; +App::$strings["August"] = "august"; +App::$strings["September"] = "september"; +App::$strings["October"] = "oktober"; +App::$strings["November"] = "november"; +App::$strings["December"] = "desember"; +App::$strings["Unknown Attachment"] = "Ukjent vedlegg"; +App::$strings["Size"] = "Størrelse"; +App::$strings["unknown"] = "ukjent"; +App::$strings["remove category"] = "fjern kategori"; +App::$strings["remove from file"] = "fjern fra fil"; +App::$strings["Download binary/encrypted content"] = ""; +App::$strings["__ctx:noun__ %d Vote"] = array( + 0 => "", + 1 => "", +); +App::$strings["__ctx:noun__ %d Vote in total"] = array( + 0 => "", + 1 => "", +); +App::$strings["Poll has ended"] = ""; +App::$strings["Poll ends in %s"] = ""; +App::$strings["Vote"] = ""; +App::$strings["Link to Source"] = "Lenke til kilde"; +App::$strings["default"] = "standard"; +App::$strings["Page layout"] = "Sidens layout"; +App::$strings["You can create your own with the layouts tool"] = "Du kan lage din egen med layout-verktøyet"; +App::$strings["HTML"] = ""; +App::$strings["Comanche Layout"] = ""; +App::$strings["PHP"] = ""; +App::$strings["Page content type"] = "Sidens innholdstype"; App::$strings["event"] = "hendelse"; -App::$strings["Edit event title"] = "Endre tittel på hendelse"; -App::$strings["Event title"] = "Tittel på hendelse"; -App::$strings["Required"] = "Påkrevd"; -App::$strings["Categories (comma-separated list)"] = "Kategorier (kommaseparert liste)"; -App::$strings["Edit Category"] = "Endre kategori"; -App::$strings["Category"] = "Kategori"; -App::$strings["Edit start date and time"] = "Endre startdato og tidspunkt"; -App::$strings["Start date and time"] = "Startdato og tidspunkt"; -App::$strings["Finish date and time are not known or not relevant"] = "Sluttdato og tidspunkt er ikke kjent eller ikke relevant"; -App::$strings["Edit finish date and time"] = "Endre sluttdato og tidspunkt"; -App::$strings["Finish date and time"] = "Sluttdato og tidspunkt"; -App::$strings["Adjust for viewer timezone"] = "Juster i forhold til tilskuerens tidssone"; -App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Viktig for hendelser som skjer på et bestemt sted. Ikke praktisk for globale ferier eller fridager."; -App::$strings["Edit Description"] = "Endre beskrivelse"; -App::$strings["Description"] = "Beskrivelse"; -App::$strings["Edit Location"] = "Endre plassering"; -App::$strings["Location"] = "Plassering"; -App::$strings["Share this event"] = "Del denne hendelsen"; -App::$strings["Preview"] = "Forhåndsvisning"; -App::$strings["Permission settings"] = "Tillatelser - innstillinger"; -App::$strings["Advanced Options"] = "Avanserte alternativer"; -App::$strings["Edit event"] = "Endre hendelse"; -App::$strings["Delete event"] = "Slett hendelse"; -App::$strings["calendar"] = "kalender"; -App::$strings["Event removed"] = "Hendelse slettet"; -App::$strings["Failed to remove event"] = "Mislyktes med å slette hendelse"; -App::$strings["Photos"] = "Bilder"; -App::$strings["Cancel"] = "Avbryt"; -App::$strings["This site is not a directory server"] = "Dette nettstedet er ikke en katalogtjener"; -App::$strings["This directory server requires an access token"] = "Denne katalogtjeneren krever en tilgangsnøkkel (access token)"; -App::$strings["Save to Folder:"] = "Lagre til mappe:"; -App::$strings["- select -"] = "- velg -"; -App::$strings["Save"] = "Lagre"; -App::$strings["Invalid message"] = "Ugyldig melding"; -App::$strings["no results"] = "ingen resultater"; -App::$strings["Delivery report for %1\$s"] = "Leveringsrapport for %1\$s"; -App::$strings["channel sync processed"] = "Kanalsynkronisering er behandlet"; -App::$strings["queued"] = "lagt i kø"; -App::$strings["posted"] = "lagt inn"; -App::$strings["accepted for delivery"] = "akseptert for levering"; -App::$strings["updated"] = "oppdatert"; -App::$strings["update ignored"] = "oppdatering ignorert"; -App::$strings["permission denied"] = "tillatelse avvist"; -App::$strings["recipient not found"] = "mottaker ble ikke funnet"; -App::$strings["mail recalled"] = "melding tilbakekalt"; -App::$strings["duplicate mail received"] = "duplikat av melding mottatt"; -App::$strings["mail delivered"] = "melding mottatt"; -App::$strings["Layout Name"] = "Layout-navn"; -App::$strings["Layout Description (Optional)"] = "Layoutens beskrivelse (valgfritt)"; -App::$strings["Edit Layout"] = "Endre layout"; -App::$strings["Page link"] = ""; -App::$strings["Edit Webpage"] = "Endre webside"; -App::$strings["Channel added."] = "Kanal lagt til."; -App::$strings["network"] = "nettverk"; -App::$strings["RSS"] = "RSS"; -App::$strings["Privacy group created."] = "Personverngruppen er opprettet."; -App::$strings["Could not create privacy group."] = "Kunne ikke opprette personverngruppen."; -App::$strings["Privacy group not found."] = "Personverngruppen ble ikke funnet"; -App::$strings["Privacy group updated."] = "Personverngruppen er oppdatert."; -App::$strings["Create a group of channels."] = "Lag en gruppe av kanaler."; -App::$strings["Privacy group name: "] = "Personverngruppens navn:"; -App::$strings["Members are visible to other channels"] = "Medlemmer er synlig for andre kanaler"; -App::$strings["Privacy group removed."] = "Personverngruppen er fjernet."; -App::$strings["Unable to remove privacy group."] = "Ikke i stand til å fjerne personverngruppen."; -App::$strings["Privacy group editor"] = "Personverngruppebehandler"; -App::$strings["Members"] = "Medlemmer"; -App::$strings["All Connected Channels"] = "Alle tilkoblede kanaler"; -App::$strings["Click on a channel to add or remove."] = "Klikk på en kanal for å legge til eller fjerne."; -App::$strings["Share content from Firefox to \$Projectname"] = "Del innhold fra Firefox til \$Projectname"; -App::$strings["Activate the Firefox \$Projectname provider"] = "Skru på Firefox \$Projectname tilbyderen"; -App::$strings["Authorize application connection"] = "Tillat programforbindelse"; -App::$strings["Return to your app and insert this Securty Code:"] = "Gå tilbake til din app og legg inn denne sikkerhetskoden:"; -App::$strings["Please login to continue."] = "Vennligst logg inn for å fortsette."; -App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vil du tillate dette programmet å få tilgang til dine innlegg og kontakter, og/eller lage nye innlegg for deg?"; -App::$strings["Documentation Search"] = "Søk i dokumentasjon"; -App::$strings["Help:"] = "Hjelp:"; -App::$strings["Help"] = "Hjelp"; -App::$strings["\$Projectname Documentation"] = "\$Projectname dokumentasjon"; -App::$strings["Permission Denied."] = "Tillatelse avvist."; -App::$strings["File not found."] = "Filen ble ikke funnet."; -App::$strings["Edit file permissions"] = "Endre filtillatelser"; -App::$strings["Set/edit permissions"] = "Angi/endre tillatelser"; -App::$strings["Include all files and sub folders"] = "Inkluder alle filer og undermapper"; -App::$strings["Return to file list"] = "Gå tilbake til filoversikten"; -App::$strings["Copy/paste this code to attach file to a post"] = "Kopier og lim inn denne koden for å legge til filen i et innlegg"; -App::$strings["Copy/paste this URL to link file from a web page"] = "Kopier og lim inn denne URL-en for å lenke til filen fra en webside"; -App::$strings["Share this file"] = "Del denne filen"; -App::$strings["Show URL to this file"] = "Vis URLen til denne filen"; -App::$strings["Notify your contacts about this file"] = "Varsle dine kontakter om denne filen"; -App::$strings["Apps"] = "Apper"; -App::$strings["Item not available."] = "Elementet er ikke tilgjengelig."; -App::$strings["Your service plan only allows %d channels."] = "Din tjenesteplan tillater bare %d kanaler."; -App::$strings["Nothing to import."] = "Ingenting å importere."; -App::$strings["Unable to download data from old server"] = "Ikke i stand til å laste ned data fra gammel tjener"; -App::$strings["Imported file is empty."] = "Importert fil er tom."; -App::$strings["Warning: Database versions differ by %1\$d updates."] = "Advarsel: databaseversjoner avviker med %1\$d oppdateringer."; -App::$strings["Cloned channel not found. Import failed."] = "Klonet kanal ble ikke funnet. Import mislyktes."; -App::$strings["No channel. Import failed."] = "Ingen kanal. Import mislyktes."; -App::$strings["Import completed."] = "Import ferdig."; -App::$strings["You must be logged in to use this feature."] = "Du må være innlogget for å bruke denne funksjonen."; -App::$strings["Import Channel"] = "Importer kanal"; -App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "Bruk dette skjemaet for å importere en eksisterende kanal fra en annen tjener/hub. Du kan hente inn kanalidentiteten fra den gamle tjeneren/huben via nettverket eller ved å bruke en eksportfil."; -App::$strings["File to Upload"] = "Fil som skal lastes opp"; -App::$strings["Or provide the old server/hub details"] = "Eller oppgi detaljene fra den gamle tjeneren/hub-en"; -App::$strings["Your old identity address (xyz@example.com)"] = "Din gamle identitetsadresse (xyz@example.com)"; -App::$strings["Your old login email address"] = "Din gamle innloggings e-postadresse"; -App::$strings["Your old login password"] = "Ditt gamle innloggingspassord"; -App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Enten du tar det ene eller det andre valget, vennligst angi om du vil at denne hubben skal være din nye primære adresse, eller om din gamle plassering skal fortsette å ha denne rollen. Du kan lage innlegg fra den ene eller den andre plasseringen, men bare en av dem kan markeres som den primære plasseringen for filer, bilder og media."; -App::$strings["Make this hub my primary location"] = "Gjør dette nettstedet til min primære plassering"; -App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importer eksisterende innlegg om mulig (eksperimentelt - begrenset av tilgjengelig minne)"; -App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Denne prosessen kan ta flere minutter å fullføre. Vennligst send inn dette skjemaet bare en gang og la siden være åpen inntil den er ferdig."; -App::$strings["Unable to locate original post."] = "Ikke i stand til å finne opprinnelig innlegg."; -App::$strings["Empty post discarded."] = "Tomt innlegg forkastet."; -App::$strings["Executable content type not permitted to this channel."] = "Kjørbar innholdstype er ikke tillat for denne kanalen."; -App::$strings["Duplicate post suppressed."] = "Duplikat av innlegg forhindret."; -App::$strings["System error. Post not saved."] = "Systemfeil. Innlegg ble ikke lagret."; -App::$strings["Unable to obtain post information from database."] = "Ikke i stand til å få tak i informasjon om innlegg fra databasen."; -App::$strings["You have reached your limit of %1$.0f top level posts."] = "Du har nådd din grense på %1$.0f startinnlegg."; -App::$strings["You have reached your limit of %1$.0f webpages."] = "Du har nådd din grense på %1$.0f websider."; +App::$strings["post"] = "innlegg"; +App::$strings["comment"] = "kommentar"; +App::$strings["activity"] = "aktivitet"; +App::$strings["poll"] = ""; +App::$strings["a-z, 0-9, -, and _ only"] = ""; +App::$strings["Design Tools"] = "Designverktøy"; +App::$strings["Blocks"] = "Byggeklosser"; +App::$strings["Menus"] = "Menyer"; App::$strings["Layouts"] = "Layout"; -App::$strings["Comanche page description language help"] = "Hjelp med Comanche sidebeskrivelsesspråk"; -App::$strings["Layout Description"] = "Layout-beskrivelse"; -App::$strings["Download PDL file"] = "Last ned PDL-fil"; -App::$strings["\$Projectname"] = "\$Projectname"; -App::$strings["Welcome to %s"] = "Velkommen til %s"; -App::$strings["First Name"] = "Fornavn"; -App::$strings["Last Name"] = "Etternavn"; -App::$strings["Nickname"] = "Kallenavn"; -App::$strings["Full Name"] = "Fullt navn"; -App::$strings["Email"] = "E-post"; -App::$strings["Profile Photo"] = "Profilbilde"; -App::$strings["Profile Photo 16px"] = "Profilbilde 16px"; -App::$strings["Profile Photo 32px"] = "Profilbilde 32px"; -App::$strings["Profile Photo 48px"] = "Profilbilde 48px"; -App::$strings["Profile Photo 64px"] = "Profilbilde 64px"; -App::$strings["Profile Photo 80px"] = "Profilbilde 80px"; -App::$strings["Profile Photo 128px"] = "Profilbilde 128px"; -App::$strings["Timezone"] = "Tidssone"; -App::$strings["Homepage URL"] = "Hjemmeside URL"; -App::$strings["Language"] = "Språk"; -App::$strings["Birth Year"] = "Fødselsår"; -App::$strings["Birth Month"] = "Fødselsmåne"; -App::$strings["Birth Day"] = "Fødselsdag"; -App::$strings["Birthdate"] = "Fødselsdato"; -App::$strings["Gender"] = "Kjønn"; -App::$strings["Male"] = "Mannlig"; -App::$strings["Female"] = "Kvinnelig"; -App::$strings["webpage"] = "nettside"; -App::$strings["block"] = "byggekloss"; -App::$strings["layout"] = "layout"; -App::$strings["menu"] = "meny"; -App::$strings["%s element installed"] = "%s element installert"; -App::$strings["%s element installation failed"] = "Installasjon av %s-element mislyktes"; -App::$strings["Like/Dislike"] = "Liker/Liker ikke"; -App::$strings["This action is restricted to members."] = "Denne handlingen er begrenset til medlemmer."; -App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Vennligst logg inn med din \$Projectname ID eller registrer deg som et nytt \$Projectname-medlem for å fortsette"; -App::$strings["Invalid request."] = "Ugyldig forespørsel."; -App::$strings["channel"] = "kanal"; -App::$strings["thing"] = "ting"; -App::$strings["Channel unavailable."] = "Kanalen er utilgjengelig."; -App::$strings["Previous action reversed."] = "Forrige handling er omgjort."; -App::$strings["photo"] = "foto"; -App::$strings["status"] = "status"; -App::$strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s liker %2\$s sin %3\$s"; -App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s liker ikke %2\$s sin %3\$s"; -App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s er enig med %2\$s sin %3\$s"; -App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s er ikke enig med %2\$s sin %3\$s"; -App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s avstår fra å mene noe om %2\$s sin %3\$s"; -App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s deltar på %2\$ss %3\$s"; -App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s deltar ikke på %2\$ss %3\$s"; -App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s deltar kanskje på %2\$ss %3\$s"; -App::$strings["Action completed."] = "Handling ferdig."; -App::$strings["Thank you."] = "Tusen takk."; -App::$strings["Import completed"] = "Import ferdig"; -App::$strings["Import Items"] = "Importer elementer"; -App::$strings["Use this form to import existing posts and content from an export file."] = "Bruk dette skjemaet for å importere eksisterende innlegg og innhold fra en eksportfil."; -App::$strings["Total invitation limit exceeded."] = "Grensen for totalt antall invitasjoner er overskredet."; -App::$strings["%s : Not a valid email address."] = "%s : ikke en gyldig e-postadresse."; -App::$strings["Please join us on \$Projectname"] = "Bli med oss på \$Projectname"; -App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Invitasjonsgrensen er overskredet. Vennligst kontakt administratoren ved ditt nettsted."; -App::$strings["%s : Message delivery failed."] = "%s : meldingslevering feilet."; -App::$strings["%d message sent."] = array( - 0 => "%d melding sendt.", - 1 => "%d meldinger sendt.", -); -App::$strings["You have no more invitations available"] = "Du har ikke flere invitasjoner tilgjengelig"; -App::$strings["Send invitations"] = "Send invitasjoner"; -App::$strings["Enter email addresses, one per line:"] = "Skriv e-postadresser, en per linje:"; -App::$strings["Your message:"] = "Din melding:"; -App::$strings["Please join my community on \$Projectname."] = "Du er velkommen til å bli med i mitt fellesskap på \$Projectname."; -App::$strings["You will need to supply this invitation code:"] = "Du må oppgi denne invitasjonskoden:"; -App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registrer ved enhver \$Projectname-lokasjon (de er alle forbundet med hverandre)"; -App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Skriv inn min \$Projectname-adresse i nettstedets søkefelt."; -App::$strings["or visit"] = "eller besøke"; -App::$strings["3. Click [Connect]"] = "3. Klikk [Forbindelse]"; -App::$strings["Remote privacy information not available."] = "Ekstern personverninformasjon er ikke tilgjengelig."; -App::$strings["Visible to:"] = "Synlig for:"; -App::$strings["Location not found."] = "Plassering er ikke funnet."; -App::$strings["Location lookup failed."] = "Oppslag på plassering mislyktes."; -App::$strings["Please select another location to become primary before removing the primary location."] = "Vennligst velg en annen plassering som primær før du sletter gjeldende primære plassering."; -App::$strings["Syncing locations"] = "Synkroniserer plasseringer"; -App::$strings["No locations found."] = "Ingen plasseringer ble funnet."; -App::$strings["Manage Channel Locations"] = "Håndter kanalplasseringer"; -App::$strings["Address"] = "Adresse"; -App::$strings["Primary"] = ""; -App::$strings["Drop"] = "Slett"; -App::$strings["Sync Now"] = ""; -App::$strings["Please wait several minutes between consecutive operations."] = "Vennligst vent flere minutter mellom hver etterfølgende operasjon."; -App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Når mulig, fjern en plassering ved å logge inn på det nettstedet eller den hub-en og fjern din kanal."; -App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Bruk dette skjemaet for å fjerne plasseringen hvis huben ikke er i drift lenger."; -App::$strings["Hub not found."] = "Hubben ble ikke funnet."; -App::$strings["Unable to lookup recipient."] = "Ikke i stand til å slå opp mottaker."; -App::$strings["Unable to communicate with requested channel."] = "Ikke i stand til å kommunisere med forespurt kanal."; -App::$strings["Cannot verify requested channel."] = "Kan ikke bekrefte forespurt kanal."; -App::$strings["Selected channel has private message restrictions. Send failed."] = "Valgt kanal har restriksjoner for private meldinger. Sending feilet."; -App::$strings["Messages"] = "Meldinger"; -App::$strings["Message recalled."] = "Innlegg tilbakekalt."; -App::$strings["Conversation removed."] = "Samtale fjernet."; -App::$strings["Expires YYYY-MM-DD HH:MM"] = "Utløper YYYY-MM-DD HH:MM"; -App::$strings["Requested channel is not in this network"] = "Forespurt kanal er ikke tilgjengelig i dette nettverket."; -App::$strings["Send Private Message"] = "Send privat melding"; -App::$strings["To:"] = "Til:"; -App::$strings["Subject:"] = "Emne:"; -App::$strings["Attach file"] = "Legg ved fil"; -App::$strings["Send"] = "Send"; -App::$strings["Set expiration date"] = "Angi utløpsdato"; -App::$strings["Delete message"] = "Slett melding"; -App::$strings["Delivery report"] = "Leveringsrapport"; -App::$strings["Recall message"] = "Tilbakekall innlegg"; -App::$strings["Message has been recalled."] = "Innlegget har blitt tilbakekalt."; -App::$strings["Delete Conversation"] = "Slett samtale"; -App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Ingen sikret kommunikasjon tilgjengelig. Du kan muligens greie å svare via senderens profilside."; -App::$strings["Send Reply"] = "Send svar"; -App::$strings["Your message for %s (%s):"] = "Din melding til %s (%s):"; -App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Du har laget %1$.0f av %2$.0f tillatte kanaler."; -App::$strings["Create a new channel"] = "Lag en ny kanal"; -App::$strings["Channel Manager"] = "Kanalstyring"; -App::$strings["Current Channel"] = "Gjeldende kanal"; -App::$strings["Switch to one of your channels by selecting it."] = "Bytt til en av dine kanaler ved å velge den."; -App::$strings["Default Channel"] = "Standardkanal"; -App::$strings["Make Default"] = "Gjør til standard"; -App::$strings["%d new messages"] = "%d nye meldinger"; -App::$strings["%d new introductions"] = "%d nye introduksjoner"; -App::$strings["Delegated Channel"] = ""; -App::$strings["No valid account found."] = "Ingen gyldig konto funnet."; -App::$strings["Password reset request issued. Check your email."] = "Forespørsel om å tilbakestille passord er mottatt. Sjekk e-posten din."; -App::$strings["Site Member (%s)"] = "Nettstedsmedlem (%s)"; -App::$strings["Password reset requested at %s"] = "Forespurt om å tilbakestille passord hos %s"; -App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Forespørsel kunne ikke bekreftes. (Du kan ha sendt den inn tidligere.) Tilbakestilling av passord mislyktes."; -App::$strings["Password Reset"] = "Tilbakestill passord"; -App::$strings["Your password has been reset as requested."] = "Ditt passord har blitt tilbakestilt som forespurt."; -App::$strings["Your new password is"] = "Ditt nye passord er"; -App::$strings["Save or copy your new password - and then"] = "Lagre eller kopier ditt nye passord, og deretter kan du"; -App::$strings["click here to login"] = "klikke her for å logge inn"; -App::$strings["Your password may be changed from the Settings page after successful login."] = "Ditt passord kan endres på siden Innstillinger etter vellykket innlogging."; -App::$strings["Your password has changed at %s"] = "Ditt passord er endret hos %s"; -App::$strings["Forgot your Password?"] = "Glemt passord ditt?"; -App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Skriv e-postadressen din og send inn for å tilbakestille passordet ditt. Sjekk deretter din e-post for videre instruksjoner."; -App::$strings["Email Address"] = "E-postadresse"; -App::$strings["Reset"] = "Tilbakestill"; -App::$strings["Unable to update menu."] = "Ikke i stand til å oppdatere meny."; -App::$strings["Unable to create menu."] = "Ikke i stand til å lage meny."; -App::$strings["Menu Name"] = "Menynavn"; -App::$strings["Unique name (not visible on webpage) - required"] = "Unikt navn (ikke synlig på websiden) - påkrevet"; -App::$strings["Menu Title"] = "Menytittel"; -App::$strings["Visible on webpage - leave empty for no title"] = "Synlig på websiden - la stå tomt for ingen tittel"; -App::$strings["Allow Bookmarks"] = "Tillat bokmerker"; -App::$strings["Menu may be used to store saved bookmarks"] = "Menyen kan brukes til å lagre lagrede bokmerker"; -App::$strings["Submit and proceed"] = "Send inn og fortsett"; -App::$strings["Menus"] = "Menyer"; -App::$strings["Bookmarks allowed"] = "Bokmerker tillatt"; -App::$strings["Delete this menu"] = "Slett denne menyen"; -App::$strings["Edit menu contents"] = "Endre menyinnholdet"; -App::$strings["Edit this menu"] = "Endre denne menyen"; -App::$strings["Menu could not be deleted."] = "Menyen kunne ikke bli slettet."; -App::$strings["Menu not found."] = "Menyen ble ikke funnet."; -App::$strings["Edit Menu"] = "Endre meny"; -App::$strings["Add or remove entries to this menu"] = "Legg til eller fjern punkter i denne menyen"; -App::$strings["Menu name"] = "Menynavn"; -App::$strings["Must be unique, only seen by you"] = "Må være unik, ses bare av deg"; -App::$strings["Menu title"] = "Menytittel"; -App::$strings["Menu title as seen by others"] = "Menytittelen andre ser"; -App::$strings["Allow bookmarks"] = "Tillat bokmerker"; -App::$strings["Not found."] = "Ikke funnet."; -App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s er %2\$s"; -App::$strings["Mood"] = "Stemning"; -App::$strings["Set your current mood and tell your friends"] = "Angi ditt nåværende humør og fortell dine venner"; -App::$strings["Profile Match"] = "Profiltreff"; -App::$strings["No keywords to match. Please add keywords to your default profile."] = "Ingen nøkkelord å sammenlikne. Vennligst legg til nøkkelord til din standardprofil."; -App::$strings["is interested in:"] = "er interessert i:"; -App::$strings["No matches"] = "Ingen treff"; -App::$strings["No such group"] = "Gruppen finnes ikke"; -App::$strings["No such channel"] = "Ingen slik kanal"; -App::$strings["forum"] = "forum"; -App::$strings["Search Results For:"] = "Søkeresultat for:"; -App::$strings["Privacy group is empty"] = "Personverngruppen er tom"; -App::$strings["Privacy group: "] = "Personverngruppe:"; -App::$strings["Invalid connection."] = "Ugyldig forbindelse."; -App::$strings["No more system notifications."] = "Ingen flere systemvarsler."; -App::$strings["System Notifications"] = "Systemvarsler"; -App::$strings["Unable to create element."] = "Klarer ikke å lage element."; -App::$strings["Unable to update menu element."] = "Ikke i stand til å oppdatere menyelement."; -App::$strings["Unable to add menu element."] = "Ikke i stand til å legge til menyelement."; -App::$strings["Menu Item Permissions"] = "Menyelement Tillatelser"; -App::$strings["(click to open/close)"] = "(klikk for å åpne/lukke)"; -App::$strings["Link Name"] = "Lenkenavn"; -App::$strings["Link or Submenu Target"] = "Lenke- eller undermeny-mål"; -App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Skriv URL-en til lenken eller velg et menynavn for å lage en undermeny"; -App::$strings["Use magic-auth if available"] = "Bruk magic-autent hvis mulig"; -App::$strings["Open link in new window"] = "Åpne lenke i nytt vindu"; -App::$strings["Order in list"] = "Ordne i liste"; -App::$strings["Higher numbers will sink to bottom of listing"] = "Høyere tall vil synke mot bunnen av listen"; -App::$strings["Submit and finish"] = "Send inn og avslutt"; -App::$strings["Submit and continue"] = "Send inn og fortsett"; -App::$strings["Menu:"] = "Meny:"; -App::$strings["Link Target"] = "Lenkemål"; -App::$strings["Edit menu"] = "Endre meny"; -App::$strings["Edit element"] = "Endre element"; -App::$strings["Drop element"] = "Slett element"; -App::$strings["New element"] = "Nytt element"; -App::$strings["Edit this menu container"] = "Endre denne menybeholderen"; -App::$strings["Add menu element"] = "Legg til menyelement"; -App::$strings["Delete this menu item"] = "Slett dette menyelementet"; -App::$strings["Edit this menu item"] = "Endre dette menyelementet"; -App::$strings["Menu item not found."] = "Menyelement ble ikke funnet."; -App::$strings["Menu item deleted."] = "Menyelement slettet."; -App::$strings["Menu item could not be deleted."] = "Menyelement kunne ikke bli slettet."; -App::$strings["Edit Menu Element"] = "Endre menyelement"; -App::$strings["Link text"] = "Lenketekst"; -App::$strings["Name or caption"] = "Navn eller overskrift"; -App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Eksempel: \"Ola Nordmann\", \"Lisa og hestene hennes\", \"Fotball\", \"Sykkelgruppa\""; -App::$strings["Choose a short nickname"] = "Velg et kort kallenavn"; -App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Ditt kallenavn brukes til å lage en kanaladresse som er enkel å huske, for eksempel kallenavn%s"; -App::$strings["Channel role and privacy"] = "Kanalrolle og personvern"; -App::$strings["Select a channel role with your privacy requirements."] = "Velg en kanalrolle for ditt personvernbehov."; -App::$strings["Read more about roles"] = "Les mer om roller"; -App::$strings["Create Channel"] = "Lag kanal"; -App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "En kanal er din identitet i dette nettverket. Den kan representere en person, en blogg eller et forum for å nevne noe. Kanaler kan ha forbindelser til andre kanaler for å dele informasjon, og med svært detaljerte tillatelser."; -App::$strings["or import an existing channel from another location."] = "eller importer en eksisterende kanal fra et annet sted."; -App::$strings["Invalid request identifier."] = "Ugyldig forespørselsidentifikator."; -App::$strings["Discard"] = "Forkast"; -App::$strings["Mark all system notifications seen"] = "Merk alle systemvarsler som sett"; -App::$strings["Page owner information could not be retrieved."] = "Informasjon om sideeier kunne ikke hentes."; -App::$strings["Profile Photos"] = "Profilbilder"; -App::$strings["Album not found."] = "Albumet ble ikke funnet."; -App::$strings["Delete Album"] = "Slett album"; -App::$strings["Multiple storage folders exist with this album name, but within different directories. Please remove the desired folder or folders using the Files manager"] = ""; -App::$strings["Delete Photo"] = "Slett bilde"; -App::$strings["No photos selected"] = "Ingen bilder valgt"; -App::$strings["Access to this item is restricted."] = "Tilgang til dette elementet er begrenset."; -App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB av %2$.2f MB lagringsplass til bilder er brukt."; -App::$strings["%1$.2f MB photo storage used."] = "%1$.2f MB lagringsplass til bilder er brukt."; -App::$strings["Upload Photos"] = "Last opp bilder"; -App::$strings["Enter an album name"] = "Skriv et albumnavn"; -App::$strings["or select an existing album (doubleclick)"] = "eller velg et eksisterende album (dobbeltklikk)"; -App::$strings["Create a status post for this upload"] = "Lag et statusinnlegg for denne opplastingen"; -App::$strings["Caption (optional):"] = "Bildetekst (valgfritt):"; -App::$strings["Description (optional):"] = "Beskrivelse (valgfritt):"; -App::$strings["Album name could not be decoded"] = "Albumnavnet kunne ikke dekodes"; -App::$strings["Contact Photos"] = "Kontaktbilder"; -App::$strings["Show Newest First"] = "Vis nyeste først"; -App::$strings["Show Oldest First"] = "Vis eldste først"; -App::$strings["View Photo"] = "Vis foto"; -App::$strings["Edit Album"] = "Endre album"; -App::$strings["Permission denied. Access to this item may be restricted."] = "Tillatelse avvist. Tilgang til dette elementet kan være begrenset."; -App::$strings["Photo not available"] = "Bilde er utilgjengelig"; -App::$strings["Use as profile photo"] = "Bruk som profilbilde"; -App::$strings["Use as cover photo"] = ""; -App::$strings["Private Photo"] = "Privat bilde"; -App::$strings["View Full Size"] = "Vis i full størrelse"; -App::$strings["Remove"] = "Fjern"; -App::$strings["Edit photo"] = "Endre bilde"; -App::$strings["Rotate CW (right)"] = "Roter med klokka (mot høyre)"; -App::$strings["Rotate CCW (left)"] = "Roter mot klokka (venstre)"; -App::$strings["Enter a new album name"] = "Skriv et nytt albumnavn"; -App::$strings["or select an existing one (doubleclick)"] = "eller velg et eksisterende album (dobbeltklikk)"; -App::$strings["Caption"] = "Overskrift"; -App::$strings["Add a Tag"] = "Legg til merkelapp"; -App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Eksempel: @bob, @Barbara_Jensen, @jim@example.com"; -App::$strings["Flag as adult in album view"] = "Flag som voksent i albumvisning"; -App::$strings["I like this (toggle)"] = "Jeg liker dette (skru av og på)"; -App::$strings["I don't like this (toggle)"] = "Jeg liker ikke dette (skru av og på)"; -App::$strings["Please wait"] = "Vennligst vent"; -App::$strings["This is you"] = "Dette er deg"; +App::$strings["Pages"] = "Sider"; +App::$strings["Import"] = "Importer"; +App::$strings["Import website..."] = ""; +App::$strings["Select folder to import"] = ""; +App::$strings["Import from a zipped folder:"] = ""; +App::$strings["Import from cloud files:"] = ""; +App::$strings["/cloud/channel/path/to/folder"] = ""; +App::$strings["Enter path to website files"] = ""; +App::$strings["Select folder"] = ""; +App::$strings["Export website..."] = ""; +App::$strings["Export to a zip file"] = ""; +App::$strings["website.zip"] = ""; +App::$strings["Enter a name for the zip file."] = ""; +App::$strings["Export to cloud files"] = ""; +App::$strings["/path/to/export/folder"] = ""; +App::$strings["Enter a path to a cloud files destination."] = ""; +App::$strings["Specify folder"] = ""; +App::$strings["This is the home page of %s."] = ""; +App::$strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; +App::$strings["Starts:"] = "Starter:"; +App::$strings["Finishes:"] = "Slutter:"; +App::$strings["Location:"] = "Plassering:"; +App::$strings["l F d, Y"] = ""; +App::$strings["Start:"] = ""; +App::$strings["End:"] = ""; +App::$strings["This event has been added to your calendar."] = "Denne hendelsen er lagt til i din kalender."; +App::$strings["Not specified"] = "Ikke spesifisert"; +App::$strings["Needs Action"] = "Trenger handling"; +App::$strings["Completed"] = "Ferdig"; +App::$strings["In Process"] = "Igang"; +App::$strings["Cancelled"] = "Avbrutt"; +App::$strings["Mobile"] = ""; +App::$strings["Home"] = "Hjem"; +App::$strings["Home, Voice"] = ""; +App::$strings["Home, Fax"] = ""; +App::$strings["Work"] = ""; +App::$strings["Work, Voice"] = ""; +App::$strings["Work, Fax"] = ""; +App::$strings["Other"] = "Annen"; +App::$strings["Off"] = "Av"; +App::$strings["On"] = "På"; +App::$strings["Calendar"] = "Kalender"; +App::$strings["Start calendar week on Monday"] = ""; +App::$strings["Default is Sunday"] = ""; +App::$strings["Event Timezone Selection"] = ""; +App::$strings["Allow event creation in timezones other than your own."] = ""; +App::$strings["Channel Home"] = "Kanalhjem"; +App::$strings["Search by Date"] = "Søk etter dato"; +App::$strings["Ability to select posts by date ranges"] = "Mulighet for å velge innlegg etter datoområde"; +App::$strings["Tag Cloud"] = "Merkelappsky"; +App::$strings["Provide a personal tag cloud on your channel page"] = "Tilby en personlig merkelappsky på din kanalside"; +App::$strings["Use blog/list mode"] = ""; +App::$strings["Comments will be displayed separately"] = ""; +App::$strings["Connection Filtering"] = "Filtrer forbindelser"; +App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filtrer innkommende innlegg fra forbindelser basert på nøkkelord/innhold"; +App::$strings["Conversation"] = ""; +App::$strings["Emoji Reactions"] = ""; +App::$strings["Add emoji reaction ability to posts"] = ""; +App::$strings["Dislike Posts"] = "Mislik innlegg"; +App::$strings["Ability to dislike posts/comments"] = "Mulighet til å mislike innlegg/kommentarer"; +App::$strings["Star Posts"] = "Stjerneinnlegg"; +App::$strings["Ability to mark special posts with a star indicator"] = "Mulighet til å merke spesielle innlegg med en stjerne"; +App::$strings["Reply on comment"] = ""; +App::$strings["Ability to reply on selected comment"] = ""; +App::$strings["Directory"] = "Katalog"; +App::$strings["Advanced Directory Search"] = ""; +App::$strings["Allows creation of complex directory search queries"] = ""; +App::$strings["Editor"] = ""; +App::$strings["Post Categories"] = "Innleggskategorier"; +App::$strings["Add categories to your posts"] = "Legg kategorier til dine innlegg"; +App::$strings["Large Photos"] = "Store bilder"; +App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Inkluder store (1024px) småbilder i innlegg. Hvis denne ikke er påskrudd, bruk små (640px) småbilder."; +App::$strings["Even More Encryption"] = "Enda mer kryptering"; +App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Tillat valgfri kryptering av innhold ende-til-ende via en delt hemmelig nøkkel"; +App::$strings["Disable Comments"] = ""; +App::$strings["Provide the option to disable comments for a post"] = ""; +App::$strings["Delayed Posting"] = "Tidfest publisering"; +App::$strings["Allow posts to be published at a later date"] = "Tillat innlegg å bli publisert på et senere tidspunkt"; +App::$strings["Content Expiration"] = "Innholdet utløper"; +App::$strings["Remove posts/comments and/or private messages at a future time"] = "Fjern innlegg/kommentarer og/eller private meldinger på et angitt tidspunkt i fremtiden"; +App::$strings["Suppress Duplicate Posts/Comments"] = "Forhindre duplikat av innlegg/kommentarer"; +App::$strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = "Forhindre innlegg med identisk innhold fra å bli publisert hvis det er mindre enn to minutter mellom innsendingene."; +App::$strings["Auto-save drafts of posts and comments"] = ""; +App::$strings["Automatically saves post and comment drafts in local browser storage to help prevent accidental loss of compositions"] = ""; +App::$strings["Manage"] = ""; +App::$strings["Navigation Channel Select"] = "Navigasjon kanalvalg"; +App::$strings["Change channels directly from within the navigation dropdown menu"] = "Endre kanaler direkte fra navigasjonsmenyen"; +App::$strings["Network"] = "Nettverk"; +App::$strings["Events Filter"] = ""; +App::$strings["Ability to display only events"] = ""; +App::$strings["Polls Filter"] = ""; +App::$strings["Ability to display only polls"] = ""; +App::$strings["Saved Searches"] = "Lagrede søk"; +App::$strings["Save search terms for re-use"] = "Lagre søkeuttrykk for senere bruk"; +App::$strings["Saved Folders"] = "Lagrede mapper"; +App::$strings["Ability to file posts under folders"] = "Mulighet til å sortere innlegg i mapper"; +App::$strings["Alternate Stream Order"] = ""; +App::$strings["Ability to order the stream by last post date, last comment date or unthreaded activities"] = ""; +App::$strings["Contact Filter"] = ""; +App::$strings["Ability to display only posts of a selected contact"] = ""; +App::$strings["Forum Filter"] = ""; +App::$strings["Ability to display only posts of a specific forum"] = ""; +App::$strings["Personal Posts Filter"] = ""; +App::$strings["Ability to display only posts that you've interacted on"] = ""; +App::$strings["Photos"] = "Bilder"; +App::$strings["Photo Location"] = "Bildeplassering"; +App::$strings["If location data is available on uploaded photos, link this to a map."] = "Hvis plasseringsdata er tilgjengelige i opplastede bilder, plasser dette på et kart."; +App::$strings["Flag Adult Photos"] = ""; +App::$strings["Provide photo edit option to hide inappropriate photos from default album view"] = ""; +App::$strings["Profiles"] = ""; +App::$strings["Advanced Profiles"] = "Avanserte profiler"; +App::$strings["Additional profile sections and selections"] = "Ytterlige seksjoner og utvalg til profilen"; +App::$strings["Profile Import/Export"] = "Profil-import/-eksport"; +App::$strings["Save and load profile details across sites/channels"] = "Lagre og åpne profildetaljer på tvers av nettsteder/kanaler"; +App::$strings["Multiple Profiles"] = "Flere profiler"; +App::$strings["Ability to create multiple profiles"] = "Mulig å lage flere profiler"; +App::$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."] = "Skjemaets sikkerhetspollett var ikke gyldig. Dette skjedde antakelig fordi skjemaet har vært åpnet for lenge (>3 timer) før det ble sendt inn."; +App::$strings["Delete this item?"] = "Slett dette elementet?"; +App::$strings["Item deleted"] = ""; App::$strings["Comment"] = "Kommentar"; -App::$strings["__ctx:title__ Likes"] = "Liker"; -App::$strings["__ctx:title__ Dislikes"] = "Liker ikke"; -App::$strings["__ctx:title__ Agree"] = "Enig"; -App::$strings["__ctx:title__ Disagree"] = "Uenig"; -App::$strings["__ctx:title__ Abstain"] = "Avstår"; -App::$strings["__ctx:title__ Attending"] = "Deltar"; -App::$strings["__ctx:title__ Not attending"] = "Deltar ikke"; -App::$strings["__ctx:title__ Might attend"] = "Deltar kanskje"; -App::$strings["View all"] = "Vis alle"; -App::$strings["__ctx:noun__ Like"] = array( - 0 => "Liker", - 1 => "Liker", -); -App::$strings["__ctx:noun__ Dislike"] = array( - 0 => "Liker ikke", - 1 => "Liker ikke", -); -App::$strings["Photo Tools"] = ""; -App::$strings["In This Photo:"] = "I dette bildet:"; -App::$strings["Map"] = "Kart"; -App::$strings["__ctx:noun__ Likes"] = "Liker"; -App::$strings["__ctx:noun__ Dislikes"] = "Liker ikke"; -App::$strings["Close"] = "Lukk"; -App::$strings["View Album"] = "Vis album"; -App::$strings["Recent Photos"] = "Nye bilder"; -App::$strings["sent you a private message"] = "sendte deg en privat melding"; -App::$strings["added your channel"] = "la til din kanal"; -App::$strings["g A l F d"] = "g A l F d"; -App::$strings["[today]"] = "[idag]"; -App::$strings["posted an event"] = "la ut en hendelse"; -App::$strings["Unable to find your hub."] = "Ikke i stand til å finne hubben din."; -App::$strings["Post successful."] = "Innlegg vellykket."; -App::$strings["OpenID protocol error. No ID returned."] = "OpenID protokollfeil. Ingen ID ble returnert."; -App::$strings["Login failed."] = "Innlogging mislyktes."; -App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; -App::$strings["This setting requires special processing and editing has been blocked."] = "Denne innstillingen krever spesiell behandling og redigering har blitt blokkert."; -App::$strings["Configuration Editor"] = "Konfigurasjonsbehandler"; -App::$strings["Warning: Changing some settings could render your channel inoperable. Please leave this page unless you are comfortable with and knowledgeable about how to correctly use this feature."] = "Advarsel: kanalen din kan slutte å virke ved endring av enkelte innstillinger. Vennligst forlat denne siden med mindre du er komfortabel med dette og vet hvordan du bruker denne funksjonen riktig."; -App::$strings["Layout updated."] = "Layout er oppdatert."; -App::$strings["Edit System Page Description"] = "Endre beskrivelsen av systemsiden"; -App::$strings["Layout not found."] = "Layouten ble ikke funnet."; -App::$strings["Module Name:"] = "Modulnavn:"; -App::$strings["Layout Help"] = "Layout-hjelp"; -App::$strings["Poke"] = "Prikk"; -App::$strings["Poke somebody"] = "Dult noen"; -App::$strings["Poke/Prod"] = "Prikke/oppildne"; -App::$strings["Poke, prod or do other things to somebody"] = "Dult, prikk eller gjør andre ting med noen"; -App::$strings["Recipient"] = "Mottaker"; -App::$strings["Choose what you wish to do to recipient"] = "Velg hva du ønsker å gjøre med mottakeren"; -App::$strings["Make this post private"] = "Gjør dette innlegget privat"; -App::$strings["Fetching URL returns error: %1\$s"] = "Henting av URL gir følgende feil: %1\$s"; -App::$strings["Profile not found."] = "Profilen ble ikke funnet."; -App::$strings["Profile deleted."] = "Profilen er slettet."; -App::$strings["Profile-"] = "Profil-"; -App::$strings["New profile created."] = "Ny profil opprettet."; -App::$strings["Profile unavailable to clone."] = "Profilen er utilgjengelig for klonen."; -App::$strings["Profile unavailable to export."] = "Profilen er utilgjengelig for eksport."; -App::$strings["Profile Name is required."] = "Profilnavn er påkrevd."; -App::$strings["Marital Status"] = "Sivilstand"; -App::$strings["Romantic Partner"] = "Romantisk partner"; -App::$strings["Likes"] = "Liker"; -App::$strings["Dislikes"] = "Liker ikke"; -App::$strings["Work/Employment"] = "Arbeid/sysselsetting"; -App::$strings["Religion"] = "Religion"; -App::$strings["Political Views"] = "Politiske synspunkter"; -App::$strings["Sexual Preference"] = "Seksuelle preferanser"; -App::$strings["Homepage"] = "Hjemmeside"; -App::$strings["Interests"] = "Interesser"; -App::$strings["Profile updated."] = "Profilen er oppdatert."; -App::$strings["Hide your connections list from viewers of this profile"] = ""; -App::$strings["Edit Profile Details"] = "Endre profildetaljer"; -App::$strings["View this profile"] = "Vis denne profilen"; -App::$strings["Edit visibility"] = "Endre synlighet"; -App::$strings["Profile Tools"] = ""; -App::$strings["Change cover photo"] = ""; -App::$strings["Change profile photo"] = "Endre profilbilde"; -App::$strings["Create a new profile using these settings"] = "Lag en ny profil ved å bruke disse innstillingene"; -App::$strings["Clone this profile"] = "Klon denne profilen"; -App::$strings["Delete this profile"] = "Slett denne profilen"; -App::$strings["Add profile things"] = "Legg til profilting"; -App::$strings["Personal"] = "Personlig"; -App::$strings["Relation"] = ""; -App::$strings["Miscellaneous"] = "Forskjellig"; -App::$strings["Import profile from file"] = "Importer profil fra fil"; -App::$strings["Export profile to file"] = "Eksporter profil til fil"; -App::$strings["Your gender"] = ""; -App::$strings["Marital status"] = ""; -App::$strings["Sexual preference"] = ""; -App::$strings["Profile name"] = ""; -App::$strings["This is your default profile."] = "Dette er din standardprofil."; -App::$strings["Your full name"] = ""; -App::$strings["Title/Description"] = ""; -App::$strings["Street address"] = ""; -App::$strings["Locality/City"] = ""; -App::$strings["Region/State"] = ""; -App::$strings["Postal/Zip code"] = ""; -App::$strings["Country"] = ""; -App::$strings["Who (if applicable)"] = ""; -App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Eksempler: kari123, Kari Villiamsen, kari@example.com"; -App::$strings["Since (date)"] = ""; -App::$strings["Tell us about yourself"] = ""; -App::$strings["Hometown"] = ""; -App::$strings["Political views"] = ""; -App::$strings["Religious views"] = ""; -App::$strings["Keywords used in directory listings"] = ""; -App::$strings["Example: fishing photography software"] = "Eksempel: fisking fotografering programvare"; -App::$strings["Musical interests"] = "Musikkinteresser"; -App::$strings["Books, literature"] = "Bøker, litteratur"; -App::$strings["Television"] = "TV/fjernsyn"; -App::$strings["Film/Dance/Culture/Entertainment"] = ""; -App::$strings["Hobbies/Interests"] = "Hobbier/Interesser"; -App::$strings["Love/Romance"] = ""; -App::$strings["School/Education"] = ""; -App::$strings["Contact information and social networks"] = ""; -App::$strings["My other channels"] = "Mine andre kanaler"; -App::$strings["Profile Image"] = "Profilbilde"; -App::$strings["Edit Profiles"] = "Endre profiler"; -App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Hold nede Shift-knappen og last siden på nytt eller tøm nettleserens mellomlager hvis det nye bildet ikke vises umiddelbart."; -App::$strings["Upload Profile Photo"] = "Last opp profilbilde:"; -App::$strings["Invalid profile identifier."] = "Ugyldig profil-identifikator."; -App::$strings["Profile Visibility Editor"] = "Endre profilsynlighet"; -App::$strings["Profile"] = "Profil"; -App::$strings["Click on a contact to add or remove."] = "Klikk på en kontakt for å legge til eller fjerne."; -App::$strings["Visible To"] = "Synlig for"; -App::$strings["Public Hubs"] = "Offentlige huber"; -App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "Nettstedene på listen tillater offentlig registrering i \$Projectname-nettverket. Alle nettsteder i nettverket er forbundet så medlemskap på enhver av dem formidler medlemskap i nettverket som helhet. Noen nettsteder kan kreve abonnement eller tilby lagdelte tjenesteavtaler. Nettstedene selv kan gi tilleggsopplysninger."; -App::$strings["Hub URL"] = "Nettstedets URL"; -App::$strings["Access Type"] = "Tilgangstype"; -App::$strings["Registration Policy"] = "Retningslinjer for registrering"; -App::$strings["Stats"] = ""; -App::$strings["Software"] = ""; -App::$strings["Ratings"] = "Vurderinger"; -App::$strings["Rate"] = "Vurder"; -App::$strings["Website:"] = "Nettsted:"; -App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Fjerntliggende kanal [%s] (foreløpig ikke kjent på dette nettstedet)"; -App::$strings["Rating (this information is public)"] = "Vurdering (denne informasjonen er offentlig)"; -App::$strings["Optionally explain your rating (this information is public)"] = "Velg om du vil forklare din vurdering (denne informasjonen er offentlig)"; -App::$strings["No ratings"] = "Ingen vurderinger"; -App::$strings["Rating: "] = "Vurdering:"; -App::$strings["Website: "] = "Nettsted:"; -App::$strings["Description: "] = "Beskrivelse:"; -App::$strings["Theme settings updated."] = "Temainnstillinger er oppdatert."; -App::$strings["# Accounts"] = "# Kontoer"; -App::$strings["# blocked accounts"] = "# blokkerte kontoer"; -App::$strings["# expired accounts"] = "# utgåtte kontoer"; -App::$strings["# expiring accounts"] = "# kontoer som holder på å gå ut"; -App::$strings["# Channels"] = "# Kanaler"; -App::$strings["# primary"] = "# hoved"; -App::$strings["# clones"] = "# kloner"; -App::$strings["Message queues"] = "Meldingskøer"; -App::$strings["Your software should be updated"] = ""; -App::$strings["Administration"] = "Administrasjon"; -App::$strings["Summary"] = "Sammendrag"; -App::$strings["Registered accounts"] = "Registrerte kontoer"; -App::$strings["Pending registrations"] = "Ventende registreringer"; -App::$strings["Registered channels"] = "Registrerte kanaler"; -App::$strings["Active plugins"] = "Aktive tilleggsfunksjoner"; -App::$strings["Version"] = "Versjon"; -App::$strings["Repository version (master)"] = ""; -App::$strings["Repository version (dev)"] = ""; -App::$strings["Site settings updated."] = "Nettstedsinnstillinger er oppdatert."; -App::$strings["Default"] = "Standard"; -App::$strings["mobile"] = "mobil"; -App::$strings["experimental"] = "eksperimentell"; -App::$strings["unsupported"] = "ikke støttet"; -App::$strings["Yes - with approval"] = "Ja - med godkjenning"; -App::$strings["My site is not a public server"] = "Mitt nettsted er ikke en offentlig tjeneste"; -App::$strings["My site has paid access only"] = "Mitt nettsted gir kun tilgang mot betaling"; -App::$strings["My site has free access only"] = "Mitt nettsted har kun gratis tilgang"; -App::$strings["My site offers free accounts with optional paid upgrades"] = "Mitt nettsted tilbyr gratis konto med valgfri oppgradering til betalt tjeneste"; -App::$strings["Site"] = "Nettsted"; -App::$strings["Registration"] = "Registrering"; -App::$strings["File upload"] = "Last opp fil"; -App::$strings["Policies"] = "Retningslinjer"; -App::$strings["Advanced"] = "Avansert"; -App::$strings["Site name"] = "Nettstedets navn"; -App::$strings["Banner/Logo"] = "Banner/Logo"; -App::$strings["Administrator Information"] = "Administratorinformasjon"; -App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Kontaktinformasjon til nettstedsadministratorer. Vises på siteinfo-siden. BBCode kan brukes her"; -App::$strings["System language"] = "Systemspråk"; -App::$strings["System theme"] = "Systemtema"; -App::$strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Standard systemtema - kan overstyres av brukerprofiler - endre temainnstillinger"; -App::$strings["Mobile system theme"] = "Mobilt systemtema"; -App::$strings["Theme for mobile devices"] = "Tema for mobile enheter"; -App::$strings["Allow Feeds as Connections"] = "Tillat strømmer som forbindelser"; -App::$strings["(Heavy system resource usage)"] = "(Tung bruk av systemressurser)"; -App::$strings["Maximum image size"] = "Største bildestørrelse"; -App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Største størrelse i bytes for opplastede bilder. Standard er 0, som betyr ubegrenset."; -App::$strings["Does this site allow new member registration?"] = "Tillater dette nettstedet registrering av nye medlemmer?"; -App::$strings["Invitation only"] = "Kun inviterte"; -App::$strings["Only allow new member registrations with an invitation code. Above register policy must be set to Yes."] = "Tillat bare nye medlemsregistreringer med en invitasjonskode. Ovenstående retningslinjer for registrering må være satt til Ja."; -App::$strings["Which best describes the types of account offered by this hub?"] = "Hvilket alternativ beskriver best hva slags kontotype som tilbys av dette nettstedet/denne hubben?"; -App::$strings["Register text"] = "Registreringstekst"; -App::$strings["Will be displayed prominently on the registration page."] = "Vil bli vist på en fremtredende måte på registreringssiden."; -App::$strings["Site homepage to show visitors (default: login box)"] = "Nettstedets hjemmeside som vises til besøkende (standard: innloggingsboks)"; -App::$strings["example: 'public' to show public stream, 'page/sys/home' to show a system webpage called 'home' or 'include:home.html' to include a file."] = "eksempel: 'public' for å vise offentlig strøm av innlegg, 'page/sys/home/ for å vise en system-webside called 'home\" eller 'include:home.html' for å inkludere en fil."; -App::$strings["Preserve site homepage URL"] = "Bevar URL-en til nettstedets hjemmeside"; -App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Presenter hjemmesiden til nettstedet i en ramme fra den opprinnelige plasseringen i stedet for å omdirigere"; -App::$strings["Accounts abandoned after x days"] = "Kontoer forlatt etter x dager"; -App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Vil ikke kaste bort systemressurser på å spørre eksterne nettsteder etter forlatte kontoer. Skriv 0 for å ikke sette noen tidsgrense."; -App::$strings["Allowed friend domains"] = "Tillatte vennedomener"; -App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Kommaseparert liste over domener som har lov til å etablere vennskap med dette nettstedet. Jokertegn er akseptert. Tøm for å tillate alle domener."; -App::$strings["Allowed email domains"] = "Tillate e-postdomener"; -App::$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"] = "Kommaseparert liste med domener som er tillatt i e-postadresser ved registrering på dette nettstedet. Jokertegn er akseptert. Tomt betyr at alle domener er tillatt"; -App::$strings["Not allowed email domains"] = "Ikke tillatte e-postdomener"; -App::$strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "Kommaseparert liste med domener som ikke er tillatt i e-postadresser ved registrering på dette nettstedet. Jokertegn er akseptert. Tomt betyr at alle domener er tillatt, med mindre tillate domener er blitt definert."; -App::$strings["Verify Email Addresses"] = "Bekreft e-postadresser"; -App::$strings["Check to verify email addresses used in account registration (recommended)."] = "Sett hake for å sjekke e-postadresser brukt ved kontoregistrering (anbefales)."; -App::$strings["Force publish"] = "Tving publisering"; -App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "Kryss av for å tvinge alle profiler på dette nettstedet til å bli oppført i nettstedet sin katalog."; -App::$strings["Import Public Streams"] = "Importer offentlige innholdsstrømmer"; -App::$strings["Import and allow access to public content pulled from other sites. Warning: this content is unmoderated."] = "Importer og gi tilgang til offentlig innhold trukket inn fra andre nettsteder. Advarsel: dette innholdet er ikke moderert."; -App::$strings["Login on Homepage"] = ""; -App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = "Presenter en innloggingsboks til besøkende på hjemmesiden hvis ikke noe annet innhold har blitt konfigurert."; -App::$strings["Enable context help"] = ""; -App::$strings["Display contextual help for the current page when the help button is pressed."] = ""; -App::$strings["Directory Server URL"] = "Katalogtjener URL"; -App::$strings["Default directory server"] = "Standard katalogtjener"; -App::$strings["Proxy user"] = "Brukernavn mellomtjener"; -App::$strings["Proxy URL"] = "Mellomtjener URL"; -App::$strings["Network timeout"] = "Nettverk tidsavbrudd"; -App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Verdien i sekunder. Skriv 0 for ubegrenset (ikke anbefalt)."; -App::$strings["Delivery interval"] = "Leveringsinterval"; -App::$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."] = "Forsink leveringsprosessene i bakgrunnen med dette antall sekunder for å redusere systembelastningen. Anbefaling: 4-5 for delte tjenere, 2-3 for virtuelle tjenere, 0-1 for større dedikerte tjenere."; -App::$strings["Deliveries per process"] = "Leveranser per prosess"; -App::$strings["Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5."] = "Antall leveranser som forsøkes i en enkelt operativsystemprosess. Juster om nødvendig for å fininnstille systemets yteevne. Anbefaling: 1-5."; -App::$strings["Poll interval"] = "Spørreintervall"; -App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Forsink spørreprosessene i bakgrunnen med dette antall sekunder for å redusere systembelastningen. Hvis 0, bruk dette leveringsintervallet."; -App::$strings["Maximum Load Average"] = "Største belastningsgjennomsnitt"; -App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Største systembelastning før leverings- og spørreprosesser blir utsatt - standard 50."; -App::$strings["Expiration period in days for imported (grid/network) content"] = "Antall dager før importert innhold (nettet/nettverk) utgår"; -App::$strings["0 for no expiration of imported content"] = "0 dersom importert innhold ikke skal utgå"; -App::$strings["Off"] = "Av"; -App::$strings["On"] = "På"; -App::$strings["Lock feature %s"] = "Lås funksjon %s"; -App::$strings["Manage Additional Features"] = "Håndter tilleggsfunksjoner"; -App::$strings["No server found"] = "Ingen tjener funnet"; -App::$strings["ID"] = "ID"; -App::$strings["for channel"] = "for kanalen"; -App::$strings["on server"] = "på tjener"; -App::$strings["Server"] = "Tjener"; -App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = ""; -App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = ""; -App::$strings["https://youtube.com/
https://www.youtube.com/
https://youtu.be/
https://vimeo.com/
https://soundcloud.com/
"] = ""; -App::$strings["All other embedded content will be filtered, unless embedded content from that site is explicitly blocked."] = ""; -App::$strings["Security"] = "Sikkerhet"; -App::$strings["Block public"] = "Blokker offentlig tilgang"; -App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = "Kryss av for å blokkere tilgang til alle personlige sider som ellers ville vært offentlig tilgjengelige på dette nettstedet med mindre du er logget inn."; -App::$strings["Set \"Transport Security\" HTTP header"] = ""; -App::$strings["Set \"Content Security Policy\" HTTP header"] = ""; -App::$strings["Allow communications only from these sites"] = "Tillat kommunikasjon med bare disse nettstedene"; -App::$strings["One site per line. Leave empty to allow communication from anywhere by default"] = "Et nettsted per linje. La det stå tomt for å tillate kommunikasjon med ethvert nettsted som standard"; -App::$strings["Block communications from these sites"] = "Blokker kommunikasjon fra disse nettstedene"; -App::$strings["Allow communications only from these channels"] = "Tillat kommunikasjon med bare disse kanalene"; -App::$strings["One channel (hash) per line. Leave empty to allow from any channel by default"] = "En kanal (hash) per linje. La det stå tomt for å tillate enhver kanal som standard"; -App::$strings["Block communications from these channels"] = "Blokker kommunikasjon fra disse kanalene"; -App::$strings["Only allow embeds from secure (SSL) websites and links."] = ""; -App::$strings["Allow unfiltered embedded HTML content only from these domains"] = ""; -App::$strings["One site per line. By default embedded content is filtered."] = ""; -App::$strings["Block embedded HTML from these domains"] = "Blokker innbygget HTML fra disse domenene"; -App::$strings["Update has been marked successful"] = "Oppdateringen har blitt merket som en suksess"; -App::$strings["Executing %s failed. Check system logs."] = "Utføring av %s feilet. Sjekk systemlogger."; -App::$strings["Update %s was successfully applied."] = "Oppdatering %s ble gjennomført med suksess."; -App::$strings["Update %s did not return a status. Unknown if it succeeded."] = "Oppdatering %s returnerte ingen status. Det er ukjent om den ble vellykket."; -App::$strings["Update function %s could not be found."] = "Oppdatering av funksjon %s kunne ikke finnes."; -App::$strings["No failed updates."] = "Ingen mislykkede oppdateringer."; -App::$strings["Failed Updates"] = "Mislykkede oppdateringer"; -App::$strings["Mark success (if update was manually applied)"] = "Marker suksess (hvis oppdateringen ble gjennomført manuelt)"; -App::$strings["Attempt to execute this update step automatically"] = "Prøv å gjennomføre dette oppdateringstrinnet automatisk"; -App::$strings["Queue Statistics"] = "Køstatistikk"; -App::$strings["Total Entries"] = "Totalt antall oppføringer"; -App::$strings["Priority"] = "Prioritet"; -App::$strings["Destination URL"] = "Mål-URL"; -App::$strings["Mark hub permanently offline"] = "Merk hub som permanent offline"; -App::$strings["Empty queue for this hub"] = "Tøm køen for denne hubben"; -App::$strings["Last known contact"] = "Siste kjente kontakt"; -App::$strings["%s account blocked/unblocked"] = array( - 0 => "%s konto blokkert/ikke blokkert lenger", - 1 => "%s kontoer blokkert/ikke blokkert lenger", +App::$strings["%s show all"] = ""; +App::$strings["%s show less"] = ""; +App::$strings["%s expand"] = ""; +App::$strings["%s collapse"] = ""; +App::$strings["Password too short"] = "Passordet er for kort"; +App::$strings["Passwords do not match"] = "Passordene er ikke like"; +App::$strings["everybody"] = "alle"; +App::$strings["Secret Passphrase"] = "Hemmelig passordsetning"; +App::$strings["Passphrase hint"] = "Hint om passordsetning"; +App::$strings["Notice: Permissions have changed but have not yet been submitted."] = "Varsel: Tillatelser har blitt endret, men de har ennå ikke blitt sendt inn."; +App::$strings["close all"] = "Lukk alle"; +App::$strings["Nothing new here"] = "Ikke noe nytt her"; +App::$strings["Rate This Channel (this is public)"] = "Vurder denne kanalen (dette er offentlig)"; +App::$strings["Rating"] = "Vurdering"; +App::$strings["Describe (optional)"] = "Beskriv (valgfritt)"; +App::$strings["Please enter a link URL"] = "Vennligst skriv inn en lenke URL:"; +App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Endringene er ikke lagret. Er du sikker på at du ønsker å forlate denne siden?"; +App::$strings["Location"] = "Plassering"; +App::$strings["lovely"] = ""; +App::$strings["wonderful"] = ""; +App::$strings["fantastic"] = ""; +App::$strings["great"] = ""; +App::$strings["Your chosen nickname was either already taken or not valid. Please use our suggestion ("] = ""; +App::$strings[") or enter a new one."] = ""; +App::$strings["Thank you, this nickname is valid."] = ""; +App::$strings["A channel name is required."] = ""; +App::$strings["This is a "] = ""; +App::$strings[" channel name"] = ""; +App::$strings["Back to reply"] = ""; +App::$strings["Pinned"] = ""; +App::$strings["Pin to the top"] = ""; +App::$strings["Unpin from the top"] = ""; +App::$strings["%d minutes"] = array( + 0 => "%d minutter", + 1 => "%d minutter", ); -App::$strings["%s account deleted"] = array( - 0 => "%s konto slettet", - 1 => "%s kontoer slettet", +App::$strings["about %d hours"] = array( + 0 => "omtrent %d timer", + 1 => "omtrent %d timer", ); -App::$strings["Account not found"] = "Kontoen ble ikke funnet"; -App::$strings["Account '%s' deleted"] = "Kontoen '%s' slettet"; -App::$strings["Account '%s' blocked"] = "Kontoen '%s' blokkert"; -App::$strings["Account '%s' unblocked"] = "Kontoen '%s' er ikke blokkert lenger"; -App::$strings["Accounts"] = "Kontoer"; -App::$strings["select all"] = "velg alle"; -App::$strings["Registrations waiting for confirm"] = ""; -App::$strings["Request date"] = "Dato for forespørsel"; -App::$strings["No registrations."] = "Ingen registreringer."; -App::$strings["Deny"] = "Avslå"; -App::$strings["All Channels"] = "Alle kanaler"; -App::$strings["Register date"] = "Registreringsdato"; -App::$strings["Last login"] = "Siste innlogging"; -App::$strings["Expires"] = "Utløper"; -App::$strings["Service Class"] = "Tjenesteklasse"; -App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Valgte kontoer vil bli slettet!\\n\\nAlt disse kontoene har lagt inn på dette nettstedet vil bli slettet permanent!\\n\\nEr du sikker på at du vil slette disse valgte kontoene?"; -App::$strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Kontoen {0} vl bli slettet!\\n\\nAlt denne kontoen har lagt inn på dette nettstedet vil bli slettet permanent!\\n\\nEr du sikker på at du vil slette denne kontoen?"; -App::$strings["%s channel censored/uncensored"] = array( - 0 => "%s kanal er sensurert/ikke sensurert lenger", - 1 => "%s kanaler er sensurert/ikke sensurert lenger", +App::$strings["%d days"] = array( + 0 => "%d dager", + 1 => "%d dager", ); -App::$strings["%s channel code allowed/disallowed"] = array( - 0 => "%s kanal med kode tillatt/ikke tillatt", - 1 => "%s kanaler med kode tillatt/ikke tillatt", +App::$strings["%d months"] = array( + 0 => "%d måneder", + 1 => "%d måneder", ); -App::$strings["%s channel deleted"] = array( - 0 => "%s kanal slettet", - 1 => "%s kanaler slettet", +App::$strings["%d years"] = array( + 0 => "%d år", + 1 => "%d år", ); -App::$strings["Channel not found"] = "Kanalen ble ikke funnet"; -App::$strings["Channel '%s' deleted"] = "Kanalen '%s' er slettet"; -App::$strings["Channel '%s' censored"] = "Kanalen '%s' er sensurert"; -App::$strings["Channel '%s' uncensored"] = "Kanalen '%s' er ikke sensurert lenger"; -App::$strings["Channel '%s' code allowed"] = "Kanal '%s' kode tillatt"; -App::$strings["Channel '%s' code disallowed"] = "Kanal '%s' kode ikke tillatt"; -App::$strings["Channels"] = "Kanaler"; -App::$strings["Censor"] = "Sensurer"; -App::$strings["Uncensor"] = "Ikke sensurer lenger"; -App::$strings["Allow Code"] = "Tillat kode"; -App::$strings["Disallow Code"] = "Ikke tillat kode"; -App::$strings["Channel"] = "Kanal"; -App::$strings["UID"] = "UID"; -App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Valgte kanaler vil bli slettet!\\n\\nAlt innhold som er lagt inn i disse kanalene på dette nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette disse kanalene med alt innhold?"; -App::$strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "Kanalen {0} vil bli slettet!\\n\\nAlt innhold som er lagt inn i denne kanalen på dettet nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette denne kanalen med alt innhold?"; -App::$strings["Plugin %s disabled."] = "Tilleggsfunksjonen %s er avskrudd."; -App::$strings["Plugin %s enabled."] = "Tilleggsfunksjonen %s er påskrudd."; -App::$strings["Disable"] = "Skru av"; -App::$strings["Enable"] = "Skru på"; -App::$strings["Plugins"] = "Tilleggsfunksjoner"; -App::$strings["Toggle"] = "Skru av og på"; -App::$strings["Settings"] = "Innstillinger"; -App::$strings["Author: "] = "Forfatter:"; -App::$strings["Maintainer: "] = "Vedlikeholder:"; -App::$strings["Minimum project version: "] = "Minimum prosjektversjon:"; -App::$strings["Maximum project version: "] = "Maksimum prosjektversjon:"; -App::$strings["Minimum PHP version: "] = "Minimum PHP-versjon:"; -App::$strings["Requires: "] = "Krever:"; -App::$strings["Disabled - version incompatibility"] = "Skrudd av - versjonsinkompatibilitet"; -App::$strings["Enter the public git repository URL of the plugin repo."] = ""; -App::$strings["Plugin repo git URL"] = ""; -App::$strings["Custom repo name"] = ""; -App::$strings["(optional)"] = ""; -App::$strings["Download Plugin Repo"] = ""; -App::$strings["Install new repo"] = ""; -App::$strings["Install"] = "Installer"; -App::$strings["Manage Repos"] = ""; -App::$strings["Installed Plugin Repositories"] = ""; -App::$strings["Install a New Plugin Repository"] = ""; -App::$strings["Update"] = "Oppdater"; -App::$strings["Switch branch"] = ""; -App::$strings["No themes found."] = "Ingen temaer er funnet."; -App::$strings["Screenshot"] = "Skjermbilde"; -App::$strings["Themes"] = "Temaer"; -App::$strings["[Experimental]"] = "[Eksperimentelt]"; -App::$strings["[Unsupported]"] = "[Ingen støtte]"; -App::$strings["Log settings updated."] = "Logginnstillinger er oppdatert."; -App::$strings["Logs"] = "Logger"; -App::$strings["Clear"] = "Tøm"; -App::$strings["Debugging"] = "Feilsøking"; -App::$strings["Log file"] = "Loggfil"; -App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = ""; -App::$strings["Log level"] = "Loggnivå"; -App::$strings["New Profile Field"] = "Nytt profilfelt"; -App::$strings["Field nickname"] = "Feltets kallenavn"; -App::$strings["System name of field"] = "Systemnavnet til feltet"; -App::$strings["Input type"] = "Inndata-type"; -App::$strings["Field Name"] = "Feltnavn"; -App::$strings["Label on profile pages"] = "Merkelapp på profilsider"; -App::$strings["Help text"] = "Hjelpetekst"; -App::$strings["Additional info (optional)"] = "Tilleggsinformasjon (valgfritt)"; -App::$strings["Field definition not found"] = "Feltdefinisjonen ble ikke funnet"; -App::$strings["Edit Profile Field"] = "Endre profilfelt"; -App::$strings["Profile Fields"] = ""; -App::$strings["Basic Profile Fields"] = ""; -App::$strings["Advanced Profile Fields"] = ""; -App::$strings["(In addition to basic fields)"] = ""; -App::$strings["All available fields"] = ""; -App::$strings["Custom Fields"] = ""; -App::$strings["Create Custom Field"] = ""; -App::$strings["App installed."] = "App installert."; -App::$strings["Malformed app."] = "Feil oppsett for app-en."; -App::$strings["Embed code"] = "Innbyggingskode"; -App::$strings["Edit App"] = "Endre app"; -App::$strings["Create App"] = "Lag app"; -App::$strings["Name of app"] = "Navn på app"; -App::$strings["Location (URL) of app"] = "Plassering (URL) til app"; -App::$strings["Photo icon URL"] = "Bildeikon URL"; -App::$strings["80 x 80 pixels - optional"] = "80 x80 pixler - valgfritt"; -App::$strings["Categories (optional, comma separated list)"] = ""; -App::$strings["Version ID"] = "Versjons-ID"; -App::$strings["Price of app"] = "Pris på app"; -App::$strings["Location (URL) to purchase app"] = "Plassering (URL) for å kjøpe app"; -App::$strings["Select a bookmark folder"] = "Velg en bokmerkemappe"; -App::$strings["Save Bookmark"] = "Lagre bokmerke"; -App::$strings["URL of bookmark"] = "URL-en til bokmerket"; -App::$strings["Or enter new bookmark folder name"] = "Eller skriv nytt navn på bokmerkemappe"; -App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Antallet daglige registreringer ved nettstedet er overskredet. Vær vennlig å prøve igjen imorgen."; -App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Vennligst angi at tjenesteavtalen er akseptert. Registrering mislyktes."; -App::$strings["Passwords do not match."] = "Passordene er ikke like."; -App::$strings["Registration successful. Please check your email for validation instructions."] = "Registreringen er vellykket. Vennligst sjekk e-posten din for å bekrefte opprettelsen."; -App::$strings["Your registration is pending approval by the site owner."] = "Din registrering venter på godkjenning av nettstedets eier."; -App::$strings["Your registration can not be processed."] = "Din registrering kan ikke behandles."; -App::$strings["Registration on this hub is disabled."] = "Registrering ved dette nettstedet er skrudd av."; -App::$strings["Registration on this hub is by approval only."] = "Registrering ved dette nettstedet skjer på godkjenning."; -App::$strings["Register at another affiliated hub."] = "Registrer ved et annet tilsluttet nettsted."; -App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Dette nettstedet har overskredet antallet tillate kontoregistreringer per dag. Vennligst prøv igjen imorgen."; -App::$strings["Terms of Service"] = "Tjenesteavtale"; -App::$strings["I accept the %s for this website"] = "Jeg godtar %s for dette nettstedet"; -App::$strings["I am over 13 years of age and accept the %s for this website"] = "Jeg er over 13 år gammel og aksepterer %s for dette nettstedet."; -App::$strings["Your email address"] = "Din e-postadresse"; -App::$strings["Choose a password"] = "Velg et passord"; -App::$strings["Please re-enter your password"] = "Vennligst skriv ditt passord en gang til"; -App::$strings["Please enter your invitation code"] = "Vennligst skriv din invitasjonskode"; -App::$strings["no"] = "nei"; -App::$strings["yes"] = "ja"; -App::$strings["Membership on this site is by invitation only."] = "Medlemskap ved dette nettstedet skjer kun via invitasjon."; +App::$strings["timeago.prefixAgo"] = "timeago.prefixAgo"; +App::$strings["timeago.prefixFromNow"] = "timeago.prefixFromNow"; +App::$strings["timeago.suffixAgo"] = ""; +App::$strings["timeago.suffixFromNow"] = ""; +App::$strings["less than a minute"] = "mindre enn ett minutt"; +App::$strings["about a minute"] = "omtrent et minutt"; +App::$strings["about an hour"] = "omtrent en time"; +App::$strings["a day"] = "en dag"; +App::$strings["about a month"] = "omtrent en måned"; +App::$strings["about a year"] = "omtrent et år"; +App::$strings[" "] = " "; +App::$strings["timeago.numbers"] = "timeago.numbers"; +App::$strings["__ctx:long__ May"] = "mai"; +App::$strings["Jan"] = "Jan"; +App::$strings["Feb"] = "Feb"; +App::$strings["Mar"] = "Mar"; +App::$strings["Apr"] = "Apr"; +App::$strings["__ctx:short__ May"] = "mai"; +App::$strings["Jun"] = "Jun"; +App::$strings["Jul"] = "Jul"; +App::$strings["Aug"] = "Aug"; +App::$strings["Sep"] = "Sep"; +App::$strings["Oct"] = "Okt"; +App::$strings["Nov"] = "Nov"; +App::$strings["Dec"] = "Des"; +App::$strings["Sun"] = "Søn"; +App::$strings["Mon"] = "Man"; +App::$strings["Tue"] = "Tirs"; +App::$strings["Wed"] = "Ons"; +App::$strings["Thu"] = "Tors"; +App::$strings["Fri"] = "Fre"; +App::$strings["Sat"] = "Lør"; +App::$strings["__ctx:calendar__ today"] = "idag"; +App::$strings["__ctx:calendar__ month"] = "måned"; +App::$strings["__ctx:calendar__ week"] = "uke"; +App::$strings["__ctx:calendar__ day"] = "dag"; +App::$strings["__ctx:calendar__ All day"] = "Hele dagen"; +App::$strings["Please stand by while your download is being prepared."] = ""; +App::$strings["Email address not valid"] = ""; +App::$strings["Help:"] = "Hjelp:"; +App::$strings["Help"] = "Hjelp"; +App::$strings["Not Found"] = "Ikke funnet"; +App::$strings["Image exceeds website size limit of %lu bytes"] = "Bilde overstiger nettstedets størrelsesbegrensning på %lu bytes"; +App::$strings["Image file is empty."] = "Bildefilen er tom."; +App::$strings["Unable to process image"] = "Kan ikke behandle bildet"; +App::$strings["Photo storage failed."] = "Bildelagring mislyktes."; +App::$strings["a new photo"] = "et nytt bilde"; +App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s la inn %2\$s til %3\$s"; +App::$strings["Photo Albums"] = "Fotoalbum"; +App::$strings["Recent Photos"] = "Nye bilder"; +App::$strings["Upload New Photos"] = "Last opp nye bilder"; +App::$strings["url: "] = ""; +App::$strings["error_code: "] = ""; +App::$strings["error_string: "] = ""; +App::$strings["content-type: "] = ""; +App::$strings["Friendica"] = "Friendica"; +App::$strings["OStatus"] = "OStatus"; +App::$strings["GNU-Social"] = ""; +App::$strings["RSS/Atom"] = "RSS/Atom"; +App::$strings["Diaspora"] = "Diaspora"; +App::$strings["Facebook"] = "Facebook"; +App::$strings["Zot"] = "Zot"; +App::$strings["LinkedIn"] = "LinkedIn"; +App::$strings["XMPP/IM"] = "XMPP/IM"; +App::$strings["MySpace"] = "MySpace"; +App::$strings[" and "] = "og"; +App::$strings["public profile"] = "offentlig profil"; +App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s endret %2\$s til “%3\$s”"; +App::$strings["Visit %1\$s's %2\$s"] = "Besøk %1\$s sitt %2\$s"; +App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s har oppdatert %2\$s, endret %3\$s."; +App::$strings["%d invitation available"] = array( + 0 => "%d invitasjon tilgjengelig", + 1 => "%d invitasjoner tilgjengelig", +); +App::$strings["Advanced"] = "Avansert"; +App::$strings["Find Channels"] = "Finn kanaler"; +App::$strings["Enter name or interest"] = "Skriv navn eller interesse"; +App::$strings["Connect/Follow"] = "Forbindelse/Følg"; +App::$strings["Examples: Robert Morgenstein, Fishing"] = "Eksempler: Ola Nordmann, fisking"; +App::$strings["Find"] = "Finn"; +App::$strings["Channel Suggestions"] = "Kanalforslag"; +App::$strings["Random Profile"] = "Tilfeldig profil"; +App::$strings["Invite Friends"] = "Inviter venner"; +App::$strings["Advanced example: name=fred and country=iceland"] = "Avansert eksempel: navn=fred og land=island"; +App::$strings["Common Connections"] = ""; +App::$strings["View all %d common connections"] = ""; +App::$strings["Select an alternate language"] = "Velg et annet språk"; +App::$strings["Unable to import a removed channel."] = ""; +App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Kan ikke lage en kopi av kanal-identifikatoren på dette systemet. Import mislyktes."; +App::$strings["Cloned channel not found. Import failed."] = "Klonet kanal ble ikke funnet. Import mislyktes."; +App::$strings["Remote authentication"] = "Fjernautentisering"; +App::$strings["Click to authenticate to your home hub"] = "Klikk for å godkjennes mot din hjemme-hub"; +App::$strings["Channels"] = "Kanaler"; +App::$strings["Manage your channels"] = ""; +App::$strings["Settings"] = "Innstillinger"; +App::$strings["Account/Channel Settings"] = "Konto-/kanal-innstillinger"; +App::$strings["Logout"] = "Logg ut"; +App::$strings["End this session"] = "Avslutt denne økten"; +App::$strings["Your profile page"] = "Din profilside"; +App::$strings["Edit Profiles"] = "Endre profiler"; +App::$strings["Manage/Edit profiles"] = "Håndter/endre profiler"; +App::$strings["Edit your profile"] = "Rediger profil"; +App::$strings["Login"] = "Logg inn"; +App::$strings["Sign in"] = "Logg på"; +App::$strings["Take me home"] = ""; +App::$strings["Log me out of this site"] = ""; App::$strings["Register"] = "Registrer"; -App::$strings["Proceed to create your first channel"] = "Gå videre for å lage din første kanal"; -App::$strings["Please login."] = "Vennligst logg inn."; -App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "Sletting av kontoer er ikke tillatt innen 48 timer etter endring av kontopassordet."; -App::$strings["Remove This Account"] = "Slett denne kontoen"; -App::$strings["WARNING: "] = "ADVARSEL:"; -App::$strings["This account and all its channels will be completely removed from the network. "] = "Denne kontoen og alle dens kanaler vil bli fullstendig fjernet fra nettverket."; -App::$strings["This action is permanent and can not be undone!"] = "Denne handlingen er permanent og kan ikke angres!"; -App::$strings["Please enter your password for verification:"] = "Vennligst skriv ditt passord for å få bekreftelse:"; -App::$strings["Remove this account, all its channels and all its channel clones from the network"] = "Slett denne kontoen, alle dens kanaler og alle dens kanalkloner fra dette nettverket"; -App::$strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Som standard vil bare forekomster av kanalene lokalisert på denne hubben bli slettet fra nettverket"; -App::$strings["Remove Account"] = "Slett konto"; -App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Fjerning av kanaler er ikke tillatt innen 48 timer etter endring av kontopassordet."; -App::$strings["Remove This Channel"] = "Fjern denne kanalen"; -App::$strings["This channel will be completely removed from the network. "] = "Denne kanalen vil bli fullstendig fjernet fra nettverket."; -App::$strings["Remove this channel and all its clones from the network"] = "Fjern denne kanalen og alle dens kloner fra nettverket"; -App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Som standard vil bare forekomsten av denne kanalen lokalisert på denne hubben bli fjernet fra nettverket"; -App::$strings["Remove Channel"] = "Fjern kanal"; -App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Vi støtte på et problem under innloggingen med din OpenID. Vennligst sjekk at ID-en er stavet riktig."; -App::$strings["The error message was:"] = "Feilmeldingen var:"; -App::$strings["Authentication failed."] = "Autentisering mislyktes."; -App::$strings["Remote Authentication"] = "Fjernautentisering"; -App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Skriv din kanaladresse (for eksempel channel@exampel.com)"; -App::$strings["Authenticate"] = "Autentiser"; -App::$strings["Items tagged with: %s"] = "Elementer merket med: %s"; -App::$strings["Search results for: %s"] = "Søkeresultater for: %s"; -App::$strings["No service class restrictions found."] = "Ingen restriksjoner er funnet i tjenesteklasse."; -App::$strings["Name is required"] = "Navn er påkrevd"; -App::$strings["Key and Secret are required"] = "Nøkkel og hemmelighet er påkrevd"; -App::$strings["Not valid email."] = "Ikke gyldig e-post."; -App::$strings["Protected email address. Cannot change to that email."] = "Beskyttet e-postadresse. Kan ikke endre til den e-postadressen."; -App::$strings["System failure storing new email. Please try again."] = "Systemfeil ved lagring av ny e-post. Vennligst prøv igjen."; -App::$strings["Password verification failed."] = "Passordbekreftelsen mislyktes."; -App::$strings["Passwords do not match. Password unchanged."] = "Passordene stemmer ikke overens. Passord uforandret."; -App::$strings["Empty passwords are not allowed. Password unchanged."] = "Tomme passord er ikke tillatt. Passord uforandret."; -App::$strings["Password changed."] = "Passord endret."; -App::$strings["Password update failed. Please try again."] = "Passord oppdatering mislyktes. Vennligst prøv igjen."; -App::$strings["Settings updated."] = "Innstillinger oppdatert."; -App::$strings["Add application"] = "Legg til program"; -App::$strings["Name of application"] = "Navn på program"; -App::$strings["Consumer Key"] = "Consumer Key"; -App::$strings["Automatically generated - change if desired. Max length 20"] = "Automatisk laget - kan endres om du vil. Største lengde 20"; -App::$strings["Consumer Secret"] = "Consumer Secret"; -App::$strings["Redirect"] = "Omdirigering"; -App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "Omdirigerings-URI - la stå tomt hvis ikke ditt program spesifikt krever dette"; -App::$strings["Icon url"] = "Ikon-URL"; -App::$strings["Optional"] = "Valgfritt"; -App::$strings["Application not found."] = "Programmet ble ikke funnet."; -App::$strings["Connected Apps"] = "Tilkoblede app-er"; -App::$strings["Client key starts with"] = "Klientnøkkel starter med"; -App::$strings["No name"] = "Ikke noe navn"; -App::$strings["Remove authorization"] = "Fjern tillatelse"; -App::$strings["No feature settings configured"] = "Ingen funksjonsinnstillinger er konfigurert"; -App::$strings["Feature/Addon Settings"] = "Funksjons-/Tilleggsinnstillinger"; -App::$strings["Account Settings"] = "Kontoinnstillinger"; -App::$strings["Current Password"] = "Nåværende passord"; -App::$strings["Enter New Password"] = "Skriv nytt passord"; -App::$strings["Confirm New Password"] = "Bekreft nytt passord"; -App::$strings["Leave password fields blank unless changing"] = "La passordfeltene stå blanke om det ikke skal endres"; -App::$strings["Email Address:"] = "E-postadresse:"; -App::$strings["Remove this account including all its channels"] = "Slett denne kontoen inkludert alle dens kanaler"; -App::$strings["Additional Features"] = "Ekstra funksjoner"; -App::$strings["Connector Settings"] = "Koblingsinnstillinger"; -App::$strings["No special theme for mobile devices"] = "Ikke noe spesielt tema for mobile enheter"; -App::$strings["%s - (Experimental)"] = "%s - (Eksperimentelt)"; -App::$strings["Display Settings"] = "Visningsinnstillinger"; -App::$strings["Theme Settings"] = "Temainnstillinger"; -App::$strings["Custom Theme Settings"] = "Tilpassede temainnstillinger"; -App::$strings["Content Settings"] = "Innholdsinnstillinger"; -App::$strings["Display Theme:"] = "Visningstema:"; -App::$strings["Mobile Theme:"] = "Mobiltema:"; -App::$strings["Preload images before rendering the page"] = "Last inn bildene før gjengivelsen av siden"; -App::$strings["The subjective page load time will be longer but the page will be ready when displayed"] = "Den personlige opplevelsen av lastetiden vil være lenger, men siden vil være klar når den vises"; -App::$strings["Enable user zoom on mobile devices"] = "Skru på brukerstyrt zoom på mobile enheter"; -App::$strings["Update browser every xx seconds"] = "Oppdater nettleser hvert xx sekunder"; -App::$strings["Minimum of 10 seconds, no maximum"] = "Minimum 10 sekunder, ikke noe maksimum"; -App::$strings["Maximum number of conversations to load at any time:"] = "Maksimalt antall samtaler å laste samtidig:"; -App::$strings["Maximum of 100 items"] = "Maksimum 100 elementer"; -App::$strings["Show emoticons (smilies) as images"] = "Vis emoticons (smilefjes) som bilder"; -App::$strings["Link post titles to source"] = "Lenk innleggets tittel til kilden"; -App::$strings["System Page Layout Editor - (advanced)"] = "Systemsidens layoutbehandler - (avansert)"; -App::$strings["Use blog/list mode on channel page"] = "Bruk blogg-/listemodus på kanalsiden"; -App::$strings["(comments displayed separately)"] = "(kommentarer vist separat)"; -App::$strings["Use blog/list mode on grid page"] = "Bruk blogg-/liste-modus på nettverkssiden"; -App::$strings["Channel page max height of content (in pixels)"] = "Kanalsidens makshøyde for innhold (i pixler)"; -App::$strings["click to expand content exceeding this height"] = "klikk for å utvide innhold som overstiger denne høyden"; -App::$strings["Grid page max height of content (in pixels)"] = "Nettverkssidens makshøyde for innhold (i piksler)"; -App::$strings["Nobody except yourself"] = "Ingen unntatt deg selv"; -App::$strings["Only those you specifically allow"] = "Bare de du spesifikt tillater"; -App::$strings["Approved connections"] = "Godkjente forbindelser"; -App::$strings["Any connections"] = "Enhver forbindelse"; -App::$strings["Anybody on this website"] = "Enhver ved dette nettstedet"; -App::$strings["Anybody in this network"] = "Enhver i dette nettverket"; -App::$strings["Anybody authenticated"] = "Enhver som er autentisert"; -App::$strings["Anybody on the internet"] = "Enhver på Internett"; -App::$strings["Publish your default profile in the network directory"] = "Publiser din standardprofil i nettverkskatalogen"; -App::$strings["Allow us to suggest you as a potential friend to new members?"] = "Tillat oss å foreslå deg som en mulig venn til nye medlemmer?"; -App::$strings["Your channel address is"] = "Din kanaladresse er"; -App::$strings["Channel Settings"] = "Kanalinnstillinger"; -App::$strings["Basic Settings"] = "Grunninnstillinger"; -App::$strings["Full Name:"] = "Fullt navn:"; -App::$strings["Your Timezone:"] = "Din tidssone:"; -App::$strings["Default Post Location:"] = "Standard plassering ved innlegg:"; -App::$strings["Geographical location to display on your posts"] = "Geografisk plassering som vises på dine innlegg"; -App::$strings["Use Browser Location:"] = "Bruk nettleseren sin plassering:"; -App::$strings["Adult Content"] = "Voksent innhold"; -App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Denne kanalen vil ofte eller jevnlig publisere voksent innhold. (Vennligst merk alt voksent materiale og/eller nakenhet med #NSFW)"; -App::$strings["Security and Privacy Settings"] = "Sikkerhets- og personverninnstillinger"; -App::$strings["Your permissions are already configured. Click to view/adjust"] = "Dine tillatelser er allerede satt. Klikk for å se/justere."; -App::$strings["Hide my online presence"] = "Skjul min tilstedeværelse online"; -App::$strings["Prevents displaying in your profile that you are online"] = "Forhindrer visning på din profil av at du er online "; -App::$strings["Simple Privacy Settings:"] = "Enkle personverninnstillinger:"; -App::$strings["Very Public - extremely permissive (should be used with caution)"] = "Svært offentlig - ekstremt åpent (bør brukes med varsomhet)"; -App::$strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Typisk - standard er offentlig, personvern når ønsket (likner på tillatelser i sosiale nettverk, men med forbedret personvern)"; -App::$strings["Private - default private, never open or public"] = "Privat - standard er privat, aldri åpen eller offentlig"; -App::$strings["Blocked - default blocked to/from everybody"] = "Blokkert - standard blokkert til/fra alle"; -App::$strings["Allow others to tag your posts"] = "Tillat andre å merke dine innlegg"; -App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "Ofte brukt av fellesskapet for å merke upassende innhold i etterkant"; -App::$strings["Advanced Privacy Settings"] = "Avanserte personverninnstillinger"; -App::$strings["Expire other channel content after this many days"] = "Annet kanal innhold utløper etter så mange dager"; -App::$strings["0 or blank to use the website limit."] = ""; -App::$strings["This website expires after %d days."] = ""; -App::$strings["This website does not expire imported content."] = ""; -App::$strings["The website limit takes precedence if lower than your limit."] = ""; -App::$strings["Maximum Friend Requests/Day:"] = "Maksimalt antall venneforespørsler per dag:"; -App::$strings["May reduce spam activity"] = "Kan redusere søppelpostaktivitet"; -App::$strings["Default Post and Publish Permissions"] = ""; -App::$strings["Use my default audience setting for the type of object published"] = ""; -App::$strings["Channel permissions category:"] = "Kategori med kanaltillatelser:"; -App::$strings["Maximum private messages per day from unknown people:"] = "Maksimalt antall private meldinger per dag fra ukjente personer:"; -App::$strings["Useful to reduce spamming"] = "Nyttig for å redusere søppelpost"; -App::$strings["Notification Settings"] = "Varslingsinnstillinger"; -App::$strings["By default post a status message when:"] = "Legg inn en statusmelding når du:"; -App::$strings["accepting a friend request"] = "aksepterer en venneforespørsel"; -App::$strings["joining a forum/community"] = "blir med i et forum/miljø"; -App::$strings["making an interesting profile change"] = "gjør en interessant profilendring"; -App::$strings["Send a notification email when:"] = "Send en varsel-e-post når:"; -App::$strings["You receive a connection request"] = "Du har mottatt en forespørsel om forbindelse"; -App::$strings["Your connections are confirmed"] = "Dine forbindelser er bekreftet"; -App::$strings["Someone writes on your profile wall"] = "Noen skriver på din profilvegg"; -App::$strings["Someone writes a followup comment"] = "Noen skriver en oppfølgende kommentar"; -App::$strings["You receive a private message"] = "Du mottar en privat melding"; -App::$strings["You receive a friend suggestion"] = "Du mottok et venneforslag"; -App::$strings["You are tagged in a post"] = "Du merkes i et innlegg"; -App::$strings["You are poked/prodded/etc. in a post"] = "Du ble prikket/oppildnet/og så vider i et innlegg"; -App::$strings["Show visual notifications including:"] = "Vis visuelle varslinger om:"; -App::$strings["Unseen grid activity"] = "Usett nettverksaktivitet"; -App::$strings["Unseen channel activity"] = "Usett kanalaktivitet"; -App::$strings["Unseen private messages"] = "Usette private meldinger"; -App::$strings["Recommended"] = "Anbefalt"; -App::$strings["Upcoming events"] = "Kommende hendelser"; -App::$strings["Events today"] = "Hendelser idag"; -App::$strings["Upcoming birthdays"] = "Kommende fødselsdager"; -App::$strings["Not available in all themes"] = "Ikke tilgjengelig i alle temaer"; -App::$strings["System (personal) notifications"] = "System (personlige) varslinger"; -App::$strings["System info messages"] = "System infomeldinger"; -App::$strings["System critical alerts"] = "System kritiske varsel"; -App::$strings["New connections"] = "Nye forbindelser"; -App::$strings["System Registrations"] = "Systemregistreringer"; -App::$strings["Also show new wall posts, private messages and connections under Notices"] = "Vis også nye vegginnlegg, private meldinger og forbindelser under Varsler"; -App::$strings["Notify me of events this many days in advance"] = "Varsle meg om hendelser dette antall dager på forhånd"; -App::$strings["Must be greater than 0"] = "Må være større enn 0"; -App::$strings["Advanced Account/Page Type Settings"] = "Avanserte innstillinger for konto/sidetype"; -App::$strings["Change the behaviour of this account for special situations"] = "Endre oppførselen til denne kontoen i spesielle situasjoner"; -App::$strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = "Vennligst skru på ekspertmodus (under Innstillinger > Ekstra funksjoner) for å justere!"; -App::$strings["Miscellaneous Settings"] = "Diverse innstillinger"; -App::$strings["Default photo upload folder"] = "Standard mappe for opplasting av bilder"; -App::$strings["%Y - current year, %m - current month"] = "%Y - nåværende år, %m - nåværende måned"; -App::$strings["Default file upload folder"] = "Standard mappe for opplasting av filer"; -App::$strings["Personal menu to display in your channel pages"] = "Personlig meny som kan vises på dine kanalsider"; -App::$strings["Remove this channel."] = "Fjern denne kanalen."; -App::$strings["Firefox Share \$Projectname provider"] = "\$Projectname Firefox Share tilbyder"; -App::$strings["Start calendar week on monday"] = "Start uken med mandag i kalenderen"; -App::$strings["\$Projectname Server - Setup"] = "\$Projectname-tjener - oppsett"; -App::$strings["Could not connect to database."] = "Fikk ikke kontakt med databasen."; -App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Fikk ikke kontakt med det angitte nettstedets URL. Problemet kan muligens skyldes SSL-sertifikatet eller DNS."; -App::$strings["Could not create table."] = "Kunne ikke lage tabellen."; -App::$strings["Your site database has been installed."] = "Databasen til ditt nettsted har blitt installert."; -App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Du må kanskje importere filen \"install/schmea_xxx.sql\" manuelt ved å bruke en databaseklient."; -App::$strings["Please see the file \"install/INSTALL.txt\"."] = "Vennligst les filen \"install/INSTALL.txt\"."; -App::$strings["System check"] = "Systemsjekk"; -App::$strings["Check again"] = "Sjekk igjen"; -App::$strings["Database connection"] = "Databaseforbindelse"; -App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = "For å installere \$Projectname må du oppgi hvordan din database kan kontaktes."; -App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Vennligst kontakt din nettstedstilbyder eller nettstedsadministrator hvis du har spørsmål om disse innstillingene."; -App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Databasen du oppgir nedenfor må finnes på forhånd. Hvis den ikke finnes, vennligst lag den før du fortsetter."; -App::$strings["Database Server Name"] = "Navn på databasetjener"; -App::$strings["Default is 127.0.0.1"] = "Standard er 127.0.0.1"; -App::$strings["Database Port"] = "Databaseport"; -App::$strings["Communication port number - use 0 for default"] = "Kommunikasjonsportnummer - bruk 0 for standard"; -App::$strings["Database Login Name"] = "Database innloggingsnavn"; -App::$strings["Database Login Password"] = "Database innloggingspassord"; -App::$strings["Database Name"] = "Databasenavn"; -App::$strings["Database Type"] = "Databasetype"; -App::$strings["Site administrator email address"] = "E-postadressen til administrator ved nettstedet"; -App::$strings["Your account email address must match this in order to use the web admin panel."] = "Din konto sin e-postadresse må være lik denne for å kunne bruke web-administrasjonspanelet."; -App::$strings["Website URL"] = "Nettstedets URL"; -App::$strings["Please use SSL (https) URL if available."] = "Vennligst bruk SSL (https) URL hvis tilgjengelig."; -App::$strings["Please select a default timezone for your website"] = "Vennligst velg en standard tidssone for ditt nettsted"; -App::$strings["Site settings"] = "Nettstedets innstillinger"; -App::$strings["Enable \$Projectname advanced features?"] = "Skru på avanserteWhat next"] = "

Hva gjenstår

"; -App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "VIKTIG: Du må [manuelt] sette opp en automatisert tidfestet oppgave til bakgrunnshenteren."; -App::$strings["Files: shared with me"] = "Filer: delt med meg"; -App::$strings["NEW"] = "NY"; -App::$strings["Remove all files"] = "Fjern alle filer"; -App::$strings["Remove this file"] = "Fjern denne filen"; -App::$strings["Version %s"] = "Versjon %s"; -App::$strings["Installed plugins/addons/apps:"] = "Installerte tilleggsfunksjoner/tillegg/apper:"; -App::$strings["No installed plugins/addons/apps"] = "Ingen installerte tilleggsfunksjoner/tillegg/apper"; -App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Dette er en \$Projectname-hub - et globalt samhandlende nettverk av desentraliserte nettsteder med innbygget personvern."; -App::$strings["Tag: "] = "Merkelapp:"; -App::$strings["Last background fetch: "] = "Siste innhenting i bakgrunnen:"; -App::$strings["Current load average: "] = "Gjeldende belastningsgjennomsnitt:"; -App::$strings["Running at web location"] = "Kjører på webplasseringen"; -App::$strings["Please visit hubzilla.org to learn more about \$Projectname."] = "Vennligst besøk hubzilla.org for å lære mer om \$Projectname."; -App::$strings["Bug reports and issues: please visit"] = "Feilmeldinger og feilretting: vennligst besøk"; -App::$strings["\$projectname issues"] = "\$projectname problemer"; -App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Forslag, ros og så videre - vennligst e-post \"redmatrix\" hos librelist - punktum com"; -App::$strings["Site Administrators"] = "Nettstedsadministratorer"; -App::$strings["Failed to create source. No channel selected."] = "Mislyktes med å lage kilde. Ingen kanal er valgt."; -App::$strings["Source created."] = "Kilden er laget."; -App::$strings["Source updated."] = "Kilden er oppdatert."; -App::$strings["*"] = "*"; -App::$strings["Channel Sources"] = "Kanalkilder"; -App::$strings["Manage remote sources of content for your channel."] = "Håndtere eksterne innholdskilder til din kanal."; -App::$strings["New Source"] = "Ny kilde"; -App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importer alt eller et utvalgt av innhold fra følgende kanal inn i denne kanalen og distribuer det i henhold til dine egne kanalinnstillinger."; -App::$strings["Only import content with these words (one per line)"] = "Bare importer innhold med disse ordene (ett ord per linje)"; -App::$strings["Leave blank to import all public content"] = "La stå tomt for å importere alt offentlig innhold"; -App::$strings["Channel Name"] = "Kanalnavn"; -App::$strings["Add the following categories to posts imported from this source (comma separated)"] = ""; -App::$strings["Source not found."] = "Kilden ble ikke funnet."; -App::$strings["Edit Source"] = "Endre kilde"; -App::$strings["Delete Source"] = "Slett kilde"; -App::$strings["Source removed"] = "Kilden er fjernet"; -App::$strings["Unable to remove source."] = "Ikke i stand til å fjerne kilde."; -App::$strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s følger %2\$s sin %3\$s"; -App::$strings["%1\$s stopped following %2\$s's %3\$s"] = "%1\$s stopped å følge %2\$s sin %3\$s"; -App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Ingen forslag tilgjengelige. Hvis dette er et nytt nettsted, vennligst prøv igjen om 24 timer."; -App::$strings["Ignore/Hide"] = "Ignorer/Skjul"; -App::$strings["post"] = "innlegg"; -App::$strings["comment"] = "kommentar"; -App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s merket %3\$s til %2\$s med %4\$s"; -App::$strings["Tag removed"] = "Merkelapp fjernet"; -App::$strings["Remove Item Tag"] = "Fjern merkelapp fra element"; -App::$strings["Select a tag to remove: "] = "Velg merkelapp å fjerne:"; -App::$strings["Thing updated"] = "Tingen er oppdatert"; -App::$strings["Object store: failed"] = "Objektlagring: mislyktes"; -App::$strings["Thing added"] = "Ting lagt til"; -App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; -App::$strings["Show Thing"] = "Vis ting"; -App::$strings["item not found."] = "element ble ikke funnet."; -App::$strings["Edit Thing"] = "Endre ting"; -App::$strings["Select a profile"] = "Velg en profil"; -App::$strings["Post an activity"] = "Legg inn en aktivitet"; -App::$strings["Only sends to viewers of the applicable profile"] = "Sender bare til seere av den aktuelle profilen"; -App::$strings["Name of thing e.g. something"] = "Navn på ting for eksempel noe"; -App::$strings["URL of thing (optional)"] = "URL til ting (valgfritt)"; -App::$strings["URL for photo of thing (optional)"] = "URL til bilde av ting (valgfritt)"; -App::$strings["Add Thing to your Profile"] = "Legg til ting i din profil"; -App::$strings["Export Channel"] = "Eksporter kanal"; -App::$strings["Export your basic channel information to a file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new server hub, but does not contain your content."] = "Eksporter grunnleggende informasjon om kanalen din til en fil. Denne er en sikkerhetskopi av dine forbindelser, tillatelser, profil og grunnleggende data, som kan brukes til å importere dine data til en ny hub, men den tar ikke med innholdet."; -App::$strings["Export Content"] = "Eksporter innhold"; -App::$strings["Export your channel information and recent content to a JSON backup that can be restored or imported to another server hub. This backs up all of your connections, permissions, profile data and several months of posts. This file may be VERY large. Please be patient - it may take several minutes for this download to begin."] = "Eksporter din kanalinformasjon og det nyeste innholdet til en JSON-sikkerhetskopi, som kan gjenopprettes eller importeres til en annen hub. Denne lager en sikkerhetskopi av alle dine forbindelser, tillatelser, profildata og flere måneder av innholdet ditt. Denne filen kan være SVÆRT stor. Vennligst vær tålmodig - det kan ta flere minutter før denne nedlastningen begynner."; -App::$strings["Export your posts from a given year."] = "Eksporter dine innlegg fra et bestemt år"; -App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Du kan også eksportere dine innlegg og samtaler for et bestemt år eller måned. Juster datoen i din nettlesers adresselinje for å velge andre datoer. Hvis eksporten feiler (muligens på grunn av utilstrekkelig minne på din hub), vennligst prøv igjen med et mer begrenset datoområde."; -App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "For å velge alle innlegg for et gitt år, slik som iår, besøk %2\$s"; -App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "For å velge alle innlegg fra en gitt måned, slik som januar i år, besøk %2\$s"; -App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Disse innholdsfilene kan importeres eller gjenopprettes ved å besøke %2\$s på ethvert nettsted som inneholder din kanal. For best resultat, vennligst importer eller gjenopprett disse etter dato (eldste først)."; -App::$strings["No connections."] = "Ingen forbindelser."; -App::$strings["Visit %s's profile [%s]"] = "Besøk %s sin profil [%s]"; -App::$strings["View Connections"] = "Vis forbindelser"; -App::$strings["Source of Item"] = "Kilde til element"; +App::$strings["Create an account"] = "Lag en konto"; +App::$strings["Help and documentation"] = "Hjelp og dokumentasjon"; +App::$strings["Search site @name, !forum, #tag, ?docs, content"] = ""; +App::$strings["Admin"] = "Administrator"; +App::$strings["Site Setup and Configuration"] = "Nettstedsoppsett og -konfigurasjon"; +App::$strings["Loading"] = ""; +App::$strings["@name, #tag, ?doc, content"] = "@navn, #merkelapp, ?dokumentasjon, innhold"; +App::$strings["Please wait..."] = "Vennligst vent..."; +App::$strings["Apps"] = "Apper"; +App::$strings["Channel Apps"] = ""; +App::$strings["System Apps"] = ""; +App::$strings["Pinned Apps"] = ""; +App::$strings["Featured Apps"] = ""; +App::$strings["Channel"] = "Kanal"; +App::$strings["Status Messages and Posts"] = "Statusmeldinger og -innlegg"; +App::$strings["About"] = "Om"; +App::$strings["Profile Details"] = "Profildetaljer"; +App::$strings["Files"] = "Filer"; +App::$strings["Files and Storage"] = "Filer og lagring"; +App::$strings["Chatrooms"] = "Chatrom"; +App::$strings["Bookmarks"] = "Bokmerker"; +App::$strings["Saved Bookmarks"] = "Lagrede bokmerker"; App::$strings["Webpages"] = "Websider"; -App::$strings["Actions"] = "Handlinger"; -App::$strings["Page Link"] = "Sidelenke"; -App::$strings["Page Title"] = "Sidetittel"; -App::$strings["Xchan Lookup"] = "Xchan oppslag"; -App::$strings["Lookup xchan beginning with (or webbie): "] = "Slå opp xchan som begynner med (eller webbie):"; -App::$strings["Site Admin"] = "Nettstedsadministrator"; -App::$strings["Bug Report"] = ""; -App::$strings["View Bookmarks"] = ""; -App::$strings["My Chatrooms"] = ""; -App::$strings["Firefox Share"] = ""; -App::$strings["Remote Diagnostics"] = ""; -App::$strings["Suggest Channels"] = "Foreslå kanaler"; -App::$strings["Login"] = "Logg inn"; -App::$strings["Grid"] = "Nett"; -App::$strings["Channel Home"] = "Kanalhjem"; -App::$strings["Events"] = "Hendelser"; -App::$strings["Directory"] = "Katalog"; -App::$strings["Mail"] = "Melding"; -App::$strings["Chat"] = "Chat"; -App::$strings["Probe"] = "Undersøk"; -App::$strings["Suggest"] = "Forreslå"; -App::$strings["Random Channel"] = "Tilfeldig kanal"; -App::$strings["Invite"] = "Inviter"; -App::$strings["Features"] = "Funksjoner"; -App::$strings["Post"] = "Innlegg"; -App::$strings["Purchase"] = "Kjøp"; -App::$strings["Missing room name"] = "Mangler romnavn"; -App::$strings["Duplicate room name"] = "Duplikat romnavn"; -App::$strings["Invalid room specifier."] = "Ugyldig rom-spesifisering"; -App::$strings["Room not found."] = "Rommet ble ikke funnet."; -App::$strings["Room is full"] = "Rommet er fullt"; -App::$strings["\$Projectname Notification"] = "\$Projectname varsling"; -App::$strings["\$projectname"] = "\$projectname"; -App::$strings["Thank You,"] = "Tusen takk,"; -App::$strings["%s Administrator"] = "%s administrator"; -App::$strings["%s "] = "%s "; -App::$strings["[Hubzilla:Notify] New mail received at %s"] = "[Hubzilla:Notify] Ny melding mottatt hos %s"; -App::$strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s sendte deg en ny privat melding på %3\$s."; -App::$strings["%1\$s sent you %2\$s."] = "%1\$s sendte deg %2\$s."; -App::$strings["a private message"] = "en privat melding"; -App::$strings["Please visit %s to view and/or reply to your private messages."] = "Vennligst besøk %s for å se og/eller svare på dine private meldinger."; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s kommenterte på [zrl=%3\$s]a %4\$s[/zrl]"; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s kommenterte på [zrl=%3\$s]%4\$s's %5\$s[/zrl]"; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s kommenterte på [zrl=%3\$s]din %4\$s[/zrl]"; -App::$strings["[Hubzilla:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Hubzilla:Notify] Kommentar til samtale #%1\$d av %2\$s"; -App::$strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s kommenterte på et element eller en samtale du følger"; -App::$strings["Please visit %s to view and/or reply to the conversation."] = "Vennligst besøk %s for å se og/eller svare i samtalen"; -App::$strings["[Hubzilla:Notify] %s posted to your profile wall"] = "[Hubzilla:Notify] %s skrev et innlegg på din profilvegg"; -App::$strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s skrev et innlegg på din profilvegg på %3\$s"; -App::$strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s skrev et innlegg på [zrl=%3\$s]din vegg[/zrl]"; -App::$strings["[Hubzilla:Notify] %s tagged you"] = "[Hubzilla:Notify] %s merket deg"; -App::$strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s merket deg på %3\$s"; -App::$strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]merket deg[/zrl]."; -App::$strings["[Hubzilla:Notify] %1\$s poked you"] = "[Hubzilla:Notify] %1\$s prikket deg"; -App::$strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s dyttet deg på %3\$s"; -App::$strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]dyttet deg[/zrl]."; -App::$strings["[Hubzilla:Notify] %s tagged your post"] = "[Hubzilla:Notify] %s merket ditt innlegg"; -App::$strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s merket ditt innlegg på %3\$s"; -App::$strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s merket [zrl=%3\$s]ditt innlegg[/zrl]"; -App::$strings["[Hubzilla:Notify] Introduction received"] = "[Hubzilla:Notify] Introduksjon mottatt"; -App::$strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, du har mottatt en ny forespørsel om forbindelse fra '%2\$s' hos %3\$s"; -App::$strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, du mottok [zrl=%2\$s]en ny forespørsel om forbindelse[/zrl] fra %3\$s."; -App::$strings["You may visit their profile at %s"] = "Du kan besøke profilen deres på %s"; -App::$strings["Please visit %s to approve or reject the connection request."] = "Vennligst besøk %s for å godkjenne eller avslå forespørselen om forbindelse."; -App::$strings["[Hubzilla:Notify] Friend suggestion received"] = "[Hubzilla:Notify] Venneforslag mottatt"; -App::$strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, du har mottatt en venneforespørsel fra '%2\$s' hos %3\$s"; -App::$strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, du har mottatt [zrl=%2\$s]et venneforslaget[/zrl] angående %3\$s fra %4\$s. "; -App::$strings["Name:"] = "Navn:"; -App::$strings["Photo:"] = "Bilde:"; -App::$strings["Please visit %s to approve or reject the suggestion."] = "Vennligst besøk %s for å godkjenne eller avslå dette forslaget."; -App::$strings["[Hubzilla:Notify]"] = "[Hubzilla:Notify]"; -App::$strings["created a new post"] = "laget et nytt innlegg"; -App::$strings["commented on %s's post"] = "kommenterte på %s sitt innlegg"; -App::$strings["Private Message"] = "Privat melding"; +App::$strings["View Webpages"] = ""; +App::$strings["Wiki"] = ""; +App::$strings["Delegation session ended."] = ""; +App::$strings["Logged out."] = "Logget ut."; +App::$strings["Email validation is incomplete. Please check your email."] = ""; +App::$strings["Failed authentication"] = "Mislykket autentisering"; +App::$strings["Miscellaneous"] = "Forskjellig"; +App::$strings["Birthday"] = ""; +App::$strings["Age: "] = "Alder:"; +App::$strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD eller MM-DD"; +App::$strings["never"] = "aldri"; +App::$strings["less than a second ago"] = "for mindre enn ett sekund siden"; +App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "%1\$d %2\$s siden"; +App::$strings["__ctx:relative_date__ year"] = array( + 0 => "år", + 1 => "år", +); +App::$strings["__ctx:relative_date__ month"] = array( + 0 => "måned", + 1 => "måneder", +); +App::$strings["__ctx:relative_date__ week"] = array( + 0 => "uke", + 1 => "uker", +); +App::$strings["__ctx:relative_date__ day"] = array( + 0 => "dag", + 1 => "dager", +); +App::$strings["__ctx:relative_date__ hour"] = array( + 0 => "time", + 1 => "timer", +); +App::$strings["__ctx:relative_date__ minute"] = array( + 0 => "minutt", + 1 => "minutter", +); +App::$strings["__ctx:relative_date__ second"] = array( + 0 => "sekund", + 1 => "sekunder", +); +App::$strings["%1\$s's birthday"] = "%1\$s sin fødselsdag"; +App::$strings["Happy Birthday %1\$s"] = "Gratulerer med dagen, %1\$s !"; +App::$strings["INVALID EVENT DISMISSED!"] = ""; +App::$strings["Summary: "] = ""; +App::$strings["Unknown"] = "Ukjent"; +App::$strings["Date: "] = ""; +App::$strings["Reason: "] = ""; +App::$strings["INVALID CARD DISMISSED!"] = ""; +App::$strings["Name: "] = ""; +App::$strings["channel"] = "kanal"; +App::$strings["likes %1\$s's %2\$s"] = ""; +App::$strings["doesn't like %1\$s's %2\$s"] = ""; +App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s er nå forbundet med %2\$s"; +App::$strings["%1\$s poked %2\$s"] = "%1\$s prikket %2\$s"; +App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s er %2\$s"; +App::$strings["This is an unsaved preview"] = ""; +App::$strings["__ctx:title__ Likes"] = "Liker"; +App::$strings["__ctx:title__ Dislikes"] = "Liker ikke"; +App::$strings["__ctx:title__ Agree"] = "Enig"; +App::$strings["__ctx:title__ Disagree"] = "Uenig"; +App::$strings["__ctx:title__ Abstain"] = "Avstår"; +App::$strings["__ctx:title__ Attending"] = "Deltar"; +App::$strings["__ctx:title__ Not attending"] = "Deltar ikke"; +App::$strings["__ctx:title__ Might attend"] = "Deltar kanskje"; App::$strings["Select"] = "Velg"; -App::$strings["Save to Folder"] = "Lagre i mappe"; -App::$strings["I will attend"] = "Jeg vil delta"; -App::$strings["I will not attend"] = "Jeg deltar ikke"; -App::$strings["I might attend"] = "Jeg vil kanskje delta"; -App::$strings["I agree"] = "Jeg er enig"; -App::$strings["I disagree"] = "Jeg er uenig"; -App::$strings["I abstain"] = "Jeg avstår"; -App::$strings["Add Star"] = "Legg til stjerne"; -App::$strings["Remove Star"] = "Fjern stjerne"; App::$strings["Toggle Star Status"] = "Skru av og på stjernestatus"; -App::$strings["starred"] = "stjernemerket"; +App::$strings["Private Message"] = "Privat melding"; App::$strings["Message signature validated"] = "Innleggets signatur er bekreftet"; App::$strings["Message signature incorrect"] = "Innleggets signatur er feil"; -App::$strings["Add Tag"] = "Legg til merkelapp"; -App::$strings["like"] = "liker"; -App::$strings["dislike"] = "misliker"; -App::$strings["Share This"] = "Del dette"; -App::$strings["share"] = "del"; -App::$strings["Delivery Report"] = "Leveringsrapport"; -App::$strings["%d comment"] = array( - 0 => "%d kommentar", - 1 => "%d kommentarer", -); -App::$strings["View %s's profile - %s"] = "Vis %s sin profil - %s"; -App::$strings["to"] = "til"; -App::$strings["via"] = "via"; -App::$strings["Wall-to-Wall"] = "vegg-til-vegg"; -App::$strings["via Wall-To-Wall:"] = "via vegg-til-vegg:"; +App::$strings["Approve"] = "Godkjenn"; +App::$strings["View %s's profile @ %s"] = "Vis %s sin profile @ %s"; +App::$strings["Categories:"] = "Kategorier:"; +App::$strings["Filed under:"] = "Sortert under:"; App::$strings["from %s"] = "fra %s"; App::$strings["last edited: %s"] = "sist endret: %s"; App::$strings["Expires: %s"] = "Utløper: %s"; -App::$strings["Save Bookmarks"] = "Lagre bokmerker"; -App::$strings["Add to Calendar"] = "Legg til i kalender"; -App::$strings["Mark all seen"] = "Merk alle som sett"; -App::$strings["[+] show all"] = "[+] Vis alle"; -App::$strings["Bold"] = "Uthevet"; -App::$strings["Italic"] = "Kursiv"; -App::$strings["Underline"] = "Understreket"; -App::$strings["Quote"] = "Sitat"; -App::$strings["Code"] = "Kode"; -App::$strings["Image"] = "Bilde"; -App::$strings["Insert Link"] = "Sett inn lenke"; -App::$strings["Video"] = "Video"; -App::$strings["No username found in import file."] = "Ingen brukernavn ble funnet i importfilen."; -App::$strings["Unable to create a unique channel address. Import failed."] = "Klarte ikke å lage en unik kanaladresse. Import mislyktes."; -App::$strings["Cannot locate DNS info for database server '%s'"] = "Kan ikke finne DNS-informasjon om databasetjener '%s'"; -App::$strings["Categories"] = "Kategorier"; -App::$strings["Tags"] = "Merkelapper"; -App::$strings["Keywords"] = "Nøkkelord"; -App::$strings["have"] = "har"; -App::$strings["has"] = "har"; -App::$strings["want"] = "ønsker"; -App::$strings["wants"] = "ønsker"; -App::$strings["likes"] = "liker"; -App::$strings["dislikes"] = "misliker"; -App::$strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; -App::$strings["Starts:"] = "Starter:"; -App::$strings["Finishes:"] = "Slutter:"; -App::$strings["This event has been added to your calendar."] = "Denne hendelsen er lagt til i din kalender."; -App::$strings["Not specified"] = "Ikke spesifisert"; -App::$strings["Needs Action"] = "Trenger handling"; -App::$strings["Completed"] = "Ferdig"; -App::$strings["In Process"] = "Igang"; -App::$strings["Cancelled"] = "Avbrutt"; -App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Kan ikke lage en kopi av kanal-identifikatoren på dette systemet. Import mislyktes."; -App::$strings["Channel clone failed. Import failed."] = "Kanalkloning mislyktes. Import mislyktes."; -App::$strings["(Unknown)"] = "(Ukjent)"; -App::$strings["Visible to anybody on the internet."] = "Synlig for enhver på Internett."; -App::$strings["Visible to you only."] = "Synlig bare for deg."; -App::$strings["Visible to anybody in this network."] = "Synlig for enhver i dette nettverket."; -App::$strings["Visible to anybody authenticated."] = "Synlig for enhver som er autentisert."; -App::$strings["Visible to anybody on %s."] = "Synlig for alle på %s."; -App::$strings["Visible to all connections."] = "Synlig for alle forbindelser."; -App::$strings["Visible to approved connections."] = "Synlig for godkjente forbindelser."; -App::$strings["Visible to specific connections."] = "Synlig for spesifikke forbindelser."; -App::$strings["Privacy group is empty."] = "Personverngruppen er tom."; -App::$strings["Privacy group: %s"] = "Personverngruppe: %s"; -App::$strings["Connection not found."] = "Forbindelsen ble ikke funnet."; -App::$strings["profile photo"] = "profilbilde"; -App::$strings["No recipient provided."] = "Ingen mottaker angitt."; -App::$strings["[no subject]"] = "[ikke noe emne]"; -App::$strings["Unable to determine sender."] = "Kan ikke avgjøre avsender."; -App::$strings["Stored post could not be verified."] = "Lagret innlegg kunne ikke bekreftes."; -App::$strings["prev"] = "forrige"; -App::$strings["first"] = "første"; -App::$strings["last"] = "siste"; -App::$strings["next"] = "neste"; -App::$strings["older"] = "eldre"; -App::$strings["newer"] = "nyere"; -App::$strings["No connections"] = "Ingen forbindelser"; -App::$strings["View all %s connections"] = "Vis alle %s forbindelser"; -App::$strings["poke"] = "prikk"; -App::$strings["poked"] = "prikket"; -App::$strings["ping"] = "varsle"; -App::$strings["pinged"] = "varslet"; -App::$strings["prod"] = "oppildne"; -App::$strings["prodded"] = "oppildnet"; -App::$strings["slap"] = "daske"; -App::$strings["slapped"] = "dasket"; -App::$strings["finger"] = "fingre"; -App::$strings["fingered"] = "fingret"; -App::$strings["rebuff"] = "tilbakevise"; -App::$strings["rebuffed"] = "tilbakeviste"; -App::$strings["happy"] = "glad"; -App::$strings["sad"] = "trist"; -App::$strings["mellow"] = "dempet"; -App::$strings["tired"] = "trøtt"; -App::$strings["perky"] = "oppkvikket"; -App::$strings["angry"] = "sint"; -App::$strings["stupefied"] = "lamslått"; -App::$strings["puzzled"] = "forundret"; -App::$strings["interested"] = "interessert"; -App::$strings["bitter"] = "bitter"; -App::$strings["cheerful"] = "munter"; -App::$strings["alive"] = "levende"; -App::$strings["annoyed"] = "irritert"; -App::$strings["anxious"] = "nervøs"; -App::$strings["cranky"] = "gretten"; -App::$strings["disturbed"] = "foruroliget"; -App::$strings["frustrated"] = "frustrert"; -App::$strings["depressed"] = "lei seg"; -App::$strings["motivated"] = "motivert"; -App::$strings["relaxed"] = "avslappet"; -App::$strings["surprised"] = "overrasket"; -App::$strings["Monday"] = "mandag"; -App::$strings["Tuesday"] = "tirsdag"; -App::$strings["Wednesday"] = "onsdag"; -App::$strings["Thursday"] = "torsdag"; -App::$strings["Friday"] = "fredag"; -App::$strings["Saturday"] = "lørdag"; -App::$strings["Sunday"] = "søndag"; -App::$strings["January"] = "januar"; -App::$strings["February"] = "februar"; -App::$strings["March"] = "mars"; -App::$strings["April"] = "april"; -App::$strings["May"] = "mai"; -App::$strings["June"] = "juni"; -App::$strings["July"] = "juli"; -App::$strings["August"] = "august"; -App::$strings["September"] = "september"; -App::$strings["October"] = "oktober"; -App::$strings["November"] = "november"; -App::$strings["December"] = "desember"; -App::$strings["Unknown Attachment"] = "Ukjent vedlegg"; -App::$strings["unknown"] = "ukjent"; -App::$strings["remove category"] = "fjern kategori"; -App::$strings["remove from file"] = "fjern fra fil"; -App::$strings["default"] = "standard"; -App::$strings["Page layout"] = "Sidens layout"; -App::$strings["You can create your own with the layouts tool"] = "Du kan lage din egen med layout-verktøyet"; -App::$strings["Page content type"] = "Sidens innholdstype"; -App::$strings["Select an alternate language"] = "Velg et annet språk"; -App::$strings["activity"] = "aktivitet"; -App::$strings["Design Tools"] = "Designverktøy"; -App::$strings["Pages"] = "Sider"; -App::$strings["System"] = "System"; -App::$strings["New App"] = ""; -App::$strings["Suggestions"] = "Forslag"; -App::$strings["See more..."] = "Se mer..."; -App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Du har %1$.0f av %2$.0f tillate forbindelser."; -App::$strings["Add New Connection"] = "Legg til ny forbindelse"; -App::$strings["Enter channel address"] = "Skriv kanaladressen"; -App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Eksempel: ola@eksempel.no, https://eksempel.no/kari"; -App::$strings["Notes"] = "Merknader"; -App::$strings["Remove term"] = "Fjern begrep"; -App::$strings["Saved Searches"] = "Lagrede søk"; -App::$strings["add"] = "legg til"; -App::$strings["Saved Folders"] = "Lagrede mapper"; -App::$strings["Everything"] = "Alt"; -App::$strings["Archives"] = "Arkiv"; -App::$strings["Refresh"] = "Forny"; -App::$strings["Account settings"] = "Kontoinnstillinger"; -App::$strings["Channel settings"] = "Kanalinnstillinger"; -App::$strings["Additional features"] = "Tilleggsfunksjoner"; -App::$strings["Feature/Addon settings"] = "Funksjons-/Tilleggsinnstillinger"; -App::$strings["Display settings"] = "Visningsinnstillinger"; -App::$strings["Manage locations"] = ""; -App::$strings["Export channel"] = "Eksporter kanal"; -App::$strings["Connected apps"] = "Tilkoblede app-er"; -App::$strings["Premium Channel Settings"] = "Premiumkanal-innstillinger"; -App::$strings["Private Mail Menu"] = "Meny for privat post"; -App::$strings["Combined View"] = "Kombinert visning"; -App::$strings["Inbox"] = "Innboks"; -App::$strings["Outbox"] = "Utboks"; -App::$strings["New Message"] = "Ny melding"; -App::$strings["Conversations"] = "Samtaler"; -App::$strings["Received Messages"] = "Mottatte meldinger"; -App::$strings["Sent Messages"] = "Sendte meldinger"; -App::$strings["No messages."] = "Ingen meldinger."; -App::$strings["Delete conversation"] = "Slett samtale"; -App::$strings["Events Menu"] = "Meny for hendelser"; -App::$strings["Day View"] = "Dag"; -App::$strings["Week View"] = "Uke"; -App::$strings["Month View"] = "Måned"; -App::$strings["Events Tools"] = "Kalenderverktøy"; -App::$strings["Export Calendar"] = "Eksporter kalender"; -App::$strings["Import Calendar"] = "Importer kalender"; -App::$strings["Chatrooms"] = "Chatrom"; -App::$strings["Overview"] = ""; -App::$strings["Chat Members"] = ""; -App::$strings["Bookmarked Chatrooms"] = "Bokmerkede chatrom"; -App::$strings["Suggested Chatrooms"] = "Foreslåtte chatrom"; -App::$strings["photo/image"] = "foto/bilde"; -App::$strings["Click to show more"] = ""; -App::$strings["Rating Tools"] = "Vurderingsverktøy"; -App::$strings["Rate Me"] = "Vurder meg"; -App::$strings["View Ratings"] = "Vis vurderinger"; -App::$strings["Forums"] = "Forum"; -App::$strings["Tasks"] = "Oppgaver"; -App::$strings["Documentation"] = "Dokumentasjon"; -App::$strings["Project/Site Information"] = "Prosjekt-/Nettstedsinformasjon"; -App::$strings["For Members"] = "For medlemmer"; -App::$strings["For Administrators"] = "For administratorer"; -App::$strings["For Developers"] = "For utviklere"; -App::$strings["Member registrations waiting for confirmation"] = ""; -App::$strings["Inspect queue"] = "Inspiser kø"; -App::$strings["DB updates"] = "Databaseoppdateringer"; -App::$strings["Admin"] = "Administrator"; -App::$strings["Plugin Features"] = "Tilleggsfunksjoner"; -App::$strings["Channel is blocked on this site."] = "Kanalen er blokkert på dette nettstedet."; -App::$strings["Channel location missing."] = "Kanalplassering mangler."; -App::$strings["Response from remote channel was incomplete."] = "Svaret fra den andre kanalen var ikke komplett."; -App::$strings["Channel was deleted and no longer exists."] = "Kanalen er slettet og finnes ikke lenger."; -App::$strings["Protocol disabled."] = "Protokollen er avskrudd."; -App::$strings["Channel discovery failed."] = "Kanaloppdagelse mislyktes."; -App::$strings["Cannot connect to yourself."] = "Kan ikke lage forbindelse med deg selv."; -App::$strings["%1\$s's bookmarks"] = "%1\$s sine bokmerker"; -App::$strings["Public Timeline"] = "Offentlig tidslinje"; -App::$strings["Image/photo"] = "Bilde/fotografi"; -App::$strings["Encrypted content"] = "Kryptert innhold"; -App::$strings["Install %s element: "] = "Installer %s element:"; -App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Dette innlegget inneholder det installerbare elementet %s, men du mangler tillatelse til å installere det på dette nettstedet."; -App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s skrev følgende %2\$s %3\$s"; -App::$strings["Click to open/close"] = "Klikk for å åpne/lukke"; -App::$strings["spoiler"] = ""; -App::$strings["Different viewers will see this text differently"] = "Denne teksten vil se forskjellig ut for ulike besøkende"; -App::$strings["$1 wrote:"] = "$1 skrev:"; -App::$strings["Directory Options"] = "Kataloginnstillinger"; -App::$strings["Safe Mode"] = "Trygt modus"; -App::$strings["Public Forums Only"] = "Bare offentlige forum"; -App::$strings["This Website Only"] = "Kun dette nettstedet"; -App::$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."] = "Skjemaets sikkerhetspollett var ikke gyldig. Dette skjedde antakelig fordi skjemaet har vært åpnet for lenge (>3 timer) før det ble sendt inn."; -App::$strings["Logout"] = "Logg ut"; -App::$strings["End this session"] = "Avslutt denne økten"; -App::$strings["Home"] = "Hjem"; -App::$strings["Your posts and conversations"] = "Dine innlegg og samtaler"; -App::$strings["Your profile page"] = "Din profilside"; -App::$strings["Manage/Edit profiles"] = "Håndter/endre profiler"; -App::$strings["Edit Profile"] = "Endre profil"; -App::$strings["Edit your profile"] = "Endre din profil"; -App::$strings["Your photos"] = "Dine bilder"; -App::$strings["Your files"] = "Dine filer"; -App::$strings["Your chatrooms"] = "Dine chatterom"; -App::$strings["Bookmarks"] = "Bokmerker"; -App::$strings["Your bookmarks"] = "Dine bokmerker"; -App::$strings["Your webpages"] = "Dine websider"; -App::$strings["Sign in"] = "Logg på"; -App::$strings["%s - click to logout"] = "%s - klikk for å logge ut"; -App::$strings["Remote authentication"] = "Fjernautentisering"; -App::$strings["Click to authenticate to your home hub"] = "Klikk for å godkjennes mot din hjemme-hub"; -App::$strings["Home Page"] = "Hjemmeside"; -App::$strings["Create an account"] = "Lag en konto"; -App::$strings["Help and documentation"] = "Hjelp og dokumentasjon"; -App::$strings["Applications, utilities, links, games"] = "Programmer, verktøy, lenker, spill"; -App::$strings["Search site @name, #tag, ?docs, content"] = "Søk nettstedet for @navn, #merkelapp, ?dokumentasjon, innhold"; -App::$strings["Channel Directory"] = "Kanalkatalog"; -App::$strings["Your grid"] = "Ditt nett"; -App::$strings["Mark all grid notifications seen"] = "Marker alle nettvarsler som sett"; -App::$strings["Channel home"] = "Kanalhjem"; -App::$strings["Mark all channel notifications seen"] = "Merk alle kanalvarsler som sett"; -App::$strings["Notices"] = "Varsel"; -App::$strings["Notifications"] = "Varsler"; -App::$strings["See all notifications"] = "Se alle varsler"; -App::$strings["Private mail"] = "Privat post"; -App::$strings["See all private messages"] = "Se alle private meldinger"; -App::$strings["Mark all private messages seen"] = "Merk alle private meldinger som sett"; -App::$strings["Event Calendar"] = "Kalender"; -App::$strings["See all events"] = "Se alle hendelser"; -App::$strings["Mark all events seen"] = "Merk alle hendelser som sett"; -App::$strings["Manage Your Channels"] = "Håndter dine kanaler"; -App::$strings["Account/Channel Settings"] = "Konto-/kanal-innstillinger"; -App::$strings["Site Setup and Configuration"] = "Nettstedsoppsett og -konfigurasjon"; -App::$strings["Loading..."] = "Laster..."; -App::$strings["@name, #tag, ?doc, content"] = "@navn, #merkelapp, ?dokumentasjon, innhold"; -App::$strings["Please wait..."] = "Vennligst vent..."; -App::$strings["New window"] = "Nytt vindu"; -App::$strings["Open the selected location in a different window or browser tab"] = "Åpne det valgte stedet i et annet vindu eller nettleser-fane"; -App::$strings["User '%s' deleted"] = "Brukeren '%s' er slettet"; -App::$strings["%d invitation available"] = array( - 0 => "%d invitasjon tilgjengelig", - 1 => "%d invitasjoner tilgjengelig", -); -App::$strings["Find Channels"] = "Finn kanaler"; -App::$strings["Enter name or interest"] = "Skriv navn eller interesse"; -App::$strings["Connect/Follow"] = "Forbindelse/Følg"; -App::$strings["Examples: Robert Morgenstein, Fishing"] = "Eksempler: Ola Nordmann, fisking"; -App::$strings["Random Profile"] = "Tilfeldig profil"; -App::$strings["Invite Friends"] = "Inviter venner"; -App::$strings["Advanced example: name=fred and country=iceland"] = "Avansert eksempel: navn=fred og land=island"; -App::$strings["%d connection in common"] = array( - 0 => "%d forbindelse felles", - 1 => "%d forbindelser felles", -); -App::$strings["show more"] = "vis mer"; -App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s er nå forbundet med %2\$s"; -App::$strings["%1\$s poked %2\$s"] = "%1\$s prikket %2\$s"; -App::$strings["View %s's profile @ %s"] = "Vis %s sin profile @ %s"; -App::$strings["Categories:"] = "Kategorier:"; -App::$strings["Filed under:"] = "Sortert under:"; -App::$strings["View in context"] = "Vis i sammenheng"; +App::$strings["Please wait"] = "Vennligst vent"; App::$strings["remove"] = "fjern"; +App::$strings["Loading..."] = "Laster..."; +App::$strings["Conversation Features"] = ""; App::$strings["Delete Selected Items"] = "Slett valgte elementer"; App::$strings["View Source"] = "Vis kilde"; App::$strings["Follow Thread"] = "Følg tråd"; App::$strings["Unfollow Thread"] = "Ikke følg tråd"; -App::$strings["Activity/Posts"] = "Aktivitet/Innlegg"; +App::$strings["Recent Activity"] = "Nylig aktivitet"; +App::$strings["Connect"] = "Koble"; App::$strings["Edit Connection"] = "Endre forbindelse"; -App::$strings["Message"] = "Melding"; +App::$strings["Poke"] = "Prikk"; App::$strings["%s likes this."] = "%s liker dette."; App::$strings["%s doesn't like this."] = "%s liker ikke dette."; App::$strings["%2\$d people like this."] = array( @@ -1811,35 +1346,22 @@ App::$strings[", and %d other people"] = array( ); App::$strings["%s like this."] = "%s liker dette."; App::$strings["%s don't like this."] = "%s liker ikke dette."; -App::$strings["Set your location"] = "Angi din plassering"; -App::$strings["Clear browser location"] = "Fjern nettleserplassering"; -App::$strings["Tag term:"] = "Merkelapp:"; -App::$strings["Where are you right now?"] = "Hvor er du akkurat nå?"; -App::$strings["Page link name"] = "Sidens lenkenavn"; -App::$strings["Post as"] = "Lag innlegg som"; -App::$strings["Toggle voting"] = "Skru av eller på stemming"; -App::$strings["Categories (optional, comma-separated list)"] = "Kategorier (valgfri, kommaseparert liste)"; -App::$strings["Set publish date"] = "Angi publiseringsdato"; -App::$strings["OK"] = "OK"; -App::$strings["Discover"] = "Oppdage"; -App::$strings["Imported public streams"] = "Importerte offentlige strømmer"; -App::$strings["Commented Order"] = "Kommentert"; -App::$strings["Sort by Comment Date"] = "Sorter etter kommentert dato"; -App::$strings["Posted Order"] = "Lagt inn"; -App::$strings["Sort by Post Date"] = "Sorter etter innleggsdato"; -App::$strings["Posts that mention or involve you"] = "Innlegg som nevner eller involverer deg"; -App::$strings["Activity Stream - by date"] = "Aktivitetsstrøm - etter dato"; -App::$strings["Starred"] = "Stjerne"; -App::$strings["Favourite Posts"] = "Favorittinnlegg"; -App::$strings["Spam"] = "Søppel"; -App::$strings["Posts flagged as SPAM"] = "Innlegg merket som SØPPEL"; -App::$strings["Status Messages and Posts"] = "Statusmeldinger og -innlegg"; -App::$strings["About"] = "Om"; -App::$strings["Profile Details"] = "Profildetaljer"; -App::$strings["Photo Albums"] = "Fotoalbum"; -App::$strings["Files and Storage"] = "Filer og lagring"; -App::$strings["Saved Bookmarks"] = "Lagrede bokmerker"; -App::$strings["Manage Webpages"] = "Håndtere websider"; +App::$strings["Toggle poll"] = ""; +App::$strings["Option"] = ""; +App::$strings["Add option"] = ""; +App::$strings["Minutes"] = ""; +App::$strings["Hours"] = ""; +App::$strings["Days"] = ""; +App::$strings["Allow multiple answers"] = ""; +App::$strings["Summary (optional)"] = ""; +App::$strings["__ctx:noun__ Like"] = array( + 0 => "Liker", + 1 => "Liker", +); +App::$strings["__ctx:noun__ Dislike"] = array( + 0 => "Liker ikke", + 1 => "Liker ikke", +); App::$strings["__ctx:noun__ Attending"] = array( 0 => "Deltar", 1 => "Deltar", @@ -1864,6 +1386,7 @@ App::$strings["__ctx:noun__ Abstain"] = array( 0 => "Avstår", 1 => "Avstår", ); +App::$strings["Select a profile to assign to this contact"] = ""; App::$strings["Frequently"] = "Ofte"; App::$strings["Hourly"] = "Hver time"; App::$strings["Twice daily"] = "To ganger daglig"; @@ -1880,7 +1403,6 @@ App::$strings["Transsexual"] = "Transseksuell"; App::$strings["Hermaphrodite"] = "Hermafroditt"; App::$strings["Neuter"] = "Intetkjønn"; App::$strings["Non-specific"] = "Ubestemt"; -App::$strings["Other"] = "Annen"; App::$strings["Undecided"] = "Ubestemt"; App::$strings["Males"] = "Menn"; App::$strings["Females"] = "Kvinner"; @@ -1904,6 +1426,7 @@ App::$strings["Infatuated"] = "Betatt"; App::$strings["Dating"] = "Sammen med"; App::$strings["Unfaithful"] = "Utro"; App::$strings["Sex Addict"] = "Sexavhengig"; +App::$strings["Friends"] = "Venner"; App::$strings["Friends/Benefits"] = "Venner med frynsegoder"; App::$strings["Casual"] = "Tilfeldig"; App::$strings["Engaged"] = "Forlovet"; @@ -1925,39 +1448,76 @@ App::$strings["Uncertain"] = "Usikkert"; App::$strings["It's complicated"] = "Det er komplisert"; App::$strings["Don't care"] = "Bryr meg ikke"; App::$strings["Ask me"] = "Spør meg"; -App::$strings["Visible to your default audience"] = "Synlig for ditt standard publikum"; -App::$strings["Only me"] = ""; -App::$strings["Public"] = "Offentlig"; -App::$strings["Anybody in the \$Projectname network"] = ""; -App::$strings["Any account on %s"] = ""; -App::$strings["Any of my connections"] = ""; -App::$strings["Only connections I specifically allow"] = ""; -App::$strings["Anybody authenticated (could include visitors from other networks)"] = ""; -App::$strings["Any connections including those who haven't yet been approved"] = ""; -App::$strings["This is your default setting for the audience of your normal stream, and posts."] = ""; -App::$strings["This is your default setting for who can view your default channel profile"] = ""; -App::$strings["This is your default setting for who can view your connections"] = ""; -App::$strings["This is your default setting for who can view your file storage and photos"] = ""; -App::$strings["This is your default setting for the audience of your webpages"] = ""; -App::$strings["Not a valid email address"] = "Ikke en gyldig e-postadresse"; -App::$strings["Your email domain is not among those allowed on this site"] = "Ditt e-postdomene er ikke blant de som er tillatt på dette stedet"; -App::$strings["Your email address is already registered at this site."] = "Din e-postadresse er allerede registrert på dette nettstedet."; +App::$strings["New window"] = "Nytt vindu"; +App::$strings["Open the selected location in a different window or browser tab"] = "Åpne det valgte stedet i et annet vindu eller nettleser-fane"; +App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "En slettet gruppe med dette navnet ble gjenopprettet. Eksisterende tillatelser for elementet kan gjelde for denne gruppen og fremtidige medlemmer. Hvis du ønsket noe annet, vennligst lag en ny gruppe med et annet navn."; +App::$strings["Add new connections to this privacy group"] = "Legg nye forbindelser i denne personverngruppen"; +App::$strings["edit"] = "endre"; +App::$strings["Privacy Groups"] = "Personverngrupper"; +App::$strings["Edit group"] = "Endre gruppe"; +App::$strings["Manage privacy groups"] = ""; +App::$strings["Channels not in any privacy group"] = "Kanaler uten personverngruppe"; +App::$strings["add"] = "legg til"; +App::$strings["Trending"] = ""; +App::$strings["Tags"] = "Merkelapper"; +App::$strings["Keywords"] = "Nøkkelord"; +App::$strings["have"] = "har"; +App::$strings["has"] = "har"; +App::$strings["want"] = "ønsker"; +App::$strings["wants"] = "ønsker"; +App::$strings["like"] = "liker"; +App::$strings["likes"] = "liker"; +App::$strings["dislike"] = "misliker"; +App::$strings["dislikes"] = "misliker"; +App::$strings["(Unknown)"] = "(Ukjent)"; +App::$strings["Visible to anybody on the internet."] = "Synlig for enhver på Internett."; +App::$strings["Visible to you only."] = "Synlig bare for deg."; +App::$strings["Visible to anybody in this network."] = "Synlig for enhver i dette nettverket."; +App::$strings["Visible to anybody authenticated."] = "Synlig for enhver som er autentisert."; +App::$strings["Visible to anybody on %s."] = "Synlig for alle på %s."; +App::$strings["Visible to all connections."] = "Synlig for alle forbindelser."; +App::$strings["Visible to approved connections."] = "Synlig for godkjente forbindelser."; +App::$strings["Visible to specific connections."] = "Synlig for spesifikke forbindelser."; +App::$strings["🔁 Repeated %1\$s's %2\$s"] = ""; +App::$strings["Privacy group not found."] = "Personverngruppen ble ikke funnet"; +App::$strings["Privacy group is empty."] = "Personverngruppen er tom."; +App::$strings["Privacy group: %s"] = "Personverngruppe: %s"; +App::$strings["Connection: %s"] = "Forbindelse: %s"; +App::$strings["Connection not found."] = "Forbindelsen ble ikke funnet."; +App::$strings["female"] = "kvinne"; +App::$strings["%1\$s updated her %2\$s"] = "%1\$s oppdaterte %2\$s sitt"; +App::$strings["male"] = "mann"; +App::$strings["%1\$s updated his %2\$s"] = "%1\$s oppdaterte %2\$s sitt"; +App::$strings["%1\$s updated their %2\$s"] = "%1\$s oppdaterte %2\$s deres"; +App::$strings["profile photo"] = "profilbilde"; +App::$strings["[Edited %s]"] = ""; +App::$strings["__ctx:edit_activity__ Post"] = ""; +App::$strings["__ctx:edit_activity__ Comment"] = ""; +App::$strings["The provided email address is not valid"] = ""; +App::$strings["The provided email domain is not among those allowed on this site"] = ""; +App::$strings["The provided email address is already registered at this site"] = ""; +App::$strings["There is a pending registration for this address - click \"Register\" to continue verification"] = ""; App::$strings["An invitation is required."] = "En invitasjon er påkrevd."; App::$strings["Invitation could not be verified."] = "Invitasjon kunne ikke bekreftes."; App::$strings["Please enter the required information."] = "Vennligst skriv inn nødvendig informasjon."; App::$strings["Failed to store account information."] = "Mislyktes med å lagre kontoinformasjon."; App::$strings["Registration confirmation for %s"] = "Registreringsbekreftelse for %s"; App::$strings["Registration request at %s"] = "Registreringsforespørsel hos %s"; -App::$strings["Administrator"] = "Administrator"; App::$strings["your registration password"] = "ditt registreringspassord"; App::$strings["Registration details for %s"] = "Registreringsdetaljer for %s"; App::$strings["Account approved."] = "Konto godkjent."; App::$strings["Registration revoked for %s"] = "Registrering trukket tilbake for %s"; -App::$strings["Account verified. Please login."] = "Konto bekreftet. Vennligst logg inn."; +App::$strings["Could not revoke registration for %s"] = ""; App::$strings["Click here to upgrade."] = "Klikk her for å oppgradere."; App::$strings["This action exceeds the limits set by your subscription plan."] = "Denne handlingen går utenfor grensene satt i din abonnementsplan."; App::$strings["This action is not available under your subscription plan."] = "Denne handlingen er ikke tilgjengelig i din abonnementsplan."; +App::$strings["open"] = ""; +App::$strings["closed"] = ""; +App::$strings["Registration is currently"] = ""; +App::$strings["please come back"] = ""; +App::$strings["Profile Photos"] = "Profilbilder"; App::$strings["Item was not found."] = "Elementet ble ikke funnet."; +App::$strings["Unknown error."] = ""; App::$strings["No source file."] = "Ingen kildefil."; App::$strings["Cannot locate file to replace"] = "Kan ikke finne filen som skal byttes ut"; App::$strings["Cannot locate file to revise/update"] = "Finner ikke filen som skal revideres/oppdateres"; @@ -1972,6 +1532,24 @@ App::$strings["Path not found."] = "Stien ble ikke funnet."; App::$strings["mkdir failed."] = "mkdir mislyktes."; App::$strings["database storage failed."] = "databaselagring mislyktes."; App::$strings["Empty path"] = "Tom sti"; +App::$strings["%s shared a %s with you"] = ""; +App::$strings["%1\$s's bookmarks"] = "%1\$s sine bokmerker"; +App::$strings["Image/photo"] = "Bilde/fotografi"; +App::$strings["Encrypted content"] = "Kryptert innhold"; +App::$strings["Install %1\$s element %2\$s"] = ""; +App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Dette innlegget inneholder det installerbare elementet %s, men du mangler tillatelse til å installere det på dette nettstedet."; +App::$strings["webpage"] = "nettside"; +App::$strings["layout"] = "layout"; +App::$strings["block"] = "byggekloss"; +App::$strings["menu"] = "meny"; +App::$strings["card"] = ""; +App::$strings["article"] = ""; +App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s skrev følgende %2\$s %3\$s"; +App::$strings["Click to open/close"] = "Klikk for å åpne/lukke"; +App::$strings["spoiler"] = ""; +App::$strings["View article"] = ""; +App::$strings["View summary"] = ""; +App::$strings["$1 wrote:"] = "$1 skrev:"; App::$strings["Unable to obtain identity information from database"] = "Klarer ikke å få tak i identitetsinformasjon fra databasen"; App::$strings["Empty name"] = "Mangler navn"; App::$strings["Name too long"] = "Navnet er for langt"; @@ -1981,22 +1559,32 @@ App::$strings["Reserved nickname. Please choose another."] = "Reservert kallenav App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Kallenavnet inneholder tegn som ikke er støttet eller det er allerede i bruk på dette nettstedet."; App::$strings["Unable to retrieve created identity"] = "Klarer ikke å hente den lagede identiteten"; App::$strings["Default Profile"] = "Standardprofil"; -App::$strings["Requested channel is not available."] = "Forespurt kanal er ikke tilgjengelig."; +App::$strings["Unable to retrieve modified identity"] = ""; +App::$strings["Requested channel is not available"] = ""; +App::$strings["Change profile photo"] = "Endre profilbilde"; App::$strings["Create New Profile"] = "Lag ny profil"; +App::$strings["Profile Image"] = "Profilbilde"; App::$strings["Visible to everybody"] = ""; +App::$strings["Edit visibility"] = "Endre synlighet"; App::$strings["Gender:"] = "Kjønn:"; App::$strings["Status:"] = "Status:"; App::$strings["Homepage:"] = "Hjemmeside:"; +App::$strings["Hometown:"] = "Hjemby:"; App::$strings["Online Now"] = "Online nå"; +App::$strings["Change your profile photo"] = ""; +App::$strings["Trans"] = ""; +App::$strings["Full Name:"] = "Fullt navn:"; App::$strings["Like this channel"] = "Lik denne kanalen"; App::$strings["j F, Y"] = "j F, Y"; App::$strings["j F"] = "j F"; App::$strings["Birthday:"] = "Fødselsdag:"; +App::$strings["Age:"] = "Alder:"; App::$strings["for %1\$d %2\$s"] = "for %1\$d %2\$s"; -App::$strings["Sexual Preference:"] = "Seksuell preferanse:"; App::$strings["Tags:"] = "Merkelapper:"; +App::$strings["Sexual Preference:"] = "Seksuell preferanse:"; App::$strings["Political Views:"] = "Politiske synspunkter:"; App::$strings["Religion:"] = "Religion:"; +App::$strings["About:"] = "Om:"; App::$strings["Hobbies/Interests:"] = "Hobbyer/interesser:"; App::$strings["Likes:"] = "Liker:"; App::$strings["Dislikes:"] = "Misliker:"; @@ -2009,231 +1597,1895 @@ App::$strings["Film/dance/culture/entertainment:"] = "Film/dans/kultur/underhold App::$strings["Love/Romance:"] = "Kjærlighet/romantikk:"; App::$strings["Work/employment:"] = "Arbeid/sysselsetting:"; App::$strings["School/education:"] = "Skole/utdannelse:"; +App::$strings["Profile"] = "Profil"; App::$strings["Like this thing"] = "Lik denne tingen"; -App::$strings["General Features"] = "Generelle funksjoner"; -App::$strings["Content Expiration"] = "Innholdet utløper"; -App::$strings["Remove posts/comments and/or private messages at a future time"] = "Fjern innlegg/kommentarer og/eller private meldinger på et angitt tidspunkt i fremtiden"; -App::$strings["Multiple Profiles"] = "Flere profiler"; -App::$strings["Ability to create multiple profiles"] = "Mulig å lage flere profiler"; -App::$strings["Advanced Profiles"] = "Avanserte profiler"; -App::$strings["Additional profile sections and selections"] = "Ytterlige seksjoner og utvalg til profilen"; -App::$strings["Profile Import/Export"] = "Profil-import/-eksport"; -App::$strings["Save and load profile details across sites/channels"] = "Lagre og åpne profildetaljer på tvers av nettsteder/kanaler"; -App::$strings["Web Pages"] = "Web-sider"; -App::$strings["Provide managed web pages on your channel"] = "Tilby kontrollerte web-sider på din kanal"; -App::$strings["Hide Rating"] = "Skjul vurdering"; -App::$strings["Hide the rating buttons on your channel and profile pages. Note: People can still rate you somewhere else."] = "Skjul vurderingsknappene for din kanal og profilsider. Merknad: folk kan fortsatt vurdere deg et annet sted."; -App::$strings["Private Notes"] = "Private merknader"; -App::$strings["Enables a tool to store notes and reminders (note: not encrypted)"] = "Skru på et verktøy for å lagre notater og påminnelser (merknad: ikke kryptert)"; -App::$strings["Navigation Channel Select"] = "Navigasjon kanalvalg"; -App::$strings["Change channels directly from within the navigation dropdown menu"] = "Endre kanaler direkte fra navigasjonsmenyen"; -App::$strings["Photo Location"] = "Bildeplassering"; -App::$strings["If location data is available on uploaded photos, link this to a map."] = "Hvis plasseringsdata er tilgjengelige i opplastede bilder, plasser dette på et kart."; -App::$strings["Access Controlled Chatrooms"] = ""; -App::$strings["Provide chatrooms and chat services with access control."] = ""; -App::$strings["Smart Birthdays"] = ""; -App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = ""; -App::$strings["Expert Mode"] = "Ekspertmodus"; -App::$strings["Enable Expert Mode to provide advanced configuration options"] = "Skru på Ekspertmodus for å tilby avanserte konfigurasjonsvalg"; -App::$strings["Premium Channel"] = "Premiumkanal"; -App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Lar deg angi restriksjoner og betingelser for de som kobler seg til din kanal"; -App::$strings["Post Composition Features"] = "Funksjoner for å lage innlegg"; -App::$strings["Large Photos"] = "Store bilder"; -App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Inkluder store (1024px) småbilder i innlegg. Hvis denne ikke er påskrudd, bruk små (640px) småbilder."; -App::$strings["Automatically import channel content from other channels or feeds"] = "Automatisk import av kanalinnhold fra andre kanaler eller strømmer"; -App::$strings["Even More Encryption"] = "Enda mer kryptering"; -App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Tillat valgfri kryptering av innhold ende-til-ende via en delt hemmelig nøkkel"; -App::$strings["Enable Voting Tools"] = "Skru på verktøy for å stemme"; -App::$strings["Provide a class of post which others can vote on"] = "Tilby en type innlegg som andre kan stemme på"; -App::$strings["Delayed Posting"] = "Tidfest publisering"; -App::$strings["Allow posts to be published at a later date"] = "Tillat innlegg å bli publisert på et senere tidspunkt"; -App::$strings["Suppress Duplicate Posts/Comments"] = "Forhindre duplikat av innlegg/kommentarer"; -App::$strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = "Forhindre innlegg med identisk innhold fra å bli publisert hvis det er mindre enn to minutter mellom innsendingene."; -App::$strings["Network and Stream Filtering"] = "Nettverk- og strømfiltrering"; -App::$strings["Search by Date"] = "Søk etter dato"; -App::$strings["Ability to select posts by date ranges"] = "Mulighet for å velge innlegg etter datoområde"; -App::$strings["Privacy Groups"] = "Personverngrupper"; -App::$strings["Enable management and selection of privacy groups"] = "Skru på håndtering og valg av personverngrupper"; -App::$strings["Save search terms for re-use"] = "Lagre søkeuttrykk for senere bruk"; -App::$strings["Network Personal Tab"] = "Nettverk personlig fane"; -App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Skru på fane for å bare vise Nettverksinnlegg som du har deltatt i"; -App::$strings["Network New Tab"] = "Nettverk Ny fane"; -App::$strings["Enable tab to display all new Network activity"] = "Skru på fane for å vise all ny nettverksaktivitet"; +App::$strings["Export"] = "Eksport"; +App::$strings["cover photo"] = "forsidebilde"; +App::$strings["Remote Authentication"] = "Fjernautentisering"; +App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Skriv din kanaladresse (for eksempel channel@exampel.com)"; +App::$strings["Authenticate"] = "Autentiser"; +App::$strings["Account '%s' deleted"] = "Kontoen '%s' slettet"; +App::$strings["Visible to your default audience"] = "Synlig for ditt standard publikum"; +App::$strings["Profile-Based Privacy Groups"] = ""; +App::$strings["Private Forum"] = ""; +App::$strings["Forums"] = "Forum"; +App::$strings["Only me"] = ""; +App::$strings["Share with"] = ""; +App::$strings["Custom selection"] = ""; +App::$strings["Select \"Allow\" to allow viewing. \"Don't allow\" lets you override and limit the scope of \"Allow\"."] = ""; +App::$strings["Allow"] = ""; +App::$strings["Don't allow"] = ""; +App::$strings["Post permissions %s cannot be changed %s after a post is shared.
These permissions set who is allowed to view the post."] = ""; +App::$strings["View PDF"] = ""; +App::$strings[" by "] = ""; +App::$strings[" on "] = ""; +App::$strings["Embedded content"] = "Innebygget innhold"; +App::$strings["Embedding disabled"] = "Innbygging avskrudd"; +App::$strings["OpenWebAuth: %1\$s welcomes %2\$s"] = "OpenWebAuth: %1\$s ønsker %2\$s velkommen"; +App::$strings["Commented Date"] = ""; +App::$strings["Order by last commented date"] = ""; +App::$strings["Posted Date"] = ""; +App::$strings["Order by last posted date"] = ""; +App::$strings["Date Unthreaded"] = ""; +App::$strings["Order unthreaded by date"] = ""; +App::$strings["Stream Order"] = ""; +App::$strings["Add new guest"] = ""; +App::$strings["Guest access"] = ""; +App::$strings["Archives"] = "Arkiv"; +App::$strings["View Photo"] = "Vis foto"; +App::$strings["Edit Album"] = "Endre album"; +App::$strings["Upload"] = "Last opp"; +App::$strings["Tasks"] = "Oppgaver"; +App::$strings["Chat Members"] = ""; +App::$strings["__ctx:noun__ new connection"] = array( + 0 => "", + 1 => "", +); +App::$strings["__ctx:noun__ notice"] = array( + 0 => "", + 1 => "", +); +App::$strings["I will attend"] = "Jeg vil delta"; +App::$strings["I will not attend"] = "Jeg deltar ikke"; +App::$strings["I might attend"] = "Jeg vil kanskje delta"; +App::$strings["I agree"] = "Jeg er enig"; +App::$strings["I disagree"] = "Jeg er uenig"; +App::$strings["I abstain"] = "Jeg avstår"; +App::$strings["Share This"] = "Del dette"; +App::$strings["share"] = "del"; +App::$strings["View %s's profile - %s"] = "Vis %s sin profil - %s"; +App::$strings["via"] = "via"; +App::$strings["Attendance Options"] = ""; +App::$strings["Voting Options"] = ""; +App::$strings["Pinned post"] = ""; +App::$strings["Don't show"] = "Ikke vis"; +App::$strings["__ctx:widget__ Activity"] = ""; +App::$strings["Select Channel"] = ""; +App::$strings["Read-write"] = ""; +App::$strings["Read-only"] = ""; +App::$strings["Channel Calendar"] = ""; +App::$strings["CalDAV Calendars"] = ""; +App::$strings["Shared CalDAV Calendars"] = ""; +App::$strings["Share this calendar"] = ""; +App::$strings["Calendar name and color"] = ""; +App::$strings["Create new CalDAV calendar"] = ""; +App::$strings["Create"] = "Lag"; +App::$strings["Calendar Name"] = ""; +App::$strings["Calendar Tools"] = ""; +App::$strings["Channel Calendars"] = ""; +App::$strings["Import calendar"] = ""; +App::$strings["Select a calendar to import to"] = ""; +App::$strings["Addressbooks"] = ""; +App::$strings["Addressbook name"] = ""; +App::$strings["Create new addressbook"] = ""; +App::$strings["Addressbook Name"] = ""; +App::$strings["Addressbook Tools"] = ""; +App::$strings["Import addressbook"] = ""; +App::$strings["Select an addressbook to import to"] = ""; +App::$strings["Remove term"] = "Fjern begrep"; +App::$strings["Suggested Chatrooms"] = "Foreslåtte chatrom"; +App::$strings["Account settings"] = "Kontoinnstillinger"; +App::$strings["Channel settings"] = "Kanalinnstillinger"; +App::$strings["Privacy settings"] = ""; +App::$strings["Display settings"] = "Visningsinnstillinger"; +App::$strings["Manage locations"] = ""; +App::$strings["Overview"] = ""; +App::$strings["Ignore/Hide"] = "Ignorer/Skjul"; +App::$strings["Suggestions"] = "Forslag"; +App::$strings["See more..."] = "Se mer..."; +App::$strings["Bookmarked Chatrooms"] = "Bokmerkede chatrom"; +App::$strings["App Categories"] = ""; +App::$strings["Toggle post editor"] = ""; +App::$strings["Toggle personal notes"] = ""; +App::$strings["Channel activities"] = ""; +App::$strings["Add new role"] = ""; +App::$strings["Contact roles"] = ""; +App::$strings["Role members"] = ""; +App::$strings["photo/image"] = "foto/bilde"; +App::$strings["Site"] = "Nettsted"; +App::$strings["Accounts"] = "Kontoer"; +App::$strings["Member registrations waiting for confirmation"] = ""; +App::$strings["Security"] = "Sikkerhet"; +App::$strings["Features"] = "Funksjoner"; +App::$strings["Addons"] = "Tillegg"; +App::$strings["Themes"] = "Utseende"; +App::$strings["Inspect queue"] = "Inspiser kø"; +App::$strings["Profile Fields"] = "Profilfelter"; +App::$strings["DB updates"] = "Databaseoppdateringer"; +App::$strings["Logs"] = "Logger"; +App::$strings["Addon Features"] = ""; +App::$strings["Direct Messages"] = ""; +App::$strings["Show direct (private) messages"] = ""; +App::$strings["Events"] = "Hendelser"; +App::$strings["Show posts that include events"] = ""; +App::$strings["Polls"] = ""; +App::$strings["Show posts that include polls"] = ""; +App::$strings["Show posts related to the %s privacy group"] = ""; +App::$strings["Show my privacy groups"] = ""; +App::$strings["Show posts to this forum"] = ""; +App::$strings["Show forums"] = ""; +App::$strings["Starred Posts"] = ""; +App::$strings["Show posts that I have starred"] = ""; +App::$strings["Personal Posts"] = ""; +App::$strings["Show posts that mention or involve me"] = ""; +App::$strings["Show posts that I have filed to %s"] = ""; +App::$strings["Show filed post categories"] = ""; +App::$strings["Panel search"] = ""; +App::$strings["Filter by name"] = ""; +App::$strings["Remove active filter"] = ""; +App::$strings["Stream Filters"] = ""; +App::$strings["App Collections"] = ""; +App::$strings["Installed apps"] = ""; +App::$strings["Available Apps"] = ""; +App::$strings["Add new group"] = ""; +App::$strings["Privacy groups"] = ""; +App::$strings["Rating Tools"] = "Vurderingsverktøy"; +App::$strings["Rate Me"] = "Vurder meg"; +App::$strings["View Ratings"] = "Vis vurderinger"; +App::$strings["Click to show more"] = ""; +App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Du har %1$.0f av %2$.0f tillate forbindelser."; +App::$strings["Add New Connection"] = "Legg til ny forbindelse"; +App::$strings["Enter channel address"] = "Skriv kanaladressen"; +App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Eksempel: ola@eksempel.no, https://eksempel.no/kari"; +App::$strings["Public and restricted messages"] = ""; +App::$strings["Direct messages"] = ""; +App::$strings["Starred messages"] = ""; +App::$strings["Notices"] = "Varsel"; +App::$strings["No messages"] = ""; +App::$strings["Profile Creation"] = "Oppretting av profil"; +App::$strings["Upload profile photo"] = "Last opp profilbilde"; +App::$strings["Upload cover photo"] = "Last opp bannerbilde"; +App::$strings["Find and Connect with others"] = "Finn andre"; +App::$strings["View the directory"] = "Se i katalogen"; +App::$strings["View friend suggestions"] = "Vis venneforslag"; +App::$strings["Manage your connections"] = "Behandle forbindelser"; +App::$strings["Communicate"] = "Kommuniser"; +App::$strings["View your channel homepage"] = "Vis kanalens hjemmeside"; +App::$strings["View your network stream"] = "Vis nettverksstrømmen"; +App::$strings["Documentation"] = "Dokumentasjon"; +App::$strings["Missing Features?"] = "Noe som mangler?"; +App::$strings["Pin apps to navigation bar"] = "Fest apper til navigasjonslinjen"; +App::$strings["Install more apps"] = "Legg til flere apper"; +App::$strings["View public stream"] = ""; +App::$strings["New Member Links"] = "Lenker for nye medlemmer"; +App::$strings["Read mode"] = ""; +App::$strings["Edit mode"] = ""; +App::$strings["Editing"] = ""; +App::$strings["Saving"] = ""; +App::$strings["Saved"] = ""; +App::$strings["Me"] = "Meg"; +App::$strings["Family"] = "Familie"; +App::$strings["Acquaintances"] = "Bekjente"; +App::$strings["All"] = "Alle"; +App::$strings["Refresh"] = "Forny"; +App::$strings["New network activity notifications"] = ""; +App::$strings["Network stream"] = ""; +App::$strings["Mark all notifications read"] = ""; +App::$strings["Show new posts only"] = ""; +App::$strings["Filter by name or address"] = ""; +App::$strings["New home activity notifications"] = ""; +App::$strings["Home stream"] = ""; +App::$strings["Mark all notifications seen"] = ""; +App::$strings["New direct messages notifications"] = ""; +App::$strings["Direct messages stream"] = ""; +App::$strings["New events notifications"] = ""; +App::$strings["View events"] = ""; +App::$strings["Mark all events seen"] = "Merk alle hendelser som sett"; +App::$strings["New Connections"] = "Nye forbindelser"; +App::$strings["New connections notifications"] = ""; +App::$strings["View all connections"] = ""; +App::$strings["New files notifications"] = ""; +App::$strings["View all notices"] = ""; +App::$strings["Mark all notices seen"] = ""; +App::$strings["Registrations"] = ""; +App::$strings["New registrations notifications"] = ""; +App::$strings["Public Stream"] = ""; +App::$strings["New public stream notifications"] = ""; +App::$strings["Public stream"] = ""; +App::$strings["Sorry, you have got no notifications at the moment"] = ""; +App::$strings["This channel is limited to %d tokens"] = ""; +App::$strings["Name and Password are required."] = ""; +App::$strings["Token saved."] = ""; +App::$strings["Use this form to create temporary access identifiers to share things with non-members. These identities may be used in privacy groups and visitors may login using these credentials to access private content."] = ""; +App::$strings["Please select a role for this guest!"] = ""; +App::$strings["Select a role for this guest"] = ""; +App::$strings["Guest Access"] = ""; +App::$strings["Login Name"] = ""; +App::$strings["Login Password"] = ""; +App::$strings["Expires (yyyy-mm-dd)"] = ""; +App::$strings["File not found."] = "Filen ble ikke funnet."; +App::$strings["Can not copy folder into itself."] = ""; +App::$strings["Can not move folder \"%s\" into itself."] = ""; +App::$strings["No such group"] = "Gruppen finnes ikke"; +App::$strings["No such channel"] = "Ingen slik kanal"; +App::$strings["Search Results For:"] = "Søkeresultat for:"; +App::$strings["Reset form"] = ""; +App::$strings["Privacy group is empty"] = "Personverngruppen er tom"; +App::$strings["Privacy group: "] = "Personverngruppe:"; +App::$strings["Not a zip file or zip file corrupted."] = ""; +App::$strings["Import Items"] = "Importer elementer"; +App::$strings["Use this form to import existing posts and content from an export file."] = "Bruk dette skjemaet for å importere eksisterende innlegg og innhold fra en eksportfil."; +App::$strings["File to Upload"] = "Fil som skal lastes opp"; +App::$strings["Imported file is empty."] = "Importert fil er tom."; +App::$strings["Content import completed"] = ""; +App::$strings["Chatroom import completed"] = ""; +App::$strings["Channel calendar import 1/2 completed"] = ""; +App::$strings["Channel calendar import 2/2 completed"] = ""; +App::$strings["Menu import completed"] = ""; +App::$strings["Wiki import completed"] = ""; +App::$strings["Webpages import completed"] = ""; +App::$strings["Nothing to import."] = "Ingenting å importere."; +App::$strings["Unable to download data from old server"] = "Ikke i stand til å laste ned data fra gammel tjener"; +App::$strings["Your service plan only allows %d channels."] = "Din tjenesteplan tillater bare %d kanaler."; +App::$strings["No channel. Import failed."] = "Ingen kanal. Import mislyktes."; +App::$strings["Automatic content and files import was not possible due to API version incompatiblity. Please import content and files manually!"] = ""; +App::$strings["You must be logged in to use this feature."] = "Du må være innlogget for å bruke denne funksjonen."; +App::$strings["Channel Import"] = ""; +App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "Bruk dette skjemaet for å importere en eksisterende kanal fra en annen tjener/hub. Du kan hente inn kanalidentiteten fra den gamle tjeneren/huben via nettverket eller ved å bruke en eksportfil."; +App::$strings["Or provide the old server/hub details"] = "Eller oppgi detaljene fra den gamle tjeneren/hub-en"; +App::$strings["Your old identity address (xyz@example.com)"] = "Din gamle identitetsadresse (xyz@example.com)"; +App::$strings["Your old login email address"] = "Din gamle innloggings e-postadresse"; +App::$strings["Your old login password"] = "Ditt gamle innloggingspassord"; +App::$strings["Import your items and files (limited by available memory)"] = ""; +App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Enten du tar det ene eller det andre valget, vennligst angi om du vil at denne hubben skal være din nye primære adresse, eller om din gamle plassering skal fortsette å ha denne rollen. Du kan lage innlegg fra den ene eller den andre plasseringen, men bare en av dem kan markeres som den primære plasseringen for filer, bilder og media."; +App::$strings["Make this hub my primary location"] = "Gjør dette nettstedet til min primære plassering"; +App::$strings["Move this channel (disable all previous locations)"] = ""; +App::$strings["Use this channel nickname instead of the one provided"] = ""; +App::$strings["Leave blank to keep your existing channel nickname. You will be randomly assigned a similar nickname if either name is already allocated on this site."] = ""; +App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Denne prosessen kan ta flere minutter å fullføre. Vennligst send inn dette skjemaet bare en gang og la siden være åpen inntil den er ferdig."; +App::$strings["You must be logged in to see this page."] = "Du må være innloegget for å se denne siden."; +App::$strings["Update to Hubzilla 5.0 step 2"] = ""; +App::$strings["To complete the update please run"] = ""; +App::$strings["php util/z6convert.php"] = ""; +App::$strings["from the terminal."] = ""; +App::$strings["Email address required"] = ""; +App::$strings["No password provided"] = ""; +App::$strings["Terms of Service not accepted"] = ""; +App::$strings["Invitation code succesfully applied"] = ""; +App::$strings["Invitation not in time or too late"] = ""; +App::$strings["Invitation email failed"] = ""; +App::$strings["Invitation code failed"] = ""; +App::$strings["Invitations are not available"] = ""; +App::$strings["Registration on this hub is by invitation only"] = ""; +App::$strings["New register request"] = ""; +App::$strings["Error creating dId A"] = ""; +App::$strings["Registration on this hub is disabled."] = "Registrering ved dette nettstedet er skrudd av."; +App::$strings["Registration on this hub is by approval only."] = "Registrering ved dette nettstedet skjer på godkjenning."; +App::$strings["Register at another affiliated hub in case when prefered"] = ""; +App::$strings["Registration on this hub is by invitation only."] = ""; +App::$strings["Register at another affiliated hub"] = ""; +App::$strings["Terms of Service"] = "Tjenesteavtale"; +App::$strings["I accept the %s for this website"] = "Jeg godtar %s for dette nettstedet"; +App::$strings["I am over %s years of age and accept the %s for this website"] = ""; +App::$strings["Your email address"] = "Din e-postadresse"; +App::$strings["Optional"] = "Valgfritt"; +App::$strings["Choose a password"] = "Velg et passord"; +App::$strings["Please re-enter your password"] = "Vennligst skriv ditt passord en gang til"; +App::$strings["Please enter your invitation code"] = "Vennligst skriv din invitasjonskode"; +App::$strings["Your name"] = ""; +App::$strings["Real name is preferred"] = ""; +App::$strings["Choose a short nickname"] = "Velg et kort kallenavn"; +App::$strings["Your nickname will be used to create an easy to remember channel address"] = ""; +App::$strings["Why do you want to join this hub?"] = ""; +App::$strings["This will help to review your registration"] = ""; +App::$strings["Registration"] = "Registrering"; +App::$strings["I have an invite code"] = ""; +App::$strings["This site has exceeded the number of allowed daily account registrations."] = ""; +App::$strings["Public access denied."] = "Offentlig tilgang avvist."; +App::$strings["Items tagged with: %s"] = "Elementer merket med: %s"; +App::$strings["Search results for: %s"] = "Søkeresultater for: %s"; +App::$strings["\$Projectname Server - Setup"] = "\$Projectname-tjener - oppsett"; +App::$strings["Could not connect to database."] = "Fikk ikke kontakt med databasen."; +App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Fikk ikke kontakt med det angitte nettstedets URL. Problemet kan muligens skyldes SSL-sertifikatet eller DNS."; +App::$strings["Could not create table."] = "Kunne ikke lage tabellen."; +App::$strings["Your site database has been installed."] = "Databasen til ditt nettsted har blitt installert."; +App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Du må kanskje importere filen \"install/schmea_xxx.sql\" manuelt ved å bruke en databaseklient."; +App::$strings["Please see the file \"install/INSTALL.txt\"."] = "Vennligst les filen \"install/INSTALL.txt\"."; +App::$strings["System check"] = "Systemsjekk"; +App::$strings["Next"] = "Neste"; +App::$strings["Check again"] = "Sjekk igjen"; +App::$strings["Database connection"] = "Databaseforbindelse"; +App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = "For å installere \$Projectname må du oppgi hvordan din database kan kontaktes."; +App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Vennligst kontakt din nettstedstilbyder eller nettstedsadministrator hvis du har spørsmål om disse innstillingene."; +App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Databasen du oppgir nedenfor må finnes på forhånd. Hvis den ikke finnes, vennligst lag den før du fortsetter."; +App::$strings["Database Server Name"] = "Navn på databasetjener"; +App::$strings["Default is 127.0.0.1"] = "Standard er 127.0.0.1"; +App::$strings["Database Port"] = "Databaseport"; +App::$strings["Communication port number - use 0 for default"] = "Kommunikasjonsportnummer - bruk 0 for standard"; +App::$strings["Database Login Name"] = "Database innloggingsnavn"; +App::$strings["Database Login Password"] = "Database innloggingspassord"; +App::$strings["Database Name"] = "Databasenavn"; +App::$strings["Database Type"] = "Databasetype"; +App::$strings["Site administrator email address"] = "E-postadressen til administrator ved nettstedet"; +App::$strings["Your account email address must match this in order to use the web admin panel."] = "Din konto sin e-postadresse må være lik denne for å kunne bruke web-administrasjonspanelet."; +App::$strings["Website URL"] = "Nettstedets URL"; +App::$strings["Please use SSL (https) URL if available."] = "Vennligst bruk SSL (https) URL hvis tilgjengelig."; +App::$strings["Please select a default timezone for your website"] = "Vennligst velg en standard tidssone for ditt nettsted"; +App::$strings["Site settings"] = "Nettstedets innstillinger"; +App::$strings["PHP version 8.0 or greater is required."] = ""; +App::$strings["PHP version"] = ""; +App::$strings["Could not find a command line version of PHP in the web server PATH."] = "Fant ikke en kommandolinjeversjon av PHP i webtjenerens sti (PATH)."; +App::$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."] = "Hvis du ikke har en kommandolinjeversjon av PHP installert på tjeneren, så vil du ikke kunne kjøre bakgrunnshenting via cron."; +App::$strings["PHP executable path"] = "PHP-kjørefilens sti"; +App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Skriv full sti til kjørefilen for PHP. Du kan la denne stå blank for å fortsette installasjonen."; +App::$strings["Command line PHP"] = "Kommandolinje PHP"; +App::$strings["Unable to check command line PHP, as shell_exec() is disabled. This is required."] = ""; +App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Kommandolinjeversjonen av PHP på ditt system har ikke \"register_argc_argv\" påskrudd."; +App::$strings["This is required for message delivery to work."] = "Dette er påkrevd for at meldingslevering skal virke."; +App::$strings["PHP register_argc_argv"] = "PHP register_argc_argv"; +App::$strings["This is not sufficient to upload larger images or files. You should be able to upload at least 4 MB at once."] = ""; +App::$strings["Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once."] = "Den største totale opplastingsstørrelsen du er tillatt er satt til %s. Filstørrelsen på en enkelt fil er satt til å maksimalt være %s. Du har lov til å laste opp inntil %d filer samtidig."; +App::$strings["You can adjust these settings in the server php.ini file."] = ""; +App::$strings["PHP upload limits"] = "PHP opplastingsgrenser"; +App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Feil: \"openssl_pkey_new\"-funksjonen på dette systemet er ikke i stand til å lage krypteringsnøkler"; +App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Ved kjøring på Windows, vennligst se \"http://www.php.net/manual/en/openssl.installation.php\"."; +App::$strings["Generate encryption keys"] = "Lag krypteringsnøkler"; +App::$strings["libCurl PHP module"] = "libCurl PHP-modul"; +App::$strings["GD graphics PHP module"] = "GD graphics PHP-modul"; +App::$strings["OpenSSL PHP module"] = "OpenSSL PHP-modul"; +App::$strings["PDO database PHP module"] = ""; +App::$strings["mb_string PHP module"] = "mb_string PHP-modul"; +App::$strings["xml PHP module"] = "XML PHP modul"; +App::$strings["zip PHP module"] = ""; +App::$strings["Apache mod_rewrite module"] = "Apache mod_rewrite-modul"; +App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Feil: Apache web-tjenerens mod-rewrite-modul er påkrevd, men ikke installert."; +App::$strings["exec"] = ""; +App::$strings["Error: exec is required but is either not installed or has been disabled in php.ini"] = ""; +App::$strings["shell_exec"] = ""; +App::$strings["Error: shell_exec is required but is either not installed or has been disabled in php.ini"] = ""; +App::$strings["Error: libCURL PHP module required but not installed."] = "Feil: libCURL PHP-modul er påkrevd, men er ikke installert."; +App::$strings["Error: GD PHP module with JPEG support or ImageMagick graphics library required but not installed."] = ""; +App::$strings["Error: openssl PHP module required but not installed."] = "Feil: openssl PHP-modul er påkrevd, men er ikke installert."; +App::$strings["Error: PDO database PHP module missing a driver for either mysql or pgsql."] = ""; +App::$strings["Error: PDO database PHP module required but not installed."] = ""; +App::$strings["Error: mb_string PHP module required but not installed."] = "Feil: mb_string PHP-modul er påkrevd, men er ikke installert."; +App::$strings["Error: xml PHP module required for DAV but not installed."] = "Feil: XML PHP modul er påkrevet for DAV, men den er ikke installert."; +App::$strings["Error: zip PHP module required but not installed."] = ""; +App::$strings[".htconfig.php is writable"] = ".htconfig.php kan skrives til"; +App::$strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Web-installasjonen må kunne lage en fil kalt \".htconfig.php\" i toppkatalogen til web-tjeneren din, men dette får den ikke til."; +App::$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."] = "Dette er oftest tillatelsesinnstilling, ettersom webtjeneren kanskje kan skrive til filer i din mappe - selv om du kan."; +App::$strings["Please see install/INSTALL.txt for additional information."] = ""; +App::$strings["This software uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = ""; +App::$strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the top level web folder."] = ""; +App::$strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Vennligst sikre at brukeren som din web-tjeneste kjører som (for eksempel www-data) har skrivetilgang til denne katalogen."; +App::$strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "Merknad: som et sikkerhetstiltak bør du bare gi webtjerenn skrivetilgang til %s - ikke til malfilene (.tpl) som den inneholder."; +App::$strings["%s is writable"] = "%s kan skrives til"; +App::$strings["This software uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the top level web folder"] = ""; +App::$strings["store is writable"] = "lageret kan skrives til"; +App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "SSL-sertifikatet kan ikke kontrolleres. Fiks sertifikatet eller skru av https tilgang til dette nettstedet."; +App::$strings["If you have https access to your website or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"] = "Hvis du har HTTPS-tilgang til ditt nettsted eller tillater forbindelser til TCP port 443 (HTTPS-porten), så MÅ du bruke nettlesergodkjent sertifkater. Du MÅ IKKE bruke egensignert sertifikater!"; +App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Denne begrensningen er tatt inn fordi offentlige innlegg fra deg kan for eksempel inneholde referanser til bilder på din egen hub."; +App::$strings["If your certificate is not recognized, members of other sites (who may themselves have valid certificates) will get a warning message on their own site complaining about security issues."] = "Hvis sertifikatet ditt ikke gjenkjennes, så vil medlemmer på andre nettsteder (som selv kan ha godkjente sertifikater) få en beskjed med en advarsel på deres eget nettsted som klager over sikkerhetsproblemer."; +App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Dette kan gi problemer med brukervennlighet (ikke bare på ditt eget nettsted), så vi må insistere på dette kravet."; +App::$strings["Providers are available that issue free certificates which are browser-valid."] = "Det finnes tilbydere som utsteder gratis sertifikater som er gyldige i nettlesere."; +App::$strings["If you are confident that the certificate is valid and signed by a trusted authority, check to see if you have failed to install an intermediate cert. These are not normally required by browsers, but are required for server-to-server communications."] = ""; +App::$strings["SSL certificate validation"] = "SSL sertifikat-kontroll"; +App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "URL omskriving (rewrite) i .htaccess virker ikke. Sjekk konfigurasjonen til tjeneren din. Test:"; +App::$strings["Url rewrite is working"] = "URL rewrite virker"; +App::$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."] = "Databasekonfigurasjonsfilen \".htconfig.php\" kunne ikke skrives. Vennligst bruk den medfølgende teksten for å lage en konfigurasjonsfil i toppkatalogen av din web-tjener."; +App::$strings["

What next?

"] = ""; +App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "VIKTIG: Du må [manuelt] sette opp en automatisert tidfestet oppgave til bakgrunnshenteren."; +App::$strings["No connections."] = "Ingen forbindelser."; +App::$strings["Visit %s's profile [%s]"] = "Besøk %s sin profil [%s]"; +App::$strings["View Connections"] = "Vis forbindelser"; +App::$strings["Public Hubs"] = "Offentlige huber"; +App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "Nettstedene på listen tillater offentlig registrering i \$Projectname-nettverket. Alle nettsteder i nettverket er forbundet så medlemskap på enhver av dem formidler medlemskap i nettverket som helhet. Noen nettsteder kan kreve abonnement eller tilby lagdelte tjenesteavtaler. Nettstedene selv kan gi tilleggsopplysninger."; +App::$strings["Hub URL"] = "Nettstedets URL"; +App::$strings["Access Type"] = "Tilgangstype"; +App::$strings["Registration Policy"] = "Retningslinjer for registrering"; +App::$strings["Stats"] = "Statistikk"; +App::$strings["Software"] = "Programvare"; +App::$strings["Ratings"] = "Vurderinger"; +App::$strings["Rate"] = "Vurder"; +App::$strings["Posts and comments"] = "Innlegg og kommentarer"; +App::$strings["Only posts"] = "Kun innlegg"; +App::$strings["Malformed message id."] = ""; +App::$strings["Insufficient permissions. Request redirected to profile page."] = "Utilstrekkelig tillatelse. Forespørsel omdirigert til profilsiden."; +App::$strings["You must enable javascript for your browser to be able to view this content."] = ""; +App::$strings["Invalid profile identifier."] = "Ugyldig profil-identifikator."; +App::$strings["Profile Visibility Editor"] = "Endre profilsynlighet"; +App::$strings["Click on a contact to add or remove."] = "Klikk på en kontakt for å legge til eller fjerne."; +App::$strings["Visible To"] = "Synlig for"; +App::$strings["All Connections"] = "Alle forbindelser"; +App::$strings["Privacy group created."] = "Personverngruppen er opprettet."; +App::$strings["Could not create privacy group."] = "Kunne ikke opprette personverngruppen."; +App::$strings["Privacy group updated."] = "Personverngruppen er oppdatert."; +App::$strings["Post to this group by default"] = ""; +App::$strings["Add new contacts to this group by default"] = ""; +App::$strings["Privacy group name"] = ""; +App::$strings["Members are visible to other channels"] = "Medlemmer er synlig for andre kanaler"; +App::$strings["Privacy group removed."] = "Personverngruppen er fjernet."; +App::$strings["Unable to remove privacy group."] = "Ikke i stand til å fjerne personverngruppen."; +App::$strings["Privacy Group: %s"] = ""; +App::$strings["Privacy group name: "] = "Personverngruppens navn:"; +App::$strings["Group members"] = ""; +App::$strings["Not in this group"] = ""; +App::$strings["Click a channel to toggle membership"] = ""; +App::$strings["This page is available only to site members"] = ""; +App::$strings["Welcome"] = "Velkommen"; +App::$strings["What would you like to do?"] = ""; +App::$strings["Please bookmark this page if you would like to return to it in the future"] = ""; +App::$strings["Upload a profile photo"] = ""; +App::$strings["Upload a cover photo"] = ""; +App::$strings["Edit your default profile"] = ""; +App::$strings["View the channel directory"] = ""; +App::$strings["View/edit your channel settings"] = ""; +App::$strings["View the site or project documentation"] = ""; +App::$strings["Visit your channel homepage"] = ""; +App::$strings["View your connections and/or add somebody whose address you already know"] = ""; +App::$strings["View your personal stream (this may be empty until you add some connections)"] = ""; +App::$strings["View the public stream. Warning: this content is not moderated"] = ""; +App::$strings["Name is required"] = "Navn er påkrevd"; +App::$strings["Key and Secret are required"] = "Nøkkel og hemmelighet er påkrevd"; +App::$strings["Update"] = "Oppdater"; +App::$strings["Add application"] = "Legg til program"; +App::$strings["Name of application"] = "Navn på program"; +App::$strings["Automatically generated - change if desired. Max length 20"] = "Automatisk laget - kan endres om du vil. Største lengde 20"; +App::$strings["Redirect"] = "Omdirigering"; +App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "Omdirigerings-URI - la stå tomt hvis ikke ditt program spesifikt krever dette"; +App::$strings["Icon url"] = "Ikon-URL"; +App::$strings["Application not found."] = "Programmet ble ikke funnet."; +App::$strings["Connected OAuth Apps"] = ""; +App::$strings["Client key starts with"] = "Klientnøkkel starter med"; +App::$strings["No name"] = "Ikke noe navn"; +App::$strings["Remove authorization"] = "Fjern tillatelse"; +App::$strings["Page link"] = "Sidelenke"; +App::$strings["Edit Webpage"] = "Endre webside"; +App::$strings["This site is not a directory server"] = "Dette nettstedet er ikke en katalogtjener"; +App::$strings["This directory server requires an access token"] = "Denne katalogtjeneren krever en tilgangsnøkkel (access token)"; +App::$strings["Unable to locate original post."] = "Ikke i stand til å finne opprinnelig innlegg."; +App::$strings["Room not found"] = "Rommet ble ikke funnet"; +App::$strings["Leave Room"] = "Forlat rom"; +App::$strings["Delete Room"] = "Slett rom"; +App::$strings["I am away right now"] = "Jeg er borte akkurat nå"; +App::$strings["I am online"] = "Jeg er online"; +App::$strings["Bookmark this room"] = "Bokmerk dette rommet"; +App::$strings["New Chatroom"] = "Nytt chatrom"; +App::$strings["Chatroom name"] = "Romnavn"; +App::$strings["Expiration of chats (minutes)"] = "Chat utgår (antall minutter)"; +App::$strings["%1\$s's Chatrooms"] = "%1\$s sine chatrom"; +App::$strings["No chatrooms available"] = "Ingen rom tilgjengelige"; +App::$strings["Add Room"] = ""; +App::$strings["Expiration"] = "Utløp"; +App::$strings["min"] = "min"; +App::$strings["Event can not end before it has started."] = "Hendelsen kan ikke slutte før den starter."; +App::$strings["Unable to generate preview."] = "Klarer ikke å lage forhåndsvisning."; +App::$strings["Event title and start time are required."] = "Hendelsestittel og starttidspunkt er påkrevd."; +App::$strings["Event not found."] = "Hendelsen ble ikke funnet."; +App::$strings["Edit event"] = "Endre hendelse"; +App::$strings["Delete event"] = "Slett hendelse"; +App::$strings["Link to source"] = ""; +App::$strings["calendar"] = "kalender"; +App::$strings["Failed to remove event"] = "Mislyktes med å slette hendelse"; +App::$strings["Like/Dislike"] = "Liker/Liker ikke"; +App::$strings["This action is restricted to members."] = "Denne handlingen er begrenset til medlemmer."; +App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Vennligst logg inn med din \$Projectname ID eller registrer deg som et nytt \$Projectname-medlem for å fortsette"; +App::$strings["Invalid request."] = "Ugyldig forespørsel."; +App::$strings["thing"] = "ting"; +App::$strings["Channel unavailable."] = "Kanalen er utilgjengelig."; +App::$strings["Previous action reversed."] = "Forrige handling er omgjort."; +App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s er enig med %2\$s sin %3\$s"; +App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s er ikke enig med %2\$s sin %3\$s"; +App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s avstår fra å mene noe om %2\$s sin %3\$s"; +App::$strings["Action completed."] = "Handling ferdig."; +App::$strings["Thank you."] = "Tusen takk."; +App::$strings["Poke somebody"] = "Dult noen"; +App::$strings["Poke/Prod"] = "Prikke/oppildne"; +App::$strings["Poke, prod or do other things to somebody"] = "Dult, prikk eller gjør andre ting med noen"; +App::$strings["Recipient"] = "Mottaker"; +App::$strings["Choose what you wish to do to recipient"] = "Velg hva du ønsker å gjøre med mottakeren"; +App::$strings["Make this post private"] = "Gjør dette innlegget privat"; +App::$strings["Calendar entries imported."] = "Kalenderhendelsene er importert."; +App::$strings["No calendar entries found."] = "Ingen kalenderhendelser funnet."; +App::$strings["Event title"] = "Tittel på hendelse"; +App::$strings["Start date and time"] = "Startdato og tidspunkt"; +App::$strings["End date and time"] = ""; +App::$strings["Timezone:"] = ""; +App::$strings["Previous"] = "Forrige"; +App::$strings["Today"] = "Idag"; +App::$strings["Month"] = ""; +App::$strings["Week"] = ""; +App::$strings["Day"] = ""; +App::$strings["List month"] = ""; +App::$strings["List week"] = ""; +App::$strings["List day"] = ""; +App::$strings["More"] = ""; +App::$strings["Less"] = ""; +App::$strings["Select calendar"] = ""; +App::$strings["Delete all"] = ""; +App::$strings["Sorry! Editing of recurrent events is not yet implemented."] = ""; +App::$strings["Could not fetch calendar resource. The selected calendar might be disabled."] = ""; +App::$strings["Organisation"] = ""; +App::$strings["Phone"] = ""; +App::$strings["Instant messenger"] = ""; +App::$strings["Website"] = ""; +App::$strings["Address"] = "Adresse"; +App::$strings["Note"] = ""; +App::$strings["Add Contact"] = ""; +App::$strings["Add Field"] = ""; +App::$strings["P.O. Box"] = ""; +App::$strings["Additional"] = ""; +App::$strings["Street"] = ""; +App::$strings["Locality"] = ""; +App::$strings["Region"] = ""; +App::$strings["ZIP Code"] = ""; +App::$strings["Country"] = "Land"; +App::$strings["Default Calendar"] = ""; +App::$strings["Default Addressbook"] = ""; +App::$strings["Remote privacy information not available"] = ""; +App::$strings["__ctx:acl__ Profile"] = ""; +App::$strings["Privacy group"] = ""; +App::$strings["Click to copy link to this ressource for guest %s to clipboard"] = ""; +App::$strings["Link copied"] = ""; +App::$strings["Access"] = ""; +App::$strings["Empty post discarded."] = "Tomt innlegg forkastet."; +App::$strings["Duplicate post suppressed."] = "Duplikat av innlegg forhindret."; +App::$strings["System error. Post not saved."] = "Systemfeil. Innlegg ble ikke lagret."; +App::$strings["Your comment is awaiting approval."] = ""; +App::$strings["Unable to obtain post information from database."] = "Ikke i stand til å få tak i informasjon om innlegg fra databasen."; +App::$strings["You have reached your limit of %1$.0f top level posts."] = "Du har nådd din grense på %1$.0f startinnlegg."; +App::$strings["You have reached your limit of %1$.0f webpages."] = "Du har nådd din grense på %1$.0f websider."; +App::$strings["Menu not found."] = "Menyen ble ikke funnet."; +App::$strings["Unable to create element."] = "Klarer ikke å lage element."; +App::$strings["Unable to update menu element."] = "Ikke i stand til å oppdatere menyelement."; +App::$strings["Unable to add menu element."] = "Ikke i stand til å legge til menyelement."; +App::$strings["Not found."] = "Ikke funnet."; +App::$strings["Menu Item Permissions"] = "Menyelement Tillatelser"; +App::$strings["(click to open/close)"] = "(klikk for å åpne/lukke)"; +App::$strings["Link Name"] = "Lenkenavn"; +App::$strings["Link or Submenu Target"] = "Lenke- eller undermeny-mål"; +App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Skriv URL-en til lenken eller velg et menynavn for å lage en undermeny"; +App::$strings["Use magic-auth if available"] = "Bruk magic-autent hvis mulig"; +App::$strings["Open link in new window"] = "Åpne lenke i nytt vindu"; +App::$strings["Order in list"] = "Ordne i liste"; +App::$strings["Higher numbers will sink to bottom of listing"] = "Høyere tall vil synke mot bunnen av listen"; +App::$strings["Submit and finish"] = "Send inn og avslutt"; +App::$strings["Submit and continue"] = "Send inn og fortsett"; +App::$strings["Menu:"] = "Meny:"; +App::$strings["Link Target"] = "Lenkemål"; +App::$strings["Edit menu"] = "Endre meny"; +App::$strings["Edit element"] = "Endre element"; +App::$strings["Drop element"] = "Slett element"; +App::$strings["New element"] = "Nytt element"; +App::$strings["Edit this menu container"] = "Endre denne menybeholderen"; +App::$strings["Add menu element"] = "Legg til menyelement"; +App::$strings["Delete this menu item"] = "Slett dette menyelementet"; +App::$strings["Edit this menu item"] = "Endre dette menyelementet"; +App::$strings["Menu item not found."] = "Menyelement ble ikke funnet."; +App::$strings["Menu item deleted."] = "Menyelement slettet."; +App::$strings["Menu item could not be deleted."] = "Menyelement kunne ikke bli slettet."; +App::$strings["Edit Menu Element"] = "Endre menyelement"; +App::$strings["Link text"] = "Lenketekst"; +App::$strings["vcard"] = ""; +App::$strings["Files: shared with me"] = "Filer: delt med meg"; +App::$strings["NEW"] = "NY"; +App::$strings["Last Modified"] = "Sist endret"; +App::$strings["Remove all files"] = "Fjern alle filer"; +App::$strings["Remove this file"] = "Fjern denne filen"; +App::$strings["Documentation Search"] = "Søk i dokumentasjon"; +App::$strings["Members"] = "Medlemmer"; +App::$strings["Administrators"] = ""; +App::$strings["Developers"] = ""; +App::$strings["Tutorials"] = ""; +App::$strings["\$Projectname Documentation"] = "\$Projectname dokumentasjon"; +App::$strings["Contents"] = ""; +App::$strings["Import Webpage Elements"] = ""; +App::$strings["Import selected"] = ""; +App::$strings["Export Webpage Elements"] = ""; +App::$strings["Export selected"] = ""; +App::$strings["Actions"] = "Handlinger"; +App::$strings["Page Link"] = "Sidelenke"; +App::$strings["Page Title"] = "Sidetittel"; +App::$strings["Created"] = "Laget"; +App::$strings["Edited"] = "Endret"; +App::$strings["Invalid file type."] = ""; +App::$strings["Error opening zip file"] = ""; +App::$strings["Invalid folder path."] = ""; +App::$strings["No webpage elements detected."] = ""; +App::$strings["Import complete."] = ""; +App::$strings["Deprecated!"] = ""; +App::$strings["Permission Denied."] = "Tillatelse avvist."; +App::$strings["Edit file permissions"] = "Endre filtillatelser"; +App::$strings["Include all files and sub folders"] = "Inkluder alle filer og undermapper"; +App::$strings["Return to file list"] = "Gå tilbake til filoversikten"; +App::$strings["Copy/paste this code to attach file to a post"] = "Kopier og lim inn denne koden for å legge til filen i et innlegg"; +App::$strings["Copy/paste this URL to link file from a web page"] = "Kopier og lim inn denne URL-en for å lenke til filen fra en webside"; +App::$strings["Share this file"] = "Del denne filen"; +App::$strings["Show URL to this file"] = "Vis URLen til denne filen"; +App::$strings["Show in your contacts shared folder"] = ""; +App::$strings["Tag removed"] = "Merkelapp fjernet"; +App::$strings["Remove Item Tag"] = "Fjern merkelapp fra element"; +App::$strings["Select a tag to remove: "] = "Velg merkelapp å fjerne:"; +App::$strings["Continue"] = "Fortsett"; +App::$strings["Premium Channel Setup"] = "Premiumkanal-oppsett"; +App::$strings["Enable premium channel connection restrictions"] = "Slå på restriksjoner for forbindelse med premiumkanal"; +App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Vennligst skriv dine restriksjoner og betingelser, slik som PayPal-kvittering, retningslinjer for bruk, og så videre."; +App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Denne kanalen kan kreve ytterligere steg og bekreftelse av følgende betingelser før tilkobling:"; +App::$strings["Potential connections will then see the following text before proceeding:"] = "Potensielle forbindelser vil da se følgende tekst før de går videre:"; +App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Ved å fortsette bekrefter jeg at jeg har oppfylt alle instruksjoner gitt på denne siden."; +App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Ingen spesifikke instruksjoner er gitt av kanaleieren.)"; +App::$strings["Restricted or Premium Channel"] = "Begrenset kanal eller premiumkanal"; +App::$strings["Not found"] = ""; +App::$strings["Unknown error"] = ""; +App::$strings["Post repeated"] = ""; +App::$strings["network"] = "nettverk"; +App::$strings["Item is not editable"] = "Elementet kan ikke endres"; +App::$strings["Edit post"] = "Endre innlegg"; +App::$strings["Post not found."] = ""; +App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s merket %3\$s til %2\$s med %4\$s"; +App::$strings["Unknown App"] = ""; +App::$strings["Authorize"] = ""; +App::$strings["Do you authorize the app %s to access your channel data?"] = ""; +App::$strings["Deny"] = "Avslå"; +App::$strings["Queue Statistics"] = "Køstatistikk"; +App::$strings["Total Entries"] = "Totalt antall oppføringer"; +App::$strings["Priority"] = "Prioritet"; +App::$strings["Destination URL"] = "Mål-URL"; +App::$strings["Mark hub permanently offline"] = "Merk hub som permanent offline"; +App::$strings["Retry delivery to this hub"] = ""; +App::$strings["Empty queue for this hub"] = "Tøm køen for denne hubben"; +App::$strings["Last known contact"] = "Siste kjente kontakt"; +App::$strings["Theme settings updated."] = "Temainnstillinger er oppdatert."; +App::$strings["No themes found."] = "Ingen temaer er funnet."; +App::$strings["Disable"] = "Skru av"; +App::$strings["Enable"] = "Skru på"; +App::$strings["Screenshot"] = "Skjermbilde"; +App::$strings["Administration"] = "Administrasjon"; +App::$strings["Toggle"] = "Skru av og på"; +App::$strings["Author: "] = "Forfatter:"; +App::$strings["Maintainer: "] = "Vedlikeholder:"; +App::$strings["[Experimental]"] = "[Eksperimentelt]"; +App::$strings["[Unsupported]"] = "[Ingen støtte]"; +App::$strings["Lock feature %s"] = "Lås funksjon %s"; +App::$strings["Manage Additional Features"] = "Håndter tilleggsfunksjoner"; +App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = "Ufiltrert HTML er i utgangspunktet tillatt i innebygde media. Dette er en sikkerhetsrisiko."; +App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = "Det anbefales at man kun tillater ufiltrert HTML fra følgende nettsteder:"; +App::$strings["https://youtube.com/
https://www.youtube.com/
https://youtu.be/
https://vimeo.com/
https://soundcloud.com/
"] = "https://youtube.com/
https://www.youtube.com/
https://youtu.be/
https://vimeo.com/
https://soundcloud.com/
"; +App::$strings["All other embedded content will be filtered, unless embedded content from that site is explicitly blocked."] = "Alt annet innebygget innhold vil bli filtrert, med mindre innebygget innhold fra den aktuelle siden eksplisitt er blokkert."; +App::$strings["Block public"] = "Blokker offentlig tilgang"; +App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = "Kryss av for å blokkere tilgang til alle personlige sider som ellers ville vært offentlig tilgjengelige på dette nettstedet med mindre du er logget inn."; +App::$strings["Provide a cloud root directory"] = ""; +App::$strings["The cloud root directory lists all channel names which provide public files"] = ""; +App::$strings["Show total disk space available to cloud uploads"] = ""; +App::$strings["Set \"Transport Security\" HTTP header"] = "Slå på \"Transport Security\" i HTTP meldingshodet"; +App::$strings["Set \"Content Security Policy\" HTTP header"] = "Sett \"Content Security Policy\" i HTTP meldingshodet"; +App::$strings["Allowed email domains"] = "Tillate e-postdomener"; +App::$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"] = "Kommaseparert liste med domener som er tillatt i e-postadresser ved registrering på dette nettstedet. Jokertegn er akseptert. Tomt betyr at alle domener er tillatt"; +App::$strings["Not allowed email domains"] = "Ikke tillatte e-postdomener"; +App::$strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "Kommaseparert liste med domener som ikke er tillatt i e-postadresser ved registrering på dette nettstedet. Jokertegn er akseptert. Tomt betyr at alle domener er tillatt, med mindre tillate domener er blitt definert."; +App::$strings["Allow communications only from these sites"] = "Tillat kommunikasjon med bare disse nettstedene"; +App::$strings["One site per line. Leave empty to allow communication from anywhere by default"] = "Et nettsted per linje. La det stå tomt for å tillate kommunikasjon med ethvert nettsted som standard"; +App::$strings["Block communications from these sites"] = "Blokker kommunikasjon fra disse nettstedene"; +App::$strings["Allow communications only from these channels"] = "Tillat kommunikasjon med bare disse kanalene"; +App::$strings["One channel (hash) per line. Leave empty to allow from any channel by default"] = "En kanal (hash) per linje. La det stå tomt for å tillate enhver kanal som standard"; +App::$strings["Block communications from these channels"] = "Blokker kommunikasjon fra disse kanalene"; +App::$strings["Only allow embeds from secure (SSL) websites and links."] = "Kun tillat innebygget innhold fra sikre (HTTPS) nettsteder og lenker."; +App::$strings["Allow unfiltered embedded HTML content only from these domains"] = "Kun tillat ufiltrert innebygget innhold fra disse domenene"; +App::$strings["One site per line. By default embedded content is filtered."] = "Ett nettsted pr. linje. Innebygget innhold er filtrert i utgangsounktet."; +App::$strings["Block embedded HTML from these domains"] = "Blokker innbygget HTML fra disse domenene"; +App::$strings["Allow SVG thumbnails in file browser"] = ""; +App::$strings["WARNING: SVG images may contain malicious code."] = ""; +App::$strings["Allow embedded (inline) PDF files"] = ""; +App::$strings["%s account blocked/unblocked"] = array( + 0 => "%s konto blokkert/ikke blokkert lenger", + 1 => "%s kontoer blokkert/ikke blokkert lenger", +); +App::$strings["%s account deleted"] = array( + 0 => "%s konto slettet", + 1 => "%s kontoer slettet", +); +App::$strings["Account not found"] = "Kontoen ble ikke funnet"; +App::$strings["Account '%s' blocked"] = "Kontoen '%s' blokkert"; +App::$strings["Account '%s' unblocked"] = "Kontoen '%s' er ikke blokkert lenger"; +App::$strings["Unverified"] = ""; +App::$strings["Expired"] = ""; +App::$strings["Show verified registrations"] = ""; +App::$strings["Show all registrations"] = ""; +App::$strings["Select toggle"] = ""; +App::$strings["Deny selected"] = ""; +App::$strings["Approve selected"] = ""; +App::$strings["All registrations"] = ""; +App::$strings["Verified registrations waiting for approval"] = ""; +App::$strings["Request date"] = "Dato for forespørsel"; +App::$strings["Requests"] = ""; +App::$strings["No registrations available"] = ""; +App::$strings["No verified registrations available"] = ""; +App::$strings["Block"] = "Blokker"; +App::$strings["Unblock"] = "Ikke blokker lenger"; +App::$strings["Verified"] = ""; +App::$strings["Not yet verified"] = ""; +App::$strings["ID"] = "ID"; +App::$strings["All channels"] = ""; +App::$strings["Register date"] = "Registreringsdato"; +App::$strings["Last login"] = "Siste innlogging"; +App::$strings["Expires"] = "Utløper"; +App::$strings["Service class"] = ""; +App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Valgte kontoer vil bli slettet!\\n\\nAlt disse kontoene har lagt inn på dette nettstedet vil bli slettet permanent!\\n\\nEr du sikker på at du vil slette disse valgte kontoene?"; +App::$strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Kontoen {0} vl bli slettet!\\n\\nAlt denne kontoen har lagt inn på dette nettstedet vil bli slettet permanent!\\n\\nEr du sikker på at du vil slette denne kontoen?"; +App::$strings["Message"] = "Melding"; +App::$strings["Invalid input"] = ""; +App::$strings["Errors"] = ""; +App::$strings["Site settings updated."] = "Nettstedsinnstillinger er oppdatert."; +App::$strings["%s - (Incompatible)"] = ""; +App::$strings["mobile"] = "mobil"; +App::$strings["experimental"] = "eksperimentell"; +App::$strings["unsupported"] = "ikke støttet"; +App::$strings["Yes - with approval"] = "Ja - med godkjenning"; +App::$strings["My site is not a public server"] = "Mitt nettsted er ikke en offentlig tjeneste"; +App::$strings["My site has paid access only"] = "Mitt nettsted gir kun tilgang mot betaling"; +App::$strings["My site has free access only"] = "Mitt nettsted har kun gratis tilgang"; +App::$strings["My site offers free accounts with optional paid upgrades"] = "Mitt nettsted tilbyr gratis konto med valgfri oppgradering til betalt tjeneste"; +App::$strings["Default permission role for new accounts"] = ""; +App::$strings["This role will be used for the first channel created after registration."] = ""; +App::$strings["Minute(s)"] = ""; +App::$strings["Hour(s)"] = ""; +App::$strings["Day(s)"] = ""; +App::$strings["Week(s)"] = ""; +App::$strings["Month(s)"] = ""; +App::$strings["Year(s)"] = ""; +App::$strings["Register verification delay"] = ""; +App::$strings["Time to wait before a registration can be verified"] = ""; +App::$strings["duration up from now"] = ""; +App::$strings["Register verification expiration time"] = ""; +App::$strings["Time before an unverified registration will expire"] = ""; +App::$strings["File upload"] = "Last opp fil"; +App::$strings["Policies"] = "Retningslinjer"; +App::$strings["Banner/Logo"] = "Banner/Logo"; +App::$strings["Unfiltered HTML/CSS/JS is allowed"] = ""; +App::$strings["Administrator Information"] = "Administratorinformasjon"; +App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Kontaktinformasjon til nettstedsadministratorer. Vises på siteinfo-siden. BBCode kan brukes her"; +App::$strings["Site Information"] = ""; +App::$strings["Publicly visible description of this site. Displayed on siteinfo page. BBCode can be used here"] = ""; +App::$strings["System language"] = "Systemspråk"; +App::$strings["System theme"] = "Systemtema"; +App::$strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Standard systemtema - kan overstyres av brukerprofiler - endre temainnstillinger"; +App::$strings["Allow Feeds as Connections"] = "Tillat strømmer som forbindelser"; +App::$strings["(Heavy system resource usage)"] = "(Tung bruk av systemressurser)"; +App::$strings["Maximum image size"] = "Største bildestørrelse"; +App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Største størrelse i bytes for opplastede bilder. Standard er 0, som betyr ubegrenset."; +App::$strings["Minimum age"] = ""; +App::$strings["Minimum age (in years) for who may register on this site."] = ""; +App::$strings["Which best describes the types of account offered by this hub?"] = "Hvilket alternativ beskriver best hva slags kontotype som tilbys av dette nettstedet/denne hubben?"; +App::$strings["This is displayed on the public server site list."] = ""; +App::$strings["Register text"] = "Registreringstekst"; +App::$strings["This text will be displayed prominently at the registration page"] = ""; +App::$strings["Does this site allow new member registration?"] = "Tillater dette nettstedet registrering av nye medlemmer?"; +App::$strings["Configure the registration open days/hours"] = ""; +App::$strings["Empty or '-:-' value will keep registration open 24/7 (default)"] = ""; +App::$strings["Weekdays and hours must be separated by colon ':', From-To ranges with a dash `-` example: 1:800-1200"] = ""; +App::$strings["Weekday:Hour pairs must be separated by space ' ' example: 1:900-1700 2:900-1700"] = ""; +App::$strings["From-To ranges must be separated by comma ',' example: 1:800-1200,1300-1700 or 1-2,4-5:900-1700"] = ""; +App::$strings["Advanced examples:"] = ""; +App::$strings["or"] = "eller"; +App::$strings["Check your configuration"] = ""; +App::$strings["Max account registrations per day"] = ""; +App::$strings["Unlimited if zero or no value - default 50"] = ""; +App::$strings["Max account registrations from same IP"] = ""; +App::$strings["Unlimited if zero or no value - default 3"] = ""; +App::$strings["Auto channel create"] = ""; +App::$strings["If disabled the channel will be created in a separate step during the registration process"] = ""; +App::$strings["Require invite code"] = ""; +App::$strings["Allow invite code"] = ""; +App::$strings["Require email address"] = ""; +App::$strings["The provided email address will be verified (recommended)"] = ""; +App::$strings["Abandon account after x days"] = ""; +App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Vil ikke kaste bort systemressurser på å spørre eksterne nettsteder etter forlatte kontoer. Skriv 0 for å ikke sette noen tidsgrense."; +App::$strings["Site homepage to show visitors (default: login box)"] = "Nettstedets hjemmeside som vises til besøkende (standard: innloggingsboks)"; +App::$strings["example: 'pubstream' to show public stream, 'page/sys/home' to show a system webpage called 'home' or 'include:home.html' to include a file."] = ""; +App::$strings["Preserve site homepage URL"] = "Bevar URL-en til nettstedets hjemmeside"; +App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Presenter hjemmesiden til nettstedet i en ramme fra den opprinnelige plasseringen i stedet for å omdirigere"; +App::$strings["Allowed friend domains"] = "Tillatte vennedomener"; +App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Kommaseparert liste over domener som har lov til å etablere vennskap med dette nettstedet. Jokertegn er akseptert. Tøm for å tillate alle domener."; +App::$strings["Force publish"] = "Tving publisering"; +App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "Kryss av for å tvinge alle profiler på dette nettstedet til å bli oppført i nettstedet sin katalog."; +App::$strings["Import Public Streams"] = "Importer offentlige innholdsstrømmer"; +App::$strings["Import and allow access to public content pulled from other sites. Warning: this content is unmoderated."] = "Importer og gi tilgang til offentlig innhold trukket inn fra andre nettsteder. Advarsel: dette innholdet er ikke moderert."; +App::$strings["Site only Public Streams"] = ""; +App::$strings["Allow access to public content originating only from this site if Imported Public Streams are disabled."] = ""; +App::$strings["Allow anybody on the internet to access the Public streams"] = ""; +App::$strings["Disable to require authentication before viewing. Warning: this content is unmoderated."] = ""; +App::$strings["Only import Public stream posts with this text"] = ""; +App::$strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = "ord per linje eller #merkelapper eller /mønster/ eller språk lang=xx, la stå blankt for å importere alle innlegg"; +App::$strings["Do not import Public stream posts with this text"] = ""; +App::$strings["Login on Homepage"] = "Logg inn på hjemmesiden"; +App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = "Presenter en innloggingsboks til besøkende på hjemmesiden hvis ikke noe annet innhold har blitt konfigurert."; +App::$strings["Enable context help"] = "Slå på kontekstuell hjelp"; +App::$strings["Display contextual help for the current page when the help button is pressed."] = "Vis kontekstuell hjelp for den gjeldende siden når du klikker på hjelpeknappen."; +App::$strings["Reply-to email address for system generated email."] = ""; +App::$strings["Sender (From) email address for system generated email."] = ""; +App::$strings["Name of email sender for system generated email."] = ""; +App::$strings["Directory Server URL"] = "Katalogtjener URL"; +App::$strings["Default directory server"] = "Standard katalogtjener"; +App::$strings["Enable SSE Notifications"] = ""; +App::$strings["If disabled, traditional polling will be used. Warning: this setting might not be suited for shared hosting"] = ""; +App::$strings["Proxy user"] = "Brukernavn mellomtjener"; +App::$strings["Proxy URL"] = "Mellomtjener URL"; +App::$strings["Network timeout"] = "Nettverk tidsavbrudd"; +App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Verdien i sekunder. Skriv 0 for ubegrenset (ikke anbefalt)."; +App::$strings["Delivery interval"] = "Leveringsinterval"; +App::$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."] = "Forsink leveringsprosessene i bakgrunnen med dette antall sekunder for å redusere systembelastningen. Anbefaling: 4-5 for delte tjenere, 2-3 for virtuelle tjenere, 0-1 for større dedikerte tjenere."; +App::$strings["Deliveries per process"] = "Leveranser per prosess"; +App::$strings["Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5."] = "Antall leveranser som forsøkes i en enkelt operativsystemprosess. Juster om nødvendig for å fininnstille systemets yteevne. Anbefaling: 1-5."; +App::$strings["Queue Threshold"] = ""; +App::$strings["Always defer immediate delivery if queue contains more than this number of entries."] = ""; +App::$strings["Poll interval"] = "Spørreintervall"; +App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Forsink spørreprosessene i bakgrunnen med dette antall sekunder for å redusere systembelastningen. Hvis 0, bruk dette leveringsintervallet."; +App::$strings["Path to ImageMagick convert program"] = ""; +App::$strings["If set, use this program to generate photo thumbnails for huge images ( > 4000 pixels in either dimension), otherwise memory exhaustion may occur. Example: /usr/bin/convert"] = ""; +App::$strings["Maximum Load Average"] = "Største belastningsgjennomsnitt"; +App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Største systembelastning før leverings- og spørreprosesser blir utsatt - standard 50."; +App::$strings["Expiration period in days for imported (grid/network) content"] = "Antall dager før importert innhold (nettet/nettverk) utgår"; +App::$strings["0 for no expiration of imported content"] = "0 dersom importert innhold ikke skal utgå"; +App::$strings["Do not expire any posts which have comments less than this many days ago"] = ""; +App::$strings["Public servers: Optional landing (marketing) webpage for new registrants"] = ""; +App::$strings["Create this page first. Default is %s/register"] = ""; +App::$strings["Page to display after creating a new channel"] = ""; +App::$strings["Default: profiles"] = ""; +App::$strings["Optional: site location"] = ""; +App::$strings["Region or country"] = ""; +App::$strings["Invalid 24h time value (hhmm/hmm)"] = ""; +App::$strings["Log settings updated."] = "Logginnstillinger er oppdatert."; +App::$strings["Clear"] = "Tøm"; +App::$strings["Debugging"] = "Feilsøking"; +App::$strings["Log file"] = "Loggfil"; +App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = ""; +App::$strings["Log level"] = "Loggnivå"; +App::$strings["%s channel censored/uncensored"] = array( + 0 => "%s kanal er sensurert/ikke sensurert lenger", + 1 => "%s kanaler er sensurert/ikke sensurert lenger", +); +App::$strings["%s channel code allowed/disallowed"] = array( + 0 => "%s kanal med kode tillatt/ikke tillatt", + 1 => "%s kanaler med kode tillatt/ikke tillatt", +); +App::$strings["%s channel deleted"] = array( + 0 => "%s kanal slettet", + 1 => "%s kanaler slettet", +); +App::$strings["Channel not found"] = "Kanalen ble ikke funnet"; +App::$strings["Channel '%s' deleted"] = "Kanalen '%s' er slettet"; +App::$strings["Channel '%s' censored"] = "Kanalen '%s' er sensurert"; +App::$strings["Channel '%s' uncensored"] = "Kanalen '%s' er ikke sensurert lenger"; +App::$strings["Channel '%s' code allowed"] = "Kanal '%s' kode tillatt"; +App::$strings["Channel '%s' code disallowed"] = "Kanal '%s' kode ikke tillatt"; +App::$strings["select all"] = "velg alle"; +App::$strings["Censor"] = "Sensurer"; +App::$strings["Uncensor"] = "Ikke sensurer lenger"; +App::$strings["Allow Code"] = "Tillat kode"; +App::$strings["Disallow Code"] = "Ikke tillat kode"; +App::$strings["UID"] = "UID"; +App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Valgte kanaler vil bli slettet!\\n\\nAlt innhold som er lagt inn i disse kanalene på dette nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette disse kanalene med alt innhold?"; +App::$strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "Kanalen {0} vil bli slettet!\\n\\nAlt innhold som er lagt inn i denne kanalen på dettet nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette denne kanalen med alt innhold?"; +App::$strings["Password changed for account %d."] = ""; +App::$strings["Account settings updated."] = ""; +App::$strings["Account not found."] = ""; +App::$strings["Account Edit"] = ""; +App::$strings["New Password"] = ""; +App::$strings["New Password again"] = ""; +App::$strings["Account language (for emails)"] = ""; +App::$strings["New Profile Field"] = "Nytt profilfelt"; +App::$strings["Field nickname"] = "Feltets kallenavn"; +App::$strings["System name of field"] = "Systemnavnet til feltet"; +App::$strings["Input type"] = "Inndata-type"; +App::$strings["Field Name"] = "Feltnavn"; +App::$strings["Label on profile pages"] = "Merkelapp på profilsider"; +App::$strings["Help text"] = "Hjelpetekst"; +App::$strings["Additional info (optional)"] = "Tilleggsinformasjon (valgfritt)"; +App::$strings["Field definition not found"] = "Feltdefinisjonen ble ikke funnet"; +App::$strings["Edit Profile Field"] = "Endre profilfelt"; +App::$strings["Basic Profile Fields"] = "Grunnleggende profilfelter"; +App::$strings["Advanced Profile Fields"] = "Utvidede profilfelter"; +App::$strings["(In addition to basic fields)"] = "(I tillegg til grunnleggende felt)"; +App::$strings["All available fields"] = "Alle tilgjengelige felt"; +App::$strings["Custom Fields"] = ""; +App::$strings["Create Custom Field"] = "Legg til egendefinert felt"; +App::$strings["Update has been marked successful"] = "Oppdateringen har blitt merket som en suksess"; +App::$strings["Verification of update %s failed. Check system logs."] = ""; +App::$strings["Update %s was successfully applied."] = "Oppdatering %s ble gjennomført med suksess."; +App::$strings["Verifying update %s did not return a status. Unknown if it succeeded."] = ""; +App::$strings["Update %s does not contain a verification function."] = ""; +App::$strings["Update function %s could not be found."] = "Oppdatering av funksjon %s kunne ikke finnes."; +App::$strings["Executing update procedure %s failed. Check system logs."] = ""; +App::$strings["Update %s did not return a status. It cannot be determined if it was successful."] = ""; +App::$strings["Failed Updates"] = "Mislykkede oppdateringer"; +App::$strings["Mark success (if update was manually applied)"] = "Marker suksess (hvis oppdateringen ble gjennomført manuelt)"; +App::$strings["Attempt to verify this update if a verification procedure exists"] = ""; +App::$strings["Attempt to execute this update step automatically"] = "Prøv å gjennomføre dette oppdateringstrinnet automatisk"; +App::$strings["No failed updates."] = "Ingen mislykkede oppdateringer."; +App::$strings["Plugin %s disabled."] = "Tilleggsfunksjonen %s er avskrudd."; +App::$strings["Plugin %s enabled."] = "Tilleggsfunksjonen %s er påskrudd."; +App::$strings["Minimum project version: "] = "Minimum prosjektversjon:"; +App::$strings["Maximum project version: "] = "Maksimum prosjektversjon:"; +App::$strings["Minimum PHP version: "] = "Minimum PHP-versjon:"; +App::$strings["Compatible Server Roles: "] = ""; +App::$strings["Requires: "] = "Krever:"; +App::$strings["Disabled - version incompatibility"] = "Skrudd av - versjonsinkompatibilitet"; +App::$strings["Enter the public git repository URL of the addon repo."] = ""; +App::$strings["Addon repo git URL"] = ""; +App::$strings["Custom repo name"] = ""; +App::$strings["(optional)"] = ""; +App::$strings["Download Addon Repo"] = ""; +App::$strings["Install new repo"] = ""; +App::$strings["Install"] = "Installer"; +App::$strings["Manage Repos"] = ""; +App::$strings["Installed Addon Repositories"] = ""; +App::$strings["Install a New Addon Repository"] = ""; +App::$strings["Switch branch"] = ""; +App::$strings["Installed Apps"] = ""; +App::$strings["Manage Apps"] = ""; +App::$strings["Create Custom App"] = ""; +App::$strings["Some blurb about what to do when you're new here"] = "En standardtekst om hva du bør gjøre som ny her"; +App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Fjerning av kanaler er ikke tillatt innen 48 timer etter endring av kontopassordet."; +App::$strings["Remove Channel"] = "Fjern kanal"; +App::$strings["WARNING: "] = "ADVARSEL:"; +App::$strings["This channel will be permanently removed. "] = ""; +App::$strings["This action can not be undone!"] = ""; +App::$strings["Please enter your password for verification:"] = "Vennligst skriv ditt passord for å få bekreftelse:"; +App::$strings["Email resent"] = ""; +App::$strings["Email resend failed"] = ""; +App::$strings["Verification successful"] = ""; +App::$strings["Account successfull created"] = ""; +App::$strings["Channel successfull created"] = ""; +App::$strings["Automatic channel creation failed. Please create a channel."] = ""; +App::$strings["Account creation error"] = ""; +App::$strings["Verify failed"] = ""; +App::$strings["Token verification failed"] = ""; +App::$strings["Request not inside time frame"] = ""; +App::$strings["Identity unknown"] = ""; +App::$strings["dId2 mistaken"] = ""; +App::$strings["Your Registration ID"] = ""; +App::$strings["Registration verification"] = ""; +App::$strings["Hold on, you can start verification in"] = ""; +App::$strings["Please remember your verification token for ID"] = ""; +App::$strings["Token validity"] = ""; +App::$strings["Resend email"] = ""; +App::$strings["Registration status"] = ""; +App::$strings["Verification successful!"] = ""; +App::$strings["Your login ID is"] = ""; +App::$strings["After your account has been approved by our administrator you will be able to login with your login ID and your provided password."] = ""; +App::$strings["Registration request revoked"] = ""; +App::$strings["Sorry for any inconvience. Thank you for your response."] = ""; +App::$strings["Please enter your verification token for ID"] = ""; +App::$strings["Please check your email!"] = ""; +App::$strings["Verification token"] = ""; +App::$strings["ID expired"] = ""; +App::$strings["You will require the verification token for ID"] = ""; +App::$strings["Unknown or expired ID"] = ""; +App::$strings["dId2 malformed"] = ""; +App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Du har laget %1$.0f av %2$.0f tillatte kanaler."; +App::$strings["Create a new channel"] = "Lag en ny kanal"; +App::$strings["Current Channel"] = "Gjeldende kanal"; +App::$strings["Switch to one of your channels by selecting it."] = "Bytt til en av dine kanaler ved å velge den."; +App::$strings["Default Channel"] = "Standardkanal"; +App::$strings["Make Default"] = "Gjør til standard"; +App::$strings["%d new introductions"] = "%d nye introduksjoner"; +App::$strings["Delegated Channel"] = "Delegert kanal"; +App::$strings["Layout not found"] = ""; +App::$strings["This template does not support pdledi_gui (no content regions defined)"] = ""; +App::$strings["Main page content"] = ""; +App::$strings["The main page content can not be edited!"] = ""; +App::$strings["toggle full screen mode"] = ""; +App::$strings["Away"] = "Borte"; +App::$strings["Online"] = "Online"; +App::$strings["Contact role deleted."] = ""; +App::$strings["Permission category name is required."] = ""; +App::$strings["Contact role saved."] = ""; +App::$strings["Role to assign affected contacts and default role to"] = ""; +App::$strings["Role to assign affected contacts to"] = ""; +App::$strings["Assign this role to"] = ""; +App::$strings["All my contacts"] = ""; +App::$strings["Automatically assign this role to new contacts"] = ""; +App::$strings["Contact Roles"] = ""; +App::$strings["Role name"] = ""; +App::$strings["System role - not editable"] = ""; +App::$strings["Deleting"] = ""; +App::$strings["inherited"] = "arvet"; +App::$strings["Role Permissions"] = ""; +App::$strings["Some permissions may be inherited from your channel role, which have higher priority than contact role settings."] = ""; +App::$strings["Token verification failed."] = ""; +App::$strings["Email verification resent"] = ""; +App::$strings["Unable to resend email verification message."] = ""; +App::$strings["Permissions denied."] = "Tillatelse avvist."; +App::$strings["item"] = ""; +App::$strings["Change Order of Pinned Navbar Apps"] = ""; +App::$strings["Change Order of App Tray Apps"] = ""; +App::$strings["Use arrows to move the corresponding app left (top) or right (bottom) in the navbar"] = ""; +App::$strings["Use arrows to move the corresponding app up or down in the app tray"] = ""; +App::$strings["Unable to find your hub."] = "Ikke i stand til å finne hubben din."; +App::$strings["Post successful."] = "Innlegg vellykket."; +App::$strings["Comment approved"] = ""; +App::$strings["Comment deleted"] = ""; +App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "Sletting av kontoer er ikke tillatt innen 48 timer etter endring av kontopassordet."; +App::$strings["Remove This Account"] = "Slett denne kontoen"; +App::$strings["This account and all its channels will be completely removed from the network. "] = "Denne kontoen og alle dens kanaler vil bli fullstendig fjernet fra nettverket."; +App::$strings["This action is permanent and can not be undone!"] = "Denne handlingen er permanent og kan ikke angres!"; +App::$strings["Remove Account"] = "Slett konto"; +App::$strings["Language App"] = ""; +App::$strings["No content available for year"] = ""; +App::$strings["Export Channel"] = "Eksporter kanal"; +App::$strings["Export channel"] = "Eksporter kanal"; +App::$strings["This will export your identity and social graph into a file which can be used to import your channel to a new hub."] = ""; +App::$strings["Export content"] = ""; +App::$strings["This will export your posts, direct messages, articles and cards per month stored into a zip file per year. Months with no posts will be dismissed."] = ""; +App::$strings["Export wikis"] = ""; +App::$strings["This will export your wikis and wiki pages."] = ""; +App::$strings["Export webpages"] = ""; +App::$strings["This will export your webpages and menus."] = ""; +App::$strings["Export channel calendar"] = ""; +App::$strings["This will export your channel calendar events and associated items. CalDAV calendars are not included."] = ""; +App::$strings["Export chatrooms"] = ""; +App::$strings["This will export your chatrooms. Chat history is dismissed."] = ""; +App::$strings["This export can be imported or restored by visiting %2\$s on any site containing your channel."] = ""; +App::$strings["Article"] = ""; +App::$strings["Item has been removed."] = ""; +App::$strings["No channel."] = "Ingen kanal."; +App::$strings["No connections in common."] = "Ingen forbindelser felles."; +App::$strings["View Common Connections"] = ""; +App::$strings["%s element installed"] = "%s element installert"; +App::$strings["%s element installation failed"] = "Installasjon av %s-element mislyktes"; +App::$strings["Your real name is recommended."] = ""; +App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Eksempel: \"Ola Nordmann\", \"Lisa og hestene hennes\", \"Fotball\", \"Sykkelgruppa\""; +App::$strings["This will be used to create a unique network address (like an email address)."] = ""; +App::$strings["Allowed characters are a-z 0-9, - and _"] = ""; +App::$strings["Channel name"] = ""; +App::$strings["Channel role"] = ""; +App::$strings["Create a Channel"] = ""; +App::$strings["A channel is a unique network identity. It can represent a person (social network profile), a forum (group), a business or celebrity page, a newsfeed, and many other things."] = ""; +App::$strings["or import an existing channel from another location."] = "eller importer en eksisterende kanal fra et annet sted."; +App::$strings["Validate"] = ""; +App::$strings["Entry censored"] = ""; +App::$strings["Entry uncensored"] = ""; +App::$strings["No service class restrictions found."] = "Ingen restriksjoner er funnet i tjenesteklasse."; +App::$strings["Mood"] = "Stemning"; +App::$strings["Set your current mood and tell your friends"] = "Angi ditt nåværende humør og fortell dine venner"; +App::$strings["About this site"] = ""; +App::$strings["Site Name"] = ""; +App::$strings["Administrator"] = "Administrator"; +App::$strings["Software and Project information"] = ""; +App::$strings["This site is powered by \$Projectname"] = ""; +App::$strings["Federated and decentralised networking and identity services provided by Zot"] = ""; +App::$strings["Additional federated transport protocols:"] = ""; +App::$strings["Version %s"] = "Versjon %s"; +App::$strings["Project homepage"] = ""; +App::$strings["Developer homepage"] = ""; +App::$strings["App installed."] = "App installert."; +App::$strings["Malformed app."] = "Feil oppsett for app-en."; +App::$strings["Embed code"] = "Innbyggingskode"; +App::$strings["Edit App"] = "Endre app"; +App::$strings["Create App"] = "Lag app"; +App::$strings["Name of app"] = "Navn på app"; +App::$strings["Location (URL) of app"] = "Plassering (URL) til app"; +App::$strings["Photo icon URL"] = "Bildeikon URL"; +App::$strings["80 x 80 pixels - optional"] = "80 x80 pixler - valgfritt"; +App::$strings["Categories (optional, comma separated list)"] = ""; +App::$strings["Version ID"] = "Versjons-ID"; +App::$strings["Price of app"] = "Pris på app"; +App::$strings["Location (URL) to purchase app"] = "Plassering (URL) for å kjøpe app"; +App::$strings["Blocked accounts"] = ""; +App::$strings["Expired accounts"] = ""; +App::$strings["Expiring accounts"] = ""; +App::$strings["Message queues"] = "Meldingskøer"; +App::$strings["Your software should be updated"] = "Programvaren bør oppdateres"; +App::$strings["Summary"] = "Sammendrag"; +App::$strings["Registered accounts"] = "Registrerte kontoer"; +App::$strings["Pending registrations"] = "Ventende registreringer"; +App::$strings["Registered channels"] = "Registrerte kanaler"; +App::$strings["Active addons"] = "Aktive tillegg"; +App::$strings["Version"] = "Versjon"; +App::$strings["Repository version (master)"] = ""; +App::$strings["Repository version (dev)"] = ""; +App::$strings["Invalid abook_id"] = ""; +App::$strings["Could not access contact record."] = "Fikk ikke tilgang til kontaktinformasjonen."; +App::$strings["Could not locate selected profile."] = "Fant ikke valgt profil."; +App::$strings["is now connected to"] = "er nå forbundet til"; +App::$strings["Contact Tools"] = ""; +App::$strings["Approve this contact"] = ""; +App::$strings["Accept contact to allow communication"] = ""; +App::$strings["Please select a role for this contact!"] = ""; +App::$strings["This contact is unreachable from this location."] = ""; +App::$strings["This contact may be unreachable from other channel locations."] = ""; +App::$strings["Location independence is not supported by their network."] = ""; +App::$strings["View profile"] = ""; +App::$strings["This is a group/forum channel"] = ""; +App::$strings["Select a role for this contact"] = ""; +App::$strings["Slide to adjust your degree of friendship"] = "Flytt for å justere din grad av vennskap"; +App::$strings["Custom Filter"] = "Tilpasset filter"; +App::$strings["Only import posts with this text"] = "Bare importer innlegg med disse ordene"; +App::$strings["Do not import posts with this text"] = "Ikke importer innlegg med denne teksten"; +App::$strings["Approve contact"] = ""; +App::$strings["Their"] = ""; +App::$strings["My"] = ""; +App::$strings["Roles"] = ""; +App::$strings["Compare permissions"] = ""; +App::$strings["Permission"] = ""; +App::$strings["Affinity"] = ""; +App::$strings["Content filter"] = ""; +App::$strings["Contact updated"] = ""; +App::$strings["Contact update failed"] = ""; +App::$strings["Approve connection"] = "Godkjenn forbindelse"; +App::$strings["Refresh succeeded"] = ""; +App::$strings["Refresh failed - channel is currently unavailable"] = ""; +App::$strings["Block status updated"] = ""; +App::$strings["Block failed"] = ""; +App::$strings["Ignore status updated"] = ""; +App::$strings["Ignore failed"] = ""; +App::$strings["Archive status updated"] = ""; +App::$strings["Archive failed"] = ""; +App::$strings["Hide status updated"] = ""; +App::$strings["Hide failed"] = ""; +App::$strings["Contact removed"] = ""; +App::$strings["Delete failed"] = ""; +App::$strings["Refresh Permissions"] = "Oppfrisk tillatelser"; +App::$strings["Fetch updated permissions"] = "Hent oppdaterte tillatelser"; +App::$strings["Refresh Photo"] = ""; +App::$strings["Fetch updated photo"] = ""; +App::$strings["Block (or Unblock) all communications with this connection"] = "Blokker eller fjern blokkering av all kommunikasjon med denne forbindelsen"; +App::$strings["This connection is blocked!"] = "Denne forbindelsen er blokkert!"; +App::$strings["Unignore"] = "Ikke ignorer lenger"; +App::$strings["Ignore"] = "Ignorer"; +App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "Ignorer eller fjern ignorering av all inngående kommunikasjon fra denne forbindelsen"; +App::$strings["This connection is ignored!"] = "Denne forbindelsen er ignorert!"; +App::$strings["Unarchive"] = "Ikke arkiver lenger"; +App::$strings["Archive"] = "Arkiver"; +App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Arkiver eller fjern arkivering av denne forbindelsen - marker kanal som død, men behold innhold"; +App::$strings["This connection is archived!"] = "Denne forbindelsen er arkivert!"; +App::$strings["Unhide"] = "Ikke skjul lenger"; +App::$strings["Hide"] = "Skjul"; +App::$strings["Hide or Unhide this connection from your other connections"] = "Skjul eller fjern skjuling av denne forbindelsen fra dine andre forbindelser"; +App::$strings["This connection is hidden!"] = "Denne forbindelsen er skjult!"; +App::$strings["Delete this connection"] = "Slett denne forbindelsen"; +App::$strings["No default suggestions were found."] = ""; +App::$strings["%d rating"] = array( + 0 => "%d vurdering", + 1 => "%d vurderinger", +); +App::$strings["Gender: "] = "Kjønn:"; +App::$strings["Status: "] = "Status:"; +App::$strings["Homepage: "] = "Hjemmeside:"; +App::$strings["Description:"] = "Beskrivelse:"; +App::$strings["Public Forum:"] = "Offentlig forum:"; +App::$strings["Keywords: "] = "Nøkkelord:"; +App::$strings["Don't suggest"] = "Ikke foreslå"; +App::$strings["Common connections (estimated):"] = ""; +App::$strings["Global Directory"] = "Global katalog"; +App::$strings["Local Directory"] = "Lokal katalog"; +App::$strings["Finding:"] = "Finner:"; +App::$strings["next page"] = "Neste side"; +App::$strings["previous page"] = "Forrige side"; +App::$strings["Sort options"] = "Sorteringsvalg"; +App::$strings["Alphabetic"] = "Alfabetisk"; +App::$strings["Reverse Alphabetic"] = "Omvendt alfabetisk"; +App::$strings["Newest to Oldest"] = "Nyest til eldst"; +App::$strings["Oldest to Newest"] = "Eldst til nyest"; +App::$strings["No entries (some entries may be hidden)."] = "Ingen oppføringer (noen oppføringer kan være skjult)."; +App::$strings["Authorize application connection"] = "Tillat programforbindelse"; +App::$strings["Return to your app and insert this Security Code:"] = ""; +App::$strings["Please login to continue."] = "Vennligst logg inn for å fortsette."; +App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vil du tillate dette programmet å få tilgang til dine innlegg og kontakter, og/eller lage nye innlegg for deg?"; +App::$strings["Please login."] = "Vennligst logg inn."; +App::$strings["Block Name"] = "Byggeklossens navn"; +App::$strings["Block Title"] = "Byggeklossens tittel"; +App::$strings["Email Verification Required"] = ""; +App::$strings["A verification token was sent to your email address [%s]. Enter that token here to complete the account verification step. Please allow a few minutes for delivery, and check your spam folder if you do not see the message."] = ""; +App::$strings["Resend Email"] = ""; +App::$strings["Validation token"] = ""; +App::$strings["Item not available."] = "Elementet er ikke tilgjengelig."; +App::$strings["Poll not found."] = ""; +App::$strings["Invalid response."] = ""; +App::$strings["Response submitted. Updates may not appear instantly."] = ""; +App::$strings["Image uploaded but image cropping failed."] = "Bildet ble lastet opp, men beskjæring av bildet mislyktes."; +App::$strings["Image resize failed."] = "Endring av bildestørrelse mislyktes."; +App::$strings["Image upload failed."] = "Opplasting av bildet mislyktes."; +App::$strings["Unable to process image."] = "Kan ikke behandle bildet."; +App::$strings["Photo not available."] = "Bildet er ikke tilgjengelig."; +App::$strings["This profile photo will be visible to anybody on the internet and may be distributed to other websites."] = ""; +App::$strings["This profile photo will be visible only to channels with permission to view this profile."] = ""; +App::$strings["Use Photo for Profile"] = ""; +App::$strings["Change Profile Photo"] = ""; +App::$strings["Reset to default"] = ""; +App::$strings["Use a photo from your albums"] = ""; +App::$strings["Select existing"] = ""; +App::$strings["Crop Image"] = "Beskjær bildet"; +App::$strings["Please adjust the image cropping for optimum viewing."] = "Vennligst juster bildebeskjæringen for optimal visning."; +App::$strings["Done editing"] = ""; +App::$strings["Edit Block"] = "Endre byggekloss"; +App::$strings["Enter a folder name"] = ""; +App::$strings["or select an existing folder (doubleclick)"] = ""; +App::$strings["Save to Folder"] = "Lagre i mappe"; +App::$strings["Layout Name"] = "Layout-navn"; +App::$strings["Layout Description (Optional)"] = "Layoutens beskrivelse (valgfritt)"; +App::$strings["Edit Layout"] = "Endre layout"; +App::$strings["Active"] = ""; +App::$strings["Blocked"] = "Blokkert"; +App::$strings["Ignored"] = "Ignorert"; +App::$strings["Hidden"] = "Skjult"; +App::$strings["Archived/Unreachable"] = ""; +App::$strings["New"] = "Nye"; +App::$strings["Active Connections"] = ""; +App::$strings["Show active connections"] = ""; +App::$strings["Show pending (new) connections"] = "Vis ventende (nye) forbindelser"; +App::$strings["Only show blocked connections"] = "Vis bare forbindelser som er blokkert"; +App::$strings["Only show ignored connections"] = "Vis bare ignorerte forbindelser"; +App::$strings["Only show archived/unreachable connections"] = ""; +App::$strings["Only show hidden connections"] = "Vis bare skjulte forbindelser"; +App::$strings["Show all connections"] = "Vis alle forbindelser"; +App::$strings["Pending approval"] = "Venter på godkjenning"; +App::$strings["Archived"] = "Arkivert"; +App::$strings["Not connected at this location"] = ""; +App::$strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; +App::$strings["Edit connection"] = "Endre forbindelse"; +App::$strings["Delete connection"] = "Slett forbindelse"; +App::$strings["Channel address"] = "Kanaladresse"; +App::$strings["Call"] = ""; +App::$strings["Status"] = "Status"; +App::$strings["Connected"] = "Forbundet"; +App::$strings["Ignore connection"] = "Ignorer forbindelse"; +App::$strings["Recent activity"] = "Nylig aktivitet"; +App::$strings["Connect at this location"] = ""; +App::$strings["Contact role"] = ""; +App::$strings["Search your connections"] = "Søk blant dine forbindelser"; +App::$strings["Contact search"] = ""; +App::$strings["Cover Photos"] = "Forsidebilder"; +App::$strings["Your cover photo may be visible to anybody on the internet"] = ""; +App::$strings["Upload File:"] = "Last opp fil:"; +App::$strings["Select a profile:"] = "Velg en profil:"; +App::$strings["Change Cover Photo"] = ""; +App::$strings["Select existing photo"] = ""; +App::$strings["Done Editing"] = "Avslutt redigering"; +App::$strings["Page owner information could not be retrieved."] = "Informasjon om sideeier kunne ikke hentes."; +App::$strings["Album not found."] = "Albumet ble ikke funnet."; +App::$strings["Delete Album"] = "Slett album"; +App::$strings["Delete Photo"] = "Slett bilde"; +App::$strings["No photos selected"] = "Ingen bilder valgt"; +App::$strings["Access to this item is restricted."] = "Tilgang til dette elementet er begrenset."; +App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB av %2$.2f MB lagringsplass til bilder er brukt."; +App::$strings["%1$.2f MB photo storage used."] = "%1$.2f MB lagringsplass til bilder er brukt."; +App::$strings["Upload Photos"] = "Last opp bilder"; +App::$strings["Enter an album name"] = "Skriv et albumnavn"; +App::$strings["or select an existing album (doubleclick)"] = "eller velg et eksisterende album (dobbeltklikk)"; +App::$strings["Create a status post for this upload"] = "Lag et statusinnlegg for denne opplastingen"; +App::$strings["Description (optional)"] = ""; +App::$strings["Show Newest First"] = "Vis nyeste først"; +App::$strings["Show Oldest First"] = "Vis eldste først"; +App::$strings["Add Photos"] = ""; +App::$strings["Permission denied. Access to this item may be restricted."] = "Tillatelse avvist. Tilgang til dette elementet kan være begrenset."; +App::$strings["Photo not available"] = "Bilde er utilgjengelig"; +App::$strings["Use as profile photo"] = "Bruk som profilbilde"; +App::$strings["Use as cover photo"] = "Bruk som omslagsbilde"; +App::$strings["Private Photo"] = "Privat bilde"; +App::$strings["View Full Size"] = "Vis i full størrelse"; +App::$strings["Edit photo"] = "Endre bilde"; +App::$strings["Rotate CW (right)"] = "Roter med klokka (mot høyre)"; +App::$strings["Rotate CCW (left)"] = "Roter mot klokka (venstre)"; +App::$strings["Move photo to album"] = ""; +App::$strings["Enter a new album name"] = "Skriv et nytt albumnavn"; +App::$strings["or select an existing one (doubleclick)"] = "eller velg et eksisterende album (dobbeltklikk)"; +App::$strings["Add a Tag"] = "Legg til merkelapp"; +App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Eksempel: @bob, @Barbara_Jensen, @jim@example.com"; +App::$strings["Flag as adult in album view"] = "Flag som voksent i albumvisning"; +App::$strings["I like this (toggle)"] = "Jeg liker dette (skru av og på)"; +App::$strings["I don't like this (toggle)"] = "Jeg liker ikke dette (skru av og på)"; +App::$strings["This is you"] = "Dette er deg"; +App::$strings["View all"] = "Vis alle"; +App::$strings["Photo Tools"] = "Fotoverktøy"; +App::$strings["In This Photo:"] = "I dette bildet:"; +App::$strings["Map"] = "Kart"; +App::$strings["__ctx:noun__ Likes"] = "Liker"; +App::$strings["__ctx:noun__ Dislikes"] = "Liker ikke"; +App::$strings["No valid account found."] = "Ingen gyldig konto funnet."; +App::$strings["Password reset request issued. Check your email."] = "Forespørsel om å tilbakestille passord er mottatt. Sjekk e-posten din."; +App::$strings["Site Member (%s)"] = "Nettstedsmedlem (%s)"; +App::$strings["Password reset requested at %s"] = "Forespurt om å tilbakestille passord hos %s"; +App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Forespørsel kunne ikke bekreftes. (Du kan ha sendt den inn tidligere.) Tilbakestilling av passord mislyktes."; +App::$strings["Password Reset"] = "Tilbakestill passord"; +App::$strings["Your password has been reset as requested."] = "Ditt passord har blitt tilbakestilt som forespurt."; +App::$strings["Your new password is"] = "Ditt nye passord er"; +App::$strings["Save or copy your new password - and then"] = "Lagre eller kopier ditt nye passord, og deretter kan du"; +App::$strings["click here to login"] = "klikke her for å logge inn"; +App::$strings["Your password may be changed from the Settings page after successful login."] = "Ditt passord kan endres på siden Innstillinger etter vellykket innlogging."; +App::$strings["Your password has changed at %s"] = "Ditt passord er endret hos %s"; +App::$strings["Forgot your Password?"] = "Glemt passord ditt?"; +App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Skriv e-postadressen din og send inn for å tilbakestille passordet ditt. Sjekk deretter din e-post for videre instruksjoner."; +App::$strings["Email Address"] = "E-postadresse"; +App::$strings["Reset"] = "Tilbakestill"; +App::$strings["Connection added."] = ""; +App::$strings["Invalid item."] = "Ugyldig element."; +App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; +App::$strings["Profile not found."] = "Profilen ble ikke funnet."; +App::$strings["Profile deleted."] = "Profilen er slettet."; +App::$strings["Profile-"] = "Profil-"; +App::$strings["New profile created."] = "Ny profil opprettet."; +App::$strings["Profile unavailable to clone."] = "Profilen er utilgjengelig for klonen."; +App::$strings["Profile unavailable to export."] = "Profilen er utilgjengelig for eksport."; +App::$strings["Profile Name is required."] = "Profilnavn er påkrevd."; +App::$strings["Marital Status"] = "Sivilstand"; +App::$strings["Romantic Partner"] = "Romantisk partner"; +App::$strings["Likes"] = "Liker"; +App::$strings["Dislikes"] = "Liker ikke"; +App::$strings["Work/Employment"] = "Arbeid/sysselsetting"; +App::$strings["Religion"] = "Religion"; +App::$strings["Political Views"] = "Politiske synspunkter"; +App::$strings["Sexual Preference"] = "Seksuelle preferanser"; +App::$strings["Homepage"] = "Hjemmeside"; +App::$strings["Interests"] = "Interesser"; +App::$strings["Profile updated."] = "Profilen er oppdatert."; +App::$strings["Hide my connections from viewers of this profile"] = ""; +App::$strings["Publish my default profile in the network directory"] = ""; +App::$strings["Suggest me as a potential contact to new members"] = ""; +App::$strings["Reveal my online status"] = ""; +App::$strings["Edit Profile Details"] = "Endre profildetaljer"; +App::$strings["View this profile"] = "Vis denne profilen"; +App::$strings["Profile Tools"] = "Profilverktøy"; +App::$strings["Change cover photo"] = "Endre omslagsbilde"; +App::$strings["Create a new profile using these settings"] = "Lag en ny profil ved å bruke disse innstillingene"; +App::$strings["Clone this profile"] = "Klon denne profilen"; +App::$strings["Delete this profile"] = "Slett denne profilen"; +App::$strings["Add profile things"] = "Legg til profilting"; +App::$strings["Basic"] = ""; +App::$strings["Relationship"] = ""; +App::$strings["Import profile from file"] = "Importer profil fra fil"; +App::$strings["Export profile to file"] = "Eksporter profil til fil"; +App::$strings["Your gender"] = "Kjønn"; +App::$strings["Marital status"] = "Sivilstatus"; +App::$strings["Sexual preference"] = "Legning"; +App::$strings["Profile name"] = "Profilnavn"; +App::$strings["This is your default profile."] = "Dette er din standardprofil."; +App::$strings["Your full name"] = "Fullt navn"; +App::$strings["Short title/description"] = ""; +App::$strings["Maximal 190 characters"] = ""; +App::$strings["Street address"] = "Gateadresse"; +App::$strings["Locality/City"] = "Sted/by"; +App::$strings["Region/State"] = "Region"; +App::$strings["Postal/Zip code"] = "Postnummer"; +App::$strings["Who (if applicable)"] = "Hvem (om relevant)"; +App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Eksempler: kari123, Kari Villiamsen, kari@example.com"; +App::$strings["Since (date)"] = "Fra (dato)"; +App::$strings["Tell us about yourself"] = "Fortell oss om deg selv"; +App::$strings["Hometown"] = "Hjemsted"; +App::$strings["Political views"] = "Politiske holdninger"; +App::$strings["Religious views"] = "Religiøse holdninger"; +App::$strings["Keywords used in directory listings"] = "Nøkkelord for bruk i katalogoppføringen"; +App::$strings["Example: fishing photography software"] = "Eksempel: fisking fotografering programvare"; +App::$strings["Musical interests"] = "Musikkinteresser"; +App::$strings["Books, literature"] = "Bøker, litteratur"; +App::$strings["Television"] = "TV/fjernsyn"; +App::$strings["Film/Dance/Culture/Entertainment"] = "Film/dans/kultur/underholdning"; +App::$strings["Hobbies/Interests"] = "Hobbier/Interesser"; +App::$strings["Love/Romance"] = "Kjærlighet/romantikk"; +App::$strings["School/Education"] = "Skolle/utdanning"; +App::$strings["Contact information and social networks"] = "Kontaktinformasjon og andre sosiale nettverk"; +App::$strings["My other channels"] = "Mine andre kanaler"; +App::$strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s følger %2\$s sin %3\$s"; +App::$strings["%1\$s stopped following %2\$s's %3\$s"] = "%1\$s stopped å følge %2\$s sin %3\$s"; +App::$strings["Bookmark added"] = "Bokmerke lagt til"; +App::$strings["My Connections Bookmarks"] = "Mine forbindelsers bokmerker"; +App::$strings["Channel name changes are not allowed within 48 hours of changing the account password."] = ""; +App::$strings["Change channel nickname/address"] = ""; +App::$strings["Any/all connections on other networks will be lost!"] = ""; +App::$strings["New channel address"] = ""; +App::$strings["Rename Channel"] = ""; +App::$strings["Invite App"] = ""; +App::$strings["Register is closed"] = ""; +App::$strings["Note, the invitation code is valid up to"] = ""; +App::$strings["Too many recipients for one invitation (max %d)"] = ""; +App::$strings["No recipients for this invitation"] = ""; +App::$strings["(%s) : Not a real email address"] = ""; +App::$strings["(%s) : Not allowed email address"] = ""; +App::$strings["(%s) : email address already in use"] = ""; +App::$strings["(%s) : Accepted email address"] = ""; +App::$strings["To %s : Message delivery success."] = ""; +App::$strings["%1\$d mail(s) sent, %2\$d mail error(s)"] = ""; +App::$strings["Invites not proposed by configuration"] = ""; +App::$strings["Contact the site admin"] = ""; +App::$strings["Invites by users not enabled"] = ""; +App::$strings["You have no more invitations available"] = "Du har ikke flere invitasjoner tilgjengelig"; +App::$strings["Not on xchan"] = ""; +App::$strings["All users invitation limit exceeded."] = ""; +App::$strings["Invitation expires after"] = ""; +App::$strings["Invitation"] = ""; +App::$strings["Send invitations"] = "Send invitasjoner"; +App::$strings["Invitations I am using"] = ""; +App::$strings["Invitations we are using"] = ""; +App::$strings["§ Note, the email(s) sent will be recorded in the system logs"] = ""; +App::$strings["Enter email addresses, one per line:"] = "Skriv e-postadresser, en per linje:"; +App::$strings["Your message:"] = "Din melding:"; +App::$strings["Invite template"] = ""; +App::$strings["Subject:"] = "Emne:"; +App::$strings["Here you may enter personal notes to the recipient(s)"] = ""; +App::$strings["Private forum"] = ""; +App::$strings["Public forum"] = ""; +App::$strings["Xchan Lookup"] = "Xchan oppslag"; +App::$strings["Lookup xchan beginning with (or webbie): "] = "Slå opp xchan som begynner med (eller webbie):"; +App::$strings["Affinity Tool settings updated."] = ""; +App::$strings["The numbers below represent the minimum and maximum slider default positions for your network/stream page as a percentage."] = ""; +App::$strings["Default maximum affinity level"] = ""; +App::$strings["0-99 default 99"] = ""; +App::$strings["Default minimum affinity level"] = ""; +App::$strings["0-99 - default 0"] = ""; +App::$strings["Persistent affinity levels"] = ""; +App::$strings["If disabled the max and min levels will be reset to default after page reload"] = ""; +App::$strings["Affinity Tool Settings"] = ""; +App::$strings["Max height of content (in pixels)"] = ""; +App::$strings["Click to expand content exceeding this height"] = ""; +App::$strings["Stream Settings"] = ""; +App::$strings["Additional Features"] = "Ekstra funksjoner"; +App::$strings["Please select a channel role"] = ""; +App::$strings["Your channel address is"] = "Din kanaladresse er"; +App::$strings["Your files/photos are accessible via WebDAV at"] = ""; +App::$strings["Channel Settings"] = "Kanalinnstillinger"; +App::$strings["Basic Settings"] = "Grunninnstillinger"; +App::$strings["Channel timezone:"] = ""; +App::$strings["Default post location:"] = ""; +App::$strings["Geographical location to display on your posts"] = "Geografisk plassering som vises på dine innlegg"; +App::$strings["Use browser location"] = ""; +App::$strings["Adult content"] = ""; +App::$strings["This channel frequently or regularly publishes adult content"] = ""; +App::$strings["Maximum Friend Requests/Day:"] = "Maksimalt antall venneforespørsler per dag:"; +App::$strings["May reduce spam activity"] = "Kan redusere søppelpostaktivitet"; +App::$strings["Notification Settings"] = "Varslingsinnstillinger"; +App::$strings["By default post a status message when:"] = "Legg inn en statusmelding når du:"; +App::$strings["accepting a friend request"] = "aksepterer en venneforespørsel"; +App::$strings["joining a forum/community"] = "blir med i et forum/miljø"; +App::$strings["making an interesting profile change"] = "gjør en interessant profilendring"; +App::$strings["Send a notification email when:"] = "Send en varsel-e-post når:"; +App::$strings["You receive a connection request"] = "Du har mottatt en forespørsel om forbindelse"; +App::$strings["Your connections are confirmed"] = "Dine forbindelser er bekreftet"; +App::$strings["Someone writes on your profile wall"] = "Noen skriver på din profilvegg"; +App::$strings["Someone writes a followup comment"] = "Noen skriver en oppfølgende kommentar"; +App::$strings["You receive a private message"] = "Du mottar en privat melding"; +App::$strings["You receive a friend suggestion"] = "Du mottok et venneforslag"; +App::$strings["You are tagged in a post"] = "Du merkes i et innlegg"; +App::$strings["You are poked/prodded/etc. in a post"] = "Du ble prikket/oppildnet/og så vider i et innlegg"; +App::$strings["Someone likes your post/comment"] = ""; +App::$strings["Show visual notifications including:"] = "Vis visuelle varslinger om:"; +App::$strings["Unseen stream activity"] = ""; +App::$strings["Unseen channel activity"] = "Usett kanalaktivitet"; +App::$strings["Unseen private messages"] = "Usette private meldinger"; +App::$strings["Recommended"] = "Anbefalt"; +App::$strings["Upcoming events"] = "Kommende hendelser"; +App::$strings["Events today"] = "Hendelser idag"; +App::$strings["Upcoming birthdays"] = "Kommende fødselsdager"; +App::$strings["Not available in all themes"] = "Ikke tilgjengelig i alle temaer"; +App::$strings["System (personal) notifications"] = "System (personlige) varslinger"; +App::$strings["System info messages"] = "System infomeldinger"; +App::$strings["System critical alerts"] = "System kritiske varsel"; +App::$strings["New connections"] = "Nye forbindelser"; +App::$strings["System Registrations"] = "Systemregistreringer"; +App::$strings["Unseen shared files"] = ""; +App::$strings["Unseen public stream activity"] = ""; +App::$strings["Unseen likes and dislikes"] = ""; +App::$strings["Unseen forum posts"] = ""; +App::$strings["Email notification hub (hostname)"] = ""; +App::$strings["If your channel is mirrored to multiple hubs, set this to your preferred location. This will prevent duplicate email notifications. Example: %s"] = ""; +App::$strings["Show new wall posts, private messages and connections under Notices"] = ""; +App::$strings["Mark all notices of the thread read if a notice is clicked"] = ""; +App::$strings["If no, only the clicked notice will be marked read"] = ""; +App::$strings["Desktop notifications are unavailable because the required browser permission has not been granted"] = ""; +App::$strings["Grant permission"] = ""; +App::$strings["Notify me of events this many days in advance"] = "Varsle meg om hendelser dette antall dager på forhånd"; +App::$strings["Must be greater than 0"] = "Må være større enn 0"; +App::$strings["Default photo upload folder"] = "Standard mappe for opplasting av bilder"; +App::$strings["%Y - current year, %m - current month"] = "%Y - nåværende år, %m - nåværende måned"; +App::$strings["Default file upload folder"] = "Standard mappe for opplasting av filer"; +App::$strings["Remove this channel."] = "Fjern denne kanalen."; +App::$strings["Expire other channel content after this many days"] = "Annet kanal innhold utløper etter så mange dager"; +App::$strings["0 or blank to use the website limit."] = ""; +App::$strings["This website expires after %d days."] = ""; +App::$strings["This website does not expire imported content."] = ""; +App::$strings["The website limit takes precedence if lower than your limit."] = ""; +App::$strings["Words one per line or #tags, \$categories, /patterns/, lang=xx, lang!=xx - leave blank to import all posts"] = ""; +App::$strings["Not valid email."] = "Ikke gyldig e-post."; +App::$strings["Protected email address. Cannot change to that email."] = "Beskyttet e-postadresse. Kan ikke endre til den e-postadressen."; +App::$strings["System failure storing new email. Please try again."] = "Systemfeil ved lagring av ny e-post. Vennligst prøv igjen."; +App::$strings["Password verification failed."] = "Passordbekreftelsen mislyktes."; +App::$strings["Passwords do not match. Password unchanged."] = "Passordene stemmer ikke overens. Passord uforandret."; +App::$strings["Empty passwords are not allowed. Password unchanged."] = "Tomme passord er ikke tillatt. Passord uforandret."; +App::$strings["Password changed."] = "Passord endret."; +App::$strings["Password update failed. Please try again."] = "Passord oppdatering mislyktes. Vennligst prøv igjen."; +App::$strings["Account Settings"] = "Kontoinnstillinger"; +App::$strings["Current Password"] = "Nåværende passord"; +App::$strings["Enter New Password"] = "Skriv nytt passord"; +App::$strings["Confirm New Password"] = "Bekreft nytt passord"; +App::$strings["Leave password fields blank unless changing"] = "La passordfeltene stå blanke om det ikke skal endres"; +App::$strings["DId2 or Email Address:"] = ""; +App::$strings["Remove this account including all its channels"] = "Slett denne kontoen inkludert alle dens kanaler"; +App::$strings["No feature settings configured"] = "Ingen funksjonsinnstillinger er konfigurert"; +App::$strings["Addon Settings"] = ""; +App::$strings["Please save/submit changes to any panel before opening another."] = ""; +App::$strings["Events Settings"] = ""; +App::$strings["Channel Manager Settings"] = ""; +App::$strings["Personal menu to display in your channel pages"] = "Personlig meny som kan vises på dine kanalsider"; +App::$strings["Channel Home Settings"] = ""; +App::$strings["Calendar Settings"] = ""; +App::$strings["%s - (Experimental)"] = "%s - (Eksperimentelt)"; +App::$strings["Display Settings"] = "Visningsinnstillinger"; +App::$strings["Theme Settings"] = "Temainnstillinger"; +App::$strings["Custom Theme Settings"] = "Tilpassede temainnstillinger"; +App::$strings["Content Settings"] = "Innholdsinnstillinger"; +App::$strings["Display Theme:"] = "Visningstema:"; +App::$strings["Select scheme"] = "Velg skjema"; +App::$strings["Preload images before rendering the page"] = "Last inn bildene før gjengivelsen av siden"; +App::$strings["The subjective page load time will be longer but the page will be ready when displayed"] = "Den personlige opplevelsen av lastetiden vil være lenger, men siden vil være klar når den vises"; +App::$strings["Enable user zoom on mobile devices"] = "Skru på brukerstyrt zoom på mobile enheter"; +App::$strings["Update browser every xx seconds"] = "Oppdater nettleser hvert xx sekunder"; +App::$strings["Minimum of 10 seconds, no maximum"] = "Minimum 10 sekunder, ikke noe maksimum"; +App::$strings["Maximum number of conversations to load at any time:"] = "Maksimalt antall samtaler å laste samtidig:"; +App::$strings["Maximum of 30 items"] = ""; +App::$strings["Show emoticons (smilies) as images"] = "Vis emoticons (smilefjes) som bilder"; +App::$strings["Link post titles to source"] = "Lenk innleggets tittel til kilden"; +App::$strings["Display new member quick links menu"] = ""; +App::$strings["Directory Settings"] = ""; +App::$strings["Editor Settings"] = ""; +App::$strings["Connections Settings"] = ""; +App::$strings["Photos Settings"] = ""; +App::$strings["Default profile for new contacts"] = ""; +App::$strings["Profiles Settings"] = ""; +App::$strings["Privacy settings updated."] = ""; +App::$strings["Only those you specifically allow"] = "Bare de du spesifikt tillater"; +App::$strings["Approved connections"] = "Godkjente forbindelser"; +App::$strings["Any connections"] = "Enhver forbindelse"; +App::$strings["Anybody on this website"] = "Enhver ved dette nettstedet"; +App::$strings["Anybody in this network"] = "Enhver i dette nettverket"; +App::$strings["Anybody authenticated"] = "Enhver som er autentisert"; +App::$strings["Anybody on the internet"] = "Enhver på Internett"; +App::$strings["Advise: set to \"Anybody on the internet\" and use privacy groups to restrict access"] = ""; +App::$strings["Privacy Settings"] = ""; +App::$strings["Advanced configuration"] = ""; +App::$strings["Proceed with caution"] = ""; +App::$strings["Changing advanced configuration settings can impact your, and your contacts channels functionality and security."] = ""; +App::$strings["Accept the risk and continue"] = ""; +App::$strings["Automatically approve new contacts"] = ""; +App::$strings["Opt-out of search engine indexing"] = ""; +App::$strings["Group actor"] = ""; +App::$strings["Allow this channel to act as a forum"] = ""; +App::$strings["Settings saved."] = ""; +App::$strings["Settings saved. Reload page please."] = ""; +App::$strings["Conversation Settings"] = ""; +App::$strings["Unable to update menu."] = "Ikke i stand til å oppdatere meny."; +App::$strings["Unable to create menu."] = "Ikke i stand til å lage meny."; +App::$strings["Menu Name"] = "Menynavn"; +App::$strings["Unique name (not visible on webpage) - required"] = "Unikt navn (ikke synlig på websiden) - påkrevet"; +App::$strings["Menu Title"] = "Menytittel"; +App::$strings["Visible on webpage - leave empty for no title"] = "Synlig på websiden - la stå tomt for ingen tittel"; +App::$strings["Allow Bookmarks"] = "Tillat bokmerker"; +App::$strings["Menu may be used to store saved bookmarks"] = "Menyen kan brukes til å lagre lagrede bokmerker"; +App::$strings["Submit and proceed"] = "Send inn og fortsett"; +App::$strings["Drop"] = "Slett"; +App::$strings["Bookmarks allowed"] = "Bokmerker tillatt"; +App::$strings["Delete this menu"] = "Slett denne menyen"; +App::$strings["Edit menu contents"] = "Endre menyinnholdet"; +App::$strings["Edit this menu"] = "Endre denne menyen"; +App::$strings["Menu could not be deleted."] = "Menyen kunne ikke bli slettet."; +App::$strings["Edit Menu"] = "Endre meny"; +App::$strings["Add or remove entries to this menu"] = "Legg til eller fjern punkter i denne menyen"; +App::$strings["Menu name"] = "Menynavn"; +App::$strings["Must be unique, only seen by you"] = "Må være unik, ses bare av deg"; +App::$strings["Menu title"] = "Menytittel"; +App::$strings["Menu title as seen by others"] = "Menytittelen andre ser"; +App::$strings["Allow bookmarks"] = "Tillat bokmerker"; +App::$strings["Connection Default Permissions"] = "Forbindelsens standard tillatelser"; +App::$strings["Apply these permissions automatically"] = "Bruk disse tillatelsene automatisk"; +App::$strings["If enabled, connection requests will be approved without your interaction"] = ""; +App::$strings["Permission role"] = ""; +App::$strings["Add permission role"] = ""; +App::$strings["The permissions indicated on this page will be applied to all new connections."] = "Tillatelsene angitt på denne siden gjøres gjeldende for alle nye forbindelser."; +App::$strings["Automatic approval settings"] = ""; +App::$strings["My Settings"] = "Mine innstillinger"; +App::$strings["Individual Permissions"] = "Individuelle tillatelser"; +App::$strings["Some individual permissions may have been preset or locked based on your channel type and privacy settings."] = ""; +App::$strings["This setting requires special processing and editing has been blocked."] = "Denne innstillingen krever spesiell behandling og redigering har blitt blokkert."; +App::$strings["Configuration Editor"] = "Konfigurasjonsbehandler"; +App::$strings["Warning: Changing some settings could render your channel inoperable. Please leave this page unless you are comfortable with and knowledgeable about how to correctly use this feature."] = "Advarsel: kanalen din kan slutte å virke ved endring av enkelte innstillinger. Vennligst forlat denne siden med mindre du er komfortabel med dette og vet hvordan du bruker denne funksjonen riktig."; +App::$strings["Name and Secret are required"] = ""; +App::$strings["Add OAuth2 application"] = ""; +App::$strings["Grant Types"] = ""; +App::$strings["leave blank unless your application sepcifically requires this"] = ""; +App::$strings["Authorization scope"] = ""; +App::$strings["OAuth2 Application not found."] = ""; +App::$strings["leave blank unless your application specifically requires this"] = ""; +App::$strings["Connected OAuth2 Apps"] = ""; +App::$strings["Invalid message"] = "Ugyldig melding"; +App::$strings["no results"] = "ingen resultater"; +App::$strings["channel sync processed"] = "Kanalsynkronisering er behandlet"; +App::$strings["queued"] = "lagt i kø"; +App::$strings["posted"] = "lagt inn"; +App::$strings["accepted for delivery"] = "akseptert for levering"; +App::$strings["updated"] = "oppdatert"; +App::$strings["update ignored"] = "oppdatering ignorert"; +App::$strings["permission denied"] = "tillatelse avvist"; +App::$strings["recipient not found"] = "mottaker ble ikke funnet"; +App::$strings["Delivery report for %1\$s"] = "Leveringsrapport for %1\$s"; +App::$strings["Redeliver"] = ""; +App::$strings["Thing updated"] = "Tingen er oppdatert"; +App::$strings["Object store: failed"] = "Objektlagring: mislyktes"; +App::$strings["Thing added"] = "Ting lagt til"; +App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; +App::$strings["Show Thing"] = "Vis ting"; +App::$strings["item not found."] = "element ble ikke funnet."; +App::$strings["Edit Thing"] = "Endre ting"; +App::$strings["Select a profile"] = "Velg en profil"; +App::$strings["Post an activity"] = "Legg inn en aktivitet"; +App::$strings["Only sends to viewers of the applicable profile"] = "Sender bare til seere av den aktuelle profilen"; +App::$strings["Name of thing e.g. something"] = "Navn på ting for eksempel noe"; +App::$strings["URL of thing (optional)"] = "URL til ting (valgfritt)"; +App::$strings["URL for photo of thing (optional)"] = "URL til bilde av ting (valgfritt)"; +App::$strings["Add Thing to your Profile"] = "Legg til ting i din profil"; +App::$strings["Authentication failed."] = "Autentisering mislyktes."; +App::$strings["Item sync completed!"] = ""; +App::$strings["Item sync completed but no items were found!"] = ""; +App::$strings["File sync completed!"] = ""; +App::$strings["File sync completed but no files were found!"] = ""; +App::$strings["Channel clone status"] = ""; +App::$strings["Item sync status"] = ""; +App::$strings["File sync status"] = ""; +App::$strings["Channel cloning completed!"] = ""; +App::$strings["Resume"] = ""; +App::$strings["Only resume if sync stalled!"] = ""; +App::$strings["Layout updated."] = "Layout er oppdatert."; +App::$strings["Edit System Page Description"] = "Endre beskrivelsen av systemsiden"; +App::$strings["(modified)"] = ""; +App::$strings["Layout not found."] = "Layouten ble ikke funnet."; +App::$strings["Module Name:"] = "Modulnavn:"; +App::$strings["Layout Help"] = "Layout-hjelp"; +App::$strings["Edit another layout"] = ""; +App::$strings["System layout"] = ""; +App::$strings["Welcome to %s"] = "Velkommen til %s"; +App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Ingen forslag tilgjengelige. Hvis dette er et nytt nettsted, vennligst prøv igjen om 24 timer."; +App::$strings["Connection updated."] = "Forbindelsen er oppdatert."; +App::$strings["Failed to update connection record."] = "Mislyktes med å oppdatere forbindelsesinformasjonen."; +App::$strings["Could not access address book record."] = "Fikk ikke tilgang til informasjonen i adresseboken."; +App::$strings["Refresh failed - channel is currently unavailable."] = "Oppfrisking mislyktes - kanalen er for øyeblikket utilgjengelig."; +App::$strings["Unable to set address book parameters."] = "Ikke i stand til å angi parametre for adresseboken."; +App::$strings["Connection has been removed."] = "Forbindelsen har blitt fjernet."; +App::$strings["View %s's profile"] = "Vis %s sin profil"; +App::$strings["View recent posts and comments"] = "Vis nylige innlegg og kommentarer"; +App::$strings["Fetch Vcard"] = ""; +App::$strings["Fetch electronic calling card for this connection"] = ""; +App::$strings["Open Set Affinity section by default"] = ""; +App::$strings["Filter"] = ""; +App::$strings["Open Custom Filter section by default"] = ""; +App::$strings["Set Affinity"] = "Angi nærhet"; +App::$strings["Set Profile"] = "Angi profil"; +App::$strings["Set Affinity & Profile"] = "Angi nærhet og profil"; +App::$strings["Contact: %s"] = ""; +App::$strings["Manage contact roles"] = ""; +App::$strings["This contacts's primary address is"] = ""; +App::$strings["Available locations:"] = "Tilgjengelige plasseringer:"; +App::$strings["Contact Pending Approval"] = ""; +App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Vennligst velg profilen du ønsker å vise %s når profilen din ses på en sikret måte. "; +App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can not change those settings here."] = "Noen tillatelser kan være arvet fra din kanals personverninnstillinger, som har høyere prioritet enn individuelle innstillinger. Du kan ikke endre arvede innstillingene her."; +App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Noen tillatelser kan være arvet fra din kanals personverninnstillinger, som har høyere prioritet enn individuelle innstillinger. Du kan endre disse innstillingene her, men de vil ikke få noen effekt før de arvede innstillingene endres."; +App::$strings["Last update:"] = "Siste oppdatering:"; +App::$strings["Details"] = ""; +App::$strings["No more system notifications."] = "Ingen flere systemvarsler."; +App::$strings["System Notifications"] = "Systemvarsler"; +App::$strings["Mark all seen"] = "Merk alle som sett"; +App::$strings["Comanche page description language help"] = "Hjelp med Comanche sidebeskrivelsesspråk"; +App::$strings["Layout Description"] = "Layout-beskrivelse"; +App::$strings["Download PDL file"] = "Last ned PDL-fil"; +App::$strings["Location not found."] = "Plassering er ikke funnet."; +App::$strings["Location lookup failed."] = "Oppslag på plassering mislyktes."; +App::$strings["Please select another location to become primary before removing the primary location."] = "Vennligst velg en annen plassering som primær før du sletter gjeldende primære plassering."; +App::$strings["Syncing locations"] = "Synkroniserer plasseringer"; +App::$strings["No locations found."] = "Ingen plasseringer ble funnet."; +App::$strings["Manage Channel Locations"] = "Håndter kanalplasseringer"; +App::$strings["Sync Now"] = "Synkroniser nå"; +App::$strings["Please wait several minutes between consecutive operations."] = "Vennligst vent flere minutter mellom hver etterfølgende operasjon."; +App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Når mulig, fjern en plassering ved å logge inn på det nettstedet eller den hub-en og fjern din kanal."; +App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Bruk dette skjemaet for å fjerne plasseringen hvis huben ikke er i drift lenger."; +App::$strings["Failed to create source. No channel selected."] = "Mislyktes med å lage kilde. Ingen kanal er valgt."; +App::$strings["Source created."] = "Kilden er laget."; +App::$strings["Source updated."] = "Kilden er oppdatert."; +App::$strings["*"] = "*"; +App::$strings["Channel Sources"] = "Kanalkilder"; +App::$strings["Manage remote sources of content for your channel."] = "Håndtere eksterne innholdskilder til din kanal."; +App::$strings["New Source"] = "Ny kilde"; +App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importer alt eller et utvalgt av innhold fra følgende kanal inn i denne kanalen og distribuer det i henhold til dine egne kanalinnstillinger."; +App::$strings["Only import content with these words (one per line)"] = "Bare importer innhold med disse ordene (ett ord per linje)"; +App::$strings["Leave blank to import all public content"] = "La stå tomt for å importere alt offentlig innhold"; +App::$strings["Channel Name"] = "Kanalnavn"; +App::$strings["Add the following categories to posts imported from this source (comma separated)"] = ""; +App::$strings["Resend posts with this channel as author"] = ""; +App::$strings["Copyrights may apply"] = ""; +App::$strings["Source not found."] = "Kilden ble ikke funnet."; +App::$strings["Edit Source"] = "Endre kilde"; +App::$strings["Delete Source"] = "Slett kilde"; +App::$strings["Source removed"] = "Kilden er fjernet"; +App::$strings["Unable to remove source."] = "Ikke i stand til å fjerne kilde."; +App::$strings["Select a bookmark folder"] = "Velg en bokmerkemappe"; +App::$strings["Save Bookmark"] = "Lagre bokmerke"; +App::$strings["URL of bookmark"] = "URL-en til bokmerket"; +App::$strings["Or enter new bookmark folder name"] = "Eller skriv nytt navn på bokmerkemappe"; +App::$strings["A deleted privacy group with this name was revived. Existing item permissions may apply to this privacy group and any future members. If this is not what you intended, please create another privacy group with a different name."] = ""; +App::$strings["Select a privacy group"] = ""; +App::$strings["__ctx:permcat__ Default"] = ""; +App::$strings["Likes %1\$s's %2\$s"] = ""; +App::$strings["Doesn't like %1\$s's %2\$s"] = ""; +App::$strings["Will attend %s's event"] = ""; +App::$strings["Will not attend %s's event"] = ""; +App::$strings["May attend %s's event"] = ""; +App::$strings["May not attend %s's event"] = ""; +App::$strings["\$Projectname Notification"] = "\$Projectname varsling"; +App::$strings["Thank You,"] = "Tusen takk,"; +App::$strings["This email was sent by %1\$s at %2\$s."] = ""; +App::$strings["To stop receiving these messages, please adjust your Notification Settings at %s"] = ""; +App::$strings["To stop receiving these messages, please adjust your %s."] = ""; +App::$strings["%s "] = "%s "; +App::$strings["[\$Projectname:Notify] New direct message received at %s"] = ""; +App::$strings["%1\$s sent you a new direct message at %2\$s"] = ""; +App::$strings["%1\$s sent you %2\$s."] = "%1\$s sendte deg %2\$s."; +App::$strings["a direct message"] = ""; +App::$strings["Please visit %s to view and/or reply to your direct messages."] = ""; +App::$strings["commented on"] = ""; +App::$strings["liked"] = ""; +App::$strings["disliked"] = ""; +App::$strings["voted on"] = ""; +App::$strings["%1\$s %2\$s [zrl=%3\$s]a %4\$s[/zrl]"] = ""; +App::$strings["%1\$s %2\$s [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = ""; +App::$strings["%1\$s %2\$s [zrl=%3\$s]your %4\$s[/zrl]"] = ""; +App::$strings["[\$Projectname:Notify] Moderated Comment to conversation #%1\$d by %2\$s"] = ""; +App::$strings["[\$Projectname:Notify] Comment to conversation #%1\$d by %2\$s"] = ""; +App::$strings["%1\$s commented on an item/conversation you have been following"] = ""; +App::$strings["Please visit %s to view and/or reply to the conversation."] = "Vennligst besøk %s for å se og/eller svare i samtalen"; +App::$strings["Please visit %s to approve or reject this comment."] = ""; +App::$strings["[\$Projectname:Notify] Like received to conversation #%1\$d by %2\$s"] = ""; +App::$strings["%1\$s liked an item/conversation you created"] = ""; +App::$strings["[\$Projectname:Notify] %s posted to your profile wall"] = ""; +App::$strings["%1\$s posted to your profile wall at %2\$s"] = ""; +App::$strings["%1\$s posted to [zrl=%2\$s]your wall[/zrl]"] = ""; +App::$strings["[\$Projectname:Notify] %s tagged you"] = ""; +App::$strings["%1\$s tagged you at %2\$s"] = ""; +App::$strings["%1\$s [zrl=%2\$s]tagged you[/zrl]."] = ""; +App::$strings["[\$Projectname:Notify] %1\$s poked you"] = ""; +App::$strings["%1\$s poked you at %2\$s"] = ""; +App::$strings["%1\$s [zrl=%2\$s]poked you[/zrl]."] = ""; +App::$strings["[\$Projectname:Notify] %s tagged your post"] = ""; +App::$strings["%1\$s tagged your post at %2\$s"] = ""; +App::$strings["%1\$s tagged [zrl=%2\$s]your post[/zrl]"] = ""; +App::$strings["[\$Projectname:Notify] Introduction received"] = ""; +App::$strings["You've received an new connection request from '%1\$s' at %2\$s"] = ""; +App::$strings["You've received [zrl=%1\$s]a new connection request[/zrl] from %2\$s."] = ""; +App::$strings["You may visit their profile at %s"] = "Du kan besøke profilen deres på %s"; +App::$strings["Please visit %s to approve or reject the connection request."] = "Vennligst besøk %s for å godkjenne eller avslå forespørselen om forbindelse."; +App::$strings["[\$Projectname:Notify] Friend suggestion received"] = ""; +App::$strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = ""; +App::$strings["You've received [zrl=%1\$s]a friend suggestion[/zrl] for %2\$s from %3\$s."] = ""; +App::$strings["Name:"] = "Navn:"; +App::$strings["Photo:"] = "Bilde:"; +App::$strings["Please visit %s to approve or reject the suggestion."] = "Vennligst besøk %s for å godkjenne eller avslå dette forslaget."; +App::$strings["[\$Projectname:Notify]"] = ""; +App::$strings["created a new poll"] = ""; +App::$strings["created a new post"] = "laget et nytt innlegg"; +App::$strings["voted on %s's poll"] = ""; +App::$strings["commented on %s's post"] = "kommenterte på %s sitt innlegg"; +App::$strings["repeated %s's post"] = ""; +App::$strings["liked %s's post"] = ""; +App::$strings["disliked %s's post"] = ""; +App::$strings["shared a file with you"] = ""; +App::$strings["edited a post dated %s"] = ""; +App::$strings["edited a comment dated %s"] = ""; +App::$strings["added your channel"] = "la til din kanal"; +App::$strings["sent you a direct message"] = ""; +App::$strings["g A l F d"] = "g A l F d"; +App::$strings["[today]"] = "[idag]"; +App::$strings["created an event"] = ""; +App::$strings["status verified"] = ""; +App::$strings["Channel is blocked on this site."] = "Kanalen er blokkert på dette nettstedet."; +App::$strings["Channel location missing."] = "Kanalplassering mangler."; +App::$strings["Remote channel or protocol unavailable."] = ""; +App::$strings["Channel discovery failed."] = "Kanaloppdagelse mislyktes."; +App::$strings["Protocol disabled."] = "Protokollen er avskrudd."; +App::$strings["Cannot connect to yourself."] = "Kan ikke lage forbindelse med deg selv."; +App::$strings["error saving data"] = ""; +App::$strings["Missing room name"] = "Mangler romnavn"; +App::$strings["Duplicate room name"] = "Duplikat romnavn"; +App::$strings["Invalid room specifier."] = "Ugyldig rom-spesifisering"; +App::$strings["Room not found."] = "Rommet ble ikke funnet."; +App::$strings["Room is full"] = "Rommet er fullt"; App::$strings["Affinity Tool"] = "Nærhetsverktøy"; -App::$strings["Filter stream activity by depth of relationships"] = "Filtrer strømaktiviteten etter releasjonsdybde"; -App::$strings["Connection Filtering"] = "Filtrer forbindelser"; -App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filtrer innkommende innlegg fra forbindelser basert på nøkkelord/innhold"; -App::$strings["Show channel suggestions"] = "Vis kanalforslag"; -App::$strings["Post/Comment Tools"] = "Innlegg-/Kommentar-verktøy"; -App::$strings["Community Tagging"] = "Felleskapsmerkelapper"; -App::$strings["Ability to tag existing posts"] = "Mulighet til å merke eksisterende meldinger"; -App::$strings["Post Categories"] = "Innleggskategorier"; -App::$strings["Add categories to your posts"] = "Legg kategorier til dine innlegg"; -App::$strings["Emoji Reactions"] = ""; -App::$strings["Add emoji reaction ability to posts"] = ""; -App::$strings["Ability to file posts under folders"] = "Mulighet til å sortere innlegg i mapper"; -App::$strings["Dislike Posts"] = "Mislik innlegg"; -App::$strings["Ability to dislike posts/comments"] = "Mulighet til å mislike innlegg/kommentarer"; -App::$strings["Star Posts"] = "Stjerneinnlegg"; -App::$strings["Ability to mark special posts with a star indicator"] = "Mulighet til å merke spesielle innlegg med en stjerne"; -App::$strings["Tag Cloud"] = "Merkelappsky"; -App::$strings["Provide a personal tag cloud on your channel page"] = "Tilby en personlig merkelappsky på din kanalside"; -App::$strings["Embedded content"] = "Innebygget innhold"; -App::$strings["Embedding disabled"] = "Innbygging avskrudd"; -App::$strings["Who can see this?"] = ""; -App::$strings["Custom selection"] = ""; -App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = ""; -App::$strings["Show"] = "Vis"; -App::$strings["Don't show"] = "Ikke vis"; -App::$strings["Other networks and post services"] = "Andre nettverk og innleggstjenester"; -App::$strings["Post permissions %s cannot be changed %s after a post is shared.
These permissions set who is allowed to view the post."] = ""; -App::$strings["Logged out."] = "Logget ut."; -App::$strings["Failed authentication"] = "Mislykket autentisering"; -App::$strings["Birthday"] = ""; -App::$strings["Age: "] = "Alder:"; -App::$strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD eller MM-DD"; -App::$strings["never"] = "aldri"; -App::$strings["less than a second ago"] = "for mindre enn ett sekund siden"; -App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "%1\$d %2\$s siden"; -App::$strings["__ctx:relative_date__ year"] = array( - 0 => "år", - 1 => "år", -); -App::$strings["__ctx:relative_date__ month"] = array( - 0 => "måned", - 1 => "måneder", -); -App::$strings["__ctx:relative_date__ week"] = array( - 0 => "uke", - 1 => "uker", -); -App::$strings["__ctx:relative_date__ day"] = array( - 0 => "dag", - 1 => "dager", -); -App::$strings["__ctx:relative_date__ hour"] = array( - 0 => "time", - 1 => "timer", -); -App::$strings["__ctx:relative_date__ minute"] = array( - 0 => "minutt", - 1 => "minutter", -); -App::$strings["__ctx:relative_date__ second"] = array( - 0 => "sekund", - 1 => "sekunder", -); -App::$strings["%1\$s's birthday"] = "%1\$s sin fødselsdag"; -App::$strings["Happy Birthday %1\$s"] = "Gratulerer med dagen, %1\$s !"; -App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "En slettet gruppe med dette navnet ble gjenopprettet. Eksisterende tillatelser for elementet kan gjelde for denne gruppen og fremtidige medlemmer. Hvis du ønsket noe annet, vennligst lag en ny gruppe med et annet navn."; -App::$strings["Add new connections to this privacy group"] = "Legg nye forbindelser i denne personverngruppen"; -App::$strings["edit"] = "endre"; -App::$strings["Edit group"] = "Endre gruppe"; -App::$strings["Add privacy group"] = "Legg til personverngruppe"; -App::$strings["Channels not in any privacy group"] = "Kanaler uten personverngruppe"; -App::$strings["Delete this item?"] = "Slett dette elementet?"; -App::$strings["[-] show less"] = "[-] Vis mindre"; -App::$strings["[+] expand"] = "[+] Utvid"; -App::$strings["[-] collapse"] = "[-] Lukk"; -App::$strings["Password too short"] = "Passordet er for kort"; -App::$strings["Passwords do not match"] = "Passordene er ikke like"; -App::$strings["everybody"] = "alle"; -App::$strings["Secret Passphrase"] = "Hemmelig passordsetning"; -App::$strings["Passphrase hint"] = "Hint om passordsetning"; -App::$strings["Notice: Permissions have changed but have not yet been submitted."] = "Varsel: Tillatelser har blitt endret, men de har ennå ikke blitt sendt inn."; -App::$strings["close all"] = "Lukk alle"; -App::$strings["Nothing new here"] = "Ikke noe nytt her"; -App::$strings["Rate This Channel (this is public)"] = "Vurder denne kanalen (dette er offentlig)"; -App::$strings["Describe (optional)"] = "Beskriv (valgfritt)"; -App::$strings["Please enter a link URL"] = "Vennligst skriv inn en lenke URL:"; -App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Endringene er ikke lagret. Er du sikker på at du ønsker å forlate denne siden?"; -App::$strings["timeago.prefixAgo"] = "timeago.prefixAgo"; -App::$strings["timeago.prefixFromNow"] = "timeago.prefixFromNow"; -App::$strings["ago"] = "siden"; -App::$strings["from now"] = "fra nå"; -App::$strings["less than a minute"] = "mindre enn ett minutt"; -App::$strings["about a minute"] = "omtrent et minutt"; -App::$strings["%d minutes"] = "%d minutter"; -App::$strings["about an hour"] = "omtrent en time"; -App::$strings["about %d hours"] = "omtrent %d timer"; -App::$strings["a day"] = "en dag"; -App::$strings["%d days"] = "%d dager"; -App::$strings["about a month"] = "omtrent en måned"; -App::$strings["%d months"] = "%d måneder"; -App::$strings["about a year"] = "omtrent et år"; -App::$strings["%d years"] = "%d år"; -App::$strings[" "] = " "; -App::$strings["timeago.numbers"] = "timeago.numbers"; -App::$strings["__ctx:long__ May"] = "mai"; -App::$strings["Jan"] = "Jan"; -App::$strings["Feb"] = "Feb"; -App::$strings["Mar"] = "Mar"; -App::$strings["Apr"] = "Apr"; -App::$strings["__ctx:short__ May"] = "mai"; -App::$strings["Jun"] = "Jun"; -App::$strings["Jul"] = "Jul"; -App::$strings["Aug"] = "Aug"; -App::$strings["Sep"] = "Sep"; -App::$strings["Oct"] = "Okt"; -App::$strings["Nov"] = "Nov"; -App::$strings["Dec"] = "Des"; -App::$strings["Sun"] = "Søn"; -App::$strings["Mon"] = "Man"; -App::$strings["Tue"] = "Tirs"; -App::$strings["Wed"] = "Ons"; -App::$strings["Thu"] = "Tors"; -App::$strings["Fri"] = "Fre"; -App::$strings["Sat"] = "Lør"; -App::$strings["__ctx:calendar__ today"] = "idag"; -App::$strings["__ctx:calendar__ month"] = "måned"; -App::$strings["__ctx:calendar__ week"] = "uke"; -App::$strings["__ctx:calendar__ day"] = "dag"; -App::$strings["__ctx:calendar__ All day"] = "Hele dagen"; -App::$strings["view full size"] = "vis full størrelse"; -App::$strings["No Subject"] = "Uten emne"; -App::$strings["Friendica"] = "Friendica"; -App::$strings["OStatus"] = "OStatus"; -App::$strings["GNU-Social"] = ""; -App::$strings["RSS/Atom"] = "RSS/Atom"; -App::$strings["Diaspora"] = "Diaspora"; -App::$strings["Facebook"] = "Facebook"; -App::$strings["Zot"] = "Zot"; -App::$strings["LinkedIn"] = "LinkedIn"; -App::$strings["XMPP/IM"] = "XMPP/IM"; -App::$strings["MySpace"] = "MySpace"; -App::$strings["Image exceeds website size limit of %lu bytes"] = "Bilde overstiger nettstedets størrelsesbegrensning på %lu bytes"; -App::$strings["Image file is empty."] = "Bildefilen er tom."; -App::$strings["Photo storage failed."] = "Bildelagring mislyktes."; -App::$strings["a new photo"] = "et nytt bilde"; -App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s la inn %2\$s til %3\$s"; -App::$strings["Upload New Photos"] = "Last opp nye bilder"; -App::$strings["Invalid data packet"] = "Ugyldig datapakke"; +App::$strings["Site Admin"] = "Nettstedsadministrator"; +App::$strings["Content Filter"] = ""; +App::$strings["Remote Diagnostics"] = ""; +App::$strings["Suggest Channels"] = "Foreslå kanaler"; +App::$strings["Channel Manager"] = "Kanalstyring"; +App::$strings["Stream"] = ""; +App::$strings["Mail"] = "Melding"; +App::$strings["Chat"] = "Chat"; +App::$strings["Probe"] = "Undersøk"; +App::$strings["Suggest"] = "Forreslå"; +App::$strings["Random Channel"] = "Tilfeldig kanal"; +App::$strings["Invite"] = "Inviter"; +App::$strings["Post"] = "Innlegg"; +App::$strings["Notifications"] = "Varsler"; +App::$strings["Order Apps"] = ""; +App::$strings["CardDAV"] = ""; +App::$strings["OAuth Apps Manager"] = ""; +App::$strings["OAuth2 Apps Manager"] = ""; +App::$strings["PDL Editor"] = ""; +App::$strings["My Chatrooms"] = ""; +App::$strings["Channel Export"] = ""; +App::$strings["Purchase"] = "Kjøp"; +App::$strings["Undelete"] = ""; +App::$strings["Add to app-tray"] = ""; +App::$strings["Remove from app-tray"] = ""; +App::$strings["Pin to navbar"] = ""; +App::$strings["Unpin from navbar"] = ""; +App::$strings["0. Beginner/Basic"] = ""; +App::$strings["1. Novice - not skilled but willing to learn"] = ""; +App::$strings["2. Intermediate - somewhat comfortable"] = ""; +App::$strings["3. Advanced - very comfortable"] = ""; +App::$strings["4. Expert - I can write computer code"] = ""; +App::$strings["5. Wizard - I probably know more than you do"] = ""; +App::$strings["Directory Options"] = "Kataloginnstillinger"; +App::$strings["Safe Mode"] = "Trygt modus"; +App::$strings["Public Forums Only"] = "Bare offentlige forum"; +App::$strings["This Website Only"] = "Kun dette nettstedet"; App::$strings["Unable to verify channel signature"] = "Ikke i stand til å sjekke kanalsignaturen"; +App::$strings["Restricted message"] = ""; +App::$strings["Direct message"] = ""; +App::$strings["Public Policy"] = ""; +App::$strings["Privacy conflict. Discretion advised."] = ""; +App::$strings["Admin Delete"] = ""; +App::$strings["Reply on this comment"] = ""; +App::$strings["reply"] = ""; +App::$strings["Reply to"] = ""; +App::$strings["Delivery Report"] = "Leveringsrapport"; +App::$strings["%d comment"] = array( + 0 => "%d kommentar", + 1 => "%d kommentarer", +); +App::$strings["%d unseen"] = ""; +App::$strings["Forum"] = ""; +App::$strings["to"] = "til"; +App::$strings["Wall-to-Wall"] = "vegg-til-vegg"; +App::$strings["via Wall-To-Wall:"] = "via vegg-til-vegg:"; +App::$strings["Attend"] = ""; +App::$strings["Go to previous comment"] = ""; +App::$strings["Add to Calendar"] = "Legg til i kalender"; +App::$strings["Image"] = "Bilde"; +App::$strings["Insert Link"] = "Sett inn lenke"; +App::$strings["Video"] = "Video"; +App::$strings["Your full name (required)"] = ""; +App::$strings["Your email address (required)"] = ""; +App::$strings["Your website URL (optional)"] = ""; +App::$strings["Source code of failed update: "] = ""; +App::$strings["Update Error at %s"] = "Oppdateringsfeil ved %s"; +App::$strings["Update %s failed. See error logs."] = "Oppdatering %s mislyktes. Se feilloggen."; +App::$strings["Public"] = "Offentlig"; +App::$strings["Anybody in the \$Projectname network"] = ""; +App::$strings["Any account on %s"] = ""; +App::$strings["Any of my connections"] = ""; +App::$strings["Only connections I specifically allow"] = ""; +App::$strings["Anybody authenticated (could include visitors from other networks)"] = ""; +App::$strings["Any connections including those who haven't yet been approved"] = ""; +App::$strings["This is your default setting for the audience of your normal stream, and posts."] = ""; +App::$strings["This is your default setting for who can view your default channel profile"] = ""; +App::$strings["This is your default setting for who can view your connections"] = ""; +App::$strings["This is your default setting for who can view your file storage and photos"] = ""; +App::$strings["This is your default setting for the audience of your webpages"] = ""; App::$strings["Unable to verify site signature for %s"] = "Ikke i stand til å bekrefte signaturen til %s"; -App::$strings["invalid target signature"] = "Målets signatur er ugyldig"; -App::$strings["New Page"] = "Ny side"; -App::$strings["Title"] = "Tittel"; -App::$strings["Can view my normal stream and posts"] = "Kan se min normale strøm og innlegg"; -App::$strings["Can view my default channel profile"] = "Kan se min standard kanalprofil"; -App::$strings["Can view my connections"] = "Kan se mine forbindelser"; -App::$strings["Can view my file storage and photos"] = "Kan se mine filer og bilder"; -App::$strings["Can view my webpages"] = "Kan se mine websider"; -App::$strings["Can send me their channel stream and posts"] = "Kan sende meg deres kanalstrøm og innlegg"; -App::$strings["Can post on my channel page (\"wall\")"] = "Kan lage innlegg på min kanalside (\"vegg\")"; -App::$strings["Can comment on or like my posts"] = "Kan kommentere på eller like mine innlegg"; -App::$strings["Can send me private mail messages"] = "Kan sende meg private meldinger"; -App::$strings["Can like/dislike stuff"] = "Kan like/ikke like forskjellige greier"; -App::$strings["Profiles and things other than posts/comments"] = "Profiler og andre ting enn innlegg/kommentarer"; -App::$strings["Can forward to all my channel contacts via post @mentions"] = "Kan videresende til alle mine kanalkontakter via @navn i innlegg"; -App::$strings["Advanced - useful for creating group forum channels"] = "Avansert - nyttig for å lage forumkanaler for grupper"; -App::$strings["Can chat with me (when available)"] = "Kan chatte/sende lynmeldinger til meg (når tilgjengelig)"; -App::$strings["Can write to my file storage and photos"] = "Kan skrive til mitt lager for filer og bilder"; -App::$strings["Can edit my webpages"] = "Kan endre mine websider"; -App::$strings["Can source my public posts in derived channels"] = "Kan bruke mine offentlige innlegg som kanalkilde i egne kanaler"; -App::$strings["Somewhat advanced - very useful in open communities"] = "Litt avansert - svært nyttig i åpne fellesskap"; -App::$strings["Can administer my channel resources"] = "Kan administrere mine kanalressurser"; -App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Ekstremt avansert. La dette være med mindre du vet hva du gjør"; App::$strings["Social Networking"] = "Sosialt nettverk"; +App::$strings["Social - Federation"] = ""; App::$strings["Social - Mostly Public"] = "Sosial - ganske offentlig"; App::$strings["Social - Restricted"] = "Sosial - begrenset"; App::$strings["Social - Private"] = "Sosial - privat"; @@ -2248,57 +3500,58 @@ App::$strings["Special Purpose"] = "Spesiell bruk"; App::$strings["Special - Celebrity/Soapbox"] = "Spesiell - kjendis/talerstol"; App::$strings["Special - Group Repository"] = "Spesiell - gruppelager"; App::$strings["Custom/Expert Mode"] = "Tilpasset/Ekspertmodus"; -App::$strings[" and "] = "og"; -App::$strings["public profile"] = "offentlig profil"; -App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s endret %2\$s til “%3\$s”"; -App::$strings["Visit %1\$s's %2\$s"] = "Besøk %1\$s sitt %2\$s"; -App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s har oppdatert %2\$s, endret %3\$s."; -App::$strings["Attachments:"] = "Vedlegg:"; -App::$strings["\$Projectname event notification:"] = "\$Projectname hendelsesvarsling:"; -App::$strings["Focus (Hubzilla default)"] = "Focus (Hubzilla standardtema)"; -App::$strings["Theme settings"] = "Temainnstillinger"; -App::$strings["Select scheme"] = "Velg skjema"; -App::$strings["Narrow navbar"] = "Smal navigasjonslinje"; -App::$strings["Navigation bar background color"] = "Navigasjonslinjens bakgrunnsfarge"; -App::$strings["Navigation bar gradient top color"] = "Navigasjonslinjens graderte toppfarge"; -App::$strings["Navigation bar gradient bottom color"] = "Navigasjonslinjens graderte bunnfarge"; -App::$strings["Navigation active button gradient top color"] = "Aktiv navigasjonsknapp sin graderte toppfarge"; -App::$strings["Navigation active button gradient bottom color"] = "Aktiv navigasjonsknapp sin graderte bunnfarge"; -App::$strings["Navigation bar border color "] = "Navigasjonslinjens kantfarge"; -App::$strings["Navigation bar icon color "] = "Navigasjonslinjens ikonfarge"; -App::$strings["Navigation bar active icon color "] = "Navigasjonslinjens aktive ikoners farge"; -App::$strings["link color"] = "lenkefarge"; -App::$strings["Set font-color for banner"] = "Angi skriftfargen for banneret"; -App::$strings["Set the background color"] = "Angi bakgrunnsfargen"; -App::$strings["Set the background image"] = "Angi bakgrunnsbilde"; -App::$strings["Set the background color of items"] = "Angi bakgrunnsfargen til elementer"; -App::$strings["Set the background color of comments"] = "Angi bakgrunnsfargen til kommentarer"; -App::$strings["Set the border color of comments"] = "Angi kantfargen til kommentarer"; -App::$strings["Set the indent for comments"] = "Angi innrykket til kommentarer"; -App::$strings["Set the basic color for item icons"] = "Angi grunnfargen for elementikoner"; -App::$strings["Set the hover color for item icons"] = "Angi fargen til elementikoner ved berøring"; -App::$strings["Set font-size for the entire application"] = "Angi skriftstørrelsen for hele programmet"; -App::$strings["Example: 14px"] = "Eksempel: 14px"; -App::$strings["Set font-size for posts and comments"] = "Angi skriftstørrelse for innlegg og kommentarer"; -App::$strings["Set font-color for posts and comments"] = "Angi skriftfargen for innlegg og kommentarer"; -App::$strings["Set radius of corners"] = "Angi hjørneradius"; -App::$strings["Set shadow depth of photos"] = "Angi skyggedybden til bilder"; -App::$strings["Set maximum width of content region in pixel"] = "Angi største bredde for innholdsregionen i pixler"; -App::$strings["Leave empty for default width"] = "La feltet stå tomt for å bruke standard bredde"; -App::$strings["Left align page content"] = "Venstrejuster sideinnhold"; -App::$strings["Set minimum opacity of nav bar - to hide it"] = "Angi minste dekkevne for navigasjonslinjen - for å skjule den"; -App::$strings["Set size of conversation author photo"] = "Angi størrelsen for samtalens forfatterbilde"; -App::$strings["Set size of followup author photos"] = "Angi størrelsen på forfatterbilder ved oppfølging"; -App::$strings["__ctx:opensearch__ Search %1\$s (%2\$s)"] = ""; -App::$strings["__ctx:opensearch__ \$Projectname"] = ""; -App::$strings["Update %s failed. See error logs."] = "Oppdatering %s mislyktes. Se feilloggen."; -App::$strings["Update Error at %s"] = "Oppdateringsfeil ved %s"; -App::$strings["Create an account to access services and applications within the Hubzilla"] = "Lag en konto for å få tilgang til tjenester og programmer i Hubzilla"; +App::$strings["Personal"] = "Personlig"; +App::$strings["Community forum"] = ""; +App::$strings["Custom"] = ""; +App::$strings["Can view my channel stream and posts"] = ""; +App::$strings["Can send me their channel stream and posts"] = "Kan sende meg deres kanalstrøm og innlegg"; +App::$strings["Can view my default channel profile"] = "Kan se min standard kanalprofil"; +App::$strings["Can view my connections"] = "Kan se mine forbindelser"; +App::$strings["Can view my file storage and photos"] = "Kan se mine filer og bilder"; +App::$strings["Can upload/modify my file storage and photos"] = ""; +App::$strings["Can view my channel webpages"] = ""; +App::$strings["Can view my wiki pages"] = ""; +App::$strings["Can create/edit my channel webpages"] = ""; +App::$strings["Can write to my wiki pages"] = ""; +App::$strings["Can post on my channel (wall) page"] = ""; +App::$strings["Can comment on or like my posts"] = "Kan kommentere på eller like mine innlegg"; +App::$strings["Can send me direct messages"] = ""; +App::$strings["Can like/dislike profiles and profile things"] = ""; +App::$strings["Can chat with me"] = ""; +App::$strings["Can source/mirror my public posts in derived channels"] = ""; +App::$strings["Can administer my channel"] = ""; +App::$strings["Change filename to"] = ""; +App::$strings["Select a target location"] = ""; +App::$strings["Copy to target location"] = ""; +App::$strings["Set permissions for all files and sub folders"] = ""; +App::$strings["Notify your contacts about this file"] = "Varsle dine kontakter om denne filen"; +App::$strings["File category"] = ""; +App::$strings["Total"] = "Totalt"; +App::$strings["Shared"] = "Delt"; +App::$strings["Add Files"] = ""; +App::$strings["parent"] = "opp et nivå"; +App::$strings["Select All"] = ""; +App::$strings["Bulk Actions"] = ""; +App::$strings["Adjust Permissions"] = ""; +App::$strings["Move or Copy"] = ""; +App::$strings["Info"] = ""; +App::$strings["Rename"] = ""; +App::$strings["Attachment BBcode"] = ""; +App::$strings["Embed BBcode"] = ""; +App::$strings["Link BBcode"] = ""; +App::$strings["You are using %1\$s of your available file storage."] = "Du bruker %1\$s av din tilgjengelige lagringsplass."; +App::$strings["You are using %1\$s of %2\$s available file storage. (%3\$s%)"] = "Du bruker %1\$s av %2\$s tilgjengelig lagringsplass (%3\$s%)"; +App::$strings["WARNING:"] = "ADVARSEL:"; +App::$strings["Create new folder"] = "Lag ny mappe"; +App::$strings["Upload file"] = "Last opp fil"; +App::$strings["Drop files here to immediately upload"] = ""; +App::$strings["You can select files via the upload button or drop them right here or into an existing folder."] = ""; +App::$strings["Create an account to access services and applications"] = ""; +App::$strings["Email or nickname"] = ""; App::$strings["Password"] = "Passord"; App::$strings["Remember me"] = "Husk meg"; App::$strings["Forgot your password?"] = "Glemt passordet ditt?"; -App::$strings["toggle mobile"] = "Skru på mobil"; +App::$strings["[\$Projectname] Website SSL error for %s"] = ""; App::$strings["Website SSL certificate is not valid. Please correct."] = "Nettstedets SSL-sertifikat er ikke gyldig. Vennligst fiks dette."; -App::$strings["[hubzilla] Website SSL error for %s"] = "[hubzilla] SSL-feil ved nettsted hos %s"; +App::$strings["[\$Projectname] Cron tasks not running on %s"] = ""; App::$strings["Cron/Scheduled tasks not running."] = "Cron/planlagte oppgaver kjører ikke."; -App::$strings["[hubzilla] Cron tasks not running on %s"] = "[hubzilla] Cron-oppgaver kjører ikke på %s"; -- cgit v1.2.3 From 539b69d507d609e15d4cc0ff9cc7ee3ca858deb1 Mon Sep 17 00:00:00 2001 From: Mario Date: Sat, 3 Dec 2022 08:53:53 +0000 Subject: look for iconfig at the right place, fix mod sharedwithme, comment out unused configs --- Zotlabs/Lib/Activity.php | 8 ++++--- Zotlabs/Module/Admin/Site.php | 18 +++++++-------- Zotlabs/Module/Sharedwithme.php | 51 ++++++++++++++--------------------------- 3 files changed, 31 insertions(+), 46 deletions(-) diff --git a/Zotlabs/Lib/Activity.php b/Zotlabs/Lib/Activity.php index 9dbb15c28..8f4e0444c 100644 --- a/Zotlabs/Lib/Activity.php +++ b/Zotlabs/Lib/Activity.php @@ -672,6 +672,7 @@ class Activity { } } } + return $ret; } @@ -2456,7 +2457,7 @@ class Activity { $s['attach'] = $a; } - $a = self::decode_iconfig($act->obj); + $a = self::decode_iconfig($act->data); if ($a) { $s['iconfig'] = $a; } @@ -2786,8 +2787,9 @@ class Activity { set_iconfig($s, 'diaspora', 'fields', $diaspora_rawmsg, 1); } - set_iconfig($s, 'activitypub', 'recips', $act->raw_recips); - + if ($act->raw_recips) { + set_iconfig($s, 'activitypub', 'recips', $act->raw_recips); + } $hookinfo = [ 'act' => $act, diff --git a/Zotlabs/Module/Admin/Site.php b/Zotlabs/Module/Admin/Site.php index 85f81e344..7e186fe34 100644 --- a/Zotlabs/Module/Admin/Site.php +++ b/Zotlabs/Module/Admin/Site.php @@ -83,9 +83,9 @@ class Site { $proxyuser = ((x($_POST,'proxyuser')) ? notags(trim($_POST['proxyuser'])) : ''); $proxy = ((x($_POST,'proxy')) ? notags(trim($_POST['proxy'])) : ''); $timeout = ((x($_POST,'timeout')) ? intval(trim($_POST['timeout'])) : 60); - $delivery_interval = ((x($_POST,'delivery_interval'))? intval(trim($_POST['delivery_interval'])) : 0); + //$delivery_interval = ((x($_POST,'delivery_interval'))? intval(trim($_POST['delivery_interval'])) : 0); $delivery_batch_count = ((x($_POST,'delivery_batch_count') && $_POST['delivery_batch_count'] > 0)? intval(trim($_POST['delivery_batch_count'])) : 1); - $poll_interval = ((x($_POST,'poll_interval')) ? intval(trim($_POST['poll_interval'])) : 0); + //$poll_interval = ((x($_POST,'poll_interval')) ? intval(trim($_POST['poll_interval'])) : 0); $maxloadavg = ((x($_POST,'maxloadavg')) ? intval(trim($_POST['maxloadavg'])) : 50); $feed_contacts = ((x($_POST,'feed_contacts')) ? intval($_POST['feed_contacts']) : 0); $verify_email = ((x($_POST,'verify_email')) ? 1 : 0); @@ -100,7 +100,7 @@ class Site { $reg_expire = (preg_match('/^[a-z]{1,1}$/', $regexpireu) ? $regexpiren . $regexpireu : ''); $imagick_path = ((x($_POST,'imagick_path')) ? trim($_POST['imagick_path']) : ''); - $force_queue = ((intval($_POST['force_queue']) > 0) ? intval($_POST['force_queue']) : 3000); + //$force_queue = ((intval($_POST['force_queue']) > 0) ? intval($_POST['force_queue']) : 3000); $pub_incl = escape_tags(trim($_POST['pub_incl'])); $pub_excl = escape_tags(trim($_POST['pub_excl'])); @@ -136,9 +136,9 @@ class Site { // <-hilmar] set_config('system', 'feed_contacts', $feed_contacts); - set_config('system', 'delivery_interval', $delivery_interval); + //set_config('system', 'delivery_interval', $delivery_interval); set_config('system', 'delivery_batch_count', $delivery_batch_count); - set_config('system', 'poll_interval', $poll_interval); + //set_config('system', 'poll_interval', $poll_interval); set_config('system', 'maxloadavg', $maxloadavg); set_config('system', 'frontpage', $frontpage); set_config('system', 'sellpage', $site_sellpage); @@ -205,7 +205,7 @@ class Site { set_config('system','disable_discover_tab', $disable_discover_tab); set_config('system','site_firehose', $site_firehose); set_config('system','open_pubstream', $open_pubstream); - set_config('system','force_queue_threshold', $force_queue); + //set_config('system','force_queue_threshold', $force_queue); if ($global_directory == '') { del_config('system', 'directory_submit_url'); } else { @@ -530,10 +530,10 @@ class Site { '$proxyuser' => array('proxyuser', t("Proxy user"), get_config('system','proxyuser'), ""), '$proxy' => array('proxy', t("Proxy URL"), get_config('system','proxy'), ""), '$timeout' => array('timeout', t("Network timeout"), (x(get_config('system','curl_timeout'))?get_config('system','curl_timeout'):60), t("Value is in seconds. Set to 0 for unlimited (not recommended).")), - '$delivery_interval' => array('delivery_interval', t("Delivery interval"), (x(get_config('system','delivery_interval'))?get_config('system','delivery_interval'):2), t("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.")), + //'$delivery_interval' => array('delivery_interval', t("Delivery interval"), (x(get_config('system','delivery_interval'))?get_config('system','delivery_interval'):2), t("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.")), '$delivery_batch_count' => array('delivery_batch_count', t('Deliveries per process'),(x(get_config('system','delivery_batch_count'))?get_config('system','delivery_batch_count'):1), t("Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5.")), - '$force_queue' => array('force_queue', t("Queue Threshold"), get_config('system','force_queue_threshold',3000), t("Always defer immediate delivery if queue contains more than this number of entries.")), - '$poll_interval' => array('poll_interval', t("Poll interval"), (x(get_config('system','poll_interval'))?get_config('system','poll_interval'):2), t("Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval.")), + //'$force_queue' => array('force_queue', t("Queue Threshold"), get_config('system','force_queue_threshold',3000), t("Always defer immediate delivery if queue contains more than this number of entries.")), + //'$poll_interval' => array('poll_interval', t("Poll interval"), (x(get_config('system','poll_interval'))?get_config('system','poll_interval'):2), t("Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval.")), '$imagick_path' => array('imagick_path', t("Path to ImageMagick convert program"), get_config('system','imagick_convert_path'), t("If set, use this program to generate photo thumbnails for huge images ( > 4000 pixels in either dimension), otherwise memory exhaustion may occur. Example: /usr/bin/convert")), '$maxloadavg' => array('maxloadavg', t("Maximum Load Average"), ((intval(get_config('system','maxloadavg')) > 0)?get_config('system','maxloadavg'):50), t("Maximum system load before delivery and poll processes are deferred - default 50.")), '$default_expire_days' => array('default_expire_days', t('Expiration period in days for imported (grid/network) content'), intval(get_config('system','default_expire_days')), t('0 for no expiration of imported content')), diff --git a/Zotlabs/Module/Sharedwithme.php b/Zotlabs/Module/Sharedwithme.php index 4211a3af8..c294079d4 100644 --- a/Zotlabs/Module/Sharedwithme.php +++ b/Zotlabs/Module/Sharedwithme.php @@ -19,13 +19,13 @@ class Sharedwithme extends Controller { notice( t('Permission denied.') . EOL); return; } - + $channel = \App::get_channel(); - + $is_owner = (local_channel() && (local_channel() == $channel['channel_id'])); $item_normal = item_normal(); - + //drop single file - localuser if((argc() > 2) && (argv(2) === 'drop')) { @@ -36,7 +36,7 @@ class Sharedwithme extends Controller { goaway(z_root() . '/sharedwithme'); } - + //drop all files - localuser if((argc() > 1) && (argv(1) === 'dropall')) { @@ -62,33 +62,34 @@ class Sharedwithme extends Controller { dbesc($channel['channel_hash']) ); + $r = fetch_post_tags($r, true); + $items = []; $ids = []; if($r) { - + foreach($r as $rr) { - $object = json_decode($rr['obj'],true); - $meta = self::get_meta($object); + $meta = get_iconfig($rr, 'attach', 'meta'); $item = []; $item['id'] = $rr['id']; $item['objfiletype'] = $meta['type']; $item['objfiletypeclass'] = getIconFromType($meta['type']); $item['objurl'] = $meta['path'] . '?f=&zid=' . $channel['xchan_addr']; - $item['objfilename'] = $object['name']; + $item['objfilename'] = $meta['name']; $item['objfilesize'] = userReadableSize($meta['size']); $item['objedited'] = $meta['edited']; $item['unseen'] = $rr['item_unseen']; - + $items[] = $item; - + if($item['unseen']) { $ids[] = $rr['id']; } - + } - + } $ids = implode(',', $ids); @@ -98,9 +99,9 @@ class Sharedwithme extends Controller { intval(local_channel()) ); } - + $o = ''; - + $o .= replace_macros(get_markup_template('sharedwithme.tpl'), array( '$header' => t('Files: shared with me'), '$name' => t('Name'), @@ -111,27 +112,9 @@ class Sharedwithme extends Controller { '$drop' => t('Remove this file'), '$items' => $items )); - - return $o; - - } - - function get_meta($object) { - - $ret = []; - - if(! is_array($object['attachment'])) - return; - foreach($object['attachment'] as $a) { - if($a['name'] === 'zot.attach.meta') { - $ret = $a['value']; - break; - } - } - - return $ret; + return $o; } - + } -- cgit v1.2.3 From b4dffe5946c5c2b43a7f941e1076bf5026812508 Mon Sep 17 00:00:00 2001 From: Mario Date: Sat, 3 Dec 2022 08:57:56 +0000 Subject: changelog 7.8.7 --- CHANGELOG | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG b/CHANGELOG index 9bdfaa8a0..be5a3bbce 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,8 @@ +Hubzilla 7.8.7 (2022-12-03) + - Fix regression when adding feed contacts + - Fix regression new channel calendar event not created + + Hubzilla 7.8.6 (2022-11-14) - Fix typo in boot.php -- cgit v1.2.3 From 79e6c9590ab4960661e672dfae8b2e640d2e923b Mon Sep 17 00:00:00 2001 From: Mario Date: Sun, 4 Dec 2022 10:27:02 +0000 Subject: the logic for public stream has changed - adjust help text and externals, disable lockfile check in cron daemon --- Zotlabs/Daemon/Cron.php | 10 ++++++---- Zotlabs/Module/Admin/Site.php | 6 +++--- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/Zotlabs/Daemon/Cron.php b/Zotlabs/Daemon/Cron.php index c3158a4eb..9b8946e57 100644 --- a/Zotlabs/Daemon/Cron.php +++ b/Zotlabs/Daemon/Cron.php @@ -19,6 +19,7 @@ class Cron { } } +/* // Check for a lockfile. If it exists, but is over an hour old, it's stale. Ignore it. $lockfile = 'store/[data]/cron'; if ((file_exists($lockfile)) && (filemtime($lockfile) > (time() - 3600)) @@ -30,6 +31,7 @@ class Cron { // Create a lockfile. Needs two vars, but $x doesn't need to contain anything. $x = ''; file_put_contents($lockfile, $x); +*/ logger('cron: start'); @@ -209,10 +211,10 @@ class Cron { } - // pull in some public posts + // pull in some public posts if allowed - $disable_discover_tab = get_config('system', 'disable_discover_tab') || get_config('system', 'disable_discover_tab') === false; - if (!$disable_discover_tab) + $disable_externals = get_config('system', 'disable_discover_tab') || get_config('system', 'disable_discover_tab') === false || get_config('system', 'site_firehose'); + if (!$disable_externals) Master::Summon(['Externals']); $restart = false; @@ -234,7 +236,7 @@ class Cron { set_config('system', 'lastcron', datetime_convert()); //All done - clear the lockfile - @unlink($lockfile); + //@unlink($lockfile); return; } diff --git a/Zotlabs/Module/Admin/Site.php b/Zotlabs/Module/Admin/Site.php index 7e186fe34..6b93a98f9 100644 --- a/Zotlabs/Module/Admin/Site.php +++ b/Zotlabs/Module/Admin/Site.php @@ -509,9 +509,9 @@ class Site { '$mirror_frontpage' => array('mirror_frontpage', t("Preserve site homepage URL"), get_config('system','mirror_frontpage'), t('Present the site homepage in a frame at the original location instead of redirecting')), '$allowed_sites' => array('allowed_sites', t("Allowed friend domains"), get_config('system','allowed_sites'), t("Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains")), '$force_publish' => array('publish_all', t("Force publish"), get_config('system','publish_all'), t("Check to force all profiles on this site to be listed in the site directory.")), - '$disable_discover_tab' => array('disable_discover_tab', t('Import Public Streams'), $discover_tab, t('Import and allow access to public content pulled from other sites. Warning: this content is unmoderated.')), - '$site_firehose' => array('site_firehose', t('Site only Public Streams'), get_config('system','site_firehose'), t('Allow access to public content originating only from this site if Imported Public Streams are disabled.')), - '$open_pubstream' => array('open_pubstream', t('Allow anybody on the internet to access the Public streams'), get_config('system','open_pubstream',1), t('Disable to require authentication before viewing. Warning: this content is unmoderated.')), + '$disable_discover_tab' => array('disable_discover_tab', t('Enable public stream'), $discover_tab, t('Enable the public stream. Warning: this content is unmoderated.')), + '$site_firehose' => array('site_firehose', t('Site only public stream'), get_config('system','site_firehose'), t('Only allow public content origianting from this site in the public stream')), + '$open_pubstream' => array('open_pubstream', t('Allow anybody on the internet to access the Public streams'), get_config('system','open_pubstream',1), t('Disable to require authentication before viewing.')), '$incl' => array('pub_incl',t('Only import Public stream posts with this text'), get_config('system','pubstream_incl'),t('words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts')), '$excl' => array('pub_excl',t('Do not import Public stream posts with this text'), get_config('system','pubstream_excl'),t('words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts')), -- cgit v1.2.3 From 7a40561aaa2595c1175017cd6e5169869f47fc59 Mon Sep 17 00:00:00 2001 From: Mario Date: Sun, 4 Dec 2022 10:36:30 +0000 Subject: wording --- Zotlabs/Module/Admin/Site.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Zotlabs/Module/Admin/Site.php b/Zotlabs/Module/Admin/Site.php index 6b93a98f9..e518adb17 100644 --- a/Zotlabs/Module/Admin/Site.php +++ b/Zotlabs/Module/Admin/Site.php @@ -508,10 +508,10 @@ class Site { '$frontpage' => array('frontpage', t("Site homepage to show visitors (default: login box)"), get_config('system','frontpage'), t("example: 'pubstream' to show public stream, 'page/sys/home' to show a system webpage called 'home' or 'include:home.html' to include a file.")), '$mirror_frontpage' => array('mirror_frontpage', t("Preserve site homepage URL"), get_config('system','mirror_frontpage'), t('Present the site homepage in a frame at the original location instead of redirecting')), '$allowed_sites' => array('allowed_sites', t("Allowed friend domains"), get_config('system','allowed_sites'), t("Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains")), - '$force_publish' => array('publish_all', t("Force publish"), get_config('system','publish_all'), t("Check to force all profiles on this site to be listed in the site directory.")), - '$disable_discover_tab' => array('disable_discover_tab', t('Enable public stream'), $discover_tab, t('Enable the public stream. Warning: this content is unmoderated.')), - '$site_firehose' => array('site_firehose', t('Site only public stream'), get_config('system','site_firehose'), t('Only allow public content origianting from this site in the public stream')), - '$open_pubstream' => array('open_pubstream', t('Allow anybody on the internet to access the Public streams'), get_config('system','open_pubstream',1), t('Disable to require authentication before viewing.')), + '$force_publish' => array('publish_all', t("Force publish"), get_config('system','publish_all'), t("Check to force all profiles on this site to be listed in the site directory")), + '$disable_discover_tab' => array('disable_discover_tab', t('Enable public stream'), $discover_tab, t('Enable the public stream. Warning: this content is unmoderated')), + '$site_firehose' => array('site_firehose', t('Site only public stream'), get_config('system','site_firehose'), t('Restrict the public stream to content origianting from this site')), + '$open_pubstream' => array('open_pubstream', t('Allow anybody on the internet to access the public streams'), get_config('system','open_pubstream',1), t('Disable to require authentication before viewing')), '$incl' => array('pub_incl',t('Only import Public stream posts with this text'), get_config('system','pubstream_incl'),t('words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts')), '$excl' => array('pub_excl',t('Do not import Public stream posts with this text'), get_config('system','pubstream_excl'),t('words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts')), -- cgit v1.2.3 From 0184d2c292b2ee4d904cb00cc48110b4a79376dd Mon Sep 17 00:00:00 2001 From: Mario Date: Sun, 4 Dec 2022 10:43:57 +0000 Subject: typo --- Zotlabs/Module/Admin/Site.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Zotlabs/Module/Admin/Site.php b/Zotlabs/Module/Admin/Site.php index e518adb17..e3feee1bb 100644 --- a/Zotlabs/Module/Admin/Site.php +++ b/Zotlabs/Module/Admin/Site.php @@ -510,7 +510,7 @@ class Site { '$allowed_sites' => array('allowed_sites', t("Allowed friend domains"), get_config('system','allowed_sites'), t("Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains")), '$force_publish' => array('publish_all', t("Force publish"), get_config('system','publish_all'), t("Check to force all profiles on this site to be listed in the site directory")), '$disable_discover_tab' => array('disable_discover_tab', t('Enable public stream'), $discover_tab, t('Enable the public stream. Warning: this content is unmoderated')), - '$site_firehose' => array('site_firehose', t('Site only public stream'), get_config('system','site_firehose'), t('Restrict the public stream to content origianting from this site')), + '$site_firehose' => array('site_firehose', t('Site only public stream'), get_config('system','site_firehose'), t('Restrict the public stream to content originating at this site')), '$open_pubstream' => array('open_pubstream', t('Allow anybody on the internet to access the public streams'), get_config('system','open_pubstream',1), t('Disable to require authentication before viewing')), '$incl' => array('pub_incl',t('Only import Public stream posts with this text'), get_config('system','pubstream_incl'),t('words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts')), '$excl' => array('pub_excl',t('Do not import Public stream posts with this text'), get_config('system','pubstream_excl'),t('words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts')), -- cgit v1.2.3 From 6952c5a3f5b2eb975b530aad48f3bbd57bcc1451 Mon Sep 17 00:00:00 2001 From: Mario Date: Tue, 6 Dec 2022 11:15:53 +0000 Subject: $visitor is a string --- include/photos.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/photos.php b/include/photos.php index de9cc6b13..6e00ffbf0 100644 --- a/include/photos.php +++ b/include/photos.php @@ -64,7 +64,7 @@ function photo_upload($channel, $observer, $args) { } $ac = $acl->get(); - +hz_syslog(print_r($ac,true)); $width = $height = 0; if ($args['getimagesize']) { @@ -405,7 +405,7 @@ function photo_upload($channel, $observer, $args) { } } - $attribution = (($visitor) ? $visitor['xchan_url'] : $channel['xchan_url']); + $attribution = (($visitor) ? $visitor : $channel['xchan_url']); //// Create item object $object = [ -- cgit v1.2.3 From abae5de4d8cf864b7a40445cb63191f09f17c248 Mon Sep 17 00:00:00 2001 From: Mario Date: Wed, 7 Dec 2022 10:50:26 +0000 Subject: when uploading a image file, embed it in the item. otherwise attach it --- include/attach.php | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/include/attach.php b/include/attach.php index fd418103d..fc146d008 100644 --- a/include/attach.php +++ b/include/attach.php @@ -2105,8 +2105,22 @@ function attach_store_item($channel, $observer, $file) { $arr['verb'] = ACTIVITY_CREATE; $arr['obj_type'] = $type; $arr['title'] = $file['filename']; - $body_str = sprintf(t('%s shared a %s with you'), '[zrl=' . $observer['xchan_url'] . ']' . $observer['xchan_name'] . '[/zrl]', '[zrl=' . $path . ']' . t('file') . '[/zrl]'); - $arr['body'] = $body_str; + + if ($type === 'Image') { + $arr['body'] = '[zrl=' . $path . '][zmg=' . $path . ']' . $file['display_path'] . '[/zmg][/zrl]'; + } + else { + $arr['attach'][] = [ + 'href' => z_root() . '/attach/' . $resource_id, + 'length' => $file['filesize'], + 'type' => $file['filetype'], + 'title' => urlencode($file['filename']), + 'revision' => $file['revision'] + ]; + } + + $body_str = sprintf((($type === 'Image') ? t('%s shared an %s with you') : t('%s shared a %s with you')), '[zrl=' . $observer['xchan_url'] . ']' . $observer['xchan_name'] . '[/zrl]', '[zrl=' . $path . ']' . (($type === 'Image') ? t('image') : t('file')) . '[/zrl]'); + $arr['body'] .= $body_str; $meta = [ 'name' => $file['filename'], -- cgit v1.2.3 From 3ba27b9752a38da7d0108bfa181c10b50e5e9383 Mon Sep 17 00:00:00 2001 From: Mario Date: Wed, 7 Dec 2022 11:01:28 +0000 Subject: add mark to html2bbcode parser --- include/html2bbcode.php | 1 + 1 file changed, 1 insertion(+) diff --git a/include/html2bbcode.php b/include/html2bbcode.php index 0aa067371..c928b91b1 100644 --- a/include/html2bbcode.php +++ b/include/html2bbcode.php @@ -171,6 +171,7 @@ function html2bbcode($message) node2bbcode($doc, 'i', array(), '[i]', '[/i]'); node2bbcode($doc, 'u', array(), '[u]', '[/u]'); node2bbcode($doc, 's', array(), '[s]', '[/s]'); + node2bbcode($doc, 'mark', array(), '[mark]', '[/mark]'); node2bbcode($doc, 'big', array(), "[size=large]", "[/size]"); node2bbcode($doc, 'small', array(), "[size=small]", "[/size]"); -- cgit v1.2.3 From 9f8585914c59117a41cd232435bc1e592ebdc0f1 Mon Sep 17 00:00:00 2001 From: Mario Date: Wed, 7 Dec 2022 14:07:31 +0000 Subject: sse_bs: respect the site firehose setting --- Zotlabs/Module/Sse_bs.php | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/Zotlabs/Module/Sse_bs.php b/Zotlabs/Module/Sse_bs.php index 4aabcafcb..ca9630c02 100644 --- a/Zotlabs/Module/Sse_bs.php +++ b/Zotlabs/Module/Sse_bs.php @@ -421,13 +421,19 @@ class Sse_bs extends Controller { if(self::$xchans) $sql_extra2 = " AND CASE WHEN verb = '" . ACTIVITY_SHARE . "' THEN owner_xchan ELSE author_xchan END IN (" . self::$xchans . ") "; + $uids = " AND uid IN ( " . $sys['channel_id'] . " ) "; + + $site_firehose = get_config('system', 'site_firehose', 0); + if($site_firehose) { + $uids = " AND uid IN ( " . stream_perms_api_uids(PERMS_PUBLIC) . " ) AND item_private = 0 AND item_wall = 1 "; + } + $item_normal = item_normal(); if ($notifications) { $items = q("SELECT * FROM item - WHERE uid = %d + WHERE true $uids AND created <= '%s' - AND item_unseen = 1 AND obj_type NOT IN ('Document', 'Video', 'Audio', 'Image') AND author_xchan != '%s' AND created > '%s' @@ -435,7 +441,6 @@ class Sse_bs extends Controller { $sql_extra $sql_extra2 ORDER BY created DESC LIMIT $limit OFFSET $offset", - intval($sys['channel_id']), dbescdate($_SESSION['sse_loadtime']), dbesc(self::$ob_hash), dbescdate($_SESSION['static_loadtime']) @@ -454,17 +459,14 @@ class Sse_bs extends Controller { else { $result['pubs']['offset'] = -1; } - - } $r = q("SELECT id FROM item - WHERE uid = %d AND item_unseen = 1 + WHERE true $uids AND created > '%s' $item_normal $sql_extra AND author_xchan != '%s' LIMIT 100", - intval($sys['channel_id']), dbescdate($_SESSION['static_loadtime']), dbesc(self::$ob_hash) ); -- cgit v1.2.3 From 4f9a933108eb0a41671ec9464f1d7fb90c2d2233 Mon Sep 17 00:00:00 2001 From: Mario Date: Thu, 8 Dec 2022 20:40:37 +0000 Subject: exclude not tagable xchan networks handle_tag() --- include/text.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/text.php b/include/text.php index af6ad7ea2..cc480aacf 100644 --- a/include/text.php +++ b/include/text.php @@ -2969,7 +2969,7 @@ function handle_tag(&$body, &$str_tags, $profile_uid, $tag, $in_network = true) $newname = substr($name,1); $newname = substr($newname,0,-1); - $r = q("SELECT * FROM xchan WHERE ( xchan_addr = '%s' OR xchan_url = '%s' ) AND xchan_deleted = 0", + $r = q("SELECT * FROM xchan WHERE ( xchan_addr = '%s' OR xchan_url = '%s' ) AND xchan_deleted = 0 AND NOT xchan_network IN ('rss', 'anon', 'unknown')", dbesc($newname), dbesc($newname) ); @@ -2995,7 +2995,7 @@ function handle_tag(&$body, &$str_tags, $profile_uid, $tag, $in_network = true) // select someone from this user's contacts by name $r = q("SELECT * FROM abook LEFT JOIN xchan ON abook_xchan = xchan_hash - WHERE xchan_name = '%s' AND abook_channel = %d AND xchan_deleted = 0", + WHERE xchan_name = '%s' AND abook_channel = %d AND xchan_deleted = 0 AND NOT xchan_network IN ('rss', 'anon', 'unknown')", dbesc($newname), intval($profile_uid) ); @@ -3004,7 +3004,7 @@ function handle_tag(&$body, &$str_tags, $profile_uid, $tag, $in_network = true) if((! $r) && strpos($newname,'@')) { $r = q("SELECT * FROM xchan LEFT JOIN hubloc ON xchan_hash = hubloc_hash - WHERE hubloc_addr = '%s' AND xchan_deleted = 0 ", + WHERE hubloc_addr = '%s' AND xchan_deleted = 0 AND NOT xchan_network IN ('rss', 'anon', 'unknown')", dbesc($newname) ); } @@ -3016,7 +3016,7 @@ function handle_tag(&$body, &$str_tags, $profile_uid, $tag, $in_network = true) $newname = str_replace('%','',$newname); $r = q("SELECT * FROM abook LEFT JOIN xchan ON abook_xchan = xchan_hash - WHERE xchan_addr LIKE ('%s') AND abook_channel = %d AND xchan_deleted = 0", + WHERE xchan_addr LIKE ('%s') AND abook_channel = %d AND xchan_deleted = 0 AND NOT xchan_network IN ('rss', 'anon', 'unknown')", dbesc(((strpos($newname,'@')) ? $newname : $newname . '@%')), intval($profile_uid) ); -- cgit v1.2.3 From 5c6d3753efc5b2534dbfd69a43c30d05bfc9096b Mon Sep 17 00:00:00 2001 From: Max Kostikov Date: Fri, 9 Dec 2022 15:53:01 +0000 Subject: Fix Redis session PHP warnings --- Zotlabs/Web/SessionRedis.php | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Zotlabs/Web/SessionRedis.php b/Zotlabs/Web/SessionRedis.php index 66eb7a02d..f32e6a4f4 100644 --- a/Zotlabs/Web/SessionRedis.php +++ b/Zotlabs/Web/SessionRedis.php @@ -42,7 +42,7 @@ class SessionRedis implements \SessionHandlerInterface { } } - + #[\ReturnTypeWillChange] function open($s, $n) { return true; @@ -53,6 +53,7 @@ class SessionRedis implements \SessionHandlerInterface { // some which call read explicitly and some that do not. So we call it explicitly // just after sid regeneration to force a record to exist. + #[\ReturnTypeWillChange] function read($id) { if ($id) { @@ -67,7 +68,7 @@ class SessionRedis implements \SessionHandlerInterface { return ''; } - + #[\ReturnTypeWillChange] function write($id, $data) { // Pretend everything is hunky-dory, even though it isn't. @@ -100,13 +101,13 @@ class SessionRedis implements \SessionHandlerInterface { return true; } - + #[\ReturnTypeWillChange] function close() { return true; } - + #[\ReturnTypeWillChange] function destroy ($id) { $this->redis->del($id); @@ -114,7 +115,7 @@ class SessionRedis implements \SessionHandlerInterface { return true; } - + #[\ReturnTypeWillChange] function gc($expire) { return true; -- cgit v1.2.3 From e1c28351734d175476bc8f0d6cdf261dee3c07e0 Mon Sep 17 00:00:00 2001 From: Mario Date: Sat, 10 Dec 2022 17:03:57 +0000 Subject: add option to set worker sleep based on load average, remove redundand code and add return to some daemons --- Zotlabs/Daemon/Addon.php | 1 + Zotlabs/Daemon/Cache_embeds.php | 4 +++- Zotlabs/Daemon/Cache_query.php | 4 +++- Zotlabs/Daemon/Cli_suggest.php | 1 + Zotlabs/Daemon/Convo.php | 31 +++++++++++++++++++------------ Zotlabs/Daemon/Cron_daily.php | 2 ++ Zotlabs/Daemon/Cron_weekly.php | 11 ++++++----- Zotlabs/Daemon/Deliver.php | 2 ++ Zotlabs/Daemon/Deliver_hooks.php | 6 +++++- Zotlabs/Daemon/Directory.php | 2 ++ Zotlabs/Daemon/Expire.php | 2 ++ Zotlabs/Daemon/Importdoc.php | 2 ++ Zotlabs/Daemon/Master.php | 1 + Zotlabs/Daemon/Queue.php | 2 ++ Zotlabs/Daemon/Thumbnail.php | 2 ++ Zotlabs/Lib/QueueWorker.php | 26 +++++++++++++++++++------- boot.php | 18 +----------------- 17 files changed, 73 insertions(+), 44 deletions(-) diff --git a/Zotlabs/Daemon/Addon.php b/Zotlabs/Daemon/Addon.php index c6778750d..126e11cf6 100644 --- a/Zotlabs/Daemon/Addon.php +++ b/Zotlabs/Daemon/Addon.php @@ -7,6 +7,7 @@ class Addon { static public function run($argc, $argv) { call_hooks('daemon_addon', $argv); + return; } diff --git a/Zotlabs/Daemon/Cache_embeds.php b/Zotlabs/Daemon/Cache_embeds.php index 9e5b8d2bb..d5adfcc59 100644 --- a/Zotlabs/Daemon/Cache_embeds.php +++ b/Zotlabs/Daemon/Cache_embeds.php @@ -19,8 +19,10 @@ class Cache_embeds { $item = $c[0]; // bbcode conversion by default processes embeds that aren't already cached. - // Ignore the returned html output. + // Ignore the returned html output. bbcode($item['body']); + + return; } } diff --git a/Zotlabs/Daemon/Cache_query.php b/Zotlabs/Daemon/Cache_query.php index 5f92ae6d0..cd9597e9a 100644 --- a/Zotlabs/Daemon/Cache_query.php +++ b/Zotlabs/Daemon/Cache_query.php @@ -24,7 +24,7 @@ class Cache_query { array_shift($argv); array_shift($argv); - + $arr = json_decode(base64_decode($argv[0]), true); $r = call_user_func_array('q', $arr); @@ -32,5 +32,7 @@ class Cache_query { Cache::set($key, serialize($r)); del_config('procid', $key); + + return; } } diff --git a/Zotlabs/Daemon/Cli_suggest.php b/Zotlabs/Daemon/Cli_suggest.php index 5dced462d..6306d2113 100644 --- a/Zotlabs/Daemon/Cli_suggest.php +++ b/Zotlabs/Daemon/Cli_suggest.php @@ -9,6 +9,7 @@ class Cli_suggest { static public function run($argc,$argv) { update_suggestions(); + return: } } diff --git a/Zotlabs/Daemon/Convo.php b/Zotlabs/Daemon/Convo.php index 940216b2c..d1a7e4f4d 100644 --- a/Zotlabs/Daemon/Convo.php +++ b/Zotlabs/Daemon/Convo.php @@ -30,6 +30,7 @@ class Convo { intval($channel_id), dbesc($contact_hash) ); + if (!$r) { return; } @@ -40,19 +41,25 @@ class Convo { $messages = $obj->get(); - if ($messages) { - foreach ($messages as $message) { - if (is_string($message)) { - $message = Activity::fetch($message, $channel); - } - // set client flag because comments will probably just be objects and not full blown activities - // and that lets us use implied_create - $AS = new ActivityStreams($message); - if ($AS->is_valid() && is_array($AS->obj)) { - $item = Activity::decode_note($AS); - Activity::store($channel, $contact['abook_xchan'], $AS, $item); - } + if (!$messages) { + return; + } + + foreach ($messages as $message) { + if (is_string($message)) { + $message = Activity::fetch($message, $channel); + } + + // set client flag because comments will probably just be objects and not full blown activities + // and that lets us use implied_create + $AS = new ActivityStreams($message); + if ($AS->is_valid() && is_array($AS->obj)) { + $item = Activity::decode_note($AS); + Activity::store($channel, $contact['abook_xchan'], $AS, $item); } } + + return; + } } diff --git a/Zotlabs/Daemon/Cron_daily.php b/Zotlabs/Daemon/Cron_daily.php index 71d3bc9ef..6d62836c7 100644 --- a/Zotlabs/Daemon/Cron_daily.php +++ b/Zotlabs/Daemon/Cron_daily.php @@ -119,5 +119,7 @@ class Cron_daily { /** * End Cron Daily */ + + return; } } diff --git a/Zotlabs/Daemon/Cron_weekly.php b/Zotlabs/Daemon/Cron_weekly.php index 407aa40ef..75fb94700 100644 --- a/Zotlabs/Daemon/Cron_weekly.php +++ b/Zotlabs/Daemon/Cron_weekly.php @@ -22,12 +22,12 @@ class Cron_weekly { mark_orphan_hubsxchans(); - // Find channels that were removed in the last three weeks, but + // Find channels that were removed in the last three weeks, but // haven't been finally cleaned up. These should be older than 10 - // days to ensure that "purgeall" messages have gone out or bounced - // or timed out. + // days to ensure that "purgeall" messages have gone out or bounced + // or timed out. - $r = q("select channel_id from channel where channel_removed = 1 and + $r = q("select channel_id from channel where channel_removed = 1 and channel_deleted > %s - INTERVAL %s and channel_deleted < %s - INTERVAL %s", db_utcnow(), db_quoteinterval('21 DAY'), db_utcnow(), db_quoteinterval('10 DAY') @@ -59,5 +59,6 @@ class Cron_weekly { * End Cron Weekly */ + return; } -} \ No newline at end of file +} diff --git a/Zotlabs/Daemon/Deliver.php b/Zotlabs/Daemon/Deliver.php index 400ef697b..2d80dc093 100644 --- a/Zotlabs/Daemon/Deliver.php +++ b/Zotlabs/Daemon/Deliver.php @@ -28,6 +28,8 @@ class Deliver { } + return; + } } diff --git a/Zotlabs/Daemon/Deliver_hooks.php b/Zotlabs/Daemon/Deliver_hooks.php index 4d3ce4e1d..1e478db1e 100644 --- a/Zotlabs/Daemon/Deliver_hooks.php +++ b/Zotlabs/Daemon/Deliver_hooks.php @@ -12,8 +12,12 @@ class Deliver_hooks { $r = q("select * from item where id = '%d'", intval($argv[1]) ); - if ($r) + + if ($r) { call_hooks('notifier_normal', $r[0]); + } + + return; } } diff --git a/Zotlabs/Daemon/Directory.php b/Zotlabs/Daemon/Directory.php index 3996b8079..19adf8273 100644 --- a/Zotlabs/Daemon/Directory.php +++ b/Zotlabs/Daemon/Directory.php @@ -97,5 +97,7 @@ class Directory { if ($pushall) { Master::Summon(array('Notifier', 'refresh_all', $channel['channel_id'])); } + + return; } } diff --git a/Zotlabs/Daemon/Expire.php b/Zotlabs/Daemon/Expire.php index 99fe68b6f..5d9f14b28 100644 --- a/Zotlabs/Daemon/Expire.php +++ b/Zotlabs/Daemon/Expire.php @@ -103,5 +103,7 @@ class Expire { } del_config('procid', 'expire'); + + return; } } diff --git a/Zotlabs/Daemon/Importdoc.php b/Zotlabs/Daemon/Importdoc.php index 9e818e2b3..c5a81e50c 100644 --- a/Zotlabs/Daemon/Importdoc.php +++ b/Zotlabs/Daemon/Importdoc.php @@ -11,6 +11,8 @@ class Importdoc { self::update_docs_dir('doc/*'); + return; + } static public function update_docs_dir($s) { diff --git a/Zotlabs/Daemon/Master.php b/Zotlabs/Daemon/Master.php index 495718bf4..c9ed91aaa 100644 --- a/Zotlabs/Daemon/Master.php +++ b/Zotlabs/Daemon/Master.php @@ -11,6 +11,7 @@ if (array_search(__file__, get_included_files()) === 0) { if ($argc) Master::Release($argc, $argv); + return; } diff --git a/Zotlabs/Daemon/Queue.php b/Zotlabs/Daemon/Queue.php index 41aaf45ed..3eb7d9d23 100644 --- a/Zotlabs/Daemon/Queue.php +++ b/Zotlabs/Daemon/Queue.php @@ -79,5 +79,7 @@ class Queue { foreach ($r as $rv) { LibQueue::deliver($rv); } + + return; } } diff --git a/Zotlabs/Daemon/Thumbnail.php b/Zotlabs/Daemon/Thumbnail.php index 3688e8ae5..fa9570658 100644 --- a/Zotlabs/Daemon/Thumbnail.php +++ b/Zotlabs/Daemon/Thumbnail.php @@ -73,5 +73,7 @@ class Thumbnail { || (filectime(dbunescbin($attach['content']) . 'thumb') < (time() - 60)))) { $default_controller->Thumb($attach, $preview_style, $preview_width, $preview_height); } + + return; } } diff --git a/Zotlabs/Lib/QueueWorker.php b/Zotlabs/Lib/QueueWorker.php index 21983a4e2..48d5f5bb2 100644 --- a/Zotlabs/Lib/QueueWorker.php +++ b/Zotlabs/Lib/QueueWorker.php @@ -231,9 +231,6 @@ class QueueWorker { } public static function Process() { - self::$workersleep = get_config('queueworker', 'queue_worker_sleep'); - self::$workersleep = intval(self::$workersleep) > 100 ? intval(self::$workersleep) : 100; - if (!self::GetWorkerID()) { logger('Unable to get worker ID. Exiting.', LOGGER_DEBUG); killme(); @@ -241,11 +238,26 @@ class QueueWorker { $jobs = 0; $workid = self::getWorkId(); + $load_average_sleep = false; + self::$workersleep = get_config('queueworker', 'queue_worker_sleep'); + self::$workersleep = ((intval(self::$workersleep) > 100) ? intval(self::$workersleep) : 100); + + if (function_exists('sys_getloadavg') && get_config('queueworker', 'load_average_sleep')) { + $load_average_sleep = true; + } + while ($workid) { + + if ($load_average_sleep) { + $load_average = sys_getloadavg(); + self::$workersleep = intval($load_average[0]) * 100000; + + if (!self::$workersleep) { + self::$workersleep = 100; + } + } + usleep(self::$workersleep); - // @FIXME: Currently $workersleep is a fixed value. It may be a good idea - // to implement a "backoff" instead - based on load average or some - // other metric. self::qbegin('workerq'); @@ -276,7 +288,7 @@ class QueueWorker { $workinfo = json_decode($workitem[0]['workerq_data'], true); $argv = $workinfo['argv']; - logger('Master: process: ' . json_encode($argv), LOGGER_DEBUG); + hz_syslog('Master: process: ' . json_encode($argv), LOGGER_DEBUG); $cls = '\\Zotlabs\\Daemon\\' . $argv[0]; $argv = flatten_array_recursive($argv); diff --git a/boot.php b/boot.php index 1287d3c88..b3452ff71 100644 --- a/boot.php +++ b/boot.php @@ -2045,24 +2045,8 @@ function proc_run() { if (!$arr['run_cmd']) return; - if (count($args) && $args[0] === 'php') + if (count($args) && $args[0] === 'php') { $args[0] = ((x(App::$config, 'system')) && (x(App::$config['system'], 'php_path')) && (strlen(App::$config['system']['php_path'])) ? App::$config['system']['php_path'] : 'php'); - - - // redirect proc_run statements of legacy daemon processes to the newer Daemon Master object class - // We will keep this interface until everybody has transitioned. (2016-05-20) - - if (strstr($args[1], 'include/')) { - // convert 'include/foo.php' to 'Foo' - $orig = substr(ucfirst(substr($args[1], 8)), 0, -4); - logger('proc_run_redirect: ' . $orig); - if (file_exists('Zotlabs/Daemon/' . $orig . '.php')) { - array_shift($args); // daemons are all run by php, pop it off the top of the array - $args[0] = $orig; // replace with the new daemon name - logger('Redirecting old proc_run interface: ' . print_r($args, true), LOGGER_DEBUG, LOG_DEBUG); - Master::Summon($args); // summon the daemon - return; - } } $args = array_map('escapeshellarg', $args); -- cgit v1.2.3 From 86e1dd4673017ecc3f595ecfa6c9e257b86878ac Mon Sep 17 00:00:00 2001 From: Mario Date: Sat, 10 Dec 2022 17:06:54 +0000 Subject: remove debug logging --- Zotlabs/Lib/QueueWorker.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Zotlabs/Lib/QueueWorker.php b/Zotlabs/Lib/QueueWorker.php index 48d5f5bb2..ff29fa065 100644 --- a/Zotlabs/Lib/QueueWorker.php +++ b/Zotlabs/Lib/QueueWorker.php @@ -288,7 +288,7 @@ class QueueWorker { $workinfo = json_decode($workitem[0]['workerq_data'], true); $argv = $workinfo['argv']; - hz_syslog('Master: process: ' . json_encode($argv), LOGGER_DEBUG); + logger('Master: process: ' . json_encode($argv), LOGGER_DEBUG); $cls = '\\Zotlabs\\Daemon\\' . $argv[0]; $argv = flatten_array_recursive($argv); -- cgit v1.2.3 From 1c17768dc5a4de21d8b431807fd184101c1d2c58 Mon Sep 17 00:00:00 2001 From: Mario Date: Sun, 11 Dec 2022 10:40:02 +0000 Subject: minor fixes --- Zotlabs/Lib/QueueWorker.php | 11 +++-------- include/text.php | 1 + 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/Zotlabs/Lib/QueueWorker.php b/Zotlabs/Lib/QueueWorker.php index ff29fa065..9f60e3315 100644 --- a/Zotlabs/Lib/QueueWorker.php +++ b/Zotlabs/Lib/QueueWorker.php @@ -68,8 +68,6 @@ class QueueWorker { public static function Summon(&$argv) { - $argc = count($argv); - if ($argv[0] !== 'Queueworker') { $priority = 0; // @TODO allow reprioritization @@ -78,7 +76,7 @@ class QueueWorker { $priority = self::$default_priorities[$argv[0]]; } - $workinfo = ['argc' => $argc, 'argv' => $argv]; + $workinfo = ['argc' => count($argv), 'argv' => $argv]; $workinfo_json = json_encode($workinfo); $uuid = self::getUuid($workinfo_json); @@ -118,8 +116,6 @@ class QueueWorker { public static function Release(&$argv) { - $argc = count($argv); - if ($argv[0] !== 'Queueworker') { $priority = 0; // @TODO allow reprioritization @@ -127,7 +123,7 @@ class QueueWorker { $priority = self::$default_priorities[$argv[0]]; } - $workinfo = ['argc' => $argc, 'argv' => $argv]; + $workinfo = ['argc' => count($argv), 'argv' => $argv]; $workinfo_json = json_encode($workinfo); $uuid = self::getUuid($workinfo_json); @@ -250,7 +246,7 @@ class QueueWorker { if ($load_average_sleep) { $load_average = sys_getloadavg(); - self::$workersleep = intval($load_average[0]) * 100000; + self::$workersleep = intval($load_average[0]) * 10000; if (!self::$workersleep) { self::$workersleep = 100; @@ -288,7 +284,6 @@ class QueueWorker { $workinfo = json_decode($workitem[0]['workerq_data'], true); $argv = $workinfo['argv']; - logger('Master: process: ' . json_encode($argv), LOGGER_DEBUG); $cls = '\\Zotlabs\\Daemon\\' . $argv[0]; $argv = flatten_array_recursive($argv); diff --git a/include/text.php b/include/text.php index cc480aacf..1608f5435 100644 --- a/include/text.php +++ b/include/text.php @@ -303,6 +303,7 @@ function purify_html($s, $allow_position = false) { $def->addElement('footer', 'Block', 'Flow', 'Common'); //Inline $def->addElement('button', 'Inline', 'Inline', 'Common'); + $def->addElement('mark', 'Inline', 'Inline', 'Common'); if($allow_position) { -- cgit v1.2.3 From c5a0ec4e9330eb47b5ea7a6f7f64b0337e0172cc Mon Sep 17 00:00:00 2001 From: Mario Date: Sun, 11 Dec 2022 19:19:47 +0000 Subject: css fixes --- view/css/bootstrap-red.css | 4 ---- view/css/conversation.css | 9 --------- view/theme/redbasic/css/style.css | 6 +----- 3 files changed, 1 insertion(+), 18 deletions(-) diff --git a/view/css/bootstrap-red.css b/view/css/bootstrap-red.css index b0bd4fd75..f1296d7b2 100644 --- a/view/css/bootstrap-red.css +++ b/view/css/bootstrap-red.css @@ -65,7 +65,3 @@ label { a { text-decoration: none !important; } - -.mark { - background-color: yellow; -} diff --git a/view/css/conversation.css b/view/css/conversation.css index 97d7857cc..e286a2b22 100644 --- a/view/css/conversation.css +++ b/view/css/conversation.css @@ -216,15 +216,6 @@ a.wall-item-name-link { color: #007bff; } -.item-highlight { - border-left: 0.2rem solid #007bff; -} - -.item-highlight .wall-item-head, -.item-highlight .wall-item-content, -.item-highlight .wall-item-tools { - padding-left: 0.3rem; -} /* comment_item */ diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 20309b709..9069500d9 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -13,6 +13,7 @@ --bs-link-color: $link_colour; --bs-link-hover-color: $link_hover_colour; --bs-body-bg: $bgcolour; + --bs-highlight-bg: yellow; } .nav-tabs { @@ -1790,11 +1791,6 @@ dl.bb-dl > dd > li { opacity: 1; } -/* default highlighted text if not specified by schema: */ -span.default-highlight { - background-color: yellow; -} - .bootstrap-tagsinput { width: 100%; } -- cgit v1.2.3 From 7ef0b05ce68a24f3f0d98de5018a2ee64520b168 Mon Sep 17 00:00:00 2001 From: Mario Date: Sun, 11 Dec 2022 20:24:22 +0000 Subject: fix typo --- Zotlabs/Daemon/Cli_suggest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Zotlabs/Daemon/Cli_suggest.php b/Zotlabs/Daemon/Cli_suggest.php index 6306d2113..028228cb0 100644 --- a/Zotlabs/Daemon/Cli_suggest.php +++ b/Zotlabs/Daemon/Cli_suggest.php @@ -9,7 +9,7 @@ class Cli_suggest { static public function run($argc,$argv) { update_suggestions(); - return: + return; } } -- cgit v1.2.3 From 45f8e43be425b9718aa9ac819256ea407af900f0 Mon Sep 17 00:00:00 2001 From: Mario Date: Sun, 11 Dec 2022 20:46:02 +0000 Subject: debug from php log --- Zotlabs/Lib/Libzot.php | 6 ++++++ include/auth.php | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Zotlabs/Lib/Libzot.php b/Zotlabs/Lib/Libzot.php index b0d33e055..c635fdb17 100644 --- a/Zotlabs/Lib/Libzot.php +++ b/Zotlabs/Lib/Libzot.php @@ -291,6 +291,12 @@ class Libzot { } $m = parse_url($url); + + if (!$m) { + logger('zot_refresh: could not parse url'); + return false; + } + $site_url = unparse_url([ 'scheme' => $m['scheme'], 'host' => $m['host'] ]); $s = q("select site_dead from site where site_url = '%s' limit 1", diff --git a/include/auth.php b/include/auth.php index 4f4d26a6c..8f0b137be 100644 --- a/include/auth.php +++ b/include/auth.php @@ -94,7 +94,7 @@ function account_verify_password($login, $pass) { $where = " where account_email = '" . dbesc($login) . "' "; } - $a = q("select * from account $where"); + $a = dbq("select * from account $where"); if(! $a) { return null; } -- cgit v1.2.3 From e3a19469eb6940249ad87662399d14dbf2a79847 Mon Sep 17 00:00:00 2001 From: Mario Date: Mon, 12 Dec 2022 09:03:49 +0000 Subject: bring back poll and delivery interval --- Zotlabs/Daemon/Cron.php | 20 ++++++++++---------- Zotlabs/Daemon/Poller.php | 24 +++++++++++------------- Zotlabs/Lib/Libsync.php | 9 +++++---- Zotlabs/Module/Admin/Site.php | 12 ++++++------ Zotlabs/Widget/Messages.php | 7 ++++--- include/hubloc.php | 10 ++++++---- include/network.php | 10 +++++----- view/tpl/admin_site.tpl | 4 ++-- 8 files changed, 49 insertions(+), 47 deletions(-) diff --git a/Zotlabs/Daemon/Cron.php b/Zotlabs/Daemon/Cron.php index 9b8946e57..b8bcbe3a2 100644 --- a/Zotlabs/Daemon/Cron.php +++ b/Zotlabs/Daemon/Cron.php @@ -52,7 +52,7 @@ class Cron { require_once('include/account.php'); remove_expired_registrations(); - //$interval = get_config('system', 'delivery_interval', 3); + $interval = get_config('system', 'delivery_interval', 3); // expire any expired items @@ -67,10 +67,10 @@ class Cron { if ($rr['item_wall']) { // The notifier isn't normally invoked unless item_drop is interactive. Master::Summon(['Notifier', 'drop', $rr['id']]); - /* - if ($interval) + + if ($interval) { @time_sleep_until(microtime(true) + (float)$interval); - */ + } } } } @@ -100,10 +100,10 @@ class Cron { if ($r) { foreach ($r as $rr) { Master::Summon(array('Directory', $rr['channel_id'], 'force')); - /* - if ($interval) + + if ($interval) { @time_sleep_until(microtime(true) + (float)$interval); - */ + } } } @@ -157,10 +157,10 @@ class Cron { ); } Master::Summon(array('Notifier', 'wall-new', $rr['id'])); - /* - if ($interval) + + if ($interval) { @time_sleep_until(microtime(true) + (float)$interval); - */ + } } } } diff --git a/Zotlabs/Daemon/Poller.php b/Zotlabs/Daemon/Poller.php index 5bf8d3a02..b43b814f7 100644 --- a/Zotlabs/Daemon/Poller.php +++ b/Zotlabs/Daemon/Poller.php @@ -17,12 +17,13 @@ class Poller { } } -/* + $interval = intval(get_config('system', 'poll_interval')); - if (!$interval) + if (!$interval) { $interval = ((get_config('system', 'delivery_interval') === false) ? 3 : intval(get_config('system', 'delivery_interval'))); + } - +/* // Check for a lockfile. If it exists, but is over an hour old, it's stale. Ignore it. $lockfile = 'store/[data]/poller'; if ((file_exists($lockfile)) && (filemtime($lockfile) > (time() - 3600)) @@ -106,10 +107,10 @@ class Poller { if ($t < $x) { Master::Summon(['Onepoll', $contact['abook_id']]); - /* - if ($interval) + + if ($interval) { @time_sleep_until(microtime(true) + (float)$interval); - */ + } } continue; @@ -173,11 +174,9 @@ class Poller { Master::Summon(['Onepoll', $contact['abook_id']]); - /* - if ($interval) + if ($interval) { @time_sleep_until(microtime(true) + (float)$interval); - */ - + } } } @@ -201,10 +200,9 @@ class Poller { Master::Summon(['Onedirsync', $rr['ud_id']]); - /* - if ($interval) + if ($interval) { @time_sleep_until(microtime(true) + (float)$interval); - */ + } } } } diff --git a/Zotlabs/Lib/Libsync.php b/Zotlabs/Lib/Libsync.php index b02ae4c69..2d6d86d78 100644 --- a/Zotlabs/Lib/Libsync.php +++ b/Zotlabs/Lib/Libsync.php @@ -135,10 +135,9 @@ class Libsync { $info['collection_members'] = $r; } - /* + $interval = ((get_config('system', 'delivery_interval') !== false) ? intval(get_config('system', 'delivery_interval')) : 2); - */ logger('Packet: ' . print_r($info, true), LOGGER_DATA, LOG_DEBUG); @@ -171,10 +170,12 @@ class Libsync { /* $total = $total - 1; + */ - if ($interval && $total) + if ($interval) { @time_sleep_until(microtime(true) + (float)$interval); - */ + } + } } diff --git a/Zotlabs/Module/Admin/Site.php b/Zotlabs/Module/Admin/Site.php index e3feee1bb..42cf064c9 100644 --- a/Zotlabs/Module/Admin/Site.php +++ b/Zotlabs/Module/Admin/Site.php @@ -83,9 +83,9 @@ class Site { $proxyuser = ((x($_POST,'proxyuser')) ? notags(trim($_POST['proxyuser'])) : ''); $proxy = ((x($_POST,'proxy')) ? notags(trim($_POST['proxy'])) : ''); $timeout = ((x($_POST,'timeout')) ? intval(trim($_POST['timeout'])) : 60); - //$delivery_interval = ((x($_POST,'delivery_interval'))? intval(trim($_POST['delivery_interval'])) : 0); + $delivery_interval = ((x($_POST,'delivery_interval'))? intval(trim($_POST['delivery_interval'])) : 0); $delivery_batch_count = ((x($_POST,'delivery_batch_count') && $_POST['delivery_batch_count'] > 0)? intval(trim($_POST['delivery_batch_count'])) : 1); - //$poll_interval = ((x($_POST,'poll_interval')) ? intval(trim($_POST['poll_interval'])) : 0); + $poll_interval = ((x($_POST,'poll_interval')) ? intval(trim($_POST['poll_interval'])) : 0); $maxloadavg = ((x($_POST,'maxloadavg')) ? intval(trim($_POST['maxloadavg'])) : 50); $feed_contacts = ((x($_POST,'feed_contacts')) ? intval($_POST['feed_contacts']) : 0); $verify_email = ((x($_POST,'verify_email')) ? 1 : 0); @@ -136,9 +136,9 @@ class Site { // <-hilmar] set_config('system', 'feed_contacts', $feed_contacts); - //set_config('system', 'delivery_interval', $delivery_interval); + set_config('system', 'delivery_interval', $delivery_interval); set_config('system', 'delivery_batch_count', $delivery_batch_count); - //set_config('system', 'poll_interval', $poll_interval); + set_config('system', 'poll_interval', $poll_interval); set_config('system', 'maxloadavg', $maxloadavg); set_config('system', 'frontpage', $frontpage); set_config('system', 'sellpage', $site_sellpage); @@ -530,10 +530,10 @@ class Site { '$proxyuser' => array('proxyuser', t("Proxy user"), get_config('system','proxyuser'), ""), '$proxy' => array('proxy', t("Proxy URL"), get_config('system','proxy'), ""), '$timeout' => array('timeout', t("Network timeout"), (x(get_config('system','curl_timeout'))?get_config('system','curl_timeout'):60), t("Value is in seconds. Set to 0 for unlimited (not recommended).")), - //'$delivery_interval' => array('delivery_interval', t("Delivery interval"), (x(get_config('system','delivery_interval'))?get_config('system','delivery_interval'):2), t("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.")), + '$delivery_interval' => array('delivery_interval', t("Delivery interval"), (x(get_config('system','delivery_interval'))?get_config('system','delivery_interval'):2), t("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.")), '$delivery_batch_count' => array('delivery_batch_count', t('Deliveries per process'),(x(get_config('system','delivery_batch_count'))?get_config('system','delivery_batch_count'):1), t("Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5.")), //'$force_queue' => array('force_queue', t("Queue Threshold"), get_config('system','force_queue_threshold',3000), t("Always defer immediate delivery if queue contains more than this number of entries.")), - //'$poll_interval' => array('poll_interval', t("Poll interval"), (x(get_config('system','poll_interval'))?get_config('system','poll_interval'):2), t("Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval.")), + '$poll_interval' => array('poll_interval', t("Poll interval"), (x(get_config('system','poll_interval'))?get_config('system','poll_interval'):2), t("Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval.")), '$imagick_path' => array('imagick_path', t("Path to ImageMagick convert program"), get_config('system','imagick_convert_path'), t("If set, use this program to generate photo thumbnails for huge images ( > 4000 pixels in either dimension), otherwise memory exhaustion may occur. Example: /usr/bin/convert")), '$maxloadavg' => array('maxloadavg', t("Maximum Load Average"), ((intval(get_config('system','maxloadavg')) > 0)?get_config('system','maxloadavg'):50), t("Maximum system load before delivery and poll processes are deferred - default 50.")), '$default_expire_days' => array('default_expire_days', t('Expiration period in days for imported (grid/network) content'), intval(get_config('system','default_expire_days')), t('0 for no expiration of imported content')), diff --git a/Zotlabs/Widget/Messages.php b/Zotlabs/Widget/Messages.php index 0f57a8d85..9a3f0fa9c 100644 --- a/Zotlabs/Widget/Messages.php +++ b/Zotlabs/Widget/Messages.php @@ -58,7 +58,8 @@ class Messages { } $channel = App::get_channel(); - $item_normal = str_replace('item.', 'i.', item_normal()); + $item_normal_i = str_replace('item.', 'i.', item_normal()); + $item_normal_c = str_replace('item.', 'c.', item_normal()); $entries = []; $limit = 30; $dummy_order_sql = ''; @@ -89,12 +90,12 @@ class Messages { } $items = q("SELECT *, - (SELECT count(*) FROM item c WHERE c.uid = %d AND c.parent = i.parent AND c.item_unseen = 1 AND c.item_thread_top = 0 $vnotify_sql) AS unseen_count + (SELECT count(*) FROM item c WHERE c.uid = %d AND c.parent = i.parent AND c.item_unseen = 1 AND c.item_thread_top = 0 $item_normal_c $vnotify_sql) AS unseen_count FROM item i WHERE i.uid = %d AND i.created <= '%s' $type_sql AND i.item_thread_top = 1 - $item_normal + $item_normal_i ORDER BY i.created DESC $dummy_order_sql LIMIT $limit OFFSET $offset", intval(local_channel()), diff --git a/include/hubloc.php b/include/hubloc.php index 016d82f23..edd452dd3 100644 --- a/include/hubloc.php +++ b/include/hubloc.php @@ -155,8 +155,8 @@ function remove_obsolete_hublocs() { logger('remove_obsolete_hublocs: removing ' . count($r) . ' hublocs.'); - //$interval = ((get_config('system', 'delivery_interval') !== false) - //? intval(get_config('system', 'delivery_interval')) : 2 ); + $interval = ((get_config('system', 'delivery_interval') !== false) + ? intval(get_config('system', 'delivery_interval')) : 2 ); foreach($r as $rr) { q("update hubloc set hubloc_deleted = 1 where hubloc_id = %d", @@ -168,8 +168,10 @@ function remove_obsolete_hublocs() { ); if($x) { Master::Summon(array('Notifier', 'refresh_all', $x[0]['channel_id'])); - //if($interval) - //@time_sleep_until(microtime(true) + (float) $interval); + + if($interval) { + @time_sleep_until(microtime(true) + (float) $interval); + } } } } diff --git a/include/network.php b/include/network.php index 7deffe06c..52c21d808 100644 --- a/include/network.php +++ b/include/network.php @@ -1476,12 +1476,12 @@ function do_delivery($deliveries, $force = false) { } return; } - + */ $interval = ((get_config('system','delivery_interval') !== false) ? intval(get_config('system','delivery_interval')) : 2 ); - */ + $deliveries_per_process = intval(get_config('system','delivery_batch_count')); @@ -1500,10 +1500,10 @@ function do_delivery($deliveries, $force = false) { if(count($deliver) >= $deliveries_per_process) { Zotlabs\Daemon\Master::Summon(['Deliver', $deliver]); $deliver = []; - /* - if($interval) + + if($interval) { @time_sleep_until(microtime(true) + (float) $interval); - */ + } } } diff --git a/view/tpl/admin_site.tpl b/view/tpl/admin_site.tpl index bad68361b..ae63edc04 100644 --- a/view/tpl/admin_site.tpl +++ b/view/tpl/admin_site.tpl @@ -72,10 +72,10 @@ {{include file="field_input.tpl" field=$proxy}} {{include file="field_input.tpl" field=$proxyuser}} {{include file="field_input.tpl" field=$timeout}} - {{**include file="field_input.tpl" field=$delivery_interval**}} + {{include file="field_input.tpl" field=$delivery_interval}} {{include file="field_input.tpl" field=$delivery_batch_count}} {{**include file="field_input.tpl" field=$force_queue**}} - {{**include file="field_input.tpl" field=$poll_interval**}} + {{include file="field_input.tpl" field=$poll_interval}} {{include file="field_input.tpl" field=$maxloadavg}} {{include file="field_input.tpl" field=$default_expire_days}} {{include file="field_input.tpl" field=$active_expire_days}} -- cgit v1.2.3 From c9e170dfcc83a946fda7d4335c136ed40b3c579d Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 12 Dec 2022 23:26:45 +0100 Subject: queueworker: introduce new interval config queueworker.queue_interval - defaults to 500000 microseconds. No config UI yet. --- Zotlabs/Daemon/Cron.php | 8 ++++---- Zotlabs/Daemon/Poller.php | 10 +++++----- Zotlabs/Lib/Libsync.php | 6 ++---- Zotlabs/Lib/QueueWorker.php | 13 ++++++------- include/hubloc.php | 5 ++--- include/network.php | 6 ++---- view/tpl/admin_site.tpl | 4 ++-- 7 files changed, 23 insertions(+), 29 deletions(-) diff --git a/Zotlabs/Daemon/Cron.php b/Zotlabs/Daemon/Cron.php index b8bcbe3a2..640f06102 100644 --- a/Zotlabs/Daemon/Cron.php +++ b/Zotlabs/Daemon/Cron.php @@ -52,7 +52,7 @@ class Cron { require_once('include/account.php'); remove_expired_registrations(); - $interval = get_config('system', 'delivery_interval', 3); + $interval = get_config('queueworker', 'queue_interval', 500000); // expire any expired items @@ -69,7 +69,7 @@ class Cron { Master::Summon(['Notifier', 'drop', $rr['id']]); if ($interval) { - @time_sleep_until(microtime(true) + (float)$interval); + usleep($interval); } } } @@ -102,7 +102,7 @@ class Cron { Master::Summon(array('Directory', $rr['channel_id'], 'force')); if ($interval) { - @time_sleep_until(microtime(true) + (float)$interval); + usleep($interval); } } } @@ -159,7 +159,7 @@ class Cron { Master::Summon(array('Notifier', 'wall-new', $rr['id'])); if ($interval) { - @time_sleep_until(microtime(true) + (float)$interval); + usleep($interval); } } } diff --git a/Zotlabs/Daemon/Poller.php b/Zotlabs/Daemon/Poller.php index b43b814f7..0fdc3da16 100644 --- a/Zotlabs/Daemon/Poller.php +++ b/Zotlabs/Daemon/Poller.php @@ -17,13 +17,13 @@ class Poller { } } + $interval = get_config('queueworker', 'queue_interval', 500000); - $interval = intval(get_config('system', 'poll_interval')); +/* if (!$interval) { $interval = ((get_config('system', 'delivery_interval') === false) ? 3 : intval(get_config('system', 'delivery_interval'))); } -/* // Check for a lockfile. If it exists, but is over an hour old, it's stale. Ignore it. $lockfile = 'store/[data]/poller'; if ((file_exists($lockfile)) && (filemtime($lockfile) > (time() - 3600)) @@ -109,7 +109,7 @@ class Poller { Master::Summon(['Onepoll', $contact['abook_id']]); if ($interval) { - @time_sleep_until(microtime(true) + (float)$interval); + usleep($interval); } } @@ -175,7 +175,7 @@ class Poller { Master::Summon(['Onepoll', $contact['abook_id']]); if ($interval) { - @time_sleep_until(microtime(true) + (float)$interval); + usleep($interval); } } } @@ -201,7 +201,7 @@ class Poller { Master::Summon(['Onedirsync', $rr['ud_id']]); if ($interval) { - @time_sleep_until(microtime(true) + (float)$interval); + usleep($interval); } } } diff --git a/Zotlabs/Lib/Libsync.php b/Zotlabs/Lib/Libsync.php index 2d6d86d78..f844c63b5 100644 --- a/Zotlabs/Lib/Libsync.php +++ b/Zotlabs/Lib/Libsync.php @@ -135,9 +135,7 @@ class Libsync { $info['collection_members'] = $r; } - - $interval = ((get_config('system', 'delivery_interval') !== false) - ? intval(get_config('system', 'delivery_interval')) : 2); + $interval = get_config('queueworker', 'queue_interval', 500000); logger('Packet: ' . print_r($info, true), LOGGER_DATA, LOG_DEBUG); @@ -173,7 +171,7 @@ class Libsync { */ if ($interval) { - @time_sleep_until(microtime(true) + (float)$interval); + usleep($interval); } } diff --git a/Zotlabs/Lib/QueueWorker.php b/Zotlabs/Lib/QueueWorker.php index 9f60e3315..468383ae2 100644 --- a/Zotlabs/Lib/QueueWorker.php +++ b/Zotlabs/Lib/QueueWorker.php @@ -66,7 +66,7 @@ class QueueWorker { return; } - public static function Summon(&$argv) { + public static function Summon($argv) { if ($argv[0] !== 'Queueworker') { @@ -102,19 +102,18 @@ class QueueWorker { return; } self::qcommit(); - logger('INSERTED: ' . $workinfo_json, LOGGER_DEBUG); + hz_syslog('INSERTED: ' . $workinfo_json, LOGGER_DEBUG); } - $argv = []; $workers = self::GetWorkerCount(); if ($workers < self::$maxworkers) { - logger("Less than max active workers ($workers) max = " . self::$maxworkers . ".", LOGGER_DEBUG); + hz_syslog("Less than max active workers ($workers) max = " . self::$maxworkers . ".", LOGGER_DEBUG); $phpbin = get_config('system', 'phpbin', 'php'); proc_run($phpbin, 'Zotlabs/Daemon/Master.php', ['Queueworker']); } } - public static function Release(&$argv) { + public static function Release($argv) { if ($argv[0] !== 'Queueworker') { @@ -152,7 +151,7 @@ class QueueWorker { self::qcommit(); logger('INSERTED: ' . $workinfo_json, LOGGER_DEBUG); } - $argv = []; + self::Process(); } @@ -228,7 +227,7 @@ class QueueWorker { public static function Process() { if (!self::GetWorkerID()) { - logger('Unable to get worker ID. Exiting.', LOGGER_DEBUG); + hz_syslog('Unable to get worker ID. Exiting.', LOGGER_DEBUG); killme(); } diff --git a/include/hubloc.php b/include/hubloc.php index edd452dd3..965725cba 100644 --- a/include/hubloc.php +++ b/include/hubloc.php @@ -155,8 +155,7 @@ function remove_obsolete_hublocs() { logger('remove_obsolete_hublocs: removing ' . count($r) . ' hublocs.'); - $interval = ((get_config('system', 'delivery_interval') !== false) - ? intval(get_config('system', 'delivery_interval')) : 2 ); + $interval = get_config('queueworker', 'queue_interval', 500000); foreach($r as $rr) { q("update hubloc set hubloc_deleted = 1 where hubloc_id = %d", @@ -170,7 +169,7 @@ function remove_obsolete_hublocs() { Master::Summon(array('Notifier', 'refresh_all', $x[0]['channel_id'])); if($interval) { - @time_sleep_until(microtime(true) + (float) $interval); + usleep($interval); } } } diff --git a/include/network.php b/include/network.php index 52c21d808..f0642d8f7 100644 --- a/include/network.php +++ b/include/network.php @@ -1479,9 +1479,7 @@ function do_delivery($deliveries, $force = false) { */ - $interval = ((get_config('system','delivery_interval') !== false) - ? intval(get_config('system','delivery_interval')) : 2 ); - + $interval = get_config('queueworker', 'queue_interval', 500000); $deliveries_per_process = intval(get_config('system','delivery_batch_count')); @@ -1502,7 +1500,7 @@ function do_delivery($deliveries, $force = false) { $deliver = []; if($interval) { - @time_sleep_until(microtime(true) + (float) $interval); + usleep($interval); } } } diff --git a/view/tpl/admin_site.tpl b/view/tpl/admin_site.tpl index ae63edc04..bad68361b 100644 --- a/view/tpl/admin_site.tpl +++ b/view/tpl/admin_site.tpl @@ -72,10 +72,10 @@ {{include file="field_input.tpl" field=$proxy}} {{include file="field_input.tpl" field=$proxyuser}} {{include file="field_input.tpl" field=$timeout}} - {{include file="field_input.tpl" field=$delivery_interval}} + {{**include file="field_input.tpl" field=$delivery_interval**}} {{include file="field_input.tpl" field=$delivery_batch_count}} {{**include file="field_input.tpl" field=$force_queue**}} - {{include file="field_input.tpl" field=$poll_interval}} + {{**include file="field_input.tpl" field=$poll_interval**}} {{include file="field_input.tpl" field=$maxloadavg}} {{include file="field_input.tpl" field=$default_expire_days}} {{include file="field_input.tpl" field=$active_expire_days}} -- cgit v1.2.3 From 5446062b95a28c6b2a28d809ce8ab8ceffa1e922 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 12 Dec 2022 23:28:26 +0100 Subject: bump version --- boot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot.php b/boot.php index b3452ff71..8b22d2168 100644 --- a/boot.php +++ b/boot.php @@ -60,7 +60,7 @@ require_once('include/bbcode.php'); require_once('include/items.php'); define('PLATFORM_NAME', 'hubzilla'); -define('STD_VERSION', '7.9.11'); +define('STD_VERSION', '7.9.12'); define('ZOT_REVISION', '6.0'); define('DB_UPDATE_VERSION', 1254); -- cgit v1.2.3 From 2f687de477c3aeec7ee684fd875e5190ae4c2fbe Mon Sep 17 00:00:00 2001 From: Mario Date: Thu, 15 Dec 2022 09:18:58 +0000 Subject: queueworker testing and more logging to syslog --- Zotlabs/Daemon/Externals.php | 2 +- Zotlabs/Lib/QueueWorker.php | 37 ++++++++++++++++++++++--------------- 2 files changed, 23 insertions(+), 16 deletions(-) diff --git a/Zotlabs/Daemon/Externals.php b/Zotlabs/Daemon/Externals.php index 91fa09044..2c7c7c172 100644 --- a/Zotlabs/Daemon/Externals.php +++ b/Zotlabs/Daemon/Externals.php @@ -143,7 +143,7 @@ class Externals { $AS = new ActivityStreams($message); if ($AS->is_valid() && is_array($AS->obj)) { $item = Activity::decode_note($AS); - Activity::store($importer, $contact['abook_xchan'], $AS, $item); + Activity::store($importer, $contact['hubloc_hash'], $AS, $item); $total++; } } diff --git a/Zotlabs/Lib/QueueWorker.php b/Zotlabs/Lib/QueueWorker.php index 468383ae2..b4ee6c327 100644 --- a/Zotlabs/Lib/QueueWorker.php +++ b/Zotlabs/Lib/QueueWorker.php @@ -27,7 +27,7 @@ class QueueWorker { switch (ACTIVE_DBTYPE) { case DBTYPE_MYSQL: q('BEGIN'); - q('LOCK TABLE ' . $tablename . ' WRITE'); + //q('LOCK TABLE ' . $tablename . ' WRITE'); break; case DBTYPE_POSTGRES: @@ -41,7 +41,7 @@ class QueueWorker { private static function qcommit() { switch (ACTIVE_DBTYPE) { case DBTYPE_MYSQL: - q("UNLOCK TABLES"); + //q("UNLOCK TABLES"); q("COMMIT"); break; @@ -56,7 +56,7 @@ class QueueWorker { switch (ACTIVE_DBTYPE) { case DBTYPE_MYSQL: q("ROLLBACK"); - q("UNLOCK TABLES"); + //q("UNLOCK TABLES"); break; case DBTYPE_POSTGRES: @@ -199,7 +199,7 @@ class QueueWorker { $work = dbq("SELECT workerq_id FROM workerq WHERE workerq_reservationid IS NULL ORDER BY workerq_priority DESC, workerq_id ASC LIMIT 1 FOR UPDATE SKIP LOCKED;"); } else { - $work = dbq("SELECT workerq_id FROM workerq WHERE workerq_reservationid IS NULL ORDER BY workerq_priority DESC, workerq_id ASC LIMIT 1;"); + $work = dbq("SELECT workerq_id FROM workerq WHERE workerq_reservationid IS NULL ORDER BY workerq_priority DESC, workerq_id ASC LIMIT 1 FOR UPDATE SKIP LOCKED;"); } if (!$work) { @@ -256,16 +256,18 @@ class QueueWorker { self::qbegin('workerq'); - if (ACTIVE_DBTYPE == DBTYPE_POSTGRES) { - $workitem = q("SELECT * FROM workerq WHERE workerq_id = %d FOR UPDATE SKIP LOCKED", - $workid - ); - } - else { - $workitem = q("SELECT * FROM workerq WHERE workerq_id = %d", - $workid - ); - } + //if (ACTIVE_DBTYPE == DBTYPE_POSTGRES) { + //$workitem = q("SELECT * FROM workerq WHERE workerq_id = %d FOR UPDATE SKIP LOCKED", + //$workid + //); + //} + //else { + //$workitem = q("SELECT * FROM workerq WHERE workerq_id = %d FOR UPDATE SKIP LOCKED", + //$workid + //); + //} + + $workitem = dbq("SELECT * FROM workerq WHERE workerq_id = $workid"); self::qcommit(); @@ -287,7 +289,12 @@ class QueueWorker { $cls = '\\Zotlabs\\Daemon\\' . $argv[0]; $argv = flatten_array_recursive($argv); $argc = count($argv); + + $rnd = random_string(); + + hz_syslog('PROCESSING: ' . $rnd . ' ' . print_r($argv,true)); $cls::run($argc, $argv); + hz_syslog('COMPLETED: ' . $rnd); // @FIXME: Right now we assume that if we get a return, everything is OK. // At some point we may want to test whether the run returns true/false @@ -295,7 +302,7 @@ class QueueWorker { // to implement some sort of "retry interval" first. self::qbegin('workerq'); - q("delete from workerq where workerq_id = %d", $workid); + dbq("delete from workerq where workerq_id = $workid"); self::qcommit(); } else { -- cgit v1.2.3 From 91917c98e47a9f645fd4d1401b98a7f68941a1f7 Mon Sep 17 00:00:00 2001 From: Mario Date: Thu, 15 Dec 2022 09:19:56 +0000 Subject: bump version --- boot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot.php b/boot.php index 8b22d2168..9540d76de 100644 --- a/boot.php +++ b/boot.php @@ -60,7 +60,7 @@ require_once('include/bbcode.php'); require_once('include/items.php'); define('PLATFORM_NAME', 'hubzilla'); -define('STD_VERSION', '7.9.12'); +define('STD_VERSION', '7.9.13'); define('ZOT_REVISION', '6.0'); define('DB_UPDATE_VERSION', 1254); -- cgit v1.2.3 From 4d54755057047f6947285ee0db6e89fa12f294c8 Mon Sep 17 00:00:00 2001 From: Mario Date: Thu, 15 Dec 2022 16:53:17 +0000 Subject: queueworker: fix maxworkers check and cleanup --- Zotlabs/Lib/QueueWorker.php | 35 ++++++++++------------------------- 1 file changed, 10 insertions(+), 25 deletions(-) diff --git a/Zotlabs/Lib/QueueWorker.php b/Zotlabs/Lib/QueueWorker.php index b4ee6c327..2bcbdfc5c 100644 --- a/Zotlabs/Lib/QueueWorker.php +++ b/Zotlabs/Lib/QueueWorker.php @@ -23,16 +23,14 @@ class QueueWorker { 'Directory' => 1 ]; - private static function qbegin($tablename) { + private static function qbegin() { switch (ACTIVE_DBTYPE) { case DBTYPE_MYSQL: q('BEGIN'); - //q('LOCK TABLE ' . $tablename . ' WRITE'); break; case DBTYPE_POSTGRES: q('BEGIN'); - //q('LOCK TABLE '.$tablename.' IN ACCESS EXCLUSIVE MODE'); break; } return; @@ -90,7 +88,7 @@ class QueueWorker { return; } - self::qbegin('workerq'); + self::qbegin(); $r = q("INSERT INTO workerq (workerq_priority, workerq_data, workerq_uuid) VALUES (%d, '%s', '%s')", intval($priority), $workinfo_json, @@ -106,8 +104,8 @@ class QueueWorker { } $workers = self::GetWorkerCount(); - if ($workers < self::$maxworkers) { - hz_syslog("Less than max active workers ($workers) max = " . self::$maxworkers . ".", LOGGER_DEBUG); + if ($workers <= self::$maxworkers) { + hz_syslog("Less <= max active workers ($workers) max = " . self::$maxworkers . ".", LOGGER_DEBUG); $phpbin = get_config('system', 'phpbin', 'php'); proc_run($phpbin, 'Zotlabs/Daemon/Master.php', ['Queueworker']); } @@ -137,7 +135,7 @@ class QueueWorker { return; } - self::qbegin('workerq'); + self::qbegin(); $r = q("INSERT INTO workerq (workerq_priority, workerq_data, workerq_uuid) VALUES (%d, '%s', '%s')", intval($priority), $workinfo_json, @@ -193,7 +191,7 @@ class QueueWorker { private static function getWorkId() { self::GetWorkerCount(); - self::qbegin('workerq'); + self::qbegin(); if (ACTIVE_DBTYPE == DBTYPE_POSTGRES) { $work = dbq("SELECT workerq_id FROM workerq WHERE workerq_reservationid IS NULL ORDER BY workerq_priority DESC, workerq_id ASC LIMIT 1 FOR UPDATE SKIP LOCKED;"); @@ -254,28 +252,15 @@ class QueueWorker { usleep(self::$workersleep); - self::qbegin('workerq'); - - //if (ACTIVE_DBTYPE == DBTYPE_POSTGRES) { - //$workitem = q("SELECT * FROM workerq WHERE workerq_id = %d FOR UPDATE SKIP LOCKED", - //$workid - //); - //} - //else { - //$workitem = q("SELECT * FROM workerq WHERE workerq_id = %d FOR UPDATE SKIP LOCKED", - //$workid - //); - //} - + self::qbegin(); $workitem = dbq("SELECT * FROM workerq WHERE workerq_id = $workid"); - self::qcommit(); if (isset($workitem[0])) { // At least SOME work to do.... in case there's more, let's ramp up workers. $workers = self::GetWorkerCount(); - if ($workers < self::$maxworkers) { - logger("Less than max active workers ($workers) max = " . self::$maxworkers . ".", LOGGER_DEBUG); + if ($workers <= self::$maxworkers) { + logger("Less <= max active workers ($workers) max = " . self::$maxworkers . ".", LOGGER_DEBUG); $phpbin = get_config('system', 'phpbin', 'php'); proc_run($phpbin, 'Zotlabs/Daemon/Master.php', ['Queueworker']); } @@ -301,7 +286,7 @@ class QueueWorker { // and requeue the work to be tried again if needed. But we probably want // to implement some sort of "retry interval" first. - self::qbegin('workerq'); + self::qbegin(); dbq("delete from workerq where workerq_id = $workid"); self::qcommit(); } -- cgit v1.2.3 From e36677b757f71ad105adebc73fb26dd449e7e620 Mon Sep 17 00:00:00 2001 From: Mario Date: Sun, 18 Dec 2022 10:19:06 +0000 Subject: queueworker: cleanup and implement auto sleep interval (hidden config for now) --- Zotlabs/Lib/QueueWorker.php | 126 ++++++++++++++++++----------------------- Zotlabs/Module/Queueworker.php | 6 +- 2 files changed, 57 insertions(+), 75 deletions(-) diff --git a/Zotlabs/Lib/QueueWorker.php b/Zotlabs/Lib/QueueWorker.php index 2bcbdfc5c..da52fb859 100644 --- a/Zotlabs/Lib/QueueWorker.php +++ b/Zotlabs/Lib/QueueWorker.php @@ -2,11 +2,9 @@ namespace Zotlabs\Lib; - use Ramsey\Uuid\Uuid; use Ramsey\Uuid\Exception\UnableToBuildUuidException; - class QueueWorker { public static $queueworker = null; @@ -14,54 +12,25 @@ class QueueWorker { public static $workermaxage = 0; public static $workersleep = 100; public static $default_priorities = [ - 'Notifier' => 10, - 'Deliver' => 10, - 'Cache_query' => 10, - 'Content_importer' => 1, - 'File_importer' => 1, - 'Channel_purge' => 1, - 'Directory' => 1 + 'Notifier' => 10, + 'Deliver' => 10, + 'Cache_query' => 10, + 'Content_importer' => 1, + 'File_importer' => 1, + 'Channel_purge' => 1, + 'Directory' => 1 ]; private static function qbegin() { - switch (ACTIVE_DBTYPE) { - case DBTYPE_MYSQL: - q('BEGIN'); - break; - - case DBTYPE_POSTGRES: - q('BEGIN'); - break; - } - return; + q('BEGIN'); } private static function qcommit() { - switch (ACTIVE_DBTYPE) { - case DBTYPE_MYSQL: - //q("UNLOCK TABLES"); - q("COMMIT"); - break; - - case DBTYPE_POSTGRES: - q("COMMIT"); - break; - } - return; + q("COMMIT"); } private static function qrollback() { - switch (ACTIVE_DBTYPE) { - case DBTYPE_MYSQL: - q("ROLLBACK"); - //q("UNLOCK TABLES"); - break; - - case DBTYPE_POSTGRES: - q("ROLLBACK"); - break; - } - return; + q("ROLLBACK"); } public static function Summon($argv) { @@ -70,7 +39,7 @@ class QueueWorker { $priority = 0; // @TODO allow reprioritization - if(isset(self::$default_priorities[$argv[0]])) { + if (isset(self::$default_priorities[$argv[0]])) { $priority = self::$default_priorities[$argv[0]]; } @@ -83,8 +52,7 @@ class QueueWorker { ); if ($r) { logger("Summon: Ignoring duplicate workerq task", LOGGER_DEBUG); - logger(print_r($workinfo,true)); - $argv = []; + logger(print_r($workinfo, true)); return; } @@ -100,12 +68,12 @@ class QueueWorker { return; } self::qcommit(); - hz_syslog('INSERTED: ' . $workinfo_json, LOGGER_DEBUG); + logger('INSERTED: ' . $workinfo_json, LOGGER_DEBUG); } $workers = self::GetWorkerCount(); - if ($workers <= self::$maxworkers) { - hz_syslog("Less <= max active workers ($workers) max = " . self::$maxworkers . ".", LOGGER_DEBUG); + if ($workers < self::$maxworkers) { + logger($workers . '/' . self::$maxworkers . ' workers active', LOGGER_DEBUG); $phpbin = get_config('system', 'phpbin', 'php'); proc_run($phpbin, 'Zotlabs/Daemon/Master.php', ['Queueworker']); } @@ -116,7 +84,7 @@ class QueueWorker { if ($argv[0] !== 'Queueworker') { $priority = 0; // @TODO allow reprioritization - if(isset(self::$default_priorities[$argv[0]])) { + if (isset(self::$default_priorities[$argv[0]])) { $priority = self::$default_priorities[$argv[0]]; } @@ -129,9 +97,7 @@ class QueueWorker { ); if ($r) { logger("Release: Duplicate task - do not insert.", LOGGER_DEBUG); - logger(print_r($workinfo,true)); - - $argv = []; + logger(print_r($workinfo, true)); return; } @@ -177,14 +143,18 @@ class QueueWorker { if (self::$queueworker) { return self::$queueworker; } + $wid = uniqid('', true); - usleep(mt_rand(500000, 3000000)); //Sleep .5 - 3 seconds before creating a new worker. - $workers = self::GetWorkerCount(); - if ($workers >= self::$maxworkers) { + + usleep(mt_rand(300000, 1000000)); //Sleep .3 - 1 seconds before creating a new worker. + + if (self::GetWorkerCount() >= self::$maxworkers) { logger("Too many active workers ($workers) max = " . self::$maxworkers, LOGGER_DEBUG); return false; } + self::$queueworker = $wid; + return $wid; } @@ -193,17 +163,13 @@ class QueueWorker { self::qbegin(); - if (ACTIVE_DBTYPE == DBTYPE_POSTGRES) { - $work = dbq("SELECT workerq_id FROM workerq WHERE workerq_reservationid IS NULL ORDER BY workerq_priority DESC, workerq_id ASC LIMIT 1 FOR UPDATE SKIP LOCKED;"); - } - else { - $work = dbq("SELECT workerq_id FROM workerq WHERE workerq_reservationid IS NULL ORDER BY workerq_priority DESC, workerq_id ASC LIMIT 1 FOR UPDATE SKIP LOCKED;"); - } + $work = dbq("SELECT workerq_id FROM workerq WHERE workerq_reservationid IS NULL ORDER BY workerq_priority DESC, workerq_id ASC LIMIT 1 FOR UPDATE SKIP LOCKED;"); if (!$work) { self::qrollback(); return false; } + $id = $work[0]['workerq_id']; $work = q("UPDATE workerq SET workerq_reservationid = '%s', workerq_processtimeout = %s + INTERVAL %s WHERE workerq_id = %d", @@ -224,25 +190,38 @@ class QueueWorker { } public static function Process() { + $sleep = intval(get_config('queueworker', 'queue_worker_sleep', 100)); + $auto_queue_worker_sleep = get_config('queueworker', 'auto_queue_worker_sleep', 0); + if (!self::GetWorkerID()) { - hz_syslog('Unable to get worker ID. Exiting.', LOGGER_DEBUG); + if ($auto_queue_worker_sleep) { + set_config('queueworker', 'queue_worker_sleep', $sleep + 100); + } + + logger('Unable to get worker ID. Exiting.', LOGGER_DEBUG); killme(); } - $jobs = 0; - $workid = self::getWorkId(); + if ($auto_queue_worker_sleep && $sleep > 100) { + $next_sleep = $sleep - 100; + set_config('queueworker', 'queue_worker_sleep', (($next_sleep < 100) ? 100 : $next_sleep)); + } + + $jobs = 0; + $workid = self::getWorkId(); $load_average_sleep = false; - self::$workersleep = get_config('queueworker', 'queue_worker_sleep'); - self::$workersleep = ((intval(self::$workersleep) > 100) ? intval(self::$workersleep) : 100); + self::$workersleep = $sleep; + self::$workersleep = ((intval(self::$workersleep) > 100) ? intval(self::$workersleep) : 100); if (function_exists('sys_getloadavg') && get_config('queueworker', 'load_average_sleep')) { + // experimental! $load_average_sleep = true; } while ($workid) { if ($load_average_sleep) { - $load_average = sys_getloadavg(); + $load_average = sys_getloadavg(); self::$workersleep = intval($load_average[0]) * 10000; if (!self::$workersleep) { @@ -250,6 +229,8 @@ class QueueWorker { } } + logger('queue_worker_sleep: ' . self::$workersleep, LOGGER_DEBUG); + usleep(self::$workersleep); self::qbegin(); @@ -259,8 +240,8 @@ class QueueWorker { if (isset($workitem[0])) { // At least SOME work to do.... in case there's more, let's ramp up workers. $workers = self::GetWorkerCount(); - if ($workers <= self::$maxworkers) { - logger("Less <= max active workers ($workers) max = " . self::$maxworkers . ".", LOGGER_DEBUG); + if ($workers < self::$maxworkers) { + logger($workers . '/' . self::$maxworkers . ' workers active', LOGGER_DEBUG); $phpbin = get_config('system', 'phpbin', 'php'); proc_run($phpbin, 'Zotlabs/Daemon/Master.php', ['Queueworker']); } @@ -277,9 +258,11 @@ class QueueWorker { $rnd = random_string(); - hz_syslog('PROCESSING: ' . $rnd . ' ' . print_r($argv,true)); + logger('PROCESSING: ' . $rnd . ' ' . print_r($argv, true)); + $cls::run($argc, $argv); - hz_syslog('COMPLETED: ' . $rnd); + + logger('COMPLETED: ' . $rnd); // @FIXME: Right now we assume that if we get a return, everything is OK. // At some point we may want to test whether the run returns true/false @@ -326,7 +309,6 @@ class QueueWorker { //Make sure nothing new came in $work = q("select * from workerq"); } - return; } /** @@ -335,7 +317,7 @@ class QueueWorker { * @param string $data * @return string $uuid */ - private static function getUuid($data) { + private static function getUuid(string $data) { $namespace = '3a112e42-f147-4ccf-a78b-f6841339ea2a'; try { $uuid = Uuid::uuid5($namespace, $data)->toString(); diff --git a/Zotlabs/Module/Queueworker.php b/Zotlabs/Module/Queueworker.php index 808a9ed61..7c5e4f1cf 100644 --- a/Zotlabs/Module/Queueworker.php +++ b/Zotlabs/Module/Queueworker.php @@ -66,7 +66,7 @@ class Queueworker extends Controller { $maxqueueworkers = get_config('queueworker', 'max_queueworkers', 4); $maxqueueworkers = ($maxqueueworkers > 3) ? $maxqueueworkers : 4; - set_config('queueworker', 'max_queueworkers', $maxqueueworkers); + //set_config('queueworker', 'max_queueworkers', $maxqueueworkers); $sc = ''; @@ -81,7 +81,7 @@ class Queueworker extends Controller { $workermaxage = get_config('queueworker', 'queueworker_max_age'); $workermaxage = ($workermaxage >= 120) ? $workermaxage : 300; - set_config('queueworker', 'max_queueworker_age', $workermaxage); + //set_config('queueworker', 'max_queueworker_age', $workermaxage); $sc .= replace_macros(get_markup_template('field_input.tpl'), [ '$field' => [ @@ -94,7 +94,7 @@ class Queueworker extends Controller { $queueworkersleep = get_config('queueworker', 'queue_worker_sleep'); $queueworkersleep = ($queueworkersleep > 100) ? $queueworkersleep : 100; - set_config('queueworker', 'queue_worker_sleep', $queueworkersleep); + //set_config('queueworker', 'queue_worker_sleep', $queueworkersleep); $sc .= replace_macros(get_markup_template('field_input.tpl'), [ '$field' => [ -- cgit v1.2.3 From d977b5d66270c91de47bc8f67bd567833091d88f Mon Sep 17 00:00:00 2001 From: Mario Date: Sun, 18 Dec 2022 10:24:44 +0000 Subject: bump version --- boot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot.php b/boot.php index 9540d76de..8ee72843e 100644 --- a/boot.php +++ b/boot.php @@ -60,7 +60,7 @@ require_once('include/bbcode.php'); require_once('include/items.php'); define('PLATFORM_NAME', 'hubzilla'); -define('STD_VERSION', '7.9.13'); +define('STD_VERSION', '7.9.14'); define('ZOT_REVISION', '6.0'); define('DB_UPDATE_VERSION', 1254); -- cgit v1.2.3 From 34125177e8973a0a419a1ea3b2c18ff62b782d97 Mon Sep 17 00:00:00 2001 From: Mario Date: Mon, 19 Dec 2022 09:04:24 +0000 Subject: streamline ap followers only privacy warning with current handling. also fixes possible php error. --- Zotlabs/Lib/ThreadItem.php | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/Zotlabs/Lib/ThreadItem.php b/Zotlabs/Lib/ThreadItem.php index e86e2cac1..d1b386c42 100644 --- a/Zotlabs/Lib/ThreadItem.php +++ b/Zotlabs/Lib/ThreadItem.php @@ -137,13 +137,7 @@ class ThreadItem { $shareable = false; } - $privacy_warning = false; - if(intval($item['item_private']) && ($item['owner']['xchan_network'] === 'activitypub')) { - $recips = get_iconfig($item['parent'], 'activitypub', 'recips'); - - if(! is_array($recips['to']) || ! in_array($observer['xchan_url'], $recips['to'])) - $privacy_warning = true; - } + $privacy_warning = ($item['owner']['xchan_network'] === 'activitypub' && intval($item['item_private']) === 1); if ($lock) { if (($item['mid'] == $item['parent_mid']) && isset($item['term']) && count(get_terms_oftype($item['term'], TERM_FORUM))) { -- cgit v1.2.3 From 62eee07b6ee7ad7f34dbe7c5080630435acbb0bf Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Tue, 20 Dec 2022 14:06:14 +0100 Subject: make sure to include only zot6 hublocs in this query. including other networks could lead to unexpected results --- include/hubloc.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/hubloc.php b/include/hubloc.php index 965725cba..0236e4ae7 100644 --- a/include/hubloc.php +++ b/include/hubloc.php @@ -79,9 +79,10 @@ function prune_hub_reinstalls() { $r = q("select site_url from site where site_type = %d", intval(SITE_TYPE_ZOT) ); + if($r) { foreach($r as $rr) { - $x = q("select count(*) as t, hubloc_sitekey, max(hubloc_connected) as c from hubloc where hubloc_url = '%s' group by hubloc_sitekey order by c", + $x = q("select count(*) as t, hubloc_sitekey, max(hubloc_connected) as c from hubloc where hubloc_url = '%s' and hubloc_network = 'zot6' group by hubloc_sitekey order by c", dbesc($rr['site_url']) ); -- cgit v1.2.3 From 7dd23085344a93d4fb1b3a9e4a60ca0b4fb78a95 Mon Sep 17 00:00:00 2001 From: Mario Date: Tue, 20 Dec 2022 20:16:06 +0000 Subject: pooll fixes --- Zotlabs/Module/Item.php | 11 +++++++---- Zotlabs/Module/Vote.php | 6 ++---- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/Zotlabs/Module/Item.php b/Zotlabs/Module/Item.php index 8e6106e79..27fc62ee6 100644 --- a/Zotlabs/Module/Item.php +++ b/Zotlabs/Module/Item.php @@ -1518,8 +1518,9 @@ class Item extends Controller { if (preg_match_all('/\[answer\](.*?)\[\/answer\]/ism', $body, $matches, PREG_SET_ORDER)) { foreach ($matches as $match) { - $ptr[] = ['name' => $match[1], 'type' => 'Note', 'replies' => ['type' => 'Collection', 'totalItems' => 0]]; - $body = str_replace('[answer]' . $match[1] . '[/answer]', EMPTY_STR, $body); + $answer = escape_tags(trim($match[1])); + $ptr[] = ['name' => $answer, 'type' => 'Note', 'replies' => ['type' => 'Collection', 'totalItems' => 0]]; + $body = str_replace('[answer]' . $answer . '[/answer]', EMPTY_STR, $body); } } @@ -1573,8 +1574,10 @@ class Item extends Controller { $obj['content'] = bbcode($question); foreach ($answers as $answer) { - if (trim($answer)) - $ptr[] = ['name' => escape_tags($answer), 'type' => 'Note', 'replies' => ['type' => 'Collection', 'totalItems' => 0]]; + $answer = escape_tags(trim($answer)); + if ($answer) { + $ptr[] = ['name' => $answer, 'type' => 'Note', 'replies' => ['type' => 'Collection', 'totalItems' => 0]]; + } } if ($multiple) { diff --git a/Zotlabs/Module/Vote.php b/Zotlabs/Module/Vote.php index 4f909d33d..870fd760c 100644 --- a/Zotlabs/Module/Vote.php +++ b/Zotlabs/Module/Vote.php @@ -45,9 +45,7 @@ class Vote extends Controller { if ($obj['oneOf']) { foreach($obj['oneOf'] as $selection) { - // logger('selection: ' . $selection); - // logger('response: ' . $response); - if($selection['name'] && $selection['name'] === $response) { + if($selection['name'] && htmlspecialchars_decode($selection['name']) === $response) { $valid = true; } } @@ -56,7 +54,7 @@ class Vote extends Controller { $choices = []; if ($obj['anyOf']) { foreach ($obj['anyOf'] as $selection) { - $choices[] = $selection['name']; + $choices[] = htmlspecialchars_decode($selection['name']); } foreach ($response as $res) { if (! in_array($res,$choices)) { -- cgit v1.2.3 From e5c70a1304c27aab915e1fc1415c5cfc5d14ed68 Mon Sep 17 00:00:00 2001 From: Mario Date: Wed, 21 Dec 2022 17:11:33 +0000 Subject: queueworker: adjust process query to be complient with mariadb < 10.6 and add process timeout exceptions for long running processes --- Zotlabs/Lib/QueueWorker.php | 54 +++++++++++++++++++++++++++++++-------------- boot.php | 2 +- 2 files changed, 39 insertions(+), 17 deletions(-) diff --git a/Zotlabs/Lib/QueueWorker.php b/Zotlabs/Lib/QueueWorker.php index da52fb859..eecf79907 100644 --- a/Zotlabs/Lib/QueueWorker.php +++ b/Zotlabs/Lib/QueueWorker.php @@ -21,8 +21,14 @@ class QueueWorker { 'Directory' => 1 ]; - private static function qbegin() { - q('BEGIN'); + // Exceptions for processtimeout value. + // Currently the value is overriden with 3600 seconds (1h). + public static $long_running_cmd = [ + 'Queue' + ]; + + private static function qstart() { + q('START TRANSACTION'); } private static function qcommit() { @@ -56,11 +62,12 @@ class QueueWorker { return; } - self::qbegin(); - $r = q("INSERT INTO workerq (workerq_priority, workerq_data, workerq_uuid) VALUES (%d, '%s', '%s')", + self::qstart(); + $r = q("INSERT INTO workerq (workerq_priority, workerq_data, workerq_uuid, workerq_cmd) VALUES (%d, '%s', '%s', '%s')", intval($priority), $workinfo_json, - dbesc($uuid) + dbesc($uuid), + dbesc($argv[0]) ); if (!$r) { self::qrollback(); @@ -101,11 +108,12 @@ class QueueWorker { return; } - self::qbegin(); - $r = q("INSERT INTO workerq (workerq_priority, workerq_data, workerq_uuid) VALUES (%d, '%s', '%s')", + self::qstart(); + $r = q("INSERT INTO workerq (workerq_priority, workerq_data, workerq_uuid, workerq_cmd) VALUES (%d, '%s', '%s', '%s')", intval($priority), $workinfo_json, - dbesc($uuid) + dbesc($uuid), + dbesc($argv[0]) ); if (!$r) { self::qrollback(); @@ -133,7 +141,8 @@ class QueueWorker { db_utcnow() ); - usleep(self::$workersleep); + //usleep(self::$workersleep); + $workers = dbq("select count(distinct workerq_reservationid) as total from workerq where workerq_reservationid is not null"); logger("WORKERCOUNT: " . $workers[0]['total'], LOGGER_DEBUG); return intval($workers[0]['total']); @@ -148,7 +157,9 @@ class QueueWorker { usleep(mt_rand(300000, 1000000)); //Sleep .3 - 1 seconds before creating a new worker. - if (self::GetWorkerCount() >= self::$maxworkers) { + $workers = self::GetWorkerCount(); + + if ($workers >= self::$maxworkers) { logger("Too many active workers ($workers) max = " . self::$maxworkers, LOGGER_DEBUG); return false; } @@ -161,21 +172,30 @@ class QueueWorker { private static function getWorkId() { self::GetWorkerCount(); - self::qbegin(); + self::qstart(); - $work = dbq("SELECT workerq_id FROM workerq WHERE workerq_reservationid IS NULL ORDER BY workerq_priority DESC, workerq_id ASC LIMIT 1 FOR UPDATE SKIP LOCKED;"); + // This is probably the better solution but is not supported by mariadb < 10.6 + // $work = dbq("SELECT workerq_id FROM workerq WHERE workerq_reservationid IS NULL ORDER BY workerq_priority DESC, workerq_id ASC LIMIT 1 FOR UPDATE SKIP LOCKED;"); + + $work = dbq("SELECT workerq_id, workerq_cmd FROM workerq WHERE workerq_reservationid IS NULL ORDER BY workerq_priority DESC, workerq_id ASC LIMIT 1 FOR UPDATE;"); if (!$work) { - self::qrollback(); + self::qcommit(); return false; } $id = $work[0]['workerq_id']; + $cmd = $work[0]['workerq_cmd']; + $age = self::$workermaxage; + + if (in_array($cmd, self::$long_running_cmd)) { + $age = 3600; // 1h TODO: make this configurable + } $work = q("UPDATE workerq SET workerq_reservationid = '%s', workerq_processtimeout = %s + INTERVAL %s WHERE workerq_id = %d", self::$queueworker, db_utcnow(), - db_quoteinterval(self::$workermaxage . " SECOND"), + db_quoteinterval($age . " SECOND"), intval($id) ); @@ -184,8 +204,10 @@ class QueueWorker { logger("Could not update workerq.", LOGGER_DEBUG); return false; } + logger("GOTWORK: " . json_encode($work), LOGGER_DEBUG); self::qcommit(); + return $id; } @@ -233,7 +255,7 @@ class QueueWorker { usleep(self::$workersleep); - self::qbegin(); + self::qstart(); $workitem = dbq("SELECT * FROM workerq WHERE workerq_id = $workid"); self::qcommit(); @@ -269,7 +291,7 @@ class QueueWorker { // and requeue the work to be tried again if needed. But we probably want // to implement some sort of "retry interval" first. - self::qbegin(); + self::qstart(); dbq("delete from workerq where workerq_id = $workid"); self::qcommit(); } diff --git a/boot.php b/boot.php index 8ee72843e..ea8a592dc 100644 --- a/boot.php +++ b/boot.php @@ -63,7 +63,7 @@ define('PLATFORM_NAME', 'hubzilla'); define('STD_VERSION', '7.9.14'); define('ZOT_REVISION', '6.0'); -define('DB_UPDATE_VERSION', 1254); +define('DB_UPDATE_VERSION', 1255); define('PROJECT_BASE', __DIR__); -- cgit v1.2.3 From ca5610ebf1ba1dc2e1142eebc2b8d34d6bb33162 Mon Sep 17 00:00:00 2001 From: Mario Date: Wed, 21 Dec 2022 17:13:09 +0000 Subject: bump version --- boot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot.php b/boot.php index ea8a592dc..843d2e4b1 100644 --- a/boot.php +++ b/boot.php @@ -60,7 +60,7 @@ require_once('include/bbcode.php'); require_once('include/items.php'); define('PLATFORM_NAME', 'hubzilla'); -define('STD_VERSION', '7.9.14'); +define('STD_VERSION', '7.9.15'); define('ZOT_REVISION', '6.0'); define('DB_UPDATE_VERSION', 1255); -- cgit v1.2.3 From 1ba44fc117656233be82828e708d50cb3dcfc2d9 Mon Sep 17 00:00:00 2001 From: Mario Date: Wed, 21 Dec 2022 17:15:34 +0000 Subject: update --- Zotlabs/Update/_1255.php | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 Zotlabs/Update/_1255.php diff --git a/Zotlabs/Update/_1255.php b/Zotlabs/Update/_1255.php new file mode 100644 index 000000000..4f1da1a4a --- /dev/null +++ b/Zotlabs/Update/_1255.php @@ -0,0 +1,29 @@ + Date: Thu, 22 Dec 2022 10:02:31 +0000 Subject: there is no point in wrapping single queries into a transaction --- Zotlabs/Lib/QueueWorker.php | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/Zotlabs/Lib/QueueWorker.php b/Zotlabs/Lib/QueueWorker.php index eecf79907..8f816a619 100644 --- a/Zotlabs/Lib/QueueWorker.php +++ b/Zotlabs/Lib/QueueWorker.php @@ -21,7 +21,7 @@ class QueueWorker { 'Directory' => 1 ]; - // Exceptions for processtimeout value. + // Exceptions for processtimeout ($workermaxage) value. // Currently the value is overriden with 3600 seconds (1h). public static $long_running_cmd = [ 'Queue' @@ -145,6 +145,7 @@ class QueueWorker { $workers = dbq("select count(distinct workerq_reservationid) as total from workerq where workerq_reservationid is not null"); logger("WORKERCOUNT: " . $workers[0]['total'], LOGGER_DEBUG); + return intval($workers[0]['total']); } @@ -174,7 +175,7 @@ class QueueWorker { self::qstart(); - // This is probably the better solution but is not supported by mariadb < 10.6 + // This is probably the better solution but is not supported by mariadb < 10.6 which is still used a lot. // $work = dbq("SELECT workerq_id FROM workerq WHERE workerq_reservationid IS NULL ORDER BY workerq_priority DESC, workerq_id ASC LIMIT 1 FOR UPDATE SKIP LOCKED;"); $work = dbq("SELECT workerq_id, workerq_cmd FROM workerq WHERE workerq_reservationid IS NULL ORDER BY workerq_priority DESC, workerq_id ASC LIMIT 1 FOR UPDATE;"); @@ -255,9 +256,7 @@ class QueueWorker { usleep(self::$workersleep); - self::qstart(); $workitem = dbq("SELECT * FROM workerq WHERE workerq_id = $workid"); - self::qcommit(); if (isset($workitem[0])) { // At least SOME work to do.... in case there's more, let's ramp up workers. @@ -291,9 +290,7 @@ class QueueWorker { // and requeue the work to be tried again if needed. But we probably want // to implement some sort of "retry interval" first. - self::qstart(); dbq("delete from workerq where workerq_id = $workid"); - self::qcommit(); } else { logger("NO WORKITEM!", LOGGER_DEBUG); -- cgit v1.2.3 From 999e142370a8daaf6a668ba9bba0313c59ed4f1c Mon Sep 17 00:00:00 2001 From: Mario Date: Thu, 22 Dec 2022 10:09:35 +0000 Subject: minor cleanup --- Zotlabs/Lib/QueueWorker.php | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/Zotlabs/Lib/QueueWorker.php b/Zotlabs/Lib/QueueWorker.php index 8f816a619..3a0e70f63 100644 --- a/Zotlabs/Lib/QueueWorker.php +++ b/Zotlabs/Lib/QueueWorker.php @@ -258,9 +258,10 @@ class QueueWorker { $workitem = dbq("SELECT * FROM workerq WHERE workerq_id = $workid"); - if (isset($workitem[0])) { + if ($workitem) { // At least SOME work to do.... in case there's more, let's ramp up workers. $workers = self::GetWorkerCount(); + if ($workers < self::$maxworkers) { logger($workers . '/' . self::$maxworkers . ' workers active', LOGGER_DEBUG); $phpbin = get_config('system', 'phpbin', 'php'); @@ -268,6 +269,7 @@ class QueueWorker { } $jobs++; + logger("Workinfo: " . $workitem[0]['workerq_data'], LOGGER_DEBUG); $workinfo = json_decode($workitem[0]['workerq_data'], true); @@ -276,10 +278,9 @@ class QueueWorker { $cls = '\\Zotlabs\\Daemon\\' . $argv[0]; $argv = flatten_array_recursive($argv); $argc = count($argv); - $rnd = random_string(); - logger('PROCESSING: ' . $rnd . ' ' . print_r($argv, true)); + logger('PROCESSING: ' . $rnd . ' ' . print_r($argv[0], true)); $cls::run($argc, $argv); @@ -307,24 +308,30 @@ class QueueWorker { $workinfo = json_decode($workitem['v'], true); $argc = $workinfo['argc']; $argv = $workinfo['argv']; + logger('Master: process: ' . print_r($argv, true), LOGGER_ALL, LOG_DEBUG); + if (!isset($argv[0])) { q("delete from workerq where workerq_id = %d", $work[0]['workerq_id'] ); continue; } + $cls = '\\Zotlabs\\Daemon\\' . $argv[0]; $cls::run($argc, $argv); + q("delete from workerq where workerq_id = %d", $work[0]['workerq_id'] ); - usleep(300000); + //Give the server .3 seconds to catch its breath between tasks. //This will hopefully keep it from crashing to it's knees entirely //if the last task ended up initiating other parallel processes //(eg. polling remotes) + usleep(300000); } + //Make sure nothing new came in $work = q("select * from workerq"); } -- cgit v1.2.3 From c6e7a7eaee5b9bf97a8d02cac9cec05f5750b426 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Thu, 22 Dec 2022 12:42:44 +0100 Subject: comment out unused code --- include/items.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/items.php b/include/items.php index 73fd584e1..88efeb64e 100644 --- a/include/items.php +++ b/include/items.php @@ -4602,10 +4602,11 @@ function items_fetch($arr,$channel = null,$observer_hash = null,$client_mode = C $items = array(); } + /** @FIXME finish mark unseen sql if ($parents_str && (isset($arr['mark_seen']) && $arr['mark_seen'])) { $update_unseen = ' AND parent IN ( ' . dbesc($parents_str) . ' )'; - /** @FIXME finish mark unseen sql */ } + */ } return $items; -- cgit v1.2.3 From 7ef946228643a893ce07bed3b2d25473b3bde50c Mon Sep 17 00:00:00 2001 From: Mario Date: Thu, 22 Dec 2022 12:22:32 +0000 Subject: bring back item-highlight --- view/css/conversation.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/view/css/conversation.css b/view/css/conversation.css index e286a2b22..d6a99f853 100644 --- a/view/css/conversation.css +++ b/view/css/conversation.css @@ -94,7 +94,6 @@ /* conversation */ - /* conv_item */ .wall-item-head-new { @@ -216,6 +215,9 @@ a.wall-item-name-link { color: #007bff; } +.item-highlight { + border-left: 0.2rem solid #007bff; +} /* comment_item */ -- cgit v1.2.3 From 2b0404fefc69678db7afa5e1f25a5f1fabd50907 Mon Sep 17 00:00:00 2001 From: Mario Date: Thu, 22 Dec 2022 13:29:34 +0000 Subject: queueworker: add some more details --- Zotlabs/Module/Queueworker.php | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/Zotlabs/Module/Queueworker.php b/Zotlabs/Module/Queueworker.php index 7c5e4f1cf..0e0529bc0 100644 --- a/Zotlabs/Module/Queueworker.php +++ b/Zotlabs/Module/Queueworker.php @@ -51,22 +51,24 @@ class Queueworker extends Controller { $content = "

Queue Status

\n"; - $r = q('select count(*) as qentries from workerq'); + $r = q('select count(*) as total from workerq'); - if (!$r) { - $content = "

There was an error querying the database.

"; - return $content; - } - - $content .= "

There are " . $r[0]['qentries'] . " queue items to be processed.

"; + $content .= "

There are " . $r[0]['total'] . " queue items to be processed.

"; $r = dbq("select count(distinct workerq_reservationid) as qworkers from workerq where workerq_reservationid is not null"); $content .= "

Active workers: " . $r[0]['qworkers'] . "

"; + $r = dbq("select workerq_cmd, count(*) as total from workerq where true group by workerq_cmd"); + + $content .= "

Work items

"; + + foreach($r as $rr) { + $content .= $rr['workerq_cmd'] . ': ' . $rr['total'] . '
'; + } + $maxqueueworkers = get_config('queueworker', 'max_queueworkers', 4); $maxqueueworkers = ($maxqueueworkers > 3) ? $maxqueueworkers : 4; - //set_config('queueworker', 'max_queueworkers', $maxqueueworkers); $sc = ''; @@ -81,7 +83,6 @@ class Queueworker extends Controller { $workermaxage = get_config('queueworker', 'queueworker_max_age'); $workermaxage = ($workermaxage >= 120) ? $workermaxage : 300; - //set_config('queueworker', 'max_queueworker_age', $workermaxage); $sc .= replace_macros(get_markup_template('field_input.tpl'), [ '$field' => [ @@ -94,7 +95,6 @@ class Queueworker extends Controller { $queueworkersleep = get_config('queueworker', 'queue_worker_sleep'); $queueworkersleep = ($queueworkersleep > 100) ? $queueworkersleep : 100; - //set_config('queueworker', 'queue_worker_sleep', $queueworkersleep); $sc .= replace_macros(get_markup_template('field_input.tpl'), [ '$field' => [ -- cgit v1.2.3 From a46e2c1e6db63b03552bba9d6699b8509fd6daa0 Mon Sep 17 00:00:00 2001 From: Mario Date: Thu, 22 Dec 2022 13:35:46 +0000 Subject: only display details if there are any --- Zotlabs/Module/Queueworker.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Zotlabs/Module/Queueworker.php b/Zotlabs/Module/Queueworker.php index 0e0529bc0..440132881 100644 --- a/Zotlabs/Module/Queueworker.php +++ b/Zotlabs/Module/Queueworker.php @@ -61,10 +61,11 @@ class Queueworker extends Controller { $r = dbq("select workerq_cmd, count(*) as total from workerq where true group by workerq_cmd"); - $content .= "

Work items

"; - - foreach($r as $rr) { - $content .= $rr['workerq_cmd'] . ': ' . $rr['total'] . '
'; + if ($r) { + $content .= "

Work items

"; + foreach($r as $rr) { + $content .= $rr['workerq_cmd'] . ': ' . $rr['total'] . '
'; + } } $maxqueueworkers = get_config('queueworker', 'max_queueworkers', 4); -- cgit v1.2.3 From d2d6be73b8428c11c2461961a920ed3e3e656f64 Mon Sep 17 00:00:00 2001 From: Mario Date: Mon, 26 Dec 2022 09:08:54 +0000 Subject: fix subquery in hq widget and order by hubloc_id desc in handle_tag() to make sure we get the most recent entry when using privacy tags --- Zotlabs/Widget/Messages.php | 8 +++++--- include/text.php | 4 ++-- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/Zotlabs/Widget/Messages.php b/Zotlabs/Widget/Messages.php index 9a3f0fa9c..a7e3b08fc 100644 --- a/Zotlabs/Widget/Messages.php +++ b/Zotlabs/Widget/Messages.php @@ -69,10 +69,12 @@ class Messages { $vnotify_sql = ''; if (!($vnotify & VNOTIFY_LIKE)) { - $vnotify_sql = " AND c.verb NOT IN ('" . dbesc(ACTIVITY_LIKE) . "', '" . dbesc(ACTIVITY_DISLIKE) . "') "; + $vnotify_sql_c = " AND c.verb NOT IN ('" . dbesc(ACTIVITY_LIKE) . "', '" . dbesc(ACTIVITY_DISLIKE) . "') "; + $vnotify_sql_i = " AND i.verb NOT IN ('" . dbesc(ACTIVITY_LIKE) . "', '" . dbesc(ACTIVITY_DISLIKE) . "') "; } elseif (!feature_enabled(local_channel(), 'dislike')) { - $vnotify_sql = " AND c.verb NOT IN ('" . dbesc(ACTIVITY_DISLIKE) . "') "; + $vnotify_sql_c = " AND c.verb NOT IN ('" . dbesc(ACTIVITY_DISLIKE) . "') "; + $vnotify_sql_i = " AND i.verb NOT IN ('" . dbesc(ACTIVITY_DISLIKE) . "') "; } switch($type) { @@ -90,7 +92,7 @@ class Messages { } $items = q("SELECT *, - (SELECT count(*) FROM item c WHERE c.uid = %d AND c.parent = i.parent AND c.item_unseen = 1 AND c.item_thread_top = 0 $item_normal_c $vnotify_sql) AS unseen_count + (SELECT count(*) FROM item c WHERE c.uid = %d AND c.parent = i.parent AND c.item_unseen = 1 AND c.item_thread_top = 0 $item_normal_c $vnotify_sql_c) AS unseen_count FROM item i WHERE i.uid = %d AND i.created <= '%s' $type_sql diff --git a/include/text.php b/include/text.php index 1608f5435..35ce465d6 100644 --- a/include/text.php +++ b/include/text.php @@ -2970,7 +2970,7 @@ function handle_tag(&$body, &$str_tags, $profile_uid, $tag, $in_network = true) $newname = substr($name,1); $newname = substr($newname,0,-1); - $r = q("SELECT * FROM xchan WHERE ( xchan_addr = '%s' OR xchan_url = '%s' ) AND xchan_deleted = 0 AND NOT xchan_network IN ('rss', 'anon', 'unknown')", + $r = q("SELECT * FROM xchan LEFT JOIN hubloc ON hubloc_hash = xchan_hash WHERE ( xchan_addr = '%s' OR xchan_url = '%s' ) AND xchan_deleted = 0 AND NOT xchan_network IN ('rss', 'anon', 'unknown') ORDER BY hubloc_id DESC", dbesc($newname), dbesc($newname) ); @@ -3005,7 +3005,7 @@ function handle_tag(&$body, &$str_tags, $profile_uid, $tag, $in_network = true) if((! $r) && strpos($newname,'@')) { $r = q("SELECT * FROM xchan LEFT JOIN hubloc ON xchan_hash = hubloc_hash - WHERE hubloc_addr = '%s' AND xchan_deleted = 0 AND NOT xchan_network IN ('rss', 'anon', 'unknown')", + WHERE hubloc_addr = '%s' AND xchan_deleted = 0 AND NOT xchan_network IN ('rss', 'anon', 'unknown') ORDER BY hubloc_id DESC", dbesc($newname) ); } -- cgit v1.2.3 From 3101c6540a3992a95369abefd3bafa3abf36db9e Mon Sep 17 00:00:00 2001 From: Mario Date: Tue, 27 Dec 2022 10:33:29 +0000 Subject: add workerq to the install schemas --- install/schema_mysql.sql | 16 +++++++++++++++- install/schema_postgres.sql | 15 ++++++++++++++- 2 files changed, 29 insertions(+), 2 deletions(-) diff --git a/install/schema_mysql.sql b/install/schema_mysql.sql index 80ae20d7b..0f407960d 100644 --- a/install/schema_mysql.sql +++ b/install/schema_mysql.sql @@ -1232,7 +1232,7 @@ CREATE TABLE IF NOT EXISTS `verify` ( CREATE TABLE IF NOT EXISTS `vote` ( `vote_id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `vote_guid` varchar(191) NOT NULL, + `vote_guid` varchar(191) NOT NULL, `vote_poll` int(11) NOT NULL DEFAULT 0 , `vote_element` int(11) NOT NULL DEFAULT 0 , `vote_result` text NOT NULL, @@ -1616,3 +1616,17 @@ CREATE TABLE if not exists oauth_jwt ( subject VARCHAR(80), public_key VARCHAR(2000) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; + +CREATE TABLE IF NOT EXISTS workerq ( + workerq_id BIGINT UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT, + workerq_priority smallint, + workerq_reservationid varchar(25) DEFAULT NULL, + workerq_processtimeout datetime NOT NULL DEFAULT '0001-01-01 00:00:00', + workerq_data text, + workerq_uuid char(36) NOT NULL DEFAULT '', + workerq_cmd varchar(191) NOT NULL DEFAULT '', + KEY workerq_priority (workerq_priority), + KEY workerq_reservationid (workerq_reservationid), + KEY workerq_processtimeout (workerq_uuid), + KEY workerq_uuid (workerq_processtimeout) +) ENGINE = InnoDB DEFAULT CHARSET=utf8mb4 diff --git a/install/schema_postgres.sql b/install/schema_postgres.sql index 96d0cc33c..5a97ebca1 100644 --- a/install/schema_postgres.sql +++ b/install/schema_postgres.sql @@ -1652,4 +1652,17 @@ CREATE TABLE oauth_jwt ( public_key VARCHAR(2000) NOT NULL ); - +CREATE TABLE IF NOT EXISTS workerq ( + workerq_id bigserial NOT NULL, + workerq_priority smallint, + workerq_reservationid varchar(25) DEFAULT NULL, + workerq_processtimeout timestamp NOT NULL DEFAULT '0001-01-01 00:00:00', + workerq_data text, + workerq_uuid UUID NOT NULL, + workerq_cmd text NOT NULL DEFAULT '', + PRIMARY KEY (workerq_id) +) +CREATE INDEX idx_workerq_priority ON workerq (workerq_priority); +CREATE INDEX idx_workerq_reservationid ON workerq (workerq_reservationid); +CREATE INDEX idx_workerq_processtimeout ON workerq (workerq_processtimeout); +CREATE INDEX idx_workerq_uuid ON workerq (workerq_uuid); -- cgit v1.2.3 From 633cd11c5b129a9712dbc6e7867284fa7999cea5 Mon Sep 17 00:00:00 2001 From: Mario Date: Tue, 27 Dec 2022 10:44:54 +0000 Subject: move mod queueworker to /admin --- Zotlabs/Module/Admin/Queueworker.php | 106 ++++++++++++++++++++++++++++++ Zotlabs/Module/Queueworker.php | 123 ----------------------------------- Zotlabs/Widget/Admin.php | 1 + 3 files changed, 107 insertions(+), 123 deletions(-) create mode 100644 Zotlabs/Module/Admin/Queueworker.php delete mode 100644 Zotlabs/Module/Queueworker.php diff --git a/Zotlabs/Module/Admin/Queueworker.php b/Zotlabs/Module/Admin/Queueworker.php new file mode 100644 index 000000000..b7972b2db --- /dev/null +++ b/Zotlabs/Module/Admin/Queueworker.php @@ -0,0 +1,106 @@ + 3) ? $maxqueueworkers : 4; + set_config('queueworker', 'max_queueworkers', $maxqueueworkers); + + $maxworkerage = intval($_POST['queueworker_max_age']); + $maxworkerage = ($maxworkerage >= 120) ? $maxworkerage : 300; + set_config('queueworker', 'queueworker_max_age', $maxworkerage); + + $queueworkersleep = intval($_POST['queue_worker_sleep']); + $queueworkersleep = ($queueworkersleep > 100) ? $queueworkersleep : 100; + set_config('queueworker', 'queue_worker_sleep', $queueworkersleep); + + goaway(z_root() . '/admin/queueworker'); + } + + function get() { + + $content = "

Queue Status

\n"; + + $r = q('select count(*) as total from workerq'); + + $content .= "

There are " . $r[0]['total'] . " queue items to be processed.

"; + + $r = dbq("select count(distinct workerq_reservationid) as qworkers from workerq where workerq_reservationid is not null"); + + $content .= "

Active workers: " . $r[0]['qworkers'] . "

"; + + $r = dbq("select workerq_cmd, count(*) as total from workerq where true group by workerq_cmd"); + + if ($r) { + $content .= "

Work items

"; + foreach($r as $rr) { + $content .= $rr['workerq_cmd'] . ': ' . $rr['total'] . '
'; + } + } + + $maxqueueworkers = get_config('queueworker', 'max_queueworkers', 4); + $maxqueueworkers = ($maxqueueworkers > 3) ? $maxqueueworkers : 4; + + $sc = ''; + + $sc .= replace_macros(get_markup_template('field_input.tpl'), [ + '$field' => [ + 'queueworker_maxworkers', + t('Max queueworker threads'), + $maxqueueworkers, + t('Minimum 4, default 4') + ] + ]); + + $workermaxage = get_config('queueworker', 'queueworker_max_age'); + $workermaxage = ($workermaxage >= 120) ? $workermaxage : 300; + + $sc .= replace_macros(get_markup_template('field_input.tpl'), [ + '$field' => [ + 'queueworker_max_age', + t('Assume workers dead after'), + $workermaxage, + t('Minimum 120, default 300 seconds') + ] + ]); + + $queueworkersleep = get_config('queueworker', 'queue_worker_sleep'); + $queueworkersleep = ($queueworkersleep > 100) ? $queueworkersleep : 100; + + $sc .= replace_macros(get_markup_template('field_input.tpl'), [ + '$field' => [ + 'queue_worker_sleep', + t('Pause before starting next task'), + $queueworkersleep, + t('Minimum 100, default 100 microseconds') + ] + ]); + + $tpl = get_markup_template('settings_addon.tpl'); + $content .= replace_macros($tpl, [ + '$action_url' => 'queueworker', + '$form_security_token' => get_form_security_token('queueworker'), + '$title' => t('Queueworker Settings'), + '$content' => $sc, + '$baseurl' => z_root(), + '$submit' => t('Save') + ] + ); + + return $content; + + } +} diff --git a/Zotlabs/Module/Queueworker.php b/Zotlabs/Module/Queueworker.php deleted file mode 100644 index 440132881..000000000 --- a/Zotlabs/Module/Queueworker.php +++ /dev/null @@ -1,123 +0,0 @@ - 3) ? $maxqueueworkers : 4; - set_config('queueworker', 'max_queueworkers', $maxqueueworkers); - - $maxworkerage = intval($_POST['queueworker_max_age']); - $maxworkerage = ($maxworkerage >= 120) ? $maxworkerage : 300; - set_config('queueworker', 'queueworker_max_age', $maxworkerage); - - $queueworkersleep = intval($_POST['queue_worker_sleep']); - $queueworkersleep = ($queueworkersleep > 100) ? $queueworkersleep : 100; - set_config('queueworker', 'queue_worker_sleep', $queueworkersleep); - - goaway(z_root() . '/queueworker'); - } - - function get() { - - $content = "

ERROR: Page not found

"; - App::$error = 404; - - if (!local_channel()) { - return $content; - } - - if (!(is_site_admin())) { - return $content; - } - - load_config("queueworker"); - - $content = "

Queue Status

\n"; - - $r = q('select count(*) as total from workerq'); - - $content .= "

There are " . $r[0]['total'] . " queue items to be processed.

"; - - $r = dbq("select count(distinct workerq_reservationid) as qworkers from workerq where workerq_reservationid is not null"); - - $content .= "

Active workers: " . $r[0]['qworkers'] . "

"; - - $r = dbq("select workerq_cmd, count(*) as total from workerq where true group by workerq_cmd"); - - if ($r) { - $content .= "

Work items

"; - foreach($r as $rr) { - $content .= $rr['workerq_cmd'] . ': ' . $rr['total'] . '
'; - } - } - - $maxqueueworkers = get_config('queueworker', 'max_queueworkers', 4); - $maxqueueworkers = ($maxqueueworkers > 3) ? $maxqueueworkers : 4; - - $sc = ''; - - $sc .= replace_macros(get_markup_template('field_input.tpl'), [ - '$field' => [ - 'queueworker_maxworkers', - t('Max queueworker threads'), - $maxqueueworkers, - t('Minimum 4, default 4') - ] - ]); - - $workermaxage = get_config('queueworker', 'queueworker_max_age'); - $workermaxage = ($workermaxage >= 120) ? $workermaxage : 300; - - $sc .= replace_macros(get_markup_template('field_input.tpl'), [ - '$field' => [ - 'queueworker_max_age', - t('Assume workers dead after'), - $workermaxage, - t('Minimum 120, default 300 seconds') - ] - ]); - - $queueworkersleep = get_config('queueworker', 'queue_worker_sleep'); - $queueworkersleep = ($queueworkersleep > 100) ? $queueworkersleep : 100; - - $sc .= replace_macros(get_markup_template('field_input.tpl'), [ - '$field' => [ - 'queue_worker_sleep', - t('Pause before starting next task'), - $queueworkersleep, - t('Minimum 100, default 100 microseconds') - ] - ]); - - $tpl = get_markup_template('settings_addon.tpl'); - $content .= replace_macros($tpl, [ - '$action_url' => 'queueworker', - '$form_security_token' => get_form_security_token('queueworker'), - '$title' => t('Queueworker Settings'), - '$content' => $sc, - '$baseurl' => z_root(), - '$submit' => t('Save') - ] - ); - - return $content; - - } -} diff --git a/Zotlabs/Widget/Admin.php b/Zotlabs/Widget/Admin.php index 0a7a6925f..aa88de36a 100644 --- a/Zotlabs/Widget/Admin.php +++ b/Zotlabs/Widget/Admin.php @@ -32,6 +32,7 @@ class Admin { 'addons' => array(z_root() . '/admin/addons/', t('Addons'), 'addons'), 'themes' => array(z_root() . '/admin/themes/', t('Themes'), 'themes'), 'queue' => array(z_root() . '/admin/queue', t('Inspect queue'), 'queue'), + 'queueworker' => array(z_root() . '/admin/queueworker', t('Queueworker'), 'queueworker'), 'profs' => array(z_root() . '/admin/profs', t('Profile Fields'), 'profs'), 'dbsync' => array(z_root() . '/admin/dbsync/', t('DB updates'), 'dbsync') ]; -- cgit v1.2.3 From a30cfd8fec638a0f1d428c456f593e773f18b1bf Mon Sep 17 00:00:00 2001 From: Mario Date: Tue, 27 Dec 2022 16:08:08 +0000 Subject: filter approvals --- Zotlabs/Module/Sse_bs.php | 20 ++++++++++++++++++++ Zotlabs/Widget/Messages.php | 5 ++++- 2 files changed, 24 insertions(+), 1 deletion(-) diff --git a/Zotlabs/Module/Sse_bs.php b/Zotlabs/Module/Sse_bs.php index ca9630c02..052870cc9 100644 --- a/Zotlabs/Module/Sse_bs.php +++ b/Zotlabs/Module/Sse_bs.php @@ -173,6 +173,9 @@ class Sse_bs extends Controller { $item_normal = item_normal(); + // FEP-5624 filter approvals for comments + $approvals = " AND verb NOT IN ('" . dbesc(ACTIVITY_ATTEND) . "', 'Accept', '" . dbesc(ACTIVITY_ATTENDNO) . "', 'Reject') "; + if ($notifications) { $items = q("SELECT * FROM item WHERE uid = %d @@ -181,6 +184,7 @@ class Sse_bs extends Controller { AND obj_type NOT IN ('Document', 'Video', 'Audio', 'Image') AND author_xchan != '%s' $item_normal + $approvals $sql_extra $sql_extra2 ORDER BY created DESC LIMIT $limit OFFSET $offset", @@ -210,6 +214,7 @@ class Sse_bs extends Controller { AND obj_type NOT IN ('Document', 'Video', 'Audio', 'Image') AND author_xchan != '%s' $item_normal + $approvals $sql_extra LIMIT 100", intval(self::$uid), dbesc(self::$ob_hash) @@ -253,6 +258,9 @@ class Sse_bs extends Controller { $item_normal = item_normal(); + // FEP-5624 filter approvals for comments + $approvals = " AND verb NOT IN ('" . dbesc(ACTIVITY_ATTEND) . "', 'Accept', '" . dbesc(ACTIVITY_ATTENDNO) . "', 'Reject') "; + if ($notifications) { $items = q("SELECT * FROM item WHERE uid = %d @@ -261,6 +269,7 @@ class Sse_bs extends Controller { AND obj_type NOT IN ('Document', 'Video', 'Audio', 'Image') AND author_xchan != '%s' $item_normal + $approvals $sql_extra $sql_extra2 ORDER BY created DESC LIMIT $limit OFFSET $offset", @@ -288,6 +297,7 @@ class Sse_bs extends Controller { $r = q("SELECT id FROM item WHERE uid = %d and item_unseen = 1 AND item_private = 2 $item_normal + $approvals $sql_extra AND author_xchan != '%s' LIMIT 100", intval(self::$uid), @@ -333,6 +343,9 @@ class Sse_bs extends Controller { $item_normal = item_normal(); + // FEP-5624 filter approvals for comments + $approvals = " AND verb NOT IN ('" . dbesc(ACTIVITY_ATTEND) . "', 'Accept', '" . dbesc(ACTIVITY_ATTENDNO) . "', 'Reject') "; + if ($notifications) { $items = q("SELECT * FROM item WHERE uid = %d @@ -341,6 +354,7 @@ class Sse_bs extends Controller { AND obj_type NOT IN ('Document', 'Video', 'Audio', 'Image') AND author_xchan != '%s' $item_normal + $approvals $sql_extra $sql_extra2 ORDER BY created DESC LIMIT $limit OFFSET $offset", @@ -368,6 +382,7 @@ class Sse_bs extends Controller { $r = q("SELECT id FROM item WHERE uid = %d and item_unseen = 1 AND item_wall = 1 AND item_private IN (0, 1) $item_normal + $approvals $sql_extra AND author_xchan != '%s' LIMIT 100", intval(self::$uid), @@ -430,6 +445,9 @@ class Sse_bs extends Controller { $item_normal = item_normal(); + // FEP-5624 filter approvals for comments + $approvals = " AND verb NOT IN ('" . dbesc(ACTIVITY_ATTEND) . "', 'Accept', '" . dbesc(ACTIVITY_ATTENDNO) . "', 'Reject') "; + if ($notifications) { $items = q("SELECT * FROM item WHERE true $uids @@ -438,6 +456,7 @@ class Sse_bs extends Controller { AND author_xchan != '%s' AND created > '%s' $item_normal + $approvals $sql_extra $sql_extra2 ORDER BY created DESC LIMIT $limit OFFSET $offset", @@ -465,6 +484,7 @@ class Sse_bs extends Controller { WHERE true $uids AND created > '%s' $item_normal + $approvals $sql_extra AND author_xchan != '%s' LIMIT 100", dbescdate($_SESSION['static_loadtime']), diff --git a/Zotlabs/Widget/Messages.php b/Zotlabs/Widget/Messages.php index a7e3b08fc..8c413e16e 100644 --- a/Zotlabs/Widget/Messages.php +++ b/Zotlabs/Widget/Messages.php @@ -91,8 +91,11 @@ class Messages { $type_sql = ' AND i.item_private IN (0, 1) '; } + // FEP-5624 filter approvals for comments + $approvals_c = " AND c.verb NOT IN ('" . dbesc(ACTIVITY_ATTEND) . "', 'Accept', '" . dbesc(ACTIVITY_ATTENDNO) . "', 'Reject') "; + $items = q("SELECT *, - (SELECT count(*) FROM item c WHERE c.uid = %d AND c.parent = i.parent AND c.item_unseen = 1 AND c.item_thread_top = 0 $item_normal_c $vnotify_sql_c) AS unseen_count + (SELECT count(*) FROM item c WHERE c.uid = %d AND c.parent = i.parent AND c.item_unseen = 1 AND c.item_thread_top = 0 $item_normal_c $approvals_c $vnotify_sql_c) AS unseen_count FROM item i WHERE i.uid = %d AND i.created <= '%s' $type_sql -- cgit v1.2.3 From 07417080865852fc82c866c5ea975ca5df3101a0 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Sun, 1 Jan 2023 21:21:13 +0100 Subject: change the logic of building the site only public stream. we will now fetch sys channel items but restrict them to authors of this site only. this fixes a comment permission issue. --- Zotlabs/Module/Pubstream.php | 29 ++++++++++++++++------------- 1 file changed, 16 insertions(+), 13 deletions(-) diff --git a/Zotlabs/Module/Pubstream.php b/Zotlabs/Module/Pubstream.php index 47da3c13a..d9156e4bf 100644 --- a/Zotlabs/Module/Pubstream.php +++ b/Zotlabs/Module/Pubstream.php @@ -158,16 +158,13 @@ class Pubstream extends \Zotlabs\Web\Controller { require_once('include/security.php'); $sys = get_sys_channel(); + $uids = " and item.uid = " . intval($sys['channel_id']) . " "; $abook_uids = " and abook.abook_channel = " . intval($sys['channel_id']) . " "; - $sql_extra = ''; + $sql_extra = item_permissions_sql($sys['channel_id']); + $site_firehose_sql = ''; if($site_firehose) { - $uids = " and item.uid in ( " . stream_perms_api_uids(PERMS_PUBLIC) . " ) and item_private = 0 and item_wall = 1 "; - } - else { - $uids = " and item.uid = " . intval($sys['channel_id']) . " "; - $sql_extra .= item_permissions_sql($sys['channel_id']); - \App::$data['firehose'] = intval($sys['channel_id']); + $site_firehose_sql = " and author_xchan in (select channel_hash from channel where channel_system = 0 and channel_removed = 0) "; } if(get_config('system','public_list_mode')) @@ -199,7 +196,9 @@ class Pubstream extends \Zotlabs\Web\Controller { $r = q("SELECT parent AS item_id FROM item left join abook on item.author_xchan = abook.abook_xchan $net_query - WHERE mid = '%s' $uids $item_normal + WHERE item.mid = '%s' and item.item_private = 0 + $uids $site_firehose_sql + $item_normal and (abook.abook_blocked = 0 or abook.abook_flags is null) $sql_extra $net_query2", dbesc($mid) @@ -207,10 +206,12 @@ class Pubstream extends \Zotlabs\Web\Controller { } else { // Fetch a page full of parent items for this page - $r = dbq("SELECT item.id AS item_id FROM item + $r = dbq("SELECT parent AS item_id FROM item left join abook on ( item.author_xchan = abook.abook_xchan $abook_uids ) $net_query - WHERE true $uids and item.item_thread_top = 1 $item_normal + WHERE item.item_private = 0 and item.item_thread_top = 1 + $uids $site_firehose_sql + $item_normal and (abook.abook_blocked = 0 or abook.abook_flags is null) $sql_extra $net_query2 ORDER BY $ordering DESC $pager_sql " @@ -222,7 +223,8 @@ class Pubstream extends \Zotlabs\Web\Controller { $r = q("SELECT parent AS item_id FROM item left join abook on item.author_xchan = abook.abook_xchan $net_query - WHERE mid = '%s' $uids $item_normal_update $simple_update + WHERE item.mid = '%s' and item.item_private = 0 + $uids $site_firehose_sql $item_normal_update $simple_update and (abook.abook_blocked = 0 or abook.abook_flags is null) $sql_extra $net_query2", dbesc($mid) @@ -232,7 +234,8 @@ class Pubstream extends \Zotlabs\Web\Controller { $r = dbq("SELECT parent AS item_id FROM item left join abook on item.author_xchan = abook.abook_xchan $net_query - WHERE true $uids $item_normal_update + WHERE item.item_private = 0 and item.item_thread_top = 1 + $uids $site_firehose_sql $item_normal_update $simple_update and (abook.abook_blocked = 0 or abook.abook_flags is null) $sql_extra $net_query2" @@ -256,7 +259,7 @@ class Pubstream extends \Zotlabs\Web\Controller { // use effective_uid param of xchan_query to help sort out comment permission // for sys_channel owned items. - xchan_query($items,true,(($sys) ? local_channel() : 0)); + xchan_query($items, true, local_channel()); $items = fetch_post_tags($items,true); $items = conv_sort($items,$ordering); } -- cgit v1.2.3 From 37b539eaa56f3f0c6a9278ce31d82d2e4c048e88 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Sun, 1 Jan 2023 21:25:15 +0100 Subject: fix wrong variable - issue #1720 --- view/fr/invite.formal.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/fr/invite.formal.tpl b/view/fr/invite.formal.tpl index 404059af6..5d4d34caa 100644 --- a/view/fr/invite.formal.tpl +++ b/view/fr/invite.formal.tpl @@ -1,6 +1,6 @@ {{* tpl FR formel, pour inviter de manière plus polie des personnes comme des membres d'entreprise ou des partenaires professionnels *}}. -Veuillez rejoindre le réseau social {{$nom du projet}}. Ce message contient les données essentielles pour la première connexion. +Veuillez rejoindre le réseau social {{$projectname}}. Ce message contient les données essentielles pour la première connexion. Le site est à rejoindre se trouve ici : {{$invite_whereami}} -- cgit v1.2.3 From b96dc11ddd039a0bfeab9f1b745afc044d9487f8 Mon Sep 17 00:00:00 2001 From: Mario Date: Mon, 2 Jan 2023 18:37:36 +0000 Subject: improve sse loop --- Zotlabs/Module/Sse.php | 32 ++++++++++++++++++++++++-------- 1 file changed, 24 insertions(+), 8 deletions(-) diff --git a/Zotlabs/Module/Sse.php b/Zotlabs/Module/Sse.php index f87a19821..8b46dcafd 100644 --- a/Zotlabs/Module/Sse.php +++ b/Zotlabs/Module/Sse.php @@ -50,7 +50,7 @@ class Sse extends Controller { self::$vnotify = get_pconfig(self::$uid, 'system', 'vnotify'); } - $sleep_seconds = 3; + $sleep = 1000000; // microseconds self::$sse_enabled = get_config('system', 'sse_enabled', 0); @@ -63,17 +63,24 @@ class Sse extends Controller { header("Connection: keep-alive"); header("X-Accel-Buffering: no"); - while(true) { + $i = 0; - if(! self::$sse_id) { + while(true) { - // Update chat presence indication + // reset counter for updating chatpresence about every minute + if (($i * $sleep)/60 > 1000000) { + $i = 0; + } + if(!self::$sse_id && $i === 0) { + // Update chat presence indication about once per minute $r = q("select cp_id, cp_room from chatpresence where cp_xchan = '%s' and cp_client = '%s' and cp_room = 0 limit 1", dbesc(self::$ob_hash), dbesc($_SERVER['REMOTE_ADDR']) ); + $basic_presence = false; + if($r) { $basic_presence = true; q("update chatpresence set cp_last = '%s' where cp_id = %d", @@ -81,7 +88,8 @@ class Sse extends Controller { intval($r[0]['cp_id']) ); } - if(! $basic_presence) { + + if(!$basic_presence) { q("insert into chatpresence ( cp_xchan, cp_last, cp_status, cp_client) values( '%s', '%s', '%s', '%s' ) ", dbesc(self::$ob_hash), @@ -94,9 +102,14 @@ class Sse extends Controller { XConfig::Load(self::$ob_hash); - $result = XConfig::Get(self::$ob_hash, 'sse', 'notifications', []); + $result = []; $lock = XConfig::Get(self::$ob_hash, 'sse', 'lock'); + if (!$lock) { + $result = XConfig::Get(self::$ob_hash, 'sse', 'notifications', []); + } + + // We do not have the local_channel in the addon. // Reset pubs here if the app is not installed. if (self::$uid && (!(self::$vnotify & VNOTIFY_PUBS) || !Apps::system_app_installed(self::$uid, 'Public Stream'))) { @@ -105,7 +118,7 @@ class Sse extends Controller { } } - if($result && !$lock) { + if($result) { echo "event: notifications\n"; echo 'data: ' . json_encode($result); echo "\n\n"; @@ -121,6 +134,7 @@ class Sse extends Controller { if(ob_get_length() > 0) ob_end_flush(); + flush(); if(connection_status() != CONNECTION_NORMAL || connection_aborted()) { @@ -129,7 +143,9 @@ class Sse extends Controller { break; } - sleep($sleep_seconds); + $i++; + + usleep($sleep); } -- cgit v1.2.3 From 0ae402e6247907fa7b2afbdaeca59410da56693a Mon Sep 17 00:00:00 2001 From: Mario Date: Mon, 2 Jan 2023 18:38:44 +0000 Subject: bump version --- boot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot.php b/boot.php index 843d2e4b1..b02dad9d6 100644 --- a/boot.php +++ b/boot.php @@ -60,7 +60,7 @@ require_once('include/bbcode.php'); require_once('include/items.php'); define('PLATFORM_NAME', 'hubzilla'); -define('STD_VERSION', '7.9.15'); +define('STD_VERSION', '7.9.16'); define('ZOT_REVISION', '6.0'); define('DB_UPDATE_VERSION', 1255); -- cgit v1.2.3 From 0e71bfe2224b8fc54a58aff80894e1f22294bd6e Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 2 Jan 2023 20:38:56 +0100 Subject: add sys channel to receiveres for public items --- Zotlabs/Daemon/Notifier.php | 2 ++ include/items.php | 14 +++++++------- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/Zotlabs/Daemon/Notifier.php b/Zotlabs/Daemon/Notifier.php index bfccb4099..f51dfab28 100644 --- a/Zotlabs/Daemon/Notifier.php +++ b/Zotlabs/Daemon/Notifier.php @@ -509,6 +509,7 @@ class Notifier { // public posts won't make it to the local public stream unless there's a recipient on this site. // This code block sees if it's a public post and localhost is missing, and if so adds an entry for the local sys channel to the $hubs list + /* sys channel is now added in collect recipients if (!self::$private) { $found_localhost = false; if ($hubs) { @@ -529,6 +530,7 @@ class Notifier { } } } + */ if (!$hubs) { logger('notifier: no hubs', LOGGER_NORMAL, LOG_NOTICE); diff --git a/include/items.php b/include/items.php index 88efeb64e..891f16b7f 100644 --- a/include/items.php +++ b/include/items.php @@ -97,7 +97,6 @@ function collect_recipients($item, &$private_envelope,$include_groups = true) { $private_envelope = false; require_once('include/channel.php'); - //$sys = get_sys_channel(); if(array_key_exists('public_policy',$item) && $item['public_policy'] !== 'self') { @@ -114,7 +113,7 @@ function collect_recipients($item, &$private_envelope,$include_groups = true) { $r = $hookinfo['recipients']; } else { $r = q("select abook_xchan, xchan_network from abook left join xchan on abook_xchan = xchan_hash where abook_channel = %d and abook_self = 0 and abook_pending = 0 and abook_archived = 0 ", - intval($item['uid']) + intval($item['uid']) ); } @@ -141,18 +140,19 @@ function collect_recipients($item, &$private_envelope,$include_groups = true) { } } } -// we probably want to check that discovery channel delivery is allowed before uncommenting this. -// if($policy === 'pub') -// $recipients[] = $sys['xchan_hash']; } - // Forward to thread listeners, *unless* there is even a remote hint that the item - // might have some privacy attached. This could be (for instance) an ActivityPub DM + // Forward to thread listeners and pubstream (sys channel), *unless* there is even + // a remote hint that the item might have some privacy attached. + // This could be (for instance) an ActivityPub DM // in the middle of a public thread. Unless we can guarantee beyond all doubt that // this is public, don't allow it to go to thread listeners. if(! intval($item['item_private'])) { + $sys = get_sys_channel(); + $recipients[] = $sys['xchan_hash']; + $r = ThreadListener::fetch_by_target($item['parent_mid']); if($r) { foreach($r as $rv) { -- cgit v1.2.3 From de0d2afc154196ed80960435ac9c74ce37635576 Mon Sep 17 00:00:00 2001 From: Mario Date: Mon, 2 Jan 2023 21:56:20 +0000 Subject: fix issues with pubstream tagcloud --- Zotlabs/Module/Pubstream.php | 21 +++++++--- Zotlabs/Widget/Pubtagcloud.php | 17 +++----- include/taxonomy.php | 92 +++++++++++++++++++++--------------------- 3 files changed, 69 insertions(+), 61 deletions(-) diff --git a/Zotlabs/Module/Pubstream.php b/Zotlabs/Module/Pubstream.php index d9156e4bf..7b8d75727 100644 --- a/Zotlabs/Module/Pubstream.php +++ b/Zotlabs/Module/Pubstream.php @@ -161,10 +161,12 @@ class Pubstream extends \Zotlabs\Web\Controller { $uids = " and item.uid = " . intval($sys['channel_id']) . " "; $abook_uids = " and abook.abook_channel = " . intval($sys['channel_id']) . " "; $sql_extra = item_permissions_sql($sys['channel_id']); + $sql_extra_order = ''; $site_firehose_sql = ''; + $thread_top = " and item.item_thread_top = 1 "; if($site_firehose) { - $site_firehose_sql = " and author_xchan in (select channel_hash from channel where channel_system = 0 and channel_removed = 0) "; + $site_firehose_sql = " and owner_xchan in (select channel_hash from channel where channel_system = 0 and channel_removed = 0) "; } if(get_config('system','public_list_mode')) @@ -175,6 +177,8 @@ class Pubstream extends \Zotlabs\Web\Controller { if(x($hashtags)) { $sql_extra .= protect_sprintf(term_query('item', $hashtags, TERM_HASHTAG, TERM_COMMUNITYTAG)); + $sql_extra_order = " ORDER BY item.created DESC "; + $thread_top = ''; } $net_query = (($net) ? " left join xchan on xchan_hash = author_xchan " : ''); @@ -209,7 +213,7 @@ class Pubstream extends \Zotlabs\Web\Controller { $r = dbq("SELECT parent AS item_id FROM item left join abook on ( item.author_xchan = abook.abook_xchan $abook_uids ) $net_query - WHERE item.item_private = 0 and item.item_thread_top = 1 + WHERE item.item_private = 0 $thread_top $uids $site_firehose_sql $item_normal and (abook.abook_blocked = 0 or abook.abook_flags is null) @@ -234,7 +238,7 @@ class Pubstream extends \Zotlabs\Web\Controller { $r = dbq("SELECT parent AS item_id FROM item left join abook on item.author_xchan = abook.abook_xchan $net_query - WHERE item.item_private = 0 and item.item_thread_top = 1 + WHERE item.item_private = 0 $thread_top $uids $site_firehose_sql $item_normal_update $simple_update and (abook.abook_blocked = 0 or abook.abook_flags is null) @@ -253,15 +257,22 @@ class Pubstream extends \Zotlabs\Web\Controller { $items = dbq("SELECT item.*, item.id AS item_id FROM item WHERE true $uids $item_normal AND item.parent IN ( $parents_str ) - $sql_extra" + $sql_extra $sql_extra_order" ); + + // use effective_uid param of xchan_query to help sort out comment permission // for sys_channel owned items. xchan_query($items, true, local_channel()); $items = fetch_post_tags($items,true); - $items = conv_sort($items,$ordering); + + if (!$hashtags) { + $items = conv_sort($items, $ordering); + } + + } } diff --git a/Zotlabs/Widget/Pubtagcloud.php b/Zotlabs/Widget/Pubtagcloud.php index db7ea02e7..90bf5eb97 100644 --- a/Zotlabs/Widget/Pubtagcloud.php +++ b/Zotlabs/Widget/Pubtagcloud.php @@ -22,24 +22,19 @@ class Pubtagcloud { } } - $site_firehose = ((intval(get_config('system','site_firehose',0))) ? true : false); - $net_firehose = ((get_config('system','disable_discover_tab',1)) ? false : true); + $net_firehose = ((get_config('system','disable_discover_tab',1)) ? false : true); - if(! ($site_firehose || $net_firehose)) { - return EMPTY_STR; - } + if(!$net_firehose) { + return ''; + } - if($net_firehose) { - $site_firehose = false; - } + $site_firehose = ((intval(get_config('system','site_firehose',0))) ? true : false); $safemode = get_xconfig(get_observer_hash(),'directory','safemode',1); - - $limit = ((array_key_exists('limit', $arr)) ? intval($arr['limit']) : 75); - return pubtagblock($net_firehose,$site_firehose, $limit, $trending, $safemode); + return pubtagblock($net_firehose, $site_firehose, $limit, $trending, $safemode); return ''; } diff --git a/include/taxonomy.php b/include/taxonomy.php index 1eded055a..18cc39cd9 100644 --- a/include/taxonomy.php +++ b/include/taxonomy.php @@ -322,7 +322,7 @@ function pubtagblock($net,$site,$limit,$recent = 0,$safemode = 1, $type = TERM_H if($r) { $o = '

' . (($recent) ? t('Trending') : t('Tags')) . '

'; foreach($r as $rr) { - $o .= '#'.$rr[0].' ' . "\r\n"; + $o .= '#'.$rr[0].' ' . "\r\n"; } $o .= '
'; } @@ -335,53 +335,55 @@ function pub_tagadelic($net, $site, $limit, $recent, $safemode, $type) { $item_normal = item_normal(); $count = intval($limit); - $sql_extra = ""; - if($site) - $uids = " and item.uid in ( " . stream_perms_api_uids(PERMS_PUBLIC) . " ) and item_private = 0 and item_wall = 1 "; - else { - $sys = get_sys_channel(); - $uids = " and item.uid = " . intval($sys['channel_id']) . " "; - $sql_extra = " and item_private = 0 "; - } - - if($recent) - $sql_extra .= " and item.created > NOW() - INTERVAL " . db_quoteinterval(intval($recent) . ' DAY') . " "; - - - if($safemode) { - $unsafetags = get_config('system','unsafepubtags', [ 'boobs', 'bot', 'rss', 'girl','girls', 'nsfw', 'sexy', 'nude' ]); - if($unsafetags) { - $sql_extra .= " and not term.term in ( " . stringify_array($unsafetags,true) . ") "; - } - } - - $key = __FUNCTION__ . "-" . md5($site . $recent . $safemode . $limit . $type); - - $content = Cache::get($key, '5 MINUTE'); - if(! $content) { - - $content = Cache::get($key, '1 MONTH'); - $arr = [ - "SELECT term, count(term) AS total FROM term LEFT JOIN item ON term.oid = item.id - WHERE term.ttype = %d - AND otype = %d - AND item_type = %d - $sql_extra $uids $item_normal - GROUP BY term ORDER BY total DESC %s", - intval($type), - intval(TERM_OBJ_POST), - intval(ITEM_TYPE_POST), - (intval($count) ? "LIMIT $count" : '') - ]; - - \Zotlabs\Daemon\Master::Summon([ 'Cache_query', $key, base64_encode(json_encode($arr)) ]); + $sys = get_sys_channel(); + $uids = " and item.uid = " . intval($sys['channel_id']) . " "; + $sql_extra = item_permissions_sql($sys['channel_id']); + + $site_firehose_sql = ''; + + if ($site) { + $site_firehose_sql = " and author_xchan in (select channel_hash from channel where channel_system = 0 and channel_removed = 0) "; + } + + if($recent) { + $sql_extra .= " and item.created > NOW() - INTERVAL " . db_quoteinterval(intval($recent) . ' DAY') . " "; + } + + if($safemode) { + $unsafetags = get_config('system','unsafepubtags', [ 'boobs', 'bot', 'rss', 'girl','girls', 'nsfw', 'sexy', 'nude' ]); + if($unsafetags) { + $sql_extra .= " and not term.term in ( " . stringify_array($unsafetags,true) . ") "; } + } + + $key = __FUNCTION__ . "-" . md5($site . $recent . $safemode . $limit . $type); - $r = unserialize($content); - if(! $r) - return []; + $content = Cache::get($key, '5 MINUTE'); + if(! $content) { - return Zotlabs\Text\Tagadelic::calc($r); + $content = Cache::get($key, '1 MONTH'); + $arr = [ + "SELECT term, count(term) AS total FROM term LEFT JOIN item ON term.oid = item.id + WHERE term.ttype = %d + AND otype = %d + AND item_type = %d + AND item_private = 0 + $uids $item_normal $site_firehose_sql $sql_extra + GROUP BY term ORDER BY total DESC %s", + intval($type), + intval(TERM_OBJ_POST), + intval(ITEM_TYPE_POST), + (intval($count) ? "LIMIT $count" : '') + ]; + + \Zotlabs\Daemon\Master::Summon([ 'Cache_query', $key, base64_encode(json_encode($arr)) ]); + } + + $r = unserialize($content); + if(! $r) + return []; + + return Zotlabs\Text\Tagadelic::calc($r); } -- cgit v1.2.3 From da9349ea621fbb506b0e1d78a8bf0a8f3958b48e Mon Sep 17 00:00:00 2001 From: Mario Date: Tue, 3 Jan 2023 10:59:38 +0000 Subject: provide inline error messages for mod cloud --- Zotlabs/Module/Cloud.php | 11 ++++------- view/js/mod_cloud.js | 3 +++ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Zotlabs/Module/Cloud.php b/Zotlabs/Module/Cloud.php index 4cc7595a1..d82e0bd47 100644 --- a/Zotlabs/Module/Cloud.php +++ b/Zotlabs/Module/Cloud.php @@ -100,7 +100,6 @@ class Cloud extends Controller { // over-ride the default XML output on thrown exceptions - $server->on('exception', [ $this, 'DAVException' ]); // All we need to do now, is to fire up the server @@ -117,21 +116,19 @@ class Cloud extends Controller { function DAVException($err) { if($err instanceof \Sabre\DAV\Exception\NotFound) { - notice( t('Not found') . EOL); + \App::$page['content'] = '

404 Not found

'; } elseif($err instanceof \Sabre\DAV\Exception\Forbidden) { - notice( t('Permission denied') . EOL); + \App::$page['content'] = '

403 Forbidden

'; } elseif($err instanceof \Sabre\DAV\Exception\NotImplemented) { - // notice( t('Please refresh page') . EOL); - goaway(z_root() . '/' . \App::$query_string); + \App::$page['content'] = '

501 Not implemented

'; } else { - notice( t('Unknown error') . EOL); + \App::$page['content'] = '

500 Unknown error

'; } construct_page(); - killme(); } diff --git a/view/js/mod_cloud.js b/view/js/mod_cloud.js index 7f9cb4fd1..e0f59beab 100644 --- a/view/js/mod_cloud.js +++ b/view/js/mod_cloud.js @@ -411,6 +411,9 @@ function UploadInit() { var filedrag = $(".cloud-index.attach-drop"); var reload = false; + if (!$('#invisible-cloud-file-upload').length) + return; + $('#invisible-cloud-file-upload').fileupload({ url: 'file_upload', dataType: 'json', -- cgit v1.2.3 From d2edef5c5a9821337d9985eb00aab4281e480ecf Mon Sep 17 00:00:00 2001 From: Mario Date: Tue, 3 Jan 2023 13:30:53 +0000 Subject: go away if method is not implemented --- Zotlabs/Module/Cloud.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Zotlabs/Module/Cloud.php b/Zotlabs/Module/Cloud.php index d82e0bd47..05109247a 100644 --- a/Zotlabs/Module/Cloud.php +++ b/Zotlabs/Module/Cloud.php @@ -122,10 +122,10 @@ class Cloud extends Controller { \App::$page['content'] = '

403 Forbidden

'; } elseif($err instanceof \Sabre\DAV\Exception\NotImplemented) { - \App::$page['content'] = '

501 Not implemented

'; + goaway(z_root() . '/' . \App::$query_string); } else { - \App::$page['content'] = '

500 Unknown error

'; + \App::$page['content'] = '

Unknown error

'; } construct_page(); -- cgit v1.2.3 From 29776ecea2a38eb45f9e0628b1b674c1d7d0df93 Mon Sep 17 00:00:00 2001 From: Mario Date: Tue, 3 Jan 2023 13:50:22 +0000 Subject: queueworker: implement auto_queue_worker_sleep setting in frontend --- Zotlabs/Lib/QueueWorker.php | 2 +- Zotlabs/Module/Admin/Queueworker.php | 19 +++++++++++++++++-- 2 files changed, 18 insertions(+), 3 deletions(-) diff --git a/Zotlabs/Lib/QueueWorker.php b/Zotlabs/Lib/QueueWorker.php index 3a0e70f63..fd2ebd7e1 100644 --- a/Zotlabs/Lib/QueueWorker.php +++ b/Zotlabs/Lib/QueueWorker.php @@ -237,7 +237,7 @@ class QueueWorker { self::$workersleep = ((intval(self::$workersleep) > 100) ? intval(self::$workersleep) : 100); if (function_exists('sys_getloadavg') && get_config('queueworker', 'load_average_sleep')) { - // experimental! + // very experimental! $load_average_sleep = true; } diff --git a/Zotlabs/Module/Admin/Queueworker.php b/Zotlabs/Module/Admin/Queueworker.php index b7972b2db..45a09bf04 100644 --- a/Zotlabs/Module/Admin/Queueworker.php +++ b/Zotlabs/Module/Admin/Queueworker.php @@ -27,6 +27,9 @@ class Queueworker extends Controller { $queueworkersleep = ($queueworkersleep > 100) ? $queueworkersleep : 100; set_config('queueworker', 'queue_worker_sleep', $queueworkersleep); + $auto_queue_worker_sleep = intval($_POST['auto_queue_worker_sleep']); + set_config('queueworker', 'auto_queue_worker_sleep', $auto_queue_worker_sleep); + goaway(z_root() . '/admin/queueworker'); } @@ -80,18 +83,30 @@ class Queueworker extends Controller { $queueworkersleep = get_config('queueworker', 'queue_worker_sleep'); $queueworkersleep = ($queueworkersleep > 100) ? $queueworkersleep : 100; + $auto_queue_worker_sleep = get_config('queueworker', 'auto_queue_worker_sleep', 0); + $sc .= replace_macros(get_markup_template('field_input.tpl'), [ '$field' => [ 'queue_worker_sleep', t('Pause before starting next task'), $queueworkersleep, - t('Minimum 100, default 100 microseconds') + t('Minimum 100, default 100 microseconds'), + '', + (($auto_queue_worker_sleep) ? 'disabled' : '') + ] + ]); + + $sc .= replace_macros(get_markup_template('field_checkbox.tpl'), [ + '$field' => [ + 'auto_queue_worker_sleep', + t('Automatically adjust pause before starting next task'), + $auto_queue_worker_sleep, ] ]); $tpl = get_markup_template('settings_addon.tpl'); $content .= replace_macros($tpl, [ - '$action_url' => 'queueworker', + '$action_url' => 'admin/queueworker', '$form_security_token' => get_form_security_token('queueworker'), '$title' => t('Queueworker Settings'), '$content' => $sc, -- cgit v1.2.3 From 941135a0a63d72d6300ab93a608cd5c8354d9e0a Mon Sep 17 00:00:00 2001 From: Mario Date: Wed, 4 Jan 2023 09:01:44 +0000 Subject: we should look for owner_xchan just like in mod pubstream --- include/taxonomy.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/taxonomy.php b/include/taxonomy.php index 18cc39cd9..671f96c2e 100644 --- a/include/taxonomy.php +++ b/include/taxonomy.php @@ -336,13 +336,13 @@ function pub_tagadelic($net, $site, $limit, $recent, $safemode, $type) { $item_normal = item_normal(); $count = intval($limit); $sys = get_sys_channel(); - $uids = " and item.uid = " . intval($sys['channel_id']) . " "; + $uids = " and item.uid = " . intval($sys['channel_id']) . " "; $sql_extra = item_permissions_sql($sys['channel_id']); $site_firehose_sql = ''; if ($site) { - $site_firehose_sql = " and author_xchan in (select channel_hash from channel where channel_system = 0 and channel_removed = 0) "; + $site_firehose_sql = " and owner_xchan in (select channel_hash from channel where channel_system = 0 and channel_removed = 0) "; } if($recent) { -- cgit v1.2.3 From e16ea1ae0568238fa4c2236d1f050ef4a85749c7 Mon Sep 17 00:00:00 2001 From: Mario Date: Wed, 4 Jan 2023 14:25:46 +0000 Subject: pdl editor for addon iitial commit --- Zotlabs/Module/Pdledit.php | 37 ++++++++++++++++++++++++++++++++++--- Zotlabs/Module/Pdledit_gui.php | 42 +++++++++++++++++++++++++++++++++++++++--- Zotlabs/Widget/Categories.php | 2 +- boot.php | 15 +++++++++++---- include/plugin.php | 19 +++++++++++++++---- 5 files changed, 100 insertions(+), 15 deletions(-) diff --git a/Zotlabs/Module/Pdledit.php b/Zotlabs/Module/Pdledit.php index 3b94c9611..e0bbc31d0 100644 --- a/Zotlabs/Module/Pdledit.php +++ b/Zotlabs/Module/Pdledit.php @@ -78,6 +78,23 @@ class Pdledit extends Controller { } } + // addons + $o .= '

Addons

'; + + $addons = plugins_installed_list(); + + foreach ($addons as $addon) { + + $path = 'addon/' . $addon . '/Mod_' . ucfirst($addon) . '.php'; + + if (!file_exists($path)) + continue; + + $o .= '' . $addon . '' . ((in_array($addon, $edited)) ? ' ' . t('(modified)') . ' ' . t('Reset') . '': '' ) . '
'; + + } + + $o .= '
'; // list module pdl files @@ -85,11 +102,25 @@ class Pdledit extends Controller { } $t = get_pconfig(local_channel(),'system',$module); - $s = file_get_contents(theme_include($module)); - if(! $t) { + $s = ''; + + if(!$t) { + $sys_path = theme_include($module); + + if ($sys_path) { + $s = file_get_contents($sys_path); + } + else { + $addon_path = 'addon/' . argv(1) . '/' . $module; + if (file_exists($addon_path)) { + $s = file_get_contents($addon_path); + } + } + $t = $s; } - if(! $t) { + + if(!$t) { notice( t('Layout not found.') . EOL); return ''; } diff --git a/Zotlabs/Module/Pdledit_gui.php b/Zotlabs/Module/Pdledit_gui.php index b550b92d3..d8d362831 100644 --- a/Zotlabs/Module/Pdledit_gui.php +++ b/Zotlabs/Module/Pdledit_gui.php @@ -237,18 +237,45 @@ class Pdledit_gui extends Controller { } } + $addons = plugins_installed_list(); + if ($addons) { + foreach ($addons as $name) { + $path = 'addon/' . $name . '/Mod_' . ucfirst($name) . '.php'; + + if (!file_exists($path)) { + continue; + } + + $ret .= ''; + } + } + return $ret; } function get_widgets($module) { $ret = []; + $checkpaths = [ 'Zotlabs/Widget/*.php' ]; + $addons = plugins_installed_list(); + + if ($addons) { + foreach ($addons as $name) { + $path = 'addon/' . $name . '/Widget'; + + if (is_dir($path)) { + $checkpaths[] = $path . '/*.php'; + } + } + } + foreach ($checkpaths as $path) { $files = glob($path); + if($files) { foreach($files as $f) { $name = lcfirst(basename($f, '.php')); @@ -536,12 +563,21 @@ class Pdledit_gui extends Controller { 'modified' => true ]; - $pdl_path = 'mod_' . $module . '.pdl'; + $pdl = 'mod_' . $module . '.pdl'; + $pdl_path = ''; - $ret['pdl'] = get_pconfig(local_channel(), 'system', $pdl_path); + $ret['pdl'] = get_pconfig(local_channel(), 'system', $pdl); if(!$ret['pdl']) { - $pdl_path = theme_include($pdl_path); + $pdl_path = theme_include($pdl); + + if (!$pdl_path) { + $addon_path = 'addon/' . $module . '/' . $pdl; + if (file_exists($addon_path)) { + $pdl_path = $addon_path; + } + } + if ($pdl_path) { $ret['pdl'] = file_get_contents($pdl_path); $ret['modified'] = false; diff --git a/Zotlabs/Widget/Categories.php b/Zotlabs/Widget/Categories.php index b0eda253b..7e6a3c6f7 100644 --- a/Zotlabs/Widget/Categories.php +++ b/Zotlabs/Widget/Categories.php @@ -3,7 +3,7 @@ /** * * Name: Categories * * Description: Display a menu with links to categories - * * Requires: channel, articles, cards, cloud + * * Requires: channel, cloud */ namespace Zotlabs\Widget; diff --git a/boot.php b/boot.php index b02dad9d6..dd3861196 100644 --- a/boot.php +++ b/boot.php @@ -2268,6 +2268,7 @@ function load_pdl() { 'module' => App::$module, 'layout' => '' ]; + /** * @hooks load_pdl * Called when we load a PDL file or description. @@ -2281,20 +2282,26 @@ function load_pdl() { $u = App::$comanche->get_channel_id(); $s = ''; - if ($u) + if ($u) { $s = get_pconfig($u, 'system', $n); - if (!$s) + } + + if (!$s) { $s = $layout; + } - if ((!$s) && (($p = theme_include($n)) != '')) + if ((!$s) && (($p = theme_include($n)) != '')) { $s = @file_get_contents($p); - elseif (file_exists('addon/' . App::$module . '/' . $n)) + } + elseif ((!$s) && file_exists('addon/' . App::$module . '/' . $n)) { $s = @file_get_contents('addon/' . App::$module . '/' . $n); + } $arr = [ 'module' => App::$module, 'layout' => $s ]; + call_hooks('alter_pdl', $arr); $s = $arr['layout']; diff --git a/include/plugin.php b/include/plugin.php index ff5014c8b..ae73a847c 100644 --- a/include/plugin.php +++ b/include/plugin.php @@ -189,7 +189,7 @@ function plugin_is_installed($name) { function reload_plugins() { $plugins = get_config('system', 'addon'); if(strlen($plugins)) { - $r = q("SELECT * FROM addon WHERE installed = 1"); + $r = dbq("SELECT * FROM addon WHERE installed = 1"); if(count($r)) $installed = $r; else @@ -243,7 +243,7 @@ function reload_plugins() { function plugins_installed_list() { - $r = q("select * from addon where installed = 1 order by aname asc"); + $r = dbq("select * from addon where installed = 1 order by aname asc"); return(($r) ? ids_to_array($r,'aname') : []); } @@ -313,7 +313,7 @@ function plugins_sync() { */ function visible_plugin_list() { - $r = q("select * from addon where hidden = 0 order by aname asc"); + $r = dbq("select * from addon where hidden = 0 order by aname asc"); $x = (($r) ? ids_to_array($r,'aname') : array()); $y = []; if($x) { @@ -392,7 +392,7 @@ function load_hooks() { App::$hooks = []; - $r = q("SELECT * FROM hook WHERE true ORDER BY priority DESC"); + $r = dbq("SELECT * FROM hook WHERE true ORDER BY priority DESC"); if($r) { foreach($r as $rv) { @@ -613,6 +613,17 @@ function get_widget_info($widget){ "addon/$widget.php" ]; + $addons = plugins_installed_list(); + + if ($addons) { + foreach ($addons as $name) { + $path = 'addon/' . $name . '/Widget/' . $ucwidget . '.php'; + if (is_file($path)) { + $checkpaths[] = $path ; + } + } + } + $widget_found = false; foreach ($checkpaths as $path) { -- cgit v1.2.3 From 3ad36db7dd3fe848937776d56a7c9243543ce887 Mon Sep 17 00:00:00 2001 From: Mario Date: Wed, 4 Jan 2023 19:27:44 +0000 Subject: pdledit_gui: minor cleanup --- Zotlabs/Module/Pdledit_gui.php | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/Zotlabs/Module/Pdledit_gui.php b/Zotlabs/Module/Pdledit_gui.php index d8d362831..2f0e4a3e1 100644 --- a/Zotlabs/Module/Pdledit_gui.php +++ b/Zotlabs/Module/Pdledit_gui.php @@ -220,6 +220,7 @@ class Pdledit_gui extends Controller { function get_modules() { $ret = ''; + $arr = []; $files = glob('Zotlabs/Module/*.php'); if($files) { @@ -232,7 +233,7 @@ class Pdledit_gui extends Controller { $x = theme_include('mod_' . $name . '.pdl'); if($x) { - $ret .= ''; + $arr[] = $name; } } } @@ -240,17 +241,21 @@ class Pdledit_gui extends Controller { $addons = plugins_installed_list(); if ($addons) { foreach ($addons as $name) { - $path = 'addon/' . $name . '/Mod_' . ucfirst($name) . '.php'; - - if (!file_exists($path)) { - continue; + $path = 'addon/' . $name . '/mod_' . $name . '.pdl'; + if (file_exists($path)) { + $arr[] = $name; } - - $ret .= ''; } } + sort($arr); + + foreach ($arr as $name) { + $ret .= ''; + } + return $ret; + } function get_widgets($module) { -- cgit v1.2.3 From 031df70cf83b19987f4d9c417f6f5fbbdf0fd983 Mon Sep 17 00:00:00 2001 From: Mario Date: Wed, 4 Jan 2023 19:29:11 +0000 Subject: pdledit_gui: minor cleanup --- Zotlabs/Module/Pdledit_gui.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Zotlabs/Module/Pdledit_gui.php b/Zotlabs/Module/Pdledit_gui.php index 2f0e4a3e1..d6766b09d 100644 --- a/Zotlabs/Module/Pdledit_gui.php +++ b/Zotlabs/Module/Pdledit_gui.php @@ -304,6 +304,8 @@ class Pdledit_gui extends Controller { } } +hz_syslog(print_r($ret,true)); + return $ret; } -- cgit v1.2.3 From 1a283301cf781c892a017094bf75e6b8e72fc4cd Mon Sep 17 00:00:00 2001 From: Mario Date: Wed, 4 Jan 2023 19:29:42 +0000 Subject: Revert "pdledit_gui: minor cleanup" This reverts commit 031df70cf83b19987f4d9c417f6f5fbbdf0fd983. --- Zotlabs/Module/Pdledit_gui.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/Zotlabs/Module/Pdledit_gui.php b/Zotlabs/Module/Pdledit_gui.php index d6766b09d..2f0e4a3e1 100644 --- a/Zotlabs/Module/Pdledit_gui.php +++ b/Zotlabs/Module/Pdledit_gui.php @@ -304,8 +304,6 @@ class Pdledit_gui extends Controller { } } -hz_syslog(print_r($ret,true)); - return $ret; } -- cgit v1.2.3 From e69fabcd712d409a67de3c1245a229a8e1b6f98d Mon Sep 17 00:00:00 2001 From: Mario Date: Wed, 4 Jan 2023 19:33:18 +0000 Subject: pdledi_gui: sort widgets --- Zotlabs/Module/Pdledit_gui.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Zotlabs/Module/Pdledit_gui.php b/Zotlabs/Module/Pdledit_gui.php index 2f0e4a3e1..dadb3296e 100644 --- a/Zotlabs/Module/Pdledit_gui.php +++ b/Zotlabs/Module/Pdledit_gui.php @@ -304,6 +304,8 @@ class Pdledit_gui extends Controller { } } + usort($ret, fn($a, $b) => $a['name'] <=> $b['name']); + return $ret; } -- cgit v1.2.3 From 435888c1a32329280b2c5f1ef5be10b08bfe4d7f Mon Sep 17 00:00:00 2001 From: Mario Date: Wed, 4 Jan 2023 19:39:11 +0000 Subject: bump version --- boot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot.php b/boot.php index dd3861196..c2d9223a9 100644 --- a/boot.php +++ b/boot.php @@ -60,7 +60,7 @@ require_once('include/bbcode.php'); require_once('include/items.php'); define('PLATFORM_NAME', 'hubzilla'); -define('STD_VERSION', '7.9.16'); +define('STD_VERSION', '7.9.17'); define('ZOT_REVISION', '6.0'); define('DB_UPDATE_VERSION', 1255); -- cgit v1.2.3 From 2eb4d8762101df4e5dc6feddcfd479727853763b Mon Sep 17 00:00:00 2001 From: Mario Date: Wed, 4 Jan 2023 20:14:11 +0000 Subject: fix issue #1717 --- Zotlabs/Module/Settings/Account.php | 57 +++++++++++++++++++------------------ include/auth.php | 1 + view/tpl/settings_account.tpl | 3 ++ 3 files changed, 33 insertions(+), 28 deletions(-) diff --git a/Zotlabs/Module/Settings/Account.php b/Zotlabs/Module/Settings/Account.php index 97cc9389a..5e1fb176e 100644 --- a/Zotlabs/Module/Settings/Account.php +++ b/Zotlabs/Module/Settings/Account.php @@ -6,11 +6,11 @@ class Account { function post() { check_form_security_token_redirectOnErr('/settings/account', 'settings_account'); - + call_hooks('account_settings_post', $_POST); - + $errs = array(); - + $email = ((x($_POST,'email')) ? trim(notags($_POST['email'])) : ''); $account = \App::get_account(); @@ -34,38 +34,38 @@ class Account { } } } - + if($errs) { foreach($errs as $err) notice($err . EOL); $errs = array(); } - - + + if((x($_POST,'npassword')) || (x($_POST,'confirm'))) { - + $origpass = trim($_POST['origpass']); - + require_once('include/auth.php'); if(! account_verify_password($email,$origpass)) { $errs[] = t('Password verification failed.'); } - + $newpass = trim($_POST['npassword']); $confirm = trim($_POST['confirm']); - + if($newpass != $confirm ) { $errs[] = t('Passwords do not match. Password unchanged.'); } - + if((! x($newpass)) || (! x($confirm))) { $errs[] = t('Empty passwords are not allowed. Password unchanged.'); } - + if(! $errs) { $salt = random_string(32); $password_encoded = hash('whirlpool', $salt . $newpass); - $r = q("update account set account_salt = '%s', account_password = '%s', account_password_changed = '%s' + $r = q("update account set account_salt = '%s', account_password = '%s', account_password_changed = '%s' where account_id = %d", dbesc($salt), dbesc($password_encoded), @@ -78,36 +78,37 @@ class Account { $errs[] = t('Password update failed. Please try again.'); } } - - + + if($errs) { foreach($errs as $err) notice($err . EOL); } goaway(z_root() . '/settings/account' ); } - - + + function get() { $account_settings = ""; - + call_hooks('account_settings', $account_settings); - + $email = \App::$account['account_email']; - $attremail = (!strpos($email, '@')) ? 'disabled="disabled"' : ''; + $attremail = ((!strpos($email, '@')) ? 'disabled="disabled"' : ''); $tpl = get_markup_template("settings_account.tpl"); $o .= replace_macros($tpl, array( '$form_security_token' => get_form_security_token("settings_account"), - '$title' => t('Account Settings'), - '$origpass' => array('origpass', t('Current Password'), ' ',''), - '$password1'=> array('npassword', t('Enter New Password'), '', ''), - '$password2'=> array('confirm', t('Confirm New Password'), '', t('Leave password fields blank unless changing')), - '$submit' => t('Submit'), - '$email' => array('email', t('DId2 or Email Address:'), $email, '', '', $attremail), - '$removeme' => t('Remove Account'), - '$removeaccount' => t('Remove this account including all its channels'), + '$title' => t('Account Settings'), + '$origpass' => array('origpass', t('Current Password'), ' ',''), + '$password1' => array('npassword', t('Enter New Password'), '', ''), + '$password2' => array('confirm', t('Confirm New Password'), '', t('Leave password fields blank unless changing')), + '$submit' => t('Submit'), + '$email' => array('email', t('DId2 or Email Address:'), $email, '', '', $attremail), + '$email_hidden' => (($attremail) ? $email : ''), + '$removeme' => t('Remove Account'), + '$removeaccount' => t('Remove this account including all its channels'), '$account_settings' => $account_settings )); return $o; diff --git a/include/auth.php b/include/auth.php index 8f0b137be..125aedffd 100644 --- a/include/auth.php +++ b/include/auth.php @@ -112,6 +112,7 @@ function account_verify_password($login, $pass) { } if($channel) { + // Try the authentication plugin again since weve determined we are using the channel login instead of account login $addon_auth = [ 'username' => $account['account_email'], diff --git a/view/tpl/settings_account.tpl b/view/tpl/settings_account.tpl index c81f1abbb..2b942d694 100644 --- a/view/tpl/settings_account.tpl +++ b/view/tpl/settings_account.tpl @@ -8,6 +8,9 @@
{{include file="field_input.tpl" field=$email}} + {{if $email_hidden}} + + {{/if}} {{include file="field_password.tpl" field=$origpass}} {{include file="field_password.tpl" field=$password1}} {{include file="field_password.tpl" field=$password2}} -- cgit v1.2.3 From 7d4bcc2e8bb8e91d5bbb2c4cf3c10555ebda0bca Mon Sep 17 00:00:00 2001 From: Mario Date: Wed, 4 Jan 2023 20:20:14 +0000 Subject: translateable strings --- Zotlabs/Widget/Channel_activities.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Zotlabs/Widget/Channel_activities.php b/Zotlabs/Widget/Channel_activities.php index 9acde591d..06080f8c8 100644 --- a/Zotlabs/Widget/Channel_activities.php +++ b/Zotlabs/Widget/Channel_activities.php @@ -26,7 +26,7 @@ class Channel_activities { self::$channel = App::get_channel(); $o = '
'; - $o .= '

Welcome ' . self::$channel['channel_name'] . '!

'; + $o .= '

' . t('Welcome') . ' ' . self::$channel['channel_name'] . '!

'; //$o .= 'Last login date: ' . get_pconfig(self::$uid, 'system', 'stored_login_date') . ' from ' . get_pconfig(self::$uid, 'system', 'stored_login_addr'); self::get_photos_activity(); @@ -43,7 +43,7 @@ class Channel_activities { call_hooks('channel_activities_widget', $hookdata); if (!$hookdata['activities']) { - $o .= '

No recent activity to display

'; + $o .= '

' . t('No recent activities') . '

'; $o .= '
'; return $o; } -- cgit v1.2.3 From 23828f53bcd762f778b97c57a6d29ab59e83082d Mon Sep 17 00:00:00 2001 From: Mario Date: Thu, 5 Jan 2023 10:29:42 +0100 Subject: pubstream: when going to conv from unthreaded mode stay in the module --- Zotlabs/Module/Pubstream.php | 7 +++---- include/conversation.php | 25 +++++++++++++++++++------ 2 files changed, 22 insertions(+), 10 deletions(-) diff --git a/Zotlabs/Module/Pubstream.php b/Zotlabs/Module/Pubstream.php index 7b8d75727..9d3a4f92b 100644 --- a/Zotlabs/Module/Pubstream.php +++ b/Zotlabs/Module/Pubstream.php @@ -40,7 +40,8 @@ class Pubstream extends \Zotlabs\Web\Controller { $site_firehose = ((intval(get_config('system','site_firehose',0))) ? true : false); - $mid = ((x($_REQUEST, 'mid')) ? unpack_link_id($_REQUEST['mid']) : ''); + $mid = (($_REQUEST['mid']) ? unpack_link_id($_REQUEST['mid']) : ''); + if ($mid === false) { notice(t('Malformed message id.') . EOL); return; @@ -261,7 +262,6 @@ class Pubstream extends \Zotlabs\Web\Controller { ); - // use effective_uid param of xchan_query to help sort out comment permission // for sys_channel owned items. @@ -277,8 +277,7 @@ class Pubstream extends \Zotlabs\Web\Controller { } - // fake it - $mode = (($hashtags) ? 'search' : 'pubstream'); + $mode = (($hashtags) ? 'pubstream-new' : 'pubstream'); $o .= conversation($items,$mode,$update,$page_mode); diff --git a/include/conversation.php b/include/conversation.php index 46621a243..caad5bb0e 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -675,7 +675,7 @@ function conversation($items, $mode, $update, $page_mode = 'traditional', $prepa if($items) { - if(in_array($mode, [ 'network-new', 'search', 'community', 'moderate' ])) { + if(is_unthreaded($mode)) { // "New Item View" on network page or search page results // - just loop through the items and format them minimally for display @@ -772,14 +772,17 @@ function conversation($items, $mode, $update, $page_mode = 'traditional', $prepa if(strcmp(datetime_convert('UTC','UTC',$item['created']),datetime_convert('UTC','UTC','now - 12 hours')) > 0) $is_new = true; - $conv_link_mid = (($mode == 'moderate') ? $item['parent_mid'] : $item['mid']); + $conv_link_mid = (($mode == 'moderate') ? gen_link_id($item['parent_mid']) : gen_link_id($item['mid'])); + + $conv_link = z_root() . '/display/' . $conv_link_mid; - $conv_link_module = 'display'; if(local_channel()) { - $conv_link_module = 'hq'; + $conv_link = z_root() . '/hq/' . $conv_link_mid; } - $conv_link = z_root() . '/' . $conv_link_module . '/' . gen_link_id($conv_link_mid); + if ($mode === 'pubstream-new') { + $conv_link = z_root() . '/pubstream?mid=' . $conv_link_mid; + } $contact = []; @@ -996,7 +999,7 @@ function thread_action_menu($item,$mode = '') { 'href' => '#' ]; - if(! in_array($mode, [ 'network-new', 'search', 'community'])) { + if(!is_unthreaded($mode)) { if($item['parent'] == $item['id'] && (get_observer_hash() != $item['author_xchan'])) { $menu[] = [ 'menu' => 'follow_thread', @@ -1784,3 +1787,13 @@ function get_response_button_text($v,$count) { break; } } + +function is_unthreaded($mode) { + return in_array($mode, [ + 'network-new', + 'pubstream-new', + 'search', + 'community', + 'moderate' + ]); +} -- cgit v1.2.3 From 0c0891f64fd220cdf7b635ce63a01f4d67c4b053 Mon Sep 17 00:00:00 2001 From: Mario Date: Thu, 5 Jan 2023 10:37:40 +0100 Subject: bump version --- boot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot.php b/boot.php index c2d9223a9..1991e34f1 100644 --- a/boot.php +++ b/boot.php @@ -60,7 +60,7 @@ require_once('include/bbcode.php'); require_once('include/items.php'); define('PLATFORM_NAME', 'hubzilla'); -define('STD_VERSION', '7.9.17'); +define('STD_VERSION', '7.9.18'); define('ZOT_REVISION', '6.0'); define('DB_UPDATE_VERSION', 1255); -- cgit v1.2.3 From c95ef1a5c0c4a144f016cfc66faae17a853f78e7 Mon Sep 17 00:00:00 2001 From: Mario Date: Thu, 5 Jan 2023 11:06:19 +0100 Subject: pdledit_gui: only show installed modules and widgets --- Zotlabs/Module/Pdledit_gui.php | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Zotlabs/Module/Pdledit_gui.php b/Zotlabs/Module/Pdledit_gui.php index dadb3296e..45a06c00a 100644 --- a/Zotlabs/Module/Pdledit_gui.php +++ b/Zotlabs/Module/Pdledit_gui.php @@ -6,6 +6,7 @@ use App; use Zotlabs\Web\Controller; use Zotlabs\Render\Comanche; use Zotlabs\Lib\Libsync; +use Zotlabs\Lib\Apps; class Pdledit_gui extends Controller { @@ -241,6 +242,10 @@ class Pdledit_gui extends Controller { $addons = plugins_installed_list(); if ($addons) { foreach ($addons as $name) { + if (!Apps::addon_app_installed(local_channel(), $name)) { + continue; + } + $path = 'addon/' . $name . '/mod_' . $name . '.pdl'; if (file_exists($path)) { $arr[] = $name; @@ -270,8 +275,11 @@ class Pdledit_gui extends Controller { if ($addons) { foreach ($addons as $name) { - $path = 'addon/' . $name . '/Widget'; + if (!Apps::addon_app_installed(local_channel(), $name)) { + continue; + } + $path = 'addon/' . $name . '/Widget'; if (is_dir($path)) { $checkpaths[] = $path . '/*.php'; } -- cgit v1.2.3 From bc361e64693e48dab4e034dba0c73f0dbc476bc6 Mon Sep 17 00:00:00 2001 From: Mario Date: Thu, 5 Jan 2023 11:33:50 +0100 Subject: strings and version --- boot.php | 2 +- util/hmessages.po | 16966 ++++++++++++++++++++++++++-------------------------- 2 files changed, 8452 insertions(+), 8516 deletions(-) diff --git a/boot.php b/boot.php index 1991e34f1..a28805a62 100644 --- a/boot.php +++ b/boot.php @@ -60,7 +60,7 @@ require_once('include/bbcode.php'); require_once('include/items.php'); define('PLATFORM_NAME', 'hubzilla'); -define('STD_VERSION', '7.9.18'); +define('STD_VERSION', '8.0RC1'); define('ZOT_REVISION', '6.0'); define('DB_UPDATE_VERSION', 1255); diff --git a/util/hmessages.po b/util/hmessages.po index 80593681b..a87a00b4e 100644 --- a/util/hmessages.po +++ b/util/hmessages.po @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: 7.8RC\n" +"Project-Id-Version: 8.0RC1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-26 07:09+0000\n" +"POT-Creation-Date: 2023-01-05 11:32+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,11 +17,11 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../view/theme/redbasic/php/config.php:15 +#: ../../view/theme/redbasic/php/config.php:15 ../../include/text.php:3466 #: ../../addon/cart/submodules/orderoptions.php:335 #: ../../addon/cart/submodules/orderoptions.php:359 #: ../../addon/cart/submodules/orderoptions.php:435 -#: ../../addon/cart/submodules/orderoptions.php:459 ../../include/text.php:3461 +#: ../../addon/cart/submodules/orderoptions.php:459 #: ../../Zotlabs/Module/Admin/Site.php:251 msgid "Default" msgstr "" @@ -31,8240 +31,8336 @@ msgstr "" msgid "Focus (Hubzilla default)" msgstr "" -#: ../../view/theme/redbasic/php/config.php:96 +#: ../../view/theme/redbasic/php/config.php:98 ../../include/js_strings.php:23 +#: ../../addon/piwik/piwik.php:95 ../../addon/hubwall/hubwall.php:95 +#: ../../addon/pageheader/Mod_Pageheader.php:52 +#: ../../addon/twitter/Mod_Twitter.php:182 +#: ../../addon/startpage/Mod_Startpage.php:71 +#: ../../addon/pubcrawl/Mod_Pubcrawl.php:62 +#: ../../addon/libertree/Mod_Libertree.php:68 +#: ../../addon/nofed/Mod_Nofed.php:51 ../../addon/workflow/workflow.php:1466 +#: ../../addon/workflow/workflow.php:1525 +#: ../../addon/workflow/workflow.php:1644 +#: ../../addon/workflow/workflow.php:2747 +#: ../../addon/workflow/Settings/Mod_WorkflowSettings.php:94 +#: ../../addon/xmpp/Mod_Xmpp.php:70 #: ../../addon/channelreputation/channelreputation.php:143 -#: ../../addon/wiki/Widget/Wiki_pages.php:43 -#: ../../addon/wiki/Widget/Wiki_pages.php:100 ../../addon/wiki/Mod_Wiki.php:218 -#: ../../addon/openclipatar/openclipatar.php:54 #: ../../addon/photocache/Mod_Photocache.php:63 -#: ../../addon/redred/Mod_Redred.php:88 ../../addon/redphotos/redphotos.php:136 +#: ../../addon/dwpost/Mod_Dwpost.php:78 +#: ../../addon/skeleton/Mod_Skeleton.php:49 ../../addon/hzfiles/hzfiles.php:86 +#: ../../addon/openstreetmap/openstreetmap.php:155 +#: ../../addon/redred/Mod_Redred.php:88 +#: ../../addon/socialauth/Mod_SocialAuth.php:341 +#: ../../addon/flashcards/Mod_Flashcards.php:269 ../../addon/irc/irc.php:45 +#: ../../addon/wppost/Mod_Wppost.php:107 ../../addon/pumpio/Mod_Pumpio.php:113 +#: ../../addon/ijpost/Mod_Ijpost.php:72 ../../addon/mailtest/mailtest.php:100 +#: ../../addon/logrot/logrot.php:35 ../../addon/nsfw/Mod_Nsfw.php:59 +#: ../../addon/wiki/Mod_Wiki.php:218 ../../addon/wiki/Mod_Wiki.php:907 +#: ../../addon/wiki/Widget/Wiki_pages.php:69 +#: ../../addon/fuzzloc/Mod_Fuzzloc.php:54 ../../addon/diaspora/diaspora.php:87 +#: ../../addon/diaspora/Mod_Diaspora.php:100 +#: ../../addon/openclipatar/openclipatar.php:54 +#: ../../addon/likebanner/likebanner.php:57 +#: ../../addon/redphotos/redphotos.php:136 ../../addon/ljpost/Mod_Ljpost.php:80 +#: ../../addon/smileybutton/Mod_Smileybutton.php:53 #: ../../addon/statusnet/Mod_Statusnet.php:191 #: ../../addon/statusnet/Mod_Statusnet.php:249 #: ../../addon/statusnet/Mod_Statusnet.php:304 -#: ../../addon/statusnet/statusnet.php:602 ../../addon/rtof/Mod_Rtof.php:70 -#: ../../addon/wppost/Mod_Wppost.php:107 -#: ../../addon/content_import/Mod_content_import.php:141 -#: ../../addon/openstreetmap/openstreetmap.php:155 -#: ../../addon/ijpost/Mod_Ijpost.php:72 -#: ../../addon/pubcrawl/Mod_Pubcrawl.php:62 -#: ../../addon/dwpost/Mod_Dwpost.php:78 -#: ../../addon/startpage/Mod_Startpage.php:71 -#: ../../addon/twitter/Mod_Twitter.php:182 -#: ../../addon/pumpio/Mod_Pumpio.php:113 -#: ../../addon/cart/submodules/subscriptions.php:410 +#: ../../addon/statusnet/statusnet.php:602 #: ../../addon/cart/submodules/hzservices.php:645 +#: ../../addon/cart/submodules/manualcat.php:248 +#: ../../addon/cart/submodules/subscriptions.php:410 #: ../../addon/cart/submodules/orderoptions.php:312 #: ../../addon/cart/submodules/orderoptions.php:412 -#: ../../addon/cart/submodules/manualcat.php:248 -#: ../../addon/cart/Settings/Cart.php:132 -#: ../../addon/cart/Settings/Cart.php:142 ../../addon/cart/cart.php:1376 -#: ../../addon/nofed/Mod_Nofed.php:51 -#: ../../addon/smileybutton/Mod_Smileybutton.php:53 -#: ../../addon/redfiles/redfiles.php:124 ../../addon/diaspora/diaspora.php:87 -#: ../../addon/diaspora/Mod_Diaspora.php:100 ../../addon/piwik/piwik.php:95 -#: ../../addon/workflow/workflow.php:1466 -#: ../../addon/workflow/workflow.php:1525 -#: ../../addon/workflow/workflow.php:1644 -#: ../../addon/workflow/workflow.php:2747 -#: ../../addon/workflow/Settings/Mod_WorkflowSettings.php:94 -#: ../../addon/likebanner/likebanner.php:57 -#: ../../addon/fuzzloc/Mod_Fuzzloc.php:54 ../../addon/hubwall/hubwall.php:95 -#: ../../addon/flashcards/Mod_Flashcards.php:269 -#: ../../addon/libertree/Mod_Libertree.php:68 ../../addon/logrot/logrot.php:35 -#: ../../addon/skeleton/Mod_Skeleton.php:49 -#: ../../addon/socialauth/Mod_SocialAuth.php:341 -#: ../../addon/nsfw/Mod_Nsfw.php:59 ../../addon/mailtest/mailtest.php:100 -#: ../../addon/ljpost/Mod_Ljpost.php:80 ../../addon/hzfiles/hzfiles.php:86 -#: ../../addon/pageheader/Mod_Pageheader.php:52 ../../addon/irc/irc.php:45 -#: ../../addon/xmpp/Mod_Xmpp.php:70 ../../include/js_strings.php:23 -#: ../../Zotlabs/Module/Tokens.php:294 -#: ../../Zotlabs/Module/Import_items.php:125 -#: ../../Zotlabs/Module/Import.php:611 ../../Zotlabs/Module/Setup.php:316 -#: ../../Zotlabs/Module/Setup.php:356 ../../Zotlabs/Module/Group.php:150 -#: ../../Zotlabs/Module/Group.php:159 ../../Zotlabs/Module/Oauth.php:109 -#: ../../Zotlabs/Module/Chat.php:207 ../../Zotlabs/Module/Chat.php:246 -#: ../../Zotlabs/Module/Poke.php:215 ../../Zotlabs/Module/Mitem.php:259 -#: ../../Zotlabs/Module/Filestorage.php:208 -#: ../../Zotlabs/Module/Connect.php:107 ../../Zotlabs/Module/Editpost.php:86 -#: ../../Zotlabs/Module/Admin/Themes.php:158 +#: ../../addon/cart/cart.php:1376 ../../addon/cart/Settings/Cart.php:132 +#: ../../addon/cart/Settings/Cart.php:142 ../../addon/redfiles/redfiles.php:124 +#: ../../addon/rtof/Mod_Rtof.php:70 +#: ../../addon/content_import/Mod_content_import.php:141 +#: ../../Zotlabs/Lib/ThreadItem.php:828 ../../Zotlabs/Module/Locs.php:125 +#: ../../Zotlabs/Module/Invite.php:563 ../../Zotlabs/Module/Poke.php:199 +#: ../../Zotlabs/Module/Xchan.php:15 +#: ../../Zotlabs/Module/Email_validation.php:40 +#: ../../Zotlabs/Module/Connect.php:107 ../../Zotlabs/Module/Oauth2.php:114 +#: ../../Zotlabs/Module/Mitem.php:259 ../../Zotlabs/Module/Appman.php:220 +#: ../../Zotlabs/Module/Import_items.php:125 ../../Zotlabs/Module/Oauth.php:109 +#: ../../Zotlabs/Module/Permcats.php:257 ../../Zotlabs/Module/Mood.php:156 +#: ../../Zotlabs/Module/Import.php:611 ../../Zotlabs/Module/Tokens.php:294 +#: ../../Zotlabs/Module/Pconfig.php:117 ../../Zotlabs/Module/Chat.php:208 +#: ../../Zotlabs/Module/Chat.php:247 ../../Zotlabs/Module/Affinity.php:84 +#: ../../Zotlabs/Module/Sources.php:123 ../../Zotlabs/Module/Sources.php:160 +#: ../../Zotlabs/Module/Regate.php:407 ../../Zotlabs/Module/Connedit.php:714 +#: ../../Zotlabs/Module/Admin/Channels.php:147 #: ../../Zotlabs/Module/Admin/Features.php:66 -#: ../../Zotlabs/Module/Admin/Security.php:120 +#: ../../Zotlabs/Module/Admin/Account_edit.php:73 #: ../../Zotlabs/Module/Admin/Accounts.php:309 +#: ../../Zotlabs/Module/Admin/Themes.php:158 #: ../../Zotlabs/Module/Admin/Site.php:415 -#: ../../Zotlabs/Module/Admin/Logs.php:84 -#: ../../Zotlabs/Module/Admin/Channels.php:147 -#: ../../Zotlabs/Module/Admin/Account_edit.php:73 #: ../../Zotlabs/Module/Admin/Profs.php:178 -#: ../../Zotlabs/Module/Admin/Addons.php:442 -#: ../../Zotlabs/Module/Regate.php:407 ../../Zotlabs/Module/Permcats.php:257 -#: ../../Zotlabs/Module/Mood.php:156 ../../Zotlabs/Module/Appman.php:221 +#: ../../Zotlabs/Module/Admin/Logs.php:84 +#: ../../Zotlabs/Module/Admin/Addons.php:445 +#: ../../Zotlabs/Module/Admin/Security.php:120 #: ../../Zotlabs/Module/Contactedit.php:429 #: ../../Zotlabs/Module/Contactedit.php:462 -#: ../../Zotlabs/Module/Email_validation.php:40 -#: ../../Zotlabs/Module/Photos.php:1064 ../../Zotlabs/Module/Photos.php:1104 -#: ../../Zotlabs/Module/Photos.php:1220 ../../Zotlabs/Module/Profiles.php:740 -#: ../../Zotlabs/Module/Invite.php:550 ../../Zotlabs/Module/Xchan.php:15 -#: ../../Zotlabs/Module/Affinity.php:84 -#: ../../Zotlabs/Module/Settings/Network.php:62 +#: ../../Zotlabs/Module/Settings/Directory.php:42 #: ../../Zotlabs/Module/Settings/Features.php:48 -#: ../../Zotlabs/Module/Settings/Channel.php:228 +#: ../../Zotlabs/Module/Settings/Display.php:186 +#: ../../Zotlabs/Module/Settings/Conversation.php:49 +#: ../../Zotlabs/Module/Settings/Channel_home.php:91 +#: ../../Zotlabs/Module/Settings/Connections.php:42 #: ../../Zotlabs/Module/Settings/Account.php:107 +#: ../../Zotlabs/Module/Settings/Channel.php:229 +#: ../../Zotlabs/Module/Settings/Editor.php:42 +#: ../../Zotlabs/Module/Settings/Network.php:62 #: ../../Zotlabs/Module/Settings/Events.php:42 -#: ../../Zotlabs/Module/Settings/Manage.php:43 -#: ../../Zotlabs/Module/Settings/Channel_home.php:91 #: ../../Zotlabs/Module/Settings/Calendar.php:42 -#: ../../Zotlabs/Module/Settings/Display.php:186 -#: ../../Zotlabs/Module/Settings/Directory.php:42 -#: ../../Zotlabs/Module/Settings/Editor.php:42 -#: ../../Zotlabs/Module/Settings/Connections.php:42 -#: ../../Zotlabs/Module/Settings/Photos.php:42 #: ../../Zotlabs/Module/Settings/Profiles.php:52 +#: ../../Zotlabs/Module/Settings/Photos.php:42 #: ../../Zotlabs/Module/Settings/Privacy.php:110 -#: ../../Zotlabs/Module/Settings/Conversation.php:49 -#: ../../Zotlabs/Module/Defperms.php:263 ../../Zotlabs/Module/Pconfig.php:116 -#: ../../Zotlabs/Module/Oauth2.php:114 ../../Zotlabs/Module/Thing.php:328 -#: ../../Zotlabs/Module/Thing.php:381 ../../Zotlabs/Module/Pdledit.php:106 -#: ../../Zotlabs/Module/Connedit.php:714 ../../Zotlabs/Module/Locs.php:125 -#: ../../Zotlabs/Module/Sources.php:123 ../../Zotlabs/Module/Sources.php:160 -#: ../../Zotlabs/Lib/ThreadItem.php:835 ../../Zotlabs/Storage/Browser.php:382 +#: ../../Zotlabs/Module/Settings/Manage.php:43 +#: ../../Zotlabs/Module/Profiles.php:740 +#: ../../Zotlabs/Module/Filestorage.php:208 +#: ../../Zotlabs/Module/Pdledit.php:137 ../../Zotlabs/Module/Defperms.php:262 +#: ../../Zotlabs/Module/Thing.php:328 ../../Zotlabs/Module/Thing.php:381 +#: ../../Zotlabs/Module/Setup.php:316 ../../Zotlabs/Module/Setup.php:356 +#: ../../Zotlabs/Module/Group.php:150 ../../Zotlabs/Module/Group.php:159 +#: ../../Zotlabs/Module/Editpost.php:88 ../../Zotlabs/Module/Photos.php:1053 +#: ../../Zotlabs/Module/Photos.php:1093 ../../Zotlabs/Module/Photos.php:1206 +#: ../../Zotlabs/Storage/Browser.php:385 msgid "Submit" msgstr "" -#: ../../view/theme/redbasic/php/config.php:100 +#: ../../view/theme/redbasic/php/config.php:102 msgid "Theme settings" msgstr "" -#: ../../view/theme/redbasic/php/config.php:101 +#: ../../view/theme/redbasic/php/config.php:103 msgid "Narrow navbar" msgstr "" -#: ../../view/theme/redbasic/php/config.php:101 -#: ../../view/theme/redbasic/php/config.php:119 +#: ../../view/theme/redbasic/php/config.php:103 +#: ../../view/theme/redbasic/php/config.php:121 ../../boot.php:1753 +#: ../../include/conversation.php:1477 ../../addon/twitter/Mod_Twitter.php:160 +#: ../../addon/twitter/Mod_Twitter.php:169 +#: ../../addon/pubcrawl/Mod_Pubcrawl.php:42 +#: ../../addon/libertree/Mod_Libertree.php:57 +#: ../../addon/nofed/Mod_Nofed.php:40 #: ../../addon/channelreputation/channelreputation.php:111 -#: ../../addon/wiki/Mod_Wiki.php:230 ../../addon/wiki/Mod_Wiki.php:231 +#: ../../addon/dwpost/Mod_Dwpost.php:59 ../../addon/dwpost/Mod_Dwpost.php:63 #: ../../addon/redred/Mod_Redred.php:61 -#: ../../addon/statusnet/Mod_Statusnet.php:258 -#: ../../addon/statusnet/Mod_Statusnet.php:280 -#: ../../addon/statusnet/Mod_Statusnet.php:289 ../../addon/rtof/Mod_Rtof.php:47 +#: ../../addon/socialauth/Mod_SocialAuth.php:218 #: ../../addon/wppost/Mod_Wppost.php:84 ../../addon/wppost/Mod_Wppost.php:88 -#: ../../addon/wppost/Mod_Wppost.php:92 -#: ../../addon/content_import/Mod_content_import.php:136 -#: ../../addon/content_import/Mod_content_import.php:137 -#: ../../addon/ijpost/Mod_Ijpost.php:61 -#: ../../addon/pubcrawl/Mod_Pubcrawl.php:42 -#: ../../addon/dwpost/Mod_Dwpost.php:59 ../../addon/dwpost/Mod_Dwpost.php:63 -#: ../../addon/twitter/Mod_Twitter.php:160 -#: ../../addon/twitter/Mod_Twitter.php:169 ../../addon/pumpio/Mod_Pumpio.php:92 +#: ../../addon/wppost/Mod_Wppost.php:92 ../../addon/pumpio/Mod_Pumpio.php:92 #: ../../addon/pumpio/Mod_Pumpio.php:96 ../../addon/pumpio/Mod_Pumpio.php:100 -#: ../../addon/cart/submodules/subscriptions.php:153 -#: ../../addon/cart/submodules/subscriptions.php:425 +#: ../../addon/ijpost/Mod_Ijpost.php:61 ../../addon/wiki/Mod_Wiki.php:230 +#: ../../addon/wiki/Mod_Wiki.php:231 ../../addon/diaspora/Mod_Diaspora.php:70 +#: ../../addon/ljpost/Mod_Ljpost.php:61 ../../addon/ljpost/Mod_Ljpost.php:65 +#: ../../addon/ljpost/Mod_Ljpost.php:69 +#: ../../addon/smileybutton/Mod_Smileybutton.php:42 +#: ../../addon/statusnet/Mod_Statusnet.php:258 +#: ../../addon/statusnet/Mod_Statusnet.php:280 +#: ../../addon/statusnet/Mod_Statusnet.php:289 +#: ../../addon/cart/submodules/paypalbutton.php:87 +#: ../../addon/cart/submodules/paypalbutton.php:95 +#: ../../addon/cart/submodules/paypalbuttonV2.php:88 +#: ../../addon/cart/submodules/paypalbuttonV2.php:96 #: ../../addon/cart/submodules/hzservices.php:67 #: ../../addon/cart/submodules/hzservices.php:651 #: ../../addon/cart/submodules/hzservices.php:655 +#: ../../addon/cart/submodules/manualcat.php:63 +#: ../../addon/cart/submodules/manualcat.php:254 +#: ../../addon/cart/submodules/manualcat.php:258 +#: ../../addon/cart/submodules/subscriptions.php:153 +#: ../../addon/cart/submodules/subscriptions.php:425 #: ../../addon/cart/submodules/orderoptions.php:72 #: ../../addon/cart/submodules/orderoptions.php:338 #: ../../addon/cart/submodules/orderoptions.php:362 #: ../../addon/cart/submodules/orderoptions.php:438 #: ../../addon/cart/submodules/orderoptions.php:462 -#: ../../addon/cart/submodules/paypalbutton.php:87 -#: ../../addon/cart/submodules/paypalbutton.php:95 -#: ../../addon/cart/submodules/paypalbuttonV2.php:88 -#: ../../addon/cart/submodules/paypalbuttonV2.php:96 -#: ../../addon/cart/submodules/manualcat.php:63 -#: ../../addon/cart/submodules/manualcat.php:254 -#: ../../addon/cart/submodules/manualcat.php:258 -#: ../../addon/cart/Settings/Cart.php:61 ../../addon/cart/Settings/Cart.php:73 -#: ../../addon/cart/cart.php:1370 ../../addon/nofed/Mod_Nofed.php:40 -#: ../../addon/smileybutton/Mod_Smileybutton.php:42 -#: ../../addon/diaspora/Mod_Diaspora.php:70 -#: ../../addon/libertree/Mod_Libertree.php:57 -#: ../../addon/socialauth/Mod_SocialAuth.php:218 -#: ../../addon/ljpost/Mod_Ljpost.php:61 ../../addon/ljpost/Mod_Ljpost.php:65 -#: ../../addon/ljpost/Mod_Ljpost.php:69 ../../include/conversation.php:1475 +#: ../../addon/cart/cart.php:1370 ../../addon/cart/Settings/Cart.php:61 +#: ../../addon/cart/Settings/Cart.php:73 ../../addon/rtof/Mod_Rtof.php:47 +#: ../../addon/content_import/Mod_content_import.php:136 +#: ../../addon/content_import/Mod_content_import.php:137 +#: ../../Zotlabs/Lib/Libzotdir.php:165 ../../Zotlabs/Lib/Libzotdir.php:166 +#: ../../Zotlabs/Lib/Libzotdir.php:168 ../../Zotlabs/Module/Register.php:512 +#: ../../Zotlabs/Module/Api.php:99 ../../Zotlabs/Module/Mitem.php:176 +#: ../../Zotlabs/Module/Mitem.php:177 ../../Zotlabs/Module/Mitem.php:256 +#: ../../Zotlabs/Module/Mitem.php:257 ../../Zotlabs/Module/Permcats.php:247 +#: ../../Zotlabs/Module/Menu.php:163 ../../Zotlabs/Module/Menu.php:222 #: ../../Zotlabs/Module/Import.php:600 ../../Zotlabs/Module/Import.php:604 -#: ../../Zotlabs/Module/Import.php:605 ../../Zotlabs/Module/Register.php:512 -#: ../../Zotlabs/Module/Group.php:137 ../../Zotlabs/Module/Group.php:138 -#: ../../Zotlabs/Module/Group.php:147 ../../Zotlabs/Module/Group.php:249 -#: ../../Zotlabs/Module/Group.php:301 ../../Zotlabs/Module/Group.php:302 -#: ../../Zotlabs/Module/Mitem.php:176 ../../Zotlabs/Module/Mitem.php:177 -#: ../../Zotlabs/Module/Mitem.php:256 ../../Zotlabs/Module/Mitem.php:257 -#: ../../Zotlabs/Module/Filestorage.php:203 -#: ../../Zotlabs/Module/Filestorage.php:211 +#: ../../Zotlabs/Module/Import.php:605 ../../Zotlabs/Module/Sources.php:122 +#: ../../Zotlabs/Module/Sources.php:157 ../../Zotlabs/Module/Connedit.php:622 #: ../../Zotlabs/Module/Admin/Site.php:319 -#: ../../Zotlabs/Module/Permcats.php:247 #: ../../Zotlabs/Module/Contactedit.php:284 -#: ../../Zotlabs/Module/Contactedit.php:329 ../../Zotlabs/Module/Api.php:99 -#: ../../Zotlabs/Module/Photos.php:677 ../../Zotlabs/Module/Profiles.php:676 -#: ../../Zotlabs/Module/Profiles.php:686 ../../Zotlabs/Module/Profiles.php:694 -#: ../../Zotlabs/Module/Profiles.php:698 -#: ../../Zotlabs/Module/Settings/Channel.php:223 +#: ../../Zotlabs/Module/Contactedit.php:329 #: ../../Zotlabs/Module/Settings/Display.php:86 +#: ../../Zotlabs/Module/Settings/Channel.php:224 #: ../../Zotlabs/Module/Settings/Privacy.php:120 #: ../../Zotlabs/Module/Settings/Privacy.php:121 #: ../../Zotlabs/Module/Settings/Privacy.php:122 -#: ../../Zotlabs/Module/Menu.php:163 ../../Zotlabs/Module/Menu.php:222 -#: ../../Zotlabs/Module/Defperms.php:195 ../../Zotlabs/Module/Connedit.php:622 -#: ../../Zotlabs/Module/Sources.php:122 ../../Zotlabs/Module/Sources.php:157 -#: ../../Zotlabs/Lib/Libzotdir.php:165 ../../Zotlabs/Lib/Libzotdir.php:166 -#: ../../Zotlabs/Lib/Libzotdir.php:168 ../../Zotlabs/Storage/Browser.php:310 -#: ../../Zotlabs/Storage/Browser.php:311 ../../Zotlabs/Storage/Browser.php:312 -#: ../../Zotlabs/Storage/Browser.php:389 ../../Zotlabs/Storage/Browser.php:391 -#: ../../Zotlabs/Storage/Browser.php:552 ../../boot.php:1753 +#: ../../Zotlabs/Module/Profiles.php:676 ../../Zotlabs/Module/Profiles.php:686 +#: ../../Zotlabs/Module/Profiles.php:694 ../../Zotlabs/Module/Profiles.php:698 +#: ../../Zotlabs/Module/Filestorage.php:203 +#: ../../Zotlabs/Module/Filestorage.php:211 +#: ../../Zotlabs/Module/Defperms.php:195 ../../Zotlabs/Module/Group.php:137 +#: ../../Zotlabs/Module/Group.php:138 ../../Zotlabs/Module/Group.php:147 +#: ../../Zotlabs/Module/Group.php:249 ../../Zotlabs/Module/Group.php:301 +#: ../../Zotlabs/Module/Group.php:302 ../../Zotlabs/Module/Photos.php:666 +#: ../../Zotlabs/Storage/Browser.php:310 ../../Zotlabs/Storage/Browser.php:311 +#: ../../Zotlabs/Storage/Browser.php:312 ../../Zotlabs/Storage/Browser.php:392 +#: ../../Zotlabs/Storage/Browser.php:394 ../../Zotlabs/Storage/Browser.php:558 msgid "No" msgstr "" -#: ../../view/theme/redbasic/php/config.php:101 -#: ../../view/theme/redbasic/php/config.php:119 +#: ../../view/theme/redbasic/php/config.php:103 +#: ../../view/theme/redbasic/php/config.php:121 ../../boot.php:1753 +#: ../../include/conversation.php:1477 ../../addon/twitter/Mod_Twitter.php:160 +#: ../../addon/twitter/Mod_Twitter.php:169 +#: ../../addon/pubcrawl/Mod_Pubcrawl.php:42 +#: ../../addon/libertree/Mod_Libertree.php:57 +#: ../../addon/nofed/Mod_Nofed.php:40 #: ../../addon/channelreputation/channelreputation.php:111 -#: ../../addon/wiki/Mod_Wiki.php:230 ../../addon/wiki/Mod_Wiki.php:231 +#: ../../addon/dwpost/Mod_Dwpost.php:59 ../../addon/dwpost/Mod_Dwpost.php:63 #: ../../addon/redred/Mod_Redred.php:61 -#: ../../addon/statusnet/Mod_Statusnet.php:258 -#: ../../addon/statusnet/Mod_Statusnet.php:280 -#: ../../addon/statusnet/Mod_Statusnet.php:289 ../../addon/rtof/Mod_Rtof.php:47 +#: ../../addon/socialauth/Mod_SocialAuth.php:218 #: ../../addon/wppost/Mod_Wppost.php:84 ../../addon/wppost/Mod_Wppost.php:88 -#: ../../addon/wppost/Mod_Wppost.php:92 -#: ../../addon/content_import/Mod_content_import.php:136 -#: ../../addon/content_import/Mod_content_import.php:137 -#: ../../addon/ijpost/Mod_Ijpost.php:61 -#: ../../addon/pubcrawl/Mod_Pubcrawl.php:42 -#: ../../addon/dwpost/Mod_Dwpost.php:59 ../../addon/dwpost/Mod_Dwpost.php:63 -#: ../../addon/twitter/Mod_Twitter.php:160 -#: ../../addon/twitter/Mod_Twitter.php:169 ../../addon/pumpio/Mod_Pumpio.php:92 +#: ../../addon/wppost/Mod_Wppost.php:92 ../../addon/pumpio/Mod_Pumpio.php:92 #: ../../addon/pumpio/Mod_Pumpio.php:96 ../../addon/pumpio/Mod_Pumpio.php:100 -#: ../../addon/cart/submodules/subscriptions.php:153 -#: ../../addon/cart/submodules/subscriptions.php:425 +#: ../../addon/ijpost/Mod_Ijpost.php:61 ../../addon/wiki/Mod_Wiki.php:230 +#: ../../addon/wiki/Mod_Wiki.php:231 ../../addon/diaspora/Mod_Diaspora.php:70 +#: ../../addon/ljpost/Mod_Ljpost.php:61 ../../addon/ljpost/Mod_Ljpost.php:65 +#: ../../addon/ljpost/Mod_Ljpost.php:69 +#: ../../addon/smileybutton/Mod_Smileybutton.php:42 +#: ../../addon/statusnet/Mod_Statusnet.php:258 +#: ../../addon/statusnet/Mod_Statusnet.php:280 +#: ../../addon/statusnet/Mod_Statusnet.php:289 +#: ../../addon/cart/submodules/paypalbutton.php:87 +#: ../../addon/cart/submodules/paypalbutton.php:95 +#: ../../addon/cart/submodules/paypalbuttonV2.php:88 +#: ../../addon/cart/submodules/paypalbuttonV2.php:96 #: ../../addon/cart/submodules/hzservices.php:67 #: ../../addon/cart/submodules/hzservices.php:651 #: ../../addon/cart/submodules/hzservices.php:655 +#: ../../addon/cart/submodules/manualcat.php:63 +#: ../../addon/cart/submodules/manualcat.php:254 +#: ../../addon/cart/submodules/manualcat.php:258 +#: ../../addon/cart/submodules/subscriptions.php:153 +#: ../../addon/cart/submodules/subscriptions.php:425 #: ../../addon/cart/submodules/orderoptions.php:72 #: ../../addon/cart/submodules/orderoptions.php:337 #: ../../addon/cart/submodules/orderoptions.php:361 #: ../../addon/cart/submodules/orderoptions.php:437 #: ../../addon/cart/submodules/orderoptions.php:461 -#: ../../addon/cart/submodules/paypalbutton.php:87 -#: ../../addon/cart/submodules/paypalbutton.php:95 -#: ../../addon/cart/submodules/paypalbuttonV2.php:88 -#: ../../addon/cart/submodules/paypalbuttonV2.php:96 -#: ../../addon/cart/submodules/manualcat.php:63 -#: ../../addon/cart/submodules/manualcat.php:254 -#: ../../addon/cart/submodules/manualcat.php:258 -#: ../../addon/cart/Settings/Cart.php:61 ../../addon/cart/Settings/Cart.php:73 -#: ../../addon/cart/cart.php:1370 ../../addon/nofed/Mod_Nofed.php:40 -#: ../../addon/smileybutton/Mod_Smileybutton.php:42 -#: ../../addon/diaspora/Mod_Diaspora.php:70 -#: ../../addon/libertree/Mod_Libertree.php:57 -#: ../../addon/socialauth/Mod_SocialAuth.php:218 -#: ../../addon/ljpost/Mod_Ljpost.php:61 ../../addon/ljpost/Mod_Ljpost.php:65 -#: ../../addon/ljpost/Mod_Ljpost.php:69 ../../include/conversation.php:1475 +#: ../../addon/cart/cart.php:1370 ../../addon/cart/Settings/Cart.php:61 +#: ../../addon/cart/Settings/Cart.php:73 ../../addon/rtof/Mod_Rtof.php:47 +#: ../../addon/content_import/Mod_content_import.php:136 +#: ../../addon/content_import/Mod_content_import.php:137 +#: ../../Zotlabs/Lib/Libzotdir.php:165 ../../Zotlabs/Lib/Libzotdir.php:166 +#: ../../Zotlabs/Lib/Libzotdir.php:168 ../../Zotlabs/Module/Register.php:512 +#: ../../Zotlabs/Module/Api.php:98 ../../Zotlabs/Module/Mitem.php:176 +#: ../../Zotlabs/Module/Mitem.php:177 ../../Zotlabs/Module/Mitem.php:256 +#: ../../Zotlabs/Module/Mitem.php:257 ../../Zotlabs/Module/Permcats.php:247 +#: ../../Zotlabs/Module/Menu.php:163 ../../Zotlabs/Module/Menu.php:222 #: ../../Zotlabs/Module/Import.php:600 ../../Zotlabs/Module/Import.php:604 -#: ../../Zotlabs/Module/Import.php:605 ../../Zotlabs/Module/Register.php:512 -#: ../../Zotlabs/Module/Group.php:137 ../../Zotlabs/Module/Group.php:138 -#: ../../Zotlabs/Module/Group.php:147 ../../Zotlabs/Module/Group.php:249 -#: ../../Zotlabs/Module/Group.php:301 ../../Zotlabs/Module/Group.php:302 -#: ../../Zotlabs/Module/Mitem.php:176 ../../Zotlabs/Module/Mitem.php:177 -#: ../../Zotlabs/Module/Mitem.php:256 ../../Zotlabs/Module/Mitem.php:257 -#: ../../Zotlabs/Module/Filestorage.php:203 -#: ../../Zotlabs/Module/Filestorage.php:211 -#: ../../Zotlabs/Module/Admin/Site.php:321 -#: ../../Zotlabs/Module/Permcats.php:247 -#: ../../Zotlabs/Module/Contactedit.php:284 ../../Zotlabs/Module/Api.php:98 -#: ../../Zotlabs/Module/Photos.php:677 ../../Zotlabs/Module/Profiles.php:676 -#: ../../Zotlabs/Module/Profiles.php:686 ../../Zotlabs/Module/Profiles.php:694 -#: ../../Zotlabs/Module/Profiles.php:698 -#: ../../Zotlabs/Module/Settings/Channel.php:223 +#: ../../Zotlabs/Module/Import.php:605 ../../Zotlabs/Module/Sources.php:122 +#: ../../Zotlabs/Module/Sources.php:157 ../../Zotlabs/Module/Admin/Site.php:321 +#: ../../Zotlabs/Module/Contactedit.php:284 #: ../../Zotlabs/Module/Settings/Display.php:86 +#: ../../Zotlabs/Module/Settings/Channel.php:224 #: ../../Zotlabs/Module/Settings/Privacy.php:120 #: ../../Zotlabs/Module/Settings/Privacy.php:121 #: ../../Zotlabs/Module/Settings/Privacy.php:122 -#: ../../Zotlabs/Module/Menu.php:163 ../../Zotlabs/Module/Menu.php:222 -#: ../../Zotlabs/Module/Defperms.php:195 ../../Zotlabs/Module/Sources.php:122 -#: ../../Zotlabs/Module/Sources.php:157 ../../Zotlabs/Lib/Libzotdir.php:165 -#: ../../Zotlabs/Lib/Libzotdir.php:166 ../../Zotlabs/Lib/Libzotdir.php:168 +#: ../../Zotlabs/Module/Profiles.php:676 ../../Zotlabs/Module/Profiles.php:686 +#: ../../Zotlabs/Module/Profiles.php:694 ../../Zotlabs/Module/Profiles.php:698 +#: ../../Zotlabs/Module/Filestorage.php:203 +#: ../../Zotlabs/Module/Filestorage.php:211 +#: ../../Zotlabs/Module/Defperms.php:195 ../../Zotlabs/Module/Group.php:137 +#: ../../Zotlabs/Module/Group.php:138 ../../Zotlabs/Module/Group.php:147 +#: ../../Zotlabs/Module/Group.php:249 ../../Zotlabs/Module/Group.php:301 +#: ../../Zotlabs/Module/Group.php:302 ../../Zotlabs/Module/Photos.php:666 #: ../../Zotlabs/Storage/Browser.php:310 ../../Zotlabs/Storage/Browser.php:311 -#: ../../Zotlabs/Storage/Browser.php:312 ../../Zotlabs/Storage/Browser.php:389 -#: ../../Zotlabs/Storage/Browser.php:391 ../../Zotlabs/Storage/Browser.php:552 -#: ../../boot.php:1753 +#: ../../Zotlabs/Storage/Browser.php:312 ../../Zotlabs/Storage/Browser.php:392 +#: ../../Zotlabs/Storage/Browser.php:394 ../../Zotlabs/Storage/Browser.php:558 msgid "Yes" msgstr "" -#: ../../view/theme/redbasic/php/config.php:102 +#: ../../view/theme/redbasic/php/config.php:104 msgid "Navigation bar background color" msgstr "" -#: ../../view/theme/redbasic/php/config.php:103 +#: ../../view/theme/redbasic/php/config.php:105 msgid "Navigation bar icon color " msgstr "" -#: ../../view/theme/redbasic/php/config.php:104 +#: ../../view/theme/redbasic/php/config.php:106 msgid "Navigation bar active icon color " msgstr "" -#: ../../view/theme/redbasic/php/config.php:105 +#: ../../view/theme/redbasic/php/config.php:107 msgid "Link color" msgstr "" -#: ../../view/theme/redbasic/php/config.php:106 +#: ../../view/theme/redbasic/php/config.php:108 msgid "Link hover color" msgstr "" -#: ../../view/theme/redbasic/php/config.php:107 +#: ../../view/theme/redbasic/php/config.php:109 msgid "Set font-color for banner" msgstr "" -#: ../../view/theme/redbasic/php/config.php:108 +#: ../../view/theme/redbasic/php/config.php:110 msgid "Set the background color" msgstr "" -#: ../../view/theme/redbasic/php/config.php:109 +#: ../../view/theme/redbasic/php/config.php:111 msgid "Set the background image" msgstr "" -#: ../../view/theme/redbasic/php/config.php:110 +#: ../../view/theme/redbasic/php/config.php:112 msgid "Set the background color of items" msgstr "" -#: ../../view/theme/redbasic/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:113 msgid "Set the background color of comments" msgstr "" -#: ../../view/theme/redbasic/php/config.php:112 +#: ../../view/theme/redbasic/php/config.php:114 msgid "Set font-size for the entire application" msgstr "" -#: ../../view/theme/redbasic/php/config.php:112 +#: ../../view/theme/redbasic/php/config.php:114 msgid "Examples: 1rem, 100%, 16px" msgstr "" -#: ../../view/theme/redbasic/php/config.php:113 +#: ../../view/theme/redbasic/php/config.php:115 msgid "Set font-color for posts and comments" msgstr "" -#: ../../view/theme/redbasic/php/config.php:114 +#: ../../view/theme/redbasic/php/config.php:116 msgid "Set radius of corners" msgstr "" -#: ../../view/theme/redbasic/php/config.php:114 +#: ../../view/theme/redbasic/php/config.php:116 msgid "Example: 4px" msgstr "" -#: ../../view/theme/redbasic/php/config.php:115 +#: ../../view/theme/redbasic/php/config.php:117 msgid "Set shadow depth of photos" msgstr "" -#: ../../view/theme/redbasic/php/config.php:116 +#: ../../view/theme/redbasic/php/config.php:118 msgid "Set maximum width of content region in rem" msgstr "" -#: ../../view/theme/redbasic/php/config.php:116 +#: ../../view/theme/redbasic/php/config.php:118 msgid "Leave empty for default width" msgstr "" -#: ../../view/theme/redbasic/php/config.php:117 +#: ../../view/theme/redbasic/php/config.php:119 msgid "Set size of conversation author photo" msgstr "" -#: ../../view/theme/redbasic/php/config.php:118 +#: ../../view/theme/redbasic/php/config.php:120 msgid "Set size of followup author photos" msgstr "" -#: ../../view/theme/redbasic/php/config.php:119 +#: ../../view/theme/redbasic/php/config.php:121 msgid "Show advanced settings" msgstr "" -#: ../../util/nconfig.php:34 -msgid "Source channel not found." +#: ../../boot.php:1724 +msgid "Create an account to access services and applications" msgstr "" -#: ../../addon/channelreputation/channelreputation.php:101 -#: ../../addon/channelreputation/channelreputation.php:102 -#: ../../addon/cart/myshop.php:144 ../../addon/cart/myshop.php:180 -#: ../../addon/cart/myshop.php:214 ../../addon/cart/myshop.php:261 -#: ../../addon/cart/myshop.php:296 ../../addon/cart/myshop.php:319 -msgid "Access Denied" +#: ../../boot.php:1725 ../../include/nav.php:167 +#: ../../Zotlabs/Module/Register.php:542 +msgid "Register" msgstr "" -#: ../../addon/channelreputation/channelreputation.php:109 -msgid "Enable Community Moderation" +#: ../../boot.php:1742 +msgid "Email or nickname" msgstr "" -#: ../../addon/channelreputation/channelreputation.php:117 -msgid "Reputation automatically given to new members" +#: ../../boot.php:1742 ../../addon/redred/Mod_Redred.php:73 +#: ../../addon/openid/MysqlProvider.php:54 +msgid "Nickname" msgstr "" -#: ../../addon/channelreputation/channelreputation.php:118 -msgid "Reputation will never fall below this value" +#: ../../boot.php:1747 ../../include/nav.php:111 ../../include/nav.php:141 +#: ../../include/nav.php:162 +msgid "Logout" msgstr "" -#: ../../addon/channelreputation/channelreputation.php:119 -msgid "Minimum reputation before posting is allowed" +#: ../../boot.php:1748 ../../include/nav.php:126 ../../include/nav.php:130 +#: ../../Zotlabs/Lib/Apps.php:341 +msgid "Login" msgstr "" -#: ../../addon/channelreputation/channelreputation.php:120 -msgid "Minimum reputation before commenting is allowed" +#: ../../boot.php:1749 ../../include/channel.php:2609 +#: ../../Zotlabs/Module/Rmagic.php:96 +msgid "Remote Authentication" msgstr "" -#: ../../addon/channelreputation/channelreputation.php:121 -msgid "Minimum reputation before a member is able to moderate other posts" +#: ../../boot.php:1752 +msgid "Password" msgstr "" -#: ../../addon/channelreputation/channelreputation.php:122 -msgid "" -"Max ratio of moderator's reputation that can be added to/deducted from " -"reputation of person being moderated" +#: ../../boot.php:1753 +msgid "Remember me" msgstr "" -#: ../../addon/channelreputation/channelreputation.php:123 -msgid "Reputation \"cost\" to post" +#: ../../boot.php:1756 +msgid "Forgot your password?" msgstr "" -#: ../../addon/channelreputation/channelreputation.php:124 -msgid "Reputation \"cost\" to comment" +#: ../../boot.php:1757 ../../Zotlabs/Module/Lostpass.php:91 +msgid "Password Reset" msgstr "" -#: ../../addon/channelreputation/channelreputation.php:125 -msgid "" -"Reputation automatically recovers at this rate per hour until it reaches " -"minimum_to_post" +#: ../../boot.php:2628 +#, php-format +msgid "[$Projectname] Website SSL error for %s" msgstr "" -#: ../../addon/channelreputation/channelreputation.php:126 -msgid "" -"When minimum_to_moderate > reputation > minimum_to_post reputation recovers " -"at this rate per hour" +#: ../../boot.php:2633 +msgid "Website SSL certificate is not valid. Please correct." msgstr "" -#: ../../addon/channelreputation/channelreputation.php:140 -msgid "Community Moderation Settings" +#: ../../boot.php:2749 +#, php-format +msgid "[$Projectname] Cron tasks not running on %s" msgstr "" -#: ../../addon/channelreputation/channelreputation.php:232 -msgid "Channel Reputation" +#: ../../boot.php:2754 +msgid "Cron/Scheduled tasks not running." msgstr "" -#: ../../addon/channelreputation/channelreputation.php:233 -#: ../../include/acl_selectors.php:156 ../../Zotlabs/Widget/Pinned.php:161 -#: ../../Zotlabs/Module/Photos.php:1279 ../../Zotlabs/Lib/ThreadItem.php:503 -#: ../../Zotlabs/Storage/Browser.php:411 -msgid "Close" +#: ../../boot.php:2755 ../../include/datetime.php:238 +msgid "never" msgstr "" -#: ../../addon/channelreputation/channelreputation.php:236 -msgid "An Error has occurred." +#: ../../include/contact_widgets.php:11 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/contact_widgets.php:16 ../../include/acl_selectors.php:145 +#: ../../Zotlabs/Module/Admin/Site.php:419 +msgid "Advanced" msgstr "" -#: ../../addon/channelreputation/channelreputation.php:254 -msgid "Upvote" +#: ../../include/contact_widgets.php:19 +msgid "Find Channels" msgstr "" -#: ../../addon/channelreputation/channelreputation.php:255 -msgid "Downvote" +#: ../../include/contact_widgets.php:20 +msgid "Enter name or interest" msgstr "" -#: ../../addon/channelreputation/channelreputation.php:414 -msgid "Can moderate reputation on my channel." +#: ../../include/contact_widgets.php:21 +msgid "Connect/Follow" msgstr "" -#: ../../addon/superblock/superblock.php:337 -msgid "Block Completely" +#: ../../include/contact_widgets.php:22 +msgid "Examples: Robert Morgenstein, Fishing" msgstr "" -#: ../../addon/superblock/Mod_Superblock.php:62 -msgid "superblock settings updated" +#: ../../include/contact_widgets.php:23 ../../Zotlabs/Module/Directory.php:427 +#: ../../Zotlabs/Module/Directory.php:432 +#: ../../Zotlabs/Module/Connections.php:401 +msgid "Find" msgstr "" -#: ../../addon/superblock/Mod_Superblock.php:86 -msgid "Currently blocked" +#: ../../include/contact_widgets.php:24 ../../Zotlabs/Module/Directory.php:431 +#: ../../Zotlabs/Module/Suggest.php:77 +msgid "Channel Suggestions" msgstr "" -#: ../../addon/superblock/Mod_Superblock.php:88 -msgid "No channels currently blocked" +#: ../../include/contact_widgets.php:26 +msgid "Random Profile" msgstr "" -#: ../../addon/superblock/Mod_Superblock.php:90 -#: ../../Zotlabs/Module/Tagrm.php:137 ../../Zotlabs/Module/Admin/Addons.php:459 -#: ../../Zotlabs/Module/Cover_photo.php:424 -#: ../../Zotlabs/Module/Photos.php:1002 -msgid "Remove" +#: ../../include/contact_widgets.php:27 +msgid "Invite Friends" msgstr "" -#: ../../addon/nsabait/Mod_Nsabait.php:23 -msgid "NSA Bait App" +#: ../../include/contact_widgets.php:29 +msgid "Advanced example: name=fred and country=iceland" msgstr "" -#: ../../addon/nsabait/Mod_Nsabait.php:25 -msgid "Make yourself a political target." +#: ../../include/contact_widgets.php:53 ../../include/features.php:318 +#: ../../Zotlabs/Widget/Activity_filter.php:196 +#: ../../Zotlabs/Widget/Filer.php:33 +msgid "Saved Folders" msgstr "" -#: ../../addon/visage/Mod_Visage.php:23 -msgid "Recent Channel/Profile Viewers" +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:118 +#: ../../include/contact_widgets.php:152 +#: ../../addon/articles/Widget/Articles_categories.php:83 +#: ../../addon/cards/Widget/Cards_categories.php:83 +#: ../../Zotlabs/Widget/Appcategories.php:52 ../../Zotlabs/Widget/Filer.php:36 +msgid "Everything" msgstr "" -#: ../../addon/visage/Mod_Visage.php:34 -msgid "No entries." +#: ../../include/contact_widgets.php:115 ../../include/contact_widgets.php:149 +#: ../../include/taxonomy.php:422 ../../include/taxonomy.php:504 +#: ../../include/taxonomy.php:524 ../../include/taxonomy.php:545 +#: ../../addon/articles/Widget/Articles_categories.php:80 +#: ../../addon/cards/Widget/Cards_categories.php:80 +#: ../../Zotlabs/Module/Cdav.php:1072 ../../Zotlabs/Storage/Browser.php:293 +#: ../../Zotlabs/Storage/Browser.php:391 ../../Zotlabs/Storage/Browser.php:406 +msgid "Categories" msgstr "" -#: ../../addon/wiki/Widget/Wiki_pages.php:35 -#: ../../addon/wiki/Widget/Wiki_pages.php:92 -msgid "Add new page" +#: ../../include/contact_widgets.php:182 +msgid "Common Connections" msgstr "" -#: ../../addon/wiki/Widget/Wiki_pages.php:39 -#: ../../addon/wiki/Widget/Wiki_pages.php:96 ../../addon/wiki/Mod_Wiki.php:220 -#: ../../addon/wiki/Mod_Wiki.php:374 ../../addon/mdpost/mdpost.php:41 -#: ../../include/text.php:2201 -msgid "Markdown" +#: ../../include/contact_widgets.php:186 +#, php-format +msgid "View all %d common connections" msgstr "" -#: ../../addon/wiki/Widget/Wiki_pages.php:39 -#: ../../addon/wiki/Widget/Wiki_pages.php:96 ../../addon/wiki/Mod_Wiki.php:220 -#: ../../addon/wiki/Mod_Wiki.php:374 ../../include/text.php:2199 -msgid "BBcode" +#: ../../include/event.php:33 ../../include/event.php:128 +msgid "l F d, Y \\@ g:i A" msgstr "" -#: ../../addon/wiki/Widget/Wiki_pages.php:39 -#: ../../addon/wiki/Widget/Wiki_pages.php:96 ../../addon/wiki/Mod_Wiki.php:220 -#: ../../include/text.php:2202 -msgid "Text" +#: ../../include/event.php:41 +msgid "Starts:" msgstr "" -#: ../../addon/wiki/Widget/Wiki_pages.php:42 -#: ../../addon/wiki/Widget/Wiki_pages.php:99 -#: ../../Zotlabs/Module/Dreport.php:130 -msgid "Options" +#: ../../include/event.php:51 +msgid "Finishes:" msgstr "" -#: ../../addon/wiki/Widget/Wiki_pages.php:86 -msgid "Wiki Pages" +#: ../../include/event.php:63 ../../include/event.php:153 +#: ../../include/channel.php:1627 ../../Zotlabs/Module/Directory.php:350 +msgid "Location:" msgstr "" -#: ../../addon/wiki/Widget/Wiki_pages.php:97 -msgid "Page name" +#: ../../include/event.php:128 +msgid "l F d, Y" msgstr "" -#: ../../addon/wiki/Widget/Wiki_list.php:20 ../../addon/wiki/Mod_Wiki.php:209 -#: ../../addon/wiki/wiki.php:70 ../../include/nav.php:515 -msgid "Wikis" +#: ../../include/event.php:132 +msgid "Start:" msgstr "" -#: ../../addon/wiki/Widget/Wiki_page_history.php:28 -#: ../../addon/wiki/Lib/NativeWikiPage.php:588 -#: ../../addon/wiki/Mod_Wiki.php:221 ../../addon/rendezvous/rendezvous.php:172 -#: ../../Zotlabs/Module/Oauth.php:111 ../../Zotlabs/Module/Oauth.php:137 -#: ../../Zotlabs/Module/Chat.php:255 ../../Zotlabs/Module/Cdav.php:1372 -#: ../../Zotlabs/Module/Sharedwithme.php:106 -#: ../../Zotlabs/Module/Admin/Channels.php:159 -#: ../../Zotlabs/Module/Oauth2.php:116 ../../Zotlabs/Module/Oauth2.php:144 -#: ../../Zotlabs/Module/Connedit.php:732 ../../Zotlabs/Storage/Browser.php:377 -msgid "Name" +#: ../../include/event.php:136 +msgid "End:" msgstr "" -#: ../../addon/wiki/Widget/Wiki_page_history.php:29 -#: ../../addon/wiki/Lib/NativeWikiPage.php:589 -msgctxt "wiki_history" -msgid "Message" +#: ../../include/event.php:141 ../../addon/openid/MysqlProvider.php:67 +msgid "Timezone" msgstr "" -#: ../../addon/wiki/Widget/Wiki_page_history.php:30 -#: ../../addon/wiki/Lib/NativeWikiPage.php:590 -msgid "Date" +#: ../../include/event.php:1202 +msgid "This event has been added to your calendar." msgstr "" -#: ../../addon/wiki/Widget/Wiki_page_history.php:31 -#: ../../addon/wiki/Lib/NativeWikiPage.php:591 -#: ../../addon/wiki/Mod_Wiki.php:370 -msgid "Revert" +#: ../../include/event.php:1356 ../../include/conversation.php:142 +#: ../../include/text.php:2345 ../../Zotlabs/Module/Like.php:447 +#: ../../Zotlabs/Module/Tagger.php:75 +#: ../../Zotlabs/Module/Channel_calendar.php:221 +msgid "event" msgstr "" -#: ../../addon/wiki/Widget/Wiki_page_history.php:32 -#: ../../addon/wiki/Lib/NativeWikiPage.php:592 -msgid "Compare" +#: ../../include/event.php:1435 +msgid "Not specified" msgstr "" -#: ../../addon/wiki/Lib/NativeWiki.php:144 -msgid "Wiki updated successfully" +#: ../../include/event.php:1436 +msgid "Needs Action" msgstr "" -#: ../../addon/wiki/Lib/NativeWiki.php:204 -msgid "Wiki files deleted successfully" +#: ../../include/event.php:1437 +msgid "Completed" msgstr "" -#: ../../addon/wiki/Lib/NativeWikiPage.php:41 -#: ../../addon/wiki/Lib/NativeWikiPage.php:109 -msgid "(No Title)" +#: ../../include/event.php:1438 +msgid "In Process" msgstr "" -#: ../../addon/wiki/Lib/NativeWikiPage.php:123 -msgid "Wiki page create failed." +#: ../../include/event.php:1439 +msgid "Cancelled" msgstr "" -#: ../../addon/wiki/Lib/NativeWikiPage.php:137 -msgid "Wiki not found." +#: ../../include/event.php:1520 ../../include/connections.php:752 +#: ../../Zotlabs/Module/Connedit.php:741 ../../Zotlabs/Module/Cdav.php:1383 +msgid "Mobile" msgstr "" -#: ../../addon/wiki/Lib/NativeWikiPage.php:148 -msgid "Destination name already exists" +#: ../../include/event.php:1521 ../../include/connections.php:753 +#: ../../Zotlabs/Module/Connedit.php:742 ../../Zotlabs/Module/Cdav.php:1384 +#: ../../Zotlabs/Widget/Notifications.php:43 +msgid "Home" msgstr "" -#: ../../addon/wiki/Lib/NativeWikiPage.php:181 -#: ../../addon/wiki/Lib/NativeWikiPage.php:376 -msgid "Page not found" +#: ../../include/event.php:1522 ../../include/connections.php:754 +msgid "Home, Voice" msgstr "" -#: ../../addon/wiki/Lib/NativeWikiPage.php:211 -msgid "Error reading page content" +#: ../../include/event.php:1523 ../../include/connections.php:755 +msgid "Home, Fax" msgstr "" -#: ../../addon/wiki/Lib/NativeWikiPage.php:367 -#: ../../addon/wiki/Lib/NativeWikiPage.php:425 -#: ../../addon/wiki/Lib/NativeWikiPage.php:493 -#: ../../addon/wiki/Lib/NativeWikiPage.php:534 -msgid "Error reading wiki" +#: ../../include/event.php:1524 ../../include/connections.php:756 +#: ../../Zotlabs/Module/Connedit.php:743 ../../Zotlabs/Module/Cdav.php:1385 +msgid "Work" msgstr "" -#: ../../addon/wiki/Lib/NativeWikiPage.php:411 -msgid "Page update failed." +#: ../../include/event.php:1525 ../../include/connections.php:757 +msgid "Work, Voice" msgstr "" -#: ../../addon/wiki/Lib/NativeWikiPage.php:447 -msgid "Nothing deleted" +#: ../../include/event.php:1526 ../../include/connections.php:758 +msgid "Work, Fax" msgstr "" -#: ../../addon/wiki/Lib/NativeWikiPage.php:514 -msgid "Compare: object not found." +#: ../../include/event.php:1527 ../../include/event.php:1534 +#: ../../include/connections.php:759 ../../include/connections.php:766 +#: ../../include/selectors.php:64 ../../include/selectors.php:81 +#: ../../include/selectors.php:119 ../../include/selectors.php:155 +#: ../../Zotlabs/Module/Connedit.php:744 ../../Zotlabs/Module/Cdav.php:1386 +#: ../../Zotlabs/Access/PermissionRoles.php:360 +msgid "Other" msgstr "" -#: ../../addon/wiki/Lib/NativeWikiPage.php:521 -msgid "Page updated" +#: ../../include/js_strings.php:5 +msgid "Delete this item?" msgstr "" -#: ../../addon/wiki/Lib/NativeWikiPage.php:529 -msgid "Wiki resource_id required for git commit" +#: ../../include/js_strings.php:6 +msgid "Item deleted" msgstr "" -#: ../../addon/wiki/Lib/NativeWikiPage.php:545 ../../addon/cards/cards.php:103 -#: ../../addon/articles/articles.php:105 ../../include/help.php:133 -#: ../../Zotlabs/Module/Display.php:142 ../../Zotlabs/Module/Page.php:136 -#: ../../Zotlabs/Module/Block.php:77 ../../Zotlabs/Web/Router.php:186 -msgid "Page not found." +#: ../../include/js_strings.php:7 ../../Zotlabs/Lib/ThreadItem.php:827 +#: ../../Zotlabs/Module/Photos.php:1092 ../../Zotlabs/Module/Photos.php:1205 +msgid "Comment" msgstr "" -#: ../../addon/wiki/Lib/NativeWikiPage.php:630 ../../include/bbcode.php:1059 -#: ../../include/bbcode.php:1244 -msgid "Different viewers will see this text differently" +#: ../../include/js_strings.php:8 ../../Zotlabs/Lib/ThreadItem.php:536 +#, php-format +msgid "%s show all" msgstr "" -#: ../../addon/wiki/Mod_Wiki.php:36 ../../addon/cart/cart.php:1410 -#: ../../addon/flashcards/Mod_Flashcards.php:52 -msgid "Profile Unavailable." +#: ../../include/js_strings.php:9 +#, php-format +msgid "%s show less" msgstr "" -#: ../../addon/wiki/Mod_Wiki.php:63 ../../addon/wiki/Mod_Wiki.php:288 -#: ../../addon/wiki/Mod_Wiki.php:431 ../../addon/openid/Mod_Id.php:53 -#: ../../addon/pumpio/pumpio.php:44 ../../addon/keepout/keepout.php:36 -#: ../../addon/cards/Mod_Card_edit.php:51 ../../addon/cards/Mod_Cards.php:89 -#: ../../addon/articles/Mod_Article_edit.php:51 -#: ../../addon/articles/Mod_Articles.php:94 ../../include/photos.php:30 -#: ../../include/items.php:3894 ../../include/attach.php:156 -#: ../../include/attach.php:205 ../../include/attach.php:278 -#: ../../include/attach.php:329 ../../include/attach.php:424 -#: ../../include/attach.php:438 ../../include/attach.php:445 -#: ../../include/attach.php:527 ../../include/attach.php:1096 -#: ../../include/attach.php:1169 ../../include/attach.php:1332 -#: ../../Zotlabs/Module/Attach_edit.php:90 -#: ../../Zotlabs/Module/Attach_edit.php:99 -#: ../../Zotlabs/Module/Attach_edit.php:106 ../../Zotlabs/Module/Network.php:18 -#: ../../Zotlabs/Module/Register.php:200 ../../Zotlabs/Module/Setup.php:218 -#: ../../Zotlabs/Module/Viewconnections.php:28 -#: ../../Zotlabs/Module/Viewconnections.php:33 -#: ../../Zotlabs/Module/Channel.php:220 ../../Zotlabs/Module/Channel.php:377 -#: ../../Zotlabs/Module/Channel.php:416 ../../Zotlabs/Module/Group.php:14 -#: ../../Zotlabs/Module/Group.php:30 ../../Zotlabs/Module/Editwebpage.php:68 -#: ../../Zotlabs/Module/Editwebpage.php:89 -#: ../../Zotlabs/Module/Editwebpage.php:107 -#: ../../Zotlabs/Module/Editwebpage.php:121 ../../Zotlabs/Module/Chat.php:111 -#: ../../Zotlabs/Module/Chat.php:116 -#: ../../Zotlabs/Module/Channel_calendar.php:232 -#: ../../Zotlabs/Module/Like.php:248 ../../Zotlabs/Module/Poke.php:157 -#: ../../Zotlabs/Module/Item.php:501 ../../Zotlabs/Module/Item.php:520 -#: ../../Zotlabs/Module/Item.php:530 ../../Zotlabs/Module/Item.php:1410 -#: ../../Zotlabs/Module/Mitem.php:129 ../../Zotlabs/Module/Profile.php:99 -#: ../../Zotlabs/Module/Profile.php:114 -#: ../../Zotlabs/Module/Sharedwithme.php:19 -#: ../../Zotlabs/Module/Webpages.php:131 -#: ../../Zotlabs/Module/Filestorage.php:20 -#: ../../Zotlabs/Module/Filestorage.php:78 -#: ../../Zotlabs/Module/Filestorage.php:96 -#: ../../Zotlabs/Module/Filestorage.php:119 -#: ../../Zotlabs/Module/Filestorage.php:165 -#: ../../Zotlabs/Module/Editpost.php:17 -#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Manage.php:10 -#: ../../Zotlabs/Module/Authtest.php:13 ../../Zotlabs/Module/Viewsrc.php:19 -#: ../../Zotlabs/Module/Moderate.php:15 ../../Zotlabs/Module/Display.php:384 -#: ../../Zotlabs/Module/Common.php:38 ../../Zotlabs/Module/New_channel.php:105 -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Service_limits.php:11 ../../Zotlabs/Module/Mood.php:126 -#: ../../Zotlabs/Module/Appman.php:153 ../../Zotlabs/Module/Api.php:24 -#: ../../Zotlabs/Module/Regmod.php:20 ../../Zotlabs/Module/Blocks.php:73 -#: ../../Zotlabs/Module/Blocks.php:80 ../../Zotlabs/Module/Vote.php:19 -#: ../../Zotlabs/Module/Profile_photo.php:390 -#: ../../Zotlabs/Module/Profile_photo.php:421 -#: ../../Zotlabs/Module/Editblock.php:67 ../../Zotlabs/Module/Settings.php:58 -#: ../../Zotlabs/Module/Editlayout.php:67 -#: ../../Zotlabs/Module/Editlayout.php:90 -#: ../../Zotlabs/Module/Connections.php:32 -#: ../../Zotlabs/Module/Cover_photo.php:341 -#: ../../Zotlabs/Module/Cover_photo.php:354 ../../Zotlabs/Module/Photos.php:71 -#: ../../Zotlabs/Module/Page.php:34 ../../Zotlabs/Module/Page.php:133 -#: ../../Zotlabs/Module/Profiles.php:171 ../../Zotlabs/Module/Profiles.php:615 -#: ../../Zotlabs/Module/Bookmarks.php:70 ../../Zotlabs/Module/Invite.php:51 -#: ../../Zotlabs/Module/Invite.php:302 ../../Zotlabs/Module/Block.php:24 -#: ../../Zotlabs/Module/Block.php:74 ../../Zotlabs/Module/Menu.php:130 -#: ../../Zotlabs/Module/Menu.php:141 ../../Zotlabs/Module/Defperms.php:181 -#: ../../Zotlabs/Module/Thing.php:282 ../../Zotlabs/Module/Thing.php:302 -#: ../../Zotlabs/Module/Thing.php:343 ../../Zotlabs/Module/Pdledit.php:35 -#: ../../Zotlabs/Module/Suggest.php:32 ../../Zotlabs/Module/Connedit.php:299 -#: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78 -#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Locs.php:98 -#: ../../Zotlabs/Module/Sources.php:80 ../../Zotlabs/Lib/Chatroom.php:135 -#: ../../Zotlabs/Web/WebServer.php:117 -msgid "Permission denied." +#: ../../include/js_strings.php:10 +#, php-format +msgid "%s expand" msgstr "" -#: ../../addon/wiki/Mod_Wiki.php:81 ../../addon/cart/manual_payments.php:93 -#: ../../addon/cart/submodules/paypalbutton.php:456 -#: ../../addon/cart/submodules/paypalbuttonV2.php:478 -#: ../../addon/cart/myshop.php:37 ../../addon/cart/cart.php:1558 -msgid "Invalid channel" +#: ../../include/js_strings.php:11 +#, php-format +msgid "%s collapse" msgstr "" -#: ../../addon/wiki/Mod_Wiki.php:136 -msgid "Error retrieving wiki" +#: ../../include/js_strings.php:12 +msgid "Password too short" msgstr "" -#: ../../addon/wiki/Mod_Wiki.php:143 -msgid "Error creating zip file export folder" +#: ../../include/js_strings.php:13 ../../Zotlabs/Module/Register.php:161 +msgid "Passwords do not match" msgstr "" -#: ../../addon/wiki/Mod_Wiki.php:194 -msgid "Error downloading wiki: " +#: ../../include/js_strings.php:14 +msgid "everybody" msgstr "" -#: ../../addon/wiki/Mod_Wiki.php:214 ../../addon/wiki/Mod_Wiki.php:387 -#: ../../addon/cards/Mod_Card_edit.php:99 ../../addon/cards/cards.php:73 -#: ../../addon/articles/Mod_Article_edit.php:97 -#: ../../addon/articles/articles.php:75 ../../include/menu.php:120 -#: ../../include/channel.php:1530 ../../include/channel.php:1534 -#: ../../Zotlabs/Widget/Cdav.php:142 ../../Zotlabs/Widget/Cdav.php:179 -#: ../../Zotlabs/Module/Group.php:245 ../../Zotlabs/Module/Oauth.php:171 -#: ../../Zotlabs/Module/Editwebpage.php:142 -#: ../../Zotlabs/Module/Webpages.php:252 -#: ../../Zotlabs/Module/Admin/Profs.php:175 ../../Zotlabs/Module/Blocks.php:160 -#: ../../Zotlabs/Module/Editblock.php:114 -#: ../../Zotlabs/Module/Editlayout.php:114 -#: ../../Zotlabs/Module/Connections.php:329 -#: ../../Zotlabs/Module/Connections.php:378 -#: ../../Zotlabs/Module/Connections.php:399 ../../Zotlabs/Module/Menu.php:176 -#: ../../Zotlabs/Module/Oauth2.php:192 ../../Zotlabs/Module/Thing.php:268 -#: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Lib/Apps.php:600 -#: ../../Zotlabs/Lib/ThreadItem.php:166 -msgid "Edit" +#: ../../include/js_strings.php:15 +msgid "Secret Passphrase" msgstr "" -#: ../../addon/wiki/Mod_Wiki.php:215 ../../Zotlabs/Storage/Browser.php:404 -msgid "Download" +#: ../../include/js_strings.php:16 +msgid "Passphrase hint" msgstr "" -#: ../../addon/wiki/Mod_Wiki.php:216 ../../addon/wiki/Mod_Wiki.php:412 -#: ../../Zotlabs/Module/Pubsites.php:60 ../../Zotlabs/Module/Webpages.php:258 -#: ../../Zotlabs/Module/Blocks.php:166 ../../Zotlabs/Module/Layouts.php:198 -msgid "View" +#: ../../include/js_strings.php:17 +msgid "Notice: Permissions have changed but have not yet been submitted." msgstr "" -#: ../../addon/wiki/Mod_Wiki.php:217 ../../Zotlabs/Module/Manage.php:137 -#: ../../Zotlabs/Module/Profiles.php:853 -msgid "Create New" +#: ../../include/js_strings.php:18 +msgid "close all" msgstr "" -#: ../../addon/wiki/Mod_Wiki.php:219 -msgid "Wiki name" +#: ../../include/js_strings.php:19 +msgid "Nothing new here" msgstr "" -#: ../../addon/wiki/Mod_Wiki.php:220 -msgid "Content type" +#: ../../include/js_strings.php:20 +msgid "Rate This Channel (this is public)" msgstr "" -#: ../../addon/wiki/Mod_Wiki.php:222 ../../Zotlabs/Storage/Browser.php:378 -msgid "Type" +#: ../../include/js_strings.php:21 +msgid "Rating" msgstr "" -#: ../../addon/wiki/Mod_Wiki.php:223 -msgid "Any type" +#: ../../include/js_strings.php:22 +msgid "Describe (optional)" msgstr "" -#: ../../addon/wiki/Mod_Wiki.php:230 -msgid "Lock content type" +#: ../../include/js_strings.php:24 +msgid "Please enter a link URL" msgstr "" -#: ../../addon/wiki/Mod_Wiki.php:231 -msgid "Create a status post for this wiki" +#: ../../include/js_strings.php:25 +msgid "Unsaved changes. Are you sure you wish to leave this page?" msgstr "" -#: ../../addon/wiki/Mod_Wiki.php:232 -msgid "Edit Wiki Name" +#: ../../include/js_strings.php:26 ../../Zotlabs/Module/Locs.php:121 +#: ../../Zotlabs/Module/Cdav.php:1016 ../../Zotlabs/Module/Profiles.php:480 +#: ../../Zotlabs/Module/Profiles.php:751 ../../Zotlabs/Module/Pubsites.php:54 +msgid "Location" msgstr "" -#: ../../addon/wiki/Mod_Wiki.php:277 -msgid "Wiki not found" +#: ../../include/js_strings.php:27 +msgid "lovely" msgstr "" -#: ../../addon/wiki/Mod_Wiki.php:303 -msgid "Rename page" +#: ../../include/js_strings.php:28 +msgid "wonderful" msgstr "" -#: ../../addon/wiki/Mod_Wiki.php:304 ../../addon/hsse/hsse.php:186 -#: ../../include/conversation.php:1444 ../../Zotlabs/Widget/Cdav.php:140 -#: ../../Zotlabs/Module/Webpages.php:253 ../../Zotlabs/Module/Blocks.php:161 -#: ../../Zotlabs/Module/Photos.php:1084 ../../Zotlabs/Module/Layouts.php:194 -msgid "Share" +#: ../../include/js_strings.php:29 +msgid "fantastic" msgstr "" -#: ../../addon/wiki/Mod_Wiki.php:324 -msgid "Error retrieving page content" +#: ../../include/js_strings.php:30 +msgid "great" msgstr "" -#: ../../addon/wiki/Mod_Wiki.php:332 ../../addon/wiki/Mod_Wiki.php:334 -msgid "New page" +#: ../../include/js_strings.php:31 +msgid "" +"Your chosen nickname was either already taken or not valid. Please use our " +"suggestion (" msgstr "" -#: ../../addon/wiki/Mod_Wiki.php:369 -msgid "Revision Comparison" +#: ../../include/js_strings.php:32 +msgid ") or enter a new one." msgstr "" -#: ../../addon/wiki/Mod_Wiki.php:371 ../../addon/wiki/Mod_Wiki.php:404 -#: ../../addon/hsse/hsse.php:209 ../../addon/hsse/hsse.php:258 -#: ../../addon/cards/Mod_Card_edit.php:132 -#: ../../addon/articles/Mod_Article_edit.php:130 -#: ../../include/conversation.php:1467 ../../include/conversation.php:1522 -#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 -#: ../../Zotlabs/Module/Oauth.php:110 ../../Zotlabs/Module/Oauth.php:136 -#: ../../Zotlabs/Module/Editwebpage.php:169 ../../Zotlabs/Module/Cdav.php:1057 -#: ../../Zotlabs/Module/Cdav.php:1390 ../../Zotlabs/Module/Tagrm.php:15 -#: ../../Zotlabs/Module/Tagrm.php:138 ../../Zotlabs/Module/Editpost.php:111 -#: ../../Zotlabs/Module/Admin/Addons.php:427 -#: ../../Zotlabs/Module/Profile_photo.php:553 -#: ../../Zotlabs/Module/Editblock.php:141 ../../Zotlabs/Module/Filer.php:56 -#: ../../Zotlabs/Module/Editlayout.php:140 -#: ../../Zotlabs/Module/Cover_photo.php:428 ../../Zotlabs/Module/Oauth2.php:115 -#: ../../Zotlabs/Module/Oauth2.php:143 ../../Zotlabs/Module/Connedit.php:750 -#: ../../Zotlabs/Storage/Browser.php:383 -msgid "Cancel" +#: ../../include/js_strings.php:33 +msgid "Thank you, this nickname is valid." msgstr "" -#: ../../addon/wiki/Mod_Wiki.php:377 -msgid "Short description of your changes (optional)" +#: ../../include/js_strings.php:34 +msgid "A channel name is required." msgstr "" -#: ../../addon/wiki/Mod_Wiki.php:387 ../../addon/wppost/wppost.php:174 -#: ../../addon/wppost/Mod_Wppost.php:96 ../../addon/dwpost/Mod_Dwpost.php:67 -#: ../../addon/dwpost/dwpost.php:134 ../../addon/ljpost/ljpost.php:134 -msgid "Source" +#: ../../include/js_strings.php:35 +msgid "This is a " msgstr "" -#: ../../addon/wiki/Mod_Wiki.php:397 -msgid "New page name" +#: ../../include/js_strings.php:36 +msgid " channel name" msgstr "" -#: ../../addon/wiki/Mod_Wiki.php:402 -msgid "Embed image from photo albums" +#: ../../include/js_strings.php:37 +msgid "Back to reply" msgstr "" -#: ../../addon/wiki/Mod_Wiki.php:403 ../../addon/hsse/hsse.php:208 -#: ../../include/conversation.php:1466 -msgid "Embed an image from your albums" +#: ../../include/js_strings.php:38 +msgid "Pinned" msgstr "" -#: ../../addon/wiki/Mod_Wiki.php:405 ../../addon/hsse/hsse.php:210 -#: ../../addon/hsse/hsse.php:257 ../../include/conversation.php:1468 -#: ../../include/conversation.php:1521 -#: ../../Zotlabs/Module/Profile_photo.php:554 -#: ../../Zotlabs/Module/Cover_photo.php:429 -msgid "OK" +#: ../../include/js_strings.php:39 ../../Zotlabs/Lib/ThreadItem.php:473 +msgid "Pin to the top" msgstr "" -#: ../../addon/wiki/Mod_Wiki.php:406 ../../addon/hsse/hsse.php:139 -#: ../../include/conversation.php:1387 -#: ../../Zotlabs/Module/Profile_photo.php:555 -#: ../../Zotlabs/Module/Cover_photo.php:430 -msgid "Choose images to embed" +#: ../../include/js_strings.php:40 ../../Zotlabs/Lib/ThreadItem.php:473 +#: ../../Zotlabs/Widget/Pinned.php:158 +msgid "Unpin from the top" msgstr "" -#: ../../addon/wiki/Mod_Wiki.php:407 ../../addon/hsse/hsse.php:140 -#: ../../include/conversation.php:1388 -#: ../../Zotlabs/Module/Profile_photo.php:556 -#: ../../Zotlabs/Module/Cover_photo.php:431 -msgid "Choose an album" -msgstr "" +#: ../../include/js_strings.php:46 +#, php-format +msgid "%d minutes" +msgid_plural "%d minutes" +msgstr[0] "" +msgstr[1] "" -#: ../../addon/wiki/Mod_Wiki.php:408 ../../Zotlabs/Module/Profile_photo.php:557 -#: ../../Zotlabs/Module/Cover_photo.php:432 -msgid "Choose a different album" +#: ../../include/js_strings.php:47 +#, php-format +msgid "about %d hours" +msgid_plural "about %d hours" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/js_strings.php:48 +#, php-format +msgid "%d days" +msgid_plural "%d days" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/js_strings.php:49 +#, php-format +msgid "%d months" +msgid_plural "%d months" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/js_strings.php:50 +#, php-format +msgid "%d years" +msgid_plural "%d years" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/js_strings.php:55 +msgid "timeago.prefixAgo" msgstr "" -#: ../../addon/wiki/Mod_Wiki.php:409 ../../addon/hsse/hsse.php:142 -#: ../../include/conversation.php:1390 -#: ../../Zotlabs/Module/Profile_photo.php:558 -#: ../../Zotlabs/Module/Cover_photo.php:433 -msgid "Error getting album list" +#: ../../include/js_strings.php:56 +msgid "timeago.prefixFromNow" msgstr "" -#: ../../addon/wiki/Mod_Wiki.php:410 ../../addon/hsse/hsse.php:143 -#: ../../include/conversation.php:1391 -#: ../../Zotlabs/Module/Profile_photo.php:559 -#: ../../Zotlabs/Module/Cover_photo.php:434 -msgid "Error getting photo link" +#: ../../include/js_strings.php:57 +msgid "timeago.suffixAgo" msgstr "" -#: ../../addon/wiki/Mod_Wiki.php:411 ../../addon/hsse/hsse.php:144 -#: ../../include/conversation.php:1392 -#: ../../Zotlabs/Module/Profile_photo.php:560 -#: ../../Zotlabs/Module/Cover_photo.php:435 -msgid "Error getting album" +#: ../../include/js_strings.php:58 +msgid "timeago.suffixFromNow" msgstr "" -#: ../../addon/wiki/Mod_Wiki.php:413 -msgid "History" +#: ../../include/js_strings.php:61 +msgid "less than a minute" msgstr "" -#: ../../addon/wiki/Mod_Wiki.php:491 -msgid "Error creating wiki. Invalid name." +#: ../../include/js_strings.php:62 +msgid "about a minute" msgstr "" -#: ../../addon/wiki/Mod_Wiki.php:498 -msgid "A wiki with this name already exists." +#: ../../include/js_strings.php:64 +msgid "about an hour" msgstr "" -#: ../../addon/wiki/Mod_Wiki.php:511 -msgid "Wiki created, but error creating Home page." +#: ../../include/js_strings.php:66 +msgid "a day" msgstr "" -#: ../../addon/wiki/Mod_Wiki.php:518 -msgid "Error creating wiki" +#: ../../include/js_strings.php:68 +msgid "about a month" msgstr "" -#: ../../addon/wiki/Mod_Wiki.php:542 -msgid "Error updating wiki. Invalid name." +#: ../../include/js_strings.php:70 +msgid "about a year" msgstr "" -#: ../../addon/wiki/Mod_Wiki.php:561 -msgid "Error updating wiki" +#: ../../include/js_strings.php:72 +msgid " " msgstr "" -#: ../../addon/wiki/Mod_Wiki.php:576 -msgid "Wiki delete permission denied." +#: ../../include/js_strings.php:73 +msgid "timeago.numbers" msgstr "" -#: ../../addon/wiki/Mod_Wiki.php:586 -msgid "Error deleting wiki" +#: ../../include/js_strings.php:75 ../../include/text.php:1502 +msgid "January" msgstr "" -#: ../../addon/wiki/Mod_Wiki.php:619 -msgid "New page created" +#: ../../include/js_strings.php:76 ../../include/text.php:1502 +msgid "February" msgstr "" -#: ../../addon/wiki/Mod_Wiki.php:745 -msgid "Cannot delete Home" +#: ../../include/js_strings.php:77 ../../include/text.php:1502 +msgid "March" msgstr "" -#: ../../addon/wiki/Mod_Wiki.php:821 -msgid "Current Revision" +#: ../../include/js_strings.php:78 ../../include/text.php:1502 +msgid "April" msgstr "" -#: ../../addon/wiki/Mod_Wiki.php:821 -msgid "Selected Revision" +#: ../../include/js_strings.php:79 +msgctxt "long" +msgid "May" msgstr "" -#: ../../addon/wiki/Mod_Wiki.php:876 -msgid "You must be authenticated." +#: ../../include/js_strings.php:80 ../../include/text.php:1502 +msgid "June" msgstr "" -#: ../../addon/openclipatar/openclipatar.php:51 -#: ../../addon/openclipatar/openclipatar.php:129 -msgid "System defaults:" +#: ../../include/js_strings.php:81 ../../include/text.php:1502 +msgid "July" msgstr "" -#: ../../addon/openclipatar/openclipatar.php:55 -msgid "Preferred Clipart IDs" +#: ../../include/js_strings.php:82 ../../include/text.php:1502 +msgid "August" msgstr "" -#: ../../addon/openclipatar/openclipatar.php:55 -msgid "List of preferred clipart ids. These will be shown first." +#: ../../include/js_strings.php:83 ../../include/text.php:1502 +msgid "September" msgstr "" -#: ../../addon/openclipatar/openclipatar.php:56 -msgid "Default Search Term" +#: ../../include/js_strings.php:84 ../../include/text.php:1502 +msgid "October" msgstr "" -#: ../../addon/openclipatar/openclipatar.php:56 -msgid "The default search term. These will be shown second." +#: ../../include/js_strings.php:85 ../../include/text.php:1502 +msgid "November" msgstr "" -#: ../../addon/openclipatar/openclipatar.php:57 -msgid "Return After" +#: ../../include/js_strings.php:86 ../../include/text.php:1502 +msgid "December" msgstr "" -#: ../../addon/openclipatar/openclipatar.php:57 -msgid "Page to load after image selection." +#: ../../include/js_strings.php:87 +msgid "Jan" msgstr "" -#: ../../addon/openclipatar/openclipatar.php:58 ../../include/nav.php:113 -#: ../../include/conversation.php:1093 ../../Zotlabs/Module/Connedit.php:480 -#: ../../Zotlabs/Lib/Apps.php:348 -msgid "View Profile" +#: ../../include/js_strings.php:88 +msgid "Feb" msgstr "" -#: ../../addon/openclipatar/openclipatar.php:59 ../../include/nav.php:118 -#: ../../include/channel.php:1534 -msgid "Edit Profile" +#: ../../include/js_strings.php:89 +msgid "Mar" msgstr "" -#: ../../addon/openclipatar/openclipatar.php:60 -msgid "Profile List" +#: ../../include/js_strings.php:90 +msgid "Apr" msgstr "" -#: ../../addon/openclipatar/openclipatar.php:62 -msgid "Order of Preferred" +#: ../../include/js_strings.php:91 +msgctxt "short" +msgid "May" msgstr "" -#: ../../addon/openclipatar/openclipatar.php:62 -msgid "Sort order of preferred clipart ids." +#: ../../include/js_strings.php:92 +msgid "Jun" msgstr "" -#: ../../addon/openclipatar/openclipatar.php:63 -#: ../../addon/openclipatar/openclipatar.php:69 -msgid "Newest first" +#: ../../include/js_strings.php:93 +msgid "Jul" msgstr "" -#: ../../addon/openclipatar/openclipatar.php:66 -msgid "As entered" +#: ../../include/js_strings.php:94 +msgid "Aug" msgstr "" -#: ../../addon/openclipatar/openclipatar.php:68 -msgid "Order of other" +#: ../../include/js_strings.php:95 +msgid "Sep" msgstr "" -#: ../../addon/openclipatar/openclipatar.php:68 -msgid "Sort order of other clipart ids." +#: ../../include/js_strings.php:96 +msgid "Oct" msgstr "" -#: ../../addon/openclipatar/openclipatar.php:70 -msgid "Most downloaded first" +#: ../../include/js_strings.php:97 +msgid "Nov" msgstr "" -#: ../../addon/openclipatar/openclipatar.php:71 -msgid "Most liked first" +#: ../../include/js_strings.php:98 +msgid "Dec" msgstr "" -#: ../../addon/openclipatar/openclipatar.php:73 -msgid "Preferred IDs Message" +#: ../../include/js_strings.php:99 ../../include/text.php:1498 +msgid "Sunday" msgstr "" -#: ../../addon/openclipatar/openclipatar.php:73 -msgid "Message to display above preferred results." +#: ../../include/js_strings.php:100 ../../include/text.php:1498 +msgid "Monday" msgstr "" -#: ../../addon/openclipatar/openclipatar.php:79 -msgid "Uploaded by: " +#: ../../include/js_strings.php:101 ../../include/text.php:1498 +msgid "Tuesday" msgstr "" -#: ../../addon/openclipatar/openclipatar.php:79 -msgid "Drawn by: " +#: ../../include/js_strings.php:102 ../../include/text.php:1498 +msgid "Wednesday" msgstr "" -#: ../../addon/openclipatar/openclipatar.php:183 -#: ../../addon/openclipatar/openclipatar.php:195 -msgid "Use this image" +#: ../../include/js_strings.php:103 ../../include/text.php:1498 +msgid "Thursday" msgstr "" -#: ../../addon/openclipatar/openclipatar.php:193 -msgid "Or select from a free OpenClipart.org image:" +#: ../../include/js_strings.php:104 ../../include/text.php:1498 +msgid "Friday" msgstr "" -#: ../../addon/openclipatar/openclipatar.php:196 -msgid "Search Term" +#: ../../include/js_strings.php:105 ../../include/text.php:1498 +msgid "Saturday" msgstr "" -#: ../../addon/openclipatar/openclipatar.php:233 -msgid "Unknown error. Please try again later." +#: ../../include/js_strings.php:106 +msgid "Sun" msgstr "" -#: ../../addon/openclipatar/openclipatar.php:299 -#: ../../Zotlabs/Module/Profile_photo.php:268 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." +#: ../../include/js_strings.php:107 +msgid "Mon" msgstr "" -#: ../../addon/openclipatar/openclipatar.php:309 -msgid "Profile photo updated successfully." +#: ../../include/js_strings.php:108 +msgid "Tue" msgstr "" -#: ../../addon/bookmarker/bookmarker.php:38 -#: ../../Zotlabs/Lib/ThreadItem.php:481 -msgid "Save Bookmarks" +#: ../../include/js_strings.php:109 +msgid "Wed" msgstr "" -#: ../../addon/queueworker/Mod_Queueworker.php:77 -msgid "Max queueworker threads" +#: ../../include/js_strings.php:110 +msgid "Thu" msgstr "" -#: ../../addon/queueworker/Mod_Queueworker.php:79 -msgid "Minimum 4, default 4" +#: ../../include/js_strings.php:111 +msgid "Fri" msgstr "" -#: ../../addon/queueworker/Mod_Queueworker.php:90 -msgid "Assume workers dead after" +#: ../../include/js_strings.php:112 +msgid "Sat" msgstr "" -#: ../../addon/queueworker/Mod_Queueworker.php:92 -msgid "Minimum 120, default 300 seconds" +#: ../../include/js_strings.php:113 +msgctxt "calendar" +msgid "today" msgstr "" -#: ../../addon/queueworker/Mod_Queueworker.php:103 -msgid "Pause before starting next task" +#: ../../include/js_strings.php:114 +msgctxt "calendar" +msgid "month" msgstr "" -#: ../../addon/queueworker/Mod_Queueworker.php:105 -msgid "Minimum 100, default 100 microseconds" +#: ../../include/js_strings.php:115 +msgctxt "calendar" +msgid "week" msgstr "" -#: ../../addon/queueworker/Mod_Queueworker.php:113 -msgid "Queueworker Settings" +#: ../../include/js_strings.php:116 +msgctxt "calendar" +msgid "day" msgstr "" -#: ../../addon/queueworker/Mod_Queueworker.php:116 -#: ../../addon/cards/Mod_Cards.php:116 -#: ../../addon/articles/Mod_Articles.php:120 ../../include/text.php:1168 -#: ../../include/text.php:1180 ../../Zotlabs/Module/Admin/Profs.php:94 -#: ../../Zotlabs/Module/Admin/Profs.php:114 ../../Zotlabs/Module/Filer.php:54 -#: ../../Zotlabs/Module/Rbmark.php:31 ../../Zotlabs/Module/Rbmark.php:103 -msgid "Save" +#: ../../include/js_strings.php:117 +msgctxt "calendar" +msgid "All day" msgstr "" -#: ../../addon/rainbowtag/Mod_Rainbowtag.php:22 -msgid "Rainbow Tag App" +#: ../../include/js_strings.php:120 +msgid "Please stand by while your download is being prepared." msgstr "" -#: ../../addon/rainbowtag/Mod_Rainbowtag.php:23 -msgid "Add some colour to tag clouds" +#: ../../include/js_strings.php:123 +msgid "Email address not valid" msgstr "" -#: ../../addon/rainbowtag/Mod_Rainbowtag.php:30 -msgid "Rainbow Tag" +#: ../../include/js_strings.php:124 ../../include/datetime.php:211 +#: ../../addon/cart/submodules/orderoptions.php:334 +#: ../../addon/cart/submodules/orderoptions.php:358 +#: ../../addon/cart/submodules/orderoptions.php:434 +#: ../../addon/cart/submodules/orderoptions.php:458 +#: ../../Zotlabs/Module/Register.php:498 ../../Zotlabs/Module/Appman.php:208 +#: ../../Zotlabs/Module/Appman.php:209 ../../Zotlabs/Module/Profiles.php:762 +#: ../../Zotlabs/Module/Profiles.php:766 +msgid "Required" msgstr "" -#: ../../addon/photocache/Mod_Photocache.php:27 -msgid "Photo Cache settings saved." +#: ../../include/photo/photo_driver.php:450 +#: ../../Zotlabs/Module/Profile_photo.php:167 +#: ../../Zotlabs/Module/Profile_photo.php:337 +msgid "Profile Photos" msgstr "" -#: ../../addon/photocache/Mod_Photocache.php:43 -msgid "" -"Saves a copy of images from external sites locally to increase your " -"anonymity in the web." +#: ../../include/nav.php:96 +msgid "Remote authentication" msgstr "" -#: ../../addon/photocache/Mod_Photocache.php:49 -msgid "Minimal photo size for caching" +#: ../../include/nav.php:96 +msgid "Click to authenticate to your home hub" msgstr "" -#: ../../addon/photocache/Mod_Photocache.php:51 -msgid "In pixels. From 1 up to 1024, 0 will be replaced with system default." +#: ../../include/nav.php:102 ../../Zotlabs/Module/Admin/Channels.php:146 +#: ../../Zotlabs/Module/Admin.php:116 ../../Zotlabs/Module/Manage.php:162 +#: ../../Zotlabs/Widget/Channel_activities.php:239 +#: ../../Zotlabs/Widget/Admin.php:29 +msgid "Channels" msgstr "" -#: ../../addon/photocache/Mod_Photocache.php:60 -msgid "Photo Cache" +#: ../../include/nav.php:102 +msgid "Manage your channels" msgstr "" -#: ../../addon/gallery/gallery.php:43 ../../addon/gallery/Mod_Gallery.php:134 -msgid "Gallery" +#: ../../include/nav.php:105 ../../Zotlabs/Lib/Apps.php:344 +#: ../../Zotlabs/Module/Admin/Themes.php:125 +#: ../../Zotlabs/Module/Admin/Addons.php:348 +#: ../../Zotlabs/Widget/Settings_menu.php:71 +#: ../../Zotlabs/Widget/Newmember.php:58 +msgid "Settings" msgstr "" -#: ../../addon/gallery/gallery.php:46 -msgid "Photo Gallery" +#: ../../include/nav.php:105 +msgid "Account/Channel Settings" msgstr "" -#: ../../addon/gallery/Mod_Gallery.php:49 ../../addon/cards/Mod_Cards.php:42 -#: ../../addon/articles/Mod_Articles.php:46 ../../include/channel.php:1427 -#: ../../Zotlabs/Module/Hcard.php:12 ../../Zotlabs/Module/Editwebpage.php:32 -#: ../../Zotlabs/Module/Profile.php:27 ../../Zotlabs/Module/Webpages.php:39 -#: ../../Zotlabs/Module/Filestorage.php:59 ../../Zotlabs/Module/Connect.php:17 -#: ../../Zotlabs/Module/Achievements.php:15 ../../Zotlabs/Module/Blocks.php:33 -#: ../../Zotlabs/Module/Editblock.php:31 ../../Zotlabs/Module/Editlayout.php:31 -#: ../../Zotlabs/Module/Menu.php:92 ../../Zotlabs/Module/Layouts.php:31 -msgid "Requested profile is not available." +#: ../../include/nav.php:111 ../../include/nav.php:141 +msgid "End this session" msgstr "" -#: ../../addon/planets/Mod_Planets.php:23 -msgid "Random Planet App" +#: ../../include/nav.php:114 ../../include/conversation.php:1095 +#: ../../addon/openclipatar/openclipatar.php:58 ../../Zotlabs/Lib/Apps.php:349 +#: ../../Zotlabs/Module/Connedit.php:480 +msgid "View Profile" msgstr "" -#: ../../addon/planets/Mod_Planets.php:25 -msgid "" -"Set a random planet from the Star Wars Empire as your location when posting" +#: ../../include/nav.php:114 +msgid "Your profile page" msgstr "" -#: ../../addon/openid/Mod_Id.php:85 ../../include/selectors.php:64 -#: ../../include/selectors.php:81 ../../include/channel.php:1712 -msgid "Male" +#: ../../include/nav.php:117 ../../include/channel.php:1530 +#: ../../Zotlabs/Module/Profiles.php:852 +msgid "Edit Profiles" msgstr "" -#: ../../addon/openid/Mod_Id.php:87 ../../include/selectors.php:64 -#: ../../include/selectors.php:81 ../../include/channel.php:1710 -msgid "Female" +#: ../../include/nav.php:117 +msgid "Manage/Edit profiles" msgstr "" -#: ../../addon/openid/Mod_Openid.php:32 -msgid "OpenID protocol error. No ID returned." +#: ../../include/nav.php:119 ../../include/channel.php:1534 +#: ../../addon/openclipatar/openclipatar.php:59 +msgid "Edit Profile" msgstr "" -#: ../../addon/openid/Mod_Openid.php:78 ../../addon/openid/Mod_Openid.php:179 -#, php-format -msgid "Welcome %s. Remote authentication successful." +#: ../../include/nav.php:119 ../../Zotlabs/Widget/Newmember.php:40 +msgid "Edit your profile" msgstr "" -#: ../../addon/openid/Mod_Openid.php:189 ../../include/auth.php:323 -msgid "Login failed." +#: ../../include/nav.php:126 ../../include/nav.php:130 +msgid "Sign in" msgstr "" -#: ../../addon/openid/openid.php:49 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." +#: ../../include/nav.php:160 +msgid "Take me home" msgstr "" -#: ../../addon/openid/openid.php:49 -msgid "The error message was:" +#: ../../include/nav.php:162 +msgid "Log me out of this site" msgstr "" -#: ../../addon/openid/MysqlProvider.php:52 -msgid "First Name" +#: ../../include/nav.php:167 +msgid "Create an account" msgstr "" -#: ../../addon/openid/MysqlProvider.php:53 -msgid "Last Name" +#: ../../include/nav.php:181 ../../include/nav.php:320 +#: ../../include/help.php:118 ../../include/help.php:126 +#: ../../Zotlabs/Lib/Apps.php:353 ../../Zotlabs/Module/Layouts.php:184 +msgid "Help" msgstr "" -#: ../../addon/openid/MysqlProvider.php:54 ../../addon/redred/Mod_Redred.php:73 -#: ../../boot.php:1742 -msgid "Nickname" +#: ../../include/nav.php:181 +msgid "Help and documentation" msgstr "" -#: ../../addon/openid/MysqlProvider.php:55 -msgid "Full Name" +#: ../../include/nav.php:195 ../../include/acl_selectors.php:149 +#: ../../include/text.php:1168 ../../include/text.php:1180 +#: ../../Zotlabs/Lib/Apps.php:358 ../../Zotlabs/Module/Search.php:46 +#: ../../Zotlabs/Module/Connections.php:397 +#: ../../Zotlabs/Widget/Sitesearch.php:37 +#: ../../Zotlabs/Widget/Activity_filter.php:210 +msgid "Search" msgstr "" -#: ../../addon/openid/MysqlProvider.php:56 -#: ../../addon/openid/MysqlProvider.php:57 ../../addon/redred/Mod_Redred.php:69 -#: ../../addon/rtof/Mod_Rtof.php:55 ../../include/network.php:1768 -#: ../../Zotlabs/Module/Cdav.php:1376 -#: ../../Zotlabs/Module/Admin/Accounts.php:316 -#: ../../Zotlabs/Module/Admin/Accounts.php:330 -#: ../../Zotlabs/Module/Connedit.php:736 -msgid "Email" +#: ../../include/nav.php:195 +msgid "Search site @name, !forum, #tag, ?docs, content" msgstr "" -#: ../../addon/openid/MysqlProvider.php:58 -#: ../../addon/openid/MysqlProvider.php:59 -#: ../../addon/openid/MysqlProvider.php:60 ../../Zotlabs/Lib/Apps.php:365 -msgid "Profile Photo" +#: ../../include/nav.php:201 ../../Zotlabs/Widget/Admin.php:61 +msgid "Admin" msgstr "" -#: ../../addon/openid/MysqlProvider.php:61 -msgid "Profile Photo 16px" +#: ../../include/nav.php:201 +msgid "Site Setup and Configuration" msgstr "" -#: ../../addon/openid/MysqlProvider.php:62 -msgid "Profile Photo 32px" +#: ../../include/nav.php:324 ../../Zotlabs/Module/Defperms.php:254 +#: ../../Zotlabs/Module/New_channel.php:157 +#: ../../Zotlabs/Module/New_channel.php:164 +#: ../../Zotlabs/Widget/Notifications.php:173 +#: ../../Zotlabs/Widget/Messages.php:36 +msgid "Loading" msgstr "" -#: ../../addon/openid/MysqlProvider.php:63 -msgid "Profile Photo 48px" +#: ../../include/nav.php:329 +msgid "@name, #tag, ?doc, content" msgstr "" -#: ../../addon/openid/MysqlProvider.php:64 -msgid "Profile Photo 64px" +#: ../../include/nav.php:330 +msgid "Please wait..." msgstr "" -#: ../../addon/openid/MysqlProvider.php:65 -msgid "Profile Photo 80px" +#: ../../include/nav.php:336 ../../Zotlabs/Lib/Apps.php:328 +msgid "Apps" msgstr "" -#: ../../addon/openid/MysqlProvider.php:66 -msgid "Profile Photo 128px" +#: ../../include/nav.php:337 +msgid "Channel Apps" msgstr "" -#: ../../addon/openid/MysqlProvider.php:67 ../../include/event.php:141 -msgid "Timezone" +#: ../../include/nav.php:338 +msgid "System Apps" msgstr "" -#: ../../addon/openid/MysqlProvider.php:68 -#: ../../Zotlabs/Module/Profiles.php:784 -msgid "Homepage URL" +#: ../../include/nav.php:339 +msgid "Pinned Apps" msgstr "" -#: ../../addon/openid/MysqlProvider.php:69 ../../Zotlabs/Lib/Apps.php:363 -msgid "Language" +#: ../../include/nav.php:340 +msgid "Featured Apps" msgstr "" -#: ../../addon/openid/MysqlProvider.php:70 -msgid "Birth Year" +#: ../../include/nav.php:426 ../../Zotlabs/Lib/Apps.php:348 +#: ../../Zotlabs/Module/Admin/Channels.php:154 +msgid "Channel" msgstr "" -#: ../../addon/openid/MysqlProvider.php:71 -msgid "Birth Month" +#: ../../include/nav.php:429 +msgid "Status Messages and Posts" msgstr "" -#: ../../addon/openid/MysqlProvider.php:72 -msgid "Birth Day" +#: ../../include/nav.php:439 ../../Zotlabs/Module/Help.php:85 +msgid "About" msgstr "" -#: ../../addon/openid/MysqlProvider.php:73 -msgid "Birthdate" +#: ../../include/nav.php:442 +msgid "Profile Details" msgstr "" -#: ../../addon/openid/MysqlProvider.php:74 -#: ../../Zotlabs/Module/Profiles.php:457 -msgid "Gender" +#: ../../include/nav.php:449 ../../include/features.php:368 +#: ../../Zotlabs/Lib/Apps.php:350 ../../Zotlabs/Module/Fbrowser.php:29 +#: ../../Zotlabs/Widget/Channel_activities.php:93 +msgid "Photos" msgstr "" -#: ../../addon/moremoods/moremoods.php:19 -msgid "lonely" +#: ../../include/nav.php:452 ../../include/photos.php:722 +msgid "Photo Albums" msgstr "" -#: ../../addon/moremoods/moremoods.php:20 -msgid "drunk" +#: ../../include/nav.php:457 ../../Zotlabs/Lib/Apps.php:345 +#: ../../Zotlabs/Module/Fbrowser.php:85 +#: ../../Zotlabs/Widget/Channel_activities.php:125 +#: ../../Zotlabs/Widget/Notifications.php:108 +#: ../../Zotlabs/Storage/Browser.php:351 +msgid "Files" msgstr "" -#: ../../addon/moremoods/moremoods.php:21 -msgid "horny" +#: ../../include/nav.php:460 +msgid "Files and Storage" msgstr "" -#: ../../addon/moremoods/moremoods.php:22 -msgid "stoned" +#: ../../include/nav.php:468 ../../include/nav.php:471 +#: ../../include/features.php:82 ../../Zotlabs/Lib/Apps.php:351 +msgid "Calendar" msgstr "" -#: ../../addon/moremoods/moremoods.php:23 -msgid "fucked up" +#: ../../include/nav.php:482 ../../include/nav.php:485 +#: ../../Zotlabs/Lib/Apps.php:335 ../../Zotlabs/Widget/Chatroom_list.php:22 +msgid "Chatrooms" msgstr "" -#: ../../addon/moremoods/moremoods.php:24 -msgid "clusterfucked" +#: ../../include/nav.php:495 ../../Zotlabs/Lib/Apps.php:334 +#: ../../Zotlabs/Module/Bookmarks.php:90 +msgid "Bookmarks" msgstr "" -#: ../../addon/moremoods/moremoods.php:25 -msgid "crazy" +#: ../../include/nav.php:498 +msgid "Saved Bookmarks" msgstr "" -#: ../../addon/moremoods/moremoods.php:26 -msgid "hurt" +#: ../../include/nav.php:506 ../../Zotlabs/Lib/Apps.php:346 +#: ../../Zotlabs/Module/Webpages.php:247 +#: ../../Zotlabs/Widget/Channel_activities.php:168 +msgid "Webpages" msgstr "" -#: ../../addon/moremoods/moremoods.php:27 -msgid "sleepy" +#: ../../include/nav.php:509 +msgid "View Webpages" msgstr "" -#: ../../addon/moremoods/moremoods.php:28 -msgid "grumpy" +#: ../../include/nav.php:517 ../../addon/wiki/Mod_Wiki.php:209 +#: ../../addon/wiki/wiki.php:70 ../../addon/wiki/Widget/Wiki_list.php:20 +msgid "Wikis" msgstr "" -#: ../../addon/moremoods/moremoods.php:29 -msgid "high" +#: ../../include/nav.php:520 ../../Zotlabs/Lib/Apps.php:347 +msgid "Wiki" msgstr "" -#: ../../addon/moremoods/moremoods.php:30 -msgid "semi-conscious" +#: ../../include/datetime.php:58 ../../Zotlabs/Module/Profiles.php:753 +#: ../../Zotlabs/Widget/Newmember.php:56 +msgid "Miscellaneous" msgstr "" -#: ../../addon/moremoods/moremoods.php:31 -msgid "in love" +#: ../../include/datetime.php:140 +msgid "Birthday" msgstr "" -#: ../../addon/moremoods/moremoods.php:32 -msgid "in lust" +#: ../../include/datetime.php:140 +msgid "Age: " msgstr "" -#: ../../addon/moremoods/moremoods.php:33 -msgid "naked" +#: ../../include/datetime.php:140 +msgid "YYYY-MM-DD or MM-DD" msgstr "" -#: ../../addon/moremoods/moremoods.php:34 -msgid "stinky" +#: ../../include/datetime.php:244 +msgid "less than a second ago" msgstr "" -#: ../../addon/moremoods/moremoods.php:35 -msgid "sweaty" +#: ../../include/datetime.php:262 +#, php-format +msgctxt "e.g. 22 hours ago, 1 minute ago" +msgid "%1$d %2$s ago" msgstr "" -#: ../../addon/moremoods/moremoods.php:36 -msgid "bleeding out" -msgstr "" +#: ../../include/datetime.php:273 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "" +msgstr[1] "" -#: ../../addon/moremoods/moremoods.php:37 -msgid "victorious" -msgstr "" +#: ../../include/datetime.php:276 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "" +msgstr[1] "" -#: ../../addon/moremoods/moremoods.php:38 -msgid "defeated" -msgstr "" +#: ../../include/datetime.php:279 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "" +msgstr[1] "" -#: ../../addon/moremoods/moremoods.php:39 -msgid "envious" -msgstr "" +#: ../../include/datetime.php:282 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "" +msgstr[1] "" -#: ../../addon/moremoods/moremoods.php:40 -msgid "jealous" -msgstr "" +#: ../../include/datetime.php:285 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "" +msgstr[1] "" -#: ../../addon/dirstats/dirstats.php:94 -msgid "Hubzilla Directory Stats" -msgstr "" +#: ../../include/datetime.php:288 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "" +msgstr[1] "" -#: ../../addon/dirstats/dirstats.php:95 -msgid "Total Hubs" +#: ../../include/datetime.php:291 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:520 +#, php-format +msgid "%1$s's birthday" msgstr "" -#: ../../addon/dirstats/dirstats.php:97 -msgid "Hubzilla Hubs" +#: ../../include/datetime.php:521 +#, php-format +msgid "Happy Birthday %1$s" msgstr "" -#: ../../addon/dirstats/dirstats.php:99 -msgid "Friendica Hubs" +#: ../../include/language.php:433 ../../include/text.php:2183 +msgid "default" msgstr "" -#: ../../addon/dirstats/dirstats.php:101 -msgid "Diaspora Pods" +#: ../../include/language.php:446 +msgid "Select an alternate language" msgstr "" -#: ../../addon/dirstats/dirstats.php:103 -msgid "Hubzilla Channels" +#: ../../include/features.php:55 ../../Zotlabs/Module/Admin/Features.php:55 +#: ../../Zotlabs/Module/Admin/Features.php:56 +#: ../../Zotlabs/Module/Settings/Features.php:38 +msgid "Off" msgstr "" -#: ../../addon/dirstats/dirstats.php:105 -msgid "Friendica Channels" +#: ../../include/features.php:55 ../../Zotlabs/Module/Admin/Features.php:55 +#: ../../Zotlabs/Module/Admin/Features.php:56 +#: ../../Zotlabs/Module/Settings/Features.php:38 +msgid "On" msgstr "" -#: ../../addon/dirstats/dirstats.php:107 -msgid "Diaspora Channels" +#: ../../include/features.php:86 +msgid "Start calendar week on Monday" msgstr "" -#: ../../addon/dirstats/dirstats.php:109 -msgid "Aged 35 and above" +#: ../../include/features.php:87 +msgid "Default is Sunday" msgstr "" -#: ../../addon/dirstats/dirstats.php:111 -msgid "Aged 34 and under" +#: ../../include/features.php:94 +msgid "Event Timezone Selection" msgstr "" -#: ../../addon/dirstats/dirstats.php:113 -msgid "Average Age" +#: ../../include/features.php:95 +msgid "Allow event creation in timezones other than your own." msgstr "" -#: ../../addon/dirstats/dirstats.php:115 -msgid "Known Chatrooms" +#: ../../include/features.php:104 +msgid "Channel Home" msgstr "" -#: ../../addon/dirstats/dirstats.php:117 -msgid "Known Tags" +#: ../../include/features.php:108 +msgid "Search by Date" msgstr "" -#: ../../addon/dirstats/dirstats.php:119 -msgid "" -"Please note Diaspora and Friendica statistics are merely those **this " -"directory** is aware of, and not all those known in the network. This also " -"applies to chatrooms," +#: ../../include/features.php:109 +msgid "Ability to select posts by date ranges" msgstr "" -#: ../../addon/redred/Mod_Redred.php:24 -msgid "Channel is required." +#: ../../include/features.php:116 +msgid "Tag Cloud" msgstr "" -#: ../../addon/redred/Mod_Redred.php:29 ../../Zotlabs/Module/Network.php:331 -msgid "Invalid channel." +#: ../../include/features.php:117 +msgid "Provide a personal tag cloud on your channel page" msgstr "" -#: ../../addon/redred/Mod_Redred.php:38 -msgid "Hubzilla Crosspost Connector Settings saved." +#: ../../include/features.php:124 ../../include/features.php:358 +msgid "Use blog/list mode" msgstr "" -#: ../../addon/redred/Mod_Redred.php:61 -msgid "Send public postings to Hubzilla channel by default" +#: ../../include/features.php:125 ../../include/features.php:359 +msgid "Comments will be displayed separately" msgstr "" -#: ../../addon/redred/Mod_Redred.php:65 -msgid "Hubzilla API Path" +#: ../../include/features.php:133 ../../include/text.php:1056 +#: ../../Zotlabs/Lib/Apps.php:338 ../../Zotlabs/Module/Connections.php:393 +msgid "Connections" msgstr "" -#: ../../addon/redred/Mod_Redred.php:65 ../../addon/rtof/Mod_Rtof.php:51 -msgid "https://{sitename}/api" +#: ../../include/features.php:137 +msgid "Connection Filtering" msgstr "" -#: ../../addon/redred/Mod_Redred.php:69 -msgid "Hubzilla login name" +#: ../../include/features.php:138 +msgid "Filter incoming posts from connections based on keywords/content" msgstr "" -#: ../../addon/redred/Mod_Redred.php:73 -msgid "Hubzilla channel name" +#: ../../include/features.php:146 +msgid "Conversation" msgstr "" -#: ../../addon/redred/Mod_Redred.php:77 -msgid "Hubzilla password" +#: ../../include/features.php:158 +msgid "Emoji Reactions" msgstr "" -#: ../../addon/redred/Mod_Redred.php:85 -msgid "Hubzilla Crosspost Connector" +#: ../../include/features.php:159 +msgid "Add emoji reaction ability to posts" msgstr "" -#: ../../addon/redred/redred.php:50 -msgid "Post to Hubzilla" +#: ../../include/features.php:166 +msgid "Dislike Posts" msgstr "" -#: ../../addon/redphotos/redphotos.php:106 -msgid "Photos imported" +#: ../../include/features.php:167 +msgid "Ability to dislike posts/comments" msgstr "" -#: ../../addon/redphotos/redphotos.php:119 -#: ../../addon/redfiles/redfiles.php:109 ../../addon/hzfiles/hzfiles.php:75 -#: ../../include/items.php:441 ../../Zotlabs/Module/Import_items.php:116 -#: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Group.php:108 -#: ../../Zotlabs/Module/Like.php:348 ../../Zotlabs/Module/Cloud.php:123 -#: ../../Zotlabs/Module/Share.php:72 ../../Zotlabs/Module/Subthread.php:89 -#: ../../Zotlabs/Module/Dreport.php:10 ../../Zotlabs/Module/Dreport.php:55 -#: ../../Zotlabs/Web/WebServer.php:116 -msgid "Permission denied" +#: ../../include/features.php:174 +msgid "Star Posts" msgstr "" -#: ../../addon/redphotos/redphotos.php:129 -msgid "Redmatrix Photo Album Import" +#: ../../include/features.php:175 +msgid "Ability to mark special posts with a star indicator" msgstr "" -#: ../../addon/redphotos/redphotos.php:130 -msgid "This will import all your Redmatrix photo albums to this channel." +#: ../../include/features.php:182 +msgid "Reply on comment" msgstr "" -#: ../../addon/redphotos/redphotos.php:131 -#: ../../addon/redfiles/redfiles.php:121 -msgid "Redmatrix Server base URL" +#: ../../include/features.php:183 +msgid "Ability to reply on selected comment" msgstr "" -#: ../../addon/redphotos/redphotos.php:132 -#: ../../addon/redfiles/redfiles.php:122 -msgid "Redmatrix Login Username" +#: ../../include/features.php:192 ../../Zotlabs/Lib/Apps.php:352 +msgid "Directory" msgstr "" -#: ../../addon/redphotos/redphotos.php:133 -#: ../../addon/redfiles/redfiles.php:123 -msgid "Redmatrix Login Password" +#: ../../include/features.php:196 +msgid "Advanced Directory Search" msgstr "" -#: ../../addon/redphotos/redphotos.php:134 -msgid "Import just this album" +#: ../../include/features.php:197 +msgid "Allows creation of complex directory search queries" msgstr "" -#: ../../addon/redphotos/redphotos.php:134 -msgid "Leave blank to import all albums" +#: ../../include/features.php:206 +msgid "Editor" msgstr "" -#: ../../addon/redphotos/redphotos.php:135 -msgid "Maximum count to import" +#: ../../include/features.php:210 +msgid "Post Categories" msgstr "" -#: ../../addon/redphotos/redphotos.php:135 -msgid "0 or blank to import all available" +#: ../../include/features.php:211 +msgid "Add categories to your posts" msgstr "" -#: ../../addon/redphotos/redphotohelper.php:71 ../../addon/pubcrawl/as.php:1958 -#: ../../addon/diaspora/Receiver.php:1647 ../../include/text.php:2337 -#: ../../include/conversation.php:138 ../../Zotlabs/Module/Like.php:445 -#: ../../Zotlabs/Module/Tagger.php:71 ../../Zotlabs/Module/Subthread.php:115 -#: ../../Zotlabs/Lib/Activity.php:3546 -msgid "photo" +#: ../../include/features.php:218 +msgid "Large Photos" msgstr "" -#: ../../addon/statusnet/Mod_Statusnet.php:61 +#: ../../include/features.php:219 msgid "" -"Please contact your site administrator.
The provided API URL is not " -"valid." +"Include large (1024px) photo thumbnails in posts. If not enabled, use small " +"(640px) photo thumbnails" msgstr "" -#: ../../addon/statusnet/Mod_Statusnet.php:98 -msgid "We could not contact the GNU social API with the Path you entered." +#: ../../include/features.php:226 +msgid "Even More Encryption" msgstr "" -#: ../../addon/statusnet/Mod_Statusnet.php:130 -msgid "GNU social settings updated." +#: ../../include/features.php:227 +msgid "" +"Allow optional encryption of content end-to-end with a shared secret key" msgstr "" -#: ../../addon/statusnet/Mod_Statusnet.php:179 -msgid "Globally Available GNU social OAuthKeys" +#: ../../include/features.php:234 +msgid "Disable Comments" msgstr "" -#: ../../addon/statusnet/Mod_Statusnet.php:181 -msgid "" -"There are preconfigured OAuth key pairs for some GNU social servers " -"available. If you are using one of them, please use these credentials.
If not feel free to connect to any other GNU social instance (see below)." +#: ../../include/features.php:235 +msgid "Provide the option to disable comments for a post" msgstr "" -#: ../../addon/statusnet/Mod_Statusnet.php:196 -msgid "Provide your own OAuth Credentials" +#: ../../include/features.php:242 +msgid "Delayed Posting" msgstr "" -#: ../../addon/statusnet/Mod_Statusnet.php:198 -msgid "" -"No consumer key pair for GNU social found. Register your Hubzilla Account as " -"an desktop client on your GNU social account, copy the consumer key pair " -"here and enter the API base root.
Before you register your own OAuth " -"key pair ask the administrator if there is already a key pair for this " -"Hubzilla installation at your favourite GNU social installation." +#: ../../include/features.php:243 +msgid "Allow posts to be published at a later date" msgstr "" -#: ../../addon/statusnet/Mod_Statusnet.php:202 -msgid "OAuth Consumer Key" +#: ../../include/features.php:250 +msgid "Content Expiration" msgstr "" -#: ../../addon/statusnet/Mod_Statusnet.php:206 -msgid "OAuth Consumer Secret" +#: ../../include/features.php:251 +msgid "Remove posts/comments and/or private messages at a future time" msgstr "" -#: ../../addon/statusnet/Mod_Statusnet.php:210 -msgid "Base API Path" +#: ../../include/features.php:258 +msgid "Suppress Duplicate Posts/Comments" msgstr "" -#: ../../addon/statusnet/Mod_Statusnet.php:210 -msgid "Remember the trailing /" +#: ../../include/features.php:259 +msgid "" +"Prevent posts with identical content to be published with less than two " +"minutes in between submissions." msgstr "" -#: ../../addon/statusnet/Mod_Statusnet.php:214 -msgid "GNU social application name" +#: ../../include/features.php:266 +msgid "Auto-save drafts of posts and comments" msgstr "" -#: ../../addon/statusnet/Mod_Statusnet.php:237 +#: ../../include/features.php:267 msgid "" -"To connect to your GNU social account click the button below to get a " -"security code from GNU social which you have to copy into the input box " -"below and submit the form. Only your public posts will be " -"posted to GNU social." +"Automatically saves post and comment drafts in local browser storage to help " +"prevent accidental loss of compositions" msgstr "" -#: ../../addon/statusnet/Mod_Statusnet.php:239 -msgid "Log in with GNU social" +#: ../../include/features.php:276 +msgid "Manage" msgstr "" -#: ../../addon/statusnet/Mod_Statusnet.php:242 -msgid "Copy the security code from GNU social here" +#: ../../include/features.php:280 +msgid "Navigation Channel Select" msgstr "" -#: ../../addon/statusnet/Mod_Statusnet.php:252 -msgid "Cancel Connection Process" +#: ../../include/features.php:281 +msgid "Change channels directly from within the navigation dropdown menu" msgstr "" -#: ../../addon/statusnet/Mod_Statusnet.php:254 -msgid "Current GNU social API is" +#: ../../include/features.php:290 ../../Zotlabs/Module/Connections.php:341 +#: ../../Zotlabs/Widget/Notifications.php:23 +msgid "Network" msgstr "" -#: ../../addon/statusnet/Mod_Statusnet.php:258 -msgid "Cancel GNU social Connection" +#: ../../include/features.php:294 +msgid "Events Filter" msgstr "" -#: ../../addon/statusnet/Mod_Statusnet.php:270 -#: ../../addon/twitter/Mod_Twitter.php:145 -msgid "Currently connected to: " +#: ../../include/features.php:295 +msgid "Ability to display only events" msgstr "" -#: ../../addon/statusnet/Mod_Statusnet.php:275 -msgid "" -"Note: Due your privacy settings (Hide your profile " -"details from unknown viewers?) the link potentially included in public " -"postings relayed to GNU social will lead the visitor to a blank page " -"informing the visitor that the access to your profile has been restricted." +#: ../../include/features.php:302 +msgid "Polls Filter" msgstr "" -#: ../../addon/statusnet/Mod_Statusnet.php:280 -msgid "Post to GNU social by default" +#: ../../include/features.php:303 +msgid "Ability to display only polls" msgstr "" -#: ../../addon/statusnet/Mod_Statusnet.php:280 -msgid "" -"If enabled your public postings will be posted to the associated GNU-social " -"account by default" +#: ../../include/features.php:310 ../../Zotlabs/Widget/Savedsearch.php:89 +msgid "Saved Searches" msgstr "" -#: ../../addon/statusnet/Mod_Statusnet.php:289 -#: ../../addon/twitter/Mod_Twitter.php:169 -msgid "Clear OAuth configuration" +#: ../../include/features.php:311 +msgid "Save search terms for re-use" msgstr "" -#: ../../addon/statusnet/Mod_Statusnet.php:301 -msgid "GNU-Social Crosspost Connector" +#: ../../include/features.php:319 +msgid "Ability to file posts under folders" msgstr "" -#: ../../addon/statusnet/statusnet.php:145 -msgid "Post to GNU social" +#: ../../include/features.php:326 +msgid "Alternate Stream Order" msgstr "" -#: ../../addon/statusnet/statusnet.php:593 -#: ../../Zotlabs/Module/Admin/Site.php:423 -msgid "Site name" +#: ../../include/features.php:327 +msgid "" +"Ability to order the stream by last post date, last comment date or " +"unthreaded activities" msgstr "" -#: ../../addon/statusnet/statusnet.php:594 -msgid "API URL" +#: ../../include/features.php:334 +msgid "Contact Filter" msgstr "" -#: ../../addon/statusnet/statusnet.php:595 ../../addon/twitter/twitter.php:505 -#: ../../Zotlabs/Module/Oauth.php:113 ../../Zotlabs/Module/Oauth.php:139 -#: ../../Zotlabs/Module/Oauth2.php:117 ../../Zotlabs/Module/Oauth2.php:145 -msgid "Consumer Secret" +#: ../../include/features.php:335 +msgid "Ability to display only posts of a selected contact" msgstr "" -#: ../../addon/statusnet/statusnet.php:596 ../../addon/twitter/twitter.php:504 -#: ../../Zotlabs/Module/Oauth.php:112 ../../Zotlabs/Module/Oauth.php:138 -msgid "Consumer Key" +#: ../../include/features.php:342 +msgid "Forum Filter" msgstr "" -#: ../../addon/statusnet/statusnet.php:597 -msgid "Application name" +#: ../../include/features.php:343 +msgid "Ability to display only posts of a specific forum" msgstr "" -#: ../../addon/rtof/Mod_Rtof.php:24 -msgid "Friendica Crosspost Connector Settings saved." +#: ../../include/features.php:350 +msgid "Personal Posts Filter" msgstr "" -#: ../../addon/rtof/Mod_Rtof.php:47 -msgid "Send public postings to Friendica by default" +#: ../../include/features.php:351 +msgid "Ability to display only posts that you've interacted on" msgstr "" -#: ../../addon/rtof/Mod_Rtof.php:51 -msgid "Friendica API Path" +#: ../../include/features.php:372 +msgid "Photo Location" msgstr "" -#: ../../addon/rtof/Mod_Rtof.php:55 -msgid "Friendica login name" +#: ../../include/features.php:373 +msgid "If location data is available on uploaded photos, link this to a map." msgstr "" -#: ../../addon/rtof/Mod_Rtof.php:59 -msgid "Friendica password" +#: ../../include/features.php:380 +msgid "Flag Adult Photos" msgstr "" -#: ../../addon/rtof/Mod_Rtof.php:67 -msgid "Friendica Crosspost Connector" +#: ../../include/features.php:381 +msgid "" +"Provide photo edit option to hide inappropriate photos from default album " +"view" msgstr "" -#: ../../addon/rtof/rtof.php:51 -msgid "Post to Friendica" +#: ../../include/features.php:390 ../../Zotlabs/Lib/Apps.php:368 +#: ../../Zotlabs/Module/Contactedit.php:444 +msgid "Profiles" msgstr "" -#: ../../addon/wppost/wppost.php:47 -msgid "Post to WordPress" +#: ../../include/features.php:394 +msgid "Advanced Profiles" msgstr "" -#: ../../addon/wppost/Mod_Wppost.php:30 -msgid "Wordpress Settings saved." +#: ../../include/features.php:395 +msgid "Additional profile sections and selections" msgstr "" -#: ../../addon/wppost/Mod_Wppost.php:67 -msgid "WordPress username" +#: ../../include/features.php:402 +msgid "Profile Import/Export" msgstr "" -#: ../../addon/wppost/Mod_Wppost.php:71 -msgid "WordPress password" +#: ../../include/features.php:403 +msgid "Save and load profile details across sites/channels" msgstr "" -#: ../../addon/wppost/Mod_Wppost.php:75 -msgid "WordPress API URL" +#: ../../include/features.php:410 +msgid "Multiple Profiles" msgstr "" -#: ../../addon/wppost/Mod_Wppost.php:76 -msgid "Typically https://your-blog.tld/xmlrpc.php" +#: ../../include/features.php:411 +msgid "Ability to create multiple profiles" msgstr "" -#: ../../addon/wppost/Mod_Wppost.php:79 -msgid "WordPress blogid" +#: ../../include/feedutils.php:871 ../../include/text.php:1570 +msgid "unknown" msgstr "" -#: ../../addon/wppost/Mod_Wppost.php:80 -msgid "For multi-user sites such as wordpress.com, otherwise leave blank" +#: ../../include/oembed.php:154 +msgid "View PDF" msgstr "" -#: ../../addon/wppost/Mod_Wppost.php:84 -msgid "Post to WordPress by default" +#: ../../include/oembed.php:386 +msgid " by " msgstr "" -#: ../../addon/wppost/Mod_Wppost.php:88 -msgid "Forward comments (requires hubzilla_wp plugin)" +#: ../../include/oembed.php:387 +msgid " on " msgstr "" -#: ../../addon/wppost/Mod_Wppost.php:92 ../../addon/dwpost/Mod_Dwpost.php:63 -#: ../../addon/ljpost/Mod_Ljpost.php:69 -msgid "Add link to original post" +#: ../../include/oembed.php:416 +msgid "Embedded content" msgstr "" -#: ../../addon/wppost/Mod_Wppost.php:96 ../../addon/dwpost/Mod_Dwpost.php:67 -msgid "Link description (default:" +#: ../../include/oembed.php:425 +msgid "Embedding disabled" msgstr "" -#: ../../addon/wppost/Mod_Wppost.php:104 -msgid "Wordpress Post" +#: ../../include/markdown.php:206 ../../include/bbcode.php:568 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" msgstr "" -#: ../../addon/content_import/Mod_content_import.php:27 -msgid "No server specified" +#: ../../include/markdown.php:208 ../../include/bbcode.php:564 +#: ../../include/conversation.php:168 ../../include/text.php:2348 +#: ../../Zotlabs/Lib/Activity.php:3563 ../../Zotlabs/Module/Tagger.php:79 +msgid "post" msgstr "" -#: ../../addon/content_import/Mod_content_import.php:73 -msgid "Posts imported" +#: ../../include/markdown.php:259 ../../include/bbcode.php:653 +msgid "spoiler" msgstr "" -#: ../../addon/content_import/Mod_content_import.php:113 -msgid "Files imported" +#: ../../include/opengraph.php:56 +#, php-format +msgid "This is the home page of %s." msgstr "" -#: ../../addon/content_import/Mod_content_import.php:134 -#: ../../Zotlabs/Lib/Apps.php:336 -msgid "Content Import" +#: ../../include/group.php:23 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." msgstr "" -#: ../../addon/content_import/Mod_content_import.php:135 -msgid "" -"This will import all your conversations and cloud files from a cloned " -"channel on another server. This may take a while if you have lots of posts " -"and or files." +#: ../../include/group.php:271 +msgid "Add new connections to this privacy group" msgstr "" -#: ../../addon/content_import/Mod_content_import.php:136 -msgid "Include posts" +#: ../../include/group.php:305 +msgid "edit" msgstr "" -#: ../../addon/content_import/Mod_content_import.php:136 -msgid "Conversations, Articles, Cards, and other posted content" +#: ../../include/group.php:327 ../../include/acl_selectors.php:87 +#: ../../Zotlabs/Lib/Apps.php:369 ../../Zotlabs/Module/Group.php:143 +#: ../../Zotlabs/Widget/Activity_filter.php:95 +msgid "Privacy Groups" msgstr "" -#: ../../addon/content_import/Mod_content_import.php:137 -msgid "Include files" +#: ../../include/group.php:328 +msgid "Edit group" msgstr "" -#: ../../addon/content_import/Mod_content_import.php:137 -msgid "Files, Photos and other cloud storage" +#: ../../include/group.php:329 +msgid "Manage privacy groups" msgstr "" -#: ../../addon/content_import/Mod_content_import.php:138 -msgid "Original Server base URL" +#: ../../include/group.php:330 +msgid "Channels not in any privacy group" msgstr "" -#: ../../addon/content_import/Mod_content_import.php:139 -#: ../../addon/hzfiles/hzfiles.php:84 -msgid "Since modified date yyyy-mm-dd" +#: ../../include/group.php:332 ../../Zotlabs/Widget/Savedsearch.php:90 +msgid "add" msgstr "" -#: ../../addon/content_import/Mod_content_import.php:140 -#: ../../addon/hzfiles/hzfiles.php:85 -msgid "Until modified date yyyy-mm-dd" +#: ../../include/connections.php:112 ../../include/conversation.php:1119 +#: ../../include/channel.php:1612 ../../Zotlabs/Module/Directory.php:363 +#: ../../Zotlabs/Module/Connections.php:359 ../../Zotlabs/Module/Suggest.php:69 +#: ../../Zotlabs/Widget/Suggestions.php:51 ../../Zotlabs/Widget/Follow.php:37 +msgid "Connect" msgstr "" -#: ../../addon/hsse/hsse.php:82 ../../include/conversation.php:1332 -msgid "Set your location" +#: ../../include/connections.php:136 +msgid "New window" msgstr "" -#: ../../addon/hsse/hsse.php:83 ../../include/conversation.php:1333 -msgid "Clear browser location" +#: ../../include/connections.php:137 +msgid "Open the selected location in a different window or browser tab" msgstr "" -#: ../../addon/hsse/hsse.php:95 ../../addon/cards/Mod_Card_edit.php:101 -#: ../../addon/articles/Mod_Article_edit.php:99 -#: ../../include/conversation.php:1345 ../../Zotlabs/Module/Editwebpage.php:143 -#: ../../Zotlabs/Module/Chat.php:218 ../../Zotlabs/Module/Editblock.php:116 -msgid "Insert web link" +#: ../../include/items.php:441 ../../addon/hzfiles/hzfiles.php:75 +#: ../../addon/redphotos/redphotos.php:119 +#: ../../addon/redfiles/redfiles.php:109 ../../Zotlabs/Web/WebServer.php:118 +#: ../../Zotlabs/Module/Like.php:348 ../../Zotlabs/Module/Share.php:72 +#: ../../Zotlabs/Module/Import_items.php:116 +#: ../../Zotlabs/Module/Dreport.php:10 ../../Zotlabs/Module/Dreport.php:55 +#: ../../Zotlabs/Module/Subthread.php:89 ../../Zotlabs/Module/Group.php:108 +#: ../../Zotlabs/Module/Profperm.php:28 +msgid "Permission denied" msgstr "" -#: ../../addon/hsse/hsse.php:99 ../../include/conversation.php:1349 -msgid "Embed (existing) photo from your photo albums" +#: ../../include/items.php:1228 +msgid "Visible to anybody on the internet." msgstr "" -#: ../../addon/hsse/hsse.php:134 ../../include/conversation.php:1382 -#: ../../Zotlabs/Module/Chat.php:216 -msgid "Please enter a link URL:" +#: ../../include/items.php:1230 +msgid "Visible to you only." msgstr "" -#: ../../addon/hsse/hsse.php:135 ../../include/conversation.php:1383 -msgid "Tag term:" +#: ../../include/items.php:1232 +msgid "Visible to anybody in this network." msgstr "" -#: ../../addon/hsse/hsse.php:136 ../../include/conversation.php:1384 -msgid "Where are you right now?" +#: ../../include/items.php:1234 +msgid "Visible to anybody authenticated." msgstr "" -#: ../../addon/hsse/hsse.php:141 ../../include/conversation.php:1389 -msgid "Choose a different album..." +#: ../../include/items.php:1236 +#, php-format +msgid "Visible to anybody on %s." msgstr "" -#: ../../addon/hsse/hsse.php:145 ../../include/conversation.php:1393 -msgid "Comments enabled" +#: ../../include/items.php:1238 +msgid "Visible to all connections." msgstr "" -#: ../../addon/hsse/hsse.php:146 ../../include/conversation.php:1394 -msgid "Comments disabled" +#: ../../include/items.php:1240 +msgid "Visible to approved connections." msgstr "" -#: ../../addon/hsse/hsse.php:153 ../../include/conversation.php:1411 -#: ../../Zotlabs/Module/Webpages.php:259 ../../Zotlabs/Module/Photos.php:1105 -#: ../../Zotlabs/Lib/ThreadItem.php:845 -msgid "Preview" +#: ../../include/items.php:1242 +msgid "Visible to specific connections." msgstr "" -#: ../../addon/hsse/hsse.php:195 ../../include/conversation.php:1453 -msgid "Page link name" +#: ../../include/items.php:3296 ../../Zotlabs/Module/Share.php:104 +#, php-format +msgid "🔁 Repeated %1$s's %2$s" msgstr "" -#: ../../addon/hsse/hsse.php:198 ../../include/conversation.php:1456 -msgid "Post as" +#: ../../include/items.php:3810 ../../addon/flashcards/Mod_Flashcards.php:291 +#: ../../addon/flashcards/Mod_Flashcards.php:292 +#: ../../Zotlabs/Module/Display.php:53 ../../Zotlabs/Module/Display.php:114 +#: ../../Zotlabs/Module/Display.php:392 +#: ../../Zotlabs/Module/Admin/Themes.php:72 +#: ../../Zotlabs/Module/Admin/Addons.php:263 +#: ../../Zotlabs/Module/Filestorage.php:29 ../../Zotlabs/Module/Thing.php:96 +#: ../../Zotlabs/Module/Admin.php:61 ../../Zotlabs/Module/Viewsrc.php:25 +msgid "Item not found." msgstr "" -#: ../../addon/hsse/hsse.php:200 ../../include/conversation.php:1458 -#: ../../Zotlabs/Lib/ThreadItem.php:836 -msgid "Bold" +#: ../../include/items.php:3887 ../../include/photos.php:30 +#: ../../include/attach.php:156 ../../include/attach.php:205 +#: ../../include/attach.php:278 ../../include/attach.php:329 +#: ../../include/attach.php:424 ../../include/attach.php:438 +#: ../../include/attach.php:445 ../../include/attach.php:527 +#: ../../include/attach.php:1098 ../../include/attach.php:1171 +#: ../../include/attach.php:1336 ../../addon/articles/Mod_Article_edit.php:51 +#: ../../addon/articles/Mod_Articles.php:94 ../../addon/pumpio/pumpio.php:44 +#: ../../addon/keepout/keepout.php:36 ../../addon/cards/Mod_Cards.php:89 +#: ../../addon/cards/Mod_Card_edit.php:51 ../../addon/wiki/Mod_Wiki.php:63 +#: ../../addon/wiki/Mod_Wiki.php:288 ../../addon/wiki/Mod_Wiki.php:425 +#: ../../addon/openid/Mod_Id.php:53 ../../Zotlabs/Lib/Chatroom.php:135 +#: ../../Zotlabs/Web/WebServer.php:119 +#: ../../Zotlabs/Module/Service_limits.php:11 ../../Zotlabs/Module/Locs.php:98 +#: ../../Zotlabs/Module/Item.php:516 ../../Zotlabs/Module/Item.php:535 +#: ../../Zotlabs/Module/Item.php:545 ../../Zotlabs/Module/Item.php:1422 +#: ../../Zotlabs/Module/Cover_photo.php:341 +#: ../../Zotlabs/Module/Cover_photo.php:354 +#: ../../Zotlabs/Module/Register.php:200 ../../Zotlabs/Module/Api.php:24 +#: ../../Zotlabs/Module/Page.php:34 ../../Zotlabs/Module/Page.php:133 +#: ../../Zotlabs/Module/Profile_photo.php:390 +#: ../../Zotlabs/Module/Profile_photo.php:421 +#: ../../Zotlabs/Module/Invite.php:64 ../../Zotlabs/Module/Invite.php:315 +#: ../../Zotlabs/Module/Poke.php:141 ../../Zotlabs/Module/Block.php:24 +#: ../../Zotlabs/Module/Block.php:74 ../../Zotlabs/Module/Like.php:248 +#: ../../Zotlabs/Module/Vote.php:19 ../../Zotlabs/Module/Profile.php:99 +#: ../../Zotlabs/Module/Profile.php:114 ../../Zotlabs/Module/Display.php:388 +#: ../../Zotlabs/Module/Mitem.php:129 ../../Zotlabs/Module/Settings.php:59 +#: ../../Zotlabs/Module/Appman.php:153 ../../Zotlabs/Module/Layouts.php:71 +#: ../../Zotlabs/Module/Layouts.php:78 ../../Zotlabs/Module/Layouts.php:89 +#: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80 +#: ../../Zotlabs/Module/Connections.php:32 +#: ../../Zotlabs/Module/Bookmarks.php:70 ../../Zotlabs/Module/Editlayout.php:67 +#: ../../Zotlabs/Module/Editlayout.php:90 ../../Zotlabs/Module/Menu.php:130 +#: ../../Zotlabs/Module/Menu.php:141 ../../Zotlabs/Module/Mood.php:126 +#: ../../Zotlabs/Module/Channel.php:222 ../../Zotlabs/Module/Channel.php:379 +#: ../../Zotlabs/Module/Channel.php:418 +#: ../../Zotlabs/Module/Viewconnections.php:28 +#: ../../Zotlabs/Module/Viewconnections.php:33 +#: ../../Zotlabs/Module/Attach_edit.php:90 +#: ../../Zotlabs/Module/Attach_edit.php:99 +#: ../../Zotlabs/Module/Attach_edit.php:106 ../../Zotlabs/Module/Chat.php:111 +#: ../../Zotlabs/Module/Chat.php:116 ../../Zotlabs/Module/Network.php:18 +#: ../../Zotlabs/Module/Sources.php:80 ../../Zotlabs/Module/Suggest.php:32 +#: ../../Zotlabs/Module/Authtest.php:13 ../../Zotlabs/Module/Connedit.php:299 +#: ../../Zotlabs/Module/Profiles.php:171 ../../Zotlabs/Module/Profiles.php:615 +#: ../../Zotlabs/Module/Webpages.php:131 +#: ../../Zotlabs/Module/Filestorage.php:20 +#: ../../Zotlabs/Module/Filestorage.php:78 +#: ../../Zotlabs/Module/Filestorage.php:96 +#: ../../Zotlabs/Module/Filestorage.php:119 +#: ../../Zotlabs/Module/Filestorage.php:165 +#: ../../Zotlabs/Module/Moderate.php:15 ../../Zotlabs/Module/Pdledit.php:35 +#: ../../Zotlabs/Module/Channel_calendar.php:232 +#: ../../Zotlabs/Module/Regmod.php:20 ../../Zotlabs/Module/Defperms.php:181 +#: ../../Zotlabs/Module/Thing.php:282 ../../Zotlabs/Module/Thing.php:302 +#: ../../Zotlabs/Module/Thing.php:343 ../../Zotlabs/Module/Editblock.php:67 +#: ../../Zotlabs/Module/Sharedwithme.php:19 ../../Zotlabs/Module/Setup.php:218 +#: ../../Zotlabs/Module/Viewsrc.php:19 ../../Zotlabs/Module/Group.php:14 +#: ../../Zotlabs/Module/Group.php:30 ../../Zotlabs/Module/Editpost.php:17 +#: ../../Zotlabs/Module/Achievements.php:34 +#: ../../Zotlabs/Module/New_channel.php:105 +#: ../../Zotlabs/Module/New_channel.php:130 ../../Zotlabs/Module/Photos.php:71 +#: ../../Zotlabs/Module/Common.php:38 ../../Zotlabs/Module/Manage.php:10 +#: ../../Zotlabs/Module/Editwebpage.php:68 +#: ../../Zotlabs/Module/Editwebpage.php:89 +#: ../../Zotlabs/Module/Editwebpage.php:107 +#: ../../Zotlabs/Module/Editwebpage.php:121 +msgid "Permission denied." msgstr "" -#: ../../addon/hsse/hsse.php:201 ../../include/conversation.php:1459 -#: ../../Zotlabs/Lib/ThreadItem.php:837 -msgid "Italic" +#: ../../include/items.php:4389 ../../Zotlabs/Module/Group.php:62 +#: ../../Zotlabs/Module/Group.php:206 +msgid "Privacy group not found." msgstr "" -#: ../../addon/hsse/hsse.php:202 ../../include/conversation.php:1460 -#: ../../Zotlabs/Lib/ThreadItem.php:838 -msgid "Underline" +#: ../../include/items.php:4405 +msgid "Privacy group is empty." msgstr "" -#: ../../addon/hsse/hsse.php:203 ../../include/conversation.php:1461 -#: ../../Zotlabs/Lib/ThreadItem.php:839 -msgid "Quote" +#: ../../include/items.php:4412 +#, php-format +msgid "Privacy group: %s" msgstr "" -#: ../../addon/hsse/hsse.php:204 ../../include/conversation.php:1462 -#: ../../Zotlabs/Lib/ThreadItem.php:840 -msgid "Code" +#: ../../include/items.php:4422 +#, php-format +msgid "Connection: %s" msgstr "" -#: ../../addon/hsse/hsse.php:205 ../../include/conversation.php:1463 -#: ../../Zotlabs/Lib/ThreadItem.php:842 -msgid "Attach/Upload file" +#: ../../include/items.php:4424 +msgid "Connection not found." msgstr "" -#: ../../addon/hsse/hsse.php:212 ../../include/conversation.php:1470 -msgid "Toggle voting" +#: ../../include/items.php:4771 ../../Zotlabs/Module/Cover_photo.php:297 +msgid "female" msgstr "" -#: ../../addon/hsse/hsse.php:215 ../../include/conversation.php:1477 -msgid "Disable comments" +#: ../../include/items.php:4772 ../../Zotlabs/Module/Cover_photo.php:298 +#, php-format +msgid "%1$s updated her %2$s" msgstr "" -#: ../../addon/hsse/hsse.php:216 ../../include/conversation.php:1478 -msgid "Toggle comments" +#: ../../include/items.php:4773 ../../Zotlabs/Module/Cover_photo.php:299 +msgid "male" msgstr "" -#: ../../addon/hsse/hsse.php:221 ../../addon/cards/Mod_Card_edit.php:118 -#: ../../addon/articles/Mod_Article_edit.php:116 -#: ../../include/conversation.php:1484 ../../Zotlabs/Module/Editblock.php:129 -#: ../../Zotlabs/Module/Photos.php:678 ../../Zotlabs/Module/Photos.php:1050 -msgid "Title (optional)" +#: ../../include/items.php:4774 ../../Zotlabs/Module/Cover_photo.php:300 +#, php-format +msgid "%1$s updated his %2$s" msgstr "" -#: ../../addon/hsse/hsse.php:224 ../../include/conversation.php:1488 -msgid "Categories (optional, comma-separated list)" +#: ../../include/items.php:4776 ../../Zotlabs/Module/Cover_photo.php:302 +#, php-format +msgid "%1$s updated their %2$s" msgstr "" -#: ../../addon/hsse/hsse.php:225 ../../include/conversation.php:1489 -msgid "Permission settings" +#: ../../include/items.php:4778 +msgid "profile photo" msgstr "" -#: ../../addon/hsse/hsse.php:247 ../../include/conversation.php:1511 -msgid "Other networks and post services" +#: ../../include/items.php:4975 +#, php-format +msgid "[Edited %s]" msgstr "" -#: ../../addon/hsse/hsse.php:250 ../../include/conversation.php:1514 -msgid "Set expiration date" +#: ../../include/items.php:4975 +msgctxt "edit_activity" +msgid "Post" msgstr "" -#: ../../addon/hsse/hsse.php:253 ../../include/conversation.php:1517 -msgid "Set publish date" +#: ../../include/items.php:4975 +msgctxt "edit_activity" +msgid "Comment" msgstr "" -#: ../../addon/hsse/hsse.php:255 ../../include/conversation.php:1519 -#: ../../Zotlabs/Module/Chat.php:217 ../../Zotlabs/Lib/ThreadItem.php:848 -msgid "Encrypt text" +#: ../../include/cdav.php:157 +msgid "INVALID EVENT DISMISSED!" msgstr "" -#: ../../addon/hsse/Mod_Hsse.php:15 -msgid "WYSIWYG status editor" +#: ../../include/cdav.php:158 +msgid "Summary: " msgstr "" -#: ../../addon/hsse/Mod_Hsse.php:24 -msgid "WYSIWYG Status App" +#: ../../include/cdav.php:158 ../../include/cdav.php:159 +#: ../../include/cdav.php:167 ../../include/conversation.php:1216 +#: ../../Zotlabs/Lib/Apps.php:1152 ../../Zotlabs/Lib/Apps.php:1236 +#: ../../Zotlabs/Lib/Activity.php:1615 ../../Zotlabs/Module/Embedphotos.php:177 +#: ../../Zotlabs/Module/Photos.php:788 ../../Zotlabs/Module/Photos.php:1245 +#: ../../Zotlabs/Widget/Pinned.php:271 ../../Zotlabs/Widget/Portfolio.php:99 +#: ../../Zotlabs/Widget/Album.php:90 +msgid "Unknown" msgstr "" -#: ../../addon/hsse/Mod_Hsse.php:32 -msgid "WYSIWYG Status" +#: ../../include/cdav.php:159 +msgid "Date: " msgstr "" -#: ../../addon/openstreetmap/openstreetmap.php:133 -msgid "View Larger" +#: ../../include/cdav.php:160 ../../include/cdav.php:168 +msgid "Reason: " msgstr "" -#: ../../addon/openstreetmap/openstreetmap.php:156 -msgid "Tile Server URL" +#: ../../include/cdav.php:166 +msgid "INVALID CARD DISMISSED!" msgstr "" -#: ../../addon/openstreetmap/openstreetmap.php:156 -msgid "" -"A list of public tile servers" +#: ../../include/cdav.php:167 +msgid "Name: " msgstr "" -#: ../../addon/openstreetmap/openstreetmap.php:157 -msgid "Nominatim (reverse geocoding) Server URL" +#: ../../include/account.php:38 +msgid "The provided email address is not valid" msgstr "" -#: ../../addon/openstreetmap/openstreetmap.php:157 -msgid "" -"A list of Nominatim servers" +#: ../../include/account.php:41 +msgid "The provided email domain is not among those allowed on this site" msgstr "" -#: ../../addon/openstreetmap/openstreetmap.php:158 -msgid "Default zoom" +#: ../../include/account.php:48 +msgid "The provided email address is already registered at this site" msgstr "" -#: ../../addon/openstreetmap/openstreetmap.php:158 +#: ../../include/account.php:55 msgid "" -"The default zoom level. (1:world, 18:highest, also depends on tile server)" +"There is a pending registration for this address - click \"Register\" to " +"continue verification" msgstr "" -#: ../../addon/openstreetmap/openstreetmap.php:159 -msgid "Include marker on map" +#: ../../include/account.php:94 +msgid "An invitation is required." msgstr "" -#: ../../addon/openstreetmap/openstreetmap.php:159 -msgid "Include a marker on the map." +#: ../../include/account.php:103 +msgid "Invitation could not be verified." msgstr "" -#: ../../addon/openstreetmap/openstreetmap.php:171 -#: ../../addon/rendezvous/rendezvous.php:82 ../../addon/twitter/twitter.php:493 -#: ../../addon/msgfooter/msgfooter.php:54 ../../addon/diaspora/diaspora.php:105 -#: ../../addon/piwik/piwik.php:116 ../../addon/logrot/logrot.php:54 -#: ../../addon/xmpp/xmpp.php:54 ../../Zotlabs/Module/Settings/Channel.php:150 -#: ../../Zotlabs/Module/Defperms.php:111 -msgid "Settings updated." +#: ../../include/account.php:191 +msgid "Please enter the required information." msgstr "" -#: ../../addon/ijpost/Mod_Ijpost.php:23 -msgid "Insane Journal Crosspost Connector Settings saved." +#: ../../include/account.php:258 ../../include/account.php:366 +msgid "Failed to store account information." msgstr "" -#: ../../addon/ijpost/Mod_Ijpost.php:35 -msgid "Insane Journal Crosspost Connector App" +#: ../../include/account.php:435 ../../include/account.php:503 +#: ../../Zotlabs/Module/Register.php:328 +#, php-format +msgid "Registration confirmation for %s" msgstr "" -#: ../../addon/ijpost/Mod_Ijpost.php:35 ../../addon/xmpp/Mod_Xmpp.php:35 -#: ../../Zotlabs/Module/Lang.php:20 ../../Zotlabs/Module/Invite.php:56 -msgid "Not Installed" +#: ../../include/account.php:578 +#, php-format +msgid "Registration request at %s" msgstr "" -#: ../../addon/ijpost/Mod_Ijpost.php:36 -msgid "Relay public postings to Insane Journal" +#: ../../include/account.php:600 +msgid "your registration password" msgstr "" -#: ../../addon/ijpost/Mod_Ijpost.php:53 -msgid "InsaneJournal username" +#: ../../include/account.php:606 ../../include/account.php:695 +#, php-format +msgid "Registration details for %s" msgstr "" -#: ../../addon/ijpost/Mod_Ijpost.php:57 -msgid "InsaneJournal password" +#: ../../include/account.php:706 +msgid "Account approved." msgstr "" -#: ../../addon/ijpost/Mod_Ijpost.php:61 -msgid "Post to InsaneJournal by default" +#: ../../include/account.php:762 +#, php-format +msgid "Registration revoked for %s" msgstr "" -#: ../../addon/ijpost/Mod_Ijpost.php:69 -msgid "Insane Journal Crosspost Connector" +#: ../../include/account.php:769 +#, php-format +msgid "Could not revoke registration for %s" msgstr "" -#: ../../addon/ijpost/ijpost.php:44 -msgid "Post to Insane Journal" +#: ../../include/account.php:1185 ../../include/account.php:1187 +msgid "Click here to upgrade." msgstr "" -#: ../../addon/wholikesme/wholikesme.php:29 -msgid "Who likes me?" +#: ../../include/account.php:1193 +msgid "This action exceeds the limits set by your subscription plan." msgstr "" -#: ../../addon/qrator/qrator.php:48 -msgid "QR code" +#: ../../include/account.php:1198 +msgid "This action is not available under your subscription plan." msgstr "" -#: ../../addon/qrator/qrator.php:63 -msgid "QR Generator" +#: ../../include/account.php:1258 +msgid "open" msgstr "" -#: ../../addon/qrator/qrator.php:64 -msgid "Enter some text" +#: ../../include/account.php:1258 +msgid "closed" msgstr "" -#: ../../addon/pubcrawl/as.php:1332 ../../addon/pubcrawl/as.php:2002 -#: ../../include/network.php:1767 ../../Zotlabs/Lib/Activity.php:3588 -msgid "ActivityPub" +#: ../../include/account.php:1265 +msgid "Registration is currently" msgstr "" -#: ../../addon/pubcrawl/as.php:1958 ../../addon/diaspora/Receiver.php:1647 -#: ../../Zotlabs/Module/Like.php:445 ../../Zotlabs/Module/Subthread.php:115 -msgid "status" +#: ../../include/account.php:1274 +msgid "please come back" msgstr "" -#: ../../addon/pubcrawl/as.php:1993 ../../addon/diaspora/Receiver.php:1591 -#: ../../include/conversation.php:184 ../../Zotlabs/Module/Like.php:477 -#: ../../Zotlabs/Lib/Activity.php:3579 -#, php-format -msgid "%1$s likes %2$s's %3$s" +#: ../../include/help.php:81 +msgid "Help:" msgstr "" -#: ../../addon/pubcrawl/as.php:1995 ../../include/conversation.php:187 -#: ../../Zotlabs/Module/Like.php:479 ../../Zotlabs/Lib/Activity.php:3581 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" +#: ../../include/help.php:130 +msgid "Not Found" msgstr "" -#: ../../addon/pubcrawl/Mod_Pubcrawl.php:25 -msgid "ActivityPub Protocol Settings updated." +#: ../../include/help.php:133 ../../addon/articles/articles.php:105 +#: ../../addon/cards/cards.php:104 ../../addon/wiki/Lib/NativeWikiPage.php:545 +#: ../../Zotlabs/Web/Router.php:186 ../../Zotlabs/Module/Page.php:136 +#: ../../Zotlabs/Module/Block.php:77 ../../Zotlabs/Module/Display.php:149 +msgid "Page not found." msgstr "" -#: ../../addon/pubcrawl/Mod_Pubcrawl.php:41 -msgid "" -"The activitypub protocol does not support location independence. Connections " -"you make within that network may be unreachable from alternate channel " -"locations." +#: ../../include/taxonomy.php:323 +msgid "Trending" msgstr "" -#: ../../addon/pubcrawl/Mod_Pubcrawl.php:47 -msgid "Deliver to ActivityPub recipients in privacy groups" +#: ../../include/taxonomy.php:323 ../../include/taxonomy.php:462 +#: ../../include/taxonomy.php:483 ../../Zotlabs/Widget/Tagcloud.php:27 +msgid "Tags" msgstr "" -#: ../../addon/pubcrawl/Mod_Pubcrawl.php:47 -msgid "" -"May result in a large number of mentions and expose all the members of your " -"privacy group" +#: ../../include/taxonomy.php:563 +msgid "Keywords" msgstr "" -#: ../../addon/pubcrawl/Mod_Pubcrawl.php:51 -msgid "Send multi-media HTML articles" +#: ../../include/taxonomy.php:584 +msgid "have" msgstr "" -#: ../../addon/pubcrawl/Mod_Pubcrawl.php:51 -msgid "Not supported by some microblog services such as Mastodon" +#: ../../include/taxonomy.php:584 +msgid "has" msgstr "" -#: ../../addon/pubcrawl/Mod_Pubcrawl.php:59 -msgid "Activitypub Protocol" +#: ../../include/taxonomy.php:585 +msgid "want" msgstr "" -#: ../../addon/fediwordle/fediwordle.php:211 -msgid "ERROR: word length is not correct!" +#: ../../include/taxonomy.php:585 +msgid "wants" msgstr "" -#: ../../addon/fediwordle/Mod_Fediwordle.php:22 -msgid "Fediwordle App" +#: ../../include/taxonomy.php:586 ../../Zotlabs/Lib/ThreadItem.php:310 +msgid "like" msgstr "" -#: ../../addon/fediwordle/Mod_Fediwordle.php:23 -msgid "A distributed word game inspired by wordle." +#: ../../include/taxonomy.php:586 +msgid "likes" msgstr "" -#: ../../addon/fediwordle/Mod_Fediwordle.php:24 -msgid "" -"To start a game, enter [wordle]your_word[/wordle] somewhere in a toplevel " -"post." +#: ../../include/taxonomy.php:587 ../../Zotlabs/Lib/ThreadItem.php:311 +msgid "dislike" msgstr "" -#: ../../addon/fediwordle/Mod_Fediwordle.php:25 -msgid "Your contacts can post their guess in the comments." +#: ../../include/taxonomy.php:587 +msgid "dislikes" msgstr "" -#: ../../addon/fediwordle/Mod_Fediwordle.php:26 -msgid "" -"Your channel will evaluate the guess and automatically post the response." +#: ../../include/taxonomy.php:674 ../../include/conversation.php:1762 +#: ../../include/channel.php:1773 ../../Zotlabs/Lib/ThreadItem.php:233 +#: ../../Zotlabs/Module/Photos.php:1128 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/photos.php:153 +#, php-format +msgid "Image exceeds website size limit of %lu bytes" msgstr "" -#: ../../addon/fediwordle/Mod_Fediwordle.php:28 -msgid "Correct letters" +#: ../../include/photos.php:164 +msgid "Image file is empty." msgstr "" -#: ../../addon/fediwordle/Mod_Fediwordle.php:29 -msgid "Letters contained in the word but at the wrong spot" +#: ../../include/photos.php:198 ../../Zotlabs/Module/Cover_photo.php:241 +#: ../../Zotlabs/Module/Profile_photo.php:275 +msgid "Unable to process image" msgstr "" -#: ../../addon/fediwordle/Mod_Fediwordle.php:30 -msgid "Letters not contained in the word" +#: ../../include/photos.php:324 +msgid "Photo storage failed." msgstr "" -#: ../../addon/ldapauth/ldapauth.php:101 -msgid "An account has been created for you." +#: ../../include/photos.php:373 +msgid "a new photo" msgstr "" -#: ../../addon/ldapauth/ldapauth.php:108 -msgid "Authentication successful but rejected: account creation is disabled." +#: ../../include/photos.php:377 +#, php-format +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" msgstr "" -#: ../../addon/dwpost/Mod_Dwpost.php:26 -msgid "Dreamwidth Crosspost Connector Settings saved." +#: ../../include/photos.php:723 ../../Zotlabs/Module/Photos.php:1338 +#: ../../Zotlabs/Module/Photos.php:1351 ../../Zotlabs/Module/Photos.php:1352 +msgid "Recent Photos" msgstr "" -#: ../../addon/dwpost/Mod_Dwpost.php:51 -msgid "Dreamwidth username" +#: ../../include/photos.php:727 +msgid "Upload New Photos" msgstr "" -#: ../../addon/dwpost/Mod_Dwpost.php:55 -msgid "Dreamwidth password" +#: ../../include/security.php:630 +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 "" -#: ../../addon/dwpost/Mod_Dwpost.php:59 -msgid "Post to Dreamwidth by default" +#: ../../include/bbcode.php:233 ../../include/bbcode.php:937 +#: ../../include/bbcode.php:1558 ../../include/bbcode.php:1566 +msgid "Image/photo" msgstr "" -#: ../../addon/dwpost/Mod_Dwpost.php:75 -msgid "Dreamwidth Crosspost Connector" +#: ../../include/bbcode.php:280 ../../include/bbcode.php:1583 +msgid "Encrypted content" msgstr "" -#: ../../addon/dwpost/dwpost.php:49 -msgid "Post to Dreamwidth" +#: ../../include/bbcode.php:334 +#, php-format +msgid "Install %1$s element %2$s" msgstr "" -#: ../../addon/morepokes/morepokes.php:19 -msgid "bitchslap" +#: ../../include/bbcode.php:338 +#, php-format +msgid "" +"This post contains an installable %s element, however you lack permissions " +"to install it on this site." msgstr "" -#: ../../addon/morepokes/morepokes.php:19 -msgid "bitchslapped" +#: ../../include/bbcode.php:348 ../../Zotlabs/Module/Impel.php:47 +msgid "webpage" msgstr "" -#: ../../addon/morepokes/morepokes.php:20 -msgid "shag" +#: ../../include/bbcode.php:351 ../../Zotlabs/Module/Impel.php:57 +msgid "layout" msgstr "" -#: ../../addon/morepokes/morepokes.php:20 -msgid "shagged" +#: ../../include/bbcode.php:354 ../../Zotlabs/Module/Impel.php:52 +msgid "block" msgstr "" -#: ../../addon/morepokes/morepokes.php:21 -msgid "patent" +#: ../../include/bbcode.php:357 ../../Zotlabs/Module/Impel.php:64 +msgid "menu" msgstr "" -#: ../../addon/morepokes/morepokes.php:21 -msgid "patented" +#: ../../include/bbcode.php:560 +msgid "card" msgstr "" -#: ../../addon/morepokes/morepokes.php:22 -msgid "hug" +#: ../../include/bbcode.php:562 +msgid "article" msgstr "" -#: ../../addon/morepokes/morepokes.php:22 -msgid "hugged" +#: ../../include/bbcode.php:645 ../../include/bbcode.php:653 +msgid "Click to open/close" msgstr "" -#: ../../addon/morepokes/morepokes.php:23 -msgid "murder" +#: ../../include/bbcode.php:666 +msgid "View article" msgstr "" -#: ../../addon/morepokes/morepokes.php:23 -msgid "murdered" +#: ../../include/bbcode.php:666 +msgid "View summary" msgstr "" -#: ../../addon/morepokes/morepokes.php:24 -msgid "worship" +#: ../../include/bbcode.php:1059 ../../include/bbcode.php:1244 +#: ../../addon/wiki/Lib/NativeWikiPage.php:630 +msgid "Different viewers will see this text differently" msgstr "" -#: ../../addon/morepokes/morepokes.php:24 -msgid "worshipped" +#: ../../include/bbcode.php:1534 +msgid "$1 wrote:" msgstr "" -#: ../../addon/morepokes/morepokes.php:25 -msgid "kiss" +#: ../../include/menu.php:120 ../../include/channel.php:1530 +#: ../../include/channel.php:1534 ../../addon/articles/Mod_Article_edit.php:97 +#: ../../addon/articles/articles.php:75 ../../addon/cards/cards.php:74 +#: ../../addon/cards/Mod_Card_edit.php:99 ../../addon/wiki/Mod_Wiki.php:214 +#: ../../addon/wiki/Mod_Wiki.php:381 ../../Zotlabs/Lib/Apps.php:601 +#: ../../Zotlabs/Lib/ThreadItem.php:158 ../../Zotlabs/Module/Oauth2.php:192 +#: ../../Zotlabs/Module/Layouts.php:191 ../../Zotlabs/Module/Blocks.php:158 +#: ../../Zotlabs/Module/Connections.php:332 +#: ../../Zotlabs/Module/Connections.php:381 +#: ../../Zotlabs/Module/Connections.php:402 +#: ../../Zotlabs/Module/Editlayout.php:114 ../../Zotlabs/Module/Oauth.php:171 +#: ../../Zotlabs/Module/Menu.php:176 ../../Zotlabs/Module/Admin/Profs.php:175 +#: ../../Zotlabs/Module/Webpages.php:250 ../../Zotlabs/Module/Thing.php:268 +#: ../../Zotlabs/Module/Editblock.php:114 ../../Zotlabs/Module/Group.php:245 +#: ../../Zotlabs/Module/Editwebpage.php:142 ../../Zotlabs/Widget/Cdav.php:144 +#: ../../Zotlabs/Widget/Cdav.php:181 +msgid "Edit" msgstr "" -#: ../../addon/morepokes/morepokes.php:25 -msgid "kissed" +#: ../../include/attach.php:273 ../../include/attach.php:324 +#: ../../include/attach.php:419 +msgid "Item was not found." msgstr "" -#: ../../addon/morepokes/morepokes.php:26 -msgid "tempt" +#: ../../include/attach.php:290 +msgid "Unknown error." msgstr "" -#: ../../addon/morepokes/morepokes.php:26 -msgid "tempted" +#: ../../include/attach.php:614 +msgid "No source file." msgstr "" -#: ../../addon/morepokes/morepokes.php:27 -msgid "raise eyebrows at" +#: ../../include/attach.php:636 +msgid "Cannot locate file to replace" msgstr "" -#: ../../addon/morepokes/morepokes.php:27 -msgid "raised their eyebrows at" +#: ../../include/attach.php:655 +msgid "Cannot locate file to revise/update" msgstr "" -#: ../../addon/morepokes/morepokes.php:28 -msgid "insult" +#: ../../include/attach.php:801 +#, php-format +msgid "File exceeds size limit of %d" msgstr "" -#: ../../addon/morepokes/morepokes.php:28 -msgid "insulted" +#: ../../include/attach.php:822 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." msgstr "" -#: ../../addon/morepokes/morepokes.php:29 -msgid "praise" +#: ../../include/attach.php:1011 +msgid "File upload failed. Possible system limit or action terminated." msgstr "" -#: ../../addon/morepokes/morepokes.php:29 -msgid "praised" +#: ../../include/attach.php:1040 +msgid "Stored file could not be verified. Upload failed." msgstr "" -#: ../../addon/morepokes/morepokes.php:30 -msgid "be dubious of" +#: ../../include/attach.php:1112 ../../include/attach.php:1128 +msgid "Path not available." msgstr "" -#: ../../addon/morepokes/morepokes.php:30 -msgid "was dubious of" +#: ../../include/attach.php:1176 ../../include/attach.php:1341 +msgid "Empty pathname" msgstr "" -#: ../../addon/morepokes/morepokes.php:31 -msgid "eat" +#: ../../include/attach.php:1202 +msgid "duplicate filename or path" msgstr "" -#: ../../addon/morepokes/morepokes.php:31 -msgid "ate" +#: ../../include/attach.php:1230 +msgid "Path not found." msgstr "" -#: ../../addon/morepokes/morepokes.php:32 -msgid "giggle and fawn at" +#: ../../include/attach.php:1297 +msgid "mkdir failed." msgstr "" -#: ../../addon/morepokes/morepokes.php:32 -msgid "giggled and fawned at" +#: ../../include/attach.php:1301 +msgid "database storage failed." msgstr "" -#: ../../addon/morepokes/morepokes.php:33 -msgid "doubt" +#: ../../include/attach.php:1347 +msgid "Empty path" msgstr "" -#: ../../addon/morepokes/morepokes.php:33 -msgid "doubted" +#: ../../include/attach.php:2122 +#, php-format +msgid "%s shared an %s with you" msgstr "" -#: ../../addon/morepokes/morepokes.php:34 -msgid "glare" +#: ../../include/attach.php:2122 +#, php-format +msgid "%s shared a %s with you" msgstr "" -#: ../../addon/morepokes/morepokes.php:34 -msgid "glared at" +#: ../../include/attach.php:2122 +msgid "image" msgstr "" -#: ../../addon/morepokes/morepokes.php:35 -msgid "fuck" +#: ../../include/attach.php:2122 ../../addon/redfiles/redfilehelper.php:64 +msgid "file" msgstr "" -#: ../../addon/morepokes/morepokes.php:35 -msgid "fucked" +#: ../../include/auth.php:195 +msgid "Delegation session ended." msgstr "" -#: ../../addon/morepokes/morepokes.php:36 -msgid "bonk" +#: ../../include/auth.php:199 +msgid "Logged out." msgstr "" -#: ../../addon/morepokes/morepokes.php:36 -msgid "bonked" +#: ../../include/auth.php:298 +msgid "Email validation is incomplete. Please check your email." msgstr "" -#: ../../addon/morepokes/morepokes.php:37 -msgid "declare undying love for" +#: ../../include/auth.php:314 +msgid "Failed authentication" msgstr "" -#: ../../addon/morepokes/morepokes.php:37 -msgid "declared undying love for" +#: ../../include/auth.php:324 ../../addon/openid/Mod_Openid.php:189 +msgid "Login failed." msgstr "" -#: ../../addon/rendezvous/rendezvous.php:57 -msgid "Errors encountered deleting database table " +#: ../../include/zid.php:410 +#, php-format +msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "" -#: ../../addon/rendezvous/rendezvous.php:95 ../../addon/twitter/twitter.php:502 -msgid "Submit Settings" +#: ../../include/activities.php:42 +msgid " and " msgstr "" -#: ../../addon/rendezvous/rendezvous.php:96 -msgid "Drop tables when uninstalling?" +#: ../../include/activities.php:50 +msgid "public profile" msgstr "" -#: ../../addon/rendezvous/rendezvous.php:96 -msgid "" -"If checked, the Rendezvous database tables will be deleted when the plugin " -"is uninstalled." +#: ../../include/activities.php:59 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" msgstr "" -#: ../../addon/rendezvous/rendezvous.php:97 -msgid "Mapbox Access Token" +#: ../../include/activities.php:60 +#, php-format +msgid "Visit %1$s's %2$s" msgstr "" -#: ../../addon/rendezvous/rendezvous.php:97 -msgid "" -"If you enter a Mapbox access token, it will be used to retrieve map tiles " -"from Mapbox instead of the default OpenStreetMap tile server." +#: ../../include/activities.php:63 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." msgstr "" -#: ../../addon/rendezvous/rendezvous.php:162 -msgid "Rendezvous" +#: ../../include/acl_selectors.php:33 +#: ../../Zotlabs/Lib/PermissionDescription.php:34 +msgid "Visible to your default audience" msgstr "" -#: ../../addon/rendezvous/rendezvous.php:167 -msgid "" -"This identity has been deleted by another member due to inactivity. Please " -"press the \"New identity\" button or refresh the page to register a new " -"identity. You may use the same name." +#: ../../include/acl_selectors.php:100 +msgid "Profile-Based Privacy Groups" msgstr "" -#: ../../addon/rendezvous/rendezvous.php:168 -msgid "Welcome to Rendezvous!" +#: ../../include/acl_selectors.php:119 +msgid "Private Forum" msgstr "" -#: ../../addon/rendezvous/rendezvous.php:169 -msgid "" -"Enter your name to join this rendezvous. To begin sharing your location with " -"the other members, tap the GPS control. When your location is discovered, a " -"red dot will appear and others will be able to see you on the map." +#: ../../include/acl_selectors.php:125 +#: ../../Zotlabs/Widget/Notifications.php:131 +#: ../../Zotlabs/Widget/Notifications.php:132 +#: ../../Zotlabs/Widget/Activity_filter.php:130 +#: ../../Zotlabs/Widget/Forums.php:77 +msgid "Forums" msgstr "" -#: ../../addon/rendezvous/rendezvous.php:171 -msgid "Let's meet here" +#: ../../include/acl_selectors.php:136 +#: ../../Zotlabs/Lib/PermissionDescription.php:107 +#: ../../Zotlabs/Module/Settings/Privacy.php:56 +msgid "Only me" msgstr "" -#: ../../addon/rendezvous/rendezvous.php:173 -#: ../../addon/cart/submodules/hzservices.php:657 -#: ../../addon/cart/submodules/manualcat.php:260 -#: ../../Zotlabs/Module/Cdav.php:1013 ../../Zotlabs/Module/Appman.php:211 -#: ../../Zotlabs/Module/Rbmark.php:100 -msgid "Description" +#: ../../include/acl_selectors.php:143 +msgid "Share with" msgstr "" -#: ../../addon/rendezvous/rendezvous.php:174 -msgid "New marker" +#: ../../include/acl_selectors.php:144 +msgid "Custom selection" msgstr "" -#: ../../addon/rendezvous/rendezvous.php:175 -msgid "Edit marker" +#: ../../include/acl_selectors.php:146 +msgid "" +"Select \"Allow\" to allow viewing. \"Don't allow\" lets you override and " +"limit the scope of \"Allow\"." msgstr "" -#: ../../addon/rendezvous/rendezvous.php:176 -msgid "New identity" +#: ../../include/acl_selectors.php:147 ../../Zotlabs/Module/Authorize.php:32 +msgid "Allow" msgstr "" -#: ../../addon/rendezvous/rendezvous.php:177 -msgid "Delete marker" +#: ../../include/acl_selectors.php:148 +msgid "Don't allow" msgstr "" -#: ../../addon/rendezvous/rendezvous.php:178 -msgid "Delete member" +#: ../../include/acl_selectors.php:154 +#: ../../addon/flashcards/Mod_Flashcards.php:261 +#: ../../Zotlabs/Module/Chat.php:240 ../../Zotlabs/Module/Filestorage.php:195 +#: ../../Zotlabs/Module/Thing.php:321 ../../Zotlabs/Module/Thing.php:374 +#: ../../Zotlabs/Module/Photos.php:671 ../../Zotlabs/Module/Photos.php:1042 +msgid "Permissions" msgstr "" -#: ../../addon/rendezvous/rendezvous.php:179 -msgid "Edit proximity alert" +#: ../../include/acl_selectors.php:156 +#: ../../addon/channelreputation/channelreputation.php:233 +#: ../../Zotlabs/Lib/ThreadItem.php:496 ../../Zotlabs/Module/Photos.php:1265 +#: ../../Zotlabs/Widget/Pinned.php:161 ../../Zotlabs/Storage/Browser.php:414 +msgid "Close" msgstr "" -#: ../../addon/rendezvous/rendezvous.php:180 +#: ../../include/acl_selectors.php:181 +#, php-format msgid "" -"A proximity alert will be issued when this member is within a certain radius " -"of you.

Enter a radius in meters (0 to disable):" -msgstr "" - -#: ../../addon/rendezvous/rendezvous.php:180 -#: ../../addon/rendezvous/rendezvous.php:185 -msgid "distance" +"Post permissions %s cannot be changed %s after a post is shared.
These " +"permissions set who is allowed to view the post." msgstr "" -#: ../../addon/rendezvous/rendezvous.php:181 -msgid "Proximity alert distance (meters)" +#: ../../include/network.php:412 +msgid "url: " msgstr "" -#: ../../addon/rendezvous/rendezvous.php:182 -#: ../../addon/rendezvous/rendezvous.php:184 -msgid "" -"A proximity alert will be issued when you are within a certain radius of the " -"marker location.

Enter a radius in meters (0 to disable):" +#: ../../include/network.php:413 +msgid "error_code: " msgstr "" -#: ../../addon/rendezvous/rendezvous.php:183 -msgid "Marker proximity alert" +#: ../../include/network.php:414 +msgid "error_string: " msgstr "" -#: ../../addon/rendezvous/rendezvous.php:186 -msgid "Reminder note" +#: ../../include/network.php:415 +msgid "content-type: " msgstr "" -#: ../../addon/rendezvous/rendezvous.php:187 -msgid "" -"Enter a note to be displayed when you are within the specified proximity..." +#: ../../include/network.php:1765 ../../include/network.php:1766 +msgid "Friendica" msgstr "" -#: ../../addon/rendezvous/rendezvous.php:199 -msgid "Add new rendezvous" +#: ../../include/network.php:1767 +msgid "OStatus" msgstr "" -#: ../../addon/rendezvous/rendezvous.php:200 -msgid "" -"Create a new rendezvous and share the access link with those you wish to " -"invite to the group. Those who open the link become members of the " -"rendezvous. They can view other member locations, add markers to the map, or " -"share their own locations with the group." +#: ../../include/network.php:1768 +msgid "GNU-Social" msgstr "" -#: ../../addon/rendezvous/rendezvous.php:232 -msgid "You have no rendezvous. Press the button above to create a rendezvous!" +#: ../../include/network.php:1769 +msgid "RSS/Atom" msgstr "" -#: ../../addon/rendezvous/rendezvous.php:401 ../../Zotlabs/Module/Setup.php:730 -msgid "Errors encountered creating database tables." +#: ../../include/network.php:1770 ../../addon/pubcrawl/as.php:1332 +#: ../../addon/pubcrawl/as.php:2002 ../../Zotlabs/Lib/Activity.php:3605 +msgid "ActivityPub" msgstr "" -#: ../../addon/startpage/Mod_Startpage.php:60 -msgid "Page to load after login" +#: ../../include/network.php:1771 ../../addon/redred/Mod_Redred.php:69 +#: ../../addon/openid/MysqlProvider.php:56 +#: ../../addon/openid/MysqlProvider.php:57 ../../addon/rtof/Mod_Rtof.php:55 +#: ../../Zotlabs/Module/Connedit.php:736 +#: ../../Zotlabs/Module/Admin/Accounts.php:316 +#: ../../Zotlabs/Module/Admin/Accounts.php:330 +#: ../../Zotlabs/Module/Cdav.php:1378 +msgid "Email" msgstr "" -#: ../../addon/startpage/Mod_Startpage.php:60 -msgid "" -"Examples: "apps", "network?f=&gid=37" (privacy " -"collection), "channel" or "notifications/system" (leave " -"blank for default network page (grid)." +#: ../../include/network.php:1772 +msgid "Diaspora" msgstr "" -#: ../../addon/startpage/Mod_Startpage.php:68 -msgid "Startpage" +#: ../../include/network.php:1773 +msgid "Facebook" msgstr "" -#: ../../addon/upgrade_info/upgrade_info.php:48 -msgid "Your channel has been upgraded to $Projectname version" +#: ../../include/network.php:1774 +msgid "Zot" msgstr "" -#: ../../addon/upgrade_info/upgrade_info.php:50 -msgid "Please have a look at the" +#: ../../include/network.php:1775 +msgid "LinkedIn" msgstr "" -#: ../../addon/upgrade_info/upgrade_info.php:52 -msgid "git history" +#: ../../include/network.php:1776 +msgid "XMPP/IM" msgstr "" -#: ../../addon/upgrade_info/upgrade_info.php:54 -msgid "change log" +#: ../../include/network.php:1777 +msgid "MySpace" msgstr "" -#: ../../addon/upgrade_info/upgrade_info.php:55 -msgid "for further info." +#: ../../include/conversation.php:138 ../../include/text.php:2342 +#: ../../addon/pubcrawl/as.php:1958 ../../addon/diaspora/Receiver.php:1647 +#: ../../addon/redphotos/redphotohelper.php:71 +#: ../../Zotlabs/Lib/Activity.php:3563 ../../Zotlabs/Module/Like.php:445 +#: ../../Zotlabs/Module/Subthread.php:115 ../../Zotlabs/Module/Tagger.php:71 +msgid "photo" msgstr "" -#: ../../addon/upgrade_info/upgrade_info.php:60 -msgid "Upgrade Info" +#: ../../include/conversation.php:145 ../../Zotlabs/Module/Like.php:184 +msgid "channel" msgstr "" -#: ../../addon/upgrade_info/upgrade_info.php:64 -msgid "Do not show this again" +#: ../../include/conversation.php:170 ../../include/text.php:2350 +#: ../../Zotlabs/Module/Tagger.php:81 +msgid "comment" msgstr "" -#: ../../addon/twitter/Mod_Twitter.php:65 -msgid "Twitter settings updated." +#: ../../include/conversation.php:184 ../../addon/pubcrawl/as.php:1993 +#: ../../addon/diaspora/Receiver.php:1591 ../../Zotlabs/Lib/Activity.php:3596 +#: ../../Zotlabs/Module/Like.php:477 +#, php-format +msgid "%1$s likes %2$s's %3$s" msgstr "" -#: ../../addon/twitter/Mod_Twitter.php:101 -msgid "" -"No consumer key pair for Twitter found. Please contact your site " -"administrator." +#: ../../include/conversation.php:187 ../../addon/pubcrawl/as.php:1995 +#: ../../Zotlabs/Lib/Activity.php:3598 ../../Zotlabs/Module/Like.php:479 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" msgstr "" -#: ../../addon/twitter/Mod_Twitter.php:123 -msgid "" -"At this Hubzilla instance the Twitter plugin was enabled but you have not " -"yet connected your account to your Twitter account. To do so click the " -"button below to get a PIN from Twitter which you have to copy into the input " -"box below and submit the form. Only your public posts will " -"be posted to Twitter." +#: ../../include/conversation.php:193 +#, php-format +msgid "likes %1$s's %2$s" msgstr "" -#: ../../addon/twitter/Mod_Twitter.php:125 -msgid "Log in with Twitter" +#: ../../include/conversation.php:196 +#, php-format +msgid "doesn't like %1$s's %2$s" msgstr "" -#: ../../addon/twitter/Mod_Twitter.php:128 -msgid "Copy the PIN from Twitter here" +#: ../../include/conversation.php:236 ../../include/conversation.php:238 +#, php-format +msgid "%1$s is now connected with %2$s" msgstr "" -#: ../../addon/twitter/Mod_Twitter.php:150 -msgid "" -"Note: Due your privacy settings (Hide your profile " -"details from unknown viewers?) the link potentially included in public " -"postings relayed to Twitter will lead the visitor to a blank page informing " -"the visitor that the access to your profile has been restricted." +#: ../../include/conversation.php:273 +#, php-format +msgid "%1$s poked %2$s" msgstr "" -#: ../../addon/twitter/Mod_Twitter.php:155 -msgid "Twitter post length" +#: ../../include/conversation.php:277 ../../include/text.php:1260 +msgid "poked" msgstr "" -#: ../../addon/twitter/Mod_Twitter.php:155 -msgid "Maximum tweet length" +#: ../../include/conversation.php:296 ../../Zotlabs/Module/Mood.php:76 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" msgstr "" -#: ../../addon/twitter/Mod_Twitter.php:160 -msgid "Send public postings to Twitter by default" +#: ../../include/conversation.php:526 ../../Zotlabs/Lib/ThreadItem.php:501 +msgid "This is an unsaved preview" msgstr "" -#: ../../addon/twitter/Mod_Twitter.php:160 -msgid "" -"If enabled your public postings will be posted to the associated Twitter " -"account by default" +#: ../../include/conversation.php:658 ../../Zotlabs/Module/Photos.php:1108 +msgctxt "title" +msgid "Likes" msgstr "" -#: ../../addon/twitter/Mod_Twitter.php:179 -msgid "Twitter Crosspost Connector" +#: ../../include/conversation.php:659 ../../Zotlabs/Module/Photos.php:1108 +msgctxt "title" +msgid "Dislikes" msgstr "" -#: ../../addon/twitter/twitter.php:109 -msgid "Post to Twitter" +#: ../../include/conversation.php:660 ../../Zotlabs/Module/Photos.php:1109 +#: ../../Zotlabs/Widget/Pinned.php:80 +msgctxt "title" +msgid "Agree" msgstr "" -#: ../../addon/pumpio/pumpio.php:152 -msgid "You are now authenticated to pumpio." +#: ../../include/conversation.php:661 ../../Zotlabs/Module/Photos.php:1109 +#: ../../Zotlabs/Widget/Pinned.php:81 +msgctxt "title" +msgid "Disagree" msgstr "" -#: ../../addon/pumpio/pumpio.php:153 -msgid "return to the featured settings page" +#: ../../include/conversation.php:662 ../../Zotlabs/Module/Photos.php:1109 +#: ../../Zotlabs/Widget/Pinned.php:82 +msgctxt "title" +msgid "Abstain" msgstr "" -#: ../../addon/pumpio/pumpio.php:168 -msgid "Post to Pump.io" +#: ../../include/conversation.php:663 ../../Zotlabs/Module/Photos.php:1110 +#: ../../Zotlabs/Widget/Pinned.php:69 +msgctxt "title" +msgid "Attending" msgstr "" -#: ../../addon/pumpio/Mod_Pumpio.php:40 -msgid "Pump.io Settings saved." +#: ../../include/conversation.php:664 ../../Zotlabs/Module/Photos.php:1110 +#: ../../Zotlabs/Widget/Pinned.php:70 +msgctxt "title" +msgid "Not attending" msgstr "" -#: ../../addon/pumpio/Mod_Pumpio.php:71 -msgid "Pump.io servername" +#: ../../include/conversation.php:665 ../../Zotlabs/Module/Photos.php:1110 +#: ../../Zotlabs/Widget/Pinned.php:71 +msgctxt "title" +msgid "Might attend" msgstr "" -#: ../../addon/pumpio/Mod_Pumpio.php:71 -msgid "Without \"http://\" or \"https://\"" +#: ../../include/conversation.php:735 +msgid "Select" msgstr "" -#: ../../addon/pumpio/Mod_Pumpio.php:75 -msgid "Pump.io username" -msgstr "" - -#: ../../addon/pumpio/Mod_Pumpio.php:75 -msgid "Without the servername" +#: ../../include/conversation.php:736 ../../include/conversation.php:799 +#: ../../addon/articles/Mod_Article_edit.php:128 +#: ../../addon/cards/Mod_Card_edit.php:130 ../../Zotlabs/Lib/Apps.php:602 +#: ../../Zotlabs/Lib/ThreadItem.php:179 ../../Zotlabs/Module/Oauth2.php:193 +#: ../../Zotlabs/Module/Blocks.php:160 ../../Zotlabs/Module/Editlayout.php:138 +#: ../../Zotlabs/Module/Oauth.php:172 ../../Zotlabs/Module/Permcats.php:261 +#: ../../Zotlabs/Module/Tokens.php:295 ../../Zotlabs/Module/Connedit.php:540 +#: ../../Zotlabs/Module/Connedit.php:749 +#: ../../Zotlabs/Module/Admin/Channels.php:149 +#: ../../Zotlabs/Module/Admin/Accounts.php:320 +#: ../../Zotlabs/Module/Admin/Profs.php:176 +#: ../../Zotlabs/Module/Contactedit.php:667 ../../Zotlabs/Module/Cdav.php:1057 +#: ../../Zotlabs/Module/Cdav.php:1391 ../../Zotlabs/Module/Webpages.php:252 +#: ../../Zotlabs/Module/Thing.php:269 ../../Zotlabs/Module/Editblock.php:139 +#: ../../Zotlabs/Module/Group.php:251 ../../Zotlabs/Module/Photos.php:1171 +#: ../../Zotlabs/Module/Editwebpage.php:167 +#: ../../Zotlabs/Storage/Browser.php:387 +msgid "Delete" msgstr "" -#: ../../addon/pumpio/Mod_Pumpio.php:86 -msgid "You are not authenticated to pumpio" +#: ../../include/conversation.php:742 ../../Zotlabs/Lib/ThreadItem.php:263 +msgid "Toggle Star Status" msgstr "" -#: ../../addon/pumpio/Mod_Pumpio.php:88 -msgid "(Re-)Authenticate your pump.io connection" +#: ../../include/conversation.php:748 +msgid "Private Message" msgstr "" -#: ../../addon/pumpio/Mod_Pumpio.php:92 -msgid "Post to pump.io by default" +#: ../../include/conversation.php:757 ../../Zotlabs/Lib/ThreadItem.php:273 +#: ../../Zotlabs/Widget/Pinned.php:91 +msgid "Message signature validated" msgstr "" -#: ../../addon/pumpio/Mod_Pumpio.php:96 -msgid "Should posts be public" +#: ../../include/conversation.php:758 ../../Zotlabs/Lib/ThreadItem.php:274 +#: ../../Zotlabs/Widget/Pinned.php:92 +msgid "Message signature incorrect" msgstr "" -#: ../../addon/pumpio/Mod_Pumpio.php:100 -msgid "Mirror all public posts" +#: ../../include/conversation.php:798 ../../Zotlabs/Module/Connections.php:352 +#: ../../Zotlabs/Module/Connections.php:403 +#: ../../Zotlabs/Module/Admin/Accounts.php:318 +msgid "Approve" msgstr "" -#: ../../addon/pumpio/Mod_Pumpio.php:110 -msgid "Pump.io Crosspost Connector" +#: ../../include/conversation.php:804 +#, php-format +msgid "View %s's profile @ %s" msgstr "" -#: ../../addon/gravatar/gravatar.php:123 -msgid "generic profile image" +#: ../../include/conversation.php:825 +msgid "Categories:" msgstr "" -#: ../../addon/gravatar/gravatar.php:124 -msgid "random geometric pattern" +#: ../../include/conversation.php:826 +msgid "Filed under:" msgstr "" -#: ../../addon/gravatar/gravatar.php:125 -msgid "monster face" +#: ../../include/conversation.php:832 ../../Zotlabs/Lib/ThreadItem.php:430 +#: ../../Zotlabs/Widget/Pinned.php:135 +#, php-format +msgid "from %s" msgstr "" -#: ../../addon/gravatar/gravatar.php:126 -msgid "computer generated face" +#: ../../include/conversation.php:835 ../../Zotlabs/Lib/ThreadItem.php:433 +#: ../../Zotlabs/Widget/Pinned.php:138 +#, php-format +msgid "last edited: %s" msgstr "" -#: ../../addon/gravatar/gravatar.php:127 -msgid "retro arcade style face" +#: ../../include/conversation.php:836 ../../Zotlabs/Lib/ThreadItem.php:434 +#: ../../Zotlabs/Widget/Pinned.php:139 +#, php-format +msgid "Expires: %s" msgstr "" -#: ../../addon/gravatar/gravatar.php:128 -msgid "Hub default profile photo" +#: ../../include/conversation.php:851 ../../addon/articles/articles.php:83 +#: ../../addon/cards/cards.php:82 +msgid "View in context" msgstr "" -#: ../../addon/gravatar/gravatar.php:143 -msgid "Information" +#: ../../include/conversation.php:853 ../../Zotlabs/Lib/ThreadItem.php:502 +#: ../../Zotlabs/Module/Photos.php:1074 +msgid "Please wait" msgstr "" -#: ../../addon/gravatar/gravatar.php:143 -msgid "" -"Libravatar addon is installed, too. Please disable Libravatar addon or this " -"Gravatar addon.
The Libravatar addon will fall back to Gravatar if " -"nothing was found at Libravatar." +#: ../../include/conversation.php:954 +msgid "remove" msgstr "" -#: ../../addon/gravatar/gravatar.php:150 ../../addon/msgfooter/msgfooter.php:46 -#: ../../addon/xmpp/xmpp.php:43 -msgid "Save Settings" +#: ../../include/conversation.php:958 +msgid "Loading..." msgstr "" -#: ../../addon/gravatar/gravatar.php:151 -msgid "Default avatar image" +#: ../../include/conversation.php:959 ../../Zotlabs/Lib/ThreadItem.php:290 +msgid "Conversation Features" msgstr "" -#: ../../addon/gravatar/gravatar.php:151 -msgid "Select default avatar image if none was found at Gravatar. See README" +#: ../../include/conversation.php:960 +msgid "Delete Selected Items" msgstr "" -#: ../../addon/gravatar/gravatar.php:152 -msgid "Rating of images" +#: ../../include/conversation.php:996 +msgid "View Source" msgstr "" -#: ../../addon/gravatar/gravatar.php:152 -msgid "Select the appropriate avatar rating for your site. See README" +#: ../../include/conversation.php:1006 +msgid "Follow Thread" msgstr "" -#: ../../addon/gravatar/gravatar.php:165 -msgid "Gravatar settings updated." +#: ../../include/conversation.php:1015 +msgid "Unfollow Thread" msgstr "" -#: ../../addon/msgfooter/msgfooter.php:47 -msgid "text to include in all outgoing posts from this site" +#: ../../include/conversation.php:1107 ../../Zotlabs/Module/Connedit.php:501 +msgid "Recent Activity" msgstr "" -#: ../../addon/sendzid/Mod_Sendzid.php:21 -msgid "Send your identity to all websites" +#: ../../include/conversation.php:1131 +msgid "Edit Connection" msgstr "" -#: ../../addon/sendzid/Mod_Sendzid.php:29 -msgid "Send ZID" +#: ../../include/conversation.php:1143 ../../Zotlabs/Lib/Apps.php:356 +#: ../../Zotlabs/Module/Poke.php:181 ../../Zotlabs/Module/Poke.php:185 +msgid "Poke" msgstr "" -#: ../../addon/cart/widgets/catalogitem.php:57 -#: ../../addon/cart/submodules/hzservices.php:660 -#: ../../addon/cart/submodules/manualcat.php:263 -msgid "Price" +#: ../../include/conversation.php:1267 +#, php-format +msgid "%s likes this." msgstr "" -#: ../../addon/cart/manual_payments.php:7 -msgid "Error: order mismatch. Please try again." +#: ../../include/conversation.php:1267 +#, php-format +msgid "%s doesn't like this." msgstr "" -#: ../../addon/cart/manual_payments.php:61 -msgid "Manual payments are not enabled." -msgstr "" +#: ../../include/conversation.php:1271 +#, php-format +msgid "%2$d people like this." +msgid_plural "%2$d people like this." +msgstr[0] "" +msgstr[1] "" -#: ../../addon/cart/manual_payments.php:68 -#: ../../addon/cart/submodules/paypalbutton.php:392 -#: ../../addon/cart/submodules/paypalbuttonV2.php:409 -#: ../../addon/cart/cart.php:1580 -msgid "Order not found." -msgstr "" +#: ../../include/conversation.php:1273 +#, php-format +msgid "%2$d people don't like this." +msgid_plural "%2$d people don't like this." +msgstr[0] "" +msgstr[1] "" -#: ../../addon/cart/manual_payments.php:77 -msgid "Finished" +#: ../../include/conversation.php:1279 +msgid "and" msgstr "" -#: ../../addon/cart/submodules/subscriptions.php:151 -msgid "Enable Subscription Management Module" -msgstr "" +#: ../../include/conversation.php:1282 +#, php-format +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] "" +msgstr[1] "" -#: ../../addon/cart/submodules/subscriptions.php:223 -msgid "" -"Cannot include subscription items with different terms in the same order." +#: ../../include/conversation.php:1283 +#, php-format +msgid "%s like this." msgstr "" -#: ../../addon/cart/submodules/subscriptions.php:372 -msgid "Select Subscription to Edit" +#: ../../include/conversation.php:1283 +#, php-format +msgid "%s don't like this." msgstr "" -#: ../../addon/cart/submodules/subscriptions.php:380 -msgid "Edit Subscriptions" +#: ../../include/conversation.php:1334 ../../addon/hsse/hsse.php:82 +msgid "Set your location" msgstr "" -#: ../../addon/cart/submodules/subscriptions.php:414 -msgid "Subscription SKU" +#: ../../include/conversation.php:1335 ../../addon/hsse/hsse.php:83 +msgid "Clear browser location" msgstr "" -#: ../../addon/cart/submodules/subscriptions.php:419 -msgid "Catalog Description" +#: ../../include/conversation.php:1347 ../../addon/hsse/hsse.php:95 +#: ../../addon/articles/Mod_Article_edit.php:99 +#: ../../addon/cards/Mod_Card_edit.php:101 ../../Zotlabs/Module/Chat.php:219 +#: ../../Zotlabs/Module/Editblock.php:116 +#: ../../Zotlabs/Module/Editwebpage.php:143 +msgid "Insert web link" msgstr "" -#: ../../addon/cart/submodules/subscriptions.php:423 -msgid "Subscription available for purchase." +#: ../../include/conversation.php:1351 ../../addon/hsse/hsse.php:99 +msgid "Embed (existing) photo from your photo albums" msgstr "" -#: ../../addon/cart/submodules/subscriptions.php:428 -msgid "Maximum active subscriptions to this item per account." +#: ../../include/conversation.php:1384 ../../addon/hsse/hsse.php:134 +#: ../../Zotlabs/Module/Chat.php:217 +msgid "Please enter a link URL:" msgstr "" -#: ../../addon/cart/submodules/subscriptions.php:431 -msgid "Subscription price." +#: ../../include/conversation.php:1385 ../../addon/hsse/hsse.php:135 +msgid "Tag term:" msgstr "" -#: ../../addon/cart/submodules/subscriptions.php:435 -msgid "Quantity" +#: ../../include/conversation.php:1386 ../../addon/hsse/hsse.php:136 +msgid "Where are you right now?" msgstr "" -#: ../../addon/cart/submodules/subscriptions.php:439 -msgid "Term" +#: ../../include/conversation.php:1389 ../../addon/hsse/hsse.php:139 +#: ../../addon/wiki/Mod_Wiki.php:400 ../../Zotlabs/Module/Cover_photo.php:430 +#: ../../Zotlabs/Module/Profile_photo.php:555 +msgid "Choose images to embed" msgstr "" -#: ../../addon/cart/submodules/hzservices.php:65 -msgid "Enable Hubzilla Services Module" +#: ../../include/conversation.php:1390 ../../addon/hsse/hsse.php:140 +#: ../../addon/wiki/Mod_Wiki.php:401 ../../Zotlabs/Module/Cover_photo.php:431 +#: ../../Zotlabs/Module/Profile_photo.php:556 +msgid "Choose an album" msgstr "" -#: ../../addon/cart/submodules/hzservices.php:164 -#: ../../addon/cart/submodules/manualcat.php:172 -msgid "New Sku" +#: ../../include/conversation.php:1391 ../../addon/hsse/hsse.php:141 +msgid "Choose a different album..." msgstr "" -#: ../../addon/cart/submodules/hzservices.php:199 -#: ../../addon/cart/submodules/manualcat.php:208 -msgid "Cannot save edits to locked item." +#: ../../include/conversation.php:1392 ../../addon/hsse/hsse.php:142 +#: ../../addon/wiki/Mod_Wiki.php:403 ../../Zotlabs/Module/Cover_photo.php:433 +#: ../../Zotlabs/Module/Profile_photo.php:558 +msgid "Error getting album list" msgstr "" -#: ../../addon/cart/submodules/hzservices.php:248 -#: ../../addon/cart/submodules/hzservices.php:335 -msgid "SKU not found." +#: ../../include/conversation.php:1393 ../../addon/hsse/hsse.php:143 +#: ../../addon/wiki/Mod_Wiki.php:404 ../../Zotlabs/Module/Cover_photo.php:434 +#: ../../Zotlabs/Module/Profile_photo.php:559 +msgid "Error getting photo link" msgstr "" -#: ../../addon/cart/submodules/hzservices.php:301 -#: ../../addon/cart/submodules/hzservices.php:305 -msgid "Invalid Activation Directive." +#: ../../include/conversation.php:1394 ../../addon/hsse/hsse.php:144 +#: ../../addon/wiki/Mod_Wiki.php:405 ../../Zotlabs/Module/Cover_photo.php:435 +#: ../../Zotlabs/Module/Profile_photo.php:560 +msgid "Error getting album" msgstr "" -#: ../../addon/cart/submodules/hzservices.php:376 -#: ../../addon/cart/submodules/hzservices.php:380 -msgid "Invalid Deactivation Directive." +#: ../../include/conversation.php:1395 ../../addon/hsse/hsse.php:145 +msgid "Comments enabled" msgstr "" -#: ../../addon/cart/submodules/hzservices.php:566 -msgid "Add to this privacy group" +#: ../../include/conversation.php:1396 ../../addon/hsse/hsse.php:146 +msgid "Comments disabled" msgstr "" -#: ../../addon/cart/submodules/hzservices.php:582 -msgid "Set user service class" +#: ../../include/conversation.php:1413 ../../addon/hsse/hsse.php:153 +#: ../../Zotlabs/Lib/ThreadItem.php:838 ../../Zotlabs/Module/Webpages.php:257 +#: ../../Zotlabs/Module/Photos.php:1094 +msgid "Preview" msgstr "" -#: ../../addon/cart/submodules/hzservices.php:609 -msgid "You must be using a local account to purchase this service." +#: ../../include/conversation.php:1446 ../../addon/hsse/hsse.php:186 +#: ../../addon/wiki/Mod_Wiki.php:304 ../../Zotlabs/Module/Layouts.php:192 +#: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Webpages.php:251 +#: ../../Zotlabs/Module/Photos.php:1073 ../../Zotlabs/Widget/Cdav.php:142 +msgid "Share" msgstr "" -#: ../../addon/cart/submodules/hzservices.php:649 -#: ../../addon/cart/submodules/manualcat.php:252 -msgid "Changes Locked" +#: ../../include/conversation.php:1455 ../../addon/hsse/hsse.php:195 +msgid "Page link name" msgstr "" -#: ../../addon/cart/submodules/hzservices.php:653 -#: ../../addon/cart/submodules/manualcat.php:256 -msgid "Item available for purchase." +#: ../../include/conversation.php:1458 ../../addon/hsse/hsse.php:198 +msgid "Post as" msgstr "" -#: ../../addon/cart/submodules/hzservices.php:663 -#: ../../addon/cart/submodules/manualcat.php:266 -msgid "Photo URL" +#: ../../include/conversation.php:1460 ../../addon/hsse/hsse.php:200 +#: ../../Zotlabs/Lib/ThreadItem.php:829 +msgid "Bold" msgstr "" -#: ../../addon/cart/submodules/hzservices.php:667 -msgid "Add buyer to privacy group" +#: ../../include/conversation.php:1461 ../../addon/hsse/hsse.php:201 +#: ../../Zotlabs/Lib/ThreadItem.php:830 +msgid "Italic" msgstr "" -#: ../../addon/cart/submodules/hzservices.php:672 -msgid "Add buyer as connection" +#: ../../include/conversation.php:1462 ../../addon/hsse/hsse.php:202 +#: ../../Zotlabs/Lib/ThreadItem.php:831 +msgid "Underline" msgstr "" -#: ../../addon/cart/submodules/hzservices.php:680 -#: ../../addon/cart/submodules/hzservices.php:722 -msgid "Set Service Class" +#: ../../include/conversation.php:1463 ../../addon/hsse/hsse.php:203 +#: ../../Zotlabs/Lib/ThreadItem.php:832 +msgid "Quote" msgstr "" -#: ../../addon/cart/submodules/orderoptions.php:70 -msgid "Enable Order/Item Options" +#: ../../include/conversation.php:1464 ../../addon/hsse/hsse.php:204 +#: ../../Zotlabs/Lib/ThreadItem.php:833 +msgid "Code" msgstr "" -#: ../../addon/cart/submodules/orderoptions.php:333 -#: ../../addon/cart/submodules/orderoptions.php:357 -#: ../../addon/cart/submodules/orderoptions.php:433 -#: ../../addon/cart/submodules/orderoptions.php:457 -msgid "Label" +#: ../../include/conversation.php:1465 ../../addon/hsse/hsse.php:205 +#: ../../Zotlabs/Lib/ThreadItem.php:835 +msgid "Attach/Upload file" msgstr "" -#: ../../addon/cart/submodules/orderoptions.php:334 -#: ../../addon/cart/submodules/orderoptions.php:358 -#: ../../addon/cart/submodules/orderoptions.php:434 -#: ../../addon/cart/submodules/orderoptions.php:458 -#: ../../include/js_strings.php:124 ../../include/datetime.php:211 -#: ../../Zotlabs/Module/Register.php:498 ../../Zotlabs/Module/Appman.php:209 -#: ../../Zotlabs/Module/Appman.php:210 ../../Zotlabs/Module/Profiles.php:762 -#: ../../Zotlabs/Module/Profiles.php:766 -msgid "Required" +#: ../../include/conversation.php:1468 ../../addon/hsse/hsse.php:208 +#: ../../addon/wiki/Mod_Wiki.php:397 +msgid "Embed an image from your albums" msgstr "" -#: ../../addon/cart/submodules/orderoptions.php:336 -#: ../../addon/cart/submodules/orderoptions.php:360 -#: ../../addon/cart/submodules/orderoptions.php:436 -#: ../../addon/cart/submodules/orderoptions.php:460 -msgid "Instructions" +#: ../../include/conversation.php:1469 ../../include/conversation.php:1524 +#: ../../addon/hsse/hsse.php:209 ../../addon/hsse/hsse.php:258 +#: ../../addon/articles/Mod_Article_edit.php:130 +#: ../../addon/cards/Mod_Card_edit.php:132 ../../addon/wiki/Mod_Wiki.php:365 +#: ../../addon/wiki/Mod_Wiki.php:398 ../../Zotlabs/Module/Cover_photo.php:428 +#: ../../Zotlabs/Module/Profile_photo.php:553 +#: ../../Zotlabs/Module/Oauth2.php:115 ../../Zotlabs/Module/Oauth2.php:143 +#: ../../Zotlabs/Module/Editlayout.php:140 ../../Zotlabs/Module/Oauth.php:110 +#: ../../Zotlabs/Module/Oauth.php:136 ../../Zotlabs/Module/Connedit.php:750 +#: ../../Zotlabs/Module/Admin/Addons.php:430 ../../Zotlabs/Module/Cdav.php:1059 +#: ../../Zotlabs/Module/Cdav.php:1392 ../../Zotlabs/Module/Filer.php:56 +#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 +#: ../../Zotlabs/Module/Editblock.php:141 ../../Zotlabs/Module/Tagrm.php:15 +#: ../../Zotlabs/Module/Tagrm.php:138 ../../Zotlabs/Module/Editpost.php:114 +#: ../../Zotlabs/Module/Editwebpage.php:169 +#: ../../Zotlabs/Storage/Browser.php:386 +msgid "Cancel" msgstr "" -#: ../../addon/cart/submodules/paypalbutton.php:85 -msgid "Enable Paypal Button Module" +#: ../../include/conversation.php:1470 ../../include/conversation.php:1523 +#: ../../addon/hsse/hsse.php:210 ../../addon/hsse/hsse.php:257 +#: ../../addon/wiki/Mod_Wiki.php:399 ../../Zotlabs/Module/Cover_photo.php:429 +#: ../../Zotlabs/Module/Profile_photo.php:554 +msgid "OK" msgstr "" -#: ../../addon/cart/submodules/paypalbutton.php:93 -#: ../../addon/cart/submodules/paypalbuttonV2.php:94 -msgid "Use Production Key" +#: ../../include/conversation.php:1472 ../../addon/hsse/hsse.php:212 +msgid "Toggle voting" msgstr "" -#: ../../addon/cart/submodules/paypalbutton.php:100 -#: ../../addon/cart/submodules/paypalbuttonV2.php:101 -msgid "Paypal Sandbox Client Key" +#: ../../include/conversation.php:1473 +msgid "Toggle poll" msgstr "" -#: ../../addon/cart/submodules/paypalbutton.php:107 -#: ../../addon/cart/submodules/paypalbuttonV2.php:108 -msgid "Paypal Sandbox Secret Key" +#: ../../include/conversation.php:1474 +msgid "Option" msgstr "" -#: ../../addon/cart/submodules/paypalbutton.php:113 -#: ../../addon/cart/submodules/paypalbuttonV2.php:114 -msgid "Paypal Production Client Key" +#: ../../include/conversation.php:1475 +msgid "Add option" msgstr "" -#: ../../addon/cart/submodules/paypalbutton.php:120 -#: ../../addon/cart/submodules/paypalbuttonV2.php:121 -msgid "Paypal Production Secret Key" +#: ../../include/conversation.php:1476 +msgid "Minutes" msgstr "" -#: ../../addon/cart/submodules/paypalbutton.php:252 -#: ../../addon/cart/submodules/paypalbuttonV2.php:264 -msgid "Paypal button payments are not enabled." +#: ../../include/conversation.php:1476 +msgid "Hours" msgstr "" -#: ../../addon/cart/submodules/paypalbutton.php:270 -#: ../../addon/cart/submodules/paypalbuttonV2.php:282 -msgid "" -"Paypal button payments are not properly configured. Please choose another " -"payment option." +#: ../../include/conversation.php:1476 +msgid "Days" msgstr "" -#: ../../addon/cart/submodules/paypalbuttonV2.php:86 -msgid "Enable Paypal Button Module (API-v2)" +#: ../../include/conversation.php:1477 +msgid "Allow multiple answers" msgstr "" -#: ../../addon/cart/submodules/manualcat.php:61 -msgid "Enable Manual Cart Module" +#: ../../include/conversation.php:1479 ../../addon/hsse/hsse.php:215 +msgid "Disable comments" msgstr "" -#: ../../addon/cart/myshop.php:30 -msgid "Access Denied." +#: ../../include/conversation.php:1480 ../../addon/hsse/hsse.php:216 +msgid "Toggle comments" msgstr "" -#: ../../addon/cart/myshop.php:112 ../../addon/cart/cart.php:1446 -msgid "Order Not Found" +#: ../../include/conversation.php:1486 ../../addon/hsse/hsse.php:221 +#: ../../addon/articles/Mod_Article_edit.php:116 +#: ../../addon/cards/Mod_Card_edit.php:118 +#: ../../Zotlabs/Module/Editblock.php:129 ../../Zotlabs/Module/Photos.php:667 +#: ../../Zotlabs/Module/Photos.php:1039 +msgid "Title (optional)" msgstr "" -#: ../../addon/cart/myshop.php:189 ../../addon/cart/myshop.php:223 -#: ../../addon/cart/myshop.php:271 ../../addon/cart/myshop.php:329 -msgid "Invalid Item" +#: ../../include/conversation.php:1487 +msgid "Summary (optional)" msgstr "" -#: ../../addon/cart/Settings/Cart.php:58 -msgid "Enable Test Catalog" +#: ../../include/conversation.php:1490 ../../addon/hsse/hsse.php:224 +msgid "Categories (optional, comma-separated list)" msgstr "" -#: ../../addon/cart/Settings/Cart.php:70 -msgid "Enable Manual Payments" +#: ../../include/conversation.php:1491 ../../addon/hsse/hsse.php:225 +msgid "Permission settings" msgstr "" -#: ../../addon/cart/Settings/Cart.php:90 -msgid "Base Merchant Currency" +#: ../../include/conversation.php:1513 ../../addon/hsse/hsse.php:247 +msgid "Other networks and post services" msgstr "" -#: ../../addon/cart/Settings/Cart.php:129 ../../addon/cart/cart.php:1375 -msgid "Cart Settings" +#: ../../include/conversation.php:1516 ../../addon/hsse/hsse.php:250 +msgid "Set expiration date" msgstr "" -#: ../../addon/cart/cart.php:252 -msgid "DB Cleanup Failure" +#: ../../include/conversation.php:1519 ../../addon/hsse/hsse.php:253 +msgid "Set publish date" msgstr "" -#: ../../addon/cart/cart.php:674 -msgid "[cart] Item Added" +#: ../../include/conversation.php:1521 ../../addon/hsse/hsse.php:255 +#: ../../Zotlabs/Lib/ThreadItem.php:841 ../../Zotlabs/Module/Chat.php:218 +msgid "Encrypt text" msgstr "" -#: ../../addon/cart/cart.php:1063 -msgid "Order already checked out." -msgstr "" +#: ../../include/conversation.php:1765 ../../Zotlabs/Lib/ThreadItem.php:239 +#: ../../Zotlabs/Module/Photos.php:1133 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "" +msgstr[1] "" -#: ../../addon/cart/cart.php:1368 -msgid "Drop database tables when uninstalling." -msgstr "" +#: ../../include/conversation.php:1768 +msgctxt "noun" +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "" +msgstr[1] "" -#: ../../addon/cart/cart.php:1387 ../../addon/cart/cart.php:1390 -msgid "Shop" -msgstr "" +#: ../../include/conversation.php:1771 +msgctxt "noun" +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "" +msgstr[1] "" -#: ../../addon/cart/cart.php:1547 -msgid "You must be logged into the Grid to shop." -msgstr "" +#: ../../include/conversation.php:1774 +msgctxt "noun" +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "" +msgstr[1] "" -#: ../../addon/cart/cart.php:1594 -msgid "Access denied." +#: ../../include/conversation.php:1777 +msgctxt "noun" +msgid "Agree" +msgid_plural "Agrees" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1780 +msgctxt "noun" +msgid "Disagree" +msgid_plural "Disagrees" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1783 +msgctxt "noun" +msgid "Abstain" +msgid_plural "Abstains" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/bookmarks.php:34 +#, php-format +msgid "%1$s's bookmarks" msgstr "" -#: ../../addon/cart/cart.php:1646 ../../addon/cart/cart.php:1789 -msgid "No Order Found" +#: ../../include/text.php:547 +msgid "prev" msgstr "" -#: ../../addon/cart/cart.php:1655 -msgid "An unknown error has occurred Please start again." +#: ../../include/text.php:549 +msgid "first" msgstr "" -#: ../../addon/cart/cart.php:1798 -msgid "Requirements not met." +#: ../../include/text.php:578 +msgid "last" msgstr "" -#: ../../addon/cart/cart.php:1798 -msgid "Review your order and complete any needed requirements." +#: ../../include/text.php:581 +msgid "next" msgstr "" -#: ../../addon/cart/cart.php:1824 -msgid "Invalid Payment Type. Please start again." +#: ../../include/text.php:599 +msgid "older" msgstr "" -#: ../../addon/cart/cart.php:1831 -msgid "Order not found" +#: ../../include/text.php:601 +msgid "newer" msgstr "" -#: ../../addon/nofed/Mod_Nofed.php:21 -msgid "nofed Settings saved." +#: ../../include/text.php:1064 ../../Zotlabs/Module/Connections.php:300 +#: ../../Zotlabs/Module/Viewconnections.php:80 +msgid "Accepts" msgstr "" -#: ../../addon/nofed/Mod_Nofed.php:40 -msgid "Federate posts by default" +#: ../../include/text.php:1067 ../../Zotlabs/Module/Connections.php:303 +#: ../../Zotlabs/Module/Viewconnections.php:83 +msgid "Comments" msgstr "" -#: ../../addon/nofed/Mod_Nofed.php:48 -msgid "No Federation" +#: ../../include/text.php:1072 ../../Zotlabs/Module/Connections.php:308 +#: ../../Zotlabs/Module/Viewconnections.php:88 +msgid "Stream items" msgstr "" -#: ../../addon/nofed/nofed.php:47 -msgid "Federate" +#: ../../include/text.php:1077 ../../Zotlabs/Module/Connections.php:313 +#: ../../Zotlabs/Module/Viewconnections.php:93 +msgid "Wall posts" msgstr "" -#: ../../addon/smileybutton/Mod_Smileybutton.php:42 -msgid "Hide the button and show the smilies directly." +#: ../../include/text.php:1081 ../../Zotlabs/Module/Connections.php:317 +#: ../../Zotlabs/Module/Viewconnections.php:97 +msgid "Nothing" msgstr "" -#: ../../addon/smileybutton/Mod_Smileybutton.php:50 -msgid "Smileybutton Settings" +#: ../../include/text.php:1094 +#, php-format +msgid "View all %s connections" msgstr "" -#: ../../addon/redfiles/redfilehelper.php:64 ../../include/attach.php:2104 -msgid "file" +#: ../../include/text.php:1157 +#, php-format +msgid "Network: %s" msgstr "" -#: ../../addon/redfiles/redfiles.php:119 -msgid "Redmatrix File Storage Import" +#: ../../include/text.php:1169 ../../include/text.php:1181 +#: ../../addon/articles/Mod_Articles.php:120 +#: ../../addon/cards/Mod_Cards.php:116 +#: ../../Zotlabs/Module/Admin/Queueworker.php:114 +#: ../../Zotlabs/Module/Admin/Profs.php:94 +#: ../../Zotlabs/Module/Admin/Profs.php:114 ../../Zotlabs/Module/Filer.php:54 +#: ../../Zotlabs/Module/Rbmark.php:31 ../../Zotlabs/Module/Rbmark.php:103 +msgid "Save" msgstr "" -#: ../../addon/redfiles/redfiles.php:120 -msgid "This will import all your Redmatrix cloud files to this channel." +#: ../../include/text.php:1260 +msgid "poke" msgstr "" -#: ../../addon/diaspora/diaspora.php:78 -msgid "" -"Please install the statistics addon to be able to configure a diaspora relay" +#: ../../include/text.php:1261 +msgid "ping" msgstr "" -#: ../../addon/diaspora/diaspora.php:88 -msgid "Diaspora Relay Handle" +#: ../../include/text.php:1261 +msgid "pinged" msgstr "" -#: ../../addon/diaspora/diaspora.php:88 -msgid "Address of a diaspora relay. Example: relay@diasporarelay.tld" +#: ../../include/text.php:1290 +msgid "happy" msgstr "" -#: ../../addon/diaspora/diaspora.php:108 -msgid "Diaspora relay could not be imported" +#: ../../include/text.php:1291 +msgid "sad" msgstr "" -#: ../../addon/diaspora/diaspora.php:1068 -msgid "No subject" +#: ../../include/text.php:1292 +msgid "mellow" msgstr "" -#: ../../addon/diaspora/p.php:48 ../../addon/diaspora/util.php:337 -#: ../../addon/diaspora/util.php:350 ../../Zotlabs/Lib/Enotify.php:61 -msgid "$projectname" +#: ../../include/text.php:1293 +msgid "tired" msgstr "" -#: ../../addon/diaspora/import_diaspora.php:18 -msgid "No username found in import file." +#: ../../include/text.php:1294 +msgid "perky" msgstr "" -#: ../../addon/diaspora/import_diaspora.php:43 ../../include/import.php:77 -msgid "Unable to create a unique channel address. Import failed." +#: ../../include/text.php:1295 +msgid "angry" msgstr "" -#: ../../addon/diaspora/import_diaspora.php:140 -msgid "Import completed." +#: ../../include/text.php:1296 +msgid "stupefied" msgstr "" -#: ../../addon/diaspora/Mod_Diaspora.php:43 -msgid "Diaspora Protocol Settings updated." +#: ../../include/text.php:1297 +msgid "puzzled" msgstr "" -#: ../../addon/diaspora/Mod_Diaspora.php:52 -msgid "" -"The diaspora protocol does not support location independence. Connections " -"you make within that network may be unreachable from alternate channel " -"locations." +#: ../../include/text.php:1298 +msgid "interested" msgstr "" -#: ../../addon/diaspora/Mod_Diaspora.php:75 -msgid "Allow any Diaspora member to comment or like your public posts" +#: ../../include/text.php:1299 +msgid "bitter" msgstr "" -#: ../../addon/diaspora/Mod_Diaspora.php:75 -msgid "" -"If this setting is disabled only your contacts will be able to comment or " -"like your public posts" +#: ../../include/text.php:1300 +msgid "cheerful" msgstr "" -#: ../../addon/diaspora/Mod_Diaspora.php:79 -msgid "Prevent your hashtags from being redirected to other sites" +#: ../../include/text.php:1301 +msgid "alive" msgstr "" -#: ../../addon/diaspora/Mod_Diaspora.php:83 -msgid "Sign and forward posts and comments with no existing Diaspora signature" +#: ../../include/text.php:1302 +msgid "annoyed" msgstr "" -#: ../../addon/diaspora/Mod_Diaspora.php:88 -msgid "Followed hashtags (comma separated, do not include the #)" +#: ../../include/text.php:1303 +msgid "anxious" msgstr "" -#: ../../addon/diaspora/Mod_Diaspora.php:97 -msgid "Diaspora Protocol" +#: ../../include/text.php:1304 +msgid "cranky" msgstr "" -#: ../../addon/diaspora/Receiver.php:1595 -#, php-format -msgid "%1$s dislikes %2$s's %3$s" +#: ../../include/text.php:1305 +msgid "disturbed" msgstr "" -#: ../../addon/diaspora/Receiver.php:2206 ../../Zotlabs/Module/Like.php:487 -#, php-format -msgid "%1$s is attending %2$s's %3$s" +#: ../../include/text.php:1306 +msgid "frustrated" msgstr "" -#: ../../addon/diaspora/Receiver.php:2208 ../../Zotlabs/Module/Like.php:489 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" +#: ../../include/text.php:1307 +msgid "depressed" msgstr "" -#: ../../addon/diaspora/Receiver.php:2210 ../../Zotlabs/Module/Like.php:491 -#, php-format -msgid "%1$s may attend %2$s's %3$s" +#: ../../include/text.php:1308 +msgid "motivated" msgstr "" -#: ../../addon/piwik/piwik.php:85 -msgid "" -"This website is tracked using the Piwik " -"analytics tool." +#: ../../include/text.php:1309 +msgid "relaxed" msgstr "" -#: ../../addon/piwik/piwik.php:88 -#, php-format -msgid "" -"If you do not want that your visits are logged this way you can " -"set a cookie to prevent Piwik from tracking further visits of the site " -"(opt-out)." +#: ../../include/text.php:1310 +msgid "surprised" msgstr "" -#: ../../addon/piwik/piwik.php:96 -msgid "Piwik Base URL" +#: ../../include/text.php:1502 +msgid "May" msgstr "" -#: ../../addon/piwik/piwik.php:96 -msgid "" -"Absolute path to your Piwik installation. (without protocol (http/s), with " -"trailing slash)" +#: ../../include/text.php:1568 +msgid "Unknown Attachment" msgstr "" -#: ../../addon/piwik/piwik.php:97 -msgid "Site ID" +#: ../../include/text.php:1570 ../../Zotlabs/Module/Sharedwithme.php:109 +#: ../../Zotlabs/Storage/Browser.php:382 +msgid "Size" msgstr "" -#: ../../addon/piwik/piwik.php:98 -msgid "Show opt-out cookie link?" +#: ../../include/text.php:1613 +msgid "remove category" msgstr "" -#: ../../addon/piwik/piwik.php:99 -msgid "Asynchronous tracking" +#: ../../include/text.php:1690 +msgid "remove from file" msgstr "" -#: ../../addon/piwik/piwik.php:100 -msgid "Enable frontend JavaScript error tracking" +#: ../../include/text.php:1877 +msgid "Download binary/encrypted content" msgstr "" -#: ../../addon/piwik/piwik.php:100 -msgid "This feature requires Piwik >= 2.2.0" -msgstr "" +#: ../../include/text.php:1935 ../../include/text.php:1944 +#: ../../include/text.php:1971 ../../include/text.php:1980 +#, php-format +msgctxt "noun" +msgid "%d Vote" +msgid_plural "%d Votes" +msgstr[0] "" +msgstr[1] "" -#: ../../addon/workflow/workflow.php:222 -msgid "Workflow user." +#: ../../include/text.php:1987 +#, php-format +msgctxt "noun" +msgid "%d Vote in total" +msgid_plural "%d Votes in total" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/text.php:1993 +msgid "Poll has ended" msgstr "" -#: ../../addon/workflow/workflow.php:272 -msgid "This channel" +#: ../../include/text.php:1996 +#, php-format +msgid "Poll ends in %s" msgstr "" -#: ../../addon/workflow/workflow.php:285 ../../Zotlabs/Module/Locs.php:123 -msgid "Primary" +#: ../../include/text.php:2003 ../../Zotlabs/Lib/ThreadItem.php:446 +msgid "Vote" msgstr "" -#: ../../addon/workflow/workflow.php:327 -msgid "Create New Workflow Item" +#: ../../include/text.php:2158 +msgid "Link to Source" msgstr "" -#: ../../addon/workflow/workflow.php:546 ../../addon/workflow/workflow.php:1442 -#: ../../addon/workflow/workflow.php:1461 -msgid "Workflow" +#: ../../include/text.php:2191 +msgid "Page layout" msgstr "" -#: ../../addon/workflow/workflow.php:1430 -msgid "No Workflows Available" +#: ../../include/text.php:2191 +msgid "You can create your own with the layouts tool" msgstr "" -#: ../../addon/workflow/workflow.php:1460 -msgid "Add item to which workflow" +#: ../../include/text.php:2201 ../../addon/wiki/Mod_Wiki.php:220 +#: ../../addon/wiki/Mod_Wiki.php:368 ../../addon/wiki/Mod_Wiki.php:903 +#: ../../addon/wiki/Widget/Wiki_pages.php:65 +msgid "BBcode" msgstr "" -#: ../../addon/workflow/workflow.php:1520 -#: ../../addon/workflow/workflow.php:1639 -msgid "Create Workflow Item" +#: ../../include/text.php:2202 +msgid "HTML" msgstr "" -#: ../../addon/workflow/workflow.php:2601 -msgid "Link" +#: ../../include/text.php:2203 ../../addon/mdpost/mdpost.php:41 +#: ../../addon/wiki/Mod_Wiki.php:220 ../../addon/wiki/Mod_Wiki.php:368 +#: ../../addon/wiki/Mod_Wiki.php:903 ../../addon/wiki/Widget/Wiki_pages.php:65 +msgid "Markdown" msgstr "" -#: ../../addon/workflow/workflow.php:2603 -msgid "Web link." +#: ../../include/text.php:2204 ../../addon/wiki/Mod_Wiki.php:220 +#: ../../addon/wiki/Mod_Wiki.php:903 ../../addon/wiki/Widget/Wiki_pages.php:65 +msgid "Text" msgstr "" -#: ../../addon/workflow/workflow.php:2622 -#: ../../addon/workflow/workflow.php:2683 ../../Zotlabs/Module/Cdav.php:1374 -#: ../../Zotlabs/Module/Connedit.php:734 -msgid "Title" +#: ../../include/text.php:2205 +msgid "Comanche Layout" msgstr "" -#: ../../addon/workflow/workflow.php:2624 -#: ../../addon/workflow/workflow.php:2685 -msgid "Brief description or title" +#: ../../include/text.php:2210 +msgid "PHP" msgstr "" -#: ../../addon/workflow/workflow.php:2630 ../../Zotlabs/Widget/Notes.php:38 -#: ../../Zotlabs/Lib/Apps.php:374 -msgid "Notes" +#: ../../include/text.php:2222 +msgid "Page content type" msgstr "" -#: ../../addon/workflow/workflow.php:2632 -#: ../../addon/workflow/workflow.php:2693 -msgid "Notes and Info" +#: ../../include/text.php:2355 +msgid "activity" msgstr "" -#: ../../addon/workflow/workflow.php:2691 -msgid "Body" +#: ../../include/text.php:2358 +msgid "poll" msgstr "" -#: ../../addon/workflow/Settings/Mod_WorkflowSettings.php:101 -msgid "Workflow Settings" +#: ../../include/text.php:2471 +msgid "a-z, 0-9, -, and _ only" msgstr "" -#: ../../addon/donate/donate.php:21 -msgid "Project Servers and Resources" +#: ../../include/text.php:2776 +msgid "Design Tools" msgstr "" -#: ../../addon/donate/donate.php:22 -msgid "Project Creator and Tech Lead" +#: ../../include/text.php:2779 ../../Zotlabs/Module/Blocks.php:152 +msgid "Blocks" msgstr "" -#: ../../addon/donate/donate.php:49 -msgid "" -"And the hundreds of other people and organisations who helped make the " -"Hubzilla possible." +#: ../../include/text.php:2780 ../../Zotlabs/Module/Menu.php:171 +msgid "Menus" msgstr "" -#: ../../addon/donate/donate.php:52 -msgid "" -"The Redmatrix/Hubzilla projects are provided primarily by volunteers giving " -"their time and expertise - and often paying out of pocket for services they " -"share with others." +#: ../../include/text.php:2781 ../../Zotlabs/Module/Layouts.php:182 +msgid "Layouts" msgstr "" -#: ../../addon/donate/donate.php:53 -msgid "" -"There is no corporate funding and no ads, and we do not collect and sell " -"your personal information. (We don't control your personal information - " -"you do.)" +#: ../../include/text.php:2782 +msgid "Pages" msgstr "" -#: ../../addon/donate/donate.php:54 -msgid "" -"Help support our ground-breaking work in decentralisation, web identity, and " -"privacy." +#: ../../include/text.php:2794 +msgid "Import" msgstr "" -#: ../../addon/donate/donate.php:56 -msgid "" -"Your donations keep servers and services running and also helps us to " -"provide innovative new features and continued development." +#: ../../include/text.php:2795 +msgid "Import website..." msgstr "" -#: ../../addon/donate/donate.php:59 -msgid "Donate" +#: ../../include/text.php:2796 +msgid "Select folder to import" msgstr "" -#: ../../addon/donate/donate.php:61 -msgid "" -"Choose a project, developer, or public hub to support with a one-time " -"donation" +#: ../../include/text.php:2797 +msgid "Import from a zipped folder:" msgstr "" -#: ../../addon/donate/donate.php:62 -msgid "Donate Now" +#: ../../include/text.php:2798 +msgid "Import from cloud files:" msgstr "" -#: ../../addon/donate/donate.php:63 -msgid "" -"Or become a project sponsor (Hubzilla Project only)" +#: ../../include/text.php:2799 +msgid "/cloud/channel/path/to/folder" msgstr "" -#: ../../addon/donate/donate.php:64 -msgid "" -"Please indicate if you would like your first name or full name (or nothing) " -"to appear in our sponsor listing" +#: ../../include/text.php:2800 +msgid "Enter path to website files" msgstr "" -#: ../../addon/donate/donate.php:65 -msgid "Sponsor" +#: ../../include/text.php:2801 +msgid "Select folder" msgstr "" -#: ../../addon/donate/donate.php:68 -msgid "Special thanks to: " +#: ../../include/text.php:2802 +msgid "Export website..." msgstr "" -#: ../../addon/likebanner/likebanner.php:51 -msgid "Your Webbie:" +#: ../../include/text.php:2803 +msgid "Export to a zip file" msgstr "" -#: ../../addon/likebanner/likebanner.php:54 -msgid "Fontsize (px):" +#: ../../include/text.php:2804 +msgid "website.zip" msgstr "" -#: ../../addon/likebanner/likebanner.php:68 -msgid "Link:" +#: ../../include/text.php:2805 +msgid "Enter a name for the zip file." msgstr "" -#: ../../addon/likebanner/likebanner.php:70 -msgid "Like us on Hubzilla" +#: ../../include/text.php:2806 +msgid "Export to cloud files" msgstr "" -#: ../../addon/likebanner/likebanner.php:72 -msgid "Embed:" +#: ../../include/text.php:2807 +msgid "/path/to/export/folder" msgstr "" -#: ../../addon/opensearch/opensearch.php:26 -#, php-format -msgctxt "opensearch" -msgid "Search %1$s (%2$s)" +#: ../../include/text.php:2808 +msgid "Enter a path to a cloud files destination." msgstr "" -#: ../../addon/opensearch/opensearch.php:28 -msgctxt "opensearch" -msgid "$Projectname" +#: ../../include/text.php:2809 +msgid "Specify folder" msgstr "" -#: ../../addon/opensearch/opensearch.php:42 ../../Zotlabs/Module/Invite.php:225 -#: ../../Zotlabs/Module/Invite.php:494 ../../Zotlabs/Module/Invite.php:508 -#: ../../Zotlabs/Module/Home.php:87 ../../Zotlabs/Module/Home.php:95 -#: ../../Zotlabs/Lib/Enotify.php:66 -msgid "$Projectname" +#: ../../include/selectors.php:17 +msgid "Select a profile to assign to this contact" msgstr "" -#: ../../addon/opensearch/opensearch.php:43 -msgid "Search $Projectname" +#: ../../include/selectors.php:45 +msgid "Frequently" msgstr "" -#: ../../addon/fuzzloc/Mod_Fuzzloc.php:22 -msgid "Fuzzloc Settings updated." +#: ../../include/selectors.php:46 +msgid "Hourly" msgstr "" -#: ../../addon/fuzzloc/Mod_Fuzzloc.php:38 -msgid "Minimum offset in meters" +#: ../../include/selectors.php:47 +msgid "Twice daily" msgstr "" -#: ../../addon/fuzzloc/Mod_Fuzzloc.php:42 -msgid "Maximum offset in meters" +#: ../../include/selectors.php:48 +msgid "Daily" msgstr "" -#: ../../addon/fuzzloc/Mod_Fuzzloc.php:51 -msgid "Fuzzy Location" +#: ../../include/selectors.php:49 +msgid "Weekly" msgstr "" -#: ../../addon/hubwall/hubwall.php:19 -msgid "Send email to all members" +#: ../../include/selectors.php:50 +msgid "Monthly" msgstr "" -#: ../../addon/hubwall/hubwall.php:33 ../../Zotlabs/Lib/Enotify.php:65 -#, php-format -msgid "%s Administrator" +#: ../../include/selectors.php:64 ../../include/selectors.php:81 +#: ../../include/channel.php:1714 ../../addon/openid/Mod_Id.php:85 +msgid "Male" msgstr "" -#: ../../addon/hubwall/hubwall.php:50 ../../addon/mailtest/mailtest.php:50 -msgid "No recipients found." +#: ../../include/selectors.php:64 ../../include/selectors.php:81 +#: ../../include/channel.php:1712 ../../addon/openid/Mod_Id.php:87 +msgid "Female" msgstr "" -#: ../../addon/hubwall/hubwall.php:73 -#, php-format -msgid "%1$d of %2$d messages sent." +#: ../../include/selectors.php:64 +msgid "Currently Male" msgstr "" -#: ../../addon/hubwall/hubwall.php:81 -msgid "Send email to all hub members." +#: ../../include/selectors.php:64 +msgid "Currently Female" msgstr "" -#: ../../addon/hubwall/hubwall.php:92 ../../addon/mailtest/mailtest.php:96 -msgid "Message subject" +#: ../../include/selectors.php:64 +msgid "Mostly Male" msgstr "" -#: ../../addon/hubwall/hubwall.php:93 -msgid "Sender Email address" +#: ../../include/selectors.php:64 +msgid "Mostly Female" msgstr "" -#: ../../addon/hubwall/hubwall.php:94 -msgid "Test mode (only send to hub administrator)" +#: ../../include/selectors.php:64 +msgid "Transgender" msgstr "" -#: ../../addon/cards/Widget/Cards_categories.php:74 -#: ../../addon/articles/Widget/Articles_categories.php:74 -#: ../../include/contact_widgets.php:115 ../../include/contact_widgets.php:149 -#: ../../include/taxonomy.php:420 ../../include/taxonomy.php:502 -#: ../../include/taxonomy.php:522 ../../include/taxonomy.php:543 -#: ../../Zotlabs/Module/Cdav.php:1070 ../../Zotlabs/Storage/Browser.php:293 -#: ../../Zotlabs/Storage/Browser.php:388 ../../Zotlabs/Storage/Browser.php:403 -msgid "Categories" +#: ../../include/selectors.php:64 +msgid "Intersex" msgstr "" -#: ../../addon/cards/Widget/Cards_categories.php:77 -#: ../../addon/articles/Widget/Articles_categories.php:77 -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:118 -#: ../../include/contact_widgets.php:152 -#: ../../Zotlabs/Widget/Appcategories.php:52 ../../Zotlabs/Widget/Filer.php:36 -msgid "Everything" +#: ../../include/selectors.php:64 +msgid "Transsexual" msgstr "" -#: ../../addon/cards/Mod_Card_edit.php:17 -#: ../../addon/cards/Mod_Card_edit.php:33 -#: ../../addon/articles/Mod_Article_edit.php:17 -#: ../../addon/articles/Mod_Article_edit.php:33 -#: ../../Zotlabs/Module/Editwebpage.php:80 ../../Zotlabs/Module/Editpost.php:24 -#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 -#: ../../Zotlabs/Module/Editlayout.php:79 -msgid "Item not found" +#: ../../include/selectors.php:64 +msgid "Hermaphrodite" msgstr "" -#: ../../addon/cards/Mod_Card_edit.php:44 -#: ../../addon/articles/Mod_Article_edit.php:44 -#: ../../Zotlabs/Module/Attach_edit.php:52 -#: ../../Zotlabs/Module/Wall_upload.php:31 ../../Zotlabs/Module/Chanview.php:95 -#: ../../Zotlabs/Module/Cal.php:31 ../../Zotlabs/Module/Attach.php:22 -#: ../../Zotlabs/Module/Page.php:75 ../../Zotlabs/Module/Block.php:41 -msgid "Channel not found." +#: ../../include/selectors.php:64 ../../include/channel.php:1718 +msgid "Neuter" msgstr "" -#: ../../addon/cards/Mod_Card_edit.php:129 -msgid "Edit Card" +#: ../../include/selectors.php:64 ../../include/channel.php:1720 +msgid "Non-specific" msgstr "" -#: ../../addon/cards/Mod_Card_edit.php:130 -#: ../../addon/articles/Mod_Article_edit.php:128 -#: ../../include/conversation.php:737 ../../include/conversation.php:797 -#: ../../Zotlabs/Module/Tokens.php:295 ../../Zotlabs/Module/Group.php:251 -#: ../../Zotlabs/Module/Oauth.php:172 ../../Zotlabs/Module/Editwebpage.php:167 -#: ../../Zotlabs/Module/Cdav.php:1055 ../../Zotlabs/Module/Cdav.php:1389 -#: ../../Zotlabs/Module/Webpages.php:254 -#: ../../Zotlabs/Module/Admin/Accounts.php:320 -#: ../../Zotlabs/Module/Admin/Channels.php:149 -#: ../../Zotlabs/Module/Admin/Profs.php:176 -#: ../../Zotlabs/Module/Permcats.php:261 -#: ../../Zotlabs/Module/Contactedit.php:667 ../../Zotlabs/Module/Blocks.php:162 -#: ../../Zotlabs/Module/Editblock.php:139 -#: ../../Zotlabs/Module/Editlayout.php:138 ../../Zotlabs/Module/Photos.php:1185 -#: ../../Zotlabs/Module/Oauth2.php:193 ../../Zotlabs/Module/Thing.php:269 -#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Connedit.php:749 -#: ../../Zotlabs/Lib/Apps.php:601 ../../Zotlabs/Lib/ThreadItem.php:187 -#: ../../Zotlabs/Storage/Browser.php:384 -msgid "Delete" +#: ../../include/selectors.php:64 +msgid "Undecided" msgstr "" -#: ../../addon/cards/cards.php:47 ../../addon/cards/cards.php:159 -#: ../../addon/cards/Mod_Cards.php:209 ../../Zotlabs/Lib/Apps.php:330 -msgid "Cards" +#: ../../include/selectors.php:100 ../../include/selectors.php:119 +msgid "Males" msgstr "" -#: ../../addon/cards/cards.php:50 -msgid "View Cards" +#: ../../include/selectors.php:100 ../../include/selectors.php:119 +msgid "Females" msgstr "" -#: ../../addon/cards/cards.php:81 ../../addon/articles/articles.php:83 -#: ../../include/conversation.php:849 -msgid "View in context" +#: ../../include/selectors.php:100 +msgid "Gay" msgstr "" -#: ../../addon/cards/Mod_Cards.php:115 -msgid "Add Card" +#: ../../include/selectors.php:100 +msgid "Lesbian" msgstr "" -#: ../../addon/notifyadmin/notifyadmin.php:34 -msgid "New registration" +#: ../../include/selectors.php:100 +msgid "No Preference" msgstr "" -#: ../../addon/notifyadmin/notifyadmin.php:40 -#: ../../Zotlabs/Module/Invite.php:252 -#, php-format -msgid "%s : Message delivery failed." +#: ../../include/selectors.php:100 +msgid "Bisexual" msgstr "" -#: ../../addon/notifyadmin/notifyadmin.php:42 -#, php-format -msgid "Message sent to %s. New account registration: %s" +#: ../../include/selectors.php:100 +msgid "Autosexual" msgstr "" -#: ../../addon/flashcards/Mod_Flashcards.php:225 -msgid "Not allowed." +#: ../../include/selectors.php:100 +msgid "Abstinent" msgstr "" -#: ../../addon/flashcards/Mod_Flashcards.php:261 -#: ../../include/acl_selectors.php:154 ../../Zotlabs/Module/Chat.php:239 -#: ../../Zotlabs/Module/Filestorage.php:195 ../../Zotlabs/Module/Photos.php:682 -#: ../../Zotlabs/Module/Photos.php:1053 ../../Zotlabs/Module/Thing.php:321 -#: ../../Zotlabs/Module/Thing.php:374 -msgid "Permissions" +#: ../../include/selectors.php:100 +msgid "Virgin" msgstr "" -#: ../../addon/flashcards/Mod_Flashcards.php:268 -#: ../../Zotlabs/Module/Filestorage.php:202 -msgid "Set/edit permissions" +#: ../../include/selectors.php:100 +msgid "Deviant" msgstr "" -#: ../../addon/flashcards/Mod_Flashcards.php:291 -#: ../../addon/flashcards/Mod_Flashcards.php:292 ../../include/items.php:3817 -#: ../../Zotlabs/Module/Filestorage.php:29 -#: ../../Zotlabs/Module/Admin/Themes.php:72 -#: ../../Zotlabs/Module/Admin/Addons.php:260 -#: ../../Zotlabs/Module/Viewsrc.php:25 ../../Zotlabs/Module/Display.php:53 -#: ../../Zotlabs/Module/Display.php:388 ../../Zotlabs/Module/Admin.php:61 -#: ../../Zotlabs/Module/Thing.php:96 -msgid "Item not found." +#: ../../include/selectors.php:100 +msgid "Fetish" msgstr "" -#: ../../addon/libertree/libertree.php:43 -msgid "Post to Libertree" +#: ../../include/selectors.php:100 +msgid "Oodles" msgstr "" -#: ../../addon/libertree/Mod_Libertree.php:25 -msgid "Libertree Crosspost Connector Settings saved." +#: ../../include/selectors.php:100 +msgid "Nonsexual" msgstr "" -#: ../../addon/libertree/Mod_Libertree.php:49 -msgid "Libertree API token" +#: ../../include/selectors.php:138 ../../include/selectors.php:155 +msgid "Single" msgstr "" -#: ../../addon/libertree/Mod_Libertree.php:53 -msgid "Libertree site URL" +#: ../../include/selectors.php:138 +msgid "Lonely" msgstr "" -#: ../../addon/libertree/Mod_Libertree.php:57 -msgid "Post to Libertree by default" +#: ../../include/selectors.php:138 +msgid "Available" msgstr "" -#: ../../addon/libertree/Mod_Libertree.php:65 -msgid "Libertree Crosspost Connector" +#: ../../include/selectors.php:138 +msgid "Unavailable" msgstr "" -#: ../../addon/randpost/randpost.php:99 -msgid "You're welcome." +#: ../../include/selectors.php:138 +msgid "Has crush" msgstr "" -#: ../../addon/randpost/randpost.php:100 -msgid "Ah shucks..." +#: ../../include/selectors.php:138 +msgid "Infatuated" msgstr "" -#: ../../addon/randpost/randpost.php:101 -msgid "Don't mention it." +#: ../../include/selectors.php:138 ../../include/selectors.php:155 +msgid "Dating" msgstr "" -#: ../../addon/randpost/randpost.php:102 -msgid "<blush>" +#: ../../include/selectors.php:138 +msgid "Unfaithful" msgstr "" -#: ../../addon/buglink/buglink.php:16 ../../Zotlabs/Lib/Apps.php:332 -msgid "Report Bug" +#: ../../include/selectors.php:138 +msgid "Sex Addict" msgstr "" -#: ../../addon/totp/Mod_Totp.php:32 -msgid "TOTP Two-Step Verification" +#: ../../include/selectors.php:138 ../../include/channel.php:456 +#: ../../include/channel.php:459 ../../Zotlabs/Module/Connedit.php:581 +#: ../../Zotlabs/Module/Contactedit.php:297 +#: ../../Zotlabs/Widget/Affinity.php:38 +msgid "Friends" msgstr "" -#: ../../addon/totp/Mod_Totp.php:33 -msgid "Enter the 2-step verification generated by your authenticator app:" +#: ../../include/selectors.php:138 +msgid "Friends/Benefits" msgstr "" -#: ../../addon/totp/Mod_Totp.php:34 -msgid "Success!" +#: ../../include/selectors.php:138 +msgid "Casual" msgstr "" -#: ../../addon/totp/Mod_Totp.php:35 -msgid "Invalid code, please try again." +#: ../../include/selectors.php:138 +msgid "Engaged" msgstr "" -#: ../../addon/totp/Mod_Totp.php:36 -msgid "Too many invalid codes..." +#: ../../include/selectors.php:138 ../../include/selectors.php:155 +msgid "Married" msgstr "" -#: ../../addon/totp/Mod_Totp.php:37 -msgid "Verify" +#: ../../include/selectors.php:138 +msgid "Imaginarily married" msgstr "" -#: ../../addon/totp/Settings/Totp.php:92 -msgid "" -"You haven't set a TOTP secret yet.\n" -"Please click the button below to generate one and register this site\n" -"with your preferred authenticator app." +#: ../../include/selectors.php:138 +msgid "Partners" msgstr "" -#: ../../addon/totp/Settings/Totp.php:95 -msgid "Your TOTP secret is" +#: ../../include/selectors.php:138 ../../include/selectors.php:155 +msgid "Cohabiting" msgstr "" -#: ../../addon/totp/Settings/Totp.php:96 -msgid "" -"Be sure to save it somewhere in case you lose or replace your mobile " -"device.\n" -"Use your mobile device to scan the QR code below to register this site\n" -"with your preferred authenticator app." +#: ../../include/selectors.php:138 +msgid "Common law" msgstr "" -#: ../../addon/totp/Settings/Totp.php:101 -msgid "Test" +#: ../../include/selectors.php:138 +msgid "Happy" msgstr "" -#: ../../addon/totp/Settings/Totp.php:102 -msgid "Generate New Secret" +#: ../../include/selectors.php:138 +msgid "Not looking" msgstr "" -#: ../../addon/totp/Settings/Totp.php:103 -msgid "Go" +#: ../../include/selectors.php:138 +msgid "Swinger" msgstr "" -#: ../../addon/totp/Settings/Totp.php:104 -msgid "Enter your password" +#: ../../include/selectors.php:138 +msgid "Betrayed" msgstr "" -#: ../../addon/totp/Settings/Totp.php:105 -msgid "enter TOTP code from your device" +#: ../../include/selectors.php:138 ../../include/selectors.php:155 +msgid "Separated" msgstr "" -#: ../../addon/totp/Settings/Totp.php:106 -msgid "Pass!" +#: ../../include/selectors.php:138 +msgid "Unstable" msgstr "" -#: ../../addon/totp/Settings/Totp.php:107 -msgid "Fail" +#: ../../include/selectors.php:138 ../../include/selectors.php:155 +msgid "Divorced" msgstr "" -#: ../../addon/totp/Settings/Totp.php:108 -msgid "Incorrect password, try again." +#: ../../include/selectors.php:138 +msgid "Imaginarily divorced" msgstr "" -#: ../../addon/totp/Settings/Totp.php:109 -msgid "Record your new TOTP secret and rescan the QR code above." +#: ../../include/selectors.php:138 ../../include/selectors.php:155 +msgid "Widowed" msgstr "" -#: ../../addon/totp/Settings/Totp.php:117 -msgid "TOTP Settings" +#: ../../include/selectors.php:138 +msgid "Uncertain" msgstr "" -#: ../../addon/logrot/logrot.php:36 -msgid "Logfile archive directory" +#: ../../include/selectors.php:138 ../../include/selectors.php:155 +msgid "It's complicated" msgstr "" -#: ../../addon/logrot/logrot.php:36 -msgid "Directory to store rotated logs" +#: ../../include/selectors.php:138 +msgid "Don't care" msgstr "" -#: ../../addon/logrot/logrot.php:37 -msgid "Logfile size in bytes before rotating" +#: ../../include/selectors.php:138 +msgid "Ask me" msgstr "" -#: ../../addon/logrot/logrot.php:38 -msgid "Number of logfiles to retain" +#: ../../include/channel.php:48 +msgid "Unable to obtain identity information from database" msgstr "" -#: ../../addon/testdrive/testdrive.php:104 -#, php-format -msgid "Your account on %s will expire in a few days." +#: ../../include/channel.php:81 +msgid "Empty name" msgstr "" -#: ../../addon/testdrive/testdrive.php:105 -msgid "Your test account is about to expire." +#: ../../include/channel.php:84 +msgid "Name too long" msgstr "" -#: ../../addon/hideaside/Mod_Hideaside.php:28 -msgid "Hide Aside App" +#: ../../include/channel.php:201 +msgid "No account identifier" msgstr "" -#: ../../addon/hideaside/Mod_Hideaside.php:29 -msgid "Fade out aside areas after a while when using endless scroll" +#: ../../include/channel.php:213 ../../Zotlabs/Module/Register.php:95 +msgid "Nickname is required." msgstr "" -#: ../../addon/skeleton/Mod_Skeleton.php:38 -msgid "Some setting" +#: ../../include/channel.php:227 ../../include/channel.php:659 +#: ../../Zotlabs/Module/Register.php:100 ../../Zotlabs/Module/Changeaddr.php:46 +msgid "Reserved nickname. Please choose another." msgstr "" -#: ../../addon/skeleton/Mod_Skeleton.php:38 -msgid "A setting" +#: ../../include/channel.php:232 ../../include/channel.php:664 +#: ../../Zotlabs/Module/Register.php:105 ../../Zotlabs/Module/Changeaddr.php:51 +msgid "" +"Nickname has unsupported characters or is already being used on this site." msgstr "" -#: ../../addon/skeleton/Mod_Skeleton.php:46 -msgid "Skeleton Settings" +#: ../../include/channel.php:292 +msgid "Unable to retrieve created identity" msgstr "" -#: ../../addon/socialauth/Mod_SocialAuth.php:106 -#: ../../addon/socialauth/Mod_SocialAuth.php:179 -msgid "Network error" +#: ../../include/channel.php:402 +msgid "Default Profile" msgstr "" -#: ../../addon/socialauth/Mod_SocialAuth.php:110 -#: ../../addon/socialauth/Mod_SocialAuth.php:183 -msgid "API error" +#: ../../include/channel.php:592 ../../include/channel.php:681 +msgid "Unable to retrieve modified identity" msgstr "" -#: ../../addon/socialauth/Mod_SocialAuth.php:114 -#: ../../addon/socialauth/Mod_SocialAuth.php:187 -msgid "Unknown issue" +#: ../../include/channel.php:1373 +msgid "Requested channel is not available" msgstr "" -#: ../../addon/socialauth/Mod_SocialAuth.php:152 -msgid "Unable to retrieve email address from remote identity provider" +#: ../../include/channel.php:1427 ../../addon/articles/Mod_Articles.php:46 +#: ../../addon/cards/Mod_Cards.php:42 ../../addon/gallery/Mod_Gallery.php:49 +#: ../../Zotlabs/Module/Profile.php:27 ../../Zotlabs/Module/Connect.php:17 +#: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Blocks.php:33 +#: ../../Zotlabs/Module/Editlayout.php:31 ../../Zotlabs/Module/Menu.php:92 +#: ../../Zotlabs/Module/Hcard.php:12 ../../Zotlabs/Module/Webpages.php:39 +#: ../../Zotlabs/Module/Filestorage.php:59 +#: ../../Zotlabs/Module/Editblock.php:31 +#: ../../Zotlabs/Module/Achievements.php:15 +#: ../../Zotlabs/Module/Editwebpage.php:32 +msgid "Requested profile is not available." msgstr "" -#: ../../addon/socialauth/Mod_SocialAuth.php:171 -msgid "Unable to login using email address " +#: ../../include/channel.php:1523 ../../Zotlabs/Module/Profiles.php:745 +msgid "Change profile photo" msgstr "" -#: ../../addon/socialauth/Mod_SocialAuth.php:211 -msgid "Social Authentication using your social media account" +#: ../../include/channel.php:1531 +msgid "Create New Profile" msgstr "" -#: ../../addon/socialauth/Mod_SocialAuth.php:215 -msgid "" -"This app enables one or more social provider sign-in buttons on the login " -"page." +#: ../../include/channel.php:1549 ../../Zotlabs/Module/Profiles.php:842 +msgid "Profile Image" msgstr "" -#: ../../addon/socialauth/Mod_SocialAuth.php:233 -msgid "Add an identity provider" +#: ../../include/channel.php:1552 +msgid "Visible to everybody" msgstr "" -#: ../../addon/socialauth/Mod_SocialAuth.php:260 -msgid "Enable " +#: ../../include/channel.php:1553 ../../Zotlabs/Module/Profiles.php:742 +#: ../../Zotlabs/Module/Profiles.php:846 +msgid "Edit visibility" msgstr "" -#: ../../addon/socialauth/Mod_SocialAuth.php:267 -msgid "Key" +#: ../../include/channel.php:1631 ../../include/channel.php:1757 +msgid "Gender:" msgstr "" -#: ../../addon/socialauth/Mod_SocialAuth.php:267 -#: ../../addon/socialauth/Mod_SocialAuth.php:272 -#: ../../addon/socialauth/Mod_SocialAuth.php:288 -#: ../../addon/socialauth/Mod_SocialAuth.php:299 -#: ../../addon/socialauth/Mod_SocialAuth.php:308 -msgid "Word" +#: ../../include/channel.php:1632 ../../include/channel.php:1801 +msgid "Status:" msgstr "" -#: ../../addon/socialauth/Mod_SocialAuth.php:272 -msgid "Secret" +#: ../../include/channel.php:1633 ../../include/channel.php:1825 +msgid "Homepage:" msgstr "" -#: ../../addon/socialauth/Mod_SocialAuth.php:308 -msgid "Add a custom provider" +#: ../../include/channel.php:1634 ../../include/channel.php:1827 +#: ../../Zotlabs/Module/Directory.php:360 +msgid "Hometown:" msgstr "" -#: ../../addon/socialauth/Mod_SocialAuth.php:328 -msgid "Remove an identity provider" +#: ../../include/channel.php:1635 +msgid "Online Now" msgstr "" -#: ../../addon/socialauth/Mod_SocialAuth.php:338 -msgid "Social authentication" +#: ../../include/channel.php:1685 +msgid "Change your profile photo" msgstr "" -#: ../../addon/socialauth/Mod_SocialAuth.php:380 -msgid "Error while saving provider settings" +#: ../../include/channel.php:1716 +msgid "Trans" msgstr "" -#: ../../addon/socialauth/Mod_SocialAuth.php:403 -msgid "Custom provider already exists" +#: ../../include/channel.php:1755 +msgid "Full Name:" msgstr "" -#: ../../addon/socialauth/Mod_SocialAuth.php:420 -msgid "Social authentication settings saved." +#: ../../include/channel.php:1762 +msgid "Like this channel" msgstr "" -#: ../../addon/nsfw/nsfw.php:152 -msgid "Possible adult content" +#: ../../include/channel.php:1786 +msgid "j F, Y" msgstr "" -#: ../../addon/nsfw/nsfw.php:167 -#, php-format -msgid "%s - view" +#: ../../include/channel.php:1787 +msgid "j F" msgstr "" -#: ../../addon/nsfw/Mod_Nsfw.php:22 -msgid "NSFW Settings saved." +#: ../../include/channel.php:1794 +msgid "Birthday:" msgstr "" -#: ../../addon/nsfw/Mod_Nsfw.php:42 -msgid "" -"This app looks in posts for the words/text you specify below, and collapses " -"any content containing those keywords so it is not displayed at " -"inappropriate times, such as sexual innuendo that may be improper in a work " -"setting. It is polite and recommended to tag any content containing nudity " -"with #NSFW. This filter can also match any other word/text you specify, and " -"can thereby be used as a general purpose content filter." +#: ../../include/channel.php:1798 ../../Zotlabs/Module/Directory.php:345 +msgid "Age:" msgstr "" -#: ../../addon/nsfw/Mod_Nsfw.php:47 -msgid "Comma separated list of keywords to hide" +#: ../../include/channel.php:1807 +#, php-format +msgid "for %1$d %2$s" msgstr "" -#: ../../addon/nsfw/Mod_Nsfw.php:47 -msgid "Word, /regular-expression/, lang=xx, lang!=xx" +#: ../../include/channel.php:1819 +msgid "Tags:" msgstr "" -#: ../../addon/nsfw/Mod_Nsfw.php:56 -msgid "NSFW" +#: ../../include/channel.php:1823 +msgid "Sexual Preference:" msgstr "" -#: ../../addon/upload_limits/upload_limits.php:25 -msgid "Show Upload Limits" +#: ../../include/channel.php:1829 +msgid "Political Views:" msgstr "" -#: ../../addon/upload_limits/upload_limits.php:27 -msgid "Hubzilla configured maximum size: " +#: ../../include/channel.php:1831 +msgid "Religion:" msgstr "" -#: ../../addon/upload_limits/upload_limits.php:28 -msgid "PHP upload_max_filesize: " +#: ../../include/channel.php:1833 ../../Zotlabs/Module/Directory.php:362 +msgid "About:" msgstr "" -#: ../../addon/upload_limits/upload_limits.php:29 -msgid "PHP post_max_size (must be larger than upload_max_filesize): " +#: ../../include/channel.php:1835 +msgid "Hobbies/Interests:" msgstr "" -#: ../../addon/tictac/tictac.php:21 -msgid "Three Dimensional Tic-Tac-Toe" +#: ../../include/channel.php:1837 +msgid "Likes:" msgstr "" -#: ../../addon/tictac/tictac.php:54 -msgid "3D Tic-Tac-Toe" +#: ../../include/channel.php:1839 +msgid "Dislikes:" msgstr "" -#: ../../addon/tictac/tictac.php:59 -msgid "New game" +#: ../../include/channel.php:1841 +msgid "Contact information and Social Networks:" msgstr "" -#: ../../addon/tictac/tictac.php:60 -msgid "New game with handicap" +#: ../../include/channel.php:1843 +msgid "My other channels:" msgstr "" -#: ../../addon/tictac/tictac.php:61 -msgid "" -"Three dimensional tic-tac-toe is just like the traditional game except that " -"it is played on multiple levels simultaneously. " +#: ../../include/channel.php:1845 +msgid "Musical interests:" msgstr "" -#: ../../addon/tictac/tictac.php:62 -msgid "" -"In this case there are three levels. You win by getting three in a row on " -"any level, as well as up, down, and diagonally across the different levels." +#: ../../include/channel.php:1847 +msgid "Books, literature:" msgstr "" -#: ../../addon/tictac/tictac.php:64 -msgid "" -"The handicap game disables the center position on the middle level because " -"the player claiming this square often has an unfair advantage." +#: ../../include/channel.php:1849 +msgid "Television:" msgstr "" -#: ../../addon/tictac/tictac.php:183 -msgid "You go first..." +#: ../../include/channel.php:1851 +msgid "Film/dance/culture/entertainment:" msgstr "" -#: ../../addon/tictac/tictac.php:188 -msgid "I'm going first this time..." +#: ../../include/channel.php:1853 +msgid "Love/Romance:" msgstr "" -#: ../../addon/tictac/tictac.php:194 -msgid "You won!" +#: ../../include/channel.php:1855 +msgid "Work/employment:" msgstr "" -#: ../../addon/tictac/tictac.php:200 ../../addon/tictac/tictac.php:225 -msgid "\"Cat\" game!" +#: ../../include/channel.php:1857 +msgid "School/education:" msgstr "" -#: ../../addon/tictac/tictac.php:223 -msgid "I won!" +#: ../../include/channel.php:1878 ../../Zotlabs/Lib/Apps.php:367 +#: ../../Zotlabs/Module/Profperm.php:113 +msgid "Profile" msgstr "" -#: ../../addon/mailtest/mailtest.php:19 -msgid "Send test email" +#: ../../include/channel.php:1880 +msgid "Like this thing" msgstr "" -#: ../../addon/mailtest/mailtest.php:66 -msgid "Mail sent." +#: ../../include/channel.php:1881 +msgid "Export" msgstr "" -#: ../../addon/mailtest/mailtest.php:68 -msgid "Sending of mail failed." +#: ../../include/channel.php:2334 ../../Zotlabs/Module/Cover_photo.php:304 +msgid "cover photo" msgstr "" -#: ../../addon/mailtest/mailtest.php:77 -msgid "Mail Test" +#: ../../include/channel.php:2610 ../../Zotlabs/Module/Rmagic.php:97 +msgid "Enter your channel address (e.g. channel@example.com)" msgstr "" -#: ../../addon/ljpost/Mod_Ljpost.php:53 -msgid "Livejournal username" +#: ../../include/channel.php:2611 ../../Zotlabs/Module/Rmagic.php:98 +msgid "Authenticate" msgstr "" -#: ../../addon/ljpost/Mod_Ljpost.php:57 -msgid "Livejournal password" +#: ../../include/channel.php:2769 ../../Zotlabs/Module/Admin/Accounts.php:184 +#, php-format +msgid "Account '%s' deleted" msgstr "" -#: ../../addon/ljpost/Mod_Ljpost.php:61 -msgid "Post to Livejournal by default" +#: ../../include/import.php:30 +msgid "Unable to import a removed channel." msgstr "" -#: ../../addon/ljpost/Mod_Ljpost.php:65 -msgid "Send wall-to-wall posts to Livejournal" +#: ../../include/import.php:56 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." msgstr "" -#: ../../addon/ljpost/Mod_Ljpost.php:77 -msgid "Livejournal Crosspost Connector" +#: ../../include/import.php:77 ../../addon/diaspora/import_diaspora.php:43 +msgid "Unable to create a unique channel address. Import failed." msgstr "" -#: ../../addon/ljpost/ljpost.php:49 -msgid "Post to Livejournal" +#: ../../include/import.php:122 +msgid "Cloned channel not found. Import failed." msgstr "" -#: ../../addon/ljpost/ljpost.php:127 -msgid "Posted by" +#: ../../addon/qrator/qrator.php:48 +msgid "QR code" msgstr "" -#: ../../addon/mdpost/mdpost.php:42 -msgid "Use markdown for editing posts" +#: ../../addon/qrator/qrator.php:63 +msgid "QR Generator" msgstr "" -#: ../../addon/articles/Mod_Article_edit.php:127 -msgid "Edit Article" +#: ../../addon/qrator/qrator.php:64 +msgid "Enter some text" msgstr "" -#: ../../addon/articles/articles.php:48 ../../addon/articles/articles.php:160 -#: ../../addon/articles/Mod_Articles.php:228 ../../Zotlabs/Lib/Apps.php:329 -msgid "Articles" +#: ../../addon/piwik/piwik.php:85 +msgid "" +"This website is tracked using the Piwik " +"analytics tool." msgstr "" -#: ../../addon/articles/articles.php:51 -msgid "View Articles" +#: ../../addon/piwik/piwik.php:88 +#, php-format +msgid "" +"If you do not want that your visits are logged this way you can " +"set a cookie to prevent Piwik from tracking further visits of the site " +"(opt-out)." msgstr "" -#: ../../addon/articles/Mod_Articles.php:119 -msgid "Add Article" +#: ../../addon/piwik/piwik.php:96 +msgid "Piwik Base URL" msgstr "" -#: ../../addon/hzfiles/hzfiles.php:81 -msgid "Hubzilla File Storage Import" +#: ../../addon/piwik/piwik.php:96 +msgid "" +"Absolute path to your Piwik installation. (without protocol (http/s), with " +"trailing slash)" msgstr "" -#: ../../addon/hzfiles/hzfiles.php:82 -msgid "This will import all your cloud files from another server." +#: ../../addon/piwik/piwik.php:97 +msgid "Site ID" msgstr "" -#: ../../addon/hzfiles/hzfiles.php:83 -msgid "Hubzilla Server base URL" +#: ../../addon/piwik/piwik.php:98 +msgid "Show opt-out cookie link?" msgstr "" -#: ../../addon/authchoose/Mod_Authchoose.php:30 -msgid "" -"Allow magic authentication only to websites of your immediate connections" +#: ../../addon/piwik/piwik.php:99 +msgid "Asynchronous tracking" msgstr "" -#: ../../addon/authchoose/Mod_Authchoose.php:36 -msgid "Authchoose" +#: ../../addon/piwik/piwik.php:100 +msgid "Enable frontend JavaScript error tracking" msgstr "" -#: ../../addon/pageheader/Mod_Pageheader.php:22 -msgid "pageheader Settings saved." +#: ../../addon/piwik/piwik.php:100 +msgid "This feature requires Piwik >= 2.2.0" msgstr "" -#: ../../addon/pageheader/Mod_Pageheader.php:41 -msgid "Message to display on every page on this server" +#: ../../addon/piwik/piwik.php:116 ../../addon/twitter/twitter.php:493 +#: ../../addon/xmpp/xmpp.php:54 ../../addon/rendezvous/rendezvous.php:82 +#: ../../addon/openstreetmap/openstreetmap.php:171 +#: ../../addon/logrot/logrot.php:54 ../../addon/msgfooter/msgfooter.php:54 +#: ../../addon/diaspora/diaspora.php:105 +#: ../../Zotlabs/Module/Settings/Channel.php:150 +#: ../../Zotlabs/Module/Defperms.php:111 +msgid "Settings updated." msgstr "" -#: ../../addon/pageheader/Mod_Pageheader.php:49 -msgid "Page Header" +#: ../../addon/hubwall/hubwall.php:19 +msgid "Send email to all members" msgstr "" -#: ../../addon/irc/Mod_Irc.php:23 ../../addon/irc/irc.php:41 -msgid "Popular Channels" +#: ../../addon/hubwall/hubwall.php:33 ../../Zotlabs/Lib/Enotify.php:65 +#, php-format +msgid "%s Administrator" msgstr "" -#: ../../addon/irc/irc.php:37 -msgid "Channels to auto connect" +#: ../../addon/hubwall/hubwall.php:50 ../../addon/mailtest/mailtest.php:50 +msgid "No recipients found." msgstr "" -#: ../../addon/irc/irc.php:37 ../../addon/irc/irc.php:41 -msgid "Comma separated list" +#: ../../addon/hubwall/hubwall.php:73 +#, php-format +msgid "%1$d of %2$d messages sent." msgstr "" -#: ../../addon/irc/irc.php:45 -msgid "IRC Settings" +#: ../../addon/hubwall/hubwall.php:81 +msgid "Send email to all hub members." msgstr "" -#: ../../addon/irc/irc.php:54 -msgid "IRC settings saved." +#: ../../addon/hubwall/hubwall.php:92 ../../addon/mailtest/mailtest.php:96 +msgid "Message subject" msgstr "" -#: ../../addon/irc/irc.php:58 -msgid "IRC Chatroom" +#: ../../addon/hubwall/hubwall.php:93 +msgid "Sender Email address" msgstr "" -#: ../../addon/xmpp/xmpp.php:44 -msgid "Jabber BOSH host" +#: ../../addon/hubwall/hubwall.php:94 +msgid "Test mode (only send to hub administrator)" msgstr "" -#: ../../addon/xmpp/xmpp.php:45 -msgid "Use central userbase" +#: ../../addon/testdrive/testdrive.php:104 +#, php-format +msgid "Your account on %s will expire in a few days." msgstr "" -#: ../../addon/xmpp/xmpp.php:45 -msgid "" -"If enabled, members will automatically login to an ejabberd server that has " -"to be installed on this machine with synchronized credentials via the " -"\"auth_ejabberd.php\" script." +#: ../../addon/testdrive/testdrive.php:105 +msgid "Your test account is about to expire." msgstr "" -#: ../../addon/xmpp/Mod_Xmpp.php:23 -msgid "XMPP settings updated." +#: ../../addon/gravatar/gravatar.php:123 +msgid "generic profile image" msgstr "" -#: ../../addon/xmpp/Mod_Xmpp.php:35 -msgid "XMPP App" +#: ../../addon/gravatar/gravatar.php:124 +msgid "random geometric pattern" msgstr "" -#: ../../addon/xmpp/Mod_Xmpp.php:36 -msgid "Embedded XMPP (Jabber) client" +#: ../../addon/gravatar/gravatar.php:125 +msgid "monster face" msgstr "" -#: ../../addon/xmpp/Mod_Xmpp.php:52 -msgid "Individual credentials" +#: ../../addon/gravatar/gravatar.php:126 +msgid "computer generated face" msgstr "" -#: ../../addon/xmpp/Mod_Xmpp.php:58 -msgid "Jabber BOSH server" +#: ../../addon/gravatar/gravatar.php:127 +msgid "retro arcade style face" msgstr "" -#: ../../addon/xmpp/Mod_Xmpp.php:67 -msgid "XMPP Settings" +#: ../../addon/gravatar/gravatar.php:128 +msgid "Hub default profile photo" msgstr "" -#: ../../include/text.php:546 -msgid "prev" +#: ../../addon/gravatar/gravatar.php:143 +msgid "Information" msgstr "" -#: ../../include/text.php:548 -msgid "first" +#: ../../addon/gravatar/gravatar.php:143 +msgid "" +"Libravatar addon is installed, too. Please disable Libravatar addon or this " +"Gravatar addon.
The Libravatar addon will fall back to Gravatar if " +"nothing was found at Libravatar." msgstr "" -#: ../../include/text.php:577 -msgid "last" +#: ../../addon/gravatar/gravatar.php:150 ../../addon/xmpp/xmpp.php:43 +#: ../../addon/msgfooter/msgfooter.php:46 +msgid "Save Settings" msgstr "" -#: ../../include/text.php:580 -msgid "next" +#: ../../addon/gravatar/gravatar.php:151 +msgid "Default avatar image" msgstr "" -#: ../../include/text.php:598 -msgid "older" +#: ../../addon/gravatar/gravatar.php:151 +msgid "Select default avatar image if none was found at Gravatar. See README" msgstr "" -#: ../../include/text.php:600 -msgid "newer" +#: ../../addon/gravatar/gravatar.php:152 +msgid "Rating of images" msgstr "" -#: ../../include/text.php:1055 ../../include/features.php:133 -#: ../../Zotlabs/Module/Connections.php:390 ../../Zotlabs/Lib/Apps.php:337 -msgid "Connections" +#: ../../addon/gravatar/gravatar.php:152 +msgid "Select the appropriate avatar rating for your site. See README" msgstr "" -#: ../../include/text.php:1063 ../../Zotlabs/Module/Viewconnections.php:80 -#: ../../Zotlabs/Module/Connections.php:297 -msgid "Accepts" +#: ../../addon/gravatar/gravatar.php:165 +msgid "Gravatar settings updated." msgstr "" -#: ../../include/text.php:1066 ../../Zotlabs/Module/Viewconnections.php:83 -#: ../../Zotlabs/Module/Connections.php:300 -msgid "Comments" +#: ../../addon/pageheader/Mod_Pageheader.php:22 +msgid "pageheader Settings saved." msgstr "" -#: ../../include/text.php:1071 ../../Zotlabs/Module/Viewconnections.php:88 -#: ../../Zotlabs/Module/Connections.php:305 -msgid "Stream items" +#: ../../addon/pageheader/Mod_Pageheader.php:41 +msgid "Message to display on every page on this server" msgstr "" -#: ../../include/text.php:1076 ../../Zotlabs/Module/Viewconnections.php:93 -#: ../../Zotlabs/Module/Connections.php:310 -msgid "Wall posts" +#: ../../addon/pageheader/Mod_Pageheader.php:49 +msgid "Page Header" msgstr "" -#: ../../include/text.php:1080 ../../Zotlabs/Module/Viewconnections.php:97 -#: ../../Zotlabs/Module/Connections.php:314 -msgid "Nothing" +#: ../../addon/mdpost/mdpost.php:42 +msgid "Use markdown for editing posts" msgstr "" -#: ../../include/text.php:1093 -#, php-format -msgid "View all %s connections" +#: ../../addon/ldapauth/ldapauth.php:101 +msgid "An account has been created for you." msgstr "" -#: ../../include/text.php:1156 -#, php-format -msgid "Network: %s" +#: ../../addon/ldapauth/ldapauth.php:108 +msgid "Authentication successful but rejected: account creation is disabled." msgstr "" -#: ../../include/text.php:1167 ../../include/text.php:1179 -#: ../../include/nav.php:193 ../../include/acl_selectors.php:149 -#: ../../Zotlabs/Widget/Sitesearch.php:37 -#: ../../Zotlabs/Widget/Activity_filter.php:210 -#: ../../Zotlabs/Module/Search.php:46 ../../Zotlabs/Module/Connections.php:394 -#: ../../Zotlabs/Lib/Apps.php:357 -msgid "Search" +#: ../../addon/twitter/Mod_Twitter.php:65 +msgid "Twitter settings updated." msgstr "" -#: ../../include/text.php:1259 ../../include/text.php:1263 -msgid "poke" +#: ../../addon/twitter/Mod_Twitter.php:101 +msgid "" +"No consumer key pair for Twitter found. Please contact your site " +"administrator." msgstr "" -#: ../../include/text.php:1259 ../../include/text.php:1263 -#: ../../include/conversation.php:277 -msgid "poked" +#: ../../addon/twitter/Mod_Twitter.php:123 +msgid "" +"At this Hubzilla instance the Twitter plugin was enabled but you have not " +"yet connected your account to your Twitter account. To do so click the " +"button below to get a PIN from Twitter which you have to copy into the input " +"box below and submit the form. Only your public posts will " +"be posted to Twitter." msgstr "" -#: ../../include/text.php:1264 -msgid "ping" +#: ../../addon/twitter/Mod_Twitter.php:125 +msgid "Log in with Twitter" msgstr "" -#: ../../include/text.php:1264 -msgid "pinged" +#: ../../addon/twitter/Mod_Twitter.php:128 +msgid "Copy the PIN from Twitter here" msgstr "" -#: ../../include/text.php:1265 -msgid "prod" +#: ../../addon/twitter/Mod_Twitter.php:145 +#: ../../addon/statusnet/Mod_Statusnet.php:270 +msgid "Currently connected to: " msgstr "" -#: ../../include/text.php:1265 -msgid "prodded" +#: ../../addon/twitter/Mod_Twitter.php:150 +msgid "" +"Note: Due your privacy settings (Hide your profile " +"details from unknown viewers?) the link potentially included in public " +"postings relayed to Twitter will lead the visitor to a blank page informing " +"the visitor that the access to your profile has been restricted." msgstr "" -#: ../../include/text.php:1266 -msgid "slap" +#: ../../addon/twitter/Mod_Twitter.php:155 +msgid "Twitter post length" msgstr "" -#: ../../include/text.php:1266 -msgid "slapped" +#: ../../addon/twitter/Mod_Twitter.php:155 +msgid "Maximum tweet length" msgstr "" -#: ../../include/text.php:1267 -msgid "finger" +#: ../../addon/twitter/Mod_Twitter.php:160 +msgid "Send public postings to Twitter by default" msgstr "" -#: ../../include/text.php:1267 -msgid "fingered" +#: ../../addon/twitter/Mod_Twitter.php:160 +msgid "" +"If enabled your public postings will be posted to the associated Twitter " +"account by default" msgstr "" -#: ../../include/text.php:1268 -msgid "rebuff" +#: ../../addon/twitter/Mod_Twitter.php:169 +#: ../../addon/statusnet/Mod_Statusnet.php:289 +msgid "Clear OAuth configuration" msgstr "" -#: ../../include/text.php:1268 -msgid "rebuffed" +#: ../../addon/twitter/Mod_Twitter.php:179 +msgid "Twitter Crosspost Connector" msgstr "" -#: ../../include/text.php:1291 -msgid "happy" +#: ../../addon/twitter/twitter.php:109 +msgid "Post to Twitter" msgstr "" -#: ../../include/text.php:1292 -msgid "sad" +#: ../../addon/twitter/twitter.php:502 ../../addon/rendezvous/rendezvous.php:95 +msgid "Submit Settings" msgstr "" -#: ../../include/text.php:1293 -msgid "mellow" +#: ../../addon/twitter/twitter.php:504 ../../addon/statusnet/statusnet.php:596 +#: ../../Zotlabs/Module/Oauth.php:112 ../../Zotlabs/Module/Oauth.php:138 +msgid "Consumer Key" msgstr "" -#: ../../include/text.php:1294 -msgid "tired" +#: ../../addon/twitter/twitter.php:505 ../../addon/statusnet/statusnet.php:595 +#: ../../Zotlabs/Module/Oauth2.php:117 ../../Zotlabs/Module/Oauth2.php:145 +#: ../../Zotlabs/Module/Oauth.php:113 ../../Zotlabs/Module/Oauth.php:139 +msgid "Consumer Secret" msgstr "" -#: ../../include/text.php:1295 -msgid "perky" +#: ../../addon/planets/Mod_Planets.php:23 +msgid "Random Planet App" msgstr "" -#: ../../include/text.php:1296 -msgid "angry" +#: ../../addon/planets/Mod_Planets.php:25 +msgid "" +"Set a random planet from the Star Wars Empire as your location when posting" msgstr "" -#: ../../include/text.php:1297 -msgid "stupefied" +#: ../../addon/startpage/Mod_Startpage.php:60 +msgid "Page to load after login" msgstr "" -#: ../../include/text.php:1298 -msgid "puzzled" +#: ../../addon/startpage/Mod_Startpage.php:60 +msgid "" +"Examples: "apps", "network?f=&gid=37" (privacy " +"collection), "channel" or "notifications/system" (leave " +"blank for default network page (grid)." msgstr "" -#: ../../include/text.php:1299 -msgid "interested" +#: ../../addon/startpage/Mod_Startpage.php:68 +msgid "Startpage" msgstr "" -#: ../../include/text.php:1300 -msgid "bitter" +#: ../../addon/hsse/Mod_Hsse.php:15 +msgid "WYSIWYG status editor" msgstr "" -#: ../../include/text.php:1301 -msgid "cheerful" +#: ../../addon/hsse/Mod_Hsse.php:24 +msgid "WYSIWYG Status App" msgstr "" -#: ../../include/text.php:1302 -msgid "alive" +#: ../../addon/hsse/Mod_Hsse.php:32 +msgid "WYSIWYG Status" msgstr "" -#: ../../include/text.php:1303 -msgid "annoyed" +#: ../../addon/pubcrawl/as.php:1958 ../../addon/diaspora/Receiver.php:1647 +#: ../../Zotlabs/Module/Like.php:445 ../../Zotlabs/Module/Subthread.php:115 +msgid "status" msgstr "" -#: ../../include/text.php:1304 -msgid "anxious" +#: ../../addon/pubcrawl/Mod_Pubcrawl.php:25 +msgid "ActivityPub Protocol Settings updated." msgstr "" -#: ../../include/text.php:1305 -msgid "cranky" +#: ../../addon/pubcrawl/Mod_Pubcrawl.php:41 +msgid "" +"The activitypub protocol does not support location independence. Connections " +"you make within that network may be unreachable from alternate channel " +"locations." msgstr "" -#: ../../include/text.php:1306 -msgid "disturbed" +#: ../../addon/pubcrawl/Mod_Pubcrawl.php:47 +msgid "Deliver to ActivityPub recipients in privacy groups" msgstr "" -#: ../../include/text.php:1307 -msgid "frustrated" +#: ../../addon/pubcrawl/Mod_Pubcrawl.php:47 +msgid "" +"May result in a large number of mentions and expose all the members of your " +"privacy group" msgstr "" -#: ../../include/text.php:1308 -msgid "depressed" +#: ../../addon/pubcrawl/Mod_Pubcrawl.php:51 +msgid "Send multi-media HTML articles" msgstr "" -#: ../../include/text.php:1309 -msgid "motivated" +#: ../../addon/pubcrawl/Mod_Pubcrawl.php:51 +msgid "Not supported by some microblog services such as Mastodon" msgstr "" -#: ../../include/text.php:1310 -msgid "relaxed" -msgstr "" - -#: ../../include/text.php:1311 -msgid "surprised" +#: ../../addon/pubcrawl/Mod_Pubcrawl.php:59 +msgid "Activitypub Protocol" msgstr "" -#: ../../include/text.php:1499 ../../include/js_strings.php:100 -msgid "Monday" +#: ../../addon/fediwordle/Mod_Fediwordle.php:22 +msgid "Fediwordle App" msgstr "" -#: ../../include/text.php:1499 ../../include/js_strings.php:101 -msgid "Tuesday" +#: ../../addon/fediwordle/Mod_Fediwordle.php:23 +msgid "A distributed word game inspired by wordle." msgstr "" -#: ../../include/text.php:1499 ../../include/js_strings.php:102 -msgid "Wednesday" +#: ../../addon/fediwordle/Mod_Fediwordle.php:24 +msgid "" +"To start a game, enter [wordle]your_word[/wordle] somewhere in a toplevel " +"post." msgstr "" -#: ../../include/text.php:1499 ../../include/js_strings.php:103 -msgid "Thursday" +#: ../../addon/fediwordle/Mod_Fediwordle.php:25 +msgid "Your contacts can post their guess in the comments." msgstr "" -#: ../../include/text.php:1499 ../../include/js_strings.php:104 -msgid "Friday" +#: ../../addon/fediwordle/Mod_Fediwordle.php:26 +msgid "" +"Your channel will evaluate the guess and automatically post the response." msgstr "" -#: ../../include/text.php:1499 ../../include/js_strings.php:105 -msgid "Saturday" +#: ../../addon/fediwordle/Mod_Fediwordle.php:28 +msgid "Correct letters" msgstr "" -#: ../../include/text.php:1499 ../../include/js_strings.php:99 -msgid "Sunday" +#: ../../addon/fediwordle/Mod_Fediwordle.php:29 +msgid "Letters contained in the word but at the wrong spot" msgstr "" -#: ../../include/text.php:1503 ../../include/js_strings.php:75 -msgid "January" +#: ../../addon/fediwordle/Mod_Fediwordle.php:30 +msgid "Letters not contained in the word" msgstr "" -#: ../../include/text.php:1503 ../../include/js_strings.php:76 -msgid "February" +#: ../../addon/fediwordle/fediwordle.php:211 +msgid "ERROR: word length is not correct!" msgstr "" -#: ../../include/text.php:1503 ../../include/js_strings.php:77 -msgid "March" +#: ../../addon/notifyadmin/notifyadmin.php:34 +msgid "New registration" msgstr "" -#: ../../include/text.php:1503 ../../include/js_strings.php:78 -msgid "April" +#: ../../addon/notifyadmin/notifyadmin.php:40 +#: ../../Zotlabs/Module/Invite.php:265 +#, php-format +msgid "%s : Message delivery failed." msgstr "" -#: ../../include/text.php:1503 -msgid "May" +#: ../../addon/notifyadmin/notifyadmin.php:42 +#, php-format +msgid "Message sent to %s. New account registration: %s" msgstr "" -#: ../../include/text.php:1503 ../../include/js_strings.php:80 -msgid "June" +#: ../../addon/libertree/Mod_Libertree.php:25 +msgid "Libertree Crosspost Connector Settings saved." msgstr "" -#: ../../include/text.php:1503 ../../include/js_strings.php:81 -msgid "July" +#: ../../addon/libertree/Mod_Libertree.php:49 +msgid "Libertree API token" msgstr "" -#: ../../include/text.php:1503 ../../include/js_strings.php:82 -msgid "August" +#: ../../addon/libertree/Mod_Libertree.php:53 +msgid "Libertree site URL" msgstr "" -#: ../../include/text.php:1503 ../../include/js_strings.php:83 -msgid "September" +#: ../../addon/libertree/Mod_Libertree.php:57 +msgid "Post to Libertree by default" msgstr "" -#: ../../include/text.php:1503 ../../include/js_strings.php:84 -msgid "October" +#: ../../addon/libertree/Mod_Libertree.php:65 +msgid "Libertree Crosspost Connector" msgstr "" -#: ../../include/text.php:1503 ../../include/js_strings.php:85 -msgid "November" +#: ../../addon/libertree/libertree.php:43 +msgid "Post to Libertree" msgstr "" -#: ../../include/text.php:1503 ../../include/js_strings.php:86 -msgid "December" +#: ../../addon/nofed/Mod_Nofed.php:21 +msgid "nofed Settings saved." msgstr "" -#: ../../include/text.php:1569 -msgid "Unknown Attachment" +#: ../../addon/nofed/Mod_Nofed.php:40 +msgid "Federate posts by default" msgstr "" -#: ../../include/text.php:1571 ../../Zotlabs/Module/Sharedwithme.php:108 -#: ../../Zotlabs/Storage/Browser.php:379 -msgid "Size" +#: ../../addon/nofed/Mod_Nofed.php:48 +msgid "No Federation" msgstr "" -#: ../../include/text.php:1571 ../../include/feedutils.php:871 -msgid "unknown" +#: ../../addon/nofed/nofed.php:47 +msgid "Federate" msgstr "" -#: ../../include/text.php:1614 -msgid "remove category" +#: ../../addon/wholikesme/wholikesme.php:29 +msgid "Who likes me?" msgstr "" -#: ../../include/text.php:1691 -msgid "remove from file" +#: ../../addon/buglink/buglink.php:16 ../../Zotlabs/Lib/Apps.php:333 +msgid "Report Bug" msgstr "" -#: ../../include/text.php:1878 -msgid "Download binary/encrypted content" +#: ../../addon/sendzid/Mod_Sendzid.php:21 +msgid "Send your identity to all websites" msgstr "" -#: ../../include/text.php:1936 ../../include/text.php:1945 -#: ../../include/text.php:1972 ../../include/text.php:1981 -#, php-format -msgctxt "noun" -msgid "%d Vote" -msgid_plural "%d Votes" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/text.php:1988 -#, php-format -msgctxt "noun" -msgid "%d Vote in total" -msgid_plural "%d Votes in total" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/text.php:1994 -msgid "Poll has ended" +#: ../../addon/sendzid/Mod_Sendzid.php:29 +msgid "Send ZID" msgstr "" -#: ../../include/text.php:1997 -#, php-format -msgid "Poll ends in %s" +#: ../../addon/workflow/workflow.php:222 +msgid "Workflow user." msgstr "" -#: ../../include/text.php:2004 ../../Zotlabs/Lib/ThreadItem.php:453 -msgid "Vote" +#: ../../addon/workflow/workflow.php:272 +msgid "This channel" msgstr "" -#: ../../include/text.php:2159 -msgid "Link to Source" +#: ../../addon/workflow/workflow.php:285 ../../Zotlabs/Module/Locs.php:123 +msgid "Primary" msgstr "" -#: ../../include/text.php:2181 ../../include/language.php:433 -msgid "default" +#: ../../addon/workflow/workflow.php:327 +msgid "Create New Workflow Item" msgstr "" -#: ../../include/text.php:2189 -msgid "Page layout" +#: ../../addon/workflow/workflow.php:546 ../../addon/workflow/workflow.php:1442 +#: ../../addon/workflow/workflow.php:1461 +msgid "Workflow" msgstr "" -#: ../../include/text.php:2189 -msgid "You can create your own with the layouts tool" +#: ../../addon/workflow/workflow.php:1430 +msgid "No Workflows Available" msgstr "" -#: ../../include/text.php:2200 -msgid "HTML" +#: ../../addon/workflow/workflow.php:1460 +msgid "Add item to which workflow" msgstr "" -#: ../../include/text.php:2203 -msgid "Comanche Layout" +#: ../../addon/workflow/workflow.php:1520 +#: ../../addon/workflow/workflow.php:1639 +msgid "Create Workflow Item" msgstr "" -#: ../../include/text.php:2208 -msgid "PHP" +#: ../../addon/workflow/workflow.php:2601 +msgid "Link" msgstr "" -#: ../../include/text.php:2217 -msgid "Page content type" +#: ../../addon/workflow/workflow.php:2603 +msgid "Web link." msgstr "" -#: ../../include/text.php:2340 ../../include/event.php:1347 -#: ../../include/conversation.php:142 -#: ../../Zotlabs/Module/Channel_calendar.php:221 -#: ../../Zotlabs/Module/Like.php:447 ../../Zotlabs/Module/Tagger.php:75 -msgid "event" +#: ../../addon/workflow/workflow.php:2622 +#: ../../addon/workflow/workflow.php:2683 ../../Zotlabs/Module/Connedit.php:734 +#: ../../Zotlabs/Module/Cdav.php:1376 +msgid "Title" msgstr "" -#: ../../include/text.php:2343 ../../include/conversation.php:168 -#: ../../include/bbcode.php:564 ../../include/markdown.php:205 -#: ../../Zotlabs/Module/Tagger.php:79 ../../Zotlabs/Lib/Activity.php:3546 -msgid "post" +#: ../../addon/workflow/workflow.php:2624 +#: ../../addon/workflow/workflow.php:2685 +msgid "Brief description or title" msgstr "" -#: ../../include/text.php:2345 ../../include/conversation.php:170 -#: ../../Zotlabs/Module/Tagger.php:81 -msgid "comment" +#: ../../addon/workflow/workflow.php:2630 ../../Zotlabs/Lib/Apps.php:375 +#: ../../Zotlabs/Widget/Notes.php:38 +msgid "Notes" msgstr "" -#: ../../include/text.php:2350 -msgid "activity" +#: ../../addon/workflow/workflow.php:2632 +#: ../../addon/workflow/workflow.php:2693 +msgid "Notes and Info" msgstr "" -#: ../../include/text.php:2353 -msgid "poll" +#: ../../addon/workflow/workflow.php:2691 +msgid "Body" msgstr "" -#: ../../include/text.php:2466 -msgid "a-z, 0-9, -, and _ only" +#: ../../addon/workflow/Settings/Mod_WorkflowSettings.php:101 +msgid "Workflow Settings" msgstr "" -#: ../../include/text.php:2771 -msgid "Design Tools" +#: ../../addon/hideaside/Mod_Hideaside.php:28 +msgid "Hide Aside App" msgstr "" -#: ../../include/text.php:2774 ../../Zotlabs/Module/Blocks.php:154 -msgid "Blocks" +#: ../../addon/hideaside/Mod_Hideaside.php:29 +msgid "Fade out aside areas after a while when using endless scroll" msgstr "" -#: ../../include/text.php:2775 ../../Zotlabs/Module/Menu.php:171 -msgid "Menus" +#: ../../addon/xmpp/xmpp.php:44 +msgid "Jabber BOSH host" msgstr "" -#: ../../include/text.php:2776 ../../Zotlabs/Module/Layouts.php:184 -msgid "Layouts" +#: ../../addon/xmpp/xmpp.php:45 +msgid "Use central userbase" msgstr "" -#: ../../include/text.php:2777 -msgid "Pages" +#: ../../addon/xmpp/xmpp.php:45 +msgid "" +"If enabled, members will automatically login to an ejabberd server that has " +"to be installed on this machine with synchronized credentials via the " +"\"auth_ejabberd.php\" script." msgstr "" -#: ../../include/text.php:2789 -msgid "Import" +#: ../../addon/xmpp/Mod_Xmpp.php:23 +msgid "XMPP settings updated." msgstr "" -#: ../../include/text.php:2790 -msgid "Import website..." +#: ../../addon/xmpp/Mod_Xmpp.php:35 +msgid "XMPP App" msgstr "" -#: ../../include/text.php:2791 -msgid "Select folder to import" +#: ../../addon/xmpp/Mod_Xmpp.php:35 ../../addon/ijpost/Mod_Ijpost.php:35 +#: ../../Zotlabs/Module/Lang.php:20 ../../Zotlabs/Module/Invite.php:69 +msgid "Not Installed" msgstr "" -#: ../../include/text.php:2792 -msgid "Import from a zipped folder:" +#: ../../addon/xmpp/Mod_Xmpp.php:36 +msgid "Embedded XMPP (Jabber) client" msgstr "" -#: ../../include/text.php:2793 -msgid "Import from cloud files:" +#: ../../addon/xmpp/Mod_Xmpp.php:52 +msgid "Individual credentials" msgstr "" -#: ../../include/text.php:2794 -msgid "/cloud/channel/path/to/folder" +#: ../../addon/xmpp/Mod_Xmpp.php:58 +msgid "Jabber BOSH server" msgstr "" -#: ../../include/text.php:2795 -msgid "Enter path to website files" +#: ../../addon/xmpp/Mod_Xmpp.php:67 +msgid "XMPP Settings" msgstr "" -#: ../../include/text.php:2796 -msgid "Select folder" +#: ../../addon/visage/Mod_Visage.php:23 +msgid "Recent Channel/Profile Viewers" msgstr "" -#: ../../include/text.php:2797 -msgid "Export website..." +#: ../../addon/visage/Mod_Visage.php:34 +msgid "No entries." msgstr "" -#: ../../include/text.php:2798 -msgid "Export to a zip file" +#: ../../addon/rendezvous/rendezvous.php:57 +msgid "Errors encountered deleting database table " msgstr "" -#: ../../include/text.php:2799 -msgid "website.zip" +#: ../../addon/rendezvous/rendezvous.php:96 +msgid "Drop tables when uninstalling?" msgstr "" -#: ../../include/text.php:2800 -msgid "Enter a name for the zip file." +#: ../../addon/rendezvous/rendezvous.php:96 +msgid "" +"If checked, the Rendezvous database tables will be deleted when the plugin " +"is uninstalled." msgstr "" -#: ../../include/text.php:2801 -msgid "Export to cloud files" +#: ../../addon/rendezvous/rendezvous.php:97 +msgid "Mapbox Access Token" msgstr "" -#: ../../include/text.php:2802 -msgid "/path/to/export/folder" +#: ../../addon/rendezvous/rendezvous.php:97 +msgid "" +"If you enter a Mapbox access token, it will be used to retrieve map tiles " +"from Mapbox instead of the default OpenStreetMap tile server." msgstr "" -#: ../../include/text.php:2803 -msgid "Enter a path to a cloud files destination." +#: ../../addon/rendezvous/rendezvous.php:162 +msgid "Rendezvous" msgstr "" -#: ../../include/text.php:2804 -msgid "Specify folder" +#: ../../addon/rendezvous/rendezvous.php:167 +msgid "" +"This identity has been deleted by another member due to inactivity. Please " +"press the \"New identity\" button or refresh the page to register a new " +"identity. You may use the same name." msgstr "" -#: ../../include/opengraph.php:56 -#, php-format -msgid "This is the home page of %s." +#: ../../addon/rendezvous/rendezvous.php:168 +msgid "Welcome to Rendezvous!" msgstr "" -#: ../../include/event.php:33 ../../include/event.php:128 -msgid "l F d, Y \\@ g:i A" +#: ../../addon/rendezvous/rendezvous.php:169 +msgid "" +"Enter your name to join this rendezvous. To begin sharing your location with " +"the other members, tap the GPS control. When your location is discovered, a " +"red dot will appear and others will be able to see you on the map." msgstr "" -#: ../../include/event.php:41 -msgid "Starts:" +#: ../../addon/rendezvous/rendezvous.php:171 +msgid "Let's meet here" msgstr "" -#: ../../include/event.php:51 -msgid "Finishes:" +#: ../../addon/rendezvous/rendezvous.php:172 ../../addon/wiki/Mod_Wiki.php:221 +#: ../../addon/wiki/Lib/NativeWikiPage.php:588 +#: ../../addon/wiki/Widget/Wiki_page_history.php:28 +#: ../../Zotlabs/Module/Oauth2.php:116 ../../Zotlabs/Module/Oauth2.php:144 +#: ../../Zotlabs/Module/Oauth.php:111 ../../Zotlabs/Module/Oauth.php:137 +#: ../../Zotlabs/Module/Chat.php:256 ../../Zotlabs/Module/Connedit.php:732 +#: ../../Zotlabs/Module/Admin/Channels.php:159 +#: ../../Zotlabs/Module/Cdav.php:1374 ../../Zotlabs/Module/Sharedwithme.php:107 +#: ../../Zotlabs/Storage/Browser.php:380 +msgid "Name" msgstr "" -#: ../../include/event.php:63 ../../include/event.php:153 -#: ../../include/channel.php:1625 ../../Zotlabs/Module/Directory.php:353 -msgid "Location:" +#: ../../addon/rendezvous/rendezvous.php:173 +#: ../../addon/cart/submodules/hzservices.php:657 +#: ../../addon/cart/submodules/manualcat.php:260 +#: ../../Zotlabs/Module/Appman.php:210 ../../Zotlabs/Module/Cdav.php:1015 +#: ../../Zotlabs/Module/Rbmark.php:100 +msgid "Description" msgstr "" -#: ../../include/event.php:128 -msgid "l F d, Y" +#: ../../addon/rendezvous/rendezvous.php:174 +msgid "New marker" msgstr "" -#: ../../include/event.php:132 -msgid "Start:" +#: ../../addon/rendezvous/rendezvous.php:175 +msgid "Edit marker" msgstr "" -#: ../../include/event.php:136 -msgid "End:" +#: ../../addon/rendezvous/rendezvous.php:176 +msgid "New identity" msgstr "" -#: ../../include/event.php:1193 -msgid "This event has been added to your calendar." +#: ../../addon/rendezvous/rendezvous.php:177 +msgid "Delete marker" msgstr "" -#: ../../include/event.php:1426 -msgid "Not specified" +#: ../../addon/rendezvous/rendezvous.php:178 +msgid "Delete member" msgstr "" -#: ../../include/event.php:1427 -msgid "Needs Action" +#: ../../addon/rendezvous/rendezvous.php:179 +msgid "Edit proximity alert" msgstr "" -#: ../../include/event.php:1428 -msgid "Completed" +#: ../../addon/rendezvous/rendezvous.php:180 +msgid "" +"A proximity alert will be issued when this member is within a certain radius " +"of you.

Enter a radius in meters (0 to disable):" msgstr "" -#: ../../include/event.php:1429 -msgid "In Process" +#: ../../addon/rendezvous/rendezvous.php:180 +#: ../../addon/rendezvous/rendezvous.php:185 +msgid "distance" msgstr "" -#: ../../include/event.php:1430 -msgid "Cancelled" +#: ../../addon/rendezvous/rendezvous.php:181 +msgid "Proximity alert distance (meters)" msgstr "" -#: ../../include/event.php:1511 ../../include/connections.php:752 -#: ../../Zotlabs/Module/Cdav.php:1381 ../../Zotlabs/Module/Connedit.php:741 -msgid "Mobile" +#: ../../addon/rendezvous/rendezvous.php:182 +#: ../../addon/rendezvous/rendezvous.php:184 +msgid "" +"A proximity alert will be issued when you are within a certain radius of the " +"marker location.

Enter a radius in meters (0 to disable):" msgstr "" -#: ../../include/event.php:1512 ../../include/connections.php:753 -#: ../../Zotlabs/Widget/Notifications.php:43 ../../Zotlabs/Module/Cdav.php:1382 -#: ../../Zotlabs/Module/Connedit.php:742 -msgid "Home" +#: ../../addon/rendezvous/rendezvous.php:183 +msgid "Marker proximity alert" msgstr "" -#: ../../include/event.php:1513 ../../include/connections.php:754 -msgid "Home, Voice" +#: ../../addon/rendezvous/rendezvous.php:186 +msgid "Reminder note" msgstr "" -#: ../../include/event.php:1514 ../../include/connections.php:755 -msgid "Home, Fax" +#: ../../addon/rendezvous/rendezvous.php:187 +msgid "" +"Enter a note to be displayed when you are within the specified proximity..." msgstr "" -#: ../../include/event.php:1515 ../../include/connections.php:756 -#: ../../Zotlabs/Module/Cdav.php:1383 ../../Zotlabs/Module/Connedit.php:743 -msgid "Work" +#: ../../addon/rendezvous/rendezvous.php:199 +msgid "Add new rendezvous" msgstr "" -#: ../../include/event.php:1516 ../../include/connections.php:757 -msgid "Work, Voice" +#: ../../addon/rendezvous/rendezvous.php:200 +msgid "" +"Create a new rendezvous and share the access link with those you wish to " +"invite to the group. Those who open the link become members of the " +"rendezvous. They can view other member locations, add markers to the map, or " +"share their own locations with the group." msgstr "" -#: ../../include/event.php:1517 ../../include/connections.php:758 -msgid "Work, Fax" +#: ../../addon/rendezvous/rendezvous.php:232 +msgid "You have no rendezvous. Press the button above to create a rendezvous!" msgstr "" -#: ../../include/event.php:1518 ../../include/event.php:1525 -#: ../../include/selectors.php:64 ../../include/selectors.php:81 -#: ../../include/selectors.php:119 ../../include/selectors.php:155 -#: ../../include/connections.php:759 ../../include/connections.php:766 -#: ../../Zotlabs/Module/Cdav.php:1384 ../../Zotlabs/Module/Connedit.php:744 -#: ../../Zotlabs/Access/PermissionRoles.php:360 -msgid "Other" +#: ../../addon/rendezvous/rendezvous.php:401 ../../Zotlabs/Module/Setup.php:730 +msgid "Errors encountered creating database tables." msgstr "" -#: ../../include/features.php:55 ../../Zotlabs/Module/Admin/Features.php:55 -#: ../../Zotlabs/Module/Admin/Features.php:56 -#: ../../Zotlabs/Module/Settings/Features.php:38 -msgid "Off" +#: ../../addon/channelreputation/channelreputation.php:101 +#: ../../addon/channelreputation/channelreputation.php:102 +#: ../../addon/cart/myshop.php:144 ../../addon/cart/myshop.php:180 +#: ../../addon/cart/myshop.php:214 ../../addon/cart/myshop.php:261 +#: ../../addon/cart/myshop.php:296 ../../addon/cart/myshop.php:319 +msgid "Access Denied" msgstr "" -#: ../../include/features.php:55 ../../Zotlabs/Module/Admin/Features.php:55 -#: ../../Zotlabs/Module/Admin/Features.php:56 -#: ../../Zotlabs/Module/Settings/Features.php:38 -msgid "On" +#: ../../addon/channelreputation/channelreputation.php:109 +msgid "Enable Community Moderation" msgstr "" -#: ../../include/features.php:82 ../../include/nav.php:466 -#: ../../include/nav.php:469 ../../Zotlabs/Lib/Apps.php:350 -msgid "Calendar" +#: ../../addon/channelreputation/channelreputation.php:117 +msgid "Reputation automatically given to new members" msgstr "" -#: ../../include/features.php:86 -msgid "Start calendar week on Monday" +#: ../../addon/channelreputation/channelreputation.php:118 +msgid "Reputation will never fall below this value" msgstr "" -#: ../../include/features.php:87 -msgid "Default is Sunday" +#: ../../addon/channelreputation/channelreputation.php:119 +msgid "Minimum reputation before posting is allowed" msgstr "" -#: ../../include/features.php:94 -msgid "Event Timezone Selection" +#: ../../addon/channelreputation/channelreputation.php:120 +msgid "Minimum reputation before commenting is allowed" msgstr "" -#: ../../include/features.php:95 -msgid "Allow event creation in timezones other than your own." +#: ../../addon/channelreputation/channelreputation.php:121 +msgid "Minimum reputation before a member is able to moderate other posts" msgstr "" -#: ../../include/features.php:104 -msgid "Channel Home" +#: ../../addon/channelreputation/channelreputation.php:122 +msgid "" +"Max ratio of moderator's reputation that can be added to/deducted from " +"reputation of person being moderated" msgstr "" -#: ../../include/features.php:108 -msgid "Search by Date" +#: ../../addon/channelreputation/channelreputation.php:123 +msgid "Reputation \"cost\" to post" msgstr "" -#: ../../include/features.php:109 -msgid "Ability to select posts by date ranges" +#: ../../addon/channelreputation/channelreputation.php:124 +msgid "Reputation \"cost\" to comment" msgstr "" -#: ../../include/features.php:116 -msgid "Tag Cloud" +#: ../../addon/channelreputation/channelreputation.php:125 +msgid "" +"Reputation automatically recovers at this rate per hour until it reaches " +"minimum_to_post" msgstr "" -#: ../../include/features.php:117 -msgid "Provide a personal tag cloud on your channel page" +#: ../../addon/channelreputation/channelreputation.php:126 +msgid "" +"When minimum_to_moderate > reputation > minimum_to_post reputation recovers " +"at this rate per hour" msgstr "" -#: ../../include/features.php:124 ../../include/features.php:358 -msgid "Use blog/list mode" +#: ../../addon/channelreputation/channelreputation.php:140 +msgid "Community Moderation Settings" msgstr "" -#: ../../include/features.php:125 ../../include/features.php:359 -msgid "Comments will be displayed separately" +#: ../../addon/channelreputation/channelreputation.php:232 +msgid "Channel Reputation" msgstr "" -#: ../../include/features.php:137 -msgid "Connection Filtering" +#: ../../addon/channelreputation/channelreputation.php:236 +msgid "An Error has occurred." msgstr "" -#: ../../include/features.php:138 -msgid "Filter incoming posts from connections based on keywords/content" +#: ../../addon/channelreputation/channelreputation.php:254 +msgid "Upvote" msgstr "" -#: ../../include/features.php:146 -msgid "Conversation" +#: ../../addon/channelreputation/channelreputation.php:255 +msgid "Downvote" msgstr "" -#: ../../include/features.php:158 -msgid "Emoji Reactions" +#: ../../addon/channelreputation/channelreputation.php:414 +msgid "Can moderate reputation on my channel." msgstr "" -#: ../../include/features.php:159 -msgid "Add emoji reaction ability to posts" +#: ../../addon/bookmarker/bookmarker.php:38 +#: ../../Zotlabs/Lib/ThreadItem.php:474 +msgid "Save Bookmarks" msgstr "" -#: ../../include/features.php:166 -msgid "Dislike Posts" +#: ../../addon/donate/donate.php:21 +msgid "Project Servers and Resources" msgstr "" -#: ../../include/features.php:167 -msgid "Ability to dislike posts/comments" +#: ../../addon/donate/donate.php:22 +msgid "Project Creator and Tech Lead" msgstr "" -#: ../../include/features.php:174 -msgid "Star Posts" +#: ../../addon/donate/donate.php:49 +msgid "" +"And the hundreds of other people and organisations who helped make the " +"Hubzilla possible." msgstr "" -#: ../../include/features.php:175 -msgid "Ability to mark special posts with a star indicator" +#: ../../addon/donate/donate.php:52 +msgid "" +"The Redmatrix/Hubzilla projects are provided primarily by volunteers giving " +"their time and expertise - and often paying out of pocket for services they " +"share with others." msgstr "" -#: ../../include/features.php:182 -msgid "Reply on comment" +#: ../../addon/donate/donate.php:53 +msgid "" +"There is no corporate funding and no ads, and we do not collect and sell " +"your personal information. (We don't control your personal information - " +"you do.)" msgstr "" -#: ../../include/features.php:183 -msgid "Ability to reply on selected comment" +#: ../../addon/donate/donate.php:54 +msgid "" +"Help support our ground-breaking work in decentralisation, web identity, and " +"privacy." msgstr "" -#: ../../include/features.php:192 ../../Zotlabs/Lib/Apps.php:351 -msgid "Directory" +#: ../../addon/donate/donate.php:56 +msgid "" +"Your donations keep servers and services running and also helps us to " +"provide innovative new features and continued development." msgstr "" -#: ../../include/features.php:196 -msgid "Advanced Directory Search" +#: ../../addon/donate/donate.php:59 +msgid "Donate" msgstr "" -#: ../../include/features.php:197 -msgid "Allows creation of complex directory search queries" +#: ../../addon/donate/donate.php:61 +msgid "" +"Choose a project, developer, or public hub to support with a one-time " +"donation" msgstr "" -#: ../../include/features.php:206 -msgid "Editor" +#: ../../addon/donate/donate.php:62 +msgid "Donate Now" msgstr "" -#: ../../include/features.php:210 -msgid "Post Categories" +#: ../../addon/donate/donate.php:63 +msgid "" +"Or become a project sponsor (Hubzilla Project only)" msgstr "" -#: ../../include/features.php:211 -msgid "Add categories to your posts" +#: ../../addon/donate/donate.php:64 +msgid "" +"Please indicate if you would like your first name or full name (or nothing) " +"to appear in our sponsor listing" msgstr "" -#: ../../include/features.php:218 -msgid "Large Photos" +#: ../../addon/donate/donate.php:65 +msgid "Sponsor" msgstr "" -#: ../../include/features.php:219 -msgid "" -"Include large (1024px) photo thumbnails in posts. If not enabled, use small " -"(640px) photo thumbnails" +#: ../../addon/donate/donate.php:68 +msgid "Special thanks to: " msgstr "" -#: ../../include/features.php:226 -msgid "Even More Encryption" +#: ../../addon/photocache/Mod_Photocache.php:27 +msgid "Photo Cache settings saved." msgstr "" -#: ../../include/features.php:227 +#: ../../addon/photocache/Mod_Photocache.php:43 msgid "" -"Allow optional encryption of content end-to-end with a shared secret key" +"Saves a copy of images from external sites locally to increase your " +"anonymity in the web." msgstr "" -#: ../../include/features.php:234 -msgid "Disable Comments" -msgstr "" - -#: ../../include/features.php:235 -msgid "Provide the option to disable comments for a post" +#: ../../addon/photocache/Mod_Photocache.php:49 +msgid "Minimal photo size for caching" msgstr "" -#: ../../include/features.php:242 -msgid "Delayed Posting" +#: ../../addon/photocache/Mod_Photocache.php:51 +msgid "In pixels. From 1 up to 1024, 0 will be replaced with system default." msgstr "" -#: ../../include/features.php:243 -msgid "Allow posts to be published at a later date" +#: ../../addon/photocache/Mod_Photocache.php:60 +msgid "Photo Cache" msgstr "" -#: ../../include/features.php:250 -msgid "Content Expiration" +#: ../../addon/morepokes/morepokes.php:19 +msgid "bitchslap" msgstr "" -#: ../../include/features.php:251 -msgid "Remove posts/comments and/or private messages at a future time" +#: ../../addon/morepokes/morepokes.php:19 +msgid "bitchslapped" msgstr "" -#: ../../include/features.php:258 -msgid "Suppress Duplicate Posts/Comments" +#: ../../addon/morepokes/morepokes.php:20 +msgid "shag" msgstr "" -#: ../../include/features.php:259 -msgid "" -"Prevent posts with identical content to be published with less than two " -"minutes in between submissions." +#: ../../addon/morepokes/morepokes.php:20 +msgid "shagged" msgstr "" -#: ../../include/features.php:266 -msgid "Auto-save drafts of posts and comments" +#: ../../addon/morepokes/morepokes.php:21 +msgid "patent" msgstr "" -#: ../../include/features.php:267 -msgid "" -"Automatically saves post and comment drafts in local browser storage to help " -"prevent accidental loss of compositions" +#: ../../addon/morepokes/morepokes.php:21 +msgid "patented" msgstr "" -#: ../../include/features.php:276 -msgid "Manage" +#: ../../addon/morepokes/morepokes.php:22 +msgid "hug" msgstr "" -#: ../../include/features.php:280 -msgid "Navigation Channel Select" +#: ../../addon/morepokes/morepokes.php:22 +msgid "hugged" msgstr "" -#: ../../include/features.php:281 -msgid "Change channels directly from within the navigation dropdown menu" +#: ../../addon/morepokes/morepokes.php:23 +msgid "murder" msgstr "" -#: ../../include/features.php:290 ../../Zotlabs/Widget/Notifications.php:23 -#: ../../Zotlabs/Module/Connections.php:338 -msgid "Network" +#: ../../addon/morepokes/morepokes.php:23 +msgid "murdered" msgstr "" -#: ../../include/features.php:294 -msgid "Events Filter" +#: ../../addon/morepokes/morepokes.php:24 +msgid "worship" msgstr "" -#: ../../include/features.php:295 -msgid "Ability to display only events" +#: ../../addon/morepokes/morepokes.php:24 +msgid "worshipped" msgstr "" -#: ../../include/features.php:302 -msgid "Polls Filter" +#: ../../addon/morepokes/morepokes.php:25 +msgid "kiss" msgstr "" -#: ../../include/features.php:303 -msgid "Ability to display only polls" +#: ../../addon/morepokes/morepokes.php:25 +msgid "kissed" msgstr "" -#: ../../include/features.php:310 ../../Zotlabs/Widget/Savedsearch.php:89 -msgid "Saved Searches" +#: ../../addon/morepokes/morepokes.php:26 +msgid "tempt" msgstr "" -#: ../../include/features.php:311 -msgid "Save search terms for re-use" +#: ../../addon/morepokes/morepokes.php:26 +msgid "tempted" msgstr "" -#: ../../include/features.php:318 ../../include/contact_widgets.php:53 -#: ../../Zotlabs/Widget/Activity_filter.php:196 -#: ../../Zotlabs/Widget/Filer.php:33 -msgid "Saved Folders" +#: ../../addon/morepokes/morepokes.php:27 +msgid "raise eyebrows at" msgstr "" -#: ../../include/features.php:319 -msgid "Ability to file posts under folders" +#: ../../addon/morepokes/morepokes.php:27 +msgid "raised their eyebrows at" msgstr "" -#: ../../include/features.php:326 -msgid "Alternate Stream Order" +#: ../../addon/morepokes/morepokes.php:28 +msgid "insult" msgstr "" -#: ../../include/features.php:327 -msgid "" -"Ability to order the stream by last post date, last comment date or " -"unthreaded activities" +#: ../../addon/morepokes/morepokes.php:28 +msgid "insulted" msgstr "" -#: ../../include/features.php:334 -msgid "Contact Filter" +#: ../../addon/morepokes/morepokes.php:29 +msgid "praise" msgstr "" -#: ../../include/features.php:335 -msgid "Ability to display only posts of a selected contact" +#: ../../addon/morepokes/morepokes.php:29 +msgid "praised" msgstr "" -#: ../../include/features.php:342 -msgid "Forum Filter" +#: ../../addon/morepokes/morepokes.php:30 +msgid "be dubious of" msgstr "" -#: ../../include/features.php:343 -msgid "Ability to display only posts of a specific forum" +#: ../../addon/morepokes/morepokes.php:30 +msgid "was dubious of" msgstr "" -#: ../../include/features.php:350 -msgid "Personal Posts Filter" +#: ../../addon/morepokes/morepokes.php:31 +msgid "eat" msgstr "" -#: ../../include/features.php:351 -msgid "Ability to display only posts that you've interacted on" +#: ../../addon/morepokes/morepokes.php:31 +msgid "ate" msgstr "" -#: ../../include/features.php:368 ../../include/nav.php:447 -#: ../../Zotlabs/Widget/Channel_activities.php:93 -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:349 -msgid "Photos" +#: ../../addon/morepokes/morepokes.php:32 +msgid "giggle and fawn at" msgstr "" -#: ../../include/features.php:372 -msgid "Photo Location" +#: ../../addon/morepokes/morepokes.php:32 +msgid "giggled and fawned at" msgstr "" -#: ../../include/features.php:373 -msgid "If location data is available on uploaded photos, link this to a map." +#: ../../addon/morepokes/morepokes.php:33 +msgid "doubt" msgstr "" -#: ../../include/features.php:380 -msgid "Flag Adult Photos" +#: ../../addon/morepokes/morepokes.php:33 +msgid "doubted" msgstr "" -#: ../../include/features.php:381 -msgid "" -"Provide photo edit option to hide inappropriate photos from default album " -"view" +#: ../../addon/morepokes/morepokes.php:34 +msgid "glare" msgstr "" -#: ../../include/features.php:390 ../../Zotlabs/Module/Contactedit.php:444 -#: ../../Zotlabs/Lib/Apps.php:367 -msgid "Profiles" +#: ../../addon/morepokes/morepokes.php:34 +msgid "glared at" msgstr "" -#: ../../include/features.php:394 -msgid "Advanced Profiles" +#: ../../addon/morepokes/morepokes.php:35 +msgid "fuck" msgstr "" -#: ../../include/features.php:395 -msgid "Additional profile sections and selections" +#: ../../addon/morepokes/morepokes.php:35 +msgid "fucked" msgstr "" -#: ../../include/features.php:402 -msgid "Profile Import/Export" +#: ../../addon/morepokes/morepokes.php:36 +msgid "bonk" msgstr "" -#: ../../include/features.php:403 -msgid "Save and load profile details across sites/channels" +#: ../../addon/morepokes/morepokes.php:36 +msgid "bonked" msgstr "" -#: ../../include/features.php:410 -msgid "Multiple Profiles" +#: ../../addon/morepokes/morepokes.php:37 +msgid "declare undying love for" msgstr "" -#: ../../include/features.php:411 -msgid "Ability to create multiple profiles" +#: ../../addon/morepokes/morepokes.php:37 +msgid "declared undying love for" msgstr "" -#: ../../include/security.php:630 -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." +#: ../../addon/dwpost/dwpost.php:49 +msgid "Post to Dreamwidth" msgstr "" -#: ../../include/js_strings.php:5 -msgid "Delete this item?" +#: ../../addon/dwpost/dwpost.php:134 ../../addon/dwpost/Mod_Dwpost.php:67 +#: ../../addon/wppost/Mod_Wppost.php:96 ../../addon/wppost/wppost.php:174 +#: ../../addon/wiki/Mod_Wiki.php:381 ../../addon/ljpost/ljpost.php:134 +msgid "Source" msgstr "" -#: ../../include/js_strings.php:6 -msgid "Item deleted" +#: ../../addon/dwpost/Mod_Dwpost.php:26 +msgid "Dreamwidth Crosspost Connector Settings saved." msgstr "" -#: ../../include/js_strings.php:7 ../../Zotlabs/Module/Photos.php:1103 -#: ../../Zotlabs/Module/Photos.php:1219 ../../Zotlabs/Lib/ThreadItem.php:834 -msgid "Comment" +#: ../../addon/dwpost/Mod_Dwpost.php:51 +msgid "Dreamwidth username" msgstr "" -#: ../../include/js_strings.php:8 ../../Zotlabs/Lib/ThreadItem.php:543 -#, php-format -msgid "%s show all" +#: ../../addon/dwpost/Mod_Dwpost.php:55 +msgid "Dreamwidth password" msgstr "" -#: ../../include/js_strings.php:9 -#, php-format -msgid "%s show less" +#: ../../addon/dwpost/Mod_Dwpost.php:59 +msgid "Post to Dreamwidth by default" msgstr "" -#: ../../include/js_strings.php:10 -#, php-format -msgid "%s expand" +#: ../../addon/dwpost/Mod_Dwpost.php:63 ../../addon/wppost/Mod_Wppost.php:92 +#: ../../addon/ljpost/Mod_Ljpost.php:69 +msgid "Add link to original post" msgstr "" -#: ../../include/js_strings.php:11 -#, php-format -msgid "%s collapse" +#: ../../addon/dwpost/Mod_Dwpost.php:67 ../../addon/wppost/Mod_Wppost.php:96 +msgid "Link description (default:" msgstr "" -#: ../../include/js_strings.php:12 -msgid "Password too short" +#: ../../addon/dwpost/Mod_Dwpost.php:75 +msgid "Dreamwidth Crosspost Connector" msgstr "" -#: ../../include/js_strings.php:13 ../../Zotlabs/Module/Register.php:161 -msgid "Passwords do not match" +#: ../../addon/skeleton/Mod_Skeleton.php:38 +msgid "Some setting" msgstr "" -#: ../../include/js_strings.php:14 -msgid "everybody" +#: ../../addon/skeleton/Mod_Skeleton.php:38 +msgid "A setting" msgstr "" -#: ../../include/js_strings.php:15 -msgid "Secret Passphrase" +#: ../../addon/skeleton/Mod_Skeleton.php:46 +msgid "Skeleton Settings" msgstr "" -#: ../../include/js_strings.php:16 -msgid "Passphrase hint" +#: ../../addon/hzfiles/hzfiles.php:81 +msgid "Hubzilla File Storage Import" msgstr "" -#: ../../include/js_strings.php:17 -msgid "Notice: Permissions have changed but have not yet been submitted." +#: ../../addon/hzfiles/hzfiles.php:82 +msgid "This will import all your cloud files from another server." msgstr "" -#: ../../include/js_strings.php:18 -msgid "close all" +#: ../../addon/hzfiles/hzfiles.php:83 +msgid "Hubzilla Server base URL" msgstr "" -#: ../../include/js_strings.php:19 -msgid "Nothing new here" +#: ../../addon/hzfiles/hzfiles.php:84 +#: ../../addon/content_import/Mod_content_import.php:139 +msgid "Since modified date yyyy-mm-dd" msgstr "" -#: ../../include/js_strings.php:20 -msgid "Rate This Channel (this is public)" +#: ../../addon/hzfiles/hzfiles.php:85 +#: ../../addon/content_import/Mod_content_import.php:140 +msgid "Until modified date yyyy-mm-dd" msgstr "" -#: ../../include/js_strings.php:21 -msgid "Rating" +#: ../../addon/openstreetmap/openstreetmap.php:133 +msgid "View Larger" msgstr "" -#: ../../include/js_strings.php:22 -msgid "Describe (optional)" +#: ../../addon/openstreetmap/openstreetmap.php:156 +msgid "Tile Server URL" msgstr "" -#: ../../include/js_strings.php:24 -msgid "Please enter a link URL" +#: ../../addon/openstreetmap/openstreetmap.php:156 +msgid "" +"A list of public tile servers" msgstr "" -#: ../../include/js_strings.php:25 -msgid "Unsaved changes. Are you sure you wish to leave this page?" +#: ../../addon/openstreetmap/openstreetmap.php:157 +msgid "Nominatim (reverse geocoding) Server URL" msgstr "" -#: ../../include/js_strings.php:26 ../../Zotlabs/Module/Pubsites.php:52 -#: ../../Zotlabs/Module/Cdav.php:1014 ../../Zotlabs/Module/Profiles.php:480 -#: ../../Zotlabs/Module/Profiles.php:751 ../../Zotlabs/Module/Locs.php:121 -msgid "Location" +#: ../../addon/openstreetmap/openstreetmap.php:157 +msgid "" +"A list of Nominatim servers" msgstr "" -#: ../../include/js_strings.php:27 -msgid "lovely" +#: ../../addon/openstreetmap/openstreetmap.php:158 +msgid "Default zoom" msgstr "" -#: ../../include/js_strings.php:28 -msgid "wonderful" +#: ../../addon/openstreetmap/openstreetmap.php:158 +msgid "" +"The default zoom level. (1:world, 18:highest, also depends on tile server)" msgstr "" -#: ../../include/js_strings.php:29 -msgid "fantastic" +#: ../../addon/openstreetmap/openstreetmap.php:159 +msgid "Include marker on map" msgstr "" -#: ../../include/js_strings.php:30 -msgid "great" +#: ../../addon/openstreetmap/openstreetmap.php:159 +msgid "Include a marker on the map." msgstr "" -#: ../../include/js_strings.php:31 -msgid "" -"Your chosen nickname was either already taken or not valid. Please use our " -"suggestion (" +#: ../../addon/redred/redred.php:50 +msgid "Post to Hubzilla" msgstr "" -#: ../../include/js_strings.php:32 -msgid ") or enter a new one." +#: ../../addon/redred/Mod_Redred.php:24 +msgid "Channel is required." msgstr "" -#: ../../include/js_strings.php:33 -msgid "Thank you, this nickname is valid." +#: ../../addon/redred/Mod_Redred.php:29 ../../Zotlabs/Module/Network.php:331 +msgid "Invalid channel." msgstr "" -#: ../../include/js_strings.php:34 -msgid "A channel name is required." +#: ../../addon/redred/Mod_Redred.php:38 +msgid "Hubzilla Crosspost Connector Settings saved." msgstr "" -#: ../../include/js_strings.php:35 -msgid "This is a " +#: ../../addon/redred/Mod_Redred.php:61 +msgid "Send public postings to Hubzilla channel by default" msgstr "" -#: ../../include/js_strings.php:36 -msgid " channel name" +#: ../../addon/redred/Mod_Redred.php:65 +msgid "Hubzilla API Path" msgstr "" -#: ../../include/js_strings.php:37 -msgid "Back to reply" +#: ../../addon/redred/Mod_Redred.php:65 ../../addon/rtof/Mod_Rtof.php:51 +msgid "https://{sitename}/api" msgstr "" -#: ../../include/js_strings.php:38 -msgid "Pinned" +#: ../../addon/redred/Mod_Redred.php:69 +msgid "Hubzilla login name" msgstr "" -#: ../../include/js_strings.php:39 ../../Zotlabs/Lib/ThreadItem.php:480 -msgid "Pin to the top" +#: ../../addon/redred/Mod_Redred.php:73 +msgid "Hubzilla channel name" msgstr "" -#: ../../include/js_strings.php:40 ../../Zotlabs/Widget/Pinned.php:158 -#: ../../Zotlabs/Lib/ThreadItem.php:480 -msgid "Unpin from the top" +#: ../../addon/redred/Mod_Redred.php:77 +msgid "Hubzilla password" msgstr "" -#: ../../include/js_strings.php:46 -#, php-format -msgid "%d minutes" -msgid_plural "%d minutes" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/js_strings.php:47 -#, php-format -msgid "about %d hours" -msgid_plural "about %d hours" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/js_strings.php:48 -#, php-format -msgid "%d days" -msgid_plural "%d days" -msgstr[0] "" -msgstr[1] "" +#: ../../addon/redred/Mod_Redred.php:85 +msgid "Hubzilla Crosspost Connector" +msgstr "" -#: ../../include/js_strings.php:49 -#, php-format -msgid "%d months" -msgid_plural "%d months" -msgstr[0] "" -msgstr[1] "" +#: ../../addon/upgrade_info/upgrade_info.php:48 +msgid "Your channel has been upgraded to $Projectname version" +msgstr "" -#: ../../include/js_strings.php:50 -#, php-format -msgid "%d years" -msgid_plural "%d years" -msgstr[0] "" -msgstr[1] "" +#: ../../addon/upgrade_info/upgrade_info.php:50 +msgid "Please have a look at the" +msgstr "" -#: ../../include/js_strings.php:55 -msgid "timeago.prefixAgo" +#: ../../addon/upgrade_info/upgrade_info.php:52 +msgid "git history" msgstr "" -#: ../../include/js_strings.php:56 -msgid "timeago.prefixFromNow" +#: ../../addon/upgrade_info/upgrade_info.php:54 +msgid "change log" msgstr "" -#: ../../include/js_strings.php:57 -msgid "timeago.suffixAgo" +#: ../../addon/upgrade_info/upgrade_info.php:55 +msgid "for further info." msgstr "" -#: ../../include/js_strings.php:58 -msgid "timeago.suffixFromNow" +#: ../../addon/upgrade_info/upgrade_info.php:60 +msgid "Upgrade Info" msgstr "" -#: ../../include/js_strings.php:61 -msgid "less than a minute" +#: ../../addon/upgrade_info/upgrade_info.php:64 +msgid "Do not show this again" msgstr "" -#: ../../include/js_strings.php:62 -msgid "about a minute" +#: ../../addon/socialauth/Mod_SocialAuth.php:106 +#: ../../addon/socialauth/Mod_SocialAuth.php:179 +msgid "Network error" msgstr "" -#: ../../include/js_strings.php:64 -msgid "about an hour" +#: ../../addon/socialauth/Mod_SocialAuth.php:110 +#: ../../addon/socialauth/Mod_SocialAuth.php:183 +msgid "API error" msgstr "" -#: ../../include/js_strings.php:66 -msgid "a day" +#: ../../addon/socialauth/Mod_SocialAuth.php:114 +#: ../../addon/socialauth/Mod_SocialAuth.php:187 +msgid "Unknown issue" msgstr "" -#: ../../include/js_strings.php:68 -msgid "about a month" +#: ../../addon/socialauth/Mod_SocialAuth.php:152 +msgid "Unable to retrieve email address from remote identity provider" msgstr "" -#: ../../include/js_strings.php:70 -msgid "about a year" +#: ../../addon/socialauth/Mod_SocialAuth.php:171 +msgid "Unable to login using email address " msgstr "" -#: ../../include/js_strings.php:72 -msgid " " +#: ../../addon/socialauth/Mod_SocialAuth.php:211 +msgid "Social Authentication using your social media account" msgstr "" -#: ../../include/js_strings.php:73 -msgid "timeago.numbers" +#: ../../addon/socialauth/Mod_SocialAuth.php:215 +msgid "" +"This app enables one or more social provider sign-in buttons on the login " +"page." msgstr "" -#: ../../include/js_strings.php:79 -msgctxt "long" -msgid "May" +#: ../../addon/socialauth/Mod_SocialAuth.php:233 +msgid "Add an identity provider" msgstr "" -#: ../../include/js_strings.php:87 -msgid "Jan" +#: ../../addon/socialauth/Mod_SocialAuth.php:260 +msgid "Enable " msgstr "" -#: ../../include/js_strings.php:88 -msgid "Feb" +#: ../../addon/socialauth/Mod_SocialAuth.php:267 +msgid "Key" msgstr "" -#: ../../include/js_strings.php:89 -msgid "Mar" +#: ../../addon/socialauth/Mod_SocialAuth.php:267 +#: ../../addon/socialauth/Mod_SocialAuth.php:272 +#: ../../addon/socialauth/Mod_SocialAuth.php:288 +#: ../../addon/socialauth/Mod_SocialAuth.php:299 +#: ../../addon/socialauth/Mod_SocialAuth.php:308 +msgid "Word" msgstr "" -#: ../../include/js_strings.php:90 -msgid "Apr" +#: ../../addon/socialauth/Mod_SocialAuth.php:272 +msgid "Secret" msgstr "" -#: ../../include/js_strings.php:91 -msgctxt "short" -msgid "May" +#: ../../addon/socialauth/Mod_SocialAuth.php:308 +msgid "Add a custom provider" msgstr "" -#: ../../include/js_strings.php:92 -msgid "Jun" +#: ../../addon/socialauth/Mod_SocialAuth.php:328 +msgid "Remove an identity provider" msgstr "" -#: ../../include/js_strings.php:93 -msgid "Jul" +#: ../../addon/socialauth/Mod_SocialAuth.php:338 +msgid "Social authentication" msgstr "" -#: ../../include/js_strings.php:94 -msgid "Aug" +#: ../../addon/socialauth/Mod_SocialAuth.php:380 +msgid "Error while saving provider settings" msgstr "" -#: ../../include/js_strings.php:95 -msgid "Sep" +#: ../../addon/socialauth/Mod_SocialAuth.php:403 +msgid "Custom provider already exists" msgstr "" -#: ../../include/js_strings.php:96 -msgid "Oct" +#: ../../addon/socialauth/Mod_SocialAuth.php:420 +msgid "Social authentication settings saved." msgstr "" -#: ../../include/js_strings.php:97 -msgid "Nov" +#: ../../addon/dirstats/dirstats.php:94 +msgid "Hubzilla Directory Stats" msgstr "" -#: ../../include/js_strings.php:98 -msgid "Dec" +#: ../../addon/dirstats/dirstats.php:95 +msgid "Total Hubs" msgstr "" -#: ../../include/js_strings.php:106 -msgid "Sun" +#: ../../addon/dirstats/dirstats.php:97 +msgid "Hubzilla Hubs" msgstr "" -#: ../../include/js_strings.php:107 -msgid "Mon" +#: ../../addon/dirstats/dirstats.php:99 +msgid "Friendica Hubs" msgstr "" -#: ../../include/js_strings.php:108 -msgid "Tue" +#: ../../addon/dirstats/dirstats.php:101 +msgid "Diaspora Pods" msgstr "" -#: ../../include/js_strings.php:109 -msgid "Wed" +#: ../../addon/dirstats/dirstats.php:103 +msgid "Hubzilla Channels" msgstr "" -#: ../../include/js_strings.php:110 -msgid "Thu" +#: ../../addon/dirstats/dirstats.php:105 +msgid "Friendica Channels" msgstr "" -#: ../../include/js_strings.php:111 -msgid "Fri" +#: ../../addon/dirstats/dirstats.php:107 +msgid "Diaspora Channels" msgstr "" -#: ../../include/js_strings.php:112 -msgid "Sat" +#: ../../addon/dirstats/dirstats.php:109 +msgid "Aged 35 and above" msgstr "" -#: ../../include/js_strings.php:113 -msgctxt "calendar" -msgid "today" +#: ../../addon/dirstats/dirstats.php:111 +msgid "Aged 34 and under" msgstr "" -#: ../../include/js_strings.php:114 -msgctxt "calendar" -msgid "month" +#: ../../addon/dirstats/dirstats.php:113 +msgid "Average Age" msgstr "" -#: ../../include/js_strings.php:115 -msgctxt "calendar" -msgid "week" +#: ../../addon/dirstats/dirstats.php:115 +msgid "Known Chatrooms" msgstr "" -#: ../../include/js_strings.php:116 -msgctxt "calendar" -msgid "day" +#: ../../addon/dirstats/dirstats.php:117 +msgid "Known Tags" msgstr "" -#: ../../include/js_strings.php:117 -msgctxt "calendar" -msgid "All day" +#: ../../addon/dirstats/dirstats.php:119 +msgid "" +"Please note Diaspora and Friendica statistics are merely those **this " +"directory** is aware of, and not all those known in the network. This also " +"applies to chatrooms," msgstr "" -#: ../../include/js_strings.php:120 -msgid "Please stand by while your download is being prepared." +#: ../../addon/flashcards/Mod_Flashcards.php:52 +#: ../../addon/wiki/Mod_Wiki.php:36 ../../addon/cart/cart.php:1410 +msgid "Profile Unavailable." msgstr "" -#: ../../include/js_strings.php:123 -msgid "Email address not valid" +#: ../../addon/flashcards/Mod_Flashcards.php:225 +msgid "Not allowed." msgstr "" -#: ../../include/help.php:81 -msgid "Help:" +#: ../../addon/flashcards/Mod_Flashcards.php:268 +#: ../../Zotlabs/Module/Filestorage.php:202 +msgid "Set/edit permissions" msgstr "" -#: ../../include/help.php:118 ../../include/help.php:126 -#: ../../include/nav.php:179 ../../include/nav.php:318 -#: ../../Zotlabs/Module/Layouts.php:186 ../../Zotlabs/Lib/Apps.php:352 -msgid "Help" +#: ../../addon/totp/Mod_Totp.php:32 +msgid "TOTP Two-Step Verification" msgstr "" -#: ../../include/help.php:130 -msgid "Not Found" +#: ../../addon/totp/Mod_Totp.php:33 +msgid "Enter the 2-step verification generated by your authenticator app:" msgstr "" -#: ../../include/photos.php:153 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" +#: ../../addon/totp/Mod_Totp.php:34 +msgid "Success!" msgstr "" -#: ../../include/photos.php:164 -msgid "Image file is empty." +#: ../../addon/totp/Mod_Totp.php:35 +msgid "Invalid code, please try again." msgstr "" -#: ../../include/photos.php:198 ../../Zotlabs/Module/Profile_photo.php:275 -#: ../../Zotlabs/Module/Cover_photo.php:241 -msgid "Unable to process image" +#: ../../addon/totp/Mod_Totp.php:36 +msgid "Too many invalid codes..." msgstr "" -#: ../../include/photos.php:324 -msgid "Photo storage failed." +#: ../../addon/totp/Mod_Totp.php:37 +msgid "Verify" msgstr "" -#: ../../include/photos.php:373 -msgid "a new photo" +#: ../../addon/totp/Settings/Totp.php:92 +msgid "" +"You haven't set a TOTP secret yet.\n" +"Please click the button below to generate one and register this site\n" +"with your preferred authenticator app." msgstr "" -#: ../../include/photos.php:377 -#, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" +#: ../../addon/totp/Settings/Totp.php:95 +msgid "Your TOTP secret is" msgstr "" -#: ../../include/photos.php:722 ../../include/nav.php:450 -msgid "Photo Albums" +#: ../../addon/totp/Settings/Totp.php:96 +msgid "" +"Be sure to save it somewhere in case you lose or replace your mobile " +"device.\n" +"Use your mobile device to scan the QR code below to register this site\n" +"with your preferred authenticator app." msgstr "" -#: ../../include/photos.php:723 ../../Zotlabs/Module/Photos.php:1352 -#: ../../Zotlabs/Module/Photos.php:1365 ../../Zotlabs/Module/Photos.php:1366 -msgid "Recent Photos" +#: ../../addon/totp/Settings/Totp.php:101 +msgid "Test" msgstr "" -#: ../../include/photos.php:727 -msgid "Upload New Photos" +#: ../../addon/totp/Settings/Totp.php:102 +msgid "Generate New Secret" msgstr "" -#: ../../include/network.php:412 -msgid "url: " +#: ../../addon/totp/Settings/Totp.php:103 +msgid "Go" msgstr "" -#: ../../include/network.php:413 -msgid "error_code: " +#: ../../addon/totp/Settings/Totp.php:104 +msgid "Enter your password" msgstr "" -#: ../../include/network.php:414 -msgid "error_string: " +#: ../../addon/totp/Settings/Totp.php:105 +msgid "enter TOTP code from your device" msgstr "" -#: ../../include/network.php:415 -msgid "content-type: " +#: ../../addon/totp/Settings/Totp.php:106 +msgid "Pass!" msgstr "" -#: ../../include/network.php:1762 ../../include/network.php:1763 -msgid "Friendica" +#: ../../addon/totp/Settings/Totp.php:107 +msgid "Fail" msgstr "" -#: ../../include/network.php:1764 -msgid "OStatus" +#: ../../addon/totp/Settings/Totp.php:108 +msgid "Incorrect password, try again." msgstr "" -#: ../../include/network.php:1765 -msgid "GNU-Social" +#: ../../addon/totp/Settings/Totp.php:109 +msgid "Record your new TOTP secret and rescan the QR code above." msgstr "" -#: ../../include/network.php:1766 -msgid "RSS/Atom" +#: ../../addon/totp/Settings/Totp.php:117 +msgid "TOTP Settings" msgstr "" -#: ../../include/network.php:1769 -msgid "Diaspora" +#: ../../addon/opensearch/opensearch.php:26 +#, php-format +msgctxt "opensearch" +msgid "Search %1$s (%2$s)" msgstr "" -#: ../../include/network.php:1770 -msgid "Facebook" +#: ../../addon/opensearch/opensearch.php:28 +msgctxt "opensearch" +msgid "$Projectname" msgstr "" -#: ../../include/network.php:1771 -msgid "Zot" +#: ../../addon/opensearch/opensearch.php:42 ../../Zotlabs/Lib/Enotify.php:66 +#: ../../Zotlabs/Module/Home.php:87 ../../Zotlabs/Module/Home.php:95 +#: ../../Zotlabs/Module/Invite.php:238 ../../Zotlabs/Module/Invite.php:507 +#: ../../Zotlabs/Module/Invite.php:521 +msgid "$Projectname" msgstr "" -#: ../../include/network.php:1772 -msgid "LinkedIn" +#: ../../addon/opensearch/opensearch.php:43 +msgid "Search $Projectname" msgstr "" -#: ../../include/network.php:1773 -msgid "XMPP/IM" +#: ../../addon/irc/Mod_Irc.php:23 ../../addon/irc/irc.php:41 +msgid "Popular Channels" msgstr "" -#: ../../include/network.php:1774 -msgid "MySpace" +#: ../../addon/irc/irc.php:37 +msgid "Channels to auto connect" msgstr "" -#: ../../include/activities.php:42 -msgid " and " +#: ../../addon/irc/irc.php:37 ../../addon/irc/irc.php:41 +msgid "Comma separated list" msgstr "" -#: ../../include/activities.php:50 -msgid "public profile" +#: ../../addon/irc/irc.php:45 +msgid "IRC Settings" msgstr "" -#: ../../include/activities.php:59 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" +#: ../../addon/irc/irc.php:54 +msgid "IRC settings saved." msgstr "" -#: ../../include/activities.php:60 -#, php-format -msgid "Visit %1$s's %2$s" +#: ../../addon/irc/irc.php:58 +msgid "IRC Chatroom" msgstr "" -#: ../../include/activities.php:63 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." +#: ../../addon/tictac/tictac.php:21 +msgid "Three Dimensional Tic-Tac-Toe" msgstr "" -#: ../../include/contact_widgets.php:11 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/contact_widgets.php:16 ../../include/acl_selectors.php:145 -#: ../../Zotlabs/Module/Admin/Site.php:419 -msgid "Advanced" +#: ../../addon/tictac/tictac.php:54 +msgid "3D Tic-Tac-Toe" msgstr "" -#: ../../include/contact_widgets.php:19 -msgid "Find Channels" +#: ../../addon/tictac/tictac.php:59 +msgid "New game" msgstr "" -#: ../../include/contact_widgets.php:20 -msgid "Enter name or interest" +#: ../../addon/tictac/tictac.php:60 +msgid "New game with handicap" msgstr "" -#: ../../include/contact_widgets.php:21 -msgid "Connect/Follow" +#: ../../addon/tictac/tictac.php:61 +msgid "" +"Three dimensional tic-tac-toe is just like the traditional game except that " +"it is played on multiple levels simultaneously. " msgstr "" -#: ../../include/contact_widgets.php:22 -msgid "Examples: Robert Morgenstein, Fishing" +#: ../../addon/tictac/tictac.php:62 +msgid "" +"In this case there are three levels. You win by getting three in a row on " +"any level, as well as up, down, and diagonally across the different levels." msgstr "" -#: ../../include/contact_widgets.php:23 ../../Zotlabs/Module/Directory.php:432 -#: ../../Zotlabs/Module/Directory.php:437 -#: ../../Zotlabs/Module/Connections.php:398 -msgid "Find" +#: ../../addon/tictac/tictac.php:64 +msgid "" +"The handicap game disables the center position on the middle level because " +"the player claiming this square often has an unfair advantage." msgstr "" -#: ../../include/contact_widgets.php:24 ../../Zotlabs/Module/Directory.php:436 -#: ../../Zotlabs/Module/Suggest.php:77 -msgid "Channel Suggestions" +#: ../../addon/tictac/tictac.php:183 +msgid "You go first..." msgstr "" -#: ../../include/contact_widgets.php:26 -msgid "Random Profile" +#: ../../addon/tictac/tictac.php:188 +msgid "I'm going first this time..." msgstr "" -#: ../../include/contact_widgets.php:27 -msgid "Invite Friends" +#: ../../addon/tictac/tictac.php:194 +msgid "You won!" msgstr "" -#: ../../include/contact_widgets.php:29 -msgid "Advanced example: name=fred and country=iceland" +#: ../../addon/tictac/tictac.php:200 ../../addon/tictac/tictac.php:225 +msgid "\"Cat\" game!" msgstr "" -#: ../../include/contact_widgets.php:182 -msgid "Common Connections" +#: ../../addon/tictac/tictac.php:223 +msgid "I won!" msgstr "" -#: ../../include/contact_widgets.php:186 -#, php-format -msgid "View all %d common connections" +#: ../../addon/wppost/Mod_Wppost.php:30 +msgid "Wordpress Settings saved." msgstr "" -#: ../../include/language.php:446 -msgid "Select an alternate language" +#: ../../addon/wppost/Mod_Wppost.php:67 +msgid "WordPress username" msgstr "" -#: ../../include/import.php:30 -msgid "Unable to import a removed channel." +#: ../../addon/wppost/Mod_Wppost.php:71 +msgid "WordPress password" msgstr "" -#: ../../include/import.php:56 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." +#: ../../addon/wppost/Mod_Wppost.php:75 +msgid "WordPress API URL" msgstr "" -#: ../../include/import.php:122 -msgid "Cloned channel not found. Import failed." +#: ../../addon/wppost/Mod_Wppost.php:76 +msgid "Typically https://your-blog.tld/xmlrpc.php" msgstr "" -#: ../../include/nav.php:95 -msgid "Remote authentication" +#: ../../addon/wppost/Mod_Wppost.php:79 +msgid "WordPress blogid" msgstr "" -#: ../../include/nav.php:95 -msgid "Click to authenticate to your home hub" +#: ../../addon/wppost/Mod_Wppost.php:80 +msgid "For multi-user sites such as wordpress.com, otherwise leave blank" msgstr "" -#: ../../include/nav.php:101 ../../Zotlabs/Widget/Channel_activities.php:239 -#: ../../Zotlabs/Widget/Admin.php:29 -#: ../../Zotlabs/Module/Admin/Channels.php:146 -#: ../../Zotlabs/Module/Manage.php:162 ../../Zotlabs/Module/Admin.php:116 -msgid "Channels" +#: ../../addon/wppost/Mod_Wppost.php:84 +msgid "Post to WordPress by default" msgstr "" -#: ../../include/nav.php:101 -msgid "Manage your channels" +#: ../../addon/wppost/Mod_Wppost.php:88 +msgid "Forward comments (requires hubzilla_wp plugin)" msgstr "" -#: ../../include/nav.php:104 ../../Zotlabs/Widget/Settings_menu.php:71 -#: ../../Zotlabs/Widget/Newmember.php:58 -#: ../../Zotlabs/Module/Admin/Themes.php:125 -#: ../../Zotlabs/Module/Admin/Addons.php:345 ../../Zotlabs/Lib/Apps.php:343 -msgid "Settings" +#: ../../addon/wppost/Mod_Wppost.php:104 +msgid "Wordpress Post" msgstr "" -#: ../../include/nav.php:104 -msgid "Account/Channel Settings" +#: ../../addon/wppost/wppost.php:47 +msgid "Post to WordPress" msgstr "" -#: ../../include/nav.php:110 ../../include/nav.php:140 -#: ../../include/nav.php:161 ../../boot.php:1747 -msgid "Logout" +#: ../../addon/articles/Mod_Article_edit.php:17 +#: ../../addon/articles/Mod_Article_edit.php:33 +#: ../../addon/cards/Mod_Card_edit.php:17 +#: ../../addon/cards/Mod_Card_edit.php:33 +#: ../../Zotlabs/Module/Editlayout.php:79 ../../Zotlabs/Module/Editblock.php:79 +#: ../../Zotlabs/Module/Editblock.php:95 ../../Zotlabs/Module/Editpost.php:24 +#: ../../Zotlabs/Module/Editwebpage.php:80 +msgid "Item not found" msgstr "" -#: ../../include/nav.php:110 ../../include/nav.php:140 -msgid "End this session" +#: ../../addon/articles/Mod_Article_edit.php:44 +#: ../../addon/cards/Mod_Card_edit.php:44 ../../Zotlabs/Module/Page.php:75 +#: ../../Zotlabs/Module/Block.php:41 ../../Zotlabs/Module/Cal.php:31 +#: ../../Zotlabs/Module/Attach_edit.php:52 +#: ../../Zotlabs/Module/Wall_upload.php:31 ../../Zotlabs/Module/Chanview.php:95 +#: ../../Zotlabs/Module/Attach.php:22 +msgid "Channel not found." msgstr "" -#: ../../include/nav.php:113 -msgid "Your profile page" +#: ../../addon/articles/Mod_Article_edit.php:127 +msgid "Edit Article" msgstr "" -#: ../../include/nav.php:116 ../../include/channel.php:1530 -#: ../../Zotlabs/Module/Profiles.php:852 -msgid "Edit Profiles" +#: ../../addon/articles/Mod_Articles.php:119 +msgid "Add Article" msgstr "" -#: ../../include/nav.php:116 -msgid "Manage/Edit profiles" +#: ../../addon/articles/Mod_Articles.php:228 +#: ../../addon/articles/articles.php:48 ../../addon/articles/articles.php:160 +#: ../../Zotlabs/Lib/Apps.php:330 +msgid "Articles" msgstr "" -#: ../../include/nav.php:118 ../../Zotlabs/Widget/Newmember.php:40 -msgid "Edit your profile" +#: ../../addon/articles/articles.php:51 +msgid "View Articles" msgstr "" -#: ../../include/nav.php:125 ../../include/nav.php:129 -#: ../../Zotlabs/Lib/Apps.php:340 ../../boot.php:1748 -msgid "Login" +#: ../../addon/pumpio/pumpio.php:152 +msgid "You are now authenticated to pumpio." msgstr "" -#: ../../include/nav.php:125 ../../include/nav.php:129 -msgid "Sign in" +#: ../../addon/pumpio/pumpio.php:153 +msgid "return to the featured settings page" msgstr "" -#: ../../include/nav.php:159 -msgid "Take me home" +#: ../../addon/pumpio/pumpio.php:168 +msgid "Post to Pump.io" msgstr "" -#: ../../include/nav.php:161 -msgid "Log me out of this site" +#: ../../addon/pumpio/Mod_Pumpio.php:40 +msgid "Pump.io Settings saved." msgstr "" -#: ../../include/nav.php:166 ../../Zotlabs/Module/Register.php:542 -#: ../../boot.php:1725 -msgid "Register" +#: ../../addon/pumpio/Mod_Pumpio.php:71 +msgid "Pump.io servername" msgstr "" -#: ../../include/nav.php:166 -msgid "Create an account" +#: ../../addon/pumpio/Mod_Pumpio.php:71 +msgid "Without \"http://\" or \"https://\"" msgstr "" -#: ../../include/nav.php:179 -msgid "Help and documentation" +#: ../../addon/pumpio/Mod_Pumpio.php:75 +msgid "Pump.io username" msgstr "" -#: ../../include/nav.php:193 -msgid "Search site @name, !forum, #tag, ?docs, content" +#: ../../addon/pumpio/Mod_Pumpio.php:75 +msgid "Without the servername" msgstr "" -#: ../../include/nav.php:199 ../../Zotlabs/Widget/Admin.php:60 -msgid "Admin" +#: ../../addon/pumpio/Mod_Pumpio.php:86 +msgid "You are not authenticated to pumpio" msgstr "" -#: ../../include/nav.php:199 -msgid "Site Setup and Configuration" +#: ../../addon/pumpio/Mod_Pumpio.php:88 +msgid "(Re-)Authenticate your pump.io connection" msgstr "" -#: ../../include/nav.php:322 ../../Zotlabs/Widget/Messages.php:36 -#: ../../Zotlabs/Widget/Notifications.php:173 -#: ../../Zotlabs/Module/New_channel.php:157 -#: ../../Zotlabs/Module/New_channel.php:164 -#: ../../Zotlabs/Module/Defperms.php:254 -msgid "Loading" +#: ../../addon/pumpio/Mod_Pumpio.php:92 +msgid "Post to pump.io by default" msgstr "" -#: ../../include/nav.php:327 -msgid "@name, #tag, ?doc, content" +#: ../../addon/pumpio/Mod_Pumpio.php:96 +msgid "Should posts be public" msgstr "" -#: ../../include/nav.php:328 -msgid "Please wait..." +#: ../../addon/pumpio/Mod_Pumpio.php:100 +msgid "Mirror all public posts" msgstr "" -#: ../../include/nav.php:334 ../../Zotlabs/Lib/Apps.php:327 -msgid "Apps" +#: ../../addon/pumpio/Mod_Pumpio.php:110 +msgid "Pump.io Crosspost Connector" msgstr "" -#: ../../include/nav.php:335 -msgid "Channel Apps" +#: ../../addon/ijpost/ijpost.php:44 +msgid "Post to Insane Journal" msgstr "" -#: ../../include/nav.php:336 -msgid "System Apps" +#: ../../addon/ijpost/Mod_Ijpost.php:23 +msgid "Insane Journal Crosspost Connector Settings saved." msgstr "" -#: ../../include/nav.php:337 -msgid "Pinned Apps" +#: ../../addon/ijpost/Mod_Ijpost.php:35 +msgid "Insane Journal Crosspost Connector App" msgstr "" -#: ../../include/nav.php:338 -msgid "Featured Apps" +#: ../../addon/ijpost/Mod_Ijpost.php:36 +msgid "Relay public postings to Insane Journal" msgstr "" -#: ../../include/nav.php:424 ../../Zotlabs/Module/Admin/Channels.php:154 -#: ../../Zotlabs/Lib/Apps.php:347 -msgid "Channel" +#: ../../addon/ijpost/Mod_Ijpost.php:53 +msgid "InsaneJournal username" msgstr "" -#: ../../include/nav.php:427 -msgid "Status Messages and Posts" +#: ../../addon/ijpost/Mod_Ijpost.php:57 +msgid "InsaneJournal password" msgstr "" -#: ../../include/nav.php:437 ../../Zotlabs/Module/Help.php:83 -msgid "About" +#: ../../addon/ijpost/Mod_Ijpost.php:61 +msgid "Post to InsaneJournal by default" msgstr "" -#: ../../include/nav.php:440 -msgid "Profile Details" +#: ../../addon/ijpost/Mod_Ijpost.php:69 +msgid "Insane Journal Crosspost Connector" msgstr "" -#: ../../include/nav.php:455 ../../Zotlabs/Widget/Channel_activities.php:125 -#: ../../Zotlabs/Widget/Notifications.php:108 -#: ../../Zotlabs/Module/Fbrowser.php:85 ../../Zotlabs/Lib/Apps.php:344 -#: ../../Zotlabs/Storage/Browser.php:351 -msgid "Files" +#: ../../addon/mailtest/mailtest.php:19 +msgid "Send test email" msgstr "" -#: ../../include/nav.php:458 -msgid "Files and Storage" +#: ../../addon/mailtest/mailtest.php:66 +msgid "Mail sent." msgstr "" -#: ../../include/nav.php:480 ../../include/nav.php:483 -#: ../../Zotlabs/Widget/Chatroom_list.php:22 ../../Zotlabs/Lib/Apps.php:334 -msgid "Chatrooms" +#: ../../addon/mailtest/mailtest.php:68 +msgid "Sending of mail failed." msgstr "" -#: ../../include/nav.php:493 ../../Zotlabs/Module/Bookmarks.php:90 -#: ../../Zotlabs/Lib/Apps.php:333 -msgid "Bookmarks" +#: ../../addon/mailtest/mailtest.php:77 +msgid "Mail Test" msgstr "" -#: ../../include/nav.php:496 -msgid "Saved Bookmarks" +#: ../../addon/logrot/logrot.php:36 +msgid "Logfile archive directory" msgstr "" -#: ../../include/nav.php:504 ../../Zotlabs/Widget/Channel_activities.php:168 -#: ../../Zotlabs/Module/Webpages.php:249 ../../Zotlabs/Lib/Apps.php:345 -msgid "Webpages" +#: ../../addon/logrot/logrot.php:36 +msgid "Directory to store rotated logs" msgstr "" -#: ../../include/nav.php:507 -msgid "View Webpages" +#: ../../addon/logrot/logrot.php:37 +msgid "Logfile size in bytes before rotating" msgstr "" -#: ../../include/nav.php:518 ../../Zotlabs/Lib/Apps.php:346 -msgid "Wiki" +#: ../../addon/logrot/logrot.php:38 +msgid "Number of logfiles to retain" msgstr "" -#: ../../include/auth.php:194 -msgid "Delegation session ended." +#: ../../addon/superblock/superblock.php:355 +msgid "Block Completely" msgstr "" -#: ../../include/auth.php:198 -msgid "Logged out." +#: ../../addon/superblock/Mod_Superblock.php:62 +msgid "superblock settings updated" msgstr "" -#: ../../include/auth.php:297 -msgid "Email validation is incomplete. Please check your email." +#: ../../addon/superblock/Mod_Superblock.php:86 +msgid "Currently blocked" msgstr "" -#: ../../include/auth.php:313 -msgid "Failed authentication" +#: ../../addon/superblock/Mod_Superblock.php:88 +msgid "No channels currently blocked" msgstr "" -#: ../../include/datetime.php:58 ../../Zotlabs/Widget/Newmember.php:56 -#: ../../Zotlabs/Module/Profiles.php:753 -msgid "Miscellaneous" +#: ../../addon/superblock/Mod_Superblock.php:90 +#: ../../Zotlabs/Module/Cover_photo.php:424 +#: ../../Zotlabs/Module/Admin/Addons.php:462 ../../Zotlabs/Module/Tagrm.php:137 +#: ../../Zotlabs/Module/Photos.php:991 +msgid "Remove" msgstr "" -#: ../../include/datetime.php:140 -msgid "Birthday" +#: ../../addon/msgfooter/msgfooter.php:47 +msgid "text to include in all outgoing posts from this site" msgstr "" -#: ../../include/datetime.php:140 -msgid "Age: " +#: ../../addon/nsfw/nsfw.php:153 +msgid "Possible adult content" msgstr "" -#: ../../include/datetime.php:140 -msgid "YYYY-MM-DD or MM-DD" +#: ../../addon/nsfw/nsfw.php:168 +#, php-format +msgid "%s - view" msgstr "" -#: ../../include/datetime.php:238 ../../boot.php:2764 -msgid "never" +#: ../../addon/nsfw/Mod_Nsfw.php:22 +msgid "NSFW Settings saved." msgstr "" -#: ../../include/datetime.php:244 -msgid "less than a second ago" +#: ../../addon/nsfw/Mod_Nsfw.php:42 +msgid "" +"This app looks in posts for the words/text you specify below, and collapses " +"any content containing those keywords so it is not displayed at " +"inappropriate times, such as sexual innuendo that may be improper in a work " +"setting. It is polite and recommended to tag any content containing nudity " +"with #NSFW. This filter can also match any other word/text you specify, and " +"can thereby be used as a general purpose content filter." msgstr "" -#: ../../include/datetime.php:262 -#, php-format -msgctxt "e.g. 22 hours ago, 1 minute ago" -msgid "%1$d %2$s ago" +#: ../../addon/nsfw/Mod_Nsfw.php:47 +msgid "Comma separated list of keywords to hide" msgstr "" -#: ../../include/datetime.php:273 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:276 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:279 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:282 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:285 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:288 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:291 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "" -msgstr[1] "" +#: ../../addon/nsfw/Mod_Nsfw.php:47 +msgid "Word, /regular-expression/, lang=xx, lang!=xx" +msgstr "" -#: ../../include/datetime.php:520 -#, php-format -msgid "%1$s's birthday" +#: ../../addon/nsfw/Mod_Nsfw.php:56 +msgid "NSFW" msgstr "" -#: ../../include/datetime.php:521 -#, php-format -msgid "Happy Birthday %1$s" +#: ../../addon/cards/cards.php:48 ../../addon/cards/cards.php:160 +#: ../../addon/cards/Mod_Cards.php:209 ../../Zotlabs/Lib/Apps.php:331 +msgid "Cards" msgstr "" -#: ../../include/cdav.php:157 -msgid "INVALID EVENT DISMISSED!" +#: ../../addon/cards/cards.php:51 +msgid "View Cards" msgstr "" -#: ../../include/cdav.php:158 -msgid "Summary: " +#: ../../addon/cards/Mod_Cards.php:115 +msgid "Add Card" msgstr "" -#: ../../include/cdav.php:158 ../../include/cdav.php:159 -#: ../../include/cdav.php:167 ../../include/conversation.php:1214 -#: ../../Zotlabs/Widget/Album.php:90 ../../Zotlabs/Widget/Pinned.php:271 -#: ../../Zotlabs/Widget/Portfolio.php:99 -#: ../../Zotlabs/Module/Embedphotos.php:177 ../../Zotlabs/Module/Photos.php:799 -#: ../../Zotlabs/Module/Photos.php:1259 ../../Zotlabs/Lib/Activity.php:1604 -#: ../../Zotlabs/Lib/Apps.php:1151 ../../Zotlabs/Lib/Apps.php:1235 -msgid "Unknown" +#: ../../addon/cards/Mod_Card_edit.php:129 +msgid "Edit Card" msgstr "" -#: ../../include/cdav.php:159 -msgid "Date: " +#: ../../addon/gallery/gallery.php:43 ../../addon/gallery/Mod_Gallery.php:134 +msgid "Gallery" msgstr "" -#: ../../include/cdav.php:160 ../../include/cdav.php:168 -msgid "Reason: " +#: ../../addon/gallery/gallery.php:46 +msgid "Photo Gallery" msgstr "" -#: ../../include/cdav.php:166 -msgid "INVALID CARD DISMISSED!" +#: ../../addon/wiki/Mod_Wiki.php:81 +#: ../../addon/cart/submodules/paypalbutton.php:456 +#: ../../addon/cart/submodules/paypalbuttonV2.php:478 +#: ../../addon/cart/manual_payments.php:93 ../../addon/cart/cart.php:1558 +#: ../../addon/cart/myshop.php:37 +msgid "Invalid channel" msgstr "" -#: ../../include/cdav.php:167 -msgid "Name: " +#: ../../addon/wiki/Mod_Wiki.php:136 +msgid "Error retrieving wiki" msgstr "" -#: ../../include/conversation.php:145 ../../Zotlabs/Module/Like.php:184 -msgid "channel" +#: ../../addon/wiki/Mod_Wiki.php:143 +msgid "Error creating zip file export folder" msgstr "" -#: ../../include/conversation.php:193 -#, php-format -msgid "likes %1$s's %2$s" +#: ../../addon/wiki/Mod_Wiki.php:194 +msgid "Error downloading wiki: " msgstr "" -#: ../../include/conversation.php:196 -#, php-format -msgid "doesn't like %1$s's %2$s" +#: ../../addon/wiki/Mod_Wiki.php:215 ../../Zotlabs/Storage/Browser.php:407 +msgid "Download" msgstr "" -#: ../../include/conversation.php:236 ../../include/conversation.php:238 -#, php-format -msgid "%1$s is now connected with %2$s" +#: ../../addon/wiki/Mod_Wiki.php:216 ../../addon/wiki/Mod_Wiki.php:406 +#: ../../Zotlabs/Module/Layouts.php:196 ../../Zotlabs/Module/Blocks.php:164 +#: ../../Zotlabs/Module/Webpages.php:256 ../../Zotlabs/Module/Pubsites.php:62 +msgid "View" msgstr "" -#: ../../include/conversation.php:273 -#, php-format -msgid "%1$s poked %2$s" +#: ../../addon/wiki/Mod_Wiki.php:217 ../../Zotlabs/Module/Profiles.php:853 +#: ../../Zotlabs/Module/Manage.php:137 +msgid "Create New" msgstr "" -#: ../../include/conversation.php:296 ../../Zotlabs/Module/Mood.php:76 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" +#: ../../addon/wiki/Mod_Wiki.php:219 +msgid "Wiki name" msgstr "" -#: ../../include/conversation.php:526 ../../Zotlabs/Lib/ThreadItem.php:508 -msgid "This is an unsaved preview" +#: ../../addon/wiki/Mod_Wiki.php:220 +msgid "Content type" msgstr "" -#: ../../include/conversation.php:659 ../../Zotlabs/Module/Photos.php:1119 -msgctxt "title" -msgid "Likes" +#: ../../addon/wiki/Mod_Wiki.php:222 ../../Zotlabs/Storage/Browser.php:381 +msgid "Type" msgstr "" -#: ../../include/conversation.php:660 ../../Zotlabs/Module/Photos.php:1119 -msgctxt "title" -msgid "Dislikes" +#: ../../addon/wiki/Mod_Wiki.php:223 +msgid "Any type" msgstr "" -#: ../../include/conversation.php:661 ../../Zotlabs/Widget/Pinned.php:80 -#: ../../Zotlabs/Module/Photos.php:1120 -msgctxt "title" -msgid "Agree" +#: ../../addon/wiki/Mod_Wiki.php:230 +msgid "Lock content type" msgstr "" -#: ../../include/conversation.php:662 ../../Zotlabs/Widget/Pinned.php:81 -#: ../../Zotlabs/Module/Photos.php:1120 -msgctxt "title" -msgid "Disagree" +#: ../../addon/wiki/Mod_Wiki.php:231 +msgid "Create a status post for this wiki" msgstr "" -#: ../../include/conversation.php:663 ../../Zotlabs/Widget/Pinned.php:82 -#: ../../Zotlabs/Module/Photos.php:1120 -msgctxt "title" -msgid "Abstain" +#: ../../addon/wiki/Mod_Wiki.php:232 +msgid "Edit Wiki Name" msgstr "" -#: ../../include/conversation.php:664 ../../Zotlabs/Widget/Pinned.php:69 -#: ../../Zotlabs/Module/Photos.php:1121 -msgctxt "title" -msgid "Attending" +#: ../../addon/wiki/Mod_Wiki.php:277 +msgid "Wiki not found" msgstr "" -#: ../../include/conversation.php:665 ../../Zotlabs/Widget/Pinned.php:70 -#: ../../Zotlabs/Module/Photos.php:1121 -msgctxt "title" -msgid "Not attending" +#: ../../addon/wiki/Mod_Wiki.php:303 +msgid "Rename page" msgstr "" -#: ../../include/conversation.php:666 ../../Zotlabs/Widget/Pinned.php:71 -#: ../../Zotlabs/Module/Photos.php:1121 -msgctxt "title" -msgid "Might attend" +#: ../../addon/wiki/Mod_Wiki.php:318 +msgid "Error retrieving page content" msgstr "" -#: ../../include/conversation.php:736 -msgid "Select" +#: ../../addon/wiki/Mod_Wiki.php:326 ../../addon/wiki/Mod_Wiki.php:328 +msgid "New page" msgstr "" -#: ../../include/conversation.php:743 ../../Zotlabs/Lib/ThreadItem.php:270 -msgid "Toggle Star Status" +#: ../../addon/wiki/Mod_Wiki.php:363 +msgid "Revision Comparison" msgstr "" -#: ../../include/conversation.php:749 -msgid "Private Message" +#: ../../addon/wiki/Mod_Wiki.php:364 +#: ../../addon/wiki/Lib/NativeWikiPage.php:591 +#: ../../addon/wiki/Widget/Wiki_page_history.php:31 +msgid "Revert" msgstr "" -#: ../../include/conversation.php:758 ../../Zotlabs/Widget/Pinned.php:91 -#: ../../Zotlabs/Lib/ThreadItem.php:280 -msgid "Message signature validated" +#: ../../addon/wiki/Mod_Wiki.php:371 +msgid "Short description of your changes (optional)" msgstr "" -#: ../../include/conversation.php:759 ../../Zotlabs/Widget/Pinned.php:92 -#: ../../Zotlabs/Lib/ThreadItem.php:281 -msgid "Message signature incorrect" +#: ../../addon/wiki/Mod_Wiki.php:391 +msgid "New page name" msgstr "" -#: ../../include/conversation.php:796 -#: ../../Zotlabs/Module/Admin/Accounts.php:318 -#: ../../Zotlabs/Module/Connections.php:349 -#: ../../Zotlabs/Module/Connections.php:400 -msgid "Approve" +#: ../../addon/wiki/Mod_Wiki.php:396 +msgid "Embed image from photo albums" msgstr "" -#: ../../include/conversation.php:802 -#, php-format -msgid "View %s's profile @ %s" +#: ../../addon/wiki/Mod_Wiki.php:402 ../../Zotlabs/Module/Cover_photo.php:432 +#: ../../Zotlabs/Module/Profile_photo.php:557 +msgid "Choose a different album" msgstr "" -#: ../../include/conversation.php:823 -msgid "Categories:" +#: ../../addon/wiki/Mod_Wiki.php:407 +msgid "History" msgstr "" -#: ../../include/conversation.php:824 -msgid "Filed under:" +#: ../../addon/wiki/Mod_Wiki.php:485 +msgid "Error creating wiki. Invalid name." msgstr "" -#: ../../include/conversation.php:830 ../../Zotlabs/Widget/Pinned.php:135 -#: ../../Zotlabs/Lib/ThreadItem.php:437 -#, php-format -msgid "from %s" +#: ../../addon/wiki/Mod_Wiki.php:492 +msgid "A wiki with this name already exists." msgstr "" -#: ../../include/conversation.php:833 ../../Zotlabs/Widget/Pinned.php:138 -#: ../../Zotlabs/Lib/ThreadItem.php:440 -#, php-format -msgid "last edited: %s" +#: ../../addon/wiki/Mod_Wiki.php:505 +msgid "Wiki created, but error creating Home page." msgstr "" -#: ../../include/conversation.php:834 ../../Zotlabs/Widget/Pinned.php:139 -#: ../../Zotlabs/Lib/ThreadItem.php:441 -#, php-format -msgid "Expires: %s" +#: ../../addon/wiki/Mod_Wiki.php:512 +msgid "Error creating wiki" msgstr "" -#: ../../include/conversation.php:851 ../../Zotlabs/Module/Photos.php:1085 -#: ../../Zotlabs/Lib/ThreadItem.php:509 -msgid "Please wait" +#: ../../addon/wiki/Mod_Wiki.php:536 +msgid "Error updating wiki. Invalid name." msgstr "" -#: ../../include/conversation.php:952 -msgid "remove" +#: ../../addon/wiki/Mod_Wiki.php:555 +msgid "Error updating wiki" msgstr "" -#: ../../include/conversation.php:956 -msgid "Loading..." +#: ../../addon/wiki/Mod_Wiki.php:570 +msgid "Wiki delete permission denied." msgstr "" -#: ../../include/conversation.php:957 ../../Zotlabs/Lib/ThreadItem.php:297 -msgid "Conversation Features" +#: ../../addon/wiki/Mod_Wiki.php:580 +msgid "Error deleting wiki" msgstr "" -#: ../../include/conversation.php:958 -msgid "Delete Selected Items" +#: ../../addon/wiki/Mod_Wiki.php:613 +msgid "New page created" msgstr "" -#: ../../include/conversation.php:994 -msgid "View Source" +#: ../../addon/wiki/Mod_Wiki.php:739 +msgid "Cannot delete Home" msgstr "" -#: ../../include/conversation.php:1004 -msgid "Follow Thread" +#: ../../addon/wiki/Mod_Wiki.php:815 +msgid "Current Revision" msgstr "" -#: ../../include/conversation.php:1013 -msgid "Unfollow Thread" +#: ../../addon/wiki/Mod_Wiki.php:815 +msgid "Selected Revision" msgstr "" -#: ../../include/conversation.php:1105 ../../Zotlabs/Module/Connedit.php:501 -msgid "Recent Activity" +#: ../../addon/wiki/Mod_Wiki.php:870 +msgid "You must be authenticated." msgstr "" -#: ../../include/conversation.php:1117 ../../include/connections.php:112 -#: ../../include/channel.php:1610 ../../Zotlabs/Widget/Suggestions.php:51 -#: ../../Zotlabs/Widget/Follow.php:37 ../../Zotlabs/Module/Directory.php:369 -#: ../../Zotlabs/Module/Connections.php:356 ../../Zotlabs/Module/Suggest.php:69 -msgid "Connect" +#: ../../addon/wiki/Mod_Wiki.php:899 ../../addon/wiki/Widget/Wiki_pages.php:61 +msgid "Add new page" msgstr "" -#: ../../include/conversation.php:1129 -msgid "Edit Connection" +#: ../../addon/wiki/Mod_Wiki.php:906 ../../addon/wiki/Widget/Wiki_pages.php:68 +#: ../../Zotlabs/Module/Dreport.php:133 +msgid "Options" msgstr "" -#: ../../include/conversation.php:1141 ../../Zotlabs/Module/Poke.php:197 -#: ../../Zotlabs/Lib/Apps.php:355 -msgid "Poke" +#: ../../addon/wiki/Lib/NativeWikiPage.php:41 +#: ../../addon/wiki/Lib/NativeWikiPage.php:109 +msgid "(No Title)" msgstr "" -#: ../../include/conversation.php:1265 -#, php-format -msgid "%s likes this." +#: ../../addon/wiki/Lib/NativeWikiPage.php:123 +msgid "Wiki page create failed." msgstr "" -#: ../../include/conversation.php:1265 -#, php-format -msgid "%s doesn't like this." +#: ../../addon/wiki/Lib/NativeWikiPage.php:137 +msgid "Wiki not found." msgstr "" -#: ../../include/conversation.php:1269 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1271 -#, php-format -msgid "%2$d people don't like this." -msgid_plural "%2$d people don't like this." -msgstr[0] "" -msgstr[1] "" +#: ../../addon/wiki/Lib/NativeWikiPage.php:148 +msgid "Destination name already exists" +msgstr "" -#: ../../include/conversation.php:1277 -msgid "and" +#: ../../addon/wiki/Lib/NativeWikiPage.php:181 +#: ../../addon/wiki/Lib/NativeWikiPage.php:376 +msgid "Page not found" msgstr "" -#: ../../include/conversation.php:1280 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] "" -msgstr[1] "" +#: ../../addon/wiki/Lib/NativeWikiPage.php:211 +msgid "Error reading page content" +msgstr "" -#: ../../include/conversation.php:1281 -#, php-format -msgid "%s like this." +#: ../../addon/wiki/Lib/NativeWikiPage.php:367 +#: ../../addon/wiki/Lib/NativeWikiPage.php:425 +#: ../../addon/wiki/Lib/NativeWikiPage.php:493 +#: ../../addon/wiki/Lib/NativeWikiPage.php:534 +msgid "Error reading wiki" msgstr "" -#: ../../include/conversation.php:1281 -#, php-format -msgid "%s don't like this." +#: ../../addon/wiki/Lib/NativeWikiPage.php:411 +msgid "Page update failed." msgstr "" -#: ../../include/conversation.php:1471 -msgid "Toggle poll" +#: ../../addon/wiki/Lib/NativeWikiPage.php:447 +msgid "Nothing deleted" msgstr "" -#: ../../include/conversation.php:1472 -msgid "Option" +#: ../../addon/wiki/Lib/NativeWikiPage.php:514 +msgid "Compare: object not found." msgstr "" -#: ../../include/conversation.php:1473 -msgid "Add option" +#: ../../addon/wiki/Lib/NativeWikiPage.php:521 +msgid "Page updated" msgstr "" -#: ../../include/conversation.php:1474 -msgid "Minutes" +#: ../../addon/wiki/Lib/NativeWikiPage.php:529 +msgid "Wiki resource_id required for git commit" msgstr "" -#: ../../include/conversation.php:1474 -msgid "Hours" +#: ../../addon/wiki/Lib/NativeWikiPage.php:589 +#: ../../addon/wiki/Widget/Wiki_page_history.php:29 +msgctxt "wiki_history" +msgid "Message" msgstr "" -#: ../../include/conversation.php:1474 -msgid "Days" +#: ../../addon/wiki/Lib/NativeWikiPage.php:590 +#: ../../addon/wiki/Widget/Wiki_page_history.php:30 +msgid "Date" msgstr "" -#: ../../include/conversation.php:1475 -msgid "Allow multiple answers" +#: ../../addon/wiki/Lib/NativeWikiPage.php:592 +#: ../../addon/wiki/Widget/Wiki_page_history.php:32 +msgid "Compare" msgstr "" -#: ../../include/conversation.php:1485 -msgid "Summary (optional)" +#: ../../addon/wiki/Lib/NativeWiki.php:144 +msgid "Wiki updated successfully" msgstr "" -#: ../../include/conversation.php:1760 ../../include/taxonomy.php:672 -#: ../../include/channel.php:1771 ../../Zotlabs/Module/Photos.php:1142 -#: ../../Zotlabs/Lib/ThreadItem.php:241 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "" -msgstr[1] "" +#: ../../addon/wiki/Lib/NativeWiki.php:204 +msgid "Wiki files deleted successfully" +msgstr "" -#: ../../include/conversation.php:1763 ../../Zotlabs/Module/Photos.php:1147 -#: ../../Zotlabs/Lib/ThreadItem.php:246 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "" -msgstr[1] "" +#: ../../addon/wiki/Widget/Wiki_pages.php:55 +msgid "Wiki Pages" +msgstr "" -#: ../../include/conversation.php:1766 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "" -msgstr[1] "" +#: ../../addon/wiki/Widget/Wiki_pages.php:66 +msgid "Page name" +msgstr "" -#: ../../include/conversation.php:1769 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "" -msgstr[1] "" +#: ../../addon/fuzzloc/Mod_Fuzzloc.php:22 +msgid "Fuzzloc Settings updated." +msgstr "" -#: ../../include/conversation.php:1772 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "" -msgstr[1] "" +#: ../../addon/fuzzloc/Mod_Fuzzloc.php:38 +msgid "Minimum offset in meters" +msgstr "" -#: ../../include/conversation.php:1775 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "" -msgstr[1] "" +#: ../../addon/fuzzloc/Mod_Fuzzloc.php:42 +msgid "Maximum offset in meters" +msgstr "" -#: ../../include/conversation.php:1778 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1781 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/selectors.php:17 -msgid "Select a profile to assign to this contact" +#: ../../addon/fuzzloc/Mod_Fuzzloc.php:51 +msgid "Fuzzy Location" msgstr "" -#: ../../include/selectors.php:45 -msgid "Frequently" +#: ../../addon/diaspora/diaspora.php:78 +msgid "" +"Please install the statistics addon to be able to configure a diaspora relay" msgstr "" -#: ../../include/selectors.php:46 -msgid "Hourly" +#: ../../addon/diaspora/diaspora.php:88 +msgid "Diaspora Relay Handle" msgstr "" -#: ../../include/selectors.php:47 -msgid "Twice daily" +#: ../../addon/diaspora/diaspora.php:88 +msgid "Address of a diaspora relay. Example: relay@diasporarelay.tld" msgstr "" -#: ../../include/selectors.php:48 -msgid "Daily" +#: ../../addon/diaspora/diaspora.php:108 +msgid "Diaspora relay could not be imported" msgstr "" -#: ../../include/selectors.php:49 -msgid "Weekly" +#: ../../addon/diaspora/diaspora.php:1068 +msgid "No subject" msgstr "" -#: ../../include/selectors.php:50 -msgid "Monthly" +#: ../../addon/diaspora/util.php:337 ../../addon/diaspora/util.php:350 +#: ../../addon/diaspora/p.php:48 ../../Zotlabs/Lib/Enotify.php:61 +msgid "$projectname" msgstr "" -#: ../../include/selectors.php:64 -msgid "Currently Male" +#: ../../addon/diaspora/import_diaspora.php:18 +msgid "No username found in import file." msgstr "" -#: ../../include/selectors.php:64 -msgid "Currently Female" +#: ../../addon/diaspora/import_diaspora.php:140 +msgid "Import completed." msgstr "" -#: ../../include/selectors.php:64 -msgid "Mostly Male" +#: ../../addon/diaspora/Mod_Diaspora.php:43 +msgid "Diaspora Protocol Settings updated." msgstr "" -#: ../../include/selectors.php:64 -msgid "Mostly Female" +#: ../../addon/diaspora/Mod_Diaspora.php:52 +msgid "" +"The diaspora protocol does not support location independence. Connections " +"you make within that network may be unreachable from alternate channel " +"locations." msgstr "" -#: ../../include/selectors.php:64 -msgid "Transgender" +#: ../../addon/diaspora/Mod_Diaspora.php:75 +msgid "Allow any Diaspora member to comment or like your public posts" msgstr "" -#: ../../include/selectors.php:64 -msgid "Intersex" +#: ../../addon/diaspora/Mod_Diaspora.php:75 +msgid "" +"If this setting is disabled only your contacts will be able to comment or " +"like your public posts" msgstr "" -#: ../../include/selectors.php:64 -msgid "Transsexual" +#: ../../addon/diaspora/Mod_Diaspora.php:79 +msgid "Prevent your hashtags from being redirected to other sites" msgstr "" -#: ../../include/selectors.php:64 -msgid "Hermaphrodite" +#: ../../addon/diaspora/Mod_Diaspora.php:83 +msgid "Sign and forward posts and comments with no existing Diaspora signature" msgstr "" -#: ../../include/selectors.php:64 ../../include/channel.php:1716 -msgid "Neuter" +#: ../../addon/diaspora/Mod_Diaspora.php:88 +msgid "Followed hashtags (comma separated, do not include the #)" msgstr "" -#: ../../include/selectors.php:64 ../../include/channel.php:1718 -msgid "Non-specific" +#: ../../addon/diaspora/Mod_Diaspora.php:97 +msgid "Diaspora Protocol" msgstr "" -#: ../../include/selectors.php:64 -msgid "Undecided" +#: ../../addon/diaspora/Receiver.php:1595 +#, php-format +msgid "%1$s dislikes %2$s's %3$s" msgstr "" -#: ../../include/selectors.php:100 ../../include/selectors.php:119 -msgid "Males" +#: ../../addon/diaspora/Receiver.php:2206 ../../Zotlabs/Module/Like.php:487 +#, php-format +msgid "%1$s is attending %2$s's %3$s" msgstr "" -#: ../../include/selectors.php:100 ../../include/selectors.php:119 -msgid "Females" +#: ../../addon/diaspora/Receiver.php:2208 ../../Zotlabs/Module/Like.php:489 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" msgstr "" -#: ../../include/selectors.php:100 -msgid "Gay" +#: ../../addon/diaspora/Receiver.php:2210 ../../Zotlabs/Module/Like.php:491 +#, php-format +msgid "%1$s may attend %2$s's %3$s" msgstr "" -#: ../../include/selectors.php:100 -msgid "Lesbian" +#: ../../addon/openid/Mod_Openid.php:32 +msgid "OpenID protocol error. No ID returned." msgstr "" -#: ../../include/selectors.php:100 -msgid "No Preference" +#: ../../addon/openid/Mod_Openid.php:78 ../../addon/openid/Mod_Openid.php:179 +#, php-format +msgid "Welcome %s. Remote authentication successful." msgstr "" -#: ../../include/selectors.php:100 -msgid "Bisexual" +#: ../../addon/openid/MysqlProvider.php:52 +msgid "First Name" msgstr "" -#: ../../include/selectors.php:100 -msgid "Autosexual" +#: ../../addon/openid/MysqlProvider.php:53 +msgid "Last Name" msgstr "" -#: ../../include/selectors.php:100 -msgid "Abstinent" +#: ../../addon/openid/MysqlProvider.php:55 +msgid "Full Name" msgstr "" -#: ../../include/selectors.php:100 -msgid "Virgin" +#: ../../addon/openid/MysqlProvider.php:58 +#: ../../addon/openid/MysqlProvider.php:59 +#: ../../addon/openid/MysqlProvider.php:60 ../../Zotlabs/Lib/Apps.php:366 +msgid "Profile Photo" msgstr "" -#: ../../include/selectors.php:100 -msgid "Deviant" +#: ../../addon/openid/MysqlProvider.php:61 +msgid "Profile Photo 16px" msgstr "" -#: ../../include/selectors.php:100 -msgid "Fetish" +#: ../../addon/openid/MysqlProvider.php:62 +msgid "Profile Photo 32px" msgstr "" -#: ../../include/selectors.php:100 -msgid "Oodles" +#: ../../addon/openid/MysqlProvider.php:63 +msgid "Profile Photo 48px" msgstr "" -#: ../../include/selectors.php:100 -msgid "Nonsexual" +#: ../../addon/openid/MysqlProvider.php:64 +msgid "Profile Photo 64px" msgstr "" -#: ../../include/selectors.php:138 ../../include/selectors.php:155 -msgid "Single" +#: ../../addon/openid/MysqlProvider.php:65 +msgid "Profile Photo 80px" msgstr "" -#: ../../include/selectors.php:138 -msgid "Lonely" +#: ../../addon/openid/MysqlProvider.php:66 +msgid "Profile Photo 128px" msgstr "" -#: ../../include/selectors.php:138 -msgid "Available" +#: ../../addon/openid/MysqlProvider.php:68 +#: ../../Zotlabs/Module/Profiles.php:784 +msgid "Homepage URL" msgstr "" -#: ../../include/selectors.php:138 -msgid "Unavailable" +#: ../../addon/openid/MysqlProvider.php:69 ../../Zotlabs/Lib/Apps.php:364 +msgid "Language" msgstr "" -#: ../../include/selectors.php:138 -msgid "Has crush" +#: ../../addon/openid/MysqlProvider.php:70 +msgid "Birth Year" msgstr "" -#: ../../include/selectors.php:138 -msgid "Infatuated" +#: ../../addon/openid/MysqlProvider.php:71 +msgid "Birth Month" msgstr "" -#: ../../include/selectors.php:138 ../../include/selectors.php:155 -msgid "Dating" +#: ../../addon/openid/MysqlProvider.php:72 +msgid "Birth Day" msgstr "" -#: ../../include/selectors.php:138 -msgid "Unfaithful" +#: ../../addon/openid/MysqlProvider.php:73 +msgid "Birthdate" msgstr "" -#: ../../include/selectors.php:138 -msgid "Sex Addict" +#: ../../addon/openid/MysqlProvider.php:74 +#: ../../Zotlabs/Module/Profiles.php:457 +msgid "Gender" msgstr "" -#: ../../include/selectors.php:138 ../../include/channel.php:456 -#: ../../include/channel.php:459 ../../Zotlabs/Widget/Affinity.php:38 -#: ../../Zotlabs/Module/Contactedit.php:297 -#: ../../Zotlabs/Module/Connedit.php:581 -msgid "Friends" +#: ../../addon/openid/openid.php:49 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." msgstr "" -#: ../../include/selectors.php:138 -msgid "Friends/Benefits" +#: ../../addon/openid/openid.php:49 +msgid "The error message was:" msgstr "" -#: ../../include/selectors.php:138 -msgid "Casual" +#: ../../addon/openclipatar/openclipatar.php:51 +#: ../../addon/openclipatar/openclipatar.php:129 +msgid "System defaults:" msgstr "" -#: ../../include/selectors.php:138 -msgid "Engaged" +#: ../../addon/openclipatar/openclipatar.php:55 +msgid "Preferred Clipart IDs" msgstr "" -#: ../../include/selectors.php:138 ../../include/selectors.php:155 -msgid "Married" +#: ../../addon/openclipatar/openclipatar.php:55 +msgid "List of preferred clipart ids. These will be shown first." msgstr "" -#: ../../include/selectors.php:138 -msgid "Imaginarily married" +#: ../../addon/openclipatar/openclipatar.php:56 +msgid "Default Search Term" msgstr "" -#: ../../include/selectors.php:138 -msgid "Partners" +#: ../../addon/openclipatar/openclipatar.php:56 +msgid "The default search term. These will be shown second." msgstr "" -#: ../../include/selectors.php:138 ../../include/selectors.php:155 -msgid "Cohabiting" +#: ../../addon/openclipatar/openclipatar.php:57 +msgid "Return After" msgstr "" -#: ../../include/selectors.php:138 -msgid "Common law" +#: ../../addon/openclipatar/openclipatar.php:57 +msgid "Page to load after image selection." msgstr "" -#: ../../include/selectors.php:138 -msgid "Happy" +#: ../../addon/openclipatar/openclipatar.php:60 +msgid "Profile List" msgstr "" -#: ../../include/selectors.php:138 -msgid "Not looking" +#: ../../addon/openclipatar/openclipatar.php:62 +msgid "Order of Preferred" msgstr "" -#: ../../include/selectors.php:138 -msgid "Swinger" +#: ../../addon/openclipatar/openclipatar.php:62 +msgid "Sort order of preferred clipart ids." msgstr "" -#: ../../include/selectors.php:138 -msgid "Betrayed" +#: ../../addon/openclipatar/openclipatar.php:63 +#: ../../addon/openclipatar/openclipatar.php:69 +msgid "Newest first" msgstr "" -#: ../../include/selectors.php:138 ../../include/selectors.php:155 -msgid "Separated" +#: ../../addon/openclipatar/openclipatar.php:66 +msgid "As entered" msgstr "" -#: ../../include/selectors.php:138 -msgid "Unstable" +#: ../../addon/openclipatar/openclipatar.php:68 +msgid "Order of other" msgstr "" -#: ../../include/selectors.php:138 ../../include/selectors.php:155 -msgid "Divorced" +#: ../../addon/openclipatar/openclipatar.php:68 +msgid "Sort order of other clipart ids." msgstr "" -#: ../../include/selectors.php:138 -msgid "Imaginarily divorced" +#: ../../addon/openclipatar/openclipatar.php:70 +msgid "Most downloaded first" msgstr "" -#: ../../include/selectors.php:138 ../../include/selectors.php:155 -msgid "Widowed" +#: ../../addon/openclipatar/openclipatar.php:71 +msgid "Most liked first" msgstr "" -#: ../../include/selectors.php:138 -msgid "Uncertain" +#: ../../addon/openclipatar/openclipatar.php:73 +msgid "Preferred IDs Message" msgstr "" -#: ../../include/selectors.php:138 ../../include/selectors.php:155 -msgid "It's complicated" +#: ../../addon/openclipatar/openclipatar.php:73 +msgid "Message to display above preferred results." msgstr "" -#: ../../include/selectors.php:138 -msgid "Don't care" +#: ../../addon/openclipatar/openclipatar.php:79 +msgid "Uploaded by: " msgstr "" -#: ../../include/selectors.php:138 -msgid "Ask me" +#: ../../addon/openclipatar/openclipatar.php:79 +msgid "Drawn by: " msgstr "" -#: ../../include/connections.php:136 -msgid "New window" +#: ../../addon/openclipatar/openclipatar.php:183 +#: ../../addon/openclipatar/openclipatar.php:195 +msgid "Use this image" msgstr "" -#: ../../include/connections.php:137 -msgid "Open the selected location in a different window or browser tab" +#: ../../addon/openclipatar/openclipatar.php:193 +msgid "Or select from a free OpenClipart.org image:" msgstr "" -#: ../../include/group.php:23 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." +#: ../../addon/openclipatar/openclipatar.php:196 +msgid "Search Term" msgstr "" -#: ../../include/group.php:271 -msgid "Add new connections to this privacy group" +#: ../../addon/openclipatar/openclipatar.php:233 +msgid "Unknown error. Please try again later." msgstr "" -#: ../../include/group.php:305 -msgid "edit" +#: ../../addon/openclipatar/openclipatar.php:299 +#: ../../Zotlabs/Module/Profile_photo.php:268 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." msgstr "" -#: ../../include/group.php:327 ../../include/acl_selectors.php:87 -#: ../../Zotlabs/Widget/Activity_filter.php:95 -#: ../../Zotlabs/Module/Group.php:143 ../../Zotlabs/Lib/Apps.php:368 -msgid "Privacy Groups" +#: ../../addon/openclipatar/openclipatar.php:309 +msgid "Profile photo updated successfully." msgstr "" -#: ../../include/group.php:328 -msgid "Edit group" +#: ../../addon/likebanner/likebanner.php:51 +msgid "Your Webbie:" msgstr "" -#: ../../include/group.php:329 -msgid "Manage privacy groups" +#: ../../addon/likebanner/likebanner.php:54 +msgid "Fontsize (px):" msgstr "" -#: ../../include/group.php:330 -msgid "Channels not in any privacy group" +#: ../../addon/likebanner/likebanner.php:68 +msgid "Link:" msgstr "" -#: ../../include/group.php:332 ../../Zotlabs/Widget/Savedsearch.php:90 -msgid "add" +#: ../../addon/likebanner/likebanner.php:70 +msgid "Like us on Hubzilla" msgstr "" -#: ../../include/taxonomy.php:323 -msgid "Trending" +#: ../../addon/likebanner/likebanner.php:72 +msgid "Embed:" msgstr "" -#: ../../include/taxonomy.php:323 ../../include/taxonomy.php:460 -#: ../../include/taxonomy.php:481 ../../Zotlabs/Widget/Tagcloud.php:27 -msgid "Tags" +#: ../../addon/redphotos/redphotos.php:106 +msgid "Photos imported" msgstr "" -#: ../../include/taxonomy.php:561 -msgid "Keywords" +#: ../../addon/redphotos/redphotos.php:129 +msgid "Redmatrix Photo Album Import" msgstr "" -#: ../../include/taxonomy.php:582 -msgid "have" +#: ../../addon/redphotos/redphotos.php:130 +msgid "This will import all your Redmatrix photo albums to this channel." msgstr "" -#: ../../include/taxonomy.php:582 -msgid "has" +#: ../../addon/redphotos/redphotos.php:131 +#: ../../addon/redfiles/redfiles.php:121 +msgid "Redmatrix Server base URL" msgstr "" -#: ../../include/taxonomy.php:583 -msgid "want" +#: ../../addon/redphotos/redphotos.php:132 +#: ../../addon/redfiles/redfiles.php:122 +msgid "Redmatrix Login Username" msgstr "" -#: ../../include/taxonomy.php:583 -msgid "wants" +#: ../../addon/redphotos/redphotos.php:133 +#: ../../addon/redfiles/redfiles.php:123 +msgid "Redmatrix Login Password" msgstr "" -#: ../../include/taxonomy.php:584 ../../Zotlabs/Lib/ThreadItem.php:317 -msgid "like" +#: ../../addon/redphotos/redphotos.php:134 +msgid "Import just this album" msgstr "" -#: ../../include/taxonomy.php:584 -msgid "likes" +#: ../../addon/redphotos/redphotos.php:134 +msgid "Leave blank to import all albums" msgstr "" -#: ../../include/taxonomy.php:585 ../../Zotlabs/Lib/ThreadItem.php:318 -msgid "dislike" +#: ../../addon/redphotos/redphotos.php:135 +msgid "Maximum count to import" msgstr "" -#: ../../include/taxonomy.php:585 -msgid "dislikes" +#: ../../addon/redphotos/redphotos.php:135 +msgid "0 or blank to import all available" msgstr "" -#: ../../include/items.php:1040 -msgid "(Unknown)" +#: ../../addon/moremoods/moremoods.php:19 +msgid "lonely" msgstr "" -#: ../../include/items.php:1228 -msgid "Visible to anybody on the internet." +#: ../../addon/moremoods/moremoods.php:20 +msgid "drunk" msgstr "" -#: ../../include/items.php:1230 -msgid "Visible to you only." +#: ../../addon/moremoods/moremoods.php:21 +msgid "horny" msgstr "" -#: ../../include/items.php:1232 -msgid "Visible to anybody in this network." +#: ../../addon/moremoods/moremoods.php:22 +msgid "stoned" msgstr "" -#: ../../include/items.php:1234 -msgid "Visible to anybody authenticated." +#: ../../addon/moremoods/moremoods.php:23 +msgid "fucked up" msgstr "" -#: ../../include/items.php:1236 -#, php-format -msgid "Visible to anybody on %s." +#: ../../addon/moremoods/moremoods.php:24 +msgid "clusterfucked" msgstr "" -#: ../../include/items.php:1238 -msgid "Visible to all connections." +#: ../../addon/moremoods/moremoods.php:25 +msgid "crazy" msgstr "" -#: ../../include/items.php:1240 -msgid "Visible to approved connections." +#: ../../addon/moremoods/moremoods.php:26 +msgid "hurt" msgstr "" -#: ../../include/items.php:1242 -msgid "Visible to specific connections." +#: ../../addon/moremoods/moremoods.php:27 +msgid "sleepy" msgstr "" -#: ../../include/items.php:3302 ../../Zotlabs/Module/Share.php:104 -#, php-format -msgid "🔁 Repeated %1$s's %2$s" +#: ../../addon/moremoods/moremoods.php:28 +msgid "grumpy" msgstr "" -#: ../../include/items.php:4394 ../../Zotlabs/Module/Group.php:62 -#: ../../Zotlabs/Module/Group.php:206 -msgid "Privacy group not found." +#: ../../addon/moremoods/moremoods.php:29 +msgid "high" msgstr "" -#: ../../include/items.php:4410 -msgid "Privacy group is empty." +#: ../../addon/moremoods/moremoods.php:30 +msgid "semi-conscious" msgstr "" -#: ../../include/items.php:4417 -#, php-format -msgid "Privacy group: %s" +#: ../../addon/moremoods/moremoods.php:31 +msgid "in love" msgstr "" -#: ../../include/items.php:4427 -#, php-format -msgid "Connection: %s" +#: ../../addon/moremoods/moremoods.php:32 +msgid "in lust" msgstr "" -#: ../../include/items.php:4429 -msgid "Connection not found." +#: ../../addon/moremoods/moremoods.php:33 +msgid "naked" msgstr "" -#: ../../include/items.php:4775 ../../Zotlabs/Module/Cover_photo.php:297 -msgid "female" +#: ../../addon/moremoods/moremoods.php:34 +msgid "stinky" msgstr "" -#: ../../include/items.php:4776 ../../Zotlabs/Module/Cover_photo.php:298 -#, php-format -msgid "%1$s updated her %2$s" +#: ../../addon/moremoods/moremoods.php:35 +msgid "sweaty" msgstr "" -#: ../../include/items.php:4777 ../../Zotlabs/Module/Cover_photo.php:299 -msgid "male" +#: ../../addon/moremoods/moremoods.php:36 +msgid "bleeding out" msgstr "" -#: ../../include/items.php:4778 ../../Zotlabs/Module/Cover_photo.php:300 -#, php-format -msgid "%1$s updated his %2$s" +#: ../../addon/moremoods/moremoods.php:37 +msgid "victorious" msgstr "" -#: ../../include/items.php:4780 ../../Zotlabs/Module/Cover_photo.php:302 -#, php-format -msgid "%1$s updated their %2$s" +#: ../../addon/moremoods/moremoods.php:38 +msgid "defeated" msgstr "" -#: ../../include/items.php:4782 -msgid "profile photo" +#: ../../addon/moremoods/moremoods.php:39 +msgid "envious" msgstr "" -#: ../../include/items.php:4979 -#, php-format -msgid "[Edited %s]" +#: ../../addon/moremoods/moremoods.php:40 +msgid "jealous" msgstr "" -#: ../../include/items.php:4979 -msgctxt "edit_activity" -msgid "Post" +#: ../../addon/ljpost/Mod_Ljpost.php:53 +msgid "Livejournal username" msgstr "" -#: ../../include/items.php:4979 -msgctxt "edit_activity" -msgid "Comment" +#: ../../addon/ljpost/Mod_Ljpost.php:57 +msgid "Livejournal password" msgstr "" -#: ../../include/account.php:38 -msgid "The provided email address is not valid" +#: ../../addon/ljpost/Mod_Ljpost.php:61 +msgid "Post to Livejournal by default" msgstr "" -#: ../../include/account.php:41 -msgid "The provided email domain is not among those allowed on this site" +#: ../../addon/ljpost/Mod_Ljpost.php:65 +msgid "Send wall-to-wall posts to Livejournal" msgstr "" -#: ../../include/account.php:48 -msgid "The provided email address is already registered at this site" +#: ../../addon/ljpost/Mod_Ljpost.php:77 +msgid "Livejournal Crosspost Connector" msgstr "" -#: ../../include/account.php:55 -msgid "" -"There is a pending registration for this address - click \"Register\" to " -"continue verification" +#: ../../addon/ljpost/ljpost.php:49 +msgid "Post to Livejournal" msgstr "" -#: ../../include/account.php:94 -msgid "An invitation is required." +#: ../../addon/ljpost/ljpost.php:127 +msgid "Posted by" msgstr "" -#: ../../include/account.php:103 -msgid "Invitation could not be verified." +#: ../../addon/smileybutton/Mod_Smileybutton.php:42 +msgid "Hide the button and show the smilies directly." msgstr "" -#: ../../include/account.php:191 -msgid "Please enter the required information." +#: ../../addon/smileybutton/Mod_Smileybutton.php:50 +msgid "Smileybutton Settings" msgstr "" -#: ../../include/account.php:258 ../../include/account.php:366 -msgid "Failed to store account information." +#: ../../addon/nsabait/Mod_Nsabait.php:23 +msgid "NSA Bait App" msgstr "" -#: ../../include/account.php:435 ../../include/account.php:503 -#: ../../Zotlabs/Module/Register.php:328 -#, php-format -msgid "Registration confirmation for %s" +#: ../../addon/nsabait/Mod_Nsabait.php:25 +msgid "Make yourself a political target." msgstr "" -#: ../../include/account.php:578 -#, php-format -msgid "Registration request at %s" +#: ../../addon/randpost/randpost.php:99 +msgid "You're welcome." msgstr "" -#: ../../include/account.php:600 -msgid "your registration password" +#: ../../addon/randpost/randpost.php:100 +msgid "Ah shucks..." msgstr "" -#: ../../include/account.php:606 ../../include/account.php:695 -#, php-format -msgid "Registration details for %s" +#: ../../addon/randpost/randpost.php:101 +msgid "Don't mention it." msgstr "" -#: ../../include/account.php:706 -msgid "Account approved." +#: ../../addon/randpost/randpost.php:102 +msgid "<blush>" msgstr "" -#: ../../include/account.php:762 -#, php-format -msgid "Registration revoked for %s" +#: ../../addon/statusnet/Mod_Statusnet.php:61 +msgid "" +"Please contact your site administrator.
The provided API URL is not " +"valid." msgstr "" -#: ../../include/account.php:769 -#, php-format -msgid "Could not revoke registration for %s" +#: ../../addon/statusnet/Mod_Statusnet.php:98 +msgid "We could not contact the GNU social API with the Path you entered." msgstr "" -#: ../../include/account.php:1185 ../../include/account.php:1187 -msgid "Click here to upgrade." +#: ../../addon/statusnet/Mod_Statusnet.php:130 +msgid "GNU social settings updated." msgstr "" -#: ../../include/account.php:1193 -msgid "This action exceeds the limits set by your subscription plan." +#: ../../addon/statusnet/Mod_Statusnet.php:179 +msgid "Globally Available GNU social OAuthKeys" msgstr "" -#: ../../include/account.php:1198 -msgid "This action is not available under your subscription plan." +#: ../../addon/statusnet/Mod_Statusnet.php:181 +msgid "" +"There are preconfigured OAuth key pairs for some GNU social servers " +"available. If you are using one of them, please use these credentials.
If not feel free to connect to any other GNU social instance (see below)." msgstr "" -#: ../../include/account.php:1258 -msgid "open" +#: ../../addon/statusnet/Mod_Statusnet.php:196 +msgid "Provide your own OAuth Credentials" msgstr "" -#: ../../include/account.php:1258 -msgid "closed" +#: ../../addon/statusnet/Mod_Statusnet.php:198 +msgid "" +"No consumer key pair for GNU social found. Register your Hubzilla Account as " +"an desktop client on your GNU social account, copy the consumer key pair " +"here and enter the API base root.
Before you register your own OAuth " +"key pair ask the administrator if there is already a key pair for this " +"Hubzilla installation at your favourite GNU social installation." msgstr "" -#: ../../include/account.php:1265 -msgid "Registration is currently" +#: ../../addon/statusnet/Mod_Statusnet.php:202 +msgid "OAuth Consumer Key" msgstr "" -#: ../../include/account.php:1274 -msgid "please come back" +#: ../../addon/statusnet/Mod_Statusnet.php:206 +msgid "OAuth Consumer Secret" msgstr "" -#: ../../include/photo/photo_driver.php:449 -#: ../../Zotlabs/Module/Profile_photo.php:167 -#: ../../Zotlabs/Module/Profile_photo.php:337 -msgid "Profile Photos" +#: ../../addon/statusnet/Mod_Statusnet.php:210 +msgid "Base API Path" msgstr "" -#: ../../include/attach.php:273 ../../include/attach.php:324 -#: ../../include/attach.php:419 -msgid "Item was not found." +#: ../../addon/statusnet/Mod_Statusnet.php:210 +msgid "Remember the trailing /" msgstr "" -#: ../../include/attach.php:290 -msgid "Unknown error." +#: ../../addon/statusnet/Mod_Statusnet.php:214 +msgid "GNU social application name" msgstr "" -#: ../../include/attach.php:612 -msgid "No source file." +#: ../../addon/statusnet/Mod_Statusnet.php:237 +msgid "" +"To connect to your GNU social account click the button below to get a " +"security code from GNU social which you have to copy into the input box " +"below and submit the form. Only your public posts will be " +"posted to GNU social." msgstr "" -#: ../../include/attach.php:634 -msgid "Cannot locate file to replace" +#: ../../addon/statusnet/Mod_Statusnet.php:239 +msgid "Log in with GNU social" msgstr "" -#: ../../include/attach.php:653 -msgid "Cannot locate file to revise/update" +#: ../../addon/statusnet/Mod_Statusnet.php:242 +msgid "Copy the security code from GNU social here" msgstr "" -#: ../../include/attach.php:800 -#, php-format -msgid "File exceeds size limit of %d" +#: ../../addon/statusnet/Mod_Statusnet.php:252 +msgid "Cancel Connection Process" msgstr "" -#: ../../include/attach.php:821 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +#: ../../addon/statusnet/Mod_Statusnet.php:254 +msgid "Current GNU social API is" msgstr "" -#: ../../include/attach.php:1009 -msgid "File upload failed. Possible system limit or action terminated." +#: ../../addon/statusnet/Mod_Statusnet.php:258 +msgid "Cancel GNU social Connection" msgstr "" -#: ../../include/attach.php:1038 -msgid "Stored file could not be verified. Upload failed." +#: ../../addon/statusnet/Mod_Statusnet.php:275 +msgid "" +"Note: Due your privacy settings (Hide your profile " +"details from unknown viewers?) the link potentially included in public " +"postings relayed to GNU social will lead the visitor to a blank page " +"informing the visitor that the access to your profile has been restricted." msgstr "" -#: ../../include/attach.php:1110 ../../include/attach.php:1126 -msgid "Path not available." +#: ../../addon/statusnet/Mod_Statusnet.php:280 +msgid "Post to GNU social by default" msgstr "" -#: ../../include/attach.php:1174 ../../include/attach.php:1337 -msgid "Empty pathname" +#: ../../addon/statusnet/Mod_Statusnet.php:280 +msgid "" +"If enabled your public postings will be posted to the associated GNU-social " +"account by default" msgstr "" -#: ../../include/attach.php:1200 -msgid "duplicate filename or path" +#: ../../addon/statusnet/Mod_Statusnet.php:301 +msgid "GNU-Social Crosspost Connector" msgstr "" -#: ../../include/attach.php:1225 -msgid "Path not found." +#: ../../addon/statusnet/statusnet.php:145 +msgid "Post to GNU social" msgstr "" -#: ../../include/attach.php:1293 -msgid "mkdir failed." +#: ../../addon/statusnet/statusnet.php:593 +#: ../../Zotlabs/Module/Admin/Site.php:423 +msgid "Site name" msgstr "" -#: ../../include/attach.php:1297 -msgid "database storage failed." +#: ../../addon/statusnet/statusnet.php:594 +msgid "API URL" msgstr "" -#: ../../include/attach.php:1343 -msgid "Empty path" +#: ../../addon/statusnet/statusnet.php:597 +msgid "Application name" msgstr "" -#: ../../include/attach.php:2104 -#, php-format -msgid "%s shared a %s with you" +#: ../../addon/cart/submodules/paypalbutton.php:85 +msgid "Enable Paypal Button Module" msgstr "" -#: ../../include/bookmarks.php:34 -#, php-format -msgid "%1$s's bookmarks" +#: ../../addon/cart/submodules/paypalbutton.php:93 +#: ../../addon/cart/submodules/paypalbuttonV2.php:94 +msgid "Use Production Key" msgstr "" -#: ../../include/bbcode.php:233 ../../include/bbcode.php:937 -#: ../../include/bbcode.php:1558 ../../include/bbcode.php:1566 -msgid "Image/photo" +#: ../../addon/cart/submodules/paypalbutton.php:100 +#: ../../addon/cart/submodules/paypalbuttonV2.php:101 +msgid "Paypal Sandbox Client Key" msgstr "" -#: ../../include/bbcode.php:280 ../../include/bbcode.php:1583 -msgid "Encrypted content" +#: ../../addon/cart/submodules/paypalbutton.php:107 +#: ../../addon/cart/submodules/paypalbuttonV2.php:108 +msgid "Paypal Sandbox Secret Key" msgstr "" -#: ../../include/bbcode.php:334 -#, php-format -msgid "Install %1$s element %2$s" +#: ../../addon/cart/submodules/paypalbutton.php:113 +#: ../../addon/cart/submodules/paypalbuttonV2.php:114 +msgid "Paypal Production Client Key" msgstr "" -#: ../../include/bbcode.php:338 -#, php-format -msgid "" -"This post contains an installable %s element, however you lack permissions " -"to install it on this site." +#: ../../addon/cart/submodules/paypalbutton.php:120 +#: ../../addon/cart/submodules/paypalbuttonV2.php:121 +msgid "Paypal Production Secret Key" msgstr "" -#: ../../include/bbcode.php:348 ../../Zotlabs/Module/Impel.php:47 -msgid "webpage" +#: ../../addon/cart/submodules/paypalbutton.php:252 +#: ../../addon/cart/submodules/paypalbuttonV2.php:264 +msgid "Paypal button payments are not enabled." msgstr "" -#: ../../include/bbcode.php:351 ../../Zotlabs/Module/Impel.php:57 -msgid "layout" +#: ../../addon/cart/submodules/paypalbutton.php:270 +#: ../../addon/cart/submodules/paypalbuttonV2.php:282 +msgid "" +"Paypal button payments are not properly configured. Please choose another " +"payment option." msgstr "" -#: ../../include/bbcode.php:354 ../../Zotlabs/Module/Impel.php:52 -msgid "block" +#: ../../addon/cart/submodules/paypalbutton.php:392 +#: ../../addon/cart/submodules/paypalbuttonV2.php:409 +#: ../../addon/cart/manual_payments.php:68 ../../addon/cart/cart.php:1580 +msgid "Order not found." msgstr "" -#: ../../include/bbcode.php:357 ../../Zotlabs/Module/Impel.php:64 -msgid "menu" +#: ../../addon/cart/submodules/paypalbuttonV2.php:86 +msgid "Enable Paypal Button Module (API-v2)" msgstr "" -#: ../../include/bbcode.php:560 -msgid "card" +#: ../../addon/cart/submodules/hzservices.php:65 +msgid "Enable Hubzilla Services Module" msgstr "" -#: ../../include/bbcode.php:562 -msgid "article" +#: ../../addon/cart/submodules/hzservices.php:164 +#: ../../addon/cart/submodules/manualcat.php:172 +msgid "New Sku" msgstr "" -#: ../../include/bbcode.php:568 ../../include/markdown.php:203 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" +#: ../../addon/cart/submodules/hzservices.php:199 +#: ../../addon/cart/submodules/manualcat.php:208 +msgid "Cannot save edits to locked item." msgstr "" -#: ../../include/bbcode.php:645 ../../include/bbcode.php:653 -msgid "Click to open/close" +#: ../../addon/cart/submodules/hzservices.php:248 +#: ../../addon/cart/submodules/hzservices.php:335 +msgid "SKU not found." msgstr "" -#: ../../include/bbcode.php:653 ../../include/markdown.php:256 -msgid "spoiler" +#: ../../addon/cart/submodules/hzservices.php:301 +#: ../../addon/cart/submodules/hzservices.php:305 +msgid "Invalid Activation Directive." msgstr "" -#: ../../include/bbcode.php:666 -msgid "View article" +#: ../../addon/cart/submodules/hzservices.php:376 +#: ../../addon/cart/submodules/hzservices.php:380 +msgid "Invalid Deactivation Directive." msgstr "" -#: ../../include/bbcode.php:666 -msgid "View summary" +#: ../../addon/cart/submodules/hzservices.php:566 +msgid "Add to this privacy group" msgstr "" -#: ../../include/bbcode.php:1534 -msgid "$1 wrote:" +#: ../../addon/cart/submodules/hzservices.php:582 +msgid "Set user service class" msgstr "" -#: ../../include/channel.php:48 -msgid "Unable to obtain identity information from database" +#: ../../addon/cart/submodules/hzservices.php:609 +msgid "You must be using a local account to purchase this service." msgstr "" -#: ../../include/channel.php:81 -msgid "Empty name" +#: ../../addon/cart/submodules/hzservices.php:649 +#: ../../addon/cart/submodules/manualcat.php:252 +msgid "Changes Locked" msgstr "" -#: ../../include/channel.php:84 -msgid "Name too long" +#: ../../addon/cart/submodules/hzservices.php:653 +#: ../../addon/cart/submodules/manualcat.php:256 +msgid "Item available for purchase." msgstr "" -#: ../../include/channel.php:201 -msgid "No account identifier" +#: ../../addon/cart/submodules/hzservices.php:660 +#: ../../addon/cart/submodules/manualcat.php:263 +#: ../../addon/cart/widgets/catalogitem.php:57 +msgid "Price" msgstr "" -#: ../../include/channel.php:213 ../../Zotlabs/Module/Register.php:95 -msgid "Nickname is required." +#: ../../addon/cart/submodules/hzservices.php:663 +#: ../../addon/cart/submodules/manualcat.php:266 +msgid "Photo URL" msgstr "" -#: ../../include/channel.php:227 ../../include/channel.php:659 -#: ../../Zotlabs/Module/Register.php:100 ../../Zotlabs/Module/Changeaddr.php:46 -msgid "Reserved nickname. Please choose another." +#: ../../addon/cart/submodules/hzservices.php:667 +msgid "Add buyer to privacy group" msgstr "" -#: ../../include/channel.php:232 ../../include/channel.php:664 -#: ../../Zotlabs/Module/Register.php:105 ../../Zotlabs/Module/Changeaddr.php:51 -msgid "" -"Nickname has unsupported characters or is already being used on this site." +#: ../../addon/cart/submodules/hzservices.php:672 +msgid "Add buyer as connection" msgstr "" -#: ../../include/channel.php:292 -msgid "Unable to retrieve created identity" +#: ../../addon/cart/submodules/hzservices.php:680 +#: ../../addon/cart/submodules/hzservices.php:722 +msgid "Set Service Class" msgstr "" -#: ../../include/channel.php:402 -msgid "Default Profile" +#: ../../addon/cart/submodules/manualcat.php:61 +msgid "Enable Manual Cart Module" msgstr "" -#: ../../include/channel.php:592 ../../include/channel.php:681 -msgid "Unable to retrieve modified identity" -msgstr "" +#: ../../addon/cart/submodules/subscriptions.php:151 +msgid "Enable Subscription Management Module" +msgstr "" -#: ../../include/channel.php:1373 -msgid "Requested channel is not available" +#: ../../addon/cart/submodules/subscriptions.php:223 +msgid "" +"Cannot include subscription items with different terms in the same order." msgstr "" -#: ../../include/channel.php:1523 ../../Zotlabs/Module/Profiles.php:745 -msgid "Change profile photo" +#: ../../addon/cart/submodules/subscriptions.php:372 +msgid "Select Subscription to Edit" msgstr "" -#: ../../include/channel.php:1531 -msgid "Create New Profile" +#: ../../addon/cart/submodules/subscriptions.php:380 +msgid "Edit Subscriptions" msgstr "" -#: ../../include/channel.php:1549 ../../Zotlabs/Module/Profiles.php:842 -msgid "Profile Image" +#: ../../addon/cart/submodules/subscriptions.php:414 +msgid "Subscription SKU" msgstr "" -#: ../../include/channel.php:1552 -msgid "Visible to everybody" +#: ../../addon/cart/submodules/subscriptions.php:419 +msgid "Catalog Description" msgstr "" -#: ../../include/channel.php:1553 ../../Zotlabs/Module/Profiles.php:742 -#: ../../Zotlabs/Module/Profiles.php:846 -msgid "Edit visibility" +#: ../../addon/cart/submodules/subscriptions.php:423 +msgid "Subscription available for purchase." msgstr "" -#: ../../include/channel.php:1629 ../../include/channel.php:1755 -msgid "Gender:" +#: ../../addon/cart/submodules/subscriptions.php:428 +msgid "Maximum active subscriptions to this item per account." msgstr "" -#: ../../include/channel.php:1630 ../../include/channel.php:1799 -msgid "Status:" +#: ../../addon/cart/submodules/subscriptions.php:431 +msgid "Subscription price." msgstr "" -#: ../../include/channel.php:1631 ../../include/channel.php:1823 -msgid "Homepage:" +#: ../../addon/cart/submodules/subscriptions.php:435 +msgid "Quantity" msgstr "" -#: ../../include/channel.php:1632 ../../include/channel.php:1825 -#: ../../Zotlabs/Module/Directory.php:366 -msgid "Hometown:" +#: ../../addon/cart/submodules/subscriptions.php:439 +msgid "Term" msgstr "" -#: ../../include/channel.php:1633 -msgid "Online Now" +#: ../../addon/cart/submodules/orderoptions.php:70 +msgid "Enable Order/Item Options" msgstr "" -#: ../../include/channel.php:1683 -msgid "Change your profile photo" +#: ../../addon/cart/submodules/orderoptions.php:333 +#: ../../addon/cart/submodules/orderoptions.php:357 +#: ../../addon/cart/submodules/orderoptions.php:433 +#: ../../addon/cart/submodules/orderoptions.php:457 +msgid "Label" msgstr "" -#: ../../include/channel.php:1714 -msgid "Trans" +#: ../../addon/cart/submodules/orderoptions.php:336 +#: ../../addon/cart/submodules/orderoptions.php:360 +#: ../../addon/cart/submodules/orderoptions.php:436 +#: ../../addon/cart/submodules/orderoptions.php:460 +msgid "Instructions" msgstr "" -#: ../../include/channel.php:1753 -msgid "Full Name:" +#: ../../addon/cart/manual_payments.php:7 +msgid "Error: order mismatch. Please try again." msgstr "" -#: ../../include/channel.php:1760 -msgid "Like this channel" +#: ../../addon/cart/manual_payments.php:61 +msgid "Manual payments are not enabled." msgstr "" -#: ../../include/channel.php:1784 -msgid "j F, Y" +#: ../../addon/cart/manual_payments.php:77 +msgid "Finished" msgstr "" -#: ../../include/channel.php:1785 -msgid "j F" +#: ../../addon/cart/cart.php:252 +msgid "DB Cleanup Failure" msgstr "" -#: ../../include/channel.php:1792 -msgid "Birthday:" +#: ../../addon/cart/cart.php:674 +msgid "[cart] Item Added" msgstr "" -#: ../../include/channel.php:1796 ../../Zotlabs/Module/Directory.php:348 -msgid "Age:" +#: ../../addon/cart/cart.php:1063 +msgid "Order already checked out." msgstr "" -#: ../../include/channel.php:1805 -#, php-format -msgid "for %1$d %2$s" +#: ../../addon/cart/cart.php:1368 +msgid "Drop database tables when uninstalling." msgstr "" -#: ../../include/channel.php:1817 -msgid "Tags:" +#: ../../addon/cart/cart.php:1375 ../../addon/cart/Settings/Cart.php:129 +msgid "Cart Settings" msgstr "" -#: ../../include/channel.php:1821 -msgid "Sexual Preference:" +#: ../../addon/cart/cart.php:1387 ../../addon/cart/cart.php:1390 +msgid "Shop" msgstr "" -#: ../../include/channel.php:1827 -msgid "Political Views:" +#: ../../addon/cart/cart.php:1446 ../../addon/cart/myshop.php:112 +msgid "Order Not Found" msgstr "" -#: ../../include/channel.php:1829 -msgid "Religion:" +#: ../../addon/cart/cart.php:1547 +msgid "You must be logged into the Grid to shop." msgstr "" -#: ../../include/channel.php:1831 ../../Zotlabs/Module/Directory.php:368 -msgid "About:" +#: ../../addon/cart/cart.php:1594 +msgid "Access denied." msgstr "" -#: ../../include/channel.php:1833 -msgid "Hobbies/Interests:" +#: ../../addon/cart/cart.php:1646 ../../addon/cart/cart.php:1789 +msgid "No Order Found" msgstr "" -#: ../../include/channel.php:1835 -msgid "Likes:" +#: ../../addon/cart/cart.php:1655 +msgid "An unknown error has occurred Please start again." msgstr "" -#: ../../include/channel.php:1837 -msgid "Dislikes:" +#: ../../addon/cart/cart.php:1798 +msgid "Requirements not met." msgstr "" -#: ../../include/channel.php:1839 -msgid "Contact information and Social Networks:" +#: ../../addon/cart/cart.php:1798 +msgid "Review your order and complete any needed requirements." msgstr "" -#: ../../include/channel.php:1841 -msgid "My other channels:" +#: ../../addon/cart/cart.php:1824 +msgid "Invalid Payment Type. Please start again." msgstr "" -#: ../../include/channel.php:1843 -msgid "Musical interests:" +#: ../../addon/cart/cart.php:1831 +msgid "Order not found" msgstr "" -#: ../../include/channel.php:1845 -msgid "Books, literature:" +#: ../../addon/cart/Settings/Cart.php:58 +msgid "Enable Test Catalog" msgstr "" -#: ../../include/channel.php:1847 -msgid "Television:" +#: ../../addon/cart/Settings/Cart.php:70 +msgid "Enable Manual Payments" msgstr "" -#: ../../include/channel.php:1849 -msgid "Film/dance/culture/entertainment:" +#: ../../addon/cart/Settings/Cart.php:90 +msgid "Base Merchant Currency" msgstr "" -#: ../../include/channel.php:1851 -msgid "Love/Romance:" +#: ../../addon/cart/myshop.php:30 +msgid "Access Denied." msgstr "" -#: ../../include/channel.php:1853 -msgid "Work/employment:" +#: ../../addon/cart/myshop.php:189 ../../addon/cart/myshop.php:223 +#: ../../addon/cart/myshop.php:271 ../../addon/cart/myshop.php:329 +msgid "Invalid Item" msgstr "" -#: ../../include/channel.php:1855 -msgid "School/education:" +#: ../../addon/redfiles/redfiles.php:119 +msgid "Redmatrix File Storage Import" msgstr "" -#: ../../include/channel.php:1876 ../../Zotlabs/Module/Profperm.php:113 -#: ../../Zotlabs/Lib/Apps.php:366 -msgid "Profile" +#: ../../addon/redfiles/redfiles.php:120 +msgid "This will import all your Redmatrix cloud files to this channel." msgstr "" -#: ../../include/channel.php:1878 -msgid "Like this thing" +#: ../../addon/upload_limits/upload_limits.php:25 +msgid "Show Upload Limits" msgstr "" -#: ../../include/channel.php:1879 -msgid "Export" +#: ../../addon/upload_limits/upload_limits.php:27 +msgid "Hubzilla configured maximum size: " msgstr "" -#: ../../include/channel.php:2332 ../../Zotlabs/Module/Cover_photo.php:304 -msgid "cover photo" +#: ../../addon/upload_limits/upload_limits.php:28 +msgid "PHP upload_max_filesize: " msgstr "" -#: ../../include/channel.php:2607 ../../Zotlabs/Module/Rmagic.php:96 -#: ../../boot.php:1749 -msgid "Remote Authentication" +#: ../../addon/upload_limits/upload_limits.php:29 +msgid "PHP post_max_size (must be larger than upload_max_filesize): " msgstr "" -#: ../../include/channel.php:2608 ../../Zotlabs/Module/Rmagic.php:97 -msgid "Enter your channel address (e.g. channel@example.com)" +#: ../../addon/rtof/Mod_Rtof.php:24 +msgid "Friendica Crosspost Connector Settings saved." msgstr "" -#: ../../include/channel.php:2609 ../../Zotlabs/Module/Rmagic.php:98 -msgid "Authenticate" +#: ../../addon/rtof/Mod_Rtof.php:47 +msgid "Send public postings to Friendica by default" msgstr "" -#: ../../include/channel.php:2767 ../../Zotlabs/Module/Admin/Accounts.php:184 -#, php-format -msgid "Account '%s' deleted" +#: ../../addon/rtof/Mod_Rtof.php:51 +msgid "Friendica API Path" msgstr "" -#: ../../include/acl_selectors.php:33 -#: ../../Zotlabs/Lib/PermissionDescription.php:34 -msgid "Visible to your default audience" +#: ../../addon/rtof/Mod_Rtof.php:55 +msgid "Friendica login name" msgstr "" -#: ../../include/acl_selectors.php:100 -msgid "Profile-Based Privacy Groups" +#: ../../addon/rtof/Mod_Rtof.php:59 +msgid "Friendica password" msgstr "" -#: ../../include/acl_selectors.php:119 -msgid "Private Forum" +#: ../../addon/rtof/Mod_Rtof.php:67 +msgid "Friendica Crosspost Connector" msgstr "" -#: ../../include/acl_selectors.php:125 ../../Zotlabs/Widget/Forums.php:77 -#: ../../Zotlabs/Widget/Activity_filter.php:130 -#: ../../Zotlabs/Widget/Notifications.php:131 -#: ../../Zotlabs/Widget/Notifications.php:132 -msgid "Forums" +#: ../../addon/rtof/rtof.php:51 +msgid "Post to Friendica" msgstr "" -#: ../../include/acl_selectors.php:136 -#: ../../Zotlabs/Module/Settings/Privacy.php:56 -#: ../../Zotlabs/Lib/PermissionDescription.php:107 -msgid "Only me" +#: ../../addon/rainbowtag/Mod_Rainbowtag.php:22 +msgid "Rainbow Tag App" msgstr "" -#: ../../include/acl_selectors.php:143 -msgid "Share with" +#: ../../addon/rainbowtag/Mod_Rainbowtag.php:23 +msgid "Add some colour to tag clouds" msgstr "" -#: ../../include/acl_selectors.php:144 -msgid "Custom selection" +#: ../../addon/rainbowtag/Mod_Rainbowtag.php:30 +msgid "Rainbow Tag" msgstr "" -#: ../../include/acl_selectors.php:146 +#: ../../addon/authchoose/Mod_Authchoose.php:30 msgid "" -"Select \"Allow\" to allow viewing. \"Don't allow\" lets you override and " -"limit the scope of \"Allow\"." +"Allow magic authentication only to websites of your immediate connections" msgstr "" -#: ../../include/acl_selectors.php:147 ../../Zotlabs/Module/Authorize.php:32 -msgid "Allow" +#: ../../addon/authchoose/Mod_Authchoose.php:36 +msgid "Authchoose" msgstr "" -#: ../../include/acl_selectors.php:148 -msgid "Don't allow" +#: ../../addon/content_import/Mod_content_import.php:27 +msgid "No server specified" msgstr "" -#: ../../include/acl_selectors.php:181 -#, php-format -msgid "" -"Post permissions %s cannot be changed %s after a post is shared.
These " -"permissions set who is allowed to view the post." +#: ../../addon/content_import/Mod_content_import.php:73 +msgid "Posts imported" msgstr "" -#: ../../include/oembed.php:154 -msgid "View PDF" +#: ../../addon/content_import/Mod_content_import.php:113 +msgid "Files imported" msgstr "" -#: ../../include/oembed.php:386 -msgid " by " +#: ../../addon/content_import/Mod_content_import.php:134 +#: ../../Zotlabs/Lib/Apps.php:337 +msgid "Content Import" msgstr "" -#: ../../include/oembed.php:387 -msgid " on " +#: ../../addon/content_import/Mod_content_import.php:135 +msgid "" +"This will import all your conversations and cloud files from a cloned " +"channel on another server. This may take a while if you have lots of posts " +"and or files." msgstr "" -#: ../../include/oembed.php:416 -msgid "Embedded content" +#: ../../addon/content_import/Mod_content_import.php:136 +msgid "Include posts" msgstr "" -#: ../../include/oembed.php:425 -msgid "Embedding disabled" +#: ../../addon/content_import/Mod_content_import.php:136 +msgid "Conversations, Articles, Cards, and other posted content" msgstr "" -#: ../../include/zid.php:408 -#, php-format -msgid "OpenWebAuth: %1$s welcomes %2$s" +#: ../../addon/content_import/Mod_content_import.php:137 +msgid "Include files" msgstr "" -#: ../../Zotlabs/Widget/Activity_order.php:96 -msgid "Commented Date" +#: ../../addon/content_import/Mod_content_import.php:137 +msgid "Files, Photos and other cloud storage" msgstr "" -#: ../../Zotlabs/Widget/Activity_order.php:100 -msgid "Order by last commented date" +#: ../../addon/content_import/Mod_content_import.php:138 +msgid "Original Server base URL" msgstr "" -#: ../../Zotlabs/Widget/Activity_order.php:103 -msgid "Posted Date" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_order.php:107 -msgid "Order by last posted date" +#: ../../Zotlabs/Lib/PermissionDescription.php:108 +#: ../../Zotlabs/Access/PermissionRoles.php:384 +msgid "Public" msgstr "" -#: ../../Zotlabs/Widget/Activity_order.php:110 -msgid "Date Unthreaded" +#: ../../Zotlabs/Lib/PermissionDescription.php:109 +msgid "Anybody in the $Projectname network" msgstr "" -#: ../../Zotlabs/Widget/Activity_order.php:114 -msgid "Order unthreaded by date" +#: ../../Zotlabs/Lib/PermissionDescription.php:110 +#, php-format +msgid "Any account on %s" msgstr "" -#: ../../Zotlabs/Widget/Activity_order.php:129 -msgid "Stream Order" +#: ../../Zotlabs/Lib/PermissionDescription.php:111 +msgid "Any of my connections" msgstr "" -#: ../../Zotlabs/Widget/Tokens.php:41 -msgid "Add new guest" +#: ../../Zotlabs/Lib/PermissionDescription.php:112 +msgid "Only connections I specifically allow" msgstr "" -#: ../../Zotlabs/Widget/Tokens.php:49 ../../Zotlabs/Module/Lockview.php:226 -msgid "Guest access" +#: ../../Zotlabs/Lib/PermissionDescription.php:113 +msgid "Anybody authenticated (could include visitors from other networks)" msgstr "" -#: ../../Zotlabs/Widget/Archive.php:49 -msgid "Archives" +#: ../../Zotlabs/Lib/PermissionDescription.php:114 +msgid "Any connections including those who haven't yet been approved" msgstr "" -#: ../../Zotlabs/Widget/Album.php:84 ../../Zotlabs/Widget/Portfolio.php:91 -#: ../../Zotlabs/Module/Embedphotos.php:171 ../../Zotlabs/Module/Photos.php:793 -#: ../../Zotlabs/Module/Photos.php:1337 -msgid "View Photo" +#: ../../Zotlabs/Lib/PermissionDescription.php:150 +msgid "" +"This is your default setting for the audience of your normal stream, and " +"posts." msgstr "" -#: ../../Zotlabs/Widget/Album.php:101 ../../Zotlabs/Widget/Portfolio.php:112 -#: ../../Zotlabs/Module/Embedphotos.php:187 ../../Zotlabs/Module/Photos.php:824 -msgid "Edit Album" +#: ../../Zotlabs/Lib/PermissionDescription.php:151 +msgid "" +"This is your default setting for who can view your default channel profile" msgstr "" -#: ../../Zotlabs/Widget/Album.php:103 ../../Zotlabs/Widget/Cdav.php:150 -#: ../../Zotlabs/Widget/Cdav.php:186 ../../Zotlabs/Widget/Portfolio.php:114 -#: ../../Zotlabs/Module/Embedphotos.php:189 -#: ../../Zotlabs/Module/Profile_photo.php:547 -#: ../../Zotlabs/Module/Cover_photo.php:423 ../../Zotlabs/Module/Photos.php:692 -#: ../../Zotlabs/Storage/Browser.php:540 -msgid "Upload" +#: ../../Zotlabs/Lib/PermissionDescription.php:152 +msgid "This is your default setting for who can view your connections" msgstr "" -#: ../../Zotlabs/Widget/Tasklist.php:31 -msgid "Tasks" +#: ../../Zotlabs/Lib/PermissionDescription.php:153 +msgid "" +"This is your default setting for who can view your file storage and photos" msgstr "" -#: ../../Zotlabs/Widget/Chatroom_members.php:17 -msgid "Chat Members" +#: ../../Zotlabs/Lib/PermissionDescription.php:154 +msgid "This is your default setting for the audience of your webpages" msgstr "" -#: ../../Zotlabs/Widget/Channel_activities.php:214 -msgctxt "noun" -msgid "new connection" -msgid_plural "new connections" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Widget/Channel_activities.php:220 -msgctxt "noun" -msgid "notice" -msgid_plural "notices" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Widget/Pinned.php:73 ../../Zotlabs/Lib/ThreadItem.php:214 -msgid "I will attend" +#: ../../Zotlabs/Lib/Apps.php:329 +msgid "Affinity Tool" msgstr "" -#: ../../Zotlabs/Widget/Pinned.php:73 ../../Zotlabs/Lib/ThreadItem.php:214 -msgid "I will not attend" +#: ../../Zotlabs/Lib/Apps.php:332 +msgid "Site Admin" msgstr "" -#: ../../Zotlabs/Widget/Pinned.php:73 ../../Zotlabs/Lib/ThreadItem.php:214 -msgid "I might attend" +#: ../../Zotlabs/Lib/Apps.php:336 +msgid "Content Filter" msgstr "" -#: ../../Zotlabs/Widget/Pinned.php:84 -msgid "I agree" +#: ../../Zotlabs/Lib/Apps.php:339 +msgid "Remote Diagnostics" msgstr "" -#: ../../Zotlabs/Widget/Pinned.php:84 -msgid "I disagree" +#: ../../Zotlabs/Lib/Apps.php:340 +msgid "Suggest Channels" msgstr "" -#: ../../Zotlabs/Widget/Pinned.php:84 -msgid "I abstain" +#: ../../Zotlabs/Lib/Apps.php:342 +msgid "Channel Manager" msgstr "" -#: ../../Zotlabs/Widget/Pinned.php:102 ../../Zotlabs/Lib/ThreadItem.php:331 -msgid "Share This" +#: ../../Zotlabs/Lib/Apps.php:343 +msgid "Stream" msgstr "" -#: ../../Zotlabs/Widget/Pinned.php:102 ../../Zotlabs/Lib/ThreadItem.php:331 -msgid "share" +#: ../../Zotlabs/Lib/Apps.php:354 +msgid "Mail" msgstr "" -#: ../../Zotlabs/Widget/Pinned.php:125 ../../Zotlabs/Widget/Pinned.php:126 -#, php-format -msgid "View %s's profile - %s" +#: ../../Zotlabs/Lib/Apps.php:355 ../../Zotlabs/Module/Mood.php:152 +msgid "Mood" msgstr "" -#: ../../Zotlabs/Widget/Pinned.php:130 ../../Zotlabs/Widget/Messages.php:104 -#: ../../Zotlabs/Lib/ThreadItem.php:421 -msgid "via" +#: ../../Zotlabs/Lib/Apps.php:357 +msgid "Chat" msgstr "" -#: ../../Zotlabs/Widget/Pinned.php:144 ../../Zotlabs/Lib/ThreadItem.php:452 -msgid "Attendance Options" +#: ../../Zotlabs/Lib/Apps.php:359 +msgid "Probe" msgstr "" -#: ../../Zotlabs/Widget/Pinned.php:145 ../../Zotlabs/Lib/ThreadItem.php:454 -msgid "Voting Options" +#: ../../Zotlabs/Lib/Apps.php:360 +msgid "Suggest" msgstr "" -#: ../../Zotlabs/Widget/Pinned.php:157 ../../Zotlabs/Lib/ThreadItem.php:478 -msgid "Pinned post" +#: ../../Zotlabs/Lib/Apps.php:361 +msgid "Random Channel" msgstr "" -#: ../../Zotlabs/Widget/Pinned.php:159 -msgid "Don't show" +#: ../../Zotlabs/Lib/Apps.php:362 +msgid "Invite" msgstr "" -#: ../../Zotlabs/Widget/Activity.php:55 -msgctxt "widget" -msgid "Activity" +#: ../../Zotlabs/Lib/Apps.php:363 ../../Zotlabs/Widget/Admin.php:31 +msgid "Features" msgstr "" -#: ../../Zotlabs/Widget/Cdav.php:41 -msgid "Select Channel" +#: ../../Zotlabs/Lib/Apps.php:365 ../../Zotlabs/Storage/Browser.php:410 +msgid "Post" msgstr "" -#: ../../Zotlabs/Widget/Cdav.php:46 -msgid "Read-write" +#: ../../Zotlabs/Lib/Apps.php:370 +msgid "Notifications" msgstr "" -#: ../../Zotlabs/Widget/Cdav.php:47 -msgid "Read-only" +#: ../../Zotlabs/Lib/Apps.php:371 +msgid "Order Apps" msgstr "" -#: ../../Zotlabs/Widget/Cdav.php:131 -msgid "Channel Calendar" +#: ../../Zotlabs/Lib/Apps.php:372 +msgid "CardDAV" msgstr "" -#: ../../Zotlabs/Widget/Cdav.php:133 ../../Zotlabs/Widget/Cdav.php:147 -#: ../../Zotlabs/Module/Cdav.php:1054 -msgid "CalDAV Calendars" +#: ../../Zotlabs/Lib/Apps.php:373 ../../Zotlabs/Module/Sources.php:105 +msgid "Channel Sources" msgstr "" -#: ../../Zotlabs/Widget/Cdav.php:135 -msgid "Shared CalDAV Calendars" +#: ../../Zotlabs/Lib/Apps.php:374 ../../Zotlabs/Module/Tokens.php:288 +msgid "Guest Access" msgstr "" -#: ../../Zotlabs/Widget/Cdav.php:139 -msgid "Share this calendar" +#: ../../Zotlabs/Lib/Apps.php:376 +msgid "OAuth Apps Manager" msgstr "" -#: ../../Zotlabs/Widget/Cdav.php:141 -msgid "Calendar name and color" +#: ../../Zotlabs/Lib/Apps.php:377 +msgid "OAuth2 Apps Manager" msgstr "" -#: ../../Zotlabs/Widget/Cdav.php:143 -msgid "Create new CalDAV calendar" +#: ../../Zotlabs/Lib/Apps.php:378 +msgid "PDL Editor" msgstr "" -#: ../../Zotlabs/Widget/Cdav.php:144 ../../Zotlabs/Widget/Cdav.php:182 -#: ../../Zotlabs/Module/Cdav.php:1058 ../../Zotlabs/Module/Cdav.php:1387 -#: ../../Zotlabs/Module/Webpages.php:251 -#: ../../Zotlabs/Module/New_channel.php:189 ../../Zotlabs/Module/Blocks.php:159 -#: ../../Zotlabs/Module/Menu.php:182 ../../Zotlabs/Module/Connedit.php:747 -#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Storage/Browser.php:365 -#: ../../Zotlabs/Storage/Browser.php:538 -msgid "Create" +#: ../../Zotlabs/Lib/Apps.php:379 ../../Zotlabs/Module/Permcats.php:248 +msgid "Contact Roles" msgstr "" -#: ../../Zotlabs/Widget/Cdav.php:145 -msgid "Calendar Name" +#: ../../Zotlabs/Lib/Apps.php:380 ../../Zotlabs/Module/Pubstream.php:100 +#: ../../Zotlabs/Widget/Notifications.php:154 +msgid "Public Stream" msgstr "" -#: ../../Zotlabs/Widget/Cdav.php:146 -msgid "Calendar Tools" +#: ../../Zotlabs/Lib/Apps.php:381 +msgid "My Chatrooms" msgstr "" -#: ../../Zotlabs/Widget/Cdav.php:147 ../../Zotlabs/Module/Cdav.php:1054 -msgid "Channel Calendars" +#: ../../Zotlabs/Lib/Apps.php:382 +msgid "Channel Export" msgstr "" -#: ../../Zotlabs/Widget/Cdav.php:148 -msgid "Import calendar" +#: ../../Zotlabs/Lib/Apps.php:546 ../../Zotlabs/Module/Oauth2.php:58 +#: ../../Zotlabs/Module/Oauth2.php:142 ../../Zotlabs/Module/Oauth.php:53 +#: ../../Zotlabs/Module/Oauth.php:135 ../../Zotlabs/Module/Connedit.php:748 +#: ../../Zotlabs/Module/Admin/Addons.php:460 ../../Zotlabs/Module/Cdav.php:1054 +#: ../../Zotlabs/Module/Cdav.php:1390 +msgid "Update" msgstr "" -#: ../../Zotlabs/Widget/Cdav.php:149 -msgid "Select a calendar to import to" +#: ../../Zotlabs/Lib/Apps.php:546 ../../Zotlabs/Module/Admin/Addons.php:429 +msgid "Install" msgstr "" -#: ../../Zotlabs/Widget/Cdav.php:176 -msgid "Addressbooks" +#: ../../Zotlabs/Lib/Apps.php:576 ../../Zotlabs/Lib/Apps.php:598 +msgid "Purchase" msgstr "" -#: ../../Zotlabs/Widget/Cdav.php:178 -msgid "Addressbook name" +#: ../../Zotlabs/Lib/Apps.php:603 +msgid "Undelete" msgstr "" -#: ../../Zotlabs/Widget/Cdav.php:180 -msgid "Create new addressbook" +#: ../../Zotlabs/Lib/Apps.php:611 +msgid "Add to app-tray" msgstr "" -#: ../../Zotlabs/Widget/Cdav.php:181 -msgid "Addressbook Name" +#: ../../Zotlabs/Lib/Apps.php:612 +msgid "Remove from app-tray" msgstr "" -#: ../../Zotlabs/Widget/Cdav.php:183 -msgid "Addressbook Tools" +#: ../../Zotlabs/Lib/Apps.php:613 +msgid "Pin to navbar" msgstr "" -#: ../../Zotlabs/Widget/Cdav.php:184 -msgid "Import addressbook" +#: ../../Zotlabs/Lib/Apps.php:614 +msgid "Unpin from navbar" msgstr "" -#: ../../Zotlabs/Widget/Cdav.php:185 -msgid "Select an addressbook to import to" +#: ../../Zotlabs/Lib/Permcat.php:83 +msgctxt "permcat" +msgid "Default" msgstr "" -#: ../../Zotlabs/Widget/Savedsearch.php:81 -msgid "Remove term" +#: ../../Zotlabs/Lib/Connect.php:46 ../../Zotlabs/Lib/Connect.php:146 +msgid "Channel is blocked on this site." msgstr "" -#: ../../Zotlabs/Widget/Suggestedchats.php:36 -msgid "Suggested Chatrooms" +#: ../../Zotlabs/Lib/Connect.php:51 +msgid "Channel location missing." msgstr "" -#: ../../Zotlabs/Widget/Settings_menu.php:37 -msgid "Account settings" +#: ../../Zotlabs/Lib/Connect.php:104 +msgid "Remote channel or protocol unavailable." msgstr "" -#: ../../Zotlabs/Widget/Settings_menu.php:43 -msgid "Channel settings" +#: ../../Zotlabs/Lib/Connect.php:140 +msgid "Channel discovery failed." msgstr "" -#: ../../Zotlabs/Widget/Settings_menu.php:49 -msgid "Privacy settings" +#: ../../Zotlabs/Lib/Connect.php:158 +msgid "Protocol disabled." msgstr "" -#: ../../Zotlabs/Widget/Settings_menu.php:56 -msgid "Display settings" +#: ../../Zotlabs/Lib/Connect.php:170 +msgid "Cannot connect to yourself." msgstr "" -#: ../../Zotlabs/Widget/Settings_menu.php:63 -msgid "Manage locations" +#: ../../Zotlabs/Lib/Connect.php:275 +msgid "error saving data" msgstr "" -#: ../../Zotlabs/Widget/Chatroom_list.php:26 -msgid "Overview" +#: ../../Zotlabs/Lib/Libsync.php:818 +#, php-format +msgid "Unable to verify site signature for %s" msgstr "" -#: ../../Zotlabs/Widget/Suggestions.php:53 ../../Zotlabs/Module/Suggest.php:71 -msgid "Ignore/Hide" +#: ../../Zotlabs/Lib/Enotify.php:60 +msgid "$Projectname Notification" msgstr "" -#: ../../Zotlabs/Widget/Suggestions.php:58 -msgid "Suggestions" +#: ../../Zotlabs/Lib/Enotify.php:63 +msgid "Thank You," msgstr "" -#: ../../Zotlabs/Widget/Suggestions.php:59 -msgid "See more..." +#: ../../Zotlabs/Lib/Enotify.php:66 +#, php-format +msgid "This email was sent by %1$s at %2$s." msgstr "" -#: ../../Zotlabs/Widget/Bookmarkedchats.php:25 -msgid "Bookmarked Chatrooms" +#: ../../Zotlabs/Lib/Enotify.php:67 +#, php-format +msgid "" +"To stop receiving these messages, please adjust your Notification Settings " +"at %s" msgstr "" -#: ../../Zotlabs/Widget/Appcategories.php:49 -msgid "App Categories" +#: ../../Zotlabs/Lib/Enotify.php:68 +#, php-format +msgid "To stop receiving these messages, please adjust your %s." msgstr "" -#: ../../Zotlabs/Widget/Hq_controls.php:23 -msgid "Toggle post editor" +#: ../../Zotlabs/Lib/Enotify.php:68 +#: ../../Zotlabs/Module/Settings/Channel.php:241 +msgid "Notification Settings" msgstr "" -#: ../../Zotlabs/Widget/Hq_controls.php:33 -msgid "Toggle personal notes" +#: ../../Zotlabs/Lib/Enotify.php:123 +#, php-format +msgid "%s " msgstr "" -#: ../../Zotlabs/Widget/Hq_controls.php:43 -msgid "Channel activities" +#: ../../Zotlabs/Lib/Enotify.php:131 +#, php-format +msgid "[$Projectname:Notify] New direct message received at %s" msgstr "" -#: ../../Zotlabs/Widget/Permcats.php:42 -msgid "Add new role" +#: ../../Zotlabs/Lib/Enotify.php:133 +#, php-format +msgid "%1$s sent you a new direct message at %2$s" msgstr "" -#: ../../Zotlabs/Widget/Permcats.php:93 -#: ../../Zotlabs/Module/Contactedit.php:409 -msgid "Contact roles" +#: ../../Zotlabs/Lib/Enotify.php:134 +#, php-format +msgid "%1$s sent you %2$s." msgstr "" -#: ../../Zotlabs/Widget/Permcats.php:94 -msgid "Role members" +#: ../../Zotlabs/Lib/Enotify.php:134 +msgid "a direct message" msgstr "" -#: ../../Zotlabs/Widget/Photo.php:54 ../../Zotlabs/Widget/Photo_rand.php:63 -msgid "photo/image" +#: ../../Zotlabs/Lib/Enotify.php:135 +#, php-format +msgid "Please visit %s to view and/or reply to your direct messages." msgstr "" -#: ../../Zotlabs/Widget/Admin.php:27 ../../Zotlabs/Module/Admin/Site.php:414 -msgid "Site" +#: ../../Zotlabs/Lib/Enotify.php:148 +msgid "commented on" msgstr "" -#: ../../Zotlabs/Widget/Admin.php:28 -#: ../../Zotlabs/Module/Admin/Accounts.php:308 -#: ../../Zotlabs/Module/Admin/Accounts.php:327 -#: ../../Zotlabs/Module/Admin.php:95 -msgid "Accounts" +#: ../../Zotlabs/Lib/Enotify.php:161 ../../Zotlabs/Lib/Enotify.php:310 +msgid "liked" msgstr "" -#: ../../Zotlabs/Widget/Admin.php:28 ../../Zotlabs/Widget/Admin.php:65 -msgid "Member registrations waiting for confirmation" +#: ../../Zotlabs/Lib/Enotify.php:164 ../../Zotlabs/Lib/Enotify.php:310 +msgid "disliked" msgstr "" -#: ../../Zotlabs/Widget/Admin.php:30 ../../Zotlabs/Module/Admin/Security.php:99 -msgid "Security" +#: ../../Zotlabs/Lib/Enotify.php:169 +msgid "voted on" msgstr "" -#: ../../Zotlabs/Widget/Admin.php:31 ../../Zotlabs/Lib/Apps.php:362 -msgid "Features" +#: ../../Zotlabs/Lib/Enotify.php:212 +#, php-format +msgid "%1$s %2$s [zrl=%3$s]a %4$s[/zrl]" msgstr "" -#: ../../Zotlabs/Widget/Admin.php:32 ../../Zotlabs/Module/Admin/Addons.php:343 -#: ../../Zotlabs/Module/Admin/Addons.php:441 -msgid "Addons" +#: ../../Zotlabs/Lib/Enotify.php:220 +#, php-format +msgid "%1$s %2$s [zrl=%3$s]%4$s's %5$s[/zrl]" msgstr "" -#: ../../Zotlabs/Widget/Admin.php:33 ../../Zotlabs/Module/Admin/Themes.php:123 -#: ../../Zotlabs/Module/Admin/Themes.php:157 -msgid "Themes" +#: ../../Zotlabs/Lib/Enotify.php:229 ../../Zotlabs/Lib/Enotify.php:314 +#, php-format +msgid "%1$s %2$s [zrl=%3$s]your %4$s[/zrl]" msgstr "" -#: ../../Zotlabs/Widget/Admin.php:34 -msgid "Inspect queue" +#: ../../Zotlabs/Lib/Enotify.php:241 +#, php-format +msgid "[$Projectname:Notify] Moderated Comment to conversation #%1$d by %2$s" msgstr "" -#: ../../Zotlabs/Widget/Admin.php:35 ../../Zotlabs/Module/Admin/Profs.php:168 -msgid "Profile Fields" +#: ../../Zotlabs/Lib/Enotify.php:243 +#, php-format +msgid "[$Projectname:Notify] Comment to conversation #%1$d by %2$s" msgstr "" -#: ../../Zotlabs/Widget/Admin.php:36 -msgid "DB updates" +#: ../../Zotlabs/Lib/Enotify.php:244 +#, php-format +msgid "%1$s commented on an item/conversation you have been following" msgstr "" -#: ../../Zotlabs/Widget/Admin.php:53 ../../Zotlabs/Widget/Admin.php:63 -#: ../../Zotlabs/Module/Admin/Logs.php:83 -msgid "Logs" +#: ../../Zotlabs/Lib/Enotify.php:247 ../../Zotlabs/Lib/Enotify.php:334 +#: ../../Zotlabs/Lib/Enotify.php:350 ../../Zotlabs/Lib/Enotify.php:374 +#: ../../Zotlabs/Lib/Enotify.php:391 ../../Zotlabs/Lib/Enotify.php:404 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." msgstr "" -#: ../../Zotlabs/Widget/Admin.php:61 -msgid "Addon Features" +#: ../../Zotlabs/Lib/Enotify.php:251 ../../Zotlabs/Lib/Enotify.php:252 +#, php-format +msgid "Please visit %s to approve or reject this comment." msgstr "" -#: ../../Zotlabs/Widget/Activity_filter.php:44 -#: ../../Zotlabs/Widget/Notifications.php:62 -msgid "Direct Messages" +#: ../../Zotlabs/Lib/Enotify.php:330 +#, php-format +msgid "[$Projectname:Notify] Like received to conversation #%1$d by %2$s" msgstr "" -#: ../../Zotlabs/Widget/Activity_filter.php:48 -msgid "Show direct (private) messages" +#: ../../Zotlabs/Lib/Enotify.php:331 +#, php-format +msgid "%1$s liked an item/conversation you created" msgstr "" -#: ../../Zotlabs/Widget/Activity_filter.php:53 -#: ../../Zotlabs/Widget/Notifications.php:81 -msgid "Events" +#: ../../Zotlabs/Lib/Enotify.php:342 +#, php-format +msgid "[$Projectname:Notify] %s posted to your profile wall" msgstr "" -#: ../../Zotlabs/Widget/Activity_filter.php:57 -msgid "Show posts that include events" +#: ../../Zotlabs/Lib/Enotify.php:344 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" msgstr "" -#: ../../Zotlabs/Widget/Activity_filter.php:63 -msgid "Polls" +#: ../../Zotlabs/Lib/Enotify.php:346 +#, php-format +msgid "%1$s posted to [zrl=%2$s]your wall[/zrl]" msgstr "" -#: ../../Zotlabs/Widget/Activity_filter.php:67 -msgid "Show posts that include polls" +#: ../../Zotlabs/Lib/Enotify.php:368 +#, php-format +msgid "[$Projectname:Notify] %s tagged you" msgstr "" -#: ../../Zotlabs/Widget/Activity_filter.php:90 +#: ../../Zotlabs/Lib/Enotify.php:369 #, php-format -msgid "Show posts related to the %s privacy group" +msgid "%1$s tagged you at %2$s" msgstr "" -#: ../../Zotlabs/Widget/Activity_filter.php:99 -msgid "Show my privacy groups" +#: ../../Zotlabs/Lib/Enotify.php:370 +#, php-format +msgid "%1$s [zrl=%2$s]tagged you[/zrl]." msgstr "" -#: ../../Zotlabs/Widget/Activity_filter.php:123 -msgid "Show posts to this forum" +#: ../../Zotlabs/Lib/Enotify.php:381 +#, php-format +msgid "[$Projectname:Notify] %1$s poked you" msgstr "" -#: ../../Zotlabs/Widget/Activity_filter.php:134 -msgid "Show forums" +#: ../../Zotlabs/Lib/Enotify.php:382 +#, php-format +msgid "%1$s poked you at %2$s" msgstr "" -#: ../../Zotlabs/Widget/Activity_filter.php:148 -msgid "Starred Posts" +#: ../../Zotlabs/Lib/Enotify.php:383 +#, php-format +msgid "%1$s [zrl=%2$s]poked you[/zrl]." msgstr "" -#: ../../Zotlabs/Widget/Activity_filter.php:152 -msgid "Show posts that I have starred" +#: ../../Zotlabs/Lib/Enotify.php:398 +#, php-format +msgid "[$Projectname:Notify] %s tagged your post" msgstr "" -#: ../../Zotlabs/Widget/Activity_filter.php:163 -msgid "Personal Posts" +#: ../../Zotlabs/Lib/Enotify.php:399 +#, php-format +msgid "%1$s tagged your post at %2$s" msgstr "" -#: ../../Zotlabs/Widget/Activity_filter.php:167 -msgid "Show posts that mention or involve me" +#: ../../Zotlabs/Lib/Enotify.php:400 +#, php-format +msgid "%1$s tagged [zrl=%2$s]your post[/zrl]" msgstr "" -#: ../../Zotlabs/Widget/Activity_filter.php:190 -#, php-format -msgid "Show posts that I have filed to %s" +#: ../../Zotlabs/Lib/Enotify.php:411 +msgid "[$Projectname:Notify] Introduction received" msgstr "" -#: ../../Zotlabs/Widget/Activity_filter.php:200 -msgid "Show filed post categories" +#: ../../Zotlabs/Lib/Enotify.php:412 +#, php-format +msgid "You've received an new connection request from '%1$s' at %2$s" msgstr "" -#: ../../Zotlabs/Widget/Activity_filter.php:214 -msgid "Panel search" +#: ../../Zotlabs/Lib/Enotify.php:413 +#, php-format +msgid "You've received [zrl=%1$s]a new connection request[/zrl] from %2$s." msgstr "" -#: ../../Zotlabs/Widget/Activity_filter.php:224 -msgid "Filter by name" +#: ../../Zotlabs/Lib/Enotify.php:416 ../../Zotlabs/Lib/Enotify.php:434 +#, php-format +msgid "You may visit their profile at %s" msgstr "" -#: ../../Zotlabs/Widget/Activity_filter.php:239 -msgid "Remove active filter" +#: ../../Zotlabs/Lib/Enotify.php:418 +#, php-format +msgid "Please visit %s to approve or reject the connection request." msgstr "" -#: ../../Zotlabs/Widget/Activity_filter.php:255 -msgid "Stream Filters" +#: ../../Zotlabs/Lib/Enotify.php:425 +msgid "[$Projectname:Notify] Friend suggestion received" msgstr "" -#: ../../Zotlabs/Widget/Appstore.php:16 -msgid "App Collections" +#: ../../Zotlabs/Lib/Enotify.php:426 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "" -#: ../../Zotlabs/Widget/Appstore.php:18 -msgid "Installed apps" +#: ../../Zotlabs/Lib/Enotify.php:427 +#, php-format +msgid "You've received [zrl=%1$s]a friend suggestion[/zrl] for %2$s from %3$s." msgstr "" -#: ../../Zotlabs/Widget/Appstore.php:19 ../../Zotlabs/Module/Apps.php:50 -msgid "Available Apps" +#: ../../Zotlabs/Lib/Enotify.php:432 +msgid "Name:" msgstr "" -#: ../../Zotlabs/Widget/Privacygroups.php:45 -msgid "Add new group" +#: ../../Zotlabs/Lib/Enotify.php:433 +msgid "Photo:" msgstr "" -#: ../../Zotlabs/Widget/Privacygroups.php:54 -#: ../../Zotlabs/Module/Contactedit.php:443 -msgid "Privacy groups" +#: ../../Zotlabs/Lib/Enotify.php:436 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." msgstr "" -#: ../../Zotlabs/Widget/Rating.php:57 -msgid "Rating Tools" +#: ../../Zotlabs/Lib/Enotify.php:661 +msgid "[$Projectname:Notify]" msgstr "" -#: ../../Zotlabs/Widget/Rating.php:61 ../../Zotlabs/Widget/Rating.php:63 -msgid "Rate Me" +#: ../../Zotlabs/Lib/Enotify.php:827 +msgid "created a new poll" msgstr "" -#: ../../Zotlabs/Widget/Rating.php:66 -msgid "View Ratings" +#: ../../Zotlabs/Lib/Enotify.php:827 +msgid "created a new post" msgstr "" -#: ../../Zotlabs/Widget/Cover_photo.php:71 -msgid "Click to show more" +#: ../../Zotlabs/Lib/Enotify.php:828 +#, php-format +msgid "voted on %s's poll" msgstr "" -#: ../../Zotlabs/Widget/Follow.php:27 ../../Zotlabs/Module/Connections.php:368 +#: ../../Zotlabs/Lib/Enotify.php:828 #, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." +msgid "commented on %s's post" msgstr "" -#: ../../Zotlabs/Widget/Follow.php:34 -msgid "Add New Connection" +#: ../../Zotlabs/Lib/Enotify.php:832 +#, php-format +msgid "repeated %s's post" msgstr "" -#: ../../Zotlabs/Widget/Follow.php:35 -msgid "Enter channel address" +#: ../../Zotlabs/Lib/Enotify.php:836 +#, php-format +msgid "liked %s's post" msgstr "" -#: ../../Zotlabs/Widget/Follow.php:36 -msgid "Examples: bob@example.com, https://example.com/barbara" +#: ../../Zotlabs/Lib/Enotify.php:840 +#, php-format +msgid "disliked %s's post" msgstr "" -#: ../../Zotlabs/Widget/Messages.php:32 -msgid "Public and restricted messages" +#: ../../Zotlabs/Lib/Enotify.php:844 ../../Zotlabs/Lib/Enotify.php:947 +msgid "shared a file with you" msgstr "" -#: ../../Zotlabs/Widget/Messages.php:33 -msgid "Direct messages" +#: ../../Zotlabs/Lib/Enotify.php:853 +#, php-format +msgid "edited a post dated %s" msgstr "" -#: ../../Zotlabs/Widget/Messages.php:34 -msgid "Starred messages" +#: ../../Zotlabs/Lib/Enotify.php:856 +#, php-format +msgid "edited a comment dated %s" msgstr "" -#: ../../Zotlabs/Widget/Messages.php:35 -#: ../../Zotlabs/Widget/Notifications.php:116 -#: ../../Zotlabs/Widget/Notifications.php:117 -msgid "Notices" +#: ../../Zotlabs/Lib/Enotify.php:932 +msgid "added your channel" msgstr "" -#: ../../Zotlabs/Widget/Messages.php:37 -msgid "No messages" +#: ../../Zotlabs/Lib/Enotify.php:962 +msgid "sent you a direct message" msgstr "" -#: ../../Zotlabs/Widget/Newmember.php:36 -msgid "Profile Creation" +#: ../../Zotlabs/Lib/Enotify.php:969 +msgid "g A l F d" msgstr "" -#: ../../Zotlabs/Widget/Newmember.php:38 -msgid "Upload profile photo" +#: ../../Zotlabs/Lib/Enotify.php:972 +msgid "[today]" msgstr "" -#: ../../Zotlabs/Widget/Newmember.php:39 -msgid "Upload cover photo" +#: ../../Zotlabs/Lib/Enotify.php:982 +msgid "created an event" msgstr "" -#: ../../Zotlabs/Widget/Newmember.php:43 -msgid "Find and Connect with others" +#: ../../Zotlabs/Lib/Enotify.php:997 +msgid "status verified" msgstr "" -#: ../../Zotlabs/Widget/Newmember.php:45 -msgid "View the directory" +#: ../../Zotlabs/Lib/Libzotdir.php:163 +msgid "Directory Options" msgstr "" -#: ../../Zotlabs/Widget/Newmember.php:46 ../../Zotlabs/Module/Go.php:38 -msgid "View friend suggestions" +#: ../../Zotlabs/Lib/Libzotdir.php:165 +msgid "Safe Mode" msgstr "" -#: ../../Zotlabs/Widget/Newmember.php:47 -msgid "Manage your connections" +#: ../../Zotlabs/Lib/Libzotdir.php:166 +msgid "Public Forums Only" msgstr "" -#: ../../Zotlabs/Widget/Newmember.php:50 -msgid "Communicate" +#: ../../Zotlabs/Lib/Libzotdir.php:168 +msgid "This Website Only" msgstr "" -#: ../../Zotlabs/Widget/Newmember.php:52 -msgid "View your channel homepage" +#: ../../Zotlabs/Lib/Techlevels.php:10 +msgid "0. Beginner/Basic" msgstr "" -#: ../../Zotlabs/Widget/Newmember.php:53 -msgid "View your network stream" +#: ../../Zotlabs/Lib/Techlevels.php:11 +msgid "1. Novice - not skilled but willing to learn" msgstr "" -#: ../../Zotlabs/Widget/Newmember.php:59 -msgid "Documentation" +#: ../../Zotlabs/Lib/Techlevels.php:12 +msgid "2. Intermediate - somewhat comfortable" msgstr "" -#: ../../Zotlabs/Widget/Newmember.php:62 -msgid "Missing Features?" +#: ../../Zotlabs/Lib/Techlevels.php:13 +msgid "3. Advanced - very comfortable" msgstr "" -#: ../../Zotlabs/Widget/Newmember.php:64 -msgid "Pin apps to navigation bar" +#: ../../Zotlabs/Lib/Techlevels.php:14 +msgid "4. Expert - I can write computer code" msgstr "" -#: ../../Zotlabs/Widget/Newmember.php:65 -msgid "Install more apps" +#: ../../Zotlabs/Lib/Techlevels.php:15 +msgid "5. Wizard - I probably know more than you do" msgstr "" -#: ../../Zotlabs/Widget/Newmember.php:76 -msgid "View public stream" +#: ../../Zotlabs/Lib/DB_Upgrade.php:67 +msgid "Source code of failed update: " msgstr "" -#: ../../Zotlabs/Widget/Newmember.php:80 -#: ../../Zotlabs/Module/Settings/Display.php:200 -msgid "New Member Links" +#: ../../Zotlabs/Lib/DB_Upgrade.php:88 +#, php-format +msgid "Update Error at %s" msgstr "" -#: ../../Zotlabs/Widget/Notes.php:39 -msgid "Read mode" +#: ../../Zotlabs/Lib/DB_Upgrade.php:94 +#, php-format +msgid "Update %s failed. See error logs." msgstr "" -#: ../../Zotlabs/Widget/Notes.php:40 -msgid "Edit mode" +#: ../../Zotlabs/Lib/ThreadItem.php:108 +msgid "Restricted message" msgstr "" -#: ../../Zotlabs/Widget/Notes.php:41 -msgid "Editing" +#: ../../Zotlabs/Lib/ThreadItem.php:115 +msgid "Direct message" msgstr "" -#: ../../Zotlabs/Widget/Notes.php:42 -msgid "Saving" +#: ../../Zotlabs/Lib/ThreadItem.php:120 +msgid "Public Policy" msgstr "" -#: ../../Zotlabs/Widget/Notes.php:43 -msgid "Saved" +#: ../../Zotlabs/Lib/ThreadItem.php:152 +msgid "Privacy conflict. Discretion advised." msgstr "" -#: ../../Zotlabs/Widget/Affinity.php:36 -#: ../../Zotlabs/Module/Contactedit.php:295 -#: ../../Zotlabs/Module/Connedit.php:579 -msgid "Me" +#: ../../Zotlabs/Lib/ThreadItem.php:183 ../../Zotlabs/Storage/Browser.php:372 +msgid "Admin Delete" msgstr "" -#: ../../Zotlabs/Widget/Affinity.php:37 -#: ../../Zotlabs/Module/Contactedit.php:296 -#: ../../Zotlabs/Module/Connedit.php:580 -msgid "Family" +#: ../../Zotlabs/Lib/ThreadItem.php:186 ../../Zotlabs/Module/Filer.php:55 +msgid "Save to Folder" msgstr "" -#: ../../Zotlabs/Widget/Affinity.php:39 -#: ../../Zotlabs/Module/Contactedit.php:298 -#: ../../Zotlabs/Module/Connedit.php:582 -msgid "Acquaintances" +#: ../../Zotlabs/Lib/ThreadItem.php:206 ../../Zotlabs/Widget/Pinned.php:73 +msgid "I will attend" msgstr "" -#: ../../Zotlabs/Widget/Affinity.php:40 -#: ../../Zotlabs/Module/Contactedit.php:299 -#: ../../Zotlabs/Module/Connections.php:97 -#: ../../Zotlabs/Module/Connections.php:111 -#: ../../Zotlabs/Module/Connedit.php:583 -msgid "All" +#: ../../Zotlabs/Lib/ThreadItem.php:206 ../../Zotlabs/Widget/Pinned.php:73 +msgid "I will not attend" msgstr "" -#: ../../Zotlabs/Widget/Affinity.php:60 -msgid "Refresh" +#: ../../Zotlabs/Lib/ThreadItem.php:206 ../../Zotlabs/Widget/Pinned.php:73 +msgid "I might attend" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:24 -msgid "New network activity notifications" +#: ../../Zotlabs/Lib/ThreadItem.php:229 ../../Zotlabs/Lib/ThreadItem.php:242 +#: ../../Zotlabs/Module/Photos.php:1124 ../../Zotlabs/Module/Photos.php:1136 +msgid "View all" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:27 -msgid "Network stream" +#: ../../Zotlabs/Lib/ThreadItem.php:310 ../../Zotlabs/Module/Photos.php:1071 +msgid "I like this (toggle)" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:30 -#: ../../Zotlabs/Widget/Notifications.php:69 -msgid "Mark all notifications read" +#: ../../Zotlabs/Lib/ThreadItem.php:311 ../../Zotlabs/Module/Photos.php:1072 +msgid "I don't like this (toggle)" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:33 -#: ../../Zotlabs/Widget/Notifications.php:53 -#: ../../Zotlabs/Widget/Notifications.php:72 -#: ../../Zotlabs/Widget/Notifications.php:164 -msgid "Show new posts only" +#: ../../Zotlabs/Lib/ThreadItem.php:312 +msgid "Reply on this comment" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:34 -#: ../../Zotlabs/Widget/Notifications.php:54 -#: ../../Zotlabs/Widget/Notifications.php:73 -#: ../../Zotlabs/Widget/Notifications.php:134 -#: ../../Zotlabs/Widget/Notifications.php:165 -msgid "Filter by name or address" +#: ../../Zotlabs/Lib/ThreadItem.php:312 +msgid "reply" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:44 -msgid "New home activity notifications" +#: ../../Zotlabs/Lib/ThreadItem.php:312 +msgid "Reply to" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:47 -msgid "Home stream" +#: ../../Zotlabs/Lib/ThreadItem.php:324 ../../Zotlabs/Widget/Pinned.php:102 +msgid "Share This" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:50 -#: ../../Zotlabs/Widget/Notifications.php:161 -msgid "Mark all notifications seen" +#: ../../Zotlabs/Lib/ThreadItem.php:324 ../../Zotlabs/Widget/Pinned.php:102 +msgid "share" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:63 -msgid "New direct messages notifications" +#: ../../Zotlabs/Lib/ThreadItem.php:335 +msgid "Delivery Report" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:66 -msgid "Direct messages stream" -msgstr "" +#: ../../Zotlabs/Lib/ThreadItem.php:355 +#, php-format +msgid "%d Comment" +msgid_plural "%d Comments" +msgstr[0] "" +msgstr[1] "" -#: ../../Zotlabs/Widget/Notifications.php:82 -msgid "New events notifications" +#: ../../Zotlabs/Lib/ThreadItem.php:356 +#, php-format +msgid "%d unseen" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:85 -msgid "View events" +#: ../../Zotlabs/Lib/ThreadItem.php:406 +msgid "Forum" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:88 -msgid "Mark all events seen" +#: ../../Zotlabs/Lib/ThreadItem.php:413 +msgid "to" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:96 -#: ../../Zotlabs/Module/Connections.php:165 -msgid "New Connections" +#: ../../Zotlabs/Lib/ThreadItem.php:414 ../../Zotlabs/Widget/Pinned.php:130 +#: ../../Zotlabs/Widget/Messages.php:137 +msgid "via" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:97 -msgid "New connections notifications" +#: ../../Zotlabs/Lib/ThreadItem.php:415 +msgid "Wall-to-Wall" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:100 -msgid "View all connections" +#: ../../Zotlabs/Lib/ThreadItem.php:416 +msgid "via Wall-To-Wall:" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:109 -msgid "New files notifications" +#: ../../Zotlabs/Lib/ThreadItem.php:444 +msgid "Attend" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:120 -msgid "View all notices" +#: ../../Zotlabs/Lib/ThreadItem.php:445 ../../Zotlabs/Widget/Pinned.php:144 +msgid "Attendance Options" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:123 -msgid "Mark all notices seen" +#: ../../Zotlabs/Lib/ThreadItem.php:447 ../../Zotlabs/Widget/Pinned.php:145 +msgid "Voting Options" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:144 -msgid "Registrations" +#: ../../Zotlabs/Lib/ThreadItem.php:462 +msgid "Go to previous comment" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:145 -msgid "New registrations notifications" +#: ../../Zotlabs/Lib/ThreadItem.php:471 ../../Zotlabs/Widget/Pinned.php:157 +msgid "Pinned post" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:154 -#: ../../Zotlabs/Module/Pubstream.php:100 ../../Zotlabs/Lib/Apps.php:379 -msgid "Public Stream" +#: ../../Zotlabs/Lib/ThreadItem.php:475 +msgid "Add to Calendar" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:155 -msgid "New public stream notifications" +#: ../../Zotlabs/Lib/ThreadItem.php:483 +#: ../../Zotlabs/Module/Notifications.php:111 +msgid "Mark all seen" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:158 -msgid "Public stream" +#: ../../Zotlabs/Lib/ThreadItem.php:490 ../../Zotlabs/Module/Photos.php:1259 +msgctxt "noun" +msgid "Likes" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:172 -msgid "Sorry, you have got no notifications at the moment" +#: ../../Zotlabs/Lib/ThreadItem.php:491 ../../Zotlabs/Module/Photos.php:1260 +msgctxt "noun" +msgid "Dislikes" msgstr "" -#: ../../Zotlabs/Module/Tokens.php:94 -#, php-format -msgid "This channel is limited to %d tokens" +#: ../../Zotlabs/Lib/ThreadItem.php:825 ../../Zotlabs/Module/Photos.php:1090 +#: ../../Zotlabs/Module/Photos.php:1203 +msgid "This is you" msgstr "" -#: ../../Zotlabs/Module/Tokens.php:100 -msgid "Name and Password are required." +#: ../../Zotlabs/Lib/ThreadItem.php:834 +msgid "Image" msgstr "" -#: ../../Zotlabs/Module/Tokens.php:215 -msgid "Token saved." +#: ../../Zotlabs/Lib/ThreadItem.php:836 +msgid "Insert Link" msgstr "" -#: ../../Zotlabs/Module/Tokens.php:261 -msgid "" -"Use this form to create temporary access identifiers to share things with " -"non-members. These identities may be used in privacy groups and visitors may " -"login using these credentials to access private content." +#: ../../Zotlabs/Lib/ThreadItem.php:837 +msgid "Video" msgstr "" -#: ../../Zotlabs/Module/Tokens.php:274 -msgid "Please select a role for this guest!" +#: ../../Zotlabs/Lib/ThreadItem.php:846 +msgid "Your full name (required)" msgstr "" -#: ../../Zotlabs/Module/Tokens.php:287 -msgid "Select a role for this guest" +#: ../../Zotlabs/Lib/ThreadItem.php:847 +msgid "Your email address (required)" msgstr "" -#: ../../Zotlabs/Module/Tokens.php:288 ../../Zotlabs/Lib/Apps.php:373 -msgid "Guest Access" +#: ../../Zotlabs/Lib/ThreadItem.php:848 +msgid "Your website URL (optional)" msgstr "" -#: ../../Zotlabs/Module/Tokens.php:291 -msgid "Login Name" +#: ../../Zotlabs/Lib/Activity.php:2289 +#, php-format +msgid "Likes %1$s's %2$s" msgstr "" -#: ../../Zotlabs/Module/Tokens.php:292 -msgid "Login Password" +#: ../../Zotlabs/Lib/Activity.php:2292 +#, php-format +msgid "Doesn't like %1$s's %2$s" msgstr "" -#: ../../Zotlabs/Module/Tokens.php:293 -msgid "Expires (yyyy-mm-dd)" +#: ../../Zotlabs/Lib/Activity.php:2298 +#, php-format +msgid "Will attend %s's event" msgstr "" -#: ../../Zotlabs/Module/Attach_edit.php:69 -#: ../../Zotlabs/Module/Filestorage.php:109 -msgid "File not found." +#: ../../Zotlabs/Lib/Activity.php:2301 +#, php-format +msgid "Will not attend %s's event" msgstr "" -#: ../../Zotlabs/Module/Attach_edit.php:118 -msgid "Can not copy folder into itself." +#: ../../Zotlabs/Lib/Activity.php:2304 +#, php-format +msgid "May attend %s's event" msgstr "" -#: ../../Zotlabs/Module/Attach_edit.php:131 +#: ../../Zotlabs/Lib/Activity.php:2307 #, php-format -msgid "Can not move folder \"%s\" into itself." +msgid "May not attend %s's event" msgstr "" -#: ../../Zotlabs/Module/Network.php:106 -msgid "No such group" +#: ../../Zotlabs/Lib/Chatroom.php:25 +msgid "Missing room name" msgstr "" -#: ../../Zotlabs/Module/Network.php:158 -msgid "No such channel" +#: ../../Zotlabs/Lib/Chatroom.php:34 +msgid "Duplicate room name" msgstr "" -#: ../../Zotlabs/Module/Network.php:170 ../../Zotlabs/Module/Channel.php:232 -msgid "Search Results For:" +#: ../../Zotlabs/Lib/Chatroom.php:84 ../../Zotlabs/Lib/Chatroom.php:92 +msgid "Invalid room specifier." msgstr "" -#: ../../Zotlabs/Module/Network.php:211 ../../Zotlabs/Module/Channel.php:267 -#: ../../Zotlabs/Module/Hq.php:101 ../../Zotlabs/Module/Pubstream.php:90 -#: ../../Zotlabs/Module/Display.php:87 -msgid "Reset form" +#: ../../Zotlabs/Lib/Chatroom.php:124 +msgid "Room not found." msgstr "" -#: ../../Zotlabs/Module/Network.php:246 -msgid "Privacy group is empty" +#: ../../Zotlabs/Lib/Chatroom.php:145 +msgid "Room is full" msgstr "" -#: ../../Zotlabs/Module/Network.php:256 -msgid "Privacy group: " +#: ../../Zotlabs/Lib/Libzot.php:696 +msgid "Unable to verify channel signature" msgstr "" -#: ../../Zotlabs/Module/Import_items.php:50 -msgid "Not a zip file or zip file corrupted." +#: ../../Zotlabs/Lib/AccessList.php:26 +msgid "" +"A deleted privacy group with this name was revived. Existing item " +"permissions may apply to this privacy group and any future " +"members. If this is not what you intended, please create another privacy " +"group with a different name." msgstr "" -#: ../../Zotlabs/Module/Import_items.php:121 -msgid "Import Items" +#: ../../Zotlabs/Lib/AccessList.php:268 +msgid "Select a privacy group" msgstr "" -#: ../../Zotlabs/Module/Import_items.php:122 -msgid "Use this form to import existing posts and content from an export file." +#: ../../Zotlabs/Module/Service_limits.php:23 +msgid "No service class restrictions found." msgstr "" -#: ../../Zotlabs/Module/Import_items.php:123 -#: ../../Zotlabs/Module/Import.php:594 -msgid "File to Upload" +#: ../../Zotlabs/Module/Search.php:23 ../../Zotlabs/Module/Directory.php:72 +#: ../../Zotlabs/Module/Directory.php:77 ../../Zotlabs/Module/Display.php:28 +#: ../../Zotlabs/Module/Viewconnections.php:23 +#: ../../Zotlabs/Module/Photos.php:511 +msgid "Public access denied." msgstr "" -#: ../../Zotlabs/Module/Import_items.php:136 -#: ../../Zotlabs/Module/Import.php:107 -msgid "Imported file is empty." +#: ../../Zotlabs/Module/Search.php:250 +#, php-format +msgid "Items tagged with: %s" msgstr "" -#: ../../Zotlabs/Module/Import_items.php:159 -msgid "Content import completed" +#: ../../Zotlabs/Module/Search.php:252 +#, php-format +msgid "Search results for: %s" msgstr "" -#: ../../Zotlabs/Module/Import_items.php:164 -msgid "Chatroom import completed" +#: ../../Zotlabs/Module/Locs.php:27 ../../Zotlabs/Module/Locs.php:65 +msgid "Location not found." msgstr "" -#: ../../Zotlabs/Module/Import_items.php:170 -msgid "Channel calendar import 1/2 completed" +#: ../../Zotlabs/Module/Locs.php:74 +msgid "Location lookup failed." msgstr "" -#: ../../Zotlabs/Module/Import_items.php:176 -msgid "Channel calendar import 2/2 completed" +#: ../../Zotlabs/Module/Locs.php:78 +msgid "" +"Please select another location to become primary before removing the primary " +"location." msgstr "" -#: ../../Zotlabs/Module/Import_items.php:181 -msgid "Menu import completed" +#: ../../Zotlabs/Module/Locs.php:106 +msgid "Syncing locations" msgstr "" -#: ../../Zotlabs/Module/Import_items.php:186 -msgid "Wiki import completed" +#: ../../Zotlabs/Module/Locs.php:115 +msgid "No locations found." msgstr "" -#: ../../Zotlabs/Module/Import_items.php:191 -msgid "Webpages import completed" +#: ../../Zotlabs/Module/Locs.php:120 +msgid "Manage Channel Locations" msgstr "" -#: ../../Zotlabs/Module/Import.php:70 -msgid "Nothing to import." +#: ../../Zotlabs/Module/Locs.php:122 ../../Zotlabs/Module/Connedit.php:739 +#: ../../Zotlabs/Module/Admin/Channels.php:160 +#: ../../Zotlabs/Module/Cdav.php:1381 ../../Zotlabs/Module/Profiles.php:473 +msgid "Address" msgstr "" -#: ../../Zotlabs/Module/Import.php:86 ../../Zotlabs/Module/Import.php:100 -msgid "Unable to download data from old server" +#: ../../Zotlabs/Module/Locs.php:124 ../../Zotlabs/Module/Menu.php:177 +msgid "Drop" msgstr "" -#: ../../Zotlabs/Module/Import.php:163 -#, php-format -msgid "Your service plan only allows %d channels." +#: ../../Zotlabs/Module/Locs.php:126 +msgid "Sync Now" msgstr "" -#: ../../Zotlabs/Module/Import.php:190 -msgid "No channel. Import failed." +#: ../../Zotlabs/Module/Locs.php:127 +msgid "Please wait several minutes between consecutive operations." msgstr "" -#: ../../Zotlabs/Module/Import.php:557 +#: ../../Zotlabs/Module/Locs.php:128 msgid "" -"Automatic content and files import was not possible due to API version " -"incompatiblity. Please import content and files manually!" +"When possible, drop a location by logging into that website/hub and removing " +"your channel." msgstr "" -#: ../../Zotlabs/Module/Import.php:585 -msgid "You must be logged in to use this feature." +#: ../../Zotlabs/Module/Locs.php:129 +msgid "Use this form to drop the location if the hub is no longer operating." msgstr "" -#: ../../Zotlabs/Module/Import.php:592 -msgid "Channel Import" +#: ../../Zotlabs/Module/Item.php:481 ../../Zotlabs/Module/Pin.php:36 +msgid "Unable to locate original post." msgstr "" -#: ../../Zotlabs/Module/Import.php:593 -msgid "" -"Use this form to import an existing channel from a different server/hub. You " -"may retrieve the channel identity from the old server/hub via the network or " -"provide an export file." +#: ../../Zotlabs/Module/Item.php:767 +msgid "Empty post discarded." msgstr "" -#: ../../Zotlabs/Module/Import.php:595 -msgid "Or provide the old server/hub details" +#: ../../Zotlabs/Module/Item.php:1165 +msgid "Duplicate post suppressed." msgstr "" -#: ../../Zotlabs/Module/Import.php:597 -msgid "Your old identity address (xyz@example.com)" +#: ../../Zotlabs/Module/Item.php:1308 +msgid "System error. Post not saved." msgstr "" -#: ../../Zotlabs/Module/Import.php:598 -msgid "Your old login email address" +#: ../../Zotlabs/Module/Item.php:1342 +msgid "Your comment is awaiting approval." msgstr "" -#: ../../Zotlabs/Module/Import.php:599 -msgid "Your old login password" +#: ../../Zotlabs/Module/Item.php:1479 +msgid "Unable to obtain post information from database." msgstr "" -#: ../../Zotlabs/Module/Import.php:600 -msgid "Import your items and files (limited by available memory)" +#: ../../Zotlabs/Module/Item.php:1486 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." msgstr "" -#: ../../Zotlabs/Module/Import.php:602 -msgid "" -"For either option, please choose whether to make this hub your new primary " -"address, or whether your old location should continue this role. You will be " -"able to post from either location, but only one can be marked as the primary " -"location for files, photos, and media." +#: ../../Zotlabs/Module/Item.php:1493 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." msgstr "" -#: ../../Zotlabs/Module/Import.php:604 -msgid "Make this hub my primary location" +#: ../../Zotlabs/Module/Directory.php:124 +msgid "No default suggestions were found." msgstr "" -#: ../../Zotlabs/Module/Import.php:605 -msgid "Move this channel (disable all previous locations)" +#: ../../Zotlabs/Module/Directory.php:289 +msgid "Gender: " msgstr "" -#: ../../Zotlabs/Module/Import.php:606 -msgid "Use this channel nickname instead of the one provided" +#: ../../Zotlabs/Module/Directory.php:291 +msgid "Status: " msgstr "" -#: ../../Zotlabs/Module/Import.php:606 -msgid "" -"Leave blank to keep your existing channel nickname. You will be randomly " -"assigned a similar nickname if either name is already allocated on this site." +#: ../../Zotlabs/Module/Directory.php:293 +msgid "Homepage: " msgstr "" -#: ../../Zotlabs/Module/Import.php:608 -msgid "" -"This process may take several minutes to complete. Please submit the form " -"only once and leave this page open until finished." +#: ../../Zotlabs/Module/Directory.php:353 +msgid "Description:" msgstr "" -#: ../../Zotlabs/Module/Ochannel.php:32 ../../Zotlabs/Module/Channel.php:44 -#: ../../Zotlabs/Module/Chat.php:29 -msgid "You must be logged in to see this page." +#: ../../Zotlabs/Module/Directory.php:355 +#: ../../Zotlabs/Module/Admin/Channels.php:151 +msgid "Uncensor" msgstr "" -#: ../../Zotlabs/Module/Z6trans.php:19 -msgid "Update to Hubzilla 5.0 step 2" +#: ../../Zotlabs/Module/Directory.php:355 +#: ../../Zotlabs/Module/Admin/Channels.php:150 +msgid "Censor" msgstr "" -#: ../../Zotlabs/Module/Z6trans.php:21 -msgid "To complete the update please run" +#: ../../Zotlabs/Module/Directory.php:364 +msgid "Public Forum:" msgstr "" -#: ../../Zotlabs/Module/Z6trans.php:23 -msgid "php util/z6convert.php" +#: ../../Zotlabs/Module/Directory.php:367 +msgid "Keywords: " msgstr "" -#: ../../Zotlabs/Module/Z6trans.php:25 -msgid "from the terminal." +#: ../../Zotlabs/Module/Directory.php:370 +msgid "Don't suggest" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:372 +msgid "Common connections (estimated):" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:422 +msgid "Global Directory" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:422 +msgid "Local Directory" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:428 +msgid "Finding:" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:433 +msgid "next page" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:433 +msgid "previous page" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:434 +msgid "Sort options" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:435 +msgid "Alphabetic" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:436 +msgid "Reverse Alphabetic" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:437 +msgid "Newest to Oldest" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:438 +msgid "Oldest to Newest" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:455 +msgid "No entries (some entries may be hidden)." +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:85 +#: ../../Zotlabs/Module/Profile_photo.php:128 +msgid "Image uploaded but image cropping failed." +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:196 +#: ../../Zotlabs/Module/Cover_photo.php:254 +msgid "Cover Photos" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:212 +#: ../../Zotlabs/Module/Profile_photo.php:184 +msgid "Image resize failed." +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:265 +#: ../../Zotlabs/Module/Profile_photo.php:350 +msgid "Image upload failed." +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:282 +#: ../../Zotlabs/Module/Profile_photo.php:370 +msgid "Unable to process image." +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:367 +#: ../../Zotlabs/Module/Cover_photo.php:382 +#: ../../Zotlabs/Module/Profile_photo.php:432 +#: ../../Zotlabs/Module/Profile_photo.php:497 +msgid "Photo not available." +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:418 +msgid "Your cover photo may be visible to anybody on the internet" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:420 +msgid "Upload File:" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:421 +msgid "Select a profile:" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:422 +msgid "Change Cover Photo" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:423 +#: ../../Zotlabs/Module/Profile_photo.php:547 +#: ../../Zotlabs/Module/Embedphotos.php:189 ../../Zotlabs/Module/Photos.php:681 +#: ../../Zotlabs/Widget/Portfolio.php:114 ../../Zotlabs/Widget/Album.php:103 +#: ../../Zotlabs/Widget/Cdav.php:152 ../../Zotlabs/Widget/Cdav.php:188 +#: ../../Zotlabs/Storage/Browser.php:546 +msgid "Upload" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:426 +#: ../../Zotlabs/Module/Cover_photo.php:427 +#: ../../Zotlabs/Module/Profile_photo.php:551 +#: ../../Zotlabs/Module/Profile_photo.php:552 +msgid "Use a photo from your albums" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:438 +msgid "Select existing photo" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:455 +#: ../../Zotlabs/Module/Profile_photo.php:581 +msgid "Crop Image" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:456 +#: ../../Zotlabs/Module/Profile_photo.php:582 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:458 +msgid "Done Editing" msgstr "" #: ../../Zotlabs/Module/Register.php:112 @@ -8406,6158 +8502,6070 @@ msgid "" "This site has exceeded the number of allowed daily account registrations." msgstr "" -#: ../../Zotlabs/Module/Search.php:23 -#: ../../Zotlabs/Module/Viewconnections.php:23 -#: ../../Zotlabs/Module/Display.php:28 ../../Zotlabs/Module/Directory.php:72 -#: ../../Zotlabs/Module/Directory.php:77 ../../Zotlabs/Module/Photos.php:523 -msgid "Public access denied." +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." msgstr "" -#: ../../Zotlabs/Module/Search.php:255 -#, php-format -msgid "Items tagged with: %s" +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." msgstr "" -#: ../../Zotlabs/Module/Search.php:257 -#, php-format -msgid "Search results for: %s" +#: ../../Zotlabs/Module/Api.php:74 ../../Zotlabs/Module/Api.php:95 +msgid "Authorize application connection" msgstr "" -#: ../../Zotlabs/Module/Setup.php:179 -msgid "$Projectname Server - Setup" +#: ../../Zotlabs/Module/Api.php:75 +msgid "Return to your app and insert this Security Code:" msgstr "" -#: ../../Zotlabs/Module/Setup.php:183 -msgid "Could not connect to database." +#: ../../Zotlabs/Module/Api.php:85 +msgid "Please login to continue." msgstr "" -#: ../../Zotlabs/Module/Setup.php:187 +#: ../../Zotlabs/Module/Api.php:97 msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:194 -msgid "Could not create table." +"Do you want to authorize this application to access your posts and contacts, " +"and/or create new posts for you?" msgstr "" -#: ../../Zotlabs/Module/Setup.php:200 -msgid "Your site database has been installed." +#: ../../Zotlabs/Module/Page.php:39 ../../Zotlabs/Module/Block.php:29 +msgid "Invalid item." msgstr "" -#: ../../Zotlabs/Module/Setup.php:206 +#: ../../Zotlabs/Module/Page.php:174 msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." +"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " +"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, " +"quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " +"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " +"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " +"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." msgstr "" -#: ../../Zotlabs/Module/Setup.php:207 ../../Zotlabs/Module/Setup.php:271 -#: ../../Zotlabs/Module/Setup.php:778 -msgid "Please see the file \"install/INSTALL.txt\"." +#: ../../Zotlabs/Module/Chatsvc.php:131 +msgid "Away" msgstr "" -#: ../../Zotlabs/Module/Setup.php:268 -msgid "System check" +#: ../../Zotlabs/Module/Chatsvc.php:136 +msgid "Online" msgstr "" -#: ../../Zotlabs/Module/Setup.php:272 ../../Zotlabs/Module/Cdav.php:1035 -#: ../../Zotlabs/Module/Cal.php:204 ../../Zotlabs/Module/Photos.php:962 -msgid "Next" +#: ../../Zotlabs/Module/Apps.php:51 ../../Zotlabs/Widget/Appstore.php:19 +msgid "Available Apps" msgstr "" -#: ../../Zotlabs/Module/Setup.php:273 -msgid "Check again" +#: ../../Zotlabs/Module/Apps.php:51 +msgid "Installed Apps" msgstr "" -#: ../../Zotlabs/Module/Setup.php:294 -msgid "Database connection" +#: ../../Zotlabs/Module/Apps.php:54 +msgid "Manage Apps" msgstr "" -#: ../../Zotlabs/Module/Setup.php:295 -msgid "" -"In order to install $Projectname we need to know how to connect to your " -"database." +#: ../../Zotlabs/Module/Apps.php:55 +msgid "Create Custom App" msgstr "" -#: ../../Zotlabs/Module/Setup.php:296 +#: ../../Zotlabs/Module/Profile_photo.php:544 msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." +"This profile photo will be visible to anybody on the internet and may be " +"distributed to other websites." msgstr "" -#: ../../Zotlabs/Module/Setup.php:297 +#: ../../Zotlabs/Module/Profile_photo.php:544 msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." +"This profile photo will be visible only to channels with permission to view " +"this profile." msgstr "" -#: ../../Zotlabs/Module/Setup.php:301 -msgid "Database Server Name" +#: ../../Zotlabs/Module/Profile_photo.php:546 +msgid "Use Photo for Profile" msgstr "" -#: ../../Zotlabs/Module/Setup.php:301 -msgid "Default is 127.0.0.1" +#: ../../Zotlabs/Module/Profile_photo.php:546 +msgid "Change Profile Photo" msgstr "" -#: ../../Zotlabs/Module/Setup.php:302 -msgid "Database Port" +#: ../../Zotlabs/Module/Profile_photo.php:548 +msgid "Reset to default" msgstr "" -#: ../../Zotlabs/Module/Setup.php:302 -msgid "Communication port number - use 0 for default" +#: ../../Zotlabs/Module/Profile_photo.php:562 +msgid "Select existing" msgstr "" -#: ../../Zotlabs/Module/Setup.php:303 -msgid "Database Login Name" +#: ../../Zotlabs/Module/Profile_photo.php:584 +msgid "Done editing" msgstr "" -#: ../../Zotlabs/Module/Setup.php:304 -msgid "Database Login Password" +#: ../../Zotlabs/Module/Lang.php:20 +msgid "Language App" msgstr "" -#: ../../Zotlabs/Module/Setup.php:305 -msgid "Database Name" +#: ../../Zotlabs/Module/Home.php:104 +#, php-format +msgid "Welcome to %s" msgstr "" -#: ../../Zotlabs/Module/Setup.php:306 -msgid "Database Type" +#: ../../Zotlabs/Module/Invite.php:69 +msgid "Invite App" msgstr "" -#: ../../Zotlabs/Module/Setup.php:308 ../../Zotlabs/Module/Setup.php:348 -msgid "Site administrator email address" +#: ../../Zotlabs/Module/Invite.php:81 +msgid "Register is closed" msgstr "" -#: ../../Zotlabs/Module/Setup.php:308 ../../Zotlabs/Module/Setup.php:348 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." +#: ../../Zotlabs/Module/Invite.php:115 ../../Zotlabs/Module/Invite.php:562 +msgid "Note, the invitation code is valid up to" msgstr "" -#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:350 -msgid "Website URL" +#: ../../Zotlabs/Module/Invite.php:128 +#, php-format +msgid "Too many recipients for one invitation (max %d)" msgstr "" -#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:350 -msgid "Please use SSL (https) URL if available." +#: ../../Zotlabs/Module/Invite.php:132 +msgid "No recipients for this invitation" msgstr "" -#: ../../Zotlabs/Module/Setup.php:310 ../../Zotlabs/Module/Setup.php:352 -msgid "Please select a default timezone for your website" +#: ../../Zotlabs/Module/Invite.php:151 +#, php-format +msgid "(%s) : Not a real email address" msgstr "" -#: ../../Zotlabs/Module/Setup.php:337 -msgid "Site settings" +#: ../../Zotlabs/Module/Invite.php:158 +#, php-format +msgid "(%s) : Not allowed email address" msgstr "" -#: ../../Zotlabs/Module/Setup.php:391 -msgid "PHP version 8.0 or greater is required." +#: ../../Zotlabs/Module/Invite.php:171 +#, php-format +msgid "(%s) : email address already in use" msgstr "" -#: ../../Zotlabs/Module/Setup.php:392 -msgid "PHP version" +#: ../../Zotlabs/Module/Invite.php:178 +#, php-format +msgid "(%s) : Accepted email address" msgstr "" -#: ../../Zotlabs/Module/Setup.php:408 -msgid "Could not find a command line version of PHP in the web server PATH." +#: ../../Zotlabs/Module/Invite.php:270 +#, php-format +msgid "To %s : Message delivery success." msgstr "" -#: ../../Zotlabs/Module/Setup.php:409 -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." +#: ../../Zotlabs/Module/Invite.php:302 +#, php-format +msgid "%1$d mail(s) sent, %2$d mail error(s)" msgstr "" -#: ../../Zotlabs/Module/Setup.php:413 -msgid "PHP executable path" +#: ../../Zotlabs/Module/Invite.php:327 +msgid "Invites not proposed by configuration" msgstr "" -#: ../../Zotlabs/Module/Setup.php:413 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." +#: ../../Zotlabs/Module/Invite.php:328 +msgid "Contact the site admin" msgstr "" -#: ../../Zotlabs/Module/Setup.php:418 -msgid "Command line PHP" +#: ../../Zotlabs/Module/Invite.php:344 +msgid "Invites by users not enabled" msgstr "" -#: ../../Zotlabs/Module/Setup.php:428 -msgid "" -"Unable to check command line PHP, as shell_exec() is disabled. This is " -"required." +#: ../../Zotlabs/Module/Invite.php:349 +msgid "You have no more invitations available" msgstr "" -#: ../../Zotlabs/Module/Setup.php:432 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." +#: ../../Zotlabs/Module/Invite.php:365 +msgid "Not on xchan" msgstr "" -#: ../../Zotlabs/Module/Setup.php:433 -msgid "This is required for message delivery to work." +#: ../../Zotlabs/Module/Invite.php:398 +msgid "All users invitation limit exceeded." msgstr "" -#: ../../Zotlabs/Module/Setup.php:436 -msgid "PHP register_argc_argv" +#: ../../Zotlabs/Module/Invite.php:410 ../../Zotlabs/Module/Admin/Site.php:356 +msgid "Minute(s)" msgstr "" -#: ../../Zotlabs/Module/Setup.php:456 -msgid "" -"This is not sufficient to upload larger images or files. You should be able " -"to upload at least 4 MB at once." +#: ../../Zotlabs/Module/Invite.php:411 ../../Zotlabs/Module/Admin/Site.php:357 +msgid "Hour(s)" msgstr "" -#: ../../Zotlabs/Module/Setup.php:458 -#, php-format -msgid "" -"Your max allowed total upload size is set to %s. Maximum size of one file to " -"upload is set to %s. You are allowed to upload up to %d files at once." +#: ../../Zotlabs/Module/Invite.php:412 ../../Zotlabs/Module/Admin/Site.php:358 +msgid "Day(s)" msgstr "" -#: ../../Zotlabs/Module/Setup.php:464 -msgid "You can adjust these settings in the server php.ini file." +#: ../../Zotlabs/Module/Invite.php:416 +msgid "Invitation expires after" msgstr "" -#: ../../Zotlabs/Module/Setup.php:466 -msgid "PHP upload limits" +#: ../../Zotlabs/Module/Invite.php:421 ../../Zotlabs/Module/Admin/Site.php:375 +#: ../../Zotlabs/Module/Admin/Site.php:397 +msgid "duration up from now" msgstr "" -#: ../../Zotlabs/Module/Setup.php:489 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" +#: ../../Zotlabs/Module/Invite.php:517 ../../Zotlabs/Module/Invite.php:556 +msgid "Invitation" msgstr "" -#: ../../Zotlabs/Module/Setup.php:490 -msgid "" -"If running under Windows, please see \"http://www.php.net/manual/en/openssl." -"installation.php\"." +#: ../../Zotlabs/Module/Invite.php:547 +msgid "Send invitations" msgstr "" -#: ../../Zotlabs/Module/Setup.php:493 -msgid "Generate encryption keys" +#: ../../Zotlabs/Module/Invite.php:548 +msgid "Invitations I am using" msgstr "" -#: ../../Zotlabs/Module/Setup.php:510 -msgid "libCurl PHP module" +#: ../../Zotlabs/Module/Invite.php:549 +msgid "Invitations we are using" msgstr "" -#: ../../Zotlabs/Module/Setup.php:511 -msgid "GD graphics PHP module" +#: ../../Zotlabs/Module/Invite.php:550 +msgid "§ Note, the email(s) sent will be recorded in the system logs" msgstr "" -#: ../../Zotlabs/Module/Setup.php:512 -msgid "OpenSSL PHP module" +#: ../../Zotlabs/Module/Invite.php:551 +msgid "Enter email addresses, one per line:" msgstr "" -#: ../../Zotlabs/Module/Setup.php:513 -msgid "PDO database PHP module" +#: ../../Zotlabs/Module/Invite.php:552 +msgid "Your message:" msgstr "" -#: ../../Zotlabs/Module/Setup.php:514 -msgid "mb_string PHP module" +#: ../../Zotlabs/Module/Invite.php:553 +msgid "Invite template" msgstr "" -#: ../../Zotlabs/Module/Setup.php:515 -msgid "xml PHP module" +#: ../../Zotlabs/Module/Invite.php:555 +msgid "Subject:" msgstr "" -#: ../../Zotlabs/Module/Setup.php:516 -msgid "zip PHP module" +#: ../../Zotlabs/Module/Invite.php:561 +msgid "Here you may enter personal notes to the recipient(s)" msgstr "" -#: ../../Zotlabs/Module/Setup.php:520 ../../Zotlabs/Module/Setup.php:522 -msgid "Apache mod_rewrite module" +#: ../../Zotlabs/Module/Removeaccount.php:35 +msgid "" +"Account removals are not allowed within 48 hours of changing the account " +"password." msgstr "" -#: ../../Zotlabs/Module/Setup.php:520 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." +#: ../../Zotlabs/Module/Removeaccount.php:57 +msgid "Remove This Account" msgstr "" -#: ../../Zotlabs/Module/Setup.php:526 ../../Zotlabs/Module/Setup.php:529 -msgid "exec" +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Changeaddr.php:78 ../../Zotlabs/Module/Removeme.php:61 +msgid "WARNING: " msgstr "" -#: ../../Zotlabs/Module/Setup.php:526 +#: ../../Zotlabs/Module/Removeaccount.php:58 msgid "" -"Error: exec is required but is either not installed or has been disabled in " -"php.ini" +"This account and all its channels will be completely removed from the " +"network. " msgstr "" -#: ../../Zotlabs/Module/Setup.php:532 ../../Zotlabs/Module/Setup.php:535 -msgid "shell_exec" +#: ../../Zotlabs/Module/Removeaccount.php:58 +msgid "This action is permanent and can not be undone!" msgstr "" -#: ../../Zotlabs/Module/Setup.php:532 -msgid "" -"Error: shell_exec is required but is either not installed or has been " -"disabled in php.ini" +#: ../../Zotlabs/Module/Removeaccount.php:59 +#: ../../Zotlabs/Module/Changeaddr.php:79 ../../Zotlabs/Module/Removeme.php:62 +msgid "Please enter your password for verification:" msgstr "" -#: ../../Zotlabs/Module/Setup.php:540 -msgid "Error: libCURL PHP module required but not installed." +#: ../../Zotlabs/Module/Removeaccount.php:61 +#: ../../Zotlabs/Module/Settings/Account.php:110 +msgid "Remove Account" msgstr "" -#: ../../Zotlabs/Module/Setup.php:544 -msgid "" -"Error: GD PHP module with JPEG support or ImageMagick graphics library " -"required but not installed." +#: ../../Zotlabs/Module/Poke.php:182 +msgid "Poke somebody" msgstr "" -#: ../../Zotlabs/Module/Setup.php:548 -msgid "Error: openssl PHP module required but not installed." +#: ../../Zotlabs/Module/Poke.php:186 +msgid "Poke or ping somebody" msgstr "" -#: ../../Zotlabs/Module/Setup.php:554 -msgid "" -"Error: PDO database PHP module missing a driver for either mysql or pgsql." +#: ../../Zotlabs/Module/Poke.php:193 +msgid "Recipient" msgstr "" -#: ../../Zotlabs/Module/Setup.php:559 -msgid "Error: PDO database PHP module required but not installed." +#: ../../Zotlabs/Module/Poke.php:194 +msgid "Choose action" msgstr "" -#: ../../Zotlabs/Module/Setup.php:563 -msgid "Error: mb_string PHP module required but not installed." +#: ../../Zotlabs/Module/Poke.php:197 ../../Zotlabs/Module/Poke.php:198 +msgid "Make this post private" msgstr "" -#: ../../Zotlabs/Module/Setup.php:567 -msgid "Error: xml PHP module required for DAV but not installed." +#: ../../Zotlabs/Module/Hq.php:41 ../../Zotlabs/Module/Display.php:47 +#: ../../Zotlabs/Module/Oep.php:83 ../../Zotlabs/Module/Channel.php:161 +#: ../../Zotlabs/Module/Channel.php:183 ../../Zotlabs/Module/Pubstream.php:46 +msgid "Malformed message id." msgstr "" -#: ../../Zotlabs/Module/Setup.php:571 -msgid "Error: zip PHP module required but not installed." +#: ../../Zotlabs/Module/Hq.php:101 ../../Zotlabs/Module/Display.php:89 +#: ../../Zotlabs/Module/Channel.php:269 ../../Zotlabs/Module/Network.php:211 +#: ../../Zotlabs/Module/Pubstream.php:89 +msgid "Reset form" msgstr "" -#: ../../Zotlabs/Module/Setup.php:590 ../../Zotlabs/Module/Setup.php:599 -msgid ".htconfig.php is writable" +#: ../../Zotlabs/Module/Regdir.php:52 ../../Zotlabs/Module/Dirsearch.php:24 +msgid "This site is not a directory server" msgstr "" -#: ../../Zotlabs/Module/Setup.php:595 -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." +#: ../../Zotlabs/Module/Dirsearch.php:33 +msgid "This directory server requires an access token" msgstr "" -#: ../../Zotlabs/Module/Setup.php:596 -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." +#: ../../Zotlabs/Module/Like.php:112 +msgid "Like/Dislike" msgstr "" -#: ../../Zotlabs/Module/Setup.php:597 -msgid "Please see install/INSTALL.txt for additional information." +#: ../../Zotlabs/Module/Like.php:118 +msgid "This action is restricted to members." msgstr "" -#: ../../Zotlabs/Module/Setup.php:613 +#: ../../Zotlabs/Module/Like.php:119 msgid "" -"This software uses the Smarty3 template engine to render its web views. " -"Smarty3 compiles templates to PHP to speed up rendering." +"Please login with your $Projectname ID or register as a new $Projectname member to continue." msgstr "" -#: ../../Zotlabs/Module/Setup.php:614 -#, php-format -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory %s under the top level web folder." +#: ../../Zotlabs/Module/Like.php:172 ../../Zotlabs/Module/Like.php:198 +#: ../../Zotlabs/Module/Like.php:236 +msgid "Invalid request." msgstr "" -#: ../../Zotlabs/Module/Setup.php:615 ../../Zotlabs/Module/Setup.php:636 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has " -"write access to this folder." +#: ../../Zotlabs/Module/Like.php:213 +msgid "thing" msgstr "" -#: ../../Zotlabs/Module/Setup.php:616 -#, php-format -msgid "" -"Note: as a security measure, you should give the web server write access to " -"%s only--not the template files (.tpl) that it contains." +#: ../../Zotlabs/Module/Like.php:259 +msgid "Channel unavailable." msgstr "" -#: ../../Zotlabs/Module/Setup.php:619 -#, php-format -msgid "%s is writable" +#: ../../Zotlabs/Module/Like.php:295 +msgid "Previous action reversed." msgstr "" -#: ../../Zotlabs/Module/Setup.php:635 -msgid "" -"This software uses the store directory to save uploaded files. The web " -"server needs to have write access to the store directory under the top level " -"web folder" +#: ../../Zotlabs/Module/Like.php:481 +#, php-format +msgid "%1$s agrees with %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Setup.php:639 -msgid "store is writable" +#: ../../Zotlabs/Module/Like.php:483 +#, php-format +msgid "%1$s doesn't agree with %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Setup.php:671 -msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access " -"to this site." +#: ../../Zotlabs/Module/Like.php:485 +#, php-format +msgid "%1$s abstains from a decision on %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Setup.php:672 -msgid "" -"If you have https access to your website or allow connections to TCP port " -"443 (the https: port), you MUST use a browser-valid certificate. You MUST " -"NOT use self-signed certificates!" +#: ../../Zotlabs/Module/Like.php:592 +msgid "Action completed." msgstr "" -#: ../../Zotlabs/Module/Setup.php:673 -msgid "" -"This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub." +#: ../../Zotlabs/Module/Like.php:593 +msgid "Thank you." msgstr "" -#: ../../Zotlabs/Module/Setup.php:674 -msgid "" -"If your certificate is not recognized, members of other sites (who may " -"themselves have valid certificates) will get a warning message on their own " -"site complaining about security issues." +#: ../../Zotlabs/Module/Vote.php:40 +msgid "Poll not found." msgstr "" -#: ../../Zotlabs/Module/Setup.php:675 -msgid "" -"This can cause usability issues elsewhere (not just on your own site) so we " -"must insist on this requirement." +#: ../../Zotlabs/Module/Vote.php:69 +msgid "Invalid response." msgstr "" -#: ../../Zotlabs/Module/Setup.php:676 -msgid "" -"Providers are available that issue free certificates which are browser-valid." +#: ../../Zotlabs/Module/Vote.php:125 +msgid "Response submitted. Updates may not appear instantly." msgstr "" -#: ../../Zotlabs/Module/Setup.php:677 -msgid "" -"If you are confident that the certificate is valid and signed by a trusted " -"authority, check to see if you have failed to install an intermediate cert. " -"These are not normally required by browsers, but are required for server-to-" -"server communications." +#: ../../Zotlabs/Module/Xchan.php:10 +msgid "Xchan Lookup" msgstr "" -#: ../../Zotlabs/Module/Setup.php:679 -msgid "SSL certificate validation" +#: ../../Zotlabs/Module/Xchan.php:13 +msgid "Lookup xchan beginning with (or webbie): " msgstr "" -#: ../../Zotlabs/Module/Setup.php:685 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -"Test: " +#: ../../Zotlabs/Module/Xchan.php:41 ../../Zotlabs/Module/Mitem.php:134 +#: ../../Zotlabs/Module/Menu.php:232 +msgid "Not found." msgstr "" -#: ../../Zotlabs/Module/Setup.php:688 -msgid "Url rewrite is working" +#: ../../Zotlabs/Module/Ochannel.php:32 ../../Zotlabs/Module/Chat.php:29 +msgid "You must be logged in to see this page." msgstr "" -#: ../../Zotlabs/Module/Setup.php:701 -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." +#: ../../Zotlabs/Module/Email_validation.php:24 +#: ../../Zotlabs/Module/Email_resend.php:12 +msgid "Token verification failed." msgstr "" -#: ../../Zotlabs/Module/Setup.php:776 -msgid "

What next?

" +#: ../../Zotlabs/Module/Email_validation.php:36 +msgid "Email Verification Required" msgstr "" -#: ../../Zotlabs/Module/Setup.php:777 +#: ../../Zotlabs/Module/Email_validation.php:37 +#, php-format msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." +"A verification token was sent to your email address [%s]. Enter that token " +"here to complete the account verification step. Please allow a few minutes " +"for delivery, and check your spam folder if you do not see the message." msgstr "" -#: ../../Zotlabs/Module/Viewconnections.php:65 -msgid "No connections." +#: ../../Zotlabs/Module/Email_validation.php:38 +msgid "Resend Email" msgstr "" -#: ../../Zotlabs/Module/Viewconnections.php:105 -#, php-format -msgid "Visit %s's profile [%s]" +#: ../../Zotlabs/Module/Email_validation.php:41 +msgid "Validation token" msgstr "" -#: ../../Zotlabs/Module/Viewconnections.php:135 -msgid "View Connections" +#: ../../Zotlabs/Module/Profile.php:62 ../../Zotlabs/Module/Channel.php:141 +#: ../../Zotlabs/Module/Hcard.php:37 +msgid "Posts and comments" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:24 -msgid "Public Hubs" +#: ../../Zotlabs/Module/Profile.php:69 ../../Zotlabs/Module/Channel.php:148 +#: ../../Zotlabs/Module/Hcard.php:44 +msgid "Only posts" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:27 -msgid "" -"The listed hubs allow public registration for the $Projectname network. All " -"hubs in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some hubs may require subscription or " -"provide tiered service plans. The hub itself may provide " -"additional details." +#: ../../Zotlabs/Module/Profile.php:106 +msgid "vcard" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Hub URL" +#: ../../Zotlabs/Module/Display.php:321 ../../Zotlabs/Module/Channel.php:497 +msgid "" +"You must enable javascript for your browser to be able to view this content." msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Access Type" +#: ../../Zotlabs/Module/Display.php:341 +msgid "Article" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Registration Policy" +#: ../../Zotlabs/Module/Display.php:385 +msgid "Item has been removed." msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Stats" +#: ../../Zotlabs/Module/Connect.php:65 ../../Zotlabs/Module/Connect.php:118 +msgid "Continue" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Software" +#: ../../Zotlabs/Module/Connect.php:99 +msgid "Premium Channel Setup" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:35 -msgid "Ratings" +#: ../../Zotlabs/Module/Connect.php:101 +msgid "Enable premium channel connection restrictions" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:49 -msgid "Rate" +#: ../../Zotlabs/Module/Connect.php:102 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." msgstr "" -#: ../../Zotlabs/Module/Channel.php:139 ../../Zotlabs/Module/Hcard.php:37 -#: ../../Zotlabs/Module/Profile.php:62 -msgid "Posts and comments" +#: ../../Zotlabs/Module/Connect.php:104 ../../Zotlabs/Module/Connect.php:124 +msgid "" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" msgstr "" -#: ../../Zotlabs/Module/Channel.php:146 ../../Zotlabs/Module/Hcard.php:44 -#: ../../Zotlabs/Module/Profile.php:69 -msgid "Only posts" +#: ../../Zotlabs/Module/Connect.php:105 +msgid "" +"Potential connections will then see the following text before proceeding:" msgstr "" -#: ../../Zotlabs/Module/Channel.php:159 ../../Zotlabs/Module/Channel.php:181 -#: ../../Zotlabs/Module/Hq.php:41 ../../Zotlabs/Module/Pubstream.php:47 -#: ../../Zotlabs/Module/Display.php:47 ../../Zotlabs/Module/Oep.php:83 -msgid "Malformed message id." +#: ../../Zotlabs/Module/Connect.php:106 ../../Zotlabs/Module/Connect.php:127 +msgid "" +"By continuing, I certify that I have complied with any instructions provided " +"on this page." msgstr "" -#: ../../Zotlabs/Module/Channel.php:217 -msgid "Insufficient permissions. Request redirected to profile page." +#: ../../Zotlabs/Module/Connect.php:115 +msgid "(No specific instructions have been provided by the channel owner.)" msgstr "" -#: ../../Zotlabs/Module/Channel.php:495 ../../Zotlabs/Module/Display.php:318 -msgid "" -"You must enable javascript for your browser to be able to view this content." +#: ../../Zotlabs/Module/Connect.php:123 +msgid "Restricted or Premium Channel" msgstr "" -#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 -msgid "Invalid profile identifier." +#: ../../Zotlabs/Module/Oauth2.php:54 +msgid "Name and Secret are required" msgstr "" -#: ../../Zotlabs/Module/Profperm.php:111 -msgid "Profile Visibility Editor" +#: ../../Zotlabs/Module/Oauth2.php:113 +msgid "Add OAuth2 application" msgstr "" -#: ../../Zotlabs/Module/Profperm.php:115 -msgid "Click on a contact to add or remove." +#: ../../Zotlabs/Module/Oauth2.php:116 ../../Zotlabs/Module/Oauth2.php:144 +#: ../../Zotlabs/Module/Oauth.php:111 +msgid "Name of application" msgstr "" -#: ../../Zotlabs/Module/Profperm.php:124 -msgid "Visible To" +#: ../../Zotlabs/Module/Oauth2.php:117 ../../Zotlabs/Module/Oauth2.php:145 +#: ../../Zotlabs/Module/Oauth.php:112 ../../Zotlabs/Module/Oauth.php:113 +msgid "Automatically generated - change if desired. Max length 20" msgstr "" -#: ../../Zotlabs/Module/Profperm.php:140 -#: ../../Zotlabs/Module/Connections.php:218 -msgid "All Connections" +#: ../../Zotlabs/Module/Oauth2.php:118 ../../Zotlabs/Module/Oauth2.php:146 +#: ../../Zotlabs/Module/Oauth.php:114 ../../Zotlabs/Module/Oauth.php:140 +msgid "Redirect" msgstr "" -#: ../../Zotlabs/Module/Group.php:47 -msgid "Privacy group created." +#: ../../Zotlabs/Module/Oauth2.php:118 ../../Zotlabs/Module/Oauth2.php:146 +#: ../../Zotlabs/Module/Oauth.php:114 +msgid "" +"Redirect URI - leave blank unless your application specifically requires this" msgstr "" -#: ../../Zotlabs/Module/Group.php:50 -msgid "Could not create privacy group." +#: ../../Zotlabs/Module/Oauth2.php:119 ../../Zotlabs/Module/Oauth2.php:147 +msgid "Grant Types" msgstr "" -#: ../../Zotlabs/Module/Group.php:82 -msgid "Privacy group updated." +#: ../../Zotlabs/Module/Oauth2.php:119 ../../Zotlabs/Module/Oauth2.php:120 +msgid "leave blank unless your application sepcifically requires this" msgstr "" -#: ../../Zotlabs/Module/Group.php:137 ../../Zotlabs/Module/Group.php:301 -msgid "Post to this group by default" +#: ../../Zotlabs/Module/Oauth2.php:120 ../../Zotlabs/Module/Oauth2.php:148 +msgid "Authorization scope" msgstr "" -#: ../../Zotlabs/Module/Group.php:138 ../../Zotlabs/Module/Group.php:302 -msgid "Add new contacts to this group by default" +#: ../../Zotlabs/Module/Oauth2.php:132 +msgid "OAuth2 Application not found." msgstr "" -#: ../../Zotlabs/Module/Group.php:146 -msgid "Privacy group name" +#: ../../Zotlabs/Module/Oauth2.php:141 ../../Zotlabs/Module/Oauth2.php:191 +#: ../../Zotlabs/Module/Oauth.php:108 ../../Zotlabs/Module/Oauth.php:134 +#: ../../Zotlabs/Module/Oauth.php:170 +msgid "Add application" msgstr "" -#: ../../Zotlabs/Module/Group.php:147 ../../Zotlabs/Module/Group.php:249 -msgid "Members are visible to other channels" +#: ../../Zotlabs/Module/Oauth2.php:147 ../../Zotlabs/Module/Oauth2.php:148 +msgid "leave blank unless your application specifically requires this" msgstr "" -#: ../../Zotlabs/Module/Group.php:175 -msgid "Privacy group removed." +#: ../../Zotlabs/Module/Oauth2.php:190 +msgid "Connected OAuth2 Apps" msgstr "" -#: ../../Zotlabs/Module/Group.php:178 -msgid "Unable to remove privacy group." +#: ../../Zotlabs/Module/Oauth2.php:194 ../../Zotlabs/Module/Oauth.php:173 +msgid "Client key starts with" msgstr "" -#: ../../Zotlabs/Module/Group.php:244 -#, php-format -msgid "Privacy Group: %s" +#: ../../Zotlabs/Module/Oauth2.php:195 ../../Zotlabs/Module/Oauth.php:174 +msgid "No name" msgstr "" -#: ../../Zotlabs/Module/Group.php:246 -msgid "Privacy group name: " +#: ../../Zotlabs/Module/Oauth2.php:196 ../../Zotlabs/Module/Oauth.php:175 +msgid "Remove authorization" msgstr "" -#: ../../Zotlabs/Module/Group.php:262 -msgid "Group members" -msgstr "" - -#: ../../Zotlabs/Module/Group.php:264 -msgid "Not in this group" +#: ../../Zotlabs/Module/Uexport.php:108 +msgid "No content available for year" msgstr "" -#: ../../Zotlabs/Module/Group.php:296 -msgid "Click a channel to toggle membership" +#: ../../Zotlabs/Module/Uexport.php:171 +msgid "Export Channel" msgstr "" -#: ../../Zotlabs/Module/Go.php:21 -msgid "This page is available only to site members" +#: ../../Zotlabs/Module/Uexport.php:173 +msgid "Export channel" msgstr "" -#: ../../Zotlabs/Module/Go.php:27 -msgid "Welcome" +#: ../../Zotlabs/Module/Uexport.php:174 +msgid "" +"This will export your identity and social graph into a file which can be " +"used to import your channel to a new hub." msgstr "" -#: ../../Zotlabs/Module/Go.php:29 -msgid "What would you like to do?" +#: ../../Zotlabs/Module/Uexport.php:177 +msgid "Export content" msgstr "" -#: ../../Zotlabs/Module/Go.php:31 +#: ../../Zotlabs/Module/Uexport.php:178 msgid "" -"Please bookmark this page if you would like to return to it in the future" +"This will export your posts, direct messages, articles and cards per month " +"stored into a zip file per year. Months with no posts will be dismissed." msgstr "" -#: ../../Zotlabs/Module/Go.php:35 -msgid "Upload a profile photo" +#: ../../Zotlabs/Module/Uexport.php:180 +msgid "Export wikis" msgstr "" -#: ../../Zotlabs/Module/Go.php:36 -msgid "Upload a cover photo" +#: ../../Zotlabs/Module/Uexport.php:181 +msgid "This will export your wikis and wiki pages." msgstr "" -#: ../../Zotlabs/Module/Go.php:37 -msgid "Edit your default profile" +#: ../../Zotlabs/Module/Uexport.php:183 +msgid "Export webpages" msgstr "" -#: ../../Zotlabs/Module/Go.php:39 -msgid "View the channel directory" +#: ../../Zotlabs/Module/Uexport.php:184 +msgid "This will export your webpages and menus." msgstr "" -#: ../../Zotlabs/Module/Go.php:40 -msgid "View/edit your channel settings" +#: ../../Zotlabs/Module/Uexport.php:186 +msgid "Export channel calendar" msgstr "" -#: ../../Zotlabs/Module/Go.php:41 -msgid "View the site or project documentation" +#: ../../Zotlabs/Module/Uexport.php:187 +msgid "" +"This will export your channel calendar events and associated items. CalDAV " +"calendars are not included." msgstr "" -#: ../../Zotlabs/Module/Go.php:42 -msgid "Visit your channel homepage" +#: ../../Zotlabs/Module/Uexport.php:189 +msgid "Export chatrooms" msgstr "" -#: ../../Zotlabs/Module/Go.php:43 -msgid "" -"View your connections and/or add somebody whose address you already know" +#: ../../Zotlabs/Module/Uexport.php:190 +msgid "This will export your chatrooms. Chat history is dismissed." msgstr "" -#: ../../Zotlabs/Module/Go.php:44 +#: ../../Zotlabs/Module/Uexport.php:192 +#, php-format msgid "" -"View your personal stream (this may be empty until you add some connections)" +"This export can be imported or restored by visiting %2$s on any site containing your channel." msgstr "" -#: ../../Zotlabs/Module/Go.php:52 -msgid "View the public stream. Warning: this content is not moderated" +#: ../../Zotlabs/Module/Mitem.php:31 ../../Zotlabs/Module/Menu.php:209 +msgid "Menu not found." msgstr "" -#: ../../Zotlabs/Module/Oauth.php:45 -msgid "Name is required" +#: ../../Zotlabs/Module/Mitem.php:63 +msgid "Unable to create element." msgstr "" -#: ../../Zotlabs/Module/Oauth.php:49 -msgid "Key and Secret are required" +#: ../../Zotlabs/Module/Mitem.php:87 +msgid "Unable to update menu element." msgstr "" -#: ../../Zotlabs/Module/Oauth.php:53 ../../Zotlabs/Module/Oauth.php:135 -#: ../../Zotlabs/Module/Cdav.php:1052 ../../Zotlabs/Module/Cdav.php:1388 -#: ../../Zotlabs/Module/Admin/Addons.php:457 ../../Zotlabs/Module/Oauth2.php:58 -#: ../../Zotlabs/Module/Oauth2.php:142 ../../Zotlabs/Module/Connedit.php:748 -#: ../../Zotlabs/Lib/Apps.php:545 -msgid "Update" +#: ../../Zotlabs/Module/Mitem.php:103 +msgid "Unable to add menu element." msgstr "" -#: ../../Zotlabs/Module/Oauth.php:108 ../../Zotlabs/Module/Oauth.php:134 -#: ../../Zotlabs/Module/Oauth.php:170 ../../Zotlabs/Module/Oauth2.php:141 -#: ../../Zotlabs/Module/Oauth2.php:191 -msgid "Add application" +#: ../../Zotlabs/Module/Mitem.php:167 ../../Zotlabs/Module/Mitem.php:246 +msgid "Menu Item Permissions" msgstr "" -#: ../../Zotlabs/Module/Oauth.php:111 ../../Zotlabs/Module/Oauth2.php:116 -#: ../../Zotlabs/Module/Oauth2.php:144 -msgid "Name of application" +#: ../../Zotlabs/Module/Mitem.php:168 ../../Zotlabs/Module/Mitem.php:247 +msgid "(click to open/close)" msgstr "" -#: ../../Zotlabs/Module/Oauth.php:112 ../../Zotlabs/Module/Oauth.php:113 -#: ../../Zotlabs/Module/Oauth2.php:117 ../../Zotlabs/Module/Oauth2.php:145 -msgid "Automatically generated - change if desired. Max length 20" +#: ../../Zotlabs/Module/Mitem.php:174 ../../Zotlabs/Module/Mitem.php:191 +msgid "Link Name" msgstr "" -#: ../../Zotlabs/Module/Oauth.php:114 ../../Zotlabs/Module/Oauth.php:140 -#: ../../Zotlabs/Module/Oauth2.php:118 ../../Zotlabs/Module/Oauth2.php:146 -msgid "Redirect" +#: ../../Zotlabs/Module/Mitem.php:175 ../../Zotlabs/Module/Mitem.php:255 +msgid "Link or Submenu Target" msgstr "" -#: ../../Zotlabs/Module/Oauth.php:114 ../../Zotlabs/Module/Oauth2.php:118 -#: ../../Zotlabs/Module/Oauth2.php:146 -msgid "" -"Redirect URI - leave blank unless your application specifically requires this" +#: ../../Zotlabs/Module/Mitem.php:175 +msgid "Enter URL of the link or select a menu name to create a submenu" msgstr "" -#: ../../Zotlabs/Module/Oauth.php:115 ../../Zotlabs/Module/Oauth.php:141 -msgid "Icon url" +#: ../../Zotlabs/Module/Mitem.php:176 ../../Zotlabs/Module/Mitem.php:256 +msgid "Use magic-auth if available" msgstr "" -#: ../../Zotlabs/Module/Oauth.php:126 -msgid "Application not found." +#: ../../Zotlabs/Module/Mitem.php:177 ../../Zotlabs/Module/Mitem.php:257 +msgid "Open link in new window" msgstr "" -#: ../../Zotlabs/Module/Oauth.php:169 -msgid "Connected OAuth Apps" +#: ../../Zotlabs/Module/Mitem.php:178 ../../Zotlabs/Module/Mitem.php:258 +msgid "Order in list" msgstr "" -#: ../../Zotlabs/Module/Oauth.php:173 ../../Zotlabs/Module/Oauth2.php:194 -msgid "Client key starts with" +#: ../../Zotlabs/Module/Mitem.php:178 ../../Zotlabs/Module/Mitem.php:258 +msgid "Higher numbers will sink to bottom of listing" msgstr "" -#: ../../Zotlabs/Module/Oauth.php:174 ../../Zotlabs/Module/Oauth2.php:195 -msgid "No name" +#: ../../Zotlabs/Module/Mitem.php:179 +msgid "Submit and finish" msgstr "" -#: ../../Zotlabs/Module/Oauth.php:175 ../../Zotlabs/Module/Oauth2.php:196 -msgid "Remove authorization" +#: ../../Zotlabs/Module/Mitem.php:180 +msgid "Submit and continue" msgstr "" -#: ../../Zotlabs/Module/Editwebpage.php:139 -msgid "Page link" +#: ../../Zotlabs/Module/Mitem.php:189 +msgid "Menu:" msgstr "" -#: ../../Zotlabs/Module/Editwebpage.php:166 -msgid "Edit Webpage" +#: ../../Zotlabs/Module/Mitem.php:192 +msgid "Link Target" msgstr "" -#: ../../Zotlabs/Module/Dirsearch.php:24 ../../Zotlabs/Module/Regdir.php:52 -msgid "This site is not a directory server" +#: ../../Zotlabs/Module/Mitem.php:195 +msgid "Edit menu" msgstr "" -#: ../../Zotlabs/Module/Dirsearch.php:33 -msgid "This directory server requires an access token" +#: ../../Zotlabs/Module/Mitem.php:198 +msgid "Edit element" msgstr "" -#: ../../Zotlabs/Module/Pin.php:36 ../../Zotlabs/Module/Item.php:466 -msgid "Unable to locate original post." +#: ../../Zotlabs/Module/Mitem.php:199 +msgid "Drop element" msgstr "" -#: ../../Zotlabs/Module/Chat.php:192 -msgid "Room not found" +#: ../../Zotlabs/Module/Mitem.php:200 +msgid "New element" msgstr "" -#: ../../Zotlabs/Module/Chat.php:208 -msgid "Leave Room" +#: ../../Zotlabs/Module/Mitem.php:201 +msgid "Edit this menu container" msgstr "" -#: ../../Zotlabs/Module/Chat.php:209 -msgid "Delete Room" +#: ../../Zotlabs/Module/Mitem.php:202 +msgid "Add menu element" msgstr "" -#: ../../Zotlabs/Module/Chat.php:210 -msgid "I am away right now" +#: ../../Zotlabs/Module/Mitem.php:203 +msgid "Delete this menu item" msgstr "" -#: ../../Zotlabs/Module/Chat.php:211 -msgid "I am online" +#: ../../Zotlabs/Module/Mitem.php:204 +msgid "Edit this menu item" msgstr "" -#: ../../Zotlabs/Module/Chat.php:213 -msgid "Bookmark this room" +#: ../../Zotlabs/Module/Mitem.php:222 +msgid "Menu item not found." msgstr "" -#: ../../Zotlabs/Module/Chat.php:236 -msgid "New Chatroom" +#: ../../Zotlabs/Module/Mitem.php:235 +msgid "Menu item deleted." msgstr "" -#: ../../Zotlabs/Module/Chat.php:237 -msgid "Chatroom name" +#: ../../Zotlabs/Module/Mitem.php:237 +msgid "Menu item could not be deleted." msgstr "" -#: ../../Zotlabs/Module/Chat.php:238 -msgid "Expiration of chats (minutes)" +#: ../../Zotlabs/Module/Mitem.php:244 +msgid "Edit Menu Element" msgstr "" -#: ../../Zotlabs/Module/Chat.php:254 -#, php-format -msgid "%1$s's Chatrooms" +#: ../../Zotlabs/Module/Mitem.php:254 +msgid "Link text" msgstr "" -#: ../../Zotlabs/Module/Chat.php:259 -msgid "No chatrooms available" +#: ../../Zotlabs/Module/Notify.php:85 +#: ../../Zotlabs/Module/Notifications.php:106 +msgid "No more system notifications." msgstr "" -#: ../../Zotlabs/Module/Chat.php:260 -msgid "Add Room" +#: ../../Zotlabs/Module/Notify.php:89 +#: ../../Zotlabs/Module/Notifications.php:110 +msgid "System Notifications" msgstr "" -#: ../../Zotlabs/Module/Chat.php:263 -msgid "Expiration" +#: ../../Zotlabs/Module/Appman.php:39 ../../Zotlabs/Module/Appman.php:56 +msgid "App installed." msgstr "" -#: ../../Zotlabs/Module/Chat.php:264 -msgid "min" +#: ../../Zotlabs/Module/Appman.php:49 +msgid "Malformed app." msgstr "" -#: ../../Zotlabs/Module/Channel_calendar.php:62 -msgid "Event can not end before it has started." +#: ../../Zotlabs/Module/Appman.php:198 +msgid "Embed code" msgstr "" -#: ../../Zotlabs/Module/Channel_calendar.php:64 -#: ../../Zotlabs/Module/Channel_calendar.php:72 -#: ../../Zotlabs/Module/Channel_calendar.php:87 -msgid "Unable to generate preview." +#: ../../Zotlabs/Module/Appman.php:203 +msgid "Edit App" msgstr "" -#: ../../Zotlabs/Module/Channel_calendar.php:70 -msgid "Event title and start time are required." +#: ../../Zotlabs/Module/Appman.php:203 +msgid "Create App" msgstr "" -#: ../../Zotlabs/Module/Channel_calendar.php:85 -#: ../../Zotlabs/Module/Channel_calendar.php:226 -msgid "Event not found." +#: ../../Zotlabs/Module/Appman.php:208 +msgid "Name of app" msgstr "" -#: ../../Zotlabs/Module/Channel_calendar.php:370 -msgid "Edit event" +#: ../../Zotlabs/Module/Appman.php:209 +msgid "Location (URL) of app" msgstr "" -#: ../../Zotlabs/Module/Channel_calendar.php:372 -msgid "Delete event" +#: ../../Zotlabs/Module/Appman.php:211 +msgid "Photo icon URL" msgstr "" -#: ../../Zotlabs/Module/Channel_calendar.php:392 -#: ../../Zotlabs/Module/Cdav.php:942 ../../Zotlabs/Module/Cal.php:165 -msgid "Link to source" +#: ../../Zotlabs/Module/Appman.php:211 +msgid "80 x 80 pixels - optional" msgstr "" -#: ../../Zotlabs/Module/Channel_calendar.php:406 -msgid "calendar" +#: ../../Zotlabs/Module/Appman.php:212 +msgid "Categories (optional, comma separated list)" msgstr "" -#: ../../Zotlabs/Module/Channel_calendar.php:493 -msgid "Failed to remove event" +#: ../../Zotlabs/Module/Appman.php:213 +msgid "Version ID" msgstr "" -#: ../../Zotlabs/Module/Like.php:112 -msgid "Like/Dislike" +#: ../../Zotlabs/Module/Appman.php:214 +msgid "Price of app" msgstr "" -#: ../../Zotlabs/Module/Like.php:118 -msgid "This action is restricted to members." +#: ../../Zotlabs/Module/Appman.php:215 +msgid "Location (URL) to purchase app" msgstr "" -#: ../../Zotlabs/Module/Like.php:119 -msgid "" -"Please login with your $Projectname ID or register as a new $Projectname member to continue." +#: ../../Zotlabs/Module/Layouts.php:129 ../../Zotlabs/Module/Layouts.php:187 +#: ../../Zotlabs/Module/Editlayout.php:128 +msgid "Layout Name" msgstr "" -#: ../../Zotlabs/Module/Like.php:172 ../../Zotlabs/Module/Like.php:198 -#: ../../Zotlabs/Module/Like.php:236 -msgid "Invalid request." +#: ../../Zotlabs/Module/Layouts.php:132 ../../Zotlabs/Module/Editlayout.php:129 +msgid "Layout Description (Optional)" msgstr "" -#: ../../Zotlabs/Module/Like.php:213 -msgid "thing" +#: ../../Zotlabs/Module/Layouts.php:183 ../../Zotlabs/Module/Blocks.php:157 +#: ../../Zotlabs/Module/Menu.php:182 ../../Zotlabs/Module/Connedit.php:747 +#: ../../Zotlabs/Module/Cdav.php:1060 ../../Zotlabs/Module/Cdav.php:1389 +#: ../../Zotlabs/Module/Webpages.php:249 +#: ../../Zotlabs/Module/New_channel.php:189 ../../Zotlabs/Widget/Cdav.php:146 +#: ../../Zotlabs/Widget/Cdav.php:184 ../../Zotlabs/Storage/Browser.php:368 +#: ../../Zotlabs/Storage/Browser.php:544 +msgid "Create" msgstr "" -#: ../../Zotlabs/Module/Like.php:259 -msgid "Channel unavailable." +#: ../../Zotlabs/Module/Layouts.php:184 +msgid "Comanche page description language help" msgstr "" -#: ../../Zotlabs/Module/Like.php:295 -msgid "Previous action reversed." +#: ../../Zotlabs/Module/Layouts.php:188 +msgid "Layout Description" msgstr "" -#: ../../Zotlabs/Module/Like.php:481 -#, php-format -msgid "%1$s agrees with %2$s's %3$s" +#: ../../Zotlabs/Module/Layouts.php:189 ../../Zotlabs/Module/Blocks.php:155 +#: ../../Zotlabs/Module/Menu.php:178 ../../Zotlabs/Module/Webpages.php:261 +msgid "Created" msgstr "" -#: ../../Zotlabs/Module/Like.php:483 -#, php-format -msgid "%1$s doesn't agree with %2$s's %3$s" +#: ../../Zotlabs/Module/Layouts.php:190 ../../Zotlabs/Module/Blocks.php:156 +#: ../../Zotlabs/Module/Menu.php:179 ../../Zotlabs/Module/Webpages.php:262 +msgid "Edited" msgstr "" -#: ../../Zotlabs/Module/Like.php:485 -#, php-format -msgid "%1$s abstains from a decision on %2$s's %3$s" +#: ../../Zotlabs/Module/Layouts.php:193 +msgid "Download PDL file" msgstr "" -#: ../../Zotlabs/Module/Like.php:592 -msgid "Action completed." +#: ../../Zotlabs/Module/Share.php:120 +msgid "Post repeated" msgstr "" -#: ../../Zotlabs/Module/Like.php:593 -msgid "Thank you." +#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:153 +#: ../../Zotlabs/Module/Editblock.php:113 +msgid "Block Name" msgstr "" -#: ../../Zotlabs/Module/Poke.php:198 -msgid "Poke somebody" +#: ../../Zotlabs/Module/Blocks.php:154 +msgid "Block Title" msgstr "" -#: ../../Zotlabs/Module/Poke.php:201 -msgid "Poke/Prod" +#: ../../Zotlabs/Module/Authorize.php:17 +msgid "Unknown App" msgstr "" -#: ../../Zotlabs/Module/Poke.php:202 -msgid "Poke, prod or do other things to somebody" +#: ../../Zotlabs/Module/Authorize.php:29 +msgid "Authorize" msgstr "" -#: ../../Zotlabs/Module/Poke.php:209 -msgid "Recipient" +#: ../../Zotlabs/Module/Authorize.php:30 +#, php-format +msgid "Do you authorize the app %s to access your channel data?" msgstr "" -#: ../../Zotlabs/Module/Poke.php:210 -msgid "Choose what you wish to do to recipient" +#: ../../Zotlabs/Module/Authorize.php:33 +#: ../../Zotlabs/Module/Admin/Accounts.php:319 +msgid "Deny" msgstr "" -#: ../../Zotlabs/Module/Poke.php:213 ../../Zotlabs/Module/Poke.php:214 -msgid "Make this post private" +#: ../../Zotlabs/Module/Follow.php:92 +msgid "Connection added." msgstr "" -#: ../../Zotlabs/Module/Cdav.php:819 -msgid "Calendar entries imported." +#: ../../Zotlabs/Module/Connections.php:58 +#: ../../Zotlabs/Module/Connections.php:116 +msgid "Active" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:821 -msgid "No calendar entries found." +#: ../../Zotlabs/Module/Connections.php:63 +#: ../../Zotlabs/Module/Connections.php:184 +#: ../../Zotlabs/Module/Connections.php:290 +msgid "Blocked" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1008 -msgid "Event title" +#: ../../Zotlabs/Module/Connections.php:68 +#: ../../Zotlabs/Module/Connections.php:191 +#: ../../Zotlabs/Module/Connections.php:289 +msgid "Ignored" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1009 -msgid "Start date and time" +#: ../../Zotlabs/Module/Connections.php:73 +#: ../../Zotlabs/Module/Connections.php:205 +#: ../../Zotlabs/Module/Connections.php:288 +msgid "Hidden" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1010 -msgid "End date and time" +#: ../../Zotlabs/Module/Connections.php:78 +#: ../../Zotlabs/Module/Connections.php:198 +msgid "Archived/Unreachable" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1011 -msgid "Timezone:" +#: ../../Zotlabs/Module/Connections.php:83 +#: ../../Zotlabs/Module/Connections.php:92 ../../Zotlabs/Module/Menu.php:180 +#: ../../Zotlabs/Module/Notifications.php:101 +msgid "New" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1034 ../../Zotlabs/Module/Cal.php:203 -#: ../../Zotlabs/Module/Photos.php:953 -msgid "Previous" +#: ../../Zotlabs/Module/Connections.php:97 +#: ../../Zotlabs/Module/Connections.php:111 +#: ../../Zotlabs/Module/Connedit.php:583 +#: ../../Zotlabs/Module/Contactedit.php:299 +#: ../../Zotlabs/Widget/Affinity.php:40 +msgid "All" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1036 ../../Zotlabs/Module/Cal.php:205 -msgid "Today" +#: ../../Zotlabs/Module/Connections.php:160 +msgid "Active Connections" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1037 -msgid "Month" +#: ../../Zotlabs/Module/Connections.php:163 +msgid "Show active connections" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1038 -msgid "Week" +#: ../../Zotlabs/Module/Connections.php:167 +#: ../../Zotlabs/Widget/Notifications.php:96 +msgid "New Connections" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1039 -msgid "Day" +#: ../../Zotlabs/Module/Connections.php:170 +msgid "Show pending (new) connections" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1040 -msgid "List month" +#: ../../Zotlabs/Module/Connections.php:187 +msgid "Only show blocked connections" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1041 -msgid "List week" +#: ../../Zotlabs/Module/Connections.php:194 +msgid "Only show ignored connections" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1042 -msgid "List day" +#: ../../Zotlabs/Module/Connections.php:201 +msgid "Only show archived/unreachable connections" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1050 -msgid "More" +#: ../../Zotlabs/Module/Connections.php:208 +msgid "Only show hidden connections" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1051 -msgid "Less" +#: ../../Zotlabs/Module/Connections.php:220 +#: ../../Zotlabs/Module/Profperm.php:140 +msgid "All Connections" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1053 -msgid "Select calendar" +#: ../../Zotlabs/Module/Connections.php:223 +msgid "Show all connections" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1056 -msgid "Delete all" +#: ../../Zotlabs/Module/Connections.php:286 +msgid "Pending approval" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1059 -msgid "Sorry! Editing of recurrent events is not yet implemented." +#: ../../Zotlabs/Module/Connections.php:287 +msgid "Archived" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1060 -msgid "" -"Could not fetch calendar resource. The selected calendar might be disabled." +#: ../../Zotlabs/Module/Connections.php:291 +msgid "Not connected at this location" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1373 ../../Zotlabs/Module/Connedit.php:733 -msgid "Organisation" +#: ../../Zotlabs/Module/Connections.php:330 +#, php-format +msgid "%1$s [%2$s]" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1375 ../../Zotlabs/Module/Connedit.php:735 -msgid "Phone" +#: ../../Zotlabs/Module/Connections.php:331 +msgid "Edit connection" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1377 ../../Zotlabs/Module/Connedit.php:737 -msgid "Instant messenger" +#: ../../Zotlabs/Module/Connections.php:333 +msgid "Delete connection" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1378 ../../Zotlabs/Module/Connedit.php:738 -msgid "Website" +#: ../../Zotlabs/Module/Connections.php:339 +msgid "Channel address" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1379 -#: ../../Zotlabs/Module/Admin/Channels.php:160 -#: ../../Zotlabs/Module/Profiles.php:473 ../../Zotlabs/Module/Connedit.php:739 -#: ../../Zotlabs/Module/Locs.php:122 -msgid "Address" +#: ../../Zotlabs/Module/Connections.php:344 +msgid "Call" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1380 ../../Zotlabs/Module/Connedit.php:740 -msgid "Note" +#: ../../Zotlabs/Module/Connections.php:346 +msgid "Status" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1385 ../../Zotlabs/Module/Connedit.php:745 -msgid "Add Contact" +#: ../../Zotlabs/Module/Connections.php:349 +msgid "Connected" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1386 ../../Zotlabs/Module/Connedit.php:746 -msgid "Add Field" +#: ../../Zotlabs/Module/Connections.php:351 +#: ../../Zotlabs/Module/Contactedit.php:462 +msgid "Approve connection" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1391 ../../Zotlabs/Module/Connedit.php:751 -msgid "P.O. Box" +#: ../../Zotlabs/Module/Connections.php:353 +msgid "Ignore connection" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1392 ../../Zotlabs/Module/Connedit.php:752 -msgid "Additional" +#: ../../Zotlabs/Module/Connections.php:354 +#: ../../Zotlabs/Module/Connedit.php:516 +#: ../../Zotlabs/Module/Contactedit.php:646 +msgid "Ignore" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1393 ../../Zotlabs/Module/Connedit.php:753 -msgid "Street" +#: ../../Zotlabs/Module/Connections.php:355 +msgid "Recent activity" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1394 ../../Zotlabs/Module/Connedit.php:754 -msgid "Locality" +#: ../../Zotlabs/Module/Connections.php:361 +msgid "Connect at this location" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1395 ../../Zotlabs/Module/Connedit.php:755 -msgid "Region" +#: ../../Zotlabs/Module/Connections.php:371 ../../Zotlabs/Widget/Follow.php:27 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1396 ../../Zotlabs/Module/Connedit.php:756 -msgid "ZIP Code" +#: ../../Zotlabs/Module/Connections.php:398 +#: ../../Zotlabs/Module/Connedit.php:686 +msgid "Contact role" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1397 ../../Zotlabs/Module/Profiles.php:774 -#: ../../Zotlabs/Module/Connedit.php:757 -msgid "Country" +#: ../../Zotlabs/Module/Connections.php:399 +msgid "Search your connections" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1456 -msgid "Default Calendar" +#: ../../Zotlabs/Module/Connections.php:400 +msgid "Contact search" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1467 -msgid "Default Addressbook" +#: ../../Zotlabs/Module/Connections.php:408 +#: ../../Zotlabs/Module/Contactedit.php:397 +msgid "This is a group/forum channel" msgstr "" -#: ../../Zotlabs/Module/Lockview.php:100 -msgid "Remote privacy information not available" +#: ../../Zotlabs/Module/Cal.php:62 +msgid "Permissions denied." msgstr "" -#: ../../Zotlabs/Module/Lockview.php:143 ../../Zotlabs/Module/Lockview.php:184 -#: ../../Zotlabs/Module/Acl.php:123 -msgctxt "acl" -msgid "Profile" +#: ../../Zotlabs/Module/Cal.php:165 ../../Zotlabs/Module/Cdav.php:945 +#: ../../Zotlabs/Module/Channel_calendar.php:392 +msgid "Link to source" msgstr "" -#: ../../Zotlabs/Module/Lockview.php:154 ../../Zotlabs/Module/Lockview.php:193 -msgid "Privacy group" +#: ../../Zotlabs/Module/Cal.php:203 ../../Zotlabs/Module/Cdav.php:1036 +#: ../../Zotlabs/Module/Photos.php:942 +msgid "Previous" msgstr "" -#: ../../Zotlabs/Module/Lockview.php:214 -#, php-format -msgid "Click to copy link to this ressource for guest %s to clipboard" +#: ../../Zotlabs/Module/Cal.php:204 ../../Zotlabs/Module/Cdav.php:1037 +#: ../../Zotlabs/Module/Setup.php:272 ../../Zotlabs/Module/Photos.php:951 +msgid "Next" msgstr "" -#: ../../Zotlabs/Module/Lockview.php:214 -msgid "Link copied" +#: ../../Zotlabs/Module/Cal.php:205 ../../Zotlabs/Module/Cdav.php:1038 +msgid "Today" msgstr "" -#: ../../Zotlabs/Module/Lockview.php:221 -msgid "Access" +#: ../../Zotlabs/Module/Import_items.php:50 +msgid "Not a zip file or zip file corrupted." msgstr "" -#: ../../Zotlabs/Module/Item.php:751 -msgid "Empty post discarded." +#: ../../Zotlabs/Module/Import_items.php:121 +msgid "Import Items" msgstr "" -#: ../../Zotlabs/Module/Item.php:1153 -msgid "Duplicate post suppressed." +#: ../../Zotlabs/Module/Import_items.php:122 +msgid "Use this form to import existing posts and content from an export file." msgstr "" -#: ../../Zotlabs/Module/Item.php:1296 -msgid "System error. Post not saved." +#: ../../Zotlabs/Module/Import_items.php:123 +#: ../../Zotlabs/Module/Import.php:594 +msgid "File to Upload" msgstr "" -#: ../../Zotlabs/Module/Item.php:1330 -msgid "Your comment is awaiting approval." +#: ../../Zotlabs/Module/Import_items.php:136 +#: ../../Zotlabs/Module/Import.php:107 +msgid "Imported file is empty." msgstr "" -#: ../../Zotlabs/Module/Item.php:1463 -msgid "Unable to obtain post information from database." +#: ../../Zotlabs/Module/Import_items.php:159 +msgid "Content import completed" msgstr "" -#: ../../Zotlabs/Module/Item.php:1470 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." +#: ../../Zotlabs/Module/Import_items.php:164 +msgid "Chatroom import completed" msgstr "" -#: ../../Zotlabs/Module/Item.php:1477 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." +#: ../../Zotlabs/Module/Import_items.php:170 +msgid "Channel calendar import 1/2 completed" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:31 ../../Zotlabs/Module/Menu.php:209 -msgid "Menu not found." +#: ../../Zotlabs/Module/Import_items.php:176 +msgid "Channel calendar import 2/2 completed" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:63 -msgid "Unable to create element." +#: ../../Zotlabs/Module/Import_items.php:181 +msgid "Menu import completed" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:87 -msgid "Unable to update menu element." +#: ../../Zotlabs/Module/Import_items.php:186 +msgid "Wiki import completed" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:103 -msgid "Unable to add menu element." +#: ../../Zotlabs/Module/Import_items.php:191 +msgid "Webpages import completed" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:134 ../../Zotlabs/Module/Xchan.php:41 -#: ../../Zotlabs/Module/Menu.php:232 -msgid "Not found." +#: ../../Zotlabs/Module/Bookmarks.php:62 +msgid "Bookmark added" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:167 ../../Zotlabs/Module/Mitem.php:246 -msgid "Menu Item Permissions" +#: ../../Zotlabs/Module/Bookmarks.php:101 +msgid "My Connections Bookmarks" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:168 ../../Zotlabs/Module/Mitem.php:247 -msgid "(click to open/close)" +#: ../../Zotlabs/Module/Editlayout.php:137 +msgid "Edit Layout" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:174 ../../Zotlabs/Module/Mitem.php:191 -msgid "Link Name" +#: ../../Zotlabs/Module/Oauth.php:45 +msgid "Name is required" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:175 ../../Zotlabs/Module/Mitem.php:255 -msgid "Link or Submenu Target" +#: ../../Zotlabs/Module/Oauth.php:49 +msgid "Key and Secret are required" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:175 -msgid "Enter URL of the link or select a menu name to create a submenu" +#: ../../Zotlabs/Module/Oauth.php:115 ../../Zotlabs/Module/Oauth.php:141 +msgid "Icon url" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:176 ../../Zotlabs/Module/Mitem.php:256 -msgid "Use magic-auth if available" +#: ../../Zotlabs/Module/Oauth.php:126 +msgid "Application not found." msgstr "" -#: ../../Zotlabs/Module/Mitem.php:177 ../../Zotlabs/Module/Mitem.php:257 -msgid "Open link in new window" +#: ../../Zotlabs/Module/Oauth.php:169 +msgid "Connected OAuth Apps" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:178 ../../Zotlabs/Module/Mitem.php:258 -msgid "Order in list" -msgstr "" +#: ../../Zotlabs/Module/Permcats.php:59 +msgid "Contact role deleted." +msgstr "" -#: ../../Zotlabs/Module/Mitem.php:178 ../../Zotlabs/Module/Mitem.php:258 -msgid "Higher numbers will sink to bottom of listing" +#: ../../Zotlabs/Module/Permcats.php:86 +msgid "Permission category name is required." msgstr "" -#: ../../Zotlabs/Module/Mitem.php:179 -msgid "Submit and finish" +#: ../../Zotlabs/Module/Permcats.php:102 ../../Zotlabs/Module/Permcats.php:154 +msgid "Contact role saved." msgstr "" -#: ../../Zotlabs/Module/Mitem.php:180 -msgid "Submit and continue" +#: ../../Zotlabs/Module/Permcats.php:204 +msgid "Role to assign affected contacts and default role to" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:189 -msgid "Menu:" +#: ../../Zotlabs/Module/Permcats.php:204 +msgid "Role to assign affected contacts to" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:192 -msgid "Link Target" +#: ../../Zotlabs/Module/Permcats.php:234 +msgid "Assign this role to" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:195 -msgid "Edit menu" +#: ../../Zotlabs/Module/Permcats.php:236 +msgid "All my contacts" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:198 -msgid "Edit element" +#: ../../Zotlabs/Module/Permcats.php:247 +msgid "Automatically assign this role to new contacts" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:199 -msgid "Drop element" +#: ../../Zotlabs/Module/Permcats.php:249 +msgid "Role name" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:200 -msgid "New element" +#: ../../Zotlabs/Module/Permcats.php:249 +msgid "System role - not editable" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:201 -msgid "Edit this menu container" +#: ../../Zotlabs/Module/Permcats.php:250 +msgid "Deleting" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:202 -msgid "Add menu element" +#: ../../Zotlabs/Module/Permcats.php:253 ../../Zotlabs/Module/Connedit.php:713 +#: ../../Zotlabs/Module/Defperms.php:261 +msgid "inherited" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:203 -msgid "Delete this menu item" +#: ../../Zotlabs/Module/Permcats.php:255 +msgid "Role Permissions" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:204 -msgid "Edit this menu item" +#: ../../Zotlabs/Module/Permcats.php:256 +msgid "" +"Some permissions may be inherited from your channel " +"role, which have higher priority than contact role settings." msgstr "" -#: ../../Zotlabs/Module/Mitem.php:222 -msgid "Menu item not found." +#: ../../Zotlabs/Module/Menu.php:68 +msgid "Unable to update menu." msgstr "" -#: ../../Zotlabs/Module/Mitem.php:235 -msgid "Menu item deleted." +#: ../../Zotlabs/Module/Menu.php:79 +msgid "Unable to create menu." msgstr "" -#: ../../Zotlabs/Module/Mitem.php:237 -msgid "Menu item could not be deleted." +#: ../../Zotlabs/Module/Menu.php:161 ../../Zotlabs/Module/Menu.php:174 +msgid "Menu Name" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:244 -msgid "Edit Menu Element" +#: ../../Zotlabs/Module/Menu.php:161 +msgid "Unique name (not visible on webpage) - required" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:254 -msgid "Link text" +#: ../../Zotlabs/Module/Menu.php:162 ../../Zotlabs/Module/Menu.php:175 +msgid "Menu Title" msgstr "" -#: ../../Zotlabs/Module/Profile.php:106 -msgid "vcard" +#: ../../Zotlabs/Module/Menu.php:162 +msgid "Visible on webpage - leave empty for no title" msgstr "" -#: ../../Zotlabs/Module/Sharedwithme.php:105 -msgid "Files: shared with me" +#: ../../Zotlabs/Module/Menu.php:163 +msgid "Allow Bookmarks" msgstr "" -#: ../../Zotlabs/Module/Sharedwithme.php:107 -msgid "NEW" +#: ../../Zotlabs/Module/Menu.php:163 ../../Zotlabs/Module/Menu.php:222 +msgid "Menu may be used to store saved bookmarks" msgstr "" -#: ../../Zotlabs/Module/Sharedwithme.php:109 -#: ../../Zotlabs/Storage/Browser.php:380 -msgid "Last Modified" +#: ../../Zotlabs/Module/Menu.php:164 ../../Zotlabs/Module/Menu.php:225 +msgid "Submit and proceed" msgstr "" -#: ../../Zotlabs/Module/Sharedwithme.php:110 -msgid "Remove all files" +#: ../../Zotlabs/Module/Menu.php:181 +msgid "Bookmarks allowed" msgstr "" -#: ../../Zotlabs/Module/Sharedwithme.php:111 -msgid "Remove this file" +#: ../../Zotlabs/Module/Menu.php:183 +msgid "Delete this menu" msgstr "" -#: ../../Zotlabs/Module/Help.php:23 -msgid "Documentation Search" +#: ../../Zotlabs/Module/Menu.php:184 ../../Zotlabs/Module/Menu.php:219 +msgid "Edit menu contents" msgstr "" -#: ../../Zotlabs/Module/Help.php:84 -msgid "Members" +#: ../../Zotlabs/Module/Menu.php:185 +msgid "Edit this menu" msgstr "" -#: ../../Zotlabs/Module/Help.php:85 -msgid "Administrators" +#: ../../Zotlabs/Module/Menu.php:201 +msgid "Menu could not be deleted." msgstr "" -#: ../../Zotlabs/Module/Help.php:86 -msgid "Developers" +#: ../../Zotlabs/Module/Menu.php:214 +msgid "Edit Menu" msgstr "" -#: ../../Zotlabs/Module/Help.php:87 -msgid "Tutorials" +#: ../../Zotlabs/Module/Menu.php:218 +msgid "Add or remove entries to this menu" msgstr "" -#: ../../Zotlabs/Module/Help.php:98 -msgid "$Projectname Documentation" +#: ../../Zotlabs/Module/Menu.php:220 +msgid "Menu name" msgstr "" -#: ../../Zotlabs/Module/Help.php:99 -msgid "Contents" +#: ../../Zotlabs/Module/Menu.php:220 +msgid "Must be unique, only seen by you" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:67 -msgid "Import Webpage Elements" +#: ../../Zotlabs/Module/Menu.php:221 +msgid "Menu title" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:68 -msgid "Import selected" +#: ../../Zotlabs/Module/Menu.php:221 +msgid "Menu title as seen by others" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:91 -msgid "Export Webpage Elements" +#: ../../Zotlabs/Module/Menu.php:222 +msgid "Allow bookmarks" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:92 -msgid "Export selected" +#: ../../Zotlabs/Module/Mood.php:153 +msgid "Set your current mood and tell your friends" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:260 -msgid "Actions" +#: ../../Zotlabs/Module/Embedphotos.php:171 ../../Zotlabs/Module/Photos.php:782 +#: ../../Zotlabs/Module/Photos.php:1323 ../../Zotlabs/Widget/Portfolio.php:91 +#: ../../Zotlabs/Widget/Album.php:84 +msgid "View Photo" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:261 -msgid "Page Link" +#: ../../Zotlabs/Module/Embedphotos.php:187 ../../Zotlabs/Module/Photos.php:813 +#: ../../Zotlabs/Widget/Portfolio.php:112 ../../Zotlabs/Widget/Album.php:101 +msgid "Edit Album" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:262 -msgid "Page Title" +#: ../../Zotlabs/Module/Rmagic.php:46 +msgid "Authentication failed." msgstr "" -#: ../../Zotlabs/Module/Webpages.php:263 ../../Zotlabs/Module/Blocks.php:157 -#: ../../Zotlabs/Module/Menu.php:178 ../../Zotlabs/Module/Layouts.php:191 -msgid "Created" +#: ../../Zotlabs/Module/Go.php:21 +msgid "This page is available only to site members" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:264 ../../Zotlabs/Module/Blocks.php:158 -#: ../../Zotlabs/Module/Menu.php:179 ../../Zotlabs/Module/Layouts.php:192 -msgid "Edited" +#: ../../Zotlabs/Module/Go.php:27 +#: ../../Zotlabs/Widget/Channel_activities.php:29 +msgid "Welcome" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:292 -msgid "Invalid file type." +#: ../../Zotlabs/Module/Go.php:29 +msgid "What would you like to do?" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:304 -msgid "Error opening zip file" +#: ../../Zotlabs/Module/Go.php:31 +msgid "" +"Please bookmark this page if you would like to return to it in the future" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:315 -msgid "Invalid folder path." +#: ../../Zotlabs/Module/Go.php:35 +msgid "Upload a profile photo" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:342 -msgid "No webpage elements detected." +#: ../../Zotlabs/Module/Go.php:36 +msgid "Upload a cover photo" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:417 -msgid "Import complete." +#: ../../Zotlabs/Module/Go.php:37 +msgid "Edit your default profile" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:14 -#: ../../Zotlabs/Module/Filestorage.php:53 -msgid "Deprecated!" +#: ../../Zotlabs/Module/Go.php:38 ../../Zotlabs/Widget/Newmember.php:46 +msgid "View friend suggestions" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:157 -msgid "Permission Denied." +#: ../../Zotlabs/Module/Go.php:39 +msgid "View the channel directory" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:190 -msgid "Edit file permissions" +#: ../../Zotlabs/Module/Go.php:40 +msgid "View/edit your channel settings" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:203 -msgid "Include all files and sub folders" +#: ../../Zotlabs/Module/Go.php:41 +msgid "View the site or project documentation" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:204 -msgid "Return to file list" +#: ../../Zotlabs/Module/Go.php:42 +msgid "Visit your channel homepage" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:206 -#: ../../Zotlabs/Storage/Browser.php:386 -msgid "Copy/paste this code to attach file to a post" +#: ../../Zotlabs/Module/Go.php:43 +msgid "" +"View your connections and/or add somebody whose address you already know" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:207 -#: ../../Zotlabs/Storage/Browser.php:387 -msgid "Copy/paste this URL to link file from a web page" +#: ../../Zotlabs/Module/Go.php:44 +msgid "" +"View your personal stream (this may be empty until you add some connections)" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:209 -msgid "Share this file" +#: ../../Zotlabs/Module/Go.php:52 +msgid "View the public stream. Warning: this content is not moderated" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:210 -msgid "Show URL to this file" +#: ../../Zotlabs/Module/Channel.php:219 +msgid "Insufficient permissions. Request redirected to profile page." msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:211 -#: ../../Zotlabs/Storage/Browser.php:552 -msgid "Show in your contacts shared folder" +#: ../../Zotlabs/Module/Channel.php:234 ../../Zotlabs/Module/Network.php:170 +msgid "Search Results For:" msgstr "" -#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 -msgid "Tag removed" +#: ../../Zotlabs/Module/Lostpass.php:19 +msgid "No valid account found." msgstr "" -#: ../../Zotlabs/Module/Tagrm.php:123 -msgid "Remove Item Tag" +#: ../../Zotlabs/Module/Lostpass.php:33 +msgid "Password reset request issued. Check your email." msgstr "" -#: ../../Zotlabs/Module/Tagrm.php:125 -msgid "Select a tag to remove: " +#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:108 +#, php-format +msgid "Site Member (%s)" msgstr "" -#: ../../Zotlabs/Module/Connect.php:65 ../../Zotlabs/Module/Connect.php:118 -msgid "Continue" +#: ../../Zotlabs/Module/Lostpass.php:44 ../../Zotlabs/Module/Lostpass.php:49 +#, php-format +msgid "Password reset requested at %s" msgstr "" -#: ../../Zotlabs/Module/Connect.php:99 -msgid "Premium Channel Setup" +#: ../../Zotlabs/Module/Lostpass.php:68 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." msgstr "" -#: ../../Zotlabs/Module/Connect.php:101 -msgid "Enable premium channel connection restrictions" +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your password has been reset as requested." msgstr "" -#: ../../Zotlabs/Module/Connect.php:102 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." +#: ../../Zotlabs/Module/Lostpass.php:93 +msgid "Your new password is" msgstr "" -#: ../../Zotlabs/Module/Connect.php:104 ../../Zotlabs/Module/Connect.php:124 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "Save or copy your new password - and then" msgstr "" -#: ../../Zotlabs/Module/Connect.php:105 -msgid "" -"Potential connections will then see the following text before proceeding:" +#: ../../Zotlabs/Module/Lostpass.php:95 +msgid "click here to login" msgstr "" -#: ../../Zotlabs/Module/Connect.php:106 ../../Zotlabs/Module/Connect.php:127 +#: ../../Zotlabs/Module/Lostpass.php:96 msgid "" -"By continuing, I certify that I have complied with any instructions provided " -"on this page." +"Your password may be changed from the Settings page after " +"successful login." msgstr "" -#: ../../Zotlabs/Module/Connect.php:115 -msgid "(No specific instructions have been provided by the channel owner.)" +#: ../../Zotlabs/Module/Lostpass.php:117 +#, php-format +msgid "Your password has changed at %s" msgstr "" -#: ../../Zotlabs/Module/Connect.php:123 -msgid "Restricted or Premium Channel" +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Forgot your Password?" msgstr "" -#: ../../Zotlabs/Module/Cloud.php:120 -msgid "Not found" +#: ../../Zotlabs/Module/Lostpass.php:131 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." msgstr "" -#: ../../Zotlabs/Module/Cloud.php:130 -msgid "Unknown error" +#: ../../Zotlabs/Module/Lostpass.php:132 +msgid "Email Address" msgstr "" -#: ../../Zotlabs/Module/Share.php:120 -msgid "Post repeated" +#: ../../Zotlabs/Module/Lostpass.php:133 ../../Zotlabs/Module/Pdledit.php:76 +#: ../../Zotlabs/Module/Pdledit.php:93 +msgid "Reset" msgstr "" -#: ../../Zotlabs/Module/Acl.php:370 -msgid "network" +#: ../../Zotlabs/Module/Import.php:70 +msgid "Nothing to import." msgstr "" -#: ../../Zotlabs/Module/Editpost.php:38 ../../Zotlabs/Module/Editpost.php:43 -msgid "Item is not editable" +#: ../../Zotlabs/Module/Import.php:86 ../../Zotlabs/Module/Import.php:100 +msgid "Unable to download data from old server" msgstr "" -#: ../../Zotlabs/Module/Editpost.php:110 ../../Zotlabs/Module/Rpost.php:218 -msgid "Edit post" +#: ../../Zotlabs/Module/Import.php:163 +#, php-format +msgid "Your service plan only allows %d channels." msgstr "" -#: ../../Zotlabs/Module/Tagger.php:50 -msgid "Post not found." +#: ../../Zotlabs/Module/Import.php:190 +msgid "No channel. Import failed." msgstr "" -#: ../../Zotlabs/Module/Tagger.php:121 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" +#: ../../Zotlabs/Module/Import.php:557 +msgid "" +"Automatic content and files import was not possible due to API version " +"incompatiblity. Please import content and files manually!" msgstr "" -#: ../../Zotlabs/Module/Authorize.php:17 -msgid "Unknown App" +#: ../../Zotlabs/Module/Import.php:585 +msgid "You must be logged in to use this feature." msgstr "" -#: ../../Zotlabs/Module/Authorize.php:29 -msgid "Authorize" +#: ../../Zotlabs/Module/Import.php:592 +msgid "Channel Import" msgstr "" -#: ../../Zotlabs/Module/Authorize.php:30 -#, php-format -msgid "Do you authorize the app %s to access your channel data?" +#: ../../Zotlabs/Module/Import.php:593 +msgid "" +"Use this form to import an existing channel from a different server/hub. You " +"may retrieve the channel identity from the old server/hub via the network or " +"provide an export file." msgstr "" -#: ../../Zotlabs/Module/Authorize.php:33 -#: ../../Zotlabs/Module/Admin/Accounts.php:319 -msgid "Deny" +#: ../../Zotlabs/Module/Import.php:595 +msgid "Or provide the old server/hub details" msgstr "" -#: ../../Zotlabs/Module/Admin/Queue.php:45 -msgid "Queue Statistics" +#: ../../Zotlabs/Module/Import.php:597 +msgid "Your old identity address (xyz@example.com)" msgstr "" -#: ../../Zotlabs/Module/Admin/Queue.php:46 -msgid "Total Entries" +#: ../../Zotlabs/Module/Import.php:598 +msgid "Your old login email address" msgstr "" -#: ../../Zotlabs/Module/Admin/Queue.php:47 -msgid "Priority" +#: ../../Zotlabs/Module/Import.php:599 +msgid "Your old login password" msgstr "" -#: ../../Zotlabs/Module/Admin/Queue.php:48 -msgid "Destination URL" +#: ../../Zotlabs/Module/Import.php:600 +msgid "Import your items and files (limited by available memory)" msgstr "" -#: ../../Zotlabs/Module/Admin/Queue.php:49 -msgid "Mark hub permanently offline" +#: ../../Zotlabs/Module/Import.php:602 +msgid "" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be " +"able to post from either location, but only one can be marked as the primary " +"location for files, photos, and media." msgstr "" -#: ../../Zotlabs/Module/Admin/Queue.php:50 -msgid "Retry delivery to this hub" +#: ../../Zotlabs/Module/Import.php:604 +msgid "Make this hub my primary location" msgstr "" -#: ../../Zotlabs/Module/Admin/Queue.php:51 -msgid "Empty queue for this hub" +#: ../../Zotlabs/Module/Import.php:605 +msgid "Move this channel (disable all previous locations)" msgstr "" -#: ../../Zotlabs/Module/Admin/Queue.php:52 -msgid "Last known contact" +#: ../../Zotlabs/Module/Import.php:606 +msgid "Use this channel nickname instead of the one provided" msgstr "" -#: ../../Zotlabs/Module/Admin/Themes.php:26 -msgid "Theme settings updated." +#: ../../Zotlabs/Module/Import.php:606 +msgid "" +"Leave blank to keep your existing channel nickname. You will be randomly " +"assigned a similar nickname if either name is already allocated on this site." msgstr "" -#: ../../Zotlabs/Module/Admin/Themes.php:61 -msgid "No themes found." +#: ../../Zotlabs/Module/Import.php:608 +msgid "" +"This process may take several minutes to complete. Please submit the form " +"only once and leave this page open until finished." msgstr "" -#: ../../Zotlabs/Module/Admin/Themes.php:95 -#: ../../Zotlabs/Module/Admin/Addons.php:311 -msgid "Disable" +#: ../../Zotlabs/Module/Viewconnections.php:65 +msgid "No connections." msgstr "" -#: ../../Zotlabs/Module/Admin/Themes.php:97 -#: ../../Zotlabs/Module/Admin/Addons.php:314 -msgid "Enable" +#: ../../Zotlabs/Module/Viewconnections.php:105 +#, php-format +msgid "Visit %s's profile [%s]" msgstr "" -#: ../../Zotlabs/Module/Admin/Themes.php:116 -msgid "Screenshot" +#: ../../Zotlabs/Module/Viewconnections.php:135 +msgid "View Connections" msgstr "" -#: ../../Zotlabs/Module/Admin/Themes.php:122 -#: ../../Zotlabs/Module/Admin/Themes.php:156 -#: ../../Zotlabs/Module/Admin/Security.php:98 -#: ../../Zotlabs/Module/Admin/Accounts.php:307 -#: ../../Zotlabs/Module/Admin/Site.php:411 -#: ../../Zotlabs/Module/Admin/Logs.php:82 -#: ../../Zotlabs/Module/Admin/Channels.php:145 -#: ../../Zotlabs/Module/Admin/Addons.php:342 -#: ../../Zotlabs/Module/Admin/Addons.php:440 ../../Zotlabs/Module/Admin.php:140 -msgid "Administration" +#: ../../Zotlabs/Module/Rpost.php:219 ../../Zotlabs/Module/Editpost.php:113 +msgid "Edit post" msgstr "" -#: ../../Zotlabs/Module/Admin/Themes.php:124 -#: ../../Zotlabs/Module/Admin/Addons.php:344 -msgid "Toggle" +#: ../../Zotlabs/Module/Tokens.php:94 +#, php-format +msgid "This channel is limited to %d tokens" msgstr "" -#: ../../Zotlabs/Module/Admin/Themes.php:134 -#: ../../Zotlabs/Module/Admin/Addons.php:352 -msgid "Author: " +#: ../../Zotlabs/Module/Tokens.php:100 +msgid "Name and Password are required." msgstr "" -#: ../../Zotlabs/Module/Admin/Themes.php:135 -#: ../../Zotlabs/Module/Admin/Addons.php:353 -msgid "Maintainer: " +#: ../../Zotlabs/Module/Tokens.php:215 +msgid "Token saved." msgstr "" -#: ../../Zotlabs/Module/Admin/Themes.php:162 -msgid "[Experimental]" +#: ../../Zotlabs/Module/Tokens.php:261 +msgid "" +"Use this form to create temporary access identifiers to share things with " +"non-members. These identities may be used in privacy groups and visitors may " +"login using these credentials to access private content." msgstr "" -#: ../../Zotlabs/Module/Admin/Themes.php:163 -msgid "[Unsupported]" +#: ../../Zotlabs/Module/Tokens.php:274 +msgid "Please select a role for this guest!" msgstr "" -#: ../../Zotlabs/Module/Admin/Features.php:56 -#, php-format -msgid "Lock feature %s" +#: ../../Zotlabs/Module/Tokens.php:287 +msgid "Select a role for this guest" msgstr "" -#: ../../Zotlabs/Module/Admin/Features.php:64 -msgid "Manage Additional Features" +#: ../../Zotlabs/Module/Tokens.php:291 +msgid "Login Name" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:89 -msgid "" -"By default, unfiltered HTML is allowed in embedded media. This is inherently " -"insecure." +#: ../../Zotlabs/Module/Tokens.php:292 +msgid "Login Password" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:92 -msgid "" -"The recommended setting is to only allow unfiltered HTML from the following " -"sites:" +#: ../../Zotlabs/Module/Tokens.php:293 +msgid "Expires (yyyy-mm-dd)" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:93 -msgid "" -"https://youtube.com/
https://www.youtube.com/
https://youtu.be/" -"
https://vimeo.com/
https://soundcloud.com/
" +#: ../../Zotlabs/Module/Attach_edit.php:69 +#: ../../Zotlabs/Module/Filestorage.php:109 +msgid "File not found." msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:94 -msgid "" -"All other embedded content will be filtered, unless " -"embedded content from that site is explicitly blocked." +#: ../../Zotlabs/Module/Attach_edit.php:118 +msgid "Can not copy folder into itself." msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:101 -msgid "Block public" +#: ../../Zotlabs/Module/Attach_edit.php:131 +#, php-format +msgid "Can not move folder \"%s\" into itself." msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:101 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently authenticated." +#: ../../Zotlabs/Module/Help.php:25 +msgid "Documentation Search" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:102 -msgid "Provide a cloud root directory" +#: ../../Zotlabs/Module/Help.php:86 +msgid "Members" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:102 -msgid "" -"The cloud root directory lists all channel names which provide public files" +#: ../../Zotlabs/Module/Help.php:87 +msgid "Administrators" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:103 -msgid "Show total disk space available to cloud uploads" +#: ../../Zotlabs/Module/Help.php:88 +msgid "Developers" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:104 -msgid "Set \"Transport Security\" HTTP header" +#: ../../Zotlabs/Module/Help.php:89 +msgid "Tutorials" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:105 -msgid "Set \"Content Security Policy\" HTTP header" +#: ../../Zotlabs/Module/Help.php:101 +msgid "$Projectname Documentation" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:106 -msgid "Allowed email domains" +#: ../../Zotlabs/Module/Help.php:102 +msgid "Contents" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:106 -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" +#: ../../Zotlabs/Module/Pconfig.php:33 ../../Zotlabs/Module/Pconfig.php:69 +msgid "This setting requires special processing and editing has been blocked." msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:107 -msgid "Not allowed email domains" +#: ../../Zotlabs/Module/Pconfig.php:58 +msgid "Configuration Editor" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:107 +#: ../../Zotlabs/Module/Pconfig.php:59 msgid "" -"Comma separated list of domains which are not allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains, unless allowed domains have been defined." +"Warning: Changing some settings could render your channel inoperable. Please " +"leave this page unless you are comfortable with and knowledgeable about how " +"to correctly use this feature." msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:108 -msgid "Allow communications only from these sites" +#: ../../Zotlabs/Module/Chat.php:193 +msgid "Room not found" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:108 -msgid "" -"One site per line. Leave empty to allow communication from anywhere by " -"default" +#: ../../Zotlabs/Module/Chat.php:209 +msgid "Leave Room" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:109 -msgid "Block communications from these sites" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:110 -msgid "Allow communications only from these channels" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:110 -msgid "" -"One channel (hash) per line. Leave empty to allow from any channel by default" +#: ../../Zotlabs/Module/Chat.php:210 +msgid "Delete Room" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:111 -msgid "Block communications from these channels" +#: ../../Zotlabs/Module/Chat.php:211 +msgid "I am away right now" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:112 -msgid "Only allow embeds from secure (SSL) websites and links." +#: ../../Zotlabs/Module/Chat.php:212 +msgid "I am online" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:113 -msgid "Allow unfiltered embedded HTML content only from these domains" +#: ../../Zotlabs/Module/Chat.php:214 +msgid "Bookmark this room" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:113 -msgid "One site per line. By default embedded content is filtered." +#: ../../Zotlabs/Module/Chat.php:237 +msgid "New Chatroom" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:114 -msgid "Block embedded HTML from these domains" +#: ../../Zotlabs/Module/Chat.php:238 +msgid "Chatroom name" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:115 -msgid "Allow SVG thumbnails in file browser" +#: ../../Zotlabs/Module/Chat.php:239 +msgid "Expiration of chats (minutes)" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:115 -msgid "WARNING: SVG images may contain malicious code." +#: ../../Zotlabs/Module/Chat.php:255 +#, php-format +msgid "%1$s's Chatrooms" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:116 -msgid "Allow embedded (inline) PDF files" +#: ../../Zotlabs/Module/Chat.php:260 +msgid "No chatrooms available" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:128 -#, php-format -msgid "%s account blocked/unblocked" -msgid_plural "%s account blocked/unblocked" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:135 -#, php-format -msgid "%s account deleted" -msgid_plural "%s accounts deleted" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:171 -msgid "Account not found" +#: ../../Zotlabs/Module/Chat.php:261 +msgid "Add Room" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:192 -#, php-format -msgid "Account '%s' blocked" +#: ../../Zotlabs/Module/Chat.php:264 +msgid "Expiration" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:200 -#, php-format -msgid "Account '%s' unblocked" +#: ../../Zotlabs/Module/Chat.php:265 +msgid "min" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:240 -msgid "Unverified" +#: ../../Zotlabs/Module/Network.php:106 +msgid "No such group" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:243 -msgid "Expired" +#: ../../Zotlabs/Module/Network.php:158 +msgid "No such channel" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:310 -msgid "Show verified registrations" +#: ../../Zotlabs/Module/Network.php:246 +msgid "Privacy group is empty" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:310 -msgid "Show all registrations" +#: ../../Zotlabs/Module/Network.php:256 +msgid "Privacy group: " msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:312 -msgid "Select toggle" +#: ../../Zotlabs/Module/Dreport.php:38 +msgid "Invalid message" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:313 -msgid "Deny selected" +#: ../../Zotlabs/Module/Dreport.php:68 +msgid "no results" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:314 -msgid "Approve selected" +#: ../../Zotlabs/Module/Dreport.php:82 +msgid "channel sync processed" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:315 -msgid "All registrations" +#: ../../Zotlabs/Module/Dreport.php:86 +msgid "queued" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:315 -msgid "Verified registrations waiting for approval" +#: ../../Zotlabs/Module/Dreport.php:90 +msgid "posted" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:316 -msgid "Request date" +#: ../../Zotlabs/Module/Dreport.php:94 +msgid "accepted for delivery" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:316 -msgid "Requests" +#: ../../Zotlabs/Module/Dreport.php:98 +msgid "updated" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:317 -msgid "No registrations available" +#: ../../Zotlabs/Module/Dreport.php:102 +msgid "update ignored" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:317 -msgid "No verified registrations available" +#: ../../Zotlabs/Module/Dreport.php:105 +msgid "permission denied" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:321 -#: ../../Zotlabs/Module/Contactedit.php:639 -#: ../../Zotlabs/Module/Connedit.php:508 -msgid "Block" +#: ../../Zotlabs/Module/Dreport.php:109 +msgid "recipient not found" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:322 -#: ../../Zotlabs/Module/Contactedit.php:639 -#: ../../Zotlabs/Module/Connedit.php:508 -msgid "Unblock" +#: ../../Zotlabs/Module/Dreport.php:129 +#, php-format +msgid "Delivery report for %1$s" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:323 -msgid "Verified" +#: ../../Zotlabs/Module/Dreport.php:134 +msgid "Redeliver" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:324 -msgid "Not yet verified" +#: ../../Zotlabs/Module/Affinity.php:35 +msgid "Affinity Tool settings updated." msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:329 -msgid "ID" +#: ../../Zotlabs/Module/Affinity.php:54 +msgid "" +"The numbers below represent the minimum and maximum slider default positions " +"for your network/stream page as a percentage." msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:331 -msgid "All channels" +#: ../../Zotlabs/Module/Affinity.php:61 +msgid "Default maximum affinity level" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:332 -msgid "Register date" +#: ../../Zotlabs/Module/Affinity.php:61 +msgid "0-99 default 99" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:333 -msgid "Last login" +#: ../../Zotlabs/Module/Affinity.php:67 +msgid "Default minimum affinity level" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:334 -msgid "Expires" +#: ../../Zotlabs/Module/Affinity.php:67 +msgid "0-99 - default 0" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:335 -#: ../../Zotlabs/Module/Admin/Account_edit.php:72 -msgid "Service class" +#: ../../Zotlabs/Module/Affinity.php:73 +msgid "Persistent affinity levels" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:337 +#: ../../Zotlabs/Module/Affinity.php:73 msgid "" -"Selected accounts will be deleted!\\n\\nEverything these accounts had posted " -"on this site will be permanently deleted!\\n\\nAre you sure?" +"If disabled the max and min levels will be reset to default after page reload" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:338 -msgid "" -"The account {0} will be deleted!\\n\\nEverything this account has posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" +#: ../../Zotlabs/Module/Affinity.php:81 +msgid "Affinity Tool Settings" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:347 -msgid "Message" +#: ../../Zotlabs/Module/Dircensor.php:42 +msgid "Entry censored" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:112 -msgid "Invalid input" +#: ../../Zotlabs/Module/Dircensor.php:45 +msgid "Entry uncensored" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:132 -msgid "Errors" +#: ../../Zotlabs/Module/Subthread.php:128 +#, php-format +msgid "%1$s is following %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:225 -msgid "Site settings updated." +#: ../../Zotlabs/Module/Subthread.php:130 +#, php-format +msgid "%1$s stopped following %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:262 -#: ../../Zotlabs/Module/Settings/Display.php:116 -#, php-format -msgid "%s - (Incompatible)" +#: ../../Zotlabs/Module/Sources.php:41 +msgid "Failed to create source. No channel selected." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:269 -msgid "mobile" +#: ../../Zotlabs/Module/Sources.php:57 +msgid "Source created." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:271 -msgid "experimental" +#: ../../Zotlabs/Module/Sources.php:70 +msgid "Source updated." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:273 -msgid "unsupported" +#: ../../Zotlabs/Module/Sources.php:99 +msgid "*" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:320 -msgid "Yes - with approval" +#: ../../Zotlabs/Module/Sources.php:106 +msgid "Manage remote sources of content for your channel." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:328 -msgid "My site is not a public server" +#: ../../Zotlabs/Module/Sources.php:107 ../../Zotlabs/Module/Sources.php:117 +msgid "New Source" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:329 -msgid "My site has paid access only" +#: ../../Zotlabs/Module/Sources.php:118 ../../Zotlabs/Module/Sources.php:152 +msgid "" +"Import all or selected content from the following channel into this channel " +"and distribute it according to your channel settings." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:330 -msgid "My site has free access only" +#: ../../Zotlabs/Module/Sources.php:119 ../../Zotlabs/Module/Sources.php:153 +msgid "Only import content with these words (one per line)" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:331 -msgid "My site offers free accounts with optional paid upgrades" +#: ../../Zotlabs/Module/Sources.php:119 ../../Zotlabs/Module/Sources.php:153 +msgid "Leave blank to import all public content" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:349 -msgid "Default permission role for new accounts" +#: ../../Zotlabs/Module/Sources.php:120 ../../Zotlabs/Module/Sources.php:159 +msgid "Channel Name" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:349 +#: ../../Zotlabs/Module/Sources.php:121 ../../Zotlabs/Module/Sources.php:156 msgid "" -"This role will be used for the first channel created after registration." +"Add the following categories to posts imported from this source (comma " +"separated)" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:356 ../../Zotlabs/Module/Invite.php:397 -msgid "Minute(s)" +#: ../../Zotlabs/Module/Sources.php:122 ../../Zotlabs/Module/Sources.php:157 +msgid "Resend posts with this channel as author" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:357 ../../Zotlabs/Module/Invite.php:398 -msgid "Hour(s)" +#: ../../Zotlabs/Module/Sources.php:122 ../../Zotlabs/Module/Sources.php:157 +msgid "Copyrights may apply" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:358 ../../Zotlabs/Module/Invite.php:399 -msgid "Day(s)" +#: ../../Zotlabs/Module/Sources.php:142 ../../Zotlabs/Module/Sources.php:172 +msgid "Source not found." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:359 -msgid "Week(s)" +#: ../../Zotlabs/Module/Sources.php:149 +msgid "Edit Source" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:360 -msgid "Month(s)" +#: ../../Zotlabs/Module/Sources.php:150 +msgid "Delete Source" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:361 -msgid "Year(s)" +#: ../../Zotlabs/Module/Sources.php:180 +msgid "Source removed" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:369 -msgid "Register verification delay" +#: ../../Zotlabs/Module/Sources.php:182 +msgid "Unable to remove source." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:372 -msgid "Time to wait before a registration can be verified" +#: ../../Zotlabs/Module/Suggest.php:52 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:375 -#: ../../Zotlabs/Module/Admin/Site.php:397 ../../Zotlabs/Module/Invite.php:408 -msgid "duration up from now" +#: ../../Zotlabs/Module/Suggest.php:71 ../../Zotlabs/Widget/Suggestions.php:53 +msgid "Ignore/Hide" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:391 -msgid "Register verification expiration time" +#: ../../Zotlabs/Module/Changeaddr.php:35 +msgid "" +"Channel name changes are not allowed within 48 hours of changing the account " +"password." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:394 -msgid "Time before an unverified registration will expire" +#: ../../Zotlabs/Module/Changeaddr.php:77 +msgid "Change channel nickname/address" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:417 -msgid "File upload" +#: ../../Zotlabs/Module/Changeaddr.php:78 +msgid "Any/all connections on other networks will be lost!" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:418 -msgid "Policies" +#: ../../Zotlabs/Module/Changeaddr.php:80 +msgid "New channel address" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:425 -msgid "Banner/Logo" +#: ../../Zotlabs/Module/Changeaddr.php:81 +msgid "Rename Channel" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:425 -msgid "Unfiltered HTML/CSS/JS is allowed" +#: ../../Zotlabs/Module/Regate.php:84 +msgid "Email resent" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:426 -msgid "Administrator Information" +#: ../../Zotlabs/Module/Regate.php:84 +msgid "Email resend failed" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:426 -msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" +#: ../../Zotlabs/Module/Regate.php:109 +msgid "Verification successful" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:427 ../../Zotlabs/Module/Siteinfo.php:24 -msgid "Site Information" +#: ../../Zotlabs/Module/Regate.php:153 +msgid "Account successfull created" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:427 -msgid "" -"Publicly visible description of this site. Displayed on siteinfo page. " -"BBCode can be used here" +#: ../../Zotlabs/Module/Regate.php:211 +msgid "Channel successfull created" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:428 -msgid "System language" +#: ../../Zotlabs/Module/Regate.php:217 +msgid "Automatic channel creation failed. Please create a channel." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:429 -msgid "System theme" +#: ../../Zotlabs/Module/Regate.php:229 +msgid "Account creation error" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:429 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" +#: ../../Zotlabs/Module/Regate.php:241 +msgid "Verify failed" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:432 -msgid "Allow Feeds as Connections" +#: ../../Zotlabs/Module/Regate.php:246 +msgid "Token verification failed" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:432 -msgid "(Heavy system resource usage)" +#: ../../Zotlabs/Module/Regate.php:251 +msgid "Request not inside time frame" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:433 -msgid "Maximum image size" +#: ../../Zotlabs/Module/Regate.php:257 ../../Zotlabs/Module/Regate.php:287 +msgid "Identity unknown" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:433 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." +#: ../../Zotlabs/Module/Regate.php:263 +msgid "dId2 mistaken" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:434 -msgid "Minimum age" +#: ../../Zotlabs/Module/Regate.php:291 +msgid "Your Registration ID" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:434 -msgid "Minimum age (in years) for who may register on this site." +#: ../../Zotlabs/Module/Regate.php:304 ../../Zotlabs/Module/Regate.php:396 +#: ../../Zotlabs/Module/Regate.php:428 +msgid "Registration verification" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:435 -msgid "Which best describes the types of account offered by this hub?" +#: ../../Zotlabs/Module/Regate.php:311 ../../Zotlabs/Module/Regate.php:433 +msgid "Hold on, you can start verification in" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:435 -msgid "This is displayed on the public server site list." +#: ../../Zotlabs/Module/Regate.php:312 +msgid "Please remember your verification token for ID" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:441 -msgid "Register text" +#: ../../Zotlabs/Module/Regate.php:314 +msgid "Token validity" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:443 -msgid "This text will be displayed prominently at the registration page" +#: ../../Zotlabs/Module/Regate.php:350 +msgid "Resend email" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:447 -msgid "Does this site allow new member registration?" +#: ../../Zotlabs/Module/Regate.php:355 +msgid "Registration status" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:454 -msgid "Configure the registration open days/hours" +#: ../../Zotlabs/Module/Regate.php:358 +msgid "Verification successful!" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:456 -msgid "Empty or '-:-' value will keep registration open 24/7 (default)" +#: ../../Zotlabs/Module/Regate.php:359 +msgid "Your login ID is" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:457 +#: ../../Zotlabs/Module/Regate.php:360 msgid "" -"Weekdays and hours must be separated by colon ':', From-To ranges with a " -"dash `-` example: 1:800-1200" +"After your account has been approved by our administrator you will be able " +"to login with your login ID and your provided password." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:458 -msgid "" -"Weekday:Hour pairs must be separated by space ' ' example: 1:900-1700 " -"2:900-1700" +#: ../../Zotlabs/Module/Regate.php:372 +msgid "Registration request revoked" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:459 -msgid "" -"From-To ranges must be separated by comma ',' example: 1:800-1200,1300-1700 " -"or 1-2,4-5:900-1700" +#: ../../Zotlabs/Module/Regate.php:373 +msgid "Sorry for any inconvience. Thank you for your response." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:460 -msgid "Advanced examples:" +#: ../../Zotlabs/Module/Regate.php:397 +msgid "Please enter your verification token for ID" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:460 -#: ../../Zotlabs/Module/Settings/Channel.php:182 -msgid "or" +#: ../../Zotlabs/Module/Regate.php:398 ../../Zotlabs/Module/Regate.php:425 +msgid "Please check your email!" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:461 -msgid "Check your configuration" +#: ../../Zotlabs/Module/Regate.php:408 +msgid "Verification token" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:465 -msgid "Max account registrations per day" +#: ../../Zotlabs/Module/Regate.php:419 +msgid "ID expired" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:467 -msgid "Unlimited if zero or no value - default 50" +#: ../../Zotlabs/Module/Regate.php:434 +msgid "You will require the verification token for ID" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:471 -msgid "Max account registrations from same IP" +#: ../../Zotlabs/Module/Regate.php:443 +msgid "Unknown or expired ID" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:473 -msgid "Unlimited if zero or no value - default 3" +#: ../../Zotlabs/Module/Regate.php:454 +msgid "dId2 malformed" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:479 -msgid "Auto channel create" +#: ../../Zotlabs/Module/Chanview.php:132 +msgid "toggle full screen mode" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:481 -msgid "" -"If disabled the channel will be created in a separate step during the " -"registration process" +#: ../../Zotlabs/Module/Connedit.php:80 ../../Zotlabs/Module/Contactedit.php:78 +#: ../../Zotlabs/Module/Defperms.php:67 +msgid "Could not access contact record." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:485 -msgid "Require invite code" +#: ../../Zotlabs/Module/Connedit.php:101 +#: ../../Zotlabs/Module/Contactedit.php:107 +msgid "Could not locate selected profile." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:490 -msgid "Allow invite code" +#: ../../Zotlabs/Module/Connedit.php:171 +msgid "Connection updated." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:495 -msgid "Require email address" +#: ../../Zotlabs/Module/Connedit.php:173 +msgid "Failed to update connection record." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:497 -msgid "The provided email address will be verified (recommended)" +#: ../../Zotlabs/Module/Connedit.php:215 +#: ../../Zotlabs/Module/Contactedit.php:192 +msgid "is now connected to" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:501 -msgid "Abandon account after x days" +#: ../../Zotlabs/Module/Connedit.php:320 +msgid "Could not access address book record." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:503 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." +#: ../../Zotlabs/Module/Connedit.php:368 +msgid "Refresh failed - channel is currently unavailable." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:508 -msgid "Site homepage to show visitors (default: login box)" +#: ../../Zotlabs/Module/Connedit.php:382 ../../Zotlabs/Module/Connedit.php:391 +#: ../../Zotlabs/Module/Connedit.php:400 ../../Zotlabs/Module/Connedit.php:409 +#: ../../Zotlabs/Module/Connedit.php:422 +msgid "Unable to set address book parameters." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:508 -msgid "" -"example: 'pubstream' to show public stream, 'page/sys/home' to show a system " -"webpage called 'home' or 'include:home.html' to include a file." +#: ../../Zotlabs/Module/Connedit.php:441 +msgid "Connection has been removed." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:509 -msgid "Preserve site homepage URL" +#: ../../Zotlabs/Module/Connedit.php:483 +#, php-format +msgid "View %s's profile" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:509 -msgid "" -"Present the site homepage in a frame at the original location instead of " -"redirecting" +#: ../../Zotlabs/Module/Connedit.php:487 +#: ../../Zotlabs/Module/Contactedit.php:628 +msgid "Refresh Permissions" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:510 -msgid "Allowed friend domains" +#: ../../Zotlabs/Module/Connedit.php:490 +#: ../../Zotlabs/Module/Contactedit.php:629 +msgid "Fetch updated permissions" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:510 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" +#: ../../Zotlabs/Module/Connedit.php:494 +#: ../../Zotlabs/Module/Contactedit.php:633 +msgid "Refresh Photo" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:511 -msgid "Force publish" +#: ../../Zotlabs/Module/Connedit.php:497 +#: ../../Zotlabs/Module/Contactedit.php:634 +msgid "Fetch updated photo" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:511 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." +#: ../../Zotlabs/Module/Connedit.php:504 +msgid "View recent posts and comments" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:512 -msgid "Import Public Streams" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:512 -msgid "" -"Import and allow access to public content pulled from other sites. Warning: " -"this content is unmoderated." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:513 -msgid "Site only Public Streams" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:513 -msgid "" -"Allow access to public content originating only from this site if Imported " -"Public Streams are disabled." +#: ../../Zotlabs/Module/Connedit.php:508 +#: ../../Zotlabs/Module/Admin/Accounts.php:322 +#: ../../Zotlabs/Module/Contactedit.php:639 +msgid "Unblock" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:514 -msgid "Allow anybody on the internet to access the Public streams" +#: ../../Zotlabs/Module/Connedit.php:508 +#: ../../Zotlabs/Module/Admin/Accounts.php:321 +#: ../../Zotlabs/Module/Contactedit.php:639 +msgid "Block" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:514 -msgid "" -"Disable to require authentication before viewing. Warning: this content is " -"unmoderated." +#: ../../Zotlabs/Module/Connedit.php:511 +#: ../../Zotlabs/Module/Contactedit.php:641 +msgid "Block (or Unblock) all communications with this connection" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:515 -msgid "Only import Public stream posts with this text" +#: ../../Zotlabs/Module/Connedit.php:512 +#: ../../Zotlabs/Module/Contactedit.php:642 +msgid "This connection is blocked!" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:515 -#: ../../Zotlabs/Module/Admin/Site.php:516 -#: ../../Zotlabs/Module/Contactedit.php:423 -#: ../../Zotlabs/Module/Contactedit.php:424 -#: ../../Zotlabs/Module/Connedit.php:706 ../../Zotlabs/Module/Connedit.php:707 -msgid "" -"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " -"all posts" +#: ../../Zotlabs/Module/Connedit.php:516 +#: ../../Zotlabs/Module/Contactedit.php:646 +msgid "Unignore" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:516 -msgid "Do not import Public stream posts with this text" +#: ../../Zotlabs/Module/Connedit.php:519 +#: ../../Zotlabs/Module/Contactedit.php:648 +msgid "Ignore (or Unignore) all inbound communications from this connection" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:519 -msgid "Login on Homepage" +#: ../../Zotlabs/Module/Connedit.php:520 +#: ../../Zotlabs/Module/Contactedit.php:649 +msgid "This connection is ignored!" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:519 -msgid "" -"Present a login box to visitors on the home page if no other content has " -"been configured." +#: ../../Zotlabs/Module/Connedit.php:524 +#: ../../Zotlabs/Module/Contactedit.php:653 +msgid "Unarchive" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:520 -msgid "Enable context help" +#: ../../Zotlabs/Module/Connedit.php:524 +#: ../../Zotlabs/Module/Contactedit.php:653 +msgid "Archive" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:520 +#: ../../Zotlabs/Module/Connedit.php:527 +#: ../../Zotlabs/Module/Contactedit.php:655 msgid "" -"Display contextual help for the current page when the help button is pressed." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:522 -msgid "Reply-to email address for system generated email." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:523 -msgid "Sender (From) email address for system generated email." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:524 -msgid "Name of email sender for system generated email." +"Archive (or Unarchive) this connection - mark channel dead but keep content" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:526 -msgid "Directory Server URL" +#: ../../Zotlabs/Module/Connedit.php:528 +#: ../../Zotlabs/Module/Contactedit.php:656 +msgid "This connection is archived!" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:526 -msgid "Default directory server" +#: ../../Zotlabs/Module/Connedit.php:532 +#: ../../Zotlabs/Module/Contactedit.php:660 +msgid "Unhide" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:528 -msgid "Enable SSE Notifications" +#: ../../Zotlabs/Module/Connedit.php:532 +#: ../../Zotlabs/Module/Contactedit.php:660 +msgid "Hide" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:528 -msgid "" -"If disabled, traditional polling will be used. Warning: this setting might " -"not be suited for shared hosting" +#: ../../Zotlabs/Module/Connedit.php:535 +#: ../../Zotlabs/Module/Contactedit.php:662 +msgid "Hide or Unhide this connection from your other connections" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:530 -msgid "Proxy user" +#: ../../Zotlabs/Module/Connedit.php:536 +#: ../../Zotlabs/Module/Contactedit.php:663 +msgid "This connection is hidden!" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:531 -msgid "Proxy URL" +#: ../../Zotlabs/Module/Connedit.php:543 +#: ../../Zotlabs/Module/Contactedit.php:669 +msgid "Delete this connection" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:532 -msgid "Network timeout" +#: ../../Zotlabs/Module/Connedit.php:550 +msgid "Fetch Vcard" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:532 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +#: ../../Zotlabs/Module/Connedit.php:553 +msgid "Fetch electronic calling card for this connection" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:533 -msgid "Delivery interval" +#: ../../Zotlabs/Module/Connedit.php:572 +#: ../../Zotlabs/Module/Contactedit.php:445 +msgid "Affinity" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:533 -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." +#: ../../Zotlabs/Module/Connedit.php:575 +msgid "Open Set Affinity section by default" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:534 -msgid "Deliveries per process" +#: ../../Zotlabs/Module/Connedit.php:579 +#: ../../Zotlabs/Module/Contactedit.php:295 +#: ../../Zotlabs/Widget/Affinity.php:36 +msgid "Me" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:534 -msgid "" -"Number of deliveries to attempt in a single operating system process. Adjust " -"if necessary to tune system performance. Recommend: 1-5." +#: ../../Zotlabs/Module/Connedit.php:580 +#: ../../Zotlabs/Module/Contactedit.php:296 +#: ../../Zotlabs/Widget/Affinity.php:37 +msgid "Family" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:535 -msgid "Queue Threshold" +#: ../../Zotlabs/Module/Connedit.php:582 +#: ../../Zotlabs/Module/Contactedit.php:298 +#: ../../Zotlabs/Widget/Affinity.php:39 +msgid "Acquaintances" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:535 -msgid "" -"Always defer immediate delivery if queue contains more than this number of " -"entries." +#: ../../Zotlabs/Module/Connedit.php:612 +msgid "Filter" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:536 -msgid "Poll interval" +#: ../../Zotlabs/Module/Connedit.php:615 +msgid "Open Custom Filter section by default" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:536 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." +#: ../../Zotlabs/Module/Connedit.php:622 +#: ../../Zotlabs/Module/Contactedit.php:329 +msgid "Approve this contact" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:537 -msgid "Path to ImageMagick convert program" +#: ../../Zotlabs/Module/Connedit.php:622 +#: ../../Zotlabs/Module/Contactedit.php:329 +msgid "Accept contact to allow communication" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:537 -msgid "" -"If set, use this program to generate photo thumbnails for huge images ( > " -"4000 pixels in either dimension), otherwise memory exhaustion may occur. " -"Example: /usr/bin/convert" +#: ../../Zotlabs/Module/Connedit.php:626 +msgid "Set Affinity" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:538 -msgid "Maximum Load Average" +#: ../../Zotlabs/Module/Connedit.php:629 +msgid "Set Profile" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:538 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." +#: ../../Zotlabs/Module/Connedit.php:632 +msgid "Set Affinity & Profile" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:539 -msgid "Expiration period in days for imported (grid/network) content" +#: ../../Zotlabs/Module/Connedit.php:658 +#: ../../Zotlabs/Module/Contactedit.php:362 +msgid "Please select a role for this contact!" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:539 -msgid "0 for no expiration of imported content" +#: ../../Zotlabs/Module/Connedit.php:678 +#: ../../Zotlabs/Module/Contactedit.php:382 +msgid "This contact is unreachable from this location." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:540 -msgid "" -"Do not expire any posts which have comments less than this many days ago" +#: ../../Zotlabs/Module/Connedit.php:679 +#: ../../Zotlabs/Module/Contactedit.php:383 +msgid "This contact may be unreachable from other channel locations." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:541 -msgid "" -"Public servers: Optional landing (marketing) webpage for new registrants" +#: ../../Zotlabs/Module/Connedit.php:681 +#: ../../Zotlabs/Module/Contactedit.php:385 +msgid "Location independence is not supported by their network." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:541 +#: ../../Zotlabs/Module/Connedit.php:685 #, php-format -msgid "Create this page first. Default is %s/register" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:542 -msgid "Page to display after creating a new channel" +msgid "Contact: %s" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:542 -msgid "Default: profiles" +#: ../../Zotlabs/Module/Connedit.php:687 +msgid "Manage contact roles" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:543 -msgid "Optional: site location" +#: ../../Zotlabs/Module/Connedit.php:694 +msgid "This contacts's primary address is" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:543 -msgid "Region or country" +#: ../../Zotlabs/Module/Connedit.php:695 +msgid "Available locations:" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:628 -#: ../../Zotlabs/Module/Admin/Site.php:629 -msgid "Invalid 24h time value (hhmm/hmm)" +#: ../../Zotlabs/Module/Connedit.php:700 ../../Zotlabs/Module/Defperms.php:259 +msgid "" +"The permissions indicated on this page will be applied to all new " +"connections." msgstr "" -#: ../../Zotlabs/Module/Admin/Logs.php:28 -msgid "Log settings updated." +#: ../../Zotlabs/Module/Connedit.php:701 +#: ../../Zotlabs/Module/Contactedit.php:252 +#: ../../Zotlabs/Module/Contactedit.php:401 +msgid "Contact Tools" msgstr "" -#: ../../Zotlabs/Module/Admin/Logs.php:85 -msgid "Clear" +#: ../../Zotlabs/Module/Connedit.php:703 +#: ../../Zotlabs/Module/Contactedit.php:420 +msgid "Slide to adjust your degree of friendship" msgstr "" -#: ../../Zotlabs/Module/Admin/Logs.php:91 -msgid "Debugging" +#: ../../Zotlabs/Module/Connedit.php:705 +#: ../../Zotlabs/Module/Contactedit.php:422 +msgid "Custom Filter" msgstr "" -#: ../../Zotlabs/Module/Admin/Logs.php:92 -msgid "Log file" +#: ../../Zotlabs/Module/Connedit.php:706 +#: ../../Zotlabs/Module/Contactedit.php:423 +#: ../../Zotlabs/Module/Settings/Channel.php:286 +msgid "Only import posts with this text" msgstr "" -#: ../../Zotlabs/Module/Admin/Logs.php:92 +#: ../../Zotlabs/Module/Connedit.php:706 ../../Zotlabs/Module/Connedit.php:707 +#: ../../Zotlabs/Module/Admin/Site.php:515 +#: ../../Zotlabs/Module/Admin/Site.php:516 +#: ../../Zotlabs/Module/Contactedit.php:423 +#: ../../Zotlabs/Module/Contactedit.php:424 msgid "" -"Must be writable by web server. Relative to your top-level webserver " -"directory." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Logs.php:93 -msgid "Log level" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:31 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Admin/Channels.php:40 -#, php-format -msgid "%s channel code allowed/disallowed" -msgid_plural "%s channels code allowed/disallowed" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Admin/Channels.php:46 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Admin/Channels.php:65 -msgid "Channel not found" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:75 -#, php-format -msgid "Channel '%s' deleted" +"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " +"all posts" msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:87 -#, php-format -msgid "Channel '%s' censored" +#: ../../Zotlabs/Module/Connedit.php:707 +#: ../../Zotlabs/Module/Contactedit.php:424 +#: ../../Zotlabs/Module/Settings/Channel.php:285 +msgid "Do not import posts with this text" msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:87 -#, php-format -msgid "Channel '%s' uncensored" +#: ../../Zotlabs/Module/Connedit.php:710 +msgid "Contact Pending Approval" msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:98 -#, php-format -msgid "Channel '%s' code allowed" +#: ../../Zotlabs/Module/Connedit.php:714 +#: ../../Zotlabs/Module/Contactedit.php:429 +msgid "Approve contact" msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:98 +#: ../../Zotlabs/Module/Connedit.php:715 #, php-format -msgid "Channel '%s' code disallowed" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:148 -msgid "select all" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:150 -#: ../../Zotlabs/Module/Directory.php:361 -msgid "Censor" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:151 -#: ../../Zotlabs/Module/Directory.php:361 -msgid "Uncensor" +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:152 -msgid "Allow Code" +#: ../../Zotlabs/Module/Connedit.php:717 +#: ../../Zotlabs/Module/Contactedit.php:431 +msgid "Their" msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:153 -msgid "Disallow Code" +#: ../../Zotlabs/Module/Connedit.php:718 +#: ../../Zotlabs/Module/Contactedit.php:432 +msgid "My" msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:158 -msgid "UID" +#: ../../Zotlabs/Module/Connedit.php:720 ../../Zotlabs/Module/Defperms.php:266 +msgid "Individual Permissions" msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:162 +#: ../../Zotlabs/Module/Connedit.php:721 msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" +"Some permissions may be inherited from your channel's privacy settings, which have higher " +"priority than individual settings. You can not change those " +"settings here." msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:163 +#: ../../Zotlabs/Module/Connedit.php:722 msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:29 -#, php-format -msgid "Password changed for account %d." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:46 -msgid "Account settings updated." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:61 -msgid "Account not found." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:68 -msgid "Account Edit" +"Some permissions may be inherited from your channel's privacy settings, which have higher " +"priority than individual settings. You can change those settings here but " +"they wont have any impact unless the inherited setting changes." msgstr "" -#: ../../Zotlabs/Module/Admin/Account_edit.php:69 -msgid "New Password" +#: ../../Zotlabs/Module/Connedit.php:723 +msgid "Last update:" msgstr "" -#: ../../Zotlabs/Module/Admin/Account_edit.php:70 -msgid "New Password again" +#: ../../Zotlabs/Module/Connedit.php:731 +msgid "Details" msgstr "" -#: ../../Zotlabs/Module/Admin/Account_edit.php:71 -msgid "Account language (for emails)" +#: ../../Zotlabs/Module/Connedit.php:733 ../../Zotlabs/Module/Cdav.php:1375 +msgid "Organisation" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:89 -msgid "New Profile Field" +#: ../../Zotlabs/Module/Connedit.php:735 ../../Zotlabs/Module/Cdav.php:1377 +msgid "Phone" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:90 -#: ../../Zotlabs/Module/Admin/Profs.php:110 -msgid "Field nickname" +#: ../../Zotlabs/Module/Connedit.php:737 ../../Zotlabs/Module/Cdav.php:1379 +msgid "Instant messenger" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:90 -#: ../../Zotlabs/Module/Admin/Profs.php:110 -msgid "System name of field" +#: ../../Zotlabs/Module/Connedit.php:738 ../../Zotlabs/Module/Cdav.php:1380 +msgid "Website" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:91 -#: ../../Zotlabs/Module/Admin/Profs.php:111 -msgid "Input type" +#: ../../Zotlabs/Module/Connedit.php:740 ../../Zotlabs/Module/Cdav.php:1382 +msgid "Note" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:92 -#: ../../Zotlabs/Module/Admin/Profs.php:112 -msgid "Field Name" +#: ../../Zotlabs/Module/Connedit.php:745 ../../Zotlabs/Module/Cdav.php:1387 +msgid "Add Contact" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:92 -#: ../../Zotlabs/Module/Admin/Profs.php:112 -msgid "Label on profile pages" +#: ../../Zotlabs/Module/Connedit.php:746 ../../Zotlabs/Module/Cdav.php:1388 +msgid "Add Field" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:93 -#: ../../Zotlabs/Module/Admin/Profs.php:113 -msgid "Help text" +#: ../../Zotlabs/Module/Connedit.php:751 ../../Zotlabs/Module/Cdav.php:1393 +msgid "P.O. Box" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:93 -#: ../../Zotlabs/Module/Admin/Profs.php:113 -msgid "Additional info (optional)" +#: ../../Zotlabs/Module/Connedit.php:752 ../../Zotlabs/Module/Cdav.php:1394 +msgid "Additional" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:103 -msgid "Field definition not found" +#: ../../Zotlabs/Module/Connedit.php:753 ../../Zotlabs/Module/Cdav.php:1395 +msgid "Street" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:109 -msgid "Edit Profile Field" +#: ../../Zotlabs/Module/Connedit.php:754 ../../Zotlabs/Module/Cdav.php:1396 +msgid "Locality" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:169 -msgid "Basic Profile Fields" +#: ../../Zotlabs/Module/Connedit.php:755 ../../Zotlabs/Module/Cdav.php:1397 +msgid "Region" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:170 -msgid "Advanced Profile Fields" +#: ../../Zotlabs/Module/Connedit.php:756 ../../Zotlabs/Module/Cdav.php:1398 +msgid "ZIP Code" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:170 -msgid "(In addition to basic fields)" +#: ../../Zotlabs/Module/Connedit.php:757 ../../Zotlabs/Module/Cdav.php:1399 +#: ../../Zotlabs/Module/Profiles.php:774 +msgid "Country" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:172 -msgid "All available fields" -msgstr "" +#: ../../Zotlabs/Module/Admin/Channels.php:31 +#, php-format +msgid "%s channel censored/uncensored" +msgid_plural "%s channels censored/uncensored" +msgstr[0] "" +msgstr[1] "" -#: ../../Zotlabs/Module/Admin/Profs.php:173 -msgid "Custom Fields" -msgstr "" +#: ../../Zotlabs/Module/Admin/Channels.php:40 +#, php-format +msgid "%s channel code allowed/disallowed" +msgid_plural "%s channels code allowed/disallowed" +msgstr[0] "" +msgstr[1] "" -#: ../../Zotlabs/Module/Admin/Profs.php:177 -msgid "Create Custom Field" -msgstr "" +#: ../../Zotlabs/Module/Admin/Channels.php:46 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "" +msgstr[1] "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:19 -#: ../../Zotlabs/Module/Admin/Dbsync.php:59 -msgid "Update has been marked successful" +#: ../../Zotlabs/Module/Admin/Channels.php:65 +msgid "Channel not found" msgstr "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:32 +#: ../../Zotlabs/Module/Admin/Channels.php:75 #, php-format -msgid "Verification of update %s failed. Check system logs." +msgid "Channel '%s' deleted" msgstr "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:35 -#: ../../Zotlabs/Module/Admin/Dbsync.php:74 +#: ../../Zotlabs/Module/Admin/Channels.php:87 #, php-format -msgid "Update %s was successfully applied." +msgid "Channel '%s' censored" msgstr "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:39 +#: ../../Zotlabs/Module/Admin/Channels.php:87 #, php-format -msgid "Verifying update %s did not return a status. Unknown if it succeeded." +msgid "Channel '%s' uncensored" msgstr "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:42 +#: ../../Zotlabs/Module/Admin/Channels.php:98 #, php-format -msgid "Update %s does not contain a verification function." +msgid "Channel '%s' code allowed" msgstr "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:46 -#: ../../Zotlabs/Module/Admin/Dbsync.php:81 +#: ../../Zotlabs/Module/Admin/Channels.php:98 #, php-format -msgid "Update function %s could not be found." +msgid "Channel '%s' code disallowed" msgstr "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:71 -#, php-format -msgid "Executing update procedure %s failed. Check system logs." +#: ../../Zotlabs/Module/Admin/Channels.php:145 +#: ../../Zotlabs/Module/Admin/Accounts.php:307 +#: ../../Zotlabs/Module/Admin/Themes.php:122 +#: ../../Zotlabs/Module/Admin/Themes.php:156 +#: ../../Zotlabs/Module/Admin/Site.php:411 +#: ../../Zotlabs/Module/Admin/Logs.php:82 +#: ../../Zotlabs/Module/Admin/Addons.php:345 +#: ../../Zotlabs/Module/Admin/Addons.php:443 +#: ../../Zotlabs/Module/Admin/Security.php:98 +#: ../../Zotlabs/Module/Admin.php:140 +msgid "Administration" msgstr "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:78 -#, php-format -msgid "" -"Update %s did not return a status. It cannot be determined if it was " -"successful." +#: ../../Zotlabs/Module/Admin/Channels.php:148 +msgid "select all" msgstr "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:99 -msgid "Failed Updates" +#: ../../Zotlabs/Module/Admin/Channels.php:152 +msgid "Allow Code" msgstr "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:101 -msgid "Mark success (if update was manually applied)" +#: ../../Zotlabs/Module/Admin/Channels.php:153 +msgid "Disallow Code" msgstr "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:102 -msgid "Attempt to verify this update if a verification procedure exists" +#: ../../Zotlabs/Module/Admin/Channels.php:158 +msgid "UID" msgstr "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:103 -msgid "Attempt to execute this update step automatically" +#: ../../Zotlabs/Module/Admin/Channels.php:162 +msgid "" +"Selected channels will be deleted!\\n\\nEverything that was posted in these " +"channels on this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:108 -msgid "No failed updates." +#: ../../Zotlabs/Module/Admin/Channels.php:163 +msgid "" +"The channel {0} will be deleted!\\n\\nEverything that was posted in this " +"channel on this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:290 +#: ../../Zotlabs/Module/Admin/Features.php:56 #, php-format -msgid "Plugin %s disabled." +msgid "Lock feature %s" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:295 -#, php-format -msgid "Plugin %s enabled." +#: ../../Zotlabs/Module/Admin/Features.php:64 +msgid "Manage Additional Features" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:354 -msgid "Minimum project version: " +#: ../../Zotlabs/Module/Admin/Account_edit.php:29 +#, php-format +msgid "Password changed for account %d." msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:355 -msgid "Maximum project version: " +#: ../../Zotlabs/Module/Admin/Account_edit.php:46 +msgid "Account settings updated." msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:356 -msgid "Minimum PHP version: " +#: ../../Zotlabs/Module/Admin/Account_edit.php:61 +msgid "Account not found." msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:357 -msgid "Compatible Server Roles: " +#: ../../Zotlabs/Module/Admin/Account_edit.php:68 +msgid "Account Edit" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:358 -msgid "Requires: " +#: ../../Zotlabs/Module/Admin/Account_edit.php:69 +msgid "New Password" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:359 -#: ../../Zotlabs/Module/Admin/Addons.php:446 -msgid "Disabled - version incompatibility" +#: ../../Zotlabs/Module/Admin/Account_edit.php:70 +msgid "New Password again" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:415 -msgid "Enter the public git repository URL of the addon repo." +#: ../../Zotlabs/Module/Admin/Account_edit.php:71 +msgid "Account language (for emails)" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:416 -msgid "Addon repo git URL" +#: ../../Zotlabs/Module/Admin/Account_edit.php:72 +#: ../../Zotlabs/Module/Admin/Accounts.php:335 +msgid "Service class" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:417 -msgid "Custom repo name" -msgstr "" +#: ../../Zotlabs/Module/Admin/Accounts.php:128 +#, php-format +msgid "%s account blocked/unblocked" +msgid_plural "%s account blocked/unblocked" +msgstr[0] "" +msgstr[1] "" -#: ../../Zotlabs/Module/Admin/Addons.php:417 -msgid "(optional)" +#: ../../Zotlabs/Module/Admin/Accounts.php:135 +#, php-format +msgid "%s account deleted" +msgid_plural "%s accounts deleted" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:171 +msgid "Account not found" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:418 -msgid "Download Addon Repo" +#: ../../Zotlabs/Module/Admin/Accounts.php:192 +#, php-format +msgid "Account '%s' blocked" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:425 -msgid "Install new repo" +#: ../../Zotlabs/Module/Admin/Accounts.php:200 +#, php-format +msgid "Account '%s' unblocked" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:426 ../../Zotlabs/Lib/Apps.php:545 -msgid "Install" +#: ../../Zotlabs/Module/Admin/Accounts.php:240 +msgid "Unverified" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:449 -msgid "Manage Repos" +#: ../../Zotlabs/Module/Admin/Accounts.php:243 +msgid "Expired" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:450 -msgid "Installed Addon Repositories" +#: ../../Zotlabs/Module/Admin/Accounts.php:308 +#: ../../Zotlabs/Module/Admin/Accounts.php:327 +#: ../../Zotlabs/Module/Admin.php:95 ../../Zotlabs/Widget/Admin.php:28 +msgid "Accounts" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:451 -msgid "Install a New Addon Repository" +#: ../../Zotlabs/Module/Admin/Accounts.php:310 +msgid "Show verified registrations" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:458 -msgid "Switch branch" +#: ../../Zotlabs/Module/Admin/Accounts.php:310 +msgid "Show all registrations" msgstr "" -#: ../../Zotlabs/Module/Apps.php:50 -msgid "Installed Apps" +#: ../../Zotlabs/Module/Admin/Accounts.php:312 +msgid "Select toggle" msgstr "" -#: ../../Zotlabs/Module/Apps.php:53 -msgid "Manage Apps" +#: ../../Zotlabs/Module/Admin/Accounts.php:313 +msgid "Deny selected" msgstr "" -#: ../../Zotlabs/Module/Apps.php:54 -msgid "Create Custom App" +#: ../../Zotlabs/Module/Admin/Accounts.php:314 +msgid "Approve selected" msgstr "" -#: ../../Zotlabs/Module/Achievements.php:38 -msgid "Some blurb about what to do when you're new here" +#: ../../Zotlabs/Module/Admin/Accounts.php:315 +msgid "All registrations" msgstr "" -#: ../../Zotlabs/Module/Removeme.php:35 -msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." +#: ../../Zotlabs/Module/Admin/Accounts.php:315 +msgid "Verified registrations waiting for approval" msgstr "" -#: ../../Zotlabs/Module/Removeme.php:60 ../../Zotlabs/Module/Removeme.php:64 -#: ../../Zotlabs/Module/Settings/Channel.php:281 -msgid "Remove Channel" +#: ../../Zotlabs/Module/Admin/Accounts.php:316 +msgid "Request date" msgstr "" -#: ../../Zotlabs/Module/Removeme.php:61 -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Changeaddr.php:78 -msgid "WARNING: " +#: ../../Zotlabs/Module/Admin/Accounts.php:316 +msgid "Requests" msgstr "" -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "This channel will be permanently removed. " +#: ../../Zotlabs/Module/Admin/Accounts.php:317 +msgid "No registrations available" msgstr "" -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "This action can not be undone!" +#: ../../Zotlabs/Module/Admin/Accounts.php:317 +msgid "No verified registrations available" msgstr "" -#: ../../Zotlabs/Module/Removeme.php:62 -#: ../../Zotlabs/Module/Removeaccount.php:59 -#: ../../Zotlabs/Module/Changeaddr.php:79 -msgid "Please enter your password for verification:" +#: ../../Zotlabs/Module/Admin/Accounts.php:323 +msgid "Verified" msgstr "" -#: ../../Zotlabs/Module/Regate.php:84 -msgid "Email resent" +#: ../../Zotlabs/Module/Admin/Accounts.php:324 +msgid "Not yet verified" msgstr "" -#: ../../Zotlabs/Module/Regate.php:84 -msgid "Email resend failed" +#: ../../Zotlabs/Module/Admin/Accounts.php:329 +msgid "ID" msgstr "" -#: ../../Zotlabs/Module/Regate.php:109 -msgid "Verification successful" +#: ../../Zotlabs/Module/Admin/Accounts.php:331 +msgid "All channels" msgstr "" -#: ../../Zotlabs/Module/Regate.php:153 -msgid "Account successfull created" +#: ../../Zotlabs/Module/Admin/Accounts.php:332 +msgid "Register date" msgstr "" -#: ../../Zotlabs/Module/Regate.php:211 -msgid "Channel successfull created" +#: ../../Zotlabs/Module/Admin/Accounts.php:333 +msgid "Last login" msgstr "" -#: ../../Zotlabs/Module/Regate.php:217 -msgid "Automatic channel creation failed. Please create a channel." +#: ../../Zotlabs/Module/Admin/Accounts.php:334 +msgid "Expires" msgstr "" -#: ../../Zotlabs/Module/Regate.php:229 -msgid "Account creation error" +#: ../../Zotlabs/Module/Admin/Accounts.php:337 +msgid "" +"Selected accounts will be deleted!\\n\\nEverything these accounts had posted " +"on this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: ../../Zotlabs/Module/Regate.php:241 -msgid "Verify failed" +#: ../../Zotlabs/Module/Admin/Accounts.php:338 +msgid "" +"The account {0} will be deleted!\\n\\nEverything this account has posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: ../../Zotlabs/Module/Regate.php:246 -msgid "Token verification failed" +#: ../../Zotlabs/Module/Admin/Accounts.php:347 +msgid "Message" msgstr "" -#: ../../Zotlabs/Module/Regate.php:251 -msgid "Request not inside time frame" +#: ../../Zotlabs/Module/Admin/Queueworker.php:65 +msgid "Max queueworker threads" msgstr "" -#: ../../Zotlabs/Module/Regate.php:257 ../../Zotlabs/Module/Regate.php:287 -msgid "Identity unknown" +#: ../../Zotlabs/Module/Admin/Queueworker.php:67 +msgid "Minimum 4, default 4" msgstr "" -#: ../../Zotlabs/Module/Regate.php:263 -msgid "dId2 mistaken" +#: ../../Zotlabs/Module/Admin/Queueworker.php:77 +msgid "Assume workers dead after" msgstr "" -#: ../../Zotlabs/Module/Regate.php:291 -msgid "Your Registration ID" +#: ../../Zotlabs/Module/Admin/Queueworker.php:79 +msgid "Minimum 120, default 300 seconds" msgstr "" -#: ../../Zotlabs/Module/Regate.php:304 ../../Zotlabs/Module/Regate.php:396 -#: ../../Zotlabs/Module/Regate.php:428 -msgid "Registration verification" +#: ../../Zotlabs/Module/Admin/Queueworker.php:91 +msgid "Pause before starting next task" msgstr "" -#: ../../Zotlabs/Module/Regate.php:311 ../../Zotlabs/Module/Regate.php:433 -msgid "Hold on, you can start verification in" +#: ../../Zotlabs/Module/Admin/Queueworker.php:93 +msgid "Minimum 100, default 100 microseconds" msgstr "" -#: ../../Zotlabs/Module/Regate.php:312 -msgid "Please remember your verification token for ID" +#: ../../Zotlabs/Module/Admin/Queueworker.php:102 +msgid "Automatically adjust pause before starting next task" msgstr "" -#: ../../Zotlabs/Module/Regate.php:314 -msgid "Token validity" +#: ../../Zotlabs/Module/Admin/Queueworker.php:111 +msgid "Queueworker Settings" msgstr "" -#: ../../Zotlabs/Module/Regate.php:350 -msgid "Resend email" +#: ../../Zotlabs/Module/Admin/Themes.php:26 +msgid "Theme settings updated." msgstr "" -#: ../../Zotlabs/Module/Regate.php:355 -msgid "Registration status" +#: ../../Zotlabs/Module/Admin/Themes.php:61 +msgid "No themes found." msgstr "" -#: ../../Zotlabs/Module/Regate.php:358 -msgid "Verification successful!" +#: ../../Zotlabs/Module/Admin/Themes.php:95 +#: ../../Zotlabs/Module/Admin/Addons.php:314 +msgid "Disable" msgstr "" -#: ../../Zotlabs/Module/Regate.php:359 -msgid "Your login ID is" +#: ../../Zotlabs/Module/Admin/Themes.php:97 +#: ../../Zotlabs/Module/Admin/Addons.php:317 +msgid "Enable" msgstr "" -#: ../../Zotlabs/Module/Regate.php:360 -msgid "" -"After your account has been approved by our administrator you will be able " -"to login with your login ID and your provided password." +#: ../../Zotlabs/Module/Admin/Themes.php:116 +msgid "Screenshot" msgstr "" -#: ../../Zotlabs/Module/Regate.php:372 -msgid "Registration request revoked" +#: ../../Zotlabs/Module/Admin/Themes.php:123 +#: ../../Zotlabs/Module/Admin/Themes.php:157 ../../Zotlabs/Widget/Admin.php:33 +msgid "Themes" msgstr "" -#: ../../Zotlabs/Module/Regate.php:373 -msgid "Sorry for any inconvience. Thank you for your response." +#: ../../Zotlabs/Module/Admin/Themes.php:124 +#: ../../Zotlabs/Module/Admin/Addons.php:347 +msgid "Toggle" msgstr "" -#: ../../Zotlabs/Module/Regate.php:397 -msgid "Please enter your verification token for ID" +#: ../../Zotlabs/Module/Admin/Themes.php:134 +#: ../../Zotlabs/Module/Admin/Addons.php:355 +msgid "Author: " msgstr "" -#: ../../Zotlabs/Module/Regate.php:398 ../../Zotlabs/Module/Regate.php:425 -msgid "Please check your email!" +#: ../../Zotlabs/Module/Admin/Themes.php:135 +#: ../../Zotlabs/Module/Admin/Addons.php:356 +msgid "Maintainer: " msgstr "" -#: ../../Zotlabs/Module/Regate.php:408 -msgid "Verification token" +#: ../../Zotlabs/Module/Admin/Themes.php:162 +msgid "[Experimental]" msgstr "" -#: ../../Zotlabs/Module/Regate.php:419 -msgid "ID expired" +#: ../../Zotlabs/Module/Admin/Themes.php:163 +msgid "[Unsupported]" msgstr "" -#: ../../Zotlabs/Module/Regate.php:434 -msgid "You will require the verification token for ID" +#: ../../Zotlabs/Module/Admin/Site.php:112 +msgid "Invalid input" msgstr "" -#: ../../Zotlabs/Module/Regate.php:443 -msgid "Unknown or expired ID" +#: ../../Zotlabs/Module/Admin/Site.php:132 +msgid "Errors" msgstr "" -#: ../../Zotlabs/Module/Regate.php:454 -msgid "dId2 malformed" +#: ../../Zotlabs/Module/Admin/Site.php:225 +msgid "Site settings updated." msgstr "" -#: ../../Zotlabs/Module/Manage.php:130 ../../Zotlabs/Module/New_channel.php:147 +#: ../../Zotlabs/Module/Admin/Site.php:262 +#: ../../Zotlabs/Module/Settings/Display.php:116 #, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." +msgid "%s - (Incompatible)" msgstr "" -#: ../../Zotlabs/Module/Manage.php:137 -msgid "Create a new channel" +#: ../../Zotlabs/Module/Admin/Site.php:269 +msgid "mobile" msgstr "" -#: ../../Zotlabs/Module/Manage.php:163 -msgid "Current Channel" +#: ../../Zotlabs/Module/Admin/Site.php:271 +msgid "experimental" msgstr "" -#: ../../Zotlabs/Module/Manage.php:165 -msgid "Switch to one of your channels by selecting it." +#: ../../Zotlabs/Module/Admin/Site.php:273 +msgid "unsupported" msgstr "" -#: ../../Zotlabs/Module/Manage.php:166 -msgid "Default Channel" +#: ../../Zotlabs/Module/Admin/Site.php:320 +msgid "Yes - with approval" msgstr "" -#: ../../Zotlabs/Module/Manage.php:167 -msgid "Make Default" +#: ../../Zotlabs/Module/Admin/Site.php:328 +msgid "My site is not a public server" msgstr "" -#: ../../Zotlabs/Module/Manage.php:170 -#, php-format -msgid "%d new introductions" +#: ../../Zotlabs/Module/Admin/Site.php:329 +msgid "My site has paid access only" msgstr "" -#: ../../Zotlabs/Module/Manage.php:172 -msgid "Delegated Channel" +#: ../../Zotlabs/Module/Admin/Site.php:330 +msgid "My site has free access only" msgstr "" -#: ../../Zotlabs/Module/Pdledit_gui.php:118 -msgid "Layout not found" +#: ../../Zotlabs/Module/Admin/Site.php:331 +msgid "My site offers free accounts with optional paid upgrades" msgstr "" -#: ../../Zotlabs/Module/Pdledit_gui.php:126 -msgid "This template does not support pdledi_gui (no content regions defined)" +#: ../../Zotlabs/Module/Admin/Site.php:349 +msgid "Default permission role for new accounts" msgstr "" -#: ../../Zotlabs/Module/Pdledit_gui.php:361 -msgid "Main page content" +#: ../../Zotlabs/Module/Admin/Site.php:349 +msgid "" +"This role will be used for the first channel created after registration." msgstr "" -#: ../../Zotlabs/Module/Pdledit_gui.php:362 -msgid "The main page content can not be edited!" +#: ../../Zotlabs/Module/Admin/Site.php:359 +msgid "Week(s)" msgstr "" -#: ../../Zotlabs/Module/Chanview.php:132 -msgid "toggle full screen mode" +#: ../../Zotlabs/Module/Admin/Site.php:360 +msgid "Month(s)" msgstr "" -#: ../../Zotlabs/Module/Chatsvc.php:131 -msgid "Away" +#: ../../Zotlabs/Module/Admin/Site.php:361 +msgid "Year(s)" msgstr "" -#: ../../Zotlabs/Module/Chatsvc.php:136 -msgid "Online" +#: ../../Zotlabs/Module/Admin/Site.php:369 +msgid "Register verification delay" msgstr "" -#: ../../Zotlabs/Module/Permcats.php:59 -msgid "Contact role deleted." +#: ../../Zotlabs/Module/Admin/Site.php:372 +msgid "Time to wait before a registration can be verified" msgstr "" -#: ../../Zotlabs/Module/Permcats.php:86 -msgid "Permission category name is required." +#: ../../Zotlabs/Module/Admin/Site.php:391 +msgid "Register verification expiration time" msgstr "" -#: ../../Zotlabs/Module/Permcats.php:102 ../../Zotlabs/Module/Permcats.php:154 -msgid "Contact role saved." +#: ../../Zotlabs/Module/Admin/Site.php:394 +msgid "Time before an unverified registration will expire" msgstr "" -#: ../../Zotlabs/Module/Permcats.php:204 -msgid "Role to assign affected contacts and default role to" +#: ../../Zotlabs/Module/Admin/Site.php:414 ../../Zotlabs/Widget/Admin.php:27 +msgid "Site" msgstr "" -#: ../../Zotlabs/Module/Permcats.php:204 -msgid "Role to assign affected contacts to" +#: ../../Zotlabs/Module/Admin/Site.php:417 +msgid "File upload" msgstr "" -#: ../../Zotlabs/Module/Permcats.php:234 -msgid "Assign this role to" +#: ../../Zotlabs/Module/Admin/Site.php:418 +msgid "Policies" msgstr "" -#: ../../Zotlabs/Module/Permcats.php:236 -msgid "All my contacts" +#: ../../Zotlabs/Module/Admin/Site.php:425 +msgid "Banner/Logo" msgstr "" -#: ../../Zotlabs/Module/Permcats.php:247 -msgid "Automatically assign this role to new contacts" +#: ../../Zotlabs/Module/Admin/Site.php:425 +msgid "Unfiltered HTML/CSS/JS is allowed" msgstr "" -#: ../../Zotlabs/Module/Permcats.php:248 ../../Zotlabs/Lib/Apps.php:378 -msgid "Contact Roles" +#: ../../Zotlabs/Module/Admin/Site.php:426 +msgid "Administrator Information" msgstr "" -#: ../../Zotlabs/Module/Permcats.php:249 -msgid "Role name" +#: ../../Zotlabs/Module/Admin/Site.php:426 +msgid "" +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode can be used here" msgstr "" -#: ../../Zotlabs/Module/Permcats.php:249 -msgid "System role - not editable" +#: ../../Zotlabs/Module/Admin/Site.php:427 ../../Zotlabs/Module/Siteinfo.php:24 +msgid "Site Information" msgstr "" -#: ../../Zotlabs/Module/Permcats.php:250 -msgid "Deleting" +#: ../../Zotlabs/Module/Admin/Site.php:427 +msgid "" +"Publicly visible description of this site. Displayed on siteinfo page. " +"BBCode can be used here" msgstr "" -#: ../../Zotlabs/Module/Permcats.php:253 ../../Zotlabs/Module/Defperms.php:262 -#: ../../Zotlabs/Module/Connedit.php:713 -msgid "inherited" +#: ../../Zotlabs/Module/Admin/Site.php:428 +msgid "System language" msgstr "" -#: ../../Zotlabs/Module/Permcats.php:255 -msgid "Role Permissions" +#: ../../Zotlabs/Module/Admin/Site.php:429 +msgid "System theme" msgstr "" -#: ../../Zotlabs/Module/Permcats.php:256 +#: ../../Zotlabs/Module/Admin/Site.php:429 msgid "" -"Some permissions may be inherited from your channel " -"role, which have higher priority than contact role settings." +"Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "" -#: ../../Zotlabs/Module/Email_resend.php:12 -#: ../../Zotlabs/Module/Email_validation.php:24 -msgid "Token verification failed." +#: ../../Zotlabs/Module/Admin/Site.php:432 +msgid "Allow Feeds as Connections" msgstr "" -#: ../../Zotlabs/Module/Email_resend.php:30 -msgid "Email verification resent" +#: ../../Zotlabs/Module/Admin/Site.php:432 +msgid "(Heavy system resource usage)" msgstr "" -#: ../../Zotlabs/Module/Email_resend.php:33 -msgid "Unable to resend email verification message." +#: ../../Zotlabs/Module/Admin/Site.php:433 +msgid "Maximum image size" msgstr "" -#: ../../Zotlabs/Module/Cal.php:62 -msgid "Permissions denied." +#: ../../Zotlabs/Module/Admin/Site.php:433 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." msgstr "" -#: ../../Zotlabs/Module/Viewsrc.php:43 -msgid "item" +#: ../../Zotlabs/Module/Admin/Site.php:434 +msgid "Minimum age" msgstr "" -#: ../../Zotlabs/Module/Apporder.php:47 -msgid "Change Order of Pinned Navbar Apps" +#: ../../Zotlabs/Module/Admin/Site.php:434 +msgid "Minimum age (in years) for who may register on this site." msgstr "" -#: ../../Zotlabs/Module/Apporder.php:47 -msgid "Change Order of App Tray Apps" +#: ../../Zotlabs/Module/Admin/Site.php:435 +msgid "Which best describes the types of account offered by this hub?" msgstr "" -#: ../../Zotlabs/Module/Apporder.php:48 -msgid "" -"Use arrows to move the corresponding app left (top) or right (bottom) in the " -"navbar" +#: ../../Zotlabs/Module/Admin/Site.php:435 +msgid "This is displayed on the public server site list." msgstr "" -#: ../../Zotlabs/Module/Apporder.php:48 -msgid "Use arrows to move the corresponding app up or down in the app tray" +#: ../../Zotlabs/Module/Admin/Site.php:441 +msgid "Register text" msgstr "" -#: ../../Zotlabs/Module/Oexchange.php:27 -msgid "Unable to find your hub." +#: ../../Zotlabs/Module/Admin/Site.php:443 +msgid "This text will be displayed prominently at the registration page" msgstr "" -#: ../../Zotlabs/Module/Oexchange.php:41 -msgid "Post successful." +#: ../../Zotlabs/Module/Admin/Site.php:447 +msgid "Does this site allow new member registration?" msgstr "" -#: ../../Zotlabs/Module/Moderate.php:67 -msgid "Comment approved" +#: ../../Zotlabs/Module/Admin/Site.php:454 +msgid "Configure the registration open days/hours" msgstr "" -#: ../../Zotlabs/Module/Moderate.php:71 -msgid "Comment deleted" +#: ../../Zotlabs/Module/Admin/Site.php:456 +msgid "Empty or '-:-' value will keep registration open 24/7 (default)" msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:35 +#: ../../Zotlabs/Module/Admin/Site.php:457 msgid "" -"Account removals are not allowed within 48 hours of changing the account " -"password." +"Weekdays and hours must be separated by colon ':', From-To ranges with a " +"dash `-` example: 1:800-1200" msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:57 -msgid "Remove This Account" +#: ../../Zotlabs/Module/Admin/Site.php:458 +msgid "" +"Weekday:Hour pairs must be separated by space ' ' example: 1:900-1700 " +"2:900-1700" msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Admin/Site.php:459 msgid "" -"This account and all its channels will be completely removed from the " -"network. " +"From-To ranges must be separated by comma ',' example: 1:800-1200,1300-1700 " +"or 1-2,4-5:900-1700" msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:58 -msgid "This action is permanent and can not be undone!" +#: ../../Zotlabs/Module/Admin/Site.php:460 +msgid "Advanced examples:" msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:61 -#: ../../Zotlabs/Module/Settings/Account.php:109 -msgid "Remove Account" +#: ../../Zotlabs/Module/Admin/Site.php:460 +#: ../../Zotlabs/Module/Settings/Channel.php:183 +msgid "or" msgstr "" -#: ../../Zotlabs/Module/Lang.php:20 -msgid "Language App" +#: ../../Zotlabs/Module/Admin/Site.php:461 +msgid "Check your configuration" msgstr "" -#: ../../Zotlabs/Module/Uexport.php:108 -msgid "No content available for year" +#: ../../Zotlabs/Module/Admin/Site.php:465 +msgid "Max account registrations per day" msgstr "" -#: ../../Zotlabs/Module/Uexport.php:171 -msgid "Export Channel" +#: ../../Zotlabs/Module/Admin/Site.php:467 +msgid "Unlimited if zero or no value - default 50" msgstr "" -#: ../../Zotlabs/Module/Uexport.php:173 -msgid "Export channel" +#: ../../Zotlabs/Module/Admin/Site.php:471 +msgid "Max account registrations from same IP" msgstr "" -#: ../../Zotlabs/Module/Uexport.php:174 -msgid "" -"This will export your identity and social graph into a file which can be " -"used to import your channel to a new hub." +#: ../../Zotlabs/Module/Admin/Site.php:473 +msgid "Unlimited if zero or no value - default 3" msgstr "" -#: ../../Zotlabs/Module/Uexport.php:177 -msgid "Export content" +#: ../../Zotlabs/Module/Admin/Site.php:479 +msgid "Auto channel create" msgstr "" -#: ../../Zotlabs/Module/Uexport.php:178 +#: ../../Zotlabs/Module/Admin/Site.php:481 msgid "" -"This will export your posts, direct messages, articles and cards per month " -"stored into a zip file per year. Months with no posts will be dismissed." +"If disabled the channel will be created in a separate step during the " +"registration process" msgstr "" -#: ../../Zotlabs/Module/Uexport.php:180 -msgid "Export wikis" +#: ../../Zotlabs/Module/Admin/Site.php:485 +msgid "Require invite code" msgstr "" -#: ../../Zotlabs/Module/Uexport.php:181 -msgid "This will export your wikis and wiki pages." +#: ../../Zotlabs/Module/Admin/Site.php:490 +msgid "Allow invite code" msgstr "" -#: ../../Zotlabs/Module/Uexport.php:183 -msgid "Export webpages" +#: ../../Zotlabs/Module/Admin/Site.php:495 +msgid "Require email address" msgstr "" -#: ../../Zotlabs/Module/Uexport.php:184 -msgid "This will export your webpages and menus." +#: ../../Zotlabs/Module/Admin/Site.php:497 +msgid "The provided email address will be verified (recommended)" msgstr "" -#: ../../Zotlabs/Module/Uexport.php:186 -msgid "Export channel calendar" +#: ../../Zotlabs/Module/Admin/Site.php:501 +msgid "Abandon account after x days" msgstr "" -#: ../../Zotlabs/Module/Uexport.php:187 +#: ../../Zotlabs/Module/Admin/Site.php:503 msgid "" -"This will export your channel calendar events and associated items. CalDAV " -"calendars are not included." +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." msgstr "" -#: ../../Zotlabs/Module/Uexport.php:189 -msgid "Export chatrooms" +#: ../../Zotlabs/Module/Admin/Site.php:508 +msgid "Site homepage to show visitors (default: login box)" msgstr "" -#: ../../Zotlabs/Module/Uexport.php:190 -msgid "This will export your chatrooms. Chat history is dismissed." +#: ../../Zotlabs/Module/Admin/Site.php:508 +msgid "" +"example: 'pubstream' to show public stream, 'page/sys/home' to show a system " +"webpage called 'home' or 'include:home.html' to include a file." msgstr "" -#: ../../Zotlabs/Module/Uexport.php:192 -#, php-format -msgid "" -"This export can be imported or restored by visiting %2$s on any site containing your channel." +#: ../../Zotlabs/Module/Admin/Site.php:509 +msgid "Preserve site homepage URL" msgstr "" -#: ../../Zotlabs/Module/Display.php:336 -msgid "Article" +#: ../../Zotlabs/Module/Admin/Site.php:509 +msgid "" +"Present the site homepage in a frame at the original location instead of " +"redirecting" msgstr "" -#: ../../Zotlabs/Module/Display.php:381 -msgid "Item has been removed." +#: ../../Zotlabs/Module/Admin/Site.php:510 +msgid "Allowed friend domains" msgstr "" -#: ../../Zotlabs/Module/Common.php:14 -msgid "No channel." +#: ../../Zotlabs/Module/Admin/Site.php:510 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" msgstr "" -#: ../../Zotlabs/Module/Common.php:45 -msgid "No connections in common." +#: ../../Zotlabs/Module/Admin/Site.php:511 +msgid "Force publish" msgstr "" -#: ../../Zotlabs/Module/Common.php:65 -msgid "View Common Connections" +#: ../../Zotlabs/Module/Admin/Site.php:511 +msgid "" +"Check to force all profiles on this site to be listed in the site directory" msgstr "" -#: ../../Zotlabs/Module/Impel.php:188 -#, php-format -msgid "%s element installed" +#: ../../Zotlabs/Module/Admin/Site.php:512 +msgid "Enable public stream" msgstr "" -#: ../../Zotlabs/Module/Impel.php:191 -#, php-format -msgid "%s element installation failed" +#: ../../Zotlabs/Module/Admin/Site.php:512 +msgid "Enable the public stream. Warning: this content is unmoderated" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:159 -msgid "Your real name is recommended." +#: ../../Zotlabs/Module/Admin/Site.php:513 +msgid "Site only public stream" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:160 -msgid "" -"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation " -"Group\"" +#: ../../Zotlabs/Module/Admin/Site.php:513 +msgid "Restrict the public stream to content originating at this site" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:165 -msgid "" -"This will be used to create a unique network address (like an email address)." +#: ../../Zotlabs/Module/Admin/Site.php:514 +msgid "Allow anybody on the internet to access the public streams" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:167 -msgid "Allowed characters are a-z 0-9, - and _" +#: ../../Zotlabs/Module/Admin/Site.php:514 +msgid "Disable to require authentication before viewing" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:175 -msgid "Channel name" +#: ../../Zotlabs/Module/Admin/Site.php:515 +msgid "Only import Public stream posts with this text" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:178 -#: ../../Zotlabs/Module/Settings/Channel.php:232 -msgid "Channel role" +#: ../../Zotlabs/Module/Admin/Site.php:516 +msgid "Do not import Public stream posts with this text" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:181 -msgid "Create a Channel" +#: ../../Zotlabs/Module/Admin/Site.php:519 +msgid "Login on Homepage" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:182 +#: ../../Zotlabs/Module/Admin/Site.php:519 msgid "" -"A channel is a unique network identity. It can represent a person (social " -"network profile), a forum (group), a business or celebrity page, a newsfeed, " -"and many other things." +"Present a login box to visitors on the home page if no other content has " +"been configured." msgstr "" -#: ../../Zotlabs/Module/New_channel.php:183 -msgid "" -"or import an existing channel from another location." +#: ../../Zotlabs/Module/Admin/Site.php:520 +msgid "Enable context help" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:188 -msgid "Validate" +#: ../../Zotlabs/Module/Admin/Site.php:520 +msgid "" +"Display contextual help for the current page when the help button is pressed." msgstr "" -#: ../../Zotlabs/Module/Dircensor.php:42 -msgid "Entry censored" +#: ../../Zotlabs/Module/Admin/Site.php:522 +msgid "Reply-to email address for system generated email." msgstr "" -#: ../../Zotlabs/Module/Dircensor.php:45 -msgid "Entry uncensored" +#: ../../Zotlabs/Module/Admin/Site.php:523 +msgid "Sender (From) email address for system generated email." msgstr "" -#: ../../Zotlabs/Module/Service_limits.php:23 -msgid "No service class restrictions found." +#: ../../Zotlabs/Module/Admin/Site.php:524 +msgid "Name of email sender for system generated email." msgstr "" -#: ../../Zotlabs/Module/Mood.php:152 ../../Zotlabs/Lib/Apps.php:354 -msgid "Mood" +#: ../../Zotlabs/Module/Admin/Site.php:526 +msgid "Directory Server URL" msgstr "" -#: ../../Zotlabs/Module/Mood.php:153 -msgid "Set your current mood and tell your friends" +#: ../../Zotlabs/Module/Admin/Site.php:526 +msgid "Default directory server" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:21 -msgid "About this site" +#: ../../Zotlabs/Module/Admin/Site.php:528 +msgid "Enable SSE Notifications" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:22 -msgid "Site Name" +#: ../../Zotlabs/Module/Admin/Site.php:528 +msgid "" +"If disabled, traditional polling will be used. Warning: this setting might " +"not be suited for shared hosting" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:26 -msgid "Administrator" +#: ../../Zotlabs/Module/Admin/Site.php:530 +msgid "Proxy user" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:29 -msgid "Software and Project information" +#: ../../Zotlabs/Module/Admin/Site.php:531 +msgid "Proxy URL" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:30 -msgid "This site is powered by $Projectname" +#: ../../Zotlabs/Module/Admin/Site.php:532 +msgid "Network timeout" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:31 -msgid "" -"Federated and decentralised networking and identity services provided by Zot" +#: ../../Zotlabs/Module/Admin/Site.php:532 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:34 -msgid "Additional federated transport protocols:" +#: ../../Zotlabs/Module/Admin/Site.php:533 +msgid "Delivery interval" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:36 -#, php-format -msgid "Version %s" +#: ../../Zotlabs/Module/Admin/Site.php:533 +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 "" -#: ../../Zotlabs/Module/Siteinfo.php:37 -msgid "Project homepage" +#: ../../Zotlabs/Module/Admin/Site.php:534 +msgid "Deliveries per process" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:38 -msgid "Developer homepage" +#: ../../Zotlabs/Module/Admin/Site.php:534 +msgid "" +"Number of deliveries to attempt in a single operating system process. Adjust " +"if necessary to tune system performance. Recommend: 1-5." msgstr "" -#: ../../Zotlabs/Module/Appman.php:39 ../../Zotlabs/Module/Appman.php:56 -msgid "App installed." +#: ../../Zotlabs/Module/Admin/Site.php:536 +msgid "Poll interval" msgstr "" -#: ../../Zotlabs/Module/Appman.php:49 -msgid "Malformed app." +#: ../../Zotlabs/Module/Admin/Site.php:536 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." msgstr "" -#: ../../Zotlabs/Module/Appman.php:198 -msgid "Embed code" +#: ../../Zotlabs/Module/Admin/Site.php:537 +msgid "Path to ImageMagick convert program" msgstr "" -#: ../../Zotlabs/Module/Appman.php:204 -msgid "Edit App" +#: ../../Zotlabs/Module/Admin/Site.php:537 +msgid "" +"If set, use this program to generate photo thumbnails for huge images ( > " +"4000 pixels in either dimension), otherwise memory exhaustion may occur. " +"Example: /usr/bin/convert" msgstr "" -#: ../../Zotlabs/Module/Appman.php:204 -msgid "Create App" +#: ../../Zotlabs/Module/Admin/Site.php:538 +msgid "Maximum Load Average" msgstr "" -#: ../../Zotlabs/Module/Appman.php:209 -msgid "Name of app" +#: ../../Zotlabs/Module/Admin/Site.php:538 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." msgstr "" -#: ../../Zotlabs/Module/Appman.php:210 -msgid "Location (URL) of app" +#: ../../Zotlabs/Module/Admin/Site.php:539 +msgid "Expiration period in days for imported (grid/network) content" msgstr "" -#: ../../Zotlabs/Module/Appman.php:212 -msgid "Photo icon URL" +#: ../../Zotlabs/Module/Admin/Site.php:539 +msgid "0 for no expiration of imported content" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:540 +msgid "" +"Do not expire any posts which have comments less than this many days ago" msgstr "" -#: ../../Zotlabs/Module/Appman.php:212 -msgid "80 x 80 pixels - optional" +#: ../../Zotlabs/Module/Admin/Site.php:541 +msgid "" +"Public servers: Optional landing (marketing) webpage for new registrants" msgstr "" -#: ../../Zotlabs/Module/Appman.php:213 -msgid "Categories (optional, comma separated list)" +#: ../../Zotlabs/Module/Admin/Site.php:541 +#, php-format +msgid "Create this page first. Default is %s/register" msgstr "" -#: ../../Zotlabs/Module/Appman.php:214 -msgid "Version ID" +#: ../../Zotlabs/Module/Admin/Site.php:542 +msgid "Page to display after creating a new channel" msgstr "" -#: ../../Zotlabs/Module/Appman.php:215 -msgid "Price of app" +#: ../../Zotlabs/Module/Admin/Site.php:542 +msgid "Default: profiles" msgstr "" -#: ../../Zotlabs/Module/Appman.php:216 -msgid "Location (URL) to purchase app" +#: ../../Zotlabs/Module/Admin/Site.php:543 +msgid "Optional: site location" msgstr "" -#: ../../Zotlabs/Module/Admin.php:96 -msgid "Blocked accounts" +#: ../../Zotlabs/Module/Admin/Site.php:543 +msgid "Region or country" msgstr "" -#: ../../Zotlabs/Module/Admin.php:97 -msgid "Expired accounts" +#: ../../Zotlabs/Module/Admin/Site.php:628 +#: ../../Zotlabs/Module/Admin/Site.php:629 +msgid "Invalid 24h time value (hhmm/hmm)" msgstr "" -#: ../../Zotlabs/Module/Admin.php:98 -msgid "Expiring accounts" +#: ../../Zotlabs/Module/Admin/Queue.php:45 +msgid "Queue Statistics" msgstr "" -#: ../../Zotlabs/Module/Admin.php:122 -msgid "Message queues" +#: ../../Zotlabs/Module/Admin/Queue.php:46 +msgid "Total Entries" msgstr "" -#: ../../Zotlabs/Module/Admin.php:136 -msgid "Your software should be updated" +#: ../../Zotlabs/Module/Admin/Queue.php:47 +msgid "Priority" msgstr "" -#: ../../Zotlabs/Module/Admin.php:141 -msgid "Summary" +#: ../../Zotlabs/Module/Admin/Queue.php:48 +msgid "Destination URL" msgstr "" -#: ../../Zotlabs/Module/Admin.php:144 -msgid "Registered accounts" +#: ../../Zotlabs/Module/Admin/Queue.php:49 +msgid "Mark hub permanently offline" msgstr "" -#: ../../Zotlabs/Module/Admin.php:145 -msgid "Pending registrations" +#: ../../Zotlabs/Module/Admin/Queue.php:50 +msgid "Retry delivery to this hub" msgstr "" -#: ../../Zotlabs/Module/Admin.php:146 -msgid "Registered channels" +#: ../../Zotlabs/Module/Admin/Queue.php:51 +msgid "Empty queue for this hub" msgstr "" -#: ../../Zotlabs/Module/Admin.php:147 -msgid "Active addons" +#: ../../Zotlabs/Module/Admin/Queue.php:52 +msgid "Last known contact" msgstr "" -#: ../../Zotlabs/Module/Admin.php:148 -msgid "Version" +#: ../../Zotlabs/Module/Admin/Profs.php:89 +msgid "New Profile Field" msgstr "" -#: ../../Zotlabs/Module/Admin.php:149 -msgid "Repository version (master)" +#: ../../Zotlabs/Module/Admin/Profs.php:90 +#: ../../Zotlabs/Module/Admin/Profs.php:110 +msgid "Field nickname" msgstr "" -#: ../../Zotlabs/Module/Admin.php:150 -msgid "Repository version (dev)" +#: ../../Zotlabs/Module/Admin/Profs.php:90 +#: ../../Zotlabs/Module/Admin/Profs.php:110 +msgid "System name of field" msgstr "" -#: ../../Zotlabs/Module/Contactedit.php:50 -msgid "Invalid abook_id" +#: ../../Zotlabs/Module/Admin/Profs.php:91 +#: ../../Zotlabs/Module/Admin/Profs.php:111 +msgid "Input type" msgstr "" -#: ../../Zotlabs/Module/Contactedit.php:78 ../../Zotlabs/Module/Defperms.php:67 -#: ../../Zotlabs/Module/Connedit.php:80 -msgid "Could not access contact record." +#: ../../Zotlabs/Module/Admin/Profs.php:92 +#: ../../Zotlabs/Module/Admin/Profs.php:112 +msgid "Field Name" msgstr "" -#: ../../Zotlabs/Module/Contactedit.php:107 -#: ../../Zotlabs/Module/Connedit.php:101 -msgid "Could not locate selected profile." +#: ../../Zotlabs/Module/Admin/Profs.php:92 +#: ../../Zotlabs/Module/Admin/Profs.php:112 +msgid "Label on profile pages" msgstr "" -#: ../../Zotlabs/Module/Contactedit.php:192 -#: ../../Zotlabs/Module/Connedit.php:215 -msgid "is now connected to" +#: ../../Zotlabs/Module/Admin/Profs.php:93 +#: ../../Zotlabs/Module/Admin/Profs.php:113 +msgid "Help text" msgstr "" -#: ../../Zotlabs/Module/Contactedit.php:252 -#: ../../Zotlabs/Module/Contactedit.php:401 -#: ../../Zotlabs/Module/Connedit.php:701 -msgid "Contact Tools" +#: ../../Zotlabs/Module/Admin/Profs.php:93 +#: ../../Zotlabs/Module/Admin/Profs.php:113 +msgid "Additional info (optional)" msgstr "" -#: ../../Zotlabs/Module/Contactedit.php:329 -#: ../../Zotlabs/Module/Connedit.php:622 -msgid "Approve this contact" +#: ../../Zotlabs/Module/Admin/Profs.php:103 +msgid "Field definition not found" msgstr "" -#: ../../Zotlabs/Module/Contactedit.php:329 -#: ../../Zotlabs/Module/Connedit.php:622 -msgid "Accept contact to allow communication" +#: ../../Zotlabs/Module/Admin/Profs.php:109 +msgid "Edit Profile Field" msgstr "" -#: ../../Zotlabs/Module/Contactedit.php:362 -#: ../../Zotlabs/Module/Connedit.php:658 -msgid "Please select a role for this contact!" +#: ../../Zotlabs/Module/Admin/Profs.php:168 ../../Zotlabs/Widget/Admin.php:36 +msgid "Profile Fields" msgstr "" -#: ../../Zotlabs/Module/Contactedit.php:382 -#: ../../Zotlabs/Module/Connedit.php:678 -msgid "This contact is unreachable from this location." +#: ../../Zotlabs/Module/Admin/Profs.php:169 +msgid "Basic Profile Fields" msgstr "" -#: ../../Zotlabs/Module/Contactedit.php:383 -#: ../../Zotlabs/Module/Connedit.php:679 -msgid "This contact may be unreachable from other channel locations." +#: ../../Zotlabs/Module/Admin/Profs.php:170 +msgid "Advanced Profile Fields" msgstr "" -#: ../../Zotlabs/Module/Contactedit.php:385 -#: ../../Zotlabs/Module/Connedit.php:681 -msgid "Location independence is not supported by their network." +#: ../../Zotlabs/Module/Admin/Profs.php:170 +msgid "(In addition to basic fields)" msgstr "" -#: ../../Zotlabs/Module/Contactedit.php:395 -msgid "View profile" +#: ../../Zotlabs/Module/Admin/Profs.php:172 +msgid "All available fields" msgstr "" -#: ../../Zotlabs/Module/Contactedit.php:397 -#: ../../Zotlabs/Module/Connections.php:405 -msgid "This is a group/forum channel" +#: ../../Zotlabs/Module/Admin/Profs.php:173 +msgid "Custom Fields" msgstr "" -#: ../../Zotlabs/Module/Contactedit.php:408 -msgid "Select a role for this contact" +#: ../../Zotlabs/Module/Admin/Profs.php:177 +msgid "Create Custom Field" msgstr "" -#: ../../Zotlabs/Module/Contactedit.php:420 -#: ../../Zotlabs/Module/Connedit.php:703 -msgid "Slide to adjust your degree of friendship" +#: ../../Zotlabs/Module/Admin/Logs.php:28 +msgid "Log settings updated." msgstr "" -#: ../../Zotlabs/Module/Contactedit.php:422 -#: ../../Zotlabs/Module/Connedit.php:705 -msgid "Custom Filter" +#: ../../Zotlabs/Module/Admin/Logs.php:83 ../../Zotlabs/Widget/Admin.php:54 +#: ../../Zotlabs/Widget/Admin.php:64 +msgid "Logs" msgstr "" -#: ../../Zotlabs/Module/Contactedit.php:423 -#: ../../Zotlabs/Module/Settings/Channel.php:285 -#: ../../Zotlabs/Module/Connedit.php:706 -msgid "Only import posts with this text" +#: ../../Zotlabs/Module/Admin/Logs.php:85 +msgid "Clear" msgstr "" -#: ../../Zotlabs/Module/Contactedit.php:424 -#: ../../Zotlabs/Module/Settings/Channel.php:284 -#: ../../Zotlabs/Module/Connedit.php:707 -msgid "Do not import posts with this text" +#: ../../Zotlabs/Module/Admin/Logs.php:91 +msgid "Debugging" msgstr "" -#: ../../Zotlabs/Module/Contactedit.php:429 -#: ../../Zotlabs/Module/Connedit.php:714 -msgid "Approve contact" +#: ../../Zotlabs/Module/Admin/Logs.php:92 +msgid "Log file" msgstr "" -#: ../../Zotlabs/Module/Contactedit.php:431 -#: ../../Zotlabs/Module/Connedit.php:717 -msgid "Their" +#: ../../Zotlabs/Module/Admin/Logs.php:92 +msgid "" +"Must be writable by web server. Relative to your top-level webserver " +"directory." msgstr "" -#: ../../Zotlabs/Module/Contactedit.php:432 -#: ../../Zotlabs/Module/Connedit.php:718 -msgid "My" +#: ../../Zotlabs/Module/Admin/Logs.php:93 +msgid "Log level" msgstr "" -#: ../../Zotlabs/Module/Contactedit.php:440 -msgid "Roles" +#: ../../Zotlabs/Module/Admin/Addons.php:293 +#, php-format +msgid "Plugin %s disabled." msgstr "" -#: ../../Zotlabs/Module/Contactedit.php:441 -msgid "Compare permissions" +#: ../../Zotlabs/Module/Admin/Addons.php:298 +#, php-format +msgid "Plugin %s enabled." msgstr "" -#: ../../Zotlabs/Module/Contactedit.php:442 -msgid "Permission" +#: ../../Zotlabs/Module/Admin/Addons.php:346 +#: ../../Zotlabs/Module/Admin/Addons.php:444 ../../Zotlabs/Widget/Admin.php:32 +msgid "Addons" msgstr "" -#: ../../Zotlabs/Module/Contactedit.php:445 -#: ../../Zotlabs/Module/Connedit.php:572 -msgid "Affinity" +#: ../../Zotlabs/Module/Admin/Addons.php:357 +msgid "Minimum project version: " msgstr "" -#: ../../Zotlabs/Module/Contactedit.php:446 -msgid "Content filter" +#: ../../Zotlabs/Module/Admin/Addons.php:358 +msgid "Maximum project version: " msgstr "" -#: ../../Zotlabs/Module/Contactedit.php:456 -msgid "Contact updated" +#: ../../Zotlabs/Module/Admin/Addons.php:359 +msgid "Minimum PHP version: " msgstr "" -#: ../../Zotlabs/Module/Contactedit.php:456 -msgid "Contact update failed" +#: ../../Zotlabs/Module/Admin/Addons.php:360 +msgid "Compatible Server Roles: " msgstr "" -#: ../../Zotlabs/Module/Contactedit.php:462 -#: ../../Zotlabs/Module/Connections.php:348 -msgid "Approve connection" +#: ../../Zotlabs/Module/Admin/Addons.php:361 +msgid "Requires: " msgstr "" -#: ../../Zotlabs/Module/Contactedit.php:508 -#: ../../Zotlabs/Module/Contactedit.php:518 -msgid "Refresh succeeded" +#: ../../Zotlabs/Module/Admin/Addons.php:362 +#: ../../Zotlabs/Module/Admin/Addons.php:449 +msgid "Disabled - version incompatibility" msgstr "" -#: ../../Zotlabs/Module/Contactedit.php:511 -msgid "Refresh failed - channel is currently unavailable" +#: ../../Zotlabs/Module/Admin/Addons.php:418 +msgid "Enter the public git repository URL of the addon repo." msgstr "" -#: ../../Zotlabs/Module/Contactedit.php:530 -msgid "Block status updated" +#: ../../Zotlabs/Module/Admin/Addons.php:419 +msgid "Addon repo git URL" msgstr "" -#: ../../Zotlabs/Module/Contactedit.php:534 -msgid "Block failed" +#: ../../Zotlabs/Module/Admin/Addons.php:420 +msgid "Custom repo name" msgstr "" -#: ../../Zotlabs/Module/Contactedit.php:545 -msgid "Ignore status updated" +#: ../../Zotlabs/Module/Admin/Addons.php:420 +msgid "(optional)" msgstr "" -#: ../../Zotlabs/Module/Contactedit.php:549 -msgid "Ignore failed" +#: ../../Zotlabs/Module/Admin/Addons.php:421 +msgid "Download Addon Repo" msgstr "" -#: ../../Zotlabs/Module/Contactedit.php:560 -msgid "Archive status updated" +#: ../../Zotlabs/Module/Admin/Addons.php:428 +msgid "Install new repo" msgstr "" -#: ../../Zotlabs/Module/Contactedit.php:564 -msgid "Archive failed" +#: ../../Zotlabs/Module/Admin/Addons.php:452 +msgid "Manage Repos" msgstr "" -#: ../../Zotlabs/Module/Contactedit.php:575 -msgid "Hide status updated" +#: ../../Zotlabs/Module/Admin/Addons.php:453 +msgid "Installed Addon Repositories" msgstr "" -#: ../../Zotlabs/Module/Contactedit.php:579 -msgid "Hide failed" +#: ../../Zotlabs/Module/Admin/Addons.php:454 +msgid "Install a New Addon Repository" msgstr "" -#: ../../Zotlabs/Module/Contactedit.php:614 -msgid "Contact removed" +#: ../../Zotlabs/Module/Admin/Addons.php:461 +msgid "Switch branch" msgstr "" -#: ../../Zotlabs/Module/Contactedit.php:618 -msgid "Delete failed" +#: ../../Zotlabs/Module/Admin/Dbsync.php:19 +msgid "Update has been marked successful" msgstr "" -#: ../../Zotlabs/Module/Contactedit.php:628 -#: ../../Zotlabs/Module/Connedit.php:487 -msgid "Refresh Permissions" +#: ../../Zotlabs/Module/Admin/Dbsync.php:32 +#, php-format +msgid "Verification of update %s failed. Check system logs." msgstr "" -#: ../../Zotlabs/Module/Contactedit.php:629 -#: ../../Zotlabs/Module/Connedit.php:490 -msgid "Fetch updated permissions" +#: ../../Zotlabs/Module/Admin/Dbsync.php:35 +#: ../../Zotlabs/Module/Admin/Dbsync.php:62 +#, php-format +msgid "Update %s was successfully applied." msgstr "" -#: ../../Zotlabs/Module/Contactedit.php:633 -#: ../../Zotlabs/Module/Connedit.php:494 -msgid "Refresh Photo" +#: ../../Zotlabs/Module/Admin/Dbsync.php:39 +#, php-format +msgid "Verifying update %s did not return a status. Unknown if it succeeded." msgstr "" -#: ../../Zotlabs/Module/Contactedit.php:634 -#: ../../Zotlabs/Module/Connedit.php:497 -msgid "Fetch updated photo" +#: ../../Zotlabs/Module/Admin/Dbsync.php:42 +#, php-format +msgid "Update %s does not contain a verification function." msgstr "" -#: ../../Zotlabs/Module/Contactedit.php:641 -#: ../../Zotlabs/Module/Connedit.php:511 -msgid "Block (or Unblock) all communications with this connection" +#: ../../Zotlabs/Module/Admin/Dbsync.php:46 +#: ../../Zotlabs/Module/Admin/Dbsync.php:69 +#, php-format +msgid "Update function %s could not be found." msgstr "" -#: ../../Zotlabs/Module/Contactedit.php:642 -#: ../../Zotlabs/Module/Connedit.php:512 -msgid "This connection is blocked!" +#: ../../Zotlabs/Module/Admin/Dbsync.php:59 +#, php-format +msgid "Executing update procedure %s failed. Check system logs." msgstr "" -#: ../../Zotlabs/Module/Contactedit.php:646 -#: ../../Zotlabs/Module/Connedit.php:516 -msgid "Unignore" +#: ../../Zotlabs/Module/Admin/Dbsync.php:66 +#, php-format +msgid "" +"Update %s did not return a status. It cannot be determined if it was " +"successful." msgstr "" -#: ../../Zotlabs/Module/Contactedit.php:646 -#: ../../Zotlabs/Module/Connections.php:351 -#: ../../Zotlabs/Module/Connedit.php:516 -msgid "Ignore" +#: ../../Zotlabs/Module/Admin/Dbsync.php:87 +msgid "Failed Updates" msgstr "" -#: ../../Zotlabs/Module/Contactedit.php:648 -#: ../../Zotlabs/Module/Connedit.php:519 -msgid "Ignore (or Unignore) all inbound communications from this connection" +#: ../../Zotlabs/Module/Admin/Dbsync.php:89 +msgid "Mark success (if update was manually applied)" msgstr "" -#: ../../Zotlabs/Module/Contactedit.php:649 -#: ../../Zotlabs/Module/Connedit.php:520 -msgid "This connection is ignored!" +#: ../../Zotlabs/Module/Admin/Dbsync.php:90 +msgid "Attempt to verify this update if a verification procedure exists" msgstr "" -#: ../../Zotlabs/Module/Contactedit.php:653 -#: ../../Zotlabs/Module/Connedit.php:524 -msgid "Unarchive" +#: ../../Zotlabs/Module/Admin/Dbsync.php:91 +msgid "Attempt to execute this update step automatically" msgstr "" -#: ../../Zotlabs/Module/Contactedit.php:653 -#: ../../Zotlabs/Module/Connedit.php:524 -msgid "Archive" +#: ../../Zotlabs/Module/Admin/Dbsync.php:96 +msgid "No failed updates." msgstr "" -#: ../../Zotlabs/Module/Contactedit.php:655 -#: ../../Zotlabs/Module/Connedit.php:527 +#: ../../Zotlabs/Module/Admin/Security.php:89 msgid "" -"Archive (or Unarchive) this connection - mark channel dead but keep content" +"By default, unfiltered HTML is allowed in embedded media. This is inherently " +"insecure." msgstr "" -#: ../../Zotlabs/Module/Contactedit.php:656 -#: ../../Zotlabs/Module/Connedit.php:528 -msgid "This connection is archived!" +#: ../../Zotlabs/Module/Admin/Security.php:92 +msgid "" +"The recommended setting is to only allow unfiltered HTML from the following " +"sites:" msgstr "" -#: ../../Zotlabs/Module/Contactedit.php:660 -#: ../../Zotlabs/Module/Connedit.php:532 -msgid "Unhide" +#: ../../Zotlabs/Module/Admin/Security.php:93 +msgid "" +"https://youtube.com/
https://www.youtube.com/
https://youtu.be/" +"
https://vimeo.com/
https://soundcloud.com/
" msgstr "" -#: ../../Zotlabs/Module/Contactedit.php:660 -#: ../../Zotlabs/Module/Connedit.php:532 -msgid "Hide" +#: ../../Zotlabs/Module/Admin/Security.php:94 +msgid "" +"All other embedded content will be filtered, unless " +"embedded content from that site is explicitly blocked." msgstr "" -#: ../../Zotlabs/Module/Contactedit.php:662 -#: ../../Zotlabs/Module/Connedit.php:535 -msgid "Hide or Unhide this connection from your other connections" +#: ../../Zotlabs/Module/Admin/Security.php:99 ../../Zotlabs/Widget/Admin.php:30 +msgid "Security" msgstr "" -#: ../../Zotlabs/Module/Contactedit.php:663 -#: ../../Zotlabs/Module/Connedit.php:536 -msgid "This connection is hidden!" +#: ../../Zotlabs/Module/Admin/Security.php:101 +msgid "Block public" msgstr "" -#: ../../Zotlabs/Module/Contactedit.php:669 -#: ../../Zotlabs/Module/Connedit.php:543 -msgid "Delete this connection" +#: ../../Zotlabs/Module/Admin/Security.php:101 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently authenticated." msgstr "" -#: ../../Zotlabs/Module/Directory.php:121 -msgid "No default suggestions were found." +#: ../../Zotlabs/Module/Admin/Security.php:102 +msgid "Provide a cloud root directory" msgstr "" -#: ../../Zotlabs/Module/Directory.php:281 -#, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Directory.php:292 -msgid "Gender: " +#: ../../Zotlabs/Module/Admin/Security.php:102 +msgid "" +"The cloud root directory lists all channel names which provide public files" msgstr "" -#: ../../Zotlabs/Module/Directory.php:294 -msgid "Status: " +#: ../../Zotlabs/Module/Admin/Security.php:103 +msgid "Show total disk space available to cloud uploads" msgstr "" -#: ../../Zotlabs/Module/Directory.php:296 -msgid "Homepage: " +#: ../../Zotlabs/Module/Admin/Security.php:104 +msgid "Set \"Transport Security\" HTTP header" msgstr "" -#: ../../Zotlabs/Module/Directory.php:359 -msgid "Description:" +#: ../../Zotlabs/Module/Admin/Security.php:105 +msgid "Set \"Content Security Policy\" HTTP header" msgstr "" -#: ../../Zotlabs/Module/Directory.php:370 -msgid "Public Forum:" +#: ../../Zotlabs/Module/Admin/Security.php:106 +msgid "Allowed email domains" msgstr "" -#: ../../Zotlabs/Module/Directory.php:373 -msgid "Keywords: " +#: ../../Zotlabs/Module/Admin/Security.php:106 +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 "" -#: ../../Zotlabs/Module/Directory.php:376 -msgid "Don't suggest" +#: ../../Zotlabs/Module/Admin/Security.php:107 +msgid "Not allowed email domains" msgstr "" -#: ../../Zotlabs/Module/Directory.php:378 -msgid "Common connections (estimated):" +#: ../../Zotlabs/Module/Admin/Security.php:107 +msgid "" +"Comma separated list of domains which are not allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains, unless allowed domains have been defined." msgstr "" -#: ../../Zotlabs/Module/Directory.php:427 -msgid "Global Directory" +#: ../../Zotlabs/Module/Admin/Security.php:108 +msgid "Allow communications only from these sites" msgstr "" -#: ../../Zotlabs/Module/Directory.php:427 -msgid "Local Directory" +#: ../../Zotlabs/Module/Admin/Security.php:108 +msgid "" +"One site per line. Leave empty to allow communication from anywhere by " +"default" msgstr "" -#: ../../Zotlabs/Module/Directory.php:433 -msgid "Finding:" +#: ../../Zotlabs/Module/Admin/Security.php:109 +msgid "Block communications from these sites" msgstr "" -#: ../../Zotlabs/Module/Directory.php:438 -msgid "next page" +#: ../../Zotlabs/Module/Admin/Security.php:110 +msgid "Allow communications only from these channels" msgstr "" -#: ../../Zotlabs/Module/Directory.php:438 -msgid "previous page" +#: ../../Zotlabs/Module/Admin/Security.php:110 +msgid "" +"One channel (hash) per line. Leave empty to allow from any channel by default" msgstr "" -#: ../../Zotlabs/Module/Directory.php:439 -msgid "Sort options" +#: ../../Zotlabs/Module/Admin/Security.php:111 +msgid "Block communications from these channels" msgstr "" -#: ../../Zotlabs/Module/Directory.php:440 -msgid "Alphabetic" +#: ../../Zotlabs/Module/Admin/Security.php:112 +msgid "Only allow embeds from secure (SSL) websites and links." msgstr "" -#: ../../Zotlabs/Module/Directory.php:441 -msgid "Reverse Alphabetic" +#: ../../Zotlabs/Module/Admin/Security.php:113 +msgid "Allow unfiltered embedded HTML content only from these domains" msgstr "" -#: ../../Zotlabs/Module/Directory.php:442 -msgid "Newest to Oldest" +#: ../../Zotlabs/Module/Admin/Security.php:113 +msgid "One site per line. By default embedded content is filtered." msgstr "" -#: ../../Zotlabs/Module/Directory.php:443 -msgid "Oldest to Newest" +#: ../../Zotlabs/Module/Admin/Security.php:114 +msgid "Block embedded HTML from these domains" msgstr "" -#: ../../Zotlabs/Module/Directory.php:460 -msgid "No entries (some entries may be hidden)." +#: ../../Zotlabs/Module/Admin/Security.php:115 +msgid "Allow SVG thumbnails in file browser" msgstr "" -#: ../../Zotlabs/Module/Api.php:74 ../../Zotlabs/Module/Api.php:95 -msgid "Authorize application connection" +#: ../../Zotlabs/Module/Admin/Security.php:115 +msgid "WARNING: SVG images may contain malicious code." msgstr "" -#: ../../Zotlabs/Module/Api.php:75 -msgid "Return to your app and insert this Security Code:" +#: ../../Zotlabs/Module/Admin/Security.php:116 +msgid "Allow embedded (inline) PDF files" msgstr "" -#: ../../Zotlabs/Module/Api.php:85 -msgid "Please login to continue." +#: ../../Zotlabs/Module/Contactedit.php:50 +msgid "Invalid abook_id" msgstr "" -#: ../../Zotlabs/Module/Api.php:97 -msgid "" -"Do you want to authorize this application to access your posts and contacts, " -"and/or create new posts for you?" +#: ../../Zotlabs/Module/Contactedit.php:395 +msgid "View profile" msgstr "" -#: ../../Zotlabs/Module/Regmod.php:15 -msgid "Please login." +#: ../../Zotlabs/Module/Contactedit.php:408 +msgid "Select a role for this contact" msgstr "" -#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:155 -#: ../../Zotlabs/Module/Editblock.php:113 -msgid "Block Name" +#: ../../Zotlabs/Module/Contactedit.php:409 +#: ../../Zotlabs/Widget/Permcats.php:92 +msgid "Contact roles" msgstr "" -#: ../../Zotlabs/Module/Blocks.php:156 -msgid "Block Title" +#: ../../Zotlabs/Module/Contactedit.php:440 +msgid "Roles" msgstr "" -#: ../../Zotlabs/Module/Email_validation.php:36 -msgid "Email Verification Required" +#: ../../Zotlabs/Module/Contactedit.php:441 +msgid "Compare permissions" msgstr "" -#: ../../Zotlabs/Module/Email_validation.php:37 -#, php-format -msgid "" -"A verification token was sent to your email address [%s]. Enter that token " -"here to complete the account verification step. Please allow a few minutes " -"for delivery, and check your spam folder if you do not see the message." +#: ../../Zotlabs/Module/Contactedit.php:442 +msgid "Permission" msgstr "" -#: ../../Zotlabs/Module/Email_validation.php:38 -msgid "Resend Email" +#: ../../Zotlabs/Module/Contactedit.php:443 +#: ../../Zotlabs/Widget/Privacygroups.php:54 +msgid "Privacy groups" msgstr "" -#: ../../Zotlabs/Module/Email_validation.php:41 -msgid "Validation token" +#: ../../Zotlabs/Module/Contactedit.php:446 +msgid "Content filter" msgstr "" -#: ../../Zotlabs/Module/Attach.php:68 -msgid "Item not available." +#: ../../Zotlabs/Module/Contactedit.php:456 +msgid "Contact updated" msgstr "" -#: ../../Zotlabs/Module/Vote.php:40 -msgid "Poll not found." +#: ../../Zotlabs/Module/Contactedit.php:456 +msgid "Contact update failed" msgstr "" -#: ../../Zotlabs/Module/Vote.php:71 -msgid "Invalid response." +#: ../../Zotlabs/Module/Contactedit.php:508 +#: ../../Zotlabs/Module/Contactedit.php:518 +msgid "Refresh succeeded" msgstr "" -#: ../../Zotlabs/Module/Vote.php:127 -msgid "Response submitted. Updates may not appear instantly." +#: ../../Zotlabs/Module/Contactedit.php:511 +msgid "Refresh failed - channel is currently unavailable" msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:128 -#: ../../Zotlabs/Module/Cover_photo.php:85 -msgid "Image uploaded but image cropping failed." +#: ../../Zotlabs/Module/Contactedit.php:530 +msgid "Block status updated" msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:184 -#: ../../Zotlabs/Module/Cover_photo.php:212 -msgid "Image resize failed." +#: ../../Zotlabs/Module/Contactedit.php:534 +msgid "Block failed" msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:350 -#: ../../Zotlabs/Module/Cover_photo.php:265 -msgid "Image upload failed." +#: ../../Zotlabs/Module/Contactedit.php:545 +msgid "Ignore status updated" msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:370 -#: ../../Zotlabs/Module/Cover_photo.php:282 -msgid "Unable to process image." +#: ../../Zotlabs/Module/Contactedit.php:549 +msgid "Ignore failed" msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:432 -#: ../../Zotlabs/Module/Profile_photo.php:497 -#: ../../Zotlabs/Module/Cover_photo.php:367 -#: ../../Zotlabs/Module/Cover_photo.php:382 -msgid "Photo not available." +#: ../../Zotlabs/Module/Contactedit.php:560 +msgid "Archive status updated" msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:544 -msgid "" -"This profile photo will be visible to anybody on the internet and may be " -"distributed to other websites." +#: ../../Zotlabs/Module/Contactedit.php:564 +msgid "Archive failed" msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:544 -msgid "" -"This profile photo will be visible only to channels with permission to view " -"this profile." +#: ../../Zotlabs/Module/Contactedit.php:575 +msgid "Hide status updated" msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:546 -msgid "Use Photo for Profile" +#: ../../Zotlabs/Module/Contactedit.php:579 +msgid "Hide failed" msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:546 -msgid "Change Profile Photo" +#: ../../Zotlabs/Module/Contactedit.php:614 +msgid "Contact removed" msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:548 -msgid "Reset to default" +#: ../../Zotlabs/Module/Contactedit.php:618 +msgid "Delete failed" msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:551 -#: ../../Zotlabs/Module/Profile_photo.php:552 -#: ../../Zotlabs/Module/Cover_photo.php:426 -#: ../../Zotlabs/Module/Cover_photo.php:427 -msgid "Use a photo from your albums" +#: ../../Zotlabs/Module/Settings/Directory.php:40 +msgid "Directory Settings" msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:562 -msgid "Select existing" +#: ../../Zotlabs/Module/Settings/Features.php:45 +msgid "Additional Features" msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:581 -#: ../../Zotlabs/Module/Cover_photo.php:455 -msgid "Crop Image" +#: ../../Zotlabs/Module/Settings/Display.php:125 +#, php-format +msgid "%s - (Experimental)" msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:582 -#: ../../Zotlabs/Module/Cover_photo.php:456 -msgid "Please adjust the image cropping for optimum viewing." +#: ../../Zotlabs/Module/Settings/Display.php:181 +msgid "Display Settings" msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:584 -msgid "Done editing" +#: ../../Zotlabs/Module/Settings/Display.php:182 +msgid "Theme Settings" msgstr "" -#: ../../Zotlabs/Module/Editblock.php:138 -msgid "Edit Block" +#: ../../Zotlabs/Module/Settings/Display.php:183 +msgid "Custom Theme Settings" msgstr "" -#: ../../Zotlabs/Module/Filer.php:53 -msgid "Enter a folder name" +#: ../../Zotlabs/Module/Settings/Display.php:184 +msgid "Content Settings" msgstr "" -#: ../../Zotlabs/Module/Filer.php:53 -msgid "or select an existing folder (doubleclick)" +#: ../../Zotlabs/Module/Settings/Display.php:190 +msgid "Display Theme:" msgstr "" -#: ../../Zotlabs/Module/Filer.php:55 ../../Zotlabs/Lib/ThreadItem.php:194 -msgid "Save to Folder" +#: ../../Zotlabs/Module/Settings/Display.php:191 +msgid "Select scheme" msgstr "" -#: ../../Zotlabs/Module/Editlayout.php:128 ../../Zotlabs/Module/Layouts.php:129 -#: ../../Zotlabs/Module/Layouts.php:189 -msgid "Layout Name" +#: ../../Zotlabs/Module/Settings/Display.php:193 +msgid "Preload images before rendering the page" msgstr "" -#: ../../Zotlabs/Module/Editlayout.php:129 ../../Zotlabs/Module/Layouts.php:132 -msgid "Layout Description (Optional)" +#: ../../Zotlabs/Module/Settings/Display.php:193 +msgid "" +"The subjective page load time will be longer but the page will be ready when " +"displayed" msgstr "" -#: ../../Zotlabs/Module/Editlayout.php:137 -msgid "Edit Layout" +#: ../../Zotlabs/Module/Settings/Display.php:194 +msgid "Enable user zoom on mobile devices" msgstr "" -#: ../../Zotlabs/Module/Connections.php:58 -#: ../../Zotlabs/Module/Connections.php:116 -#: ../../Zotlabs/Module/Connections.php:282 -msgid "Active" +#: ../../Zotlabs/Module/Settings/Display.php:195 +msgid "Update browser every xx seconds" msgstr "" -#: ../../Zotlabs/Module/Connections.php:63 -#: ../../Zotlabs/Module/Connections.php:182 -#: ../../Zotlabs/Module/Connections.php:287 -msgid "Blocked" +#: ../../Zotlabs/Module/Settings/Display.php:195 +msgid "Minimum of 10 seconds, no maximum" msgstr "" -#: ../../Zotlabs/Module/Connections.php:68 -#: ../../Zotlabs/Module/Connections.php:189 -#: ../../Zotlabs/Module/Connections.php:286 -msgid "Ignored" +#: ../../Zotlabs/Module/Settings/Display.php:196 +msgid "Maximum number of conversations to load at any time:" msgstr "" -#: ../../Zotlabs/Module/Connections.php:73 -#: ../../Zotlabs/Module/Connections.php:203 -#: ../../Zotlabs/Module/Connections.php:285 -msgid "Hidden" +#: ../../Zotlabs/Module/Settings/Display.php:196 +msgid "Maximum of 30 items" msgstr "" -#: ../../Zotlabs/Module/Connections.php:78 -#: ../../Zotlabs/Module/Connections.php:196 -msgid "Archived/Unreachable" +#: ../../Zotlabs/Module/Settings/Display.php:197 +msgid "Show emoticons (smilies) as images" msgstr "" -#: ../../Zotlabs/Module/Connections.php:83 -#: ../../Zotlabs/Module/Connections.php:92 ../../Zotlabs/Module/Menu.php:180 -#: ../../Zotlabs/Module/Notifications.php:101 -msgid "New" +#: ../../Zotlabs/Module/Settings/Display.php:198 +msgid "Link post titles to source" msgstr "" -#: ../../Zotlabs/Module/Connections.php:158 -msgid "Active Connections" +#: ../../Zotlabs/Module/Settings/Display.php:200 +#: ../../Zotlabs/Widget/Newmember.php:80 +msgid "New Member Links" msgstr "" -#: ../../Zotlabs/Module/Connections.php:161 -msgid "Show active connections" +#: ../../Zotlabs/Module/Settings/Display.php:200 +msgid "Display new member quick links menu" msgstr "" -#: ../../Zotlabs/Module/Connections.php:168 -msgid "Show pending (new) connections" +#: ../../Zotlabs/Module/Settings/Conversation.php:23 +msgid "Settings saved." msgstr "" -#: ../../Zotlabs/Module/Connections.php:185 -msgid "Only show blocked connections" +#: ../../Zotlabs/Module/Settings/Conversation.php:25 +msgid "Settings saved. Reload page please." msgstr "" -#: ../../Zotlabs/Module/Connections.php:192 -msgid "Only show ignored connections" +#: ../../Zotlabs/Module/Settings/Conversation.php:47 +msgid "Conversation Settings" msgstr "" -#: ../../Zotlabs/Module/Connections.php:199 -msgid "Only show archived/unreachable connections" +#: ../../Zotlabs/Module/Settings/Channel_home.php:46 +#: ../../Zotlabs/Module/Settings/Network.php:42 +msgid "Max height of content (in pixels)" msgstr "" -#: ../../Zotlabs/Module/Connections.php:206 -msgid "Only show hidden connections" +#: ../../Zotlabs/Module/Settings/Channel_home.php:48 +#: ../../Zotlabs/Module/Settings/Network.php:44 +msgid "Click to expand content exceeding this height" msgstr "" -#: ../../Zotlabs/Module/Connections.php:221 -msgid "Show all connections" +#: ../../Zotlabs/Module/Settings/Channel_home.php:61 +msgid "Personal menu to display in your channel pages" msgstr "" -#: ../../Zotlabs/Module/Connections.php:283 -msgid "Pending approval" +#: ../../Zotlabs/Module/Settings/Channel_home.php:88 +msgid "Channel Home Settings" msgstr "" -#: ../../Zotlabs/Module/Connections.php:284 -msgid "Archived" +#: ../../Zotlabs/Module/Settings/Connections.php:40 +msgid "Connections Settings" msgstr "" -#: ../../Zotlabs/Module/Connections.php:288 -msgid "Not connected at this location" +#: ../../Zotlabs/Module/Settings/Account.php:21 +msgid "Not valid email." msgstr "" -#: ../../Zotlabs/Module/Connections.php:327 -#, php-format -msgid "%1$s [%2$s]" +#: ../../Zotlabs/Module/Settings/Account.php:24 +msgid "Protected email address. Cannot change to that email." msgstr "" -#: ../../Zotlabs/Module/Connections.php:328 -msgid "Edit connection" +#: ../../Zotlabs/Module/Settings/Account.php:33 +msgid "System failure storing new email. Please try again." msgstr "" -#: ../../Zotlabs/Module/Connections.php:330 -msgid "Delete connection" +#: ../../Zotlabs/Module/Settings/Account.php:51 +msgid "Password verification failed." msgstr "" -#: ../../Zotlabs/Module/Connections.php:336 -msgid "Channel address" +#: ../../Zotlabs/Module/Settings/Account.php:58 +msgid "Passwords do not match. Password unchanged." msgstr "" -#: ../../Zotlabs/Module/Connections.php:341 -msgid "Call" +#: ../../Zotlabs/Module/Settings/Account.php:62 +msgid "Empty passwords are not allowed. Password unchanged." msgstr "" -#: ../../Zotlabs/Module/Connections.php:343 -msgid "Status" +#: ../../Zotlabs/Module/Settings/Account.php:76 +msgid "Password changed." msgstr "" -#: ../../Zotlabs/Module/Connections.php:346 -msgid "Connected" +#: ../../Zotlabs/Module/Settings/Account.php:78 +msgid "Password update failed. Please try again." msgstr "" -#: ../../Zotlabs/Module/Connections.php:350 -msgid "Ignore connection" +#: ../../Zotlabs/Module/Settings/Account.php:103 +msgid "Account Settings" msgstr "" -#: ../../Zotlabs/Module/Connections.php:352 -msgid "Recent activity" +#: ../../Zotlabs/Module/Settings/Account.php:104 +msgid "Current Password" msgstr "" -#: ../../Zotlabs/Module/Connections.php:358 -msgid "Connect at this location" +#: ../../Zotlabs/Module/Settings/Account.php:105 +msgid "Enter New Password" msgstr "" -#: ../../Zotlabs/Module/Connections.php:395 -#: ../../Zotlabs/Module/Connedit.php:686 -msgid "Contact role" +#: ../../Zotlabs/Module/Settings/Account.php:106 +msgid "Confirm New Password" msgstr "" -#: ../../Zotlabs/Module/Connections.php:396 -msgid "Search your connections" +#: ../../Zotlabs/Module/Settings/Account.php:106 +msgid "Leave password fields blank unless changing" msgstr "" -#: ../../Zotlabs/Module/Connections.php:397 -msgid "Contact search" +#: ../../Zotlabs/Module/Settings/Account.php:108 +msgid "DId2 or Email Address:" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:196 -#: ../../Zotlabs/Module/Cover_photo.php:254 -msgid "Cover Photos" +#: ../../Zotlabs/Module/Settings/Account.php:111 +msgid "Remove this account including all its channels" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:418 -msgid "Your cover photo may be visible to anybody on the internet" +#: ../../Zotlabs/Module/Settings/Featured.php:25 +msgid "No feature settings configured" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:420 -msgid "Upload File:" +#: ../../Zotlabs/Module/Settings/Featured.php:34 +msgid "Addon Settings" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:421 -msgid "Select a profile:" +#: ../../Zotlabs/Module/Settings/Featured.php:35 +msgid "Please save/submit changes to any panel before opening another." msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:422 -msgid "Change Cover Photo" +#: ../../Zotlabs/Module/Settings/Channel.php:105 +#: ../../Zotlabs/Module/Settings/Channel.php:217 +msgid "Please select a channel role" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:438 -msgid "Select existing photo" +#: ../../Zotlabs/Module/Settings/Channel.php:194 +msgid "Your channel address is" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:458 -msgid "Done Editing" +#: ../../Zotlabs/Module/Settings/Channel.php:197 +msgid "Your files/photos are accessible via WebDAV at" msgstr "" -#: ../../Zotlabs/Module/Photos.php:80 -msgid "Page owner information could not be retrieved." +#: ../../Zotlabs/Module/Settings/Channel.php:228 +msgid "Channel Settings" msgstr "" -#: ../../Zotlabs/Module/Photos.php:96 ../../Zotlabs/Module/Photos.php:115 -msgid "Album not found." +#: ../../Zotlabs/Module/Settings/Channel.php:233 +#: ../../Zotlabs/Module/New_channel.php:178 +msgid "Channel role" msgstr "" -#: ../../Zotlabs/Module/Photos.php:105 -msgid "Delete Album" +#: ../../Zotlabs/Module/Settings/Channel.php:235 +msgid "Basic Settings" msgstr "" -#: ../../Zotlabs/Module/Photos.php:177 ../../Zotlabs/Module/Photos.php:1065 -msgid "Delete Photo" +#: ../../Zotlabs/Module/Settings/Channel.php:236 +msgid "Channel timezone:" msgstr "" -#: ../../Zotlabs/Module/Photos.php:534 -msgid "No photos selected" +#: ../../Zotlabs/Module/Settings/Channel.php:237 +msgid "Default post location:" msgstr "" -#: ../../Zotlabs/Module/Photos.php:583 -msgid "Access to this item is restricted." +#: ../../Zotlabs/Module/Settings/Channel.php:237 +msgid "Geographical location to display on your posts" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:238 +msgid "Use browser location" msgstr "" -#: ../../Zotlabs/Module/Photos.php:626 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." +#: ../../Zotlabs/Module/Settings/Channel.php:239 +msgid "Adult content" msgstr "" -#: ../../Zotlabs/Module/Photos.php:629 -#, php-format -msgid "%1$.2f MB photo storage used." +#: ../../Zotlabs/Module/Settings/Channel.php:239 +msgid "This channel frequently or regularly publishes adult content" msgstr "" -#: ../../Zotlabs/Module/Photos.php:671 -msgid "Upload Photos" +#: ../../Zotlabs/Module/Settings/Channel.php:240 +msgid "Maximum Friend Requests/Day:" msgstr "" -#: ../../Zotlabs/Module/Photos.php:675 -msgid "Enter an album name" +#: ../../Zotlabs/Module/Settings/Channel.php:240 +msgid "May reduce spam activity" msgstr "" -#: ../../Zotlabs/Module/Photos.php:676 -msgid "or select an existing album (doubleclick)" +#: ../../Zotlabs/Module/Settings/Channel.php:242 +msgid "By default post a status message when:" msgstr "" -#: ../../Zotlabs/Module/Photos.php:677 -msgid "Create a status post for this upload" +#: ../../Zotlabs/Module/Settings/Channel.php:243 +msgid "accepting a friend request" msgstr "" -#: ../../Zotlabs/Module/Photos.php:679 -msgid "Description (optional)" +#: ../../Zotlabs/Module/Settings/Channel.php:244 +msgid "joining a forum/community" msgstr "" -#: ../../Zotlabs/Module/Photos.php:767 -msgid "Show Newest First" +#: ../../Zotlabs/Module/Settings/Channel.php:245 +msgid "making an interesting profile change" msgstr "" -#: ../../Zotlabs/Module/Photos.php:769 -msgid "Show Oldest First" +#: ../../Zotlabs/Module/Settings/Channel.php:246 +msgid "Send a notification email when:" msgstr "" -#: ../../Zotlabs/Module/Photos.php:826 ../../Zotlabs/Module/Photos.php:1368 -msgid "Add Photos" +#: ../../Zotlabs/Module/Settings/Channel.php:247 +msgid "You receive a connection request" msgstr "" -#: ../../Zotlabs/Module/Photos.php:874 -msgid "Permission denied. Access to this item may be restricted." +#: ../../Zotlabs/Module/Settings/Channel.php:248 +msgid "Your connections are confirmed" msgstr "" -#: ../../Zotlabs/Module/Photos.php:876 -msgid "Photo not available" +#: ../../Zotlabs/Module/Settings/Channel.php:249 +msgid "Someone writes on your profile wall" msgstr "" -#: ../../Zotlabs/Module/Photos.php:934 -msgid "Use as profile photo" +#: ../../Zotlabs/Module/Settings/Channel.php:250 +msgid "Someone writes a followup comment" msgstr "" -#: ../../Zotlabs/Module/Photos.php:935 -msgid "Use as cover photo" +#: ../../Zotlabs/Module/Settings/Channel.php:251 +msgid "You receive a private message" msgstr "" -#: ../../Zotlabs/Module/Photos.php:942 -msgid "Private Photo" +#: ../../Zotlabs/Module/Settings/Channel.php:252 +msgid "You receive a friend suggestion" msgstr "" -#: ../../Zotlabs/Module/Photos.php:957 -msgid "View Full Size" +#: ../../Zotlabs/Module/Settings/Channel.php:253 +msgid "You are tagged in a post" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1039 -msgid "Edit photo" +#: ../../Zotlabs/Module/Settings/Channel.php:254 +msgid "You are poked/prodded/etc. in a post" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1041 -msgid "Rotate CW (right)" +#: ../../Zotlabs/Module/Settings/Channel.php:255 +msgid "Someone likes your post/comment" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1042 -msgid "Rotate CCW (left)" +#: ../../Zotlabs/Module/Settings/Channel.php:256 +msgid "Show visual notifications including:" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1045 -msgid "Move photo to album" +#: ../../Zotlabs/Module/Settings/Channel.php:257 +msgid "Unseen stream activity" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1046 -msgid "Enter a new album name" +#: ../../Zotlabs/Module/Settings/Channel.php:258 +msgid "Unseen channel activity" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1047 -msgid "or select an existing one (doubleclick)" +#: ../../Zotlabs/Module/Settings/Channel.php:259 +msgid "Unseen private messages" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1052 -msgid "Add a Tag" +#: ../../Zotlabs/Module/Settings/Channel.php:259 +#: ../../Zotlabs/Module/Settings/Channel.php:264 +#: ../../Zotlabs/Module/Settings/Channel.php:265 +#: ../../Zotlabs/Module/Settings/Channel.php:266 +msgid "Recommended" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1060 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +#: ../../Zotlabs/Module/Settings/Channel.php:260 +msgid "Upcoming events" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1063 -msgid "Flag as adult in album view" +#: ../../Zotlabs/Module/Settings/Channel.php:261 +msgid "Events today" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1082 ../../Zotlabs/Lib/ThreadItem.php:317 -msgid "I like this (toggle)" +#: ../../Zotlabs/Module/Settings/Channel.php:262 +msgid "Upcoming birthdays" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1083 ../../Zotlabs/Lib/ThreadItem.php:318 -msgid "I don't like this (toggle)" +#: ../../Zotlabs/Module/Settings/Channel.php:262 +msgid "Not available in all themes" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1101 ../../Zotlabs/Module/Photos.php:1217 -#: ../../Zotlabs/Lib/ThreadItem.php:832 -msgid "This is you" +#: ../../Zotlabs/Module/Settings/Channel.php:263 +msgid "System (personal) notifications" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1138 ../../Zotlabs/Module/Photos.php:1150 -#: ../../Zotlabs/Lib/ThreadItem.php:237 ../../Zotlabs/Lib/ThreadItem.php:249 -msgid "View all" +#: ../../Zotlabs/Module/Settings/Channel.php:264 +msgid "System info messages" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1251 -msgid "Photo Tools" +#: ../../Zotlabs/Module/Settings/Channel.php:265 +msgid "System critical alerts" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1260 -msgid "In This Photo:" +#: ../../Zotlabs/Module/Settings/Channel.php:266 +msgid "New connections" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1265 -msgid "Map" +#: ../../Zotlabs/Module/Settings/Channel.php:267 +msgid "System Registrations" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1273 ../../Zotlabs/Lib/ThreadItem.php:497 -msgctxt "noun" -msgid "Likes" +#: ../../Zotlabs/Module/Settings/Channel.php:268 +msgid "Unseen shared files" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1274 ../../Zotlabs/Lib/ThreadItem.php:498 -msgctxt "noun" -msgid "Dislikes" +#: ../../Zotlabs/Module/Settings/Channel.php:269 +msgid "Unseen public stream activity" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:19 -msgid "No valid account found." +#: ../../Zotlabs/Module/Settings/Channel.php:270 +msgid "Unseen likes and dislikes" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:33 -msgid "Password reset request issued. Check your email." +#: ../../Zotlabs/Module/Settings/Channel.php:271 +msgid "Unseen forum posts" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:108 -#, php-format -msgid "Site Member (%s)" +#: ../../Zotlabs/Module/Settings/Channel.php:272 +msgid "Email notification hub (hostname)" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:44 ../../Zotlabs/Module/Lostpass.php:49 +#: ../../Zotlabs/Module/Settings/Channel.php:272 #, php-format -msgid "Password reset requested at %s" +msgid "" +"If your channel is mirrored to multiple hubs, set this to your preferred " +"location. This will prevent duplicate email notifications. Example: %s" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:68 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." +#: ../../Zotlabs/Module/Settings/Channel.php:273 +msgid "Show new wall posts, private messages and connections under Notices" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:91 ../../boot.php:1757 -msgid "Password Reset" +#: ../../Zotlabs/Module/Settings/Channel.php:274 +msgid "Mark all notices of the thread read if a notice is clicked" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your password has been reset as requested." +#: ../../Zotlabs/Module/Settings/Channel.php:274 +msgid "If no, only the clicked notice will be marked read" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:93 -msgid "Your new password is" +#: ../../Zotlabs/Module/Settings/Channel.php:275 +msgid "" +"Desktop notifications are unavailable because the required browser " +"permission has not been granted" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:94 -msgid "Save or copy your new password - and then" +#: ../../Zotlabs/Module/Settings/Channel.php:276 +msgid "Grant permission" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:95 -msgid "click here to login" +#: ../../Zotlabs/Module/Settings/Channel.php:277 +msgid "Notify me of events this many days in advance" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:96 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." +#: ../../Zotlabs/Module/Settings/Channel.php:277 +msgid "Must be greater than 0" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:117 -#, php-format -msgid "Your password has changed at %s" +#: ../../Zotlabs/Module/Settings/Channel.php:280 +msgid "Default photo upload folder" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Forgot your Password?" +#: ../../Zotlabs/Module/Settings/Channel.php:280 +#: ../../Zotlabs/Module/Settings/Channel.php:281 +msgid "%Y - current year, %m - current month" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:131 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." +#: ../../Zotlabs/Module/Settings/Channel.php:281 +msgid "Default file upload folder" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:132 -msgid "Email Address" +#: ../../Zotlabs/Module/Settings/Channel.php:282 +#: ../../Zotlabs/Module/Removeme.php:60 ../../Zotlabs/Module/Removeme.php:64 +msgid "Remove Channel" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:133 ../../Zotlabs/Module/Pdledit.php:76 -msgid "Reset" +#: ../../Zotlabs/Module/Settings/Channel.php:283 +msgid "Remove this channel." msgstr "" -#: ../../Zotlabs/Module/Follow.php:93 -msgid "Connection added." +#: ../../Zotlabs/Module/Settings/Channel.php:284 +msgid "Expire other channel content after this many days" msgstr "" -#: ../../Zotlabs/Module/Page.php:39 ../../Zotlabs/Module/Block.php:29 -msgid "Invalid item." +#: ../../Zotlabs/Module/Settings/Channel.php:284 +msgid "0 or blank to use the website limit." msgstr "" -#: ../../Zotlabs/Module/Page.php:174 -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " -"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, " -"quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " -"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " -"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " -"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +#: ../../Zotlabs/Module/Settings/Channel.php:284 +#, php-format +msgid "This website expires after %d days." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:26 ../../Zotlabs/Module/Profiles.php:214 -#: ../../Zotlabs/Module/Profiles.php:643 -msgid "Profile not found." +#: ../../Zotlabs/Module/Settings/Channel.php:284 +msgid "This website does not expire imported content." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:46 -msgid "Profile deleted." +#: ../../Zotlabs/Module/Settings/Channel.php:284 +msgid "The website limit takes precedence if lower than your limit." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:70 ../../Zotlabs/Module/Profiles.php:107 -msgid "Profile-" +#: ../../Zotlabs/Module/Settings/Channel.php:285 +#: ../../Zotlabs/Module/Settings/Channel.php:286 +msgid "" +"Words one per line or #tags, $categories, /patterns/, lang=xx, lang!=xx - " +"leave blank to import all posts" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:92 ../../Zotlabs/Module/Profiles.php:129 -msgid "New profile created." +#: ../../Zotlabs/Module/Settings/Editor.php:40 +msgid "Editor Settings" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:113 -msgid "Profile unavailable to clone." +#: ../../Zotlabs/Module/Settings/Network.php:59 +msgid "Stream Settings" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:148 -msgid "Profile unavailable to export." +#: ../../Zotlabs/Module/Settings/Events.php:40 +msgid "Events Settings" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:225 -msgid "Profile Name is required." +#: ../../Zotlabs/Module/Settings/Calendar.php:40 +msgid "Calendar Settings" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:430 -msgid "Marital Status" +#: ../../Zotlabs/Module/Settings/Profiles.php:41 +msgid "Default profile for new contacts" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:434 -msgid "Romantic Partner" +#: ../../Zotlabs/Module/Settings/Profiles.php:49 +msgid "Profiles Settings" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:438 ../../Zotlabs/Module/Profiles.php:789 -msgid "Likes" +#: ../../Zotlabs/Module/Settings/Photos.php:40 +msgid "Photos Settings" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:442 ../../Zotlabs/Module/Profiles.php:790 -msgid "Dislikes" +#: ../../Zotlabs/Module/Settings/Privacy.php:39 +msgid "Privacy settings updated." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Privacy.php:57 +msgid "Only those you specifically allow" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:446 ../../Zotlabs/Module/Profiles.php:797 -msgid "Work/Employment" +#: ../../Zotlabs/Module/Settings/Privacy.php:58 +msgid "Approved connections" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:449 -msgid "Religion" +#: ../../Zotlabs/Module/Settings/Privacy.php:59 +msgid "Any connections" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:453 -msgid "Political Views" +#: ../../Zotlabs/Module/Settings/Privacy.php:60 +msgid "Anybody on this website" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:461 -msgid "Sexual Preference" +#: ../../Zotlabs/Module/Settings/Privacy.php:61 +msgid "Anybody in this network" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:465 -msgid "Homepage" +#: ../../Zotlabs/Module/Settings/Privacy.php:62 +msgid "Anybody authenticated" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:469 -msgid "Interests" +#: ../../Zotlabs/Module/Settings/Privacy.php:63 +msgid "Anybody on the internet" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:577 -msgid "Profile updated." +#: ../../Zotlabs/Module/Settings/Privacy.php:73 +msgid "" +"Advise: set to \"Anybody on the internet\" and use privacy groups to " +"restrict access" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:673 -msgid "Hide my connections from viewers of this profile" +#: ../../Zotlabs/Module/Settings/Privacy.php:109 +msgid "Privacy Settings" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:686 -msgid "Publish my default profile in the network directory" +#: ../../Zotlabs/Module/Settings/Privacy.php:114 +msgid "Advanced configuration" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:694 -msgid "Suggest me as a potential contact to new members" +#: ../../Zotlabs/Module/Settings/Privacy.php:116 +msgid "Proceed with caution" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:698 -msgid "Reveal my online status" +#: ../../Zotlabs/Module/Settings/Privacy.php:117 +msgid "" +"Changing advanced configuration settings can impact your, and your contacts " +"channels functionality and security." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:739 -msgid "Edit Profile Details" +#: ../../Zotlabs/Module/Settings/Privacy.php:118 +msgid "Accept the risk and continue" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:741 -msgid "View this profile" +#: ../../Zotlabs/Module/Settings/Privacy.php:120 +msgid "Automatically approve new contacts" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:743 -msgid "Profile Tools" +#: ../../Zotlabs/Module/Settings/Privacy.php:121 +msgid "Opt-out of search engine indexing" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:744 -msgid "Change cover photo" +#: ../../Zotlabs/Module/Settings/Privacy.php:122 +msgid "Group actor" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:746 -msgid "Create a new profile using these settings" +#: ../../Zotlabs/Module/Settings/Privacy.php:122 +msgid "Allow this channel to act as a forum" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:747 -msgid "Clone this profile" +#: ../../Zotlabs/Module/Settings/Manage.php:41 +msgid "Channel Manager Settings" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:748 -msgid "Delete this profile" +#: ../../Zotlabs/Module/Sse_bs.php:610 +msgid "Private forum" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:749 -msgid "Add profile things" +#: ../../Zotlabs/Module/Sse_bs.php:610 +msgid "Public forum" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:750 -msgid "Basic" +#: ../../Zotlabs/Module/Cdav.php:819 +msgid "Calendar entries imported." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:752 -msgid "Relationship" +#: ../../Zotlabs/Module/Cdav.php:821 +msgid "No calendar entries found." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:755 -msgid "Import profile from file" +#: ../../Zotlabs/Module/Cdav.php:1010 +msgid "Event title" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:756 -msgid "Export profile to file" +#: ../../Zotlabs/Module/Cdav.php:1011 +msgid "Start date and time" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:757 -msgid "Your gender" +#: ../../Zotlabs/Module/Cdav.php:1012 +msgid "End date and time" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:758 -msgid "Marital status" +#: ../../Zotlabs/Module/Cdav.php:1013 +msgid "Timezone:" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:759 -msgid "Sexual preference" +#: ../../Zotlabs/Module/Cdav.php:1039 +msgid "Month" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:762 -msgid "Profile name" +#: ../../Zotlabs/Module/Cdav.php:1040 +msgid "Week" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:764 -msgid "This is your default profile." +#: ../../Zotlabs/Module/Cdav.php:1041 +msgid "Day" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:766 -msgid "Your full name" +#: ../../Zotlabs/Module/Cdav.php:1042 +msgid "List month" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:767 -msgid "Short title/description" +#: ../../Zotlabs/Module/Cdav.php:1043 +msgid "List week" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:767 -msgid "Maximal 190 characters" +#: ../../Zotlabs/Module/Cdav.php:1044 +msgid "List day" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:770 -msgid "Street address" +#: ../../Zotlabs/Module/Cdav.php:1052 +msgid "More" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:771 -msgid "Locality/City" +#: ../../Zotlabs/Module/Cdav.php:1053 +msgid "Less" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:772 -msgid "Region/State" +#: ../../Zotlabs/Module/Cdav.php:1055 +msgid "Select calendar" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:773 -msgid "Postal/Zip code" +#: ../../Zotlabs/Module/Cdav.php:1056 ../../Zotlabs/Widget/Cdav.php:149 +msgid "Channel Calendars" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:779 -msgid "Who (if applicable)" +#: ../../Zotlabs/Module/Cdav.php:1056 ../../Zotlabs/Widget/Cdav.php:135 +#: ../../Zotlabs/Widget/Cdav.php:149 +msgid "CalDAV Calendars" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:779 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +#: ../../Zotlabs/Module/Cdav.php:1058 +msgid "Delete all" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:780 -msgid "Since (date)" +#: ../../Zotlabs/Module/Cdav.php:1061 +msgid "Sorry! Editing of recurrent events is not yet implemented." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:783 -msgid "Tell us about yourself" +#: ../../Zotlabs/Module/Cdav.php:1062 +msgid "" +"Could not fetch calendar resource. The selected calendar might be disabled." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:785 -msgid "Hometown" +#: ../../Zotlabs/Module/Cdav.php:1458 +msgid "Default Calendar" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:786 -msgid "Political views" +#: ../../Zotlabs/Module/Cdav.php:1469 +msgid "Default Addressbook" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:787 -msgid "Religious views" +#: ../../Zotlabs/Module/Profiles.php:26 ../../Zotlabs/Module/Profiles.php:214 +#: ../../Zotlabs/Module/Profiles.php:643 +msgid "Profile not found." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:788 -msgid "Keywords used in directory listings" +#: ../../Zotlabs/Module/Profiles.php:46 +msgid "Profile deleted." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:788 -msgid "Example: fishing photography software" +#: ../../Zotlabs/Module/Profiles.php:70 ../../Zotlabs/Module/Profiles.php:107 +msgid "Profile-" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:791 -msgid "Musical interests" +#: ../../Zotlabs/Module/Profiles.php:92 ../../Zotlabs/Module/Profiles.php:129 +msgid "New profile created." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:792 -msgid "Books, literature" +#: ../../Zotlabs/Module/Profiles.php:113 +msgid "Profile unavailable to clone." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:793 -msgid "Television" +#: ../../Zotlabs/Module/Profiles.php:148 +msgid "Profile unavailable to export." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:794 -msgid "Film/Dance/Culture/Entertainment" +#: ../../Zotlabs/Module/Profiles.php:225 +msgid "Profile Name is required." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:795 -msgid "Hobbies/Interests" +#: ../../Zotlabs/Module/Profiles.php:430 +msgid "Marital Status" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:796 -msgid "Love/Romance" +#: ../../Zotlabs/Module/Profiles.php:434 +msgid "Romantic Partner" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:798 -msgid "School/Education" +#: ../../Zotlabs/Module/Profiles.php:438 ../../Zotlabs/Module/Profiles.php:789 +msgid "Likes" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:799 -msgid "Contact information and social networks" +#: ../../Zotlabs/Module/Profiles.php:442 ../../Zotlabs/Module/Profiles.php:790 +msgid "Dislikes" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:800 -msgid "My other channels" +#: ../../Zotlabs/Module/Profiles.php:446 ../../Zotlabs/Module/Profiles.php:797 +msgid "Work/Employment" msgstr "" -#: ../../Zotlabs/Module/Subthread.php:128 -#, php-format -msgid "%1$s is following %2$s's %3$s" +#: ../../Zotlabs/Module/Profiles.php:449 +msgid "Religion" msgstr "" -#: ../../Zotlabs/Module/Subthread.php:130 -#, php-format -msgid "%1$s stopped following %2$s's %3$s" +#: ../../Zotlabs/Module/Profiles.php:453 +msgid "Political Views" msgstr "" -#: ../../Zotlabs/Module/Bookmarks.php:62 -msgid "Bookmark added" +#: ../../Zotlabs/Module/Profiles.php:461 +msgid "Sexual Preference" msgstr "" -#: ../../Zotlabs/Module/Bookmarks.php:101 -msgid "My Connections Bookmarks" +#: ../../Zotlabs/Module/Profiles.php:465 +msgid "Homepage" msgstr "" -#: ../../Zotlabs/Module/Changeaddr.php:35 -msgid "" -"Channel name changes are not allowed within 48 hours of changing the account " -"password." +#: ../../Zotlabs/Module/Profiles.php:469 +msgid "Interests" msgstr "" -#: ../../Zotlabs/Module/Changeaddr.php:77 -msgid "Change channel nickname/address" +#: ../../Zotlabs/Module/Profiles.php:577 +msgid "Profile updated." msgstr "" -#: ../../Zotlabs/Module/Changeaddr.php:78 -msgid "Any/all connections on other networks will be lost!" +#: ../../Zotlabs/Module/Profiles.php:673 +msgid "Hide my connections from viewers of this profile" msgstr "" -#: ../../Zotlabs/Module/Changeaddr.php:80 -msgid "New channel address" +#: ../../Zotlabs/Module/Profiles.php:686 +msgid "Publish my default profile in the network directory" msgstr "" -#: ../../Zotlabs/Module/Changeaddr.php:81 -msgid "Rename Channel" +#: ../../Zotlabs/Module/Profiles.php:694 +msgid "Suggest me as a potential contact to new members" msgstr "" -#: ../../Zotlabs/Module/Invite.php:56 -msgid "Invite App" +#: ../../Zotlabs/Module/Profiles.php:698 +msgid "Reveal my online status" msgstr "" -#: ../../Zotlabs/Module/Invite.php:68 -msgid "Register is closed" +#: ../../Zotlabs/Module/Profiles.php:739 +msgid "Edit Profile Details" msgstr "" -#: ../../Zotlabs/Module/Invite.php:102 ../../Zotlabs/Module/Invite.php:549 -msgid "Note, the invitation code is valid up to" +#: ../../Zotlabs/Module/Profiles.php:741 +msgid "View this profile" msgstr "" -#: ../../Zotlabs/Module/Invite.php:115 -#, php-format -msgid "Too many recipients for one invitation (max %d)" +#: ../../Zotlabs/Module/Profiles.php:743 +msgid "Profile Tools" msgstr "" -#: ../../Zotlabs/Module/Invite.php:119 -msgid "No recipients for this invitation" +#: ../../Zotlabs/Module/Profiles.php:744 +msgid "Change cover photo" msgstr "" -#: ../../Zotlabs/Module/Invite.php:138 -#, php-format -msgid "(%s) : Not a real email address" +#: ../../Zotlabs/Module/Profiles.php:746 +msgid "Create a new profile using these settings" msgstr "" -#: ../../Zotlabs/Module/Invite.php:145 -#, php-format -msgid "(%s) : Not allowed email address" +#: ../../Zotlabs/Module/Profiles.php:747 +msgid "Clone this profile" msgstr "" -#: ../../Zotlabs/Module/Invite.php:158 -#, php-format -msgid "(%s) : email address already in use" +#: ../../Zotlabs/Module/Profiles.php:748 +msgid "Delete this profile" msgstr "" -#: ../../Zotlabs/Module/Invite.php:165 -#, php-format -msgid "(%s) : Accepted email address" +#: ../../Zotlabs/Module/Profiles.php:749 +msgid "Add profile things" msgstr "" -#: ../../Zotlabs/Module/Invite.php:257 -#, php-format -msgid "To %s : Message delivery success." +#: ../../Zotlabs/Module/Profiles.php:750 +msgid "Basic" msgstr "" -#: ../../Zotlabs/Module/Invite.php:289 -#, php-format -msgid "%1$d mail(s) sent, %2$d mail error(s)" +#: ../../Zotlabs/Module/Profiles.php:752 +msgid "Relationship" msgstr "" -#: ../../Zotlabs/Module/Invite.php:314 -msgid "Invites not proposed by configuration" +#: ../../Zotlabs/Module/Profiles.php:755 +msgid "Import profile from file" msgstr "" -#: ../../Zotlabs/Module/Invite.php:315 -msgid "Contact the site admin" +#: ../../Zotlabs/Module/Profiles.php:756 +msgid "Export profile to file" msgstr "" -#: ../../Zotlabs/Module/Invite.php:331 -msgid "Invites by users not enabled" +#: ../../Zotlabs/Module/Profiles.php:757 +msgid "Your gender" msgstr "" -#: ../../Zotlabs/Module/Invite.php:336 -msgid "You have no more invitations available" +#: ../../Zotlabs/Module/Profiles.php:758 +msgid "Marital status" msgstr "" -#: ../../Zotlabs/Module/Invite.php:352 -msgid "Not on xchan" +#: ../../Zotlabs/Module/Profiles.php:759 +msgid "Sexual preference" msgstr "" -#: ../../Zotlabs/Module/Invite.php:385 -msgid "All users invitation limit exceeded." +#: ../../Zotlabs/Module/Profiles.php:762 +msgid "Profile name" msgstr "" -#: ../../Zotlabs/Module/Invite.php:403 -msgid "Invitation expires after" +#: ../../Zotlabs/Module/Profiles.php:764 +msgid "This is your default profile." msgstr "" -#: ../../Zotlabs/Module/Invite.php:504 ../../Zotlabs/Module/Invite.php:543 -msgid "Invitation" +#: ../../Zotlabs/Module/Profiles.php:766 +msgid "Your full name" msgstr "" -#: ../../Zotlabs/Module/Invite.php:534 -msgid "Send invitations" +#: ../../Zotlabs/Module/Profiles.php:767 +msgid "Short title/description" msgstr "" -#: ../../Zotlabs/Module/Invite.php:535 -msgid "Invitations I am using" +#: ../../Zotlabs/Module/Profiles.php:767 +msgid "Maximal 190 characters" msgstr "" -#: ../../Zotlabs/Module/Invite.php:536 -msgid "Invitations we are using" +#: ../../Zotlabs/Module/Profiles.php:770 +msgid "Street address" msgstr "" -#: ../../Zotlabs/Module/Invite.php:537 -msgid "§ Note, the email(s) sent will be recorded in the system logs" +#: ../../Zotlabs/Module/Profiles.php:771 +msgid "Locality/City" msgstr "" -#: ../../Zotlabs/Module/Invite.php:538 -msgid "Enter email addresses, one per line:" +#: ../../Zotlabs/Module/Profiles.php:772 +msgid "Region/State" msgstr "" -#: ../../Zotlabs/Module/Invite.php:539 -msgid "Your message:" +#: ../../Zotlabs/Module/Profiles.php:773 +msgid "Postal/Zip code" msgstr "" -#: ../../Zotlabs/Module/Invite.php:540 -msgid "Invite template" +#: ../../Zotlabs/Module/Profiles.php:779 +msgid "Who (if applicable)" msgstr "" -#: ../../Zotlabs/Module/Invite.php:542 -msgid "Subject:" +#: ../../Zotlabs/Module/Profiles.php:779 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" msgstr "" -#: ../../Zotlabs/Module/Invite.php:548 -msgid "Here you may enter personal notes to the recipient(s)" +#: ../../Zotlabs/Module/Profiles.php:780 +msgid "Since (date)" msgstr "" -#: ../../Zotlabs/Module/Sse_bs.php:588 -msgid "Private forum" +#: ../../Zotlabs/Module/Profiles.php:783 +msgid "Tell us about yourself" msgstr "" -#: ../../Zotlabs/Module/Sse_bs.php:588 -msgid "Public forum" +#: ../../Zotlabs/Module/Profiles.php:785 +msgid "Hometown" msgstr "" -#: ../../Zotlabs/Module/Xchan.php:10 -msgid "Xchan Lookup" +#: ../../Zotlabs/Module/Profiles.php:786 +msgid "Political views" msgstr "" -#: ../../Zotlabs/Module/Xchan.php:13 -msgid "Lookup xchan beginning with (or webbie): " +#: ../../Zotlabs/Module/Profiles.php:787 +msgid "Religious views" msgstr "" -#: ../../Zotlabs/Module/Affinity.php:35 -msgid "Affinity Tool settings updated." +#: ../../Zotlabs/Module/Profiles.php:788 +msgid "Keywords used in directory listings" msgstr "" -#: ../../Zotlabs/Module/Affinity.php:54 -msgid "" -"The numbers below represent the minimum and maximum slider default positions " -"for your network/stream page as a percentage." +#: ../../Zotlabs/Module/Profiles.php:788 +msgid "Example: fishing photography software" msgstr "" -#: ../../Zotlabs/Module/Affinity.php:61 -msgid "Default maximum affinity level" +#: ../../Zotlabs/Module/Profiles.php:791 +msgid "Musical interests" msgstr "" -#: ../../Zotlabs/Module/Affinity.php:61 -msgid "0-99 default 99" +#: ../../Zotlabs/Module/Profiles.php:792 +msgid "Books, literature" msgstr "" -#: ../../Zotlabs/Module/Affinity.php:67 -msgid "Default minimum affinity level" +#: ../../Zotlabs/Module/Profiles.php:793 +msgid "Television" msgstr "" -#: ../../Zotlabs/Module/Affinity.php:67 -msgid "0-99 - default 0" +#: ../../Zotlabs/Module/Profiles.php:794 +msgid "Film/Dance/Culture/Entertainment" msgstr "" -#: ../../Zotlabs/Module/Affinity.php:73 -msgid "Persistent affinity levels" +#: ../../Zotlabs/Module/Profiles.php:795 +msgid "Hobbies/Interests" msgstr "" -#: ../../Zotlabs/Module/Affinity.php:73 -msgid "" -"If disabled the max and min levels will be reset to default after page reload" +#: ../../Zotlabs/Module/Profiles.php:796 +msgid "Love/Romance" msgstr "" -#: ../../Zotlabs/Module/Affinity.php:81 -msgid "Affinity Tool Settings" +#: ../../Zotlabs/Module/Profiles.php:798 +msgid "School/Education" msgstr "" -#: ../../Zotlabs/Module/Settings/Network.php:42 -#: ../../Zotlabs/Module/Settings/Channel_home.php:46 -msgid "Max height of content (in pixels)" +#: ../../Zotlabs/Module/Profiles.php:799 +msgid "Contact information and social networks" msgstr "" -#: ../../Zotlabs/Module/Settings/Network.php:44 -#: ../../Zotlabs/Module/Settings/Channel_home.php:48 -msgid "Click to expand content exceeding this height" +#: ../../Zotlabs/Module/Profiles.php:800 +msgid "My other channels" msgstr "" -#: ../../Zotlabs/Module/Settings/Network.php:59 -msgid "Stream Settings" +#: ../../Zotlabs/Module/Lockview.php:100 +msgid "Remote privacy information not available" msgstr "" -#: ../../Zotlabs/Module/Settings/Features.php:45 -msgid "Additional Features" +#: ../../Zotlabs/Module/Lockview.php:143 ../../Zotlabs/Module/Lockview.php:184 +#: ../../Zotlabs/Module/Acl.php:123 +msgctxt "acl" +msgid "Profile" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:105 -#: ../../Zotlabs/Module/Settings/Channel.php:216 -msgid "Please select a channel role" +#: ../../Zotlabs/Module/Lockview.php:154 ../../Zotlabs/Module/Lockview.php:193 +msgid "Privacy group" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:193 -msgid "Your channel address is" +#: ../../Zotlabs/Module/Lockview.php:214 +#, php-format +msgid "Click to copy link to this ressource for guest %s to clipboard" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:196 -msgid "Your files/photos are accessible via WebDAV at" +#: ../../Zotlabs/Module/Lockview.php:214 +msgid "Link copied" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:227 -msgid "Channel Settings" +#: ../../Zotlabs/Module/Lockview.php:221 +msgid "Access" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:234 -msgid "Basic Settings" +#: ../../Zotlabs/Module/Lockview.php:226 ../../Zotlabs/Widget/Tokens.php:49 +msgid "Guest access" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:235 -msgid "Channel timezone:" +#: ../../Zotlabs/Module/Webpages.php:67 +msgid "Import Webpage Elements" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:236 -msgid "Default post location:" +#: ../../Zotlabs/Module/Webpages.php:68 +msgid "Import selected" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:236 -msgid "Geographical location to display on your posts" +#: ../../Zotlabs/Module/Webpages.php:91 +msgid "Export Webpage Elements" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:237 -msgid "Use browser location" +#: ../../Zotlabs/Module/Webpages.php:92 +msgid "Export selected" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:238 -msgid "Adult content" +#: ../../Zotlabs/Module/Webpages.php:258 +msgid "Actions" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:238 -msgid "This channel frequently or regularly publishes adult content" +#: ../../Zotlabs/Module/Webpages.php:259 +msgid "Page Link" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:239 -msgid "Maximum Friend Requests/Day:" +#: ../../Zotlabs/Module/Webpages.php:260 +msgid "Page Title" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:239 -msgid "May reduce spam activity" +#: ../../Zotlabs/Module/Webpages.php:290 +msgid "Invalid file type." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:240 -#: ../../Zotlabs/Lib/Enotify.php:68 -msgid "Notification Settings" +#: ../../Zotlabs/Module/Webpages.php:302 +msgid "Error opening zip file" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:241 -msgid "By default post a status message when:" +#: ../../Zotlabs/Module/Webpages.php:313 +msgid "Invalid folder path." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:242 -msgid "accepting a friend request" +#: ../../Zotlabs/Module/Webpages.php:340 +msgid "No webpage elements detected." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:243 -msgid "joining a forum/community" +#: ../../Zotlabs/Module/Webpages.php:415 +msgid "Import complete." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:244 -msgid "making an interesting profile change" +#: ../../Zotlabs/Module/Filestorage.php:14 +#: ../../Zotlabs/Module/Filestorage.php:53 +msgid "Deprecated!" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:245 -msgid "Send a notification email when:" +#: ../../Zotlabs/Module/Filestorage.php:157 +msgid "Permission Denied." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:246 -msgid "You receive a connection request" +#: ../../Zotlabs/Module/Filestorage.php:190 +msgid "Edit file permissions" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:247 -msgid "Your connections are confirmed" +#: ../../Zotlabs/Module/Filestorage.php:203 +msgid "Include all files and sub folders" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:248 -msgid "Someone writes on your profile wall" +#: ../../Zotlabs/Module/Filestorage.php:204 +msgid "Return to file list" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:249 -msgid "Someone writes a followup comment" +#: ../../Zotlabs/Module/Filestorage.php:206 +#: ../../Zotlabs/Storage/Browser.php:389 +msgid "Copy/paste this code to attach file to a post" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:250 -msgid "You receive a private message" +#: ../../Zotlabs/Module/Filestorage.php:207 +#: ../../Zotlabs/Storage/Browser.php:390 +msgid "Copy/paste this URL to link file from a web page" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:251 -msgid "You receive a friend suggestion" +#: ../../Zotlabs/Module/Filestorage.php:209 +msgid "Share this file" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:252 -msgid "You are tagged in a post" +#: ../../Zotlabs/Module/Filestorage.php:210 +msgid "Show URL to this file" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:253 -msgid "You are poked/prodded/etc. in a post" +#: ../../Zotlabs/Module/Filestorage.php:211 +#: ../../Zotlabs/Storage/Browser.php:558 +msgid "Show in your contacts shared folder" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:254 -msgid "Someone likes your post/comment" +#: ../../Zotlabs/Module/Filer.php:53 +msgid "Enter a folder name" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:255 -msgid "Show visual notifications including:" +#: ../../Zotlabs/Module/Filer.php:53 +msgid "or select an existing folder (doubleclick)" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:256 -msgid "Unseen stream activity" +#: ../../Zotlabs/Module/Moderate.php:67 +msgid "Comment approved" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:257 -msgid "Unseen channel activity" +#: ../../Zotlabs/Module/Moderate.php:71 +msgid "Comment deleted" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:258 -msgid "Unseen private messages" +#: ../../Zotlabs/Module/Pdledit.php:27 +msgid "Layout updated." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:258 -#: ../../Zotlabs/Module/Settings/Channel.php:263 -#: ../../Zotlabs/Module/Settings/Channel.php:264 -#: ../../Zotlabs/Module/Settings/Channel.php:265 -msgid "Recommended" +#: ../../Zotlabs/Module/Pdledit.php:55 ../../Zotlabs/Module/Pdledit.php:129 +msgid "Edit System Page Description" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:259 -msgid "Upcoming events" +#: ../../Zotlabs/Module/Pdledit.php:76 ../../Zotlabs/Module/Pdledit.php:93 +msgid "(modified)" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:260 -msgid "Events today" +#: ../../Zotlabs/Module/Pdledit.php:124 +msgid "Layout not found." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:261 -msgid "Upcoming birthdays" +#: ../../Zotlabs/Module/Pdledit.php:130 +msgid "Module Name:" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:261 -msgid "Not available in all themes" +#: ../../Zotlabs/Module/Pdledit.php:131 +msgid "Layout Help" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:262 -msgid "System (personal) notifications" +#: ../../Zotlabs/Module/Pdledit.php:132 +msgid "Edit another layout" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:263 -msgid "System info messages" +#: ../../Zotlabs/Module/Pdledit.php:133 +msgid "System layout" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:264 -msgid "System critical alerts" +#: ../../Zotlabs/Module/Acl.php:370 +msgid "network" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:265 -msgid "New connections" +#: ../../Zotlabs/Module/Siteinfo.php:21 +msgid "About this site" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:266 -msgid "System Registrations" +#: ../../Zotlabs/Module/Siteinfo.php:22 +msgid "Site Name" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:267 -msgid "Unseen shared files" +#: ../../Zotlabs/Module/Siteinfo.php:26 +msgid "Administrator" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:268 -msgid "Unseen public stream activity" +#: ../../Zotlabs/Module/Siteinfo.php:29 +msgid "Software and Project information" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:269 -msgid "Unseen likes and dislikes" +#: ../../Zotlabs/Module/Siteinfo.php:30 +msgid "This site is powered by $Projectname" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:270 -msgid "Unseen forum posts" +#: ../../Zotlabs/Module/Siteinfo.php:31 +msgid "" +"Federated and decentralised networking and identity services provided by Zot" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:271 -msgid "Email notification hub (hostname)" +#: ../../Zotlabs/Module/Siteinfo.php:34 +msgid "Additional federated transport protocols:" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:271 +#: ../../Zotlabs/Module/Siteinfo.php:36 #, php-format -msgid "" -"If your channel is mirrored to multiple hubs, set this to your preferred " -"location. This will prevent duplicate email notifications. Example: %s" +msgid "Version %s" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:272 -msgid "Show new wall posts, private messages and connections under Notices" +#: ../../Zotlabs/Module/Siteinfo.php:37 +msgid "Project homepage" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:273 -msgid "Mark all notices of the thread read if a notice is clicked" +#: ../../Zotlabs/Module/Siteinfo.php:38 +msgid "Developer homepage" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:273 -msgid "If no, only the clicked notice will be marked read" +#: ../../Zotlabs/Module/Attach.php:68 +msgid "Item not available." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:274 -msgid "" -"Desktop notifications are unavailable because the required browser " -"permission has not been granted" +#: ../../Zotlabs/Module/Tagger.php:50 +msgid "Post not found." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:275 -msgid "Grant permission" +#: ../../Zotlabs/Module/Tagger.php:121 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:276 -msgid "Notify me of events this many days in advance" +#: ../../Zotlabs/Module/Channel_calendar.php:62 +msgid "Event can not end before it has started." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:276 -msgid "Must be greater than 0" +#: ../../Zotlabs/Module/Channel_calendar.php:64 +#: ../../Zotlabs/Module/Channel_calendar.php:72 +#: ../../Zotlabs/Module/Channel_calendar.php:87 +msgid "Unable to generate preview." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:279 -msgid "Default photo upload folder" +#: ../../Zotlabs/Module/Channel_calendar.php:70 +msgid "Event title and start time are required." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:279 -#: ../../Zotlabs/Module/Settings/Channel.php:280 -msgid "%Y - current year, %m - current month" +#: ../../Zotlabs/Module/Channel_calendar.php:85 +#: ../../Zotlabs/Module/Channel_calendar.php:226 +msgid "Event not found." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:280 -msgid "Default file upload folder" +#: ../../Zotlabs/Module/Channel_calendar.php:370 +msgid "Edit event" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:282 -msgid "Remove this channel." +#: ../../Zotlabs/Module/Channel_calendar.php:372 +msgid "Delete event" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:283 -msgid "Expire other channel content after this many days" +#: ../../Zotlabs/Module/Channel_calendar.php:406 +msgid "calendar" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:283 -msgid "0 or blank to use the website limit." +#: ../../Zotlabs/Module/Channel_calendar.php:493 +msgid "Failed to remove event" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:283 -#, php-format -msgid "This website expires after %d days." +#: ../../Zotlabs/Module/Regmod.php:15 +msgid "Please login." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:283 -msgid "This website does not expire imported content." +#: ../../Zotlabs/Module/Defperms.php:252 +msgid "Connection Default Permissions" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:283 -msgid "The website limit takes precedence if lower than your limit." +#: ../../Zotlabs/Module/Defperms.php:253 +msgid "Apply these permissions automatically" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:284 -#: ../../Zotlabs/Module/Settings/Channel.php:285 +#: ../../Zotlabs/Module/Defperms.php:253 msgid "" -"Words one per line or #tags, $categories, /patterns/, lang=xx, lang!=xx - " -"leave blank to import all posts" +"If enabled, connection requests will be approved without your interaction" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:21 -msgid "Not valid email." +#: ../../Zotlabs/Module/Defperms.php:254 +msgid "Permission role" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:24 -msgid "Protected email address. Cannot change to that email." +#: ../../Zotlabs/Module/Defperms.php:255 +msgid "Add permission role" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:33 -msgid "System failure storing new email. Please try again." +#: ../../Zotlabs/Module/Defperms.php:260 +msgid "Automatic approval settings" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:51 -msgid "Password verification failed." +#: ../../Zotlabs/Module/Defperms.php:263 +msgid "My Settings" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:58 -msgid "Passwords do not match. Password unchanged." +#: ../../Zotlabs/Module/Defperms.php:267 +msgid "" +"Some individual permissions may have been preset or locked based on your " +"channel type and privacy settings." msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:62 -msgid "Empty passwords are not allowed. Password unchanged." +#: ../../Zotlabs/Module/Thing.php:122 +msgid "Thing updated" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:76 -msgid "Password changed." +#: ../../Zotlabs/Module/Thing.php:174 +msgid "Object store: failed" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:78 -msgid "Password update failed. Please try again." +#: ../../Zotlabs/Module/Thing.php:178 +msgid "Thing added" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:103 -msgid "Account Settings" +#: ../../Zotlabs/Module/Thing.php:204 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:104 -msgid "Current Password" +#: ../../Zotlabs/Module/Thing.php:267 +msgid "Show Thing" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:105 -msgid "Enter New Password" +#: ../../Zotlabs/Module/Thing.php:274 +msgid "item not found." msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:106 -msgid "Confirm New Password" +#: ../../Zotlabs/Module/Thing.php:307 +msgid "Edit Thing" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:106 -msgid "Leave password fields blank unless changing" +#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:366 +msgid "Select a profile" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:108 -msgid "DId2 or Email Address:" +#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:369 +msgid "Post an activity" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:110 -msgid "Remove this account including all its channels" +#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:369 +msgid "Only sends to viewers of the applicable profile" msgstr "" -#: ../../Zotlabs/Module/Settings/Featured.php:25 -msgid "No feature settings configured" +#: ../../Zotlabs/Module/Thing.php:315 ../../Zotlabs/Module/Thing.php:371 +msgid "Name of thing e.g. something" msgstr "" -#: ../../Zotlabs/Module/Settings/Featured.php:34 -msgid "Addon Settings" +#: ../../Zotlabs/Module/Thing.php:317 ../../Zotlabs/Module/Thing.php:372 +msgid "URL of thing (optional)" msgstr "" -#: ../../Zotlabs/Module/Settings/Featured.php:35 -msgid "Please save/submit changes to any panel before opening another." +#: ../../Zotlabs/Module/Thing.php:319 ../../Zotlabs/Module/Thing.php:373 +msgid "URL for photo of thing (optional)" msgstr "" -#: ../../Zotlabs/Module/Settings/Events.php:40 -msgid "Events Settings" +#: ../../Zotlabs/Module/Thing.php:364 +msgid "Add Thing to your Profile" msgstr "" -#: ../../Zotlabs/Module/Settings/Manage.php:41 -msgid "Channel Manager Settings" +#: ../../Zotlabs/Module/Editblock.php:138 +msgid "Edit Block" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel_home.php:61 -msgid "Personal menu to display in your channel pages" +#: ../../Zotlabs/Module/Sharedwithme.php:106 +msgid "Files: shared with me" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel_home.php:88 -msgid "Channel Home Settings" +#: ../../Zotlabs/Module/Sharedwithme.php:108 +msgid "NEW" msgstr "" -#: ../../Zotlabs/Module/Settings/Calendar.php:40 -msgid "Calendar Settings" +#: ../../Zotlabs/Module/Sharedwithme.php:110 +#: ../../Zotlabs/Storage/Browser.php:383 +msgid "Last Modified" +msgstr "" + +#: ../../Zotlabs/Module/Sharedwithme.php:111 +msgid "Remove all files" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:125 -#, php-format -msgid "%s - (Experimental)" +#: ../../Zotlabs/Module/Sharedwithme.php:112 +msgid "Remove this file" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:181 -msgid "Display Settings" +#: ../../Zotlabs/Module/Setup.php:179 +msgid "$Projectname Server - Setup" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:182 -msgid "Theme Settings" +#: ../../Zotlabs/Module/Setup.php:183 +msgid "Could not connect to database." msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:183 -msgid "Custom Theme Settings" +#: ../../Zotlabs/Module/Setup.php:187 +msgid "" +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:184 -msgid "Content Settings" +#: ../../Zotlabs/Module/Setup.php:194 +msgid "Could not create table." msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:190 -msgid "Display Theme:" +#: ../../Zotlabs/Module/Setup.php:200 +msgid "Your site database has been installed." msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:191 -msgid "Select scheme" +#: ../../Zotlabs/Module/Setup.php:206 +msgid "" +"You may need to import the file \"install/schema_xxx.sql\" manually using a " +"database client." msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:193 -msgid "Preload images before rendering the page" +#: ../../Zotlabs/Module/Setup.php:207 ../../Zotlabs/Module/Setup.php:271 +#: ../../Zotlabs/Module/Setup.php:778 +msgid "Please see the file \"install/INSTALL.txt\"." msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:193 -msgid "" -"The subjective page load time will be longer but the page will be ready when " -"displayed" +#: ../../Zotlabs/Module/Setup.php:268 +msgid "System check" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:194 -msgid "Enable user zoom on mobile devices" +#: ../../Zotlabs/Module/Setup.php:273 +msgid "Check again" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:195 -msgid "Update browser every xx seconds" +#: ../../Zotlabs/Module/Setup.php:294 +msgid "Database connection" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:195 -msgid "Minimum of 10 seconds, no maximum" +#: ../../Zotlabs/Module/Setup.php:295 +msgid "" +"In order to install $Projectname we need to know how to connect to your " +"database." msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:196 -msgid "Maximum number of conversations to load at any time:" +#: ../../Zotlabs/Module/Setup.php:296 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:196 -msgid "Maximum of 30 items" +#: ../../Zotlabs/Module/Setup.php:297 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:197 -msgid "Show emoticons (smilies) as images" +#: ../../Zotlabs/Module/Setup.php:301 +msgid "Database Server Name" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:198 -msgid "Link post titles to source" +#: ../../Zotlabs/Module/Setup.php:301 +msgid "Default is 127.0.0.1" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:200 -msgid "Display new member quick links menu" +#: ../../Zotlabs/Module/Setup.php:302 +msgid "Database Port" msgstr "" -#: ../../Zotlabs/Module/Settings/Directory.php:40 -msgid "Directory Settings" +#: ../../Zotlabs/Module/Setup.php:302 +msgid "Communication port number - use 0 for default" msgstr "" -#: ../../Zotlabs/Module/Settings/Editor.php:40 -msgid "Editor Settings" +#: ../../Zotlabs/Module/Setup.php:303 +msgid "Database Login Name" msgstr "" -#: ../../Zotlabs/Module/Settings/Connections.php:40 -msgid "Connections Settings" +#: ../../Zotlabs/Module/Setup.php:304 +msgid "Database Login Password" msgstr "" -#: ../../Zotlabs/Module/Settings/Photos.php:40 -msgid "Photos Settings" +#: ../../Zotlabs/Module/Setup.php:305 +msgid "Database Name" msgstr "" -#: ../../Zotlabs/Module/Settings/Profiles.php:41 -msgid "Default profile for new contacts" +#: ../../Zotlabs/Module/Setup.php:306 +msgid "Database Type" msgstr "" -#: ../../Zotlabs/Module/Settings/Profiles.php:49 -msgid "Profiles Settings" +#: ../../Zotlabs/Module/Setup.php:308 ../../Zotlabs/Module/Setup.php:348 +msgid "Site administrator email address" msgstr "" -#: ../../Zotlabs/Module/Settings/Privacy.php:39 -msgid "Privacy settings updated." +#: ../../Zotlabs/Module/Setup.php:308 ../../Zotlabs/Module/Setup.php:348 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." msgstr "" -#: ../../Zotlabs/Module/Settings/Privacy.php:57 -msgid "Only those you specifically allow" +#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:350 +msgid "Website URL" msgstr "" -#: ../../Zotlabs/Module/Settings/Privacy.php:58 -msgid "Approved connections" +#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:350 +msgid "Please use SSL (https) URL if available." msgstr "" -#: ../../Zotlabs/Module/Settings/Privacy.php:59 -msgid "Any connections" +#: ../../Zotlabs/Module/Setup.php:310 ../../Zotlabs/Module/Setup.php:352 +msgid "Please select a default timezone for your website" msgstr "" -#: ../../Zotlabs/Module/Settings/Privacy.php:60 -msgid "Anybody on this website" +#: ../../Zotlabs/Module/Setup.php:337 +msgid "Site settings" msgstr "" -#: ../../Zotlabs/Module/Settings/Privacy.php:61 -msgid "Anybody in this network" +#: ../../Zotlabs/Module/Setup.php:391 +msgid "PHP version 8.0 or greater is required." msgstr "" -#: ../../Zotlabs/Module/Settings/Privacy.php:62 -msgid "Anybody authenticated" +#: ../../Zotlabs/Module/Setup.php:392 +msgid "PHP version" msgstr "" -#: ../../Zotlabs/Module/Settings/Privacy.php:63 -msgid "Anybody on the internet" +#: ../../Zotlabs/Module/Setup.php:408 +msgid "Could not find a command line version of PHP in the web server PATH." msgstr "" -#: ../../Zotlabs/Module/Settings/Privacy.php:73 +#: ../../Zotlabs/Module/Setup.php:409 msgid "" -"Advise: set to \"Anybody on the internet\" and use privacy groups to " -"restrict access" +"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." msgstr "" -#: ../../Zotlabs/Module/Settings/Privacy.php:109 -msgid "Privacy Settings" +#: ../../Zotlabs/Module/Setup.php:413 +msgid "PHP executable path" msgstr "" -#: ../../Zotlabs/Module/Settings/Privacy.php:114 -msgid "Advanced configuration" +#: ../../Zotlabs/Module/Setup.php:413 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." msgstr "" -#: ../../Zotlabs/Module/Settings/Privacy.php:116 -msgid "Proceed with caution" +#: ../../Zotlabs/Module/Setup.php:418 +msgid "Command line PHP" msgstr "" -#: ../../Zotlabs/Module/Settings/Privacy.php:117 +#: ../../Zotlabs/Module/Setup.php:428 msgid "" -"Changing advanced configuration settings can impact your, and your contacts " -"channels functionality and security." +"Unable to check command line PHP, as shell_exec() is disabled. This is " +"required." msgstr "" -#: ../../Zotlabs/Module/Settings/Privacy.php:118 -msgid "Accept the risk and continue" +#: ../../Zotlabs/Module/Setup.php:432 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." msgstr "" -#: ../../Zotlabs/Module/Settings/Privacy.php:120 -msgid "Automatically approve new contacts" +#: ../../Zotlabs/Module/Setup.php:433 +msgid "This is required for message delivery to work." msgstr "" -#: ../../Zotlabs/Module/Settings/Privacy.php:121 -msgid "Opt-out of search engine indexing" +#: ../../Zotlabs/Module/Setup.php:436 +msgid "PHP register_argc_argv" msgstr "" -#: ../../Zotlabs/Module/Settings/Privacy.php:122 -msgid "Group actor" +#: ../../Zotlabs/Module/Setup.php:456 +msgid "" +"This is not sufficient to upload larger images or files. You should be able " +"to upload at least 4 MB at once." msgstr "" -#: ../../Zotlabs/Module/Settings/Privacy.php:122 -msgid "Allow this channel to act as a forum" +#: ../../Zotlabs/Module/Setup.php:458 +#, php-format +msgid "" +"Your max allowed total upload size is set to %s. Maximum size of one file to " +"upload is set to %s. You are allowed to upload up to %d files at once." msgstr "" -#: ../../Zotlabs/Module/Settings/Conversation.php:23 -msgid "Settings saved." +#: ../../Zotlabs/Module/Setup.php:464 +msgid "You can adjust these settings in the server php.ini file." msgstr "" -#: ../../Zotlabs/Module/Settings/Conversation.php:25 -msgid "Settings saved. Reload page please." +#: ../../Zotlabs/Module/Setup.php:466 +msgid "PHP upload limits" msgstr "" -#: ../../Zotlabs/Module/Settings/Conversation.php:47 -msgid "Conversation Settings" +#: ../../Zotlabs/Module/Setup.php:489 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" msgstr "" -#: ../../Zotlabs/Module/Menu.php:68 -msgid "Unable to update menu." +#: ../../Zotlabs/Module/Setup.php:490 +msgid "" +"If running under Windows, please see \"http://www.php.net/manual/en/openssl." +"installation.php\"." msgstr "" -#: ../../Zotlabs/Module/Menu.php:79 -msgid "Unable to create menu." +#: ../../Zotlabs/Module/Setup.php:493 +msgid "Generate encryption keys" msgstr "" -#: ../../Zotlabs/Module/Menu.php:161 ../../Zotlabs/Module/Menu.php:174 -msgid "Menu Name" +#: ../../Zotlabs/Module/Setup.php:510 +msgid "libCurl PHP module" msgstr "" -#: ../../Zotlabs/Module/Menu.php:161 -msgid "Unique name (not visible on webpage) - required" +#: ../../Zotlabs/Module/Setup.php:511 +msgid "GD graphics PHP module" msgstr "" -#: ../../Zotlabs/Module/Menu.php:162 ../../Zotlabs/Module/Menu.php:175 -msgid "Menu Title" +#: ../../Zotlabs/Module/Setup.php:512 +msgid "OpenSSL PHP module" msgstr "" -#: ../../Zotlabs/Module/Menu.php:162 -msgid "Visible on webpage - leave empty for no title" +#: ../../Zotlabs/Module/Setup.php:513 +msgid "PDO database PHP module" msgstr "" -#: ../../Zotlabs/Module/Menu.php:163 -msgid "Allow Bookmarks" +#: ../../Zotlabs/Module/Setup.php:514 +msgid "mb_string PHP module" msgstr "" -#: ../../Zotlabs/Module/Menu.php:163 ../../Zotlabs/Module/Menu.php:222 -msgid "Menu may be used to store saved bookmarks" +#: ../../Zotlabs/Module/Setup.php:515 +msgid "xml PHP module" msgstr "" -#: ../../Zotlabs/Module/Menu.php:164 ../../Zotlabs/Module/Menu.php:225 -msgid "Submit and proceed" +#: ../../Zotlabs/Module/Setup.php:516 +msgid "zip PHP module" msgstr "" -#: ../../Zotlabs/Module/Menu.php:177 ../../Zotlabs/Module/Locs.php:124 -msgid "Drop" +#: ../../Zotlabs/Module/Setup.php:520 ../../Zotlabs/Module/Setup.php:522 +msgid "Apache mod_rewrite module" msgstr "" -#: ../../Zotlabs/Module/Menu.php:181 -msgid "Bookmarks allowed" +#: ../../Zotlabs/Module/Setup.php:520 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:526 ../../Zotlabs/Module/Setup.php:529 +msgid "exec" msgstr "" -#: ../../Zotlabs/Module/Menu.php:183 -msgid "Delete this menu" +#: ../../Zotlabs/Module/Setup.php:526 +msgid "" +"Error: exec is required but is either not installed or has been disabled in " +"php.ini" msgstr "" -#: ../../Zotlabs/Module/Menu.php:184 ../../Zotlabs/Module/Menu.php:219 -msgid "Edit menu contents" +#: ../../Zotlabs/Module/Setup.php:532 ../../Zotlabs/Module/Setup.php:535 +msgid "shell_exec" msgstr "" -#: ../../Zotlabs/Module/Menu.php:185 -msgid "Edit this menu" +#: ../../Zotlabs/Module/Setup.php:532 +msgid "" +"Error: shell_exec is required but is either not installed or has been " +"disabled in php.ini" msgstr "" -#: ../../Zotlabs/Module/Menu.php:201 -msgid "Menu could not be deleted." +#: ../../Zotlabs/Module/Setup.php:540 +msgid "Error: libCURL PHP module required but not installed." msgstr "" -#: ../../Zotlabs/Module/Menu.php:214 -msgid "Edit Menu" +#: ../../Zotlabs/Module/Setup.php:544 +msgid "" +"Error: GD PHP module with JPEG support or ImageMagick graphics library " +"required but not installed." msgstr "" -#: ../../Zotlabs/Module/Menu.php:218 -msgid "Add or remove entries to this menu" +#: ../../Zotlabs/Module/Setup.php:548 +msgid "Error: openssl PHP module required but not installed." msgstr "" -#: ../../Zotlabs/Module/Menu.php:220 -msgid "Menu name" +#: ../../Zotlabs/Module/Setup.php:554 +msgid "" +"Error: PDO database PHP module missing a driver for either mysql or pgsql." msgstr "" -#: ../../Zotlabs/Module/Menu.php:220 -msgid "Must be unique, only seen by you" +#: ../../Zotlabs/Module/Setup.php:559 +msgid "Error: PDO database PHP module required but not installed." msgstr "" -#: ../../Zotlabs/Module/Menu.php:221 -msgid "Menu title" +#: ../../Zotlabs/Module/Setup.php:563 +msgid "Error: mb_string PHP module required but not installed." msgstr "" -#: ../../Zotlabs/Module/Menu.php:221 -msgid "Menu title as seen by others" +#: ../../Zotlabs/Module/Setup.php:567 +msgid "Error: xml PHP module required for DAV but not installed." msgstr "" -#: ../../Zotlabs/Module/Menu.php:222 -msgid "Allow bookmarks" +#: ../../Zotlabs/Module/Setup.php:571 +msgid "Error: zip PHP module required but not installed." msgstr "" -#: ../../Zotlabs/Module/Defperms.php:252 -msgid "Connection Default Permissions" +#: ../../Zotlabs/Module/Setup.php:590 ../../Zotlabs/Module/Setup.php:599 +msgid ".htconfig.php is writable" msgstr "" -#: ../../Zotlabs/Module/Defperms.php:253 -msgid "Apply these permissions automatically" +#: ../../Zotlabs/Module/Setup.php:595 +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 "" -#: ../../Zotlabs/Module/Defperms.php:253 +#: ../../Zotlabs/Module/Setup.php:596 msgid "" -"If enabled, connection requests will be approved without your interaction" +"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 "" -#: ../../Zotlabs/Module/Defperms.php:254 -msgid "Permission role" +#: ../../Zotlabs/Module/Setup.php:597 +msgid "Please see install/INSTALL.txt for additional information." msgstr "" -#: ../../Zotlabs/Module/Defperms.php:255 -msgid "Add permission role" +#: ../../Zotlabs/Module/Setup.php:613 +msgid "" +"This software uses the Smarty3 template engine to render its web views. " +"Smarty3 compiles templates to PHP to speed up rendering." msgstr "" -#: ../../Zotlabs/Module/Defperms.php:259 ../../Zotlabs/Module/Connedit.php:700 +#: ../../Zotlabs/Module/Setup.php:614 +#, php-format msgid "" -"The permissions indicated on this page will be applied to all new " -"connections." +"In order to store these compiled templates, the web server needs to have " +"write access to the directory %s under the top level web folder." msgstr "" -#: ../../Zotlabs/Module/Defperms.php:260 -msgid "Automatic approval settings" +#: ../../Zotlabs/Module/Setup.php:615 ../../Zotlabs/Module/Setup.php:636 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has " +"write access to this folder." msgstr "" -#: ../../Zotlabs/Module/Defperms.php:264 -msgid "My Settings" +#: ../../Zotlabs/Module/Setup.php:616 +#, php-format +msgid "" +"Note: as a security measure, you should give the web server write access to " +"%s only--not the template files (.tpl) that it contains." msgstr "" -#: ../../Zotlabs/Module/Defperms.php:267 ../../Zotlabs/Module/Connedit.php:720 -msgid "Individual Permissions" +#: ../../Zotlabs/Module/Setup.php:619 +#, php-format +msgid "%s is writable" msgstr "" -#: ../../Zotlabs/Module/Defperms.php:268 +#: ../../Zotlabs/Module/Setup.php:635 msgid "" -"Some individual permissions may have been preset or locked based on your " -"channel type and privacy settings." -msgstr "" - -#: ../../Zotlabs/Module/Pconfig.php:32 ../../Zotlabs/Module/Pconfig.php:68 -msgid "This setting requires special processing and editing has been blocked." +"This software uses the store directory to save uploaded files. The web " +"server needs to have write access to the store directory under the top level " +"web folder" msgstr "" -#: ../../Zotlabs/Module/Pconfig.php:57 -msgid "Configuration Editor" +#: ../../Zotlabs/Module/Setup.php:639 +msgid "store is writable" msgstr "" -#: ../../Zotlabs/Module/Pconfig.php:58 +#: ../../Zotlabs/Module/Setup.php:671 msgid "" -"Warning: Changing some settings could render your channel inoperable. Please " -"leave this page unless you are comfortable with and knowledgeable about how " -"to correctly use this feature." +"SSL certificate cannot be validated. Fix certificate or disable https access " +"to this site." msgstr "" -#: ../../Zotlabs/Module/Oauth2.php:54 -msgid "Name and Secret are required" +#: ../../Zotlabs/Module/Setup.php:672 +msgid "" +"If you have https access to your website or allow connections to TCP port " +"443 (the https: port), you MUST use a browser-valid certificate. You MUST " +"NOT use self-signed certificates!" msgstr "" -#: ../../Zotlabs/Module/Oauth2.php:113 -msgid "Add OAuth2 application" +#: ../../Zotlabs/Module/Setup.php:673 +msgid "" +"This restriction is incorporated because public posts from you may for " +"example contain references to images on your own hub." msgstr "" -#: ../../Zotlabs/Module/Oauth2.php:119 ../../Zotlabs/Module/Oauth2.php:147 -msgid "Grant Types" +#: ../../Zotlabs/Module/Setup.php:674 +msgid "" +"If your certificate is not recognized, members of other sites (who may " +"themselves have valid certificates) will get a warning message on their own " +"site complaining about security issues." msgstr "" -#: ../../Zotlabs/Module/Oauth2.php:119 ../../Zotlabs/Module/Oauth2.php:120 -msgid "leave blank unless your application sepcifically requires this" +#: ../../Zotlabs/Module/Setup.php:675 +msgid "" +"This can cause usability issues elsewhere (not just on your own site) so we " +"must insist on this requirement." msgstr "" -#: ../../Zotlabs/Module/Oauth2.php:120 ../../Zotlabs/Module/Oauth2.php:148 -msgid "Authorization scope" +#: ../../Zotlabs/Module/Setup.php:676 +msgid "" +"Providers are available that issue free certificates which are browser-valid." msgstr "" -#: ../../Zotlabs/Module/Oauth2.php:132 -msgid "OAuth2 Application not found." +#: ../../Zotlabs/Module/Setup.php:677 +msgid "" +"If you are confident that the certificate is valid and signed by a trusted " +"authority, check to see if you have failed to install an intermediate cert. " +"These are not normally required by browsers, but are required for server-to-" +"server communications." msgstr "" -#: ../../Zotlabs/Module/Oauth2.php:147 ../../Zotlabs/Module/Oauth2.php:148 -msgid "leave blank unless your application specifically requires this" +#: ../../Zotlabs/Module/Setup.php:679 +msgid "SSL certificate validation" msgstr "" -#: ../../Zotlabs/Module/Oauth2.php:190 -msgid "Connected OAuth2 Apps" +#: ../../Zotlabs/Module/Setup.php:685 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +"Test: " msgstr "" -#: ../../Zotlabs/Module/Dreport.php:38 -msgid "Invalid message" +#: ../../Zotlabs/Module/Setup.php:688 +msgid "Url rewrite is working" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:66 -msgid "no results" +#: ../../Zotlabs/Module/Setup.php:701 +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 "" -#: ../../Zotlabs/Module/Dreport.php:80 -msgid "channel sync processed" +#: ../../Zotlabs/Module/Setup.php:776 +msgid "

What next?

" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:84 -msgid "queued" +#: ../../Zotlabs/Module/Setup.php:777 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." msgstr "" -#: ../../Zotlabs/Module/Dreport.php:88 -msgid "posted" +#: ../../Zotlabs/Module/Apporder.php:47 +msgid "Change Order of Pinned Navbar Apps" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:92 -msgid "accepted for delivery" +#: ../../Zotlabs/Module/Apporder.php:47 +msgid "Change Order of App Tray Apps" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:96 -msgid "updated" +#: ../../Zotlabs/Module/Apporder.php:48 +msgid "" +"Use arrows to move the corresponding app left (top) or right (bottom) in the " +"navbar" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:99 -msgid "update ignored" +#: ../../Zotlabs/Module/Apporder.php:48 +msgid "Use arrows to move the corresponding app up or down in the app tray" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:102 -msgid "permission denied" +#: ../../Zotlabs/Module/Admin.php:96 +msgid "Blocked accounts" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:106 -msgid "recipient not found" +#: ../../Zotlabs/Module/Admin.php:97 +msgid "Expired accounts" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:126 -#, php-format -msgid "Delivery report for %1$s" +#: ../../Zotlabs/Module/Admin.php:98 +msgid "Expiring accounts" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:131 -msgid "Redeliver" +#: ../../Zotlabs/Module/Admin.php:122 +msgid "Message queues" msgstr "" -#: ../../Zotlabs/Module/Thing.php:122 -msgid "Thing updated" +#: ../../Zotlabs/Module/Admin.php:136 +msgid "Your software should be updated" msgstr "" -#: ../../Zotlabs/Module/Thing.php:174 -msgid "Object store: failed" +#: ../../Zotlabs/Module/Admin.php:141 +msgid "Summary" msgstr "" -#: ../../Zotlabs/Module/Thing.php:178 -msgid "Thing added" +#: ../../Zotlabs/Module/Admin.php:144 +msgid "Registered accounts" msgstr "" -#: ../../Zotlabs/Module/Thing.php:204 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" +#: ../../Zotlabs/Module/Admin.php:145 +msgid "Pending registrations" msgstr "" -#: ../../Zotlabs/Module/Thing.php:267 -msgid "Show Thing" +#: ../../Zotlabs/Module/Admin.php:146 +msgid "Registered channels" msgstr "" -#: ../../Zotlabs/Module/Thing.php:274 -msgid "item not found." +#: ../../Zotlabs/Module/Admin.php:147 +msgid "Active addons" msgstr "" -#: ../../Zotlabs/Module/Thing.php:307 -msgid "Edit Thing" +#: ../../Zotlabs/Module/Admin.php:148 +msgid "Version" msgstr "" -#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:366 -msgid "Select a profile" +#: ../../Zotlabs/Module/Admin.php:149 +msgid "Repository version (master)" msgstr "" -#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:369 -msgid "Post an activity" +#: ../../Zotlabs/Module/Admin.php:150 +msgid "Repository version (dev)" msgstr "" -#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:369 -msgid "Only sends to viewers of the applicable profile" +#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 +msgid "Tag removed" msgstr "" -#: ../../Zotlabs/Module/Thing.php:315 ../../Zotlabs/Module/Thing.php:371 -msgid "Name of thing e.g. something" +#: ../../Zotlabs/Module/Tagrm.php:123 +msgid "Remove Item Tag" msgstr "" -#: ../../Zotlabs/Module/Thing.php:317 ../../Zotlabs/Module/Thing.php:372 -msgid "URL of thing (optional)" +#: ../../Zotlabs/Module/Tagrm.php:125 +msgid "Select a tag to remove: " msgstr "" -#: ../../Zotlabs/Module/Thing.php:319 ../../Zotlabs/Module/Thing.php:373 -msgid "URL for photo of thing (optional)" +#: ../../Zotlabs/Module/Viewsrc.php:43 +msgid "item" msgstr "" -#: ../../Zotlabs/Module/Thing.php:364 -msgid "Add Thing to your Profile" +#: ../../Zotlabs/Module/Email_resend.php:30 +msgid "Email verification resent" msgstr "" -#: ../../Zotlabs/Module/Rmagic.php:46 -msgid "Authentication failed." +#: ../../Zotlabs/Module/Email_resend.php:33 +msgid "Unable to resend email verification message." msgstr "" -#: ../../Zotlabs/Module/Import_progress.php:36 -msgid "Item sync completed!" +#: ../../Zotlabs/Module/Group.php:47 +msgid "Privacy group created." msgstr "" -#: ../../Zotlabs/Module/Import_progress.php:51 -msgid "Item sync completed but no items were found!" +#: ../../Zotlabs/Module/Group.php:50 +msgid "Could not create privacy group." msgstr "" -#: ../../Zotlabs/Module/Import_progress.php:68 -msgid "File sync completed!" +#: ../../Zotlabs/Module/Group.php:82 +msgid "Privacy group updated." msgstr "" -#: ../../Zotlabs/Module/Import_progress.php:83 -msgid "File sync completed but no files were found!" +#: ../../Zotlabs/Module/Group.php:137 ../../Zotlabs/Module/Group.php:301 +msgid "Post to this group by default" msgstr "" -#: ../../Zotlabs/Module/Import_progress.php:98 -msgid "Channel clone status" +#: ../../Zotlabs/Module/Group.php:138 ../../Zotlabs/Module/Group.php:302 +msgid "Add new contacts to this group by default" msgstr "" -#: ../../Zotlabs/Module/Import_progress.php:99 -msgid "Item sync status" +#: ../../Zotlabs/Module/Group.php:146 +msgid "Privacy group name" msgstr "" -#: ../../Zotlabs/Module/Import_progress.php:100 -msgid "File sync status" +#: ../../Zotlabs/Module/Group.php:147 ../../Zotlabs/Module/Group.php:249 +msgid "Members are visible to other channels" msgstr "" -#: ../../Zotlabs/Module/Import_progress.php:107 -msgid "Channel cloning completed!" +#: ../../Zotlabs/Module/Group.php:175 +msgid "Privacy group removed." msgstr "" -#: ../../Zotlabs/Module/Import_progress.php:108 -msgid "Resume" +#: ../../Zotlabs/Module/Group.php:178 +msgid "Unable to remove privacy group." msgstr "" -#: ../../Zotlabs/Module/Import_progress.php:109 -msgid "Only resume if sync stalled!" +#: ../../Zotlabs/Module/Group.php:244 +#, php-format +msgid "Privacy Group: %s" msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:27 -msgid "Layout updated." +#: ../../Zotlabs/Module/Group.php:246 +msgid "Privacy group name: " msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:55 ../../Zotlabs/Module/Pdledit.php:98 -msgid "Edit System Page Description" +#: ../../Zotlabs/Module/Group.php:262 +msgid "Group members" msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:76 -msgid "(modified)" +#: ../../Zotlabs/Module/Group.php:264 +msgid "Not in this group" msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:93 -msgid "Layout not found." +#: ../../Zotlabs/Module/Group.php:296 +msgid "Click a channel to toggle membership" msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:99 -msgid "Module Name:" +#: ../../Zotlabs/Module/Editpost.php:38 ../../Zotlabs/Module/Editpost.php:43 +msgid "Item is not editable" msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:100 -msgid "Layout Help" +#: ../../Zotlabs/Module/Achievements.php:38 +msgid "Some blurb about what to do when you're new here" msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:101 -msgid "Edit another layout" +#: ../../Zotlabs/Module/Pdledit_gui.php:119 +msgid "Layout not found" msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:102 -msgid "System layout" +#: ../../Zotlabs/Module/Pdledit_gui.php:127 +msgid "This template does not support pdledi_gui (no content regions defined)" msgstr "" -#: ../../Zotlabs/Module/Home.php:104 -#, php-format -msgid "Welcome to %s" +#: ../../Zotlabs/Module/Pdledit_gui.php:403 +msgid "Main page content" msgstr "" -#: ../../Zotlabs/Module/Suggest.php:52 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." +#: ../../Zotlabs/Module/Pdledit_gui.php:404 +msgid "The main page content can not be edited!" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:171 -msgid "Connection updated." +#: ../../Zotlabs/Module/New_channel.php:147 ../../Zotlabs/Module/Manage.php:130 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:173 -msgid "Failed to update connection record." +#: ../../Zotlabs/Module/New_channel.php:159 +msgid "Your real name is recommended." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:320 -msgid "Could not access address book record." +#: ../../Zotlabs/Module/New_channel.php:160 +msgid "" +"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation " +"Group\"" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:368 -msgid "Refresh failed - channel is currently unavailable." +#: ../../Zotlabs/Module/New_channel.php:165 +msgid "" +"This will be used to create a unique network address (like an email address)." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:382 ../../Zotlabs/Module/Connedit.php:391 -#: ../../Zotlabs/Module/Connedit.php:400 ../../Zotlabs/Module/Connedit.php:409 -#: ../../Zotlabs/Module/Connedit.php:422 -msgid "Unable to set address book parameters." +#: ../../Zotlabs/Module/New_channel.php:167 +msgid "Allowed characters are a-z 0-9, - and _" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:441 -msgid "Connection has been removed." +#: ../../Zotlabs/Module/New_channel.php:175 +msgid "Channel name" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:483 -#, php-format -msgid "View %s's profile" +#: ../../Zotlabs/Module/New_channel.php:181 +msgid "Create a Channel" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:504 -msgid "View recent posts and comments" +#: ../../Zotlabs/Module/New_channel.php:182 +msgid "" +"A channel is a unique network identity. It can represent a person (social " +"network profile), a forum (group), a business or celebrity page, a newsfeed, " +"and many other things." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:550 -msgid "Fetch Vcard" +#: ../../Zotlabs/Module/New_channel.php:183 +msgid "" +"or import an existing channel from another location." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:553 -msgid "Fetch electronic calling card for this connection" +#: ../../Zotlabs/Module/New_channel.php:188 +msgid "Validate" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:575 -msgid "Open Set Affinity section by default" +#: ../../Zotlabs/Module/Z6trans.php:19 +msgid "Update to Hubzilla 5.0 step 2" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:612 -msgid "Filter" +#: ../../Zotlabs/Module/Z6trans.php:21 +msgid "To complete the update please run" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:615 -msgid "Open Custom Filter section by default" +#: ../../Zotlabs/Module/Z6trans.php:23 +msgid "php util/z6convert.php" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:626 -msgid "Set Affinity" +#: ../../Zotlabs/Module/Z6trans.php:25 +msgid "from the terminal." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:629 -msgid "Set Profile" +#: ../../Zotlabs/Module/Pubsites.php:26 +msgid "Public Hubs" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:632 -msgid "Set Affinity & Profile" +#: ../../Zotlabs/Module/Pubsites.php:29 +msgid "" +"The listed hubs allow public registration for the $Projectname network. All " +"hubs in the network are interlinked so membership on any of them conveys " +"membership in the network as a whole. Some hubs may require subscription or " +"provide tiered service plans. The hub itself may provide " +"additional details." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:685 -#, php-format -msgid "Contact: %s" +#: ../../Zotlabs/Module/Pubsites.php:35 +msgid "Hub URL" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:687 -msgid "Manage contact roles" +#: ../../Zotlabs/Module/Pubsites.php:35 +msgid "Access Type" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:694 -msgid "This contacts's primary address is" +#: ../../Zotlabs/Module/Pubsites.php:35 +msgid "Registration Policy" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:695 -msgid "Available locations:" +#: ../../Zotlabs/Module/Pubsites.php:35 +msgid "Stats" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:710 -msgid "Contact Pending Approval" +#: ../../Zotlabs/Module/Pubsites.php:35 +msgid "Software" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:715 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." +#: ../../Zotlabs/Module/Pubsites.php:37 +msgid "Ratings" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:721 -msgid "" -"Some permissions may be inherited from your channel's privacy settings, which have higher " -"priority than individual settings. You can not change those " -"settings here." +#: ../../Zotlabs/Module/Pubsites.php:51 +msgid "Rate" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:722 -msgid "" -"Some permissions may be inherited from your channel's privacy settings, which have higher " -"priority than individual settings. You can change those settings here but " -"they wont have any impact unless the inherited setting changes." +#: ../../Zotlabs/Module/Photos.php:84 ../../Zotlabs/Module/Photos.php:103 +msgid "Album not found." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:723 -msgid "Last update:" +#: ../../Zotlabs/Module/Photos.php:93 +msgid "Delete Album" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:731 -msgid "Details" +#: ../../Zotlabs/Module/Photos.php:165 ../../Zotlabs/Module/Photos.php:1054 +msgid "Delete Photo" msgstr "" -#: ../../Zotlabs/Module/Notifications.php:106 -#: ../../Zotlabs/Module/Notify.php:85 -msgid "No more system notifications." +#: ../../Zotlabs/Module/Photos.php:522 +msgid "No photos selected" msgstr "" -#: ../../Zotlabs/Module/Notifications.php:110 -#: ../../Zotlabs/Module/Notify.php:89 -msgid "System Notifications" +#: ../../Zotlabs/Module/Photos.php:571 +msgid "Access to this item is restricted." msgstr "" -#: ../../Zotlabs/Module/Notifications.php:111 -#: ../../Zotlabs/Lib/ThreadItem.php:490 -msgid "Mark all seen" +#: ../../Zotlabs/Module/Photos.php:614 +#, php-format +msgid "%1$.2f MB photo storage used." msgstr "" -#: ../../Zotlabs/Module/Layouts.php:186 -msgid "Comanche page description language help" +#: ../../Zotlabs/Module/Photos.php:618 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." msgstr "" -#: ../../Zotlabs/Module/Layouts.php:190 -msgid "Layout Description" +#: ../../Zotlabs/Module/Photos.php:660 +msgid "Upload Photos" msgstr "" -#: ../../Zotlabs/Module/Layouts.php:195 -msgid "Download PDL file" +#: ../../Zotlabs/Module/Photos.php:664 +msgid "Enter an album name" msgstr "" -#: ../../Zotlabs/Module/Locs.php:27 ../../Zotlabs/Module/Locs.php:65 -msgid "Location not found." +#: ../../Zotlabs/Module/Photos.php:665 +msgid "or select an existing album (doubleclick)" msgstr "" -#: ../../Zotlabs/Module/Locs.php:74 -msgid "Location lookup failed." +#: ../../Zotlabs/Module/Photos.php:666 +msgid "Create a status post for this upload" msgstr "" -#: ../../Zotlabs/Module/Locs.php:78 -msgid "" -"Please select another location to become primary before removing the primary " -"location." +#: ../../Zotlabs/Module/Photos.php:668 +msgid "Description (optional)" msgstr "" -#: ../../Zotlabs/Module/Locs.php:106 -msgid "Syncing locations" +#: ../../Zotlabs/Module/Photos.php:756 +msgid "Show Newest First" msgstr "" -#: ../../Zotlabs/Module/Locs.php:115 -msgid "No locations found." +#: ../../Zotlabs/Module/Photos.php:758 +msgid "Show Oldest First" msgstr "" -#: ../../Zotlabs/Module/Locs.php:120 -msgid "Manage Channel Locations" +#: ../../Zotlabs/Module/Photos.php:815 ../../Zotlabs/Module/Photos.php:1354 +msgid "Add Photos" msgstr "" - -#: ../../Zotlabs/Module/Locs.php:126 -msgid "Sync Now" + +#: ../../Zotlabs/Module/Photos.php:863 +msgid "Permission denied. Access to this item may be restricted." msgstr "" -#: ../../Zotlabs/Module/Locs.php:127 -msgid "Please wait several minutes between consecutive operations." +#: ../../Zotlabs/Module/Photos.php:865 +msgid "Photo not available" msgstr "" -#: ../../Zotlabs/Module/Locs.php:128 -msgid "" -"When possible, drop a location by logging into that website/hub and removing " -"your channel." +#: ../../Zotlabs/Module/Photos.php:923 +msgid "Use as profile photo" msgstr "" -#: ../../Zotlabs/Module/Locs.php:129 -msgid "Use this form to drop the location if the hub is no longer operating." +#: ../../Zotlabs/Module/Photos.php:924 +msgid "Use as cover photo" msgstr "" -#: ../../Zotlabs/Module/Sources.php:41 -msgid "Failed to create source. No channel selected." +#: ../../Zotlabs/Module/Photos.php:931 +msgid "Private Photo" msgstr "" -#: ../../Zotlabs/Module/Sources.php:57 -msgid "Source created." +#: ../../Zotlabs/Module/Photos.php:946 +msgid "View Full Size" msgstr "" -#: ../../Zotlabs/Module/Sources.php:70 -msgid "Source updated." +#: ../../Zotlabs/Module/Photos.php:1028 +msgid "Edit photo" msgstr "" -#: ../../Zotlabs/Module/Sources.php:99 -msgid "*" +#: ../../Zotlabs/Module/Photos.php:1030 +msgid "Rotate CW (right)" msgstr "" -#: ../../Zotlabs/Module/Sources.php:105 ../../Zotlabs/Lib/Apps.php:372 -msgid "Channel Sources" +#: ../../Zotlabs/Module/Photos.php:1031 +msgid "Rotate CCW (left)" msgstr "" -#: ../../Zotlabs/Module/Sources.php:106 -msgid "Manage remote sources of content for your channel." +#: ../../Zotlabs/Module/Photos.php:1034 +msgid "Move photo to album" msgstr "" -#: ../../Zotlabs/Module/Sources.php:107 ../../Zotlabs/Module/Sources.php:117 -msgid "New Source" +#: ../../Zotlabs/Module/Photos.php:1035 +msgid "Enter a new album name" msgstr "" -#: ../../Zotlabs/Module/Sources.php:118 ../../Zotlabs/Module/Sources.php:152 -msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." +#: ../../Zotlabs/Module/Photos.php:1036 +msgid "or select an existing one (doubleclick)" msgstr "" -#: ../../Zotlabs/Module/Sources.php:119 ../../Zotlabs/Module/Sources.php:153 -msgid "Only import content with these words (one per line)" +#: ../../Zotlabs/Module/Photos.php:1041 +msgid "Add a Tag" msgstr "" -#: ../../Zotlabs/Module/Sources.php:119 ../../Zotlabs/Module/Sources.php:153 -msgid "Leave blank to import all public content" +#: ../../Zotlabs/Module/Photos.php:1049 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" msgstr "" -#: ../../Zotlabs/Module/Sources.php:120 ../../Zotlabs/Module/Sources.php:159 -msgid "Channel Name" +#: ../../Zotlabs/Module/Photos.php:1052 +msgid "Flag as adult in album view" msgstr "" -#: ../../Zotlabs/Module/Sources.php:121 ../../Zotlabs/Module/Sources.php:156 -msgid "" -"Add the following categories to posts imported from this source (comma " -"separated)" +#: ../../Zotlabs/Module/Photos.php:1237 +msgid "Photo Tools" msgstr "" -#: ../../Zotlabs/Module/Sources.php:122 ../../Zotlabs/Module/Sources.php:157 -msgid "Resend posts with this channel as author" +#: ../../Zotlabs/Module/Photos.php:1246 +msgid "In This Photo:" msgstr "" -#: ../../Zotlabs/Module/Sources.php:122 ../../Zotlabs/Module/Sources.php:157 -msgid "Copyrights may apply" +#: ../../Zotlabs/Module/Photos.php:1251 +msgid "Map" msgstr "" -#: ../../Zotlabs/Module/Sources.php:142 ../../Zotlabs/Module/Sources.php:172 -msgid "Source not found." +#: ../../Zotlabs/Module/Impel.php:188 +#, php-format +msgid "%s element installed" msgstr "" -#: ../../Zotlabs/Module/Sources.php:149 -msgid "Edit Source" +#: ../../Zotlabs/Module/Impel.php:191 +#, php-format +msgid "%s element installation failed" msgstr "" -#: ../../Zotlabs/Module/Sources.php:150 -msgid "Delete Source" +#: ../../Zotlabs/Module/Common.php:14 +msgid "No channel." msgstr "" -#: ../../Zotlabs/Module/Sources.php:180 -msgid "Source removed" +#: ../../Zotlabs/Module/Common.php:45 +msgid "No connections in common." msgstr "" -#: ../../Zotlabs/Module/Sources.php:182 -msgid "Unable to remove source." +#: ../../Zotlabs/Module/Common.php:65 +msgid "View Common Connections" msgstr "" #: ../../Zotlabs/Module/Rbmark.php:93 @@ -14576,736 +14584,698 @@ msgstr "" msgid "Or enter new bookmark folder name" msgstr "" -#: ../../Zotlabs/Lib/AccessList.php:26 -msgid "" -"A deleted privacy group with this name was revived. Existing item " -"permissions may apply to this privacy group and any future " -"members. If this is not what you intended, please create another privacy " -"group with a different name." +#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." msgstr "" -#: ../../Zotlabs/Lib/AccessList.php:268 -msgid "Select a privacy group" +#: ../../Zotlabs/Module/Profperm.php:111 +msgid "Profile Visibility Editor" msgstr "" -#: ../../Zotlabs/Lib/Permcat.php:83 -msgctxt "permcat" -msgid "Default" +#: ../../Zotlabs/Module/Profperm.php:115 +msgid "Click on a contact to add or remove." msgstr "" -#: ../../Zotlabs/Lib/Activity.php:2271 -#, php-format -msgid "Likes %1$s's %2$s" +#: ../../Zotlabs/Module/Profperm.php:124 +msgid "Visible To" msgstr "" -#: ../../Zotlabs/Lib/Activity.php:2274 -#, php-format -msgid "Doesn't like %1$s's %2$s" +#: ../../Zotlabs/Module/Removeme.php:35 +msgid "" +"Channel removals are not allowed within 48 hours of changing the account " +"password." msgstr "" -#: ../../Zotlabs/Lib/Activity.php:2280 -#, php-format -msgid "Will attend %s's event" +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "This channel will be permanently removed. " msgstr "" -#: ../../Zotlabs/Lib/Activity.php:2283 -#, php-format -msgid "Will not attend %s's event" +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "This action can not be undone!" msgstr "" -#: ../../Zotlabs/Lib/Activity.php:2286 -#, php-format -msgid "May attend %s's event" +#: ../../Zotlabs/Module/Import_progress.php:36 +msgid "Item sync completed!" msgstr "" -#: ../../Zotlabs/Lib/Activity.php:2289 -#, php-format -msgid "May not attend %s's event" +#: ../../Zotlabs/Module/Import_progress.php:51 +msgid "Item sync completed but no items were found!" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:60 -msgid "$Projectname Notification" +#: ../../Zotlabs/Module/Import_progress.php:68 +msgid "File sync completed!" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:63 -msgid "Thank You," +#: ../../Zotlabs/Module/Import_progress.php:83 +msgid "File sync completed but no files were found!" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:66 -#, php-format -msgid "This email was sent by %1$s at %2$s." +#: ../../Zotlabs/Module/Import_progress.php:98 +msgid "Channel clone status" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:67 -#, php-format -msgid "" -"To stop receiving these messages, please adjust your Notification Settings " -"at %s" +#: ../../Zotlabs/Module/Import_progress.php:99 +msgid "Item sync status" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:68 -#, php-format -msgid "To stop receiving these messages, please adjust your %s." +#: ../../Zotlabs/Module/Import_progress.php:100 +msgid "File sync status" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:123 -#, php-format -msgid "%s " +#: ../../Zotlabs/Module/Import_progress.php:107 +msgid "Channel cloning completed!" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:128 -#, php-format -msgid "[$Projectname:Notify] New direct message received at %s" +#: ../../Zotlabs/Module/Import_progress.php:108 +msgid "Resume" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:130 -#, php-format -msgid "%1$s sent you a new direct message at %2$s" +#: ../../Zotlabs/Module/Import_progress.php:109 +msgid "Only resume if sync stalled!" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:131 -#, php-format -msgid "%1$s sent you %2$s." +#: ../../Zotlabs/Module/Manage.php:137 +msgid "Create a new channel" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:131 -msgid "a direct message" +#: ../../Zotlabs/Module/Manage.php:163 +msgid "Current Channel" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:132 -#, php-format -msgid "Please visit %s to view and/or reply to your direct messages." +#: ../../Zotlabs/Module/Manage.php:165 +msgid "Switch to one of your channels by selecting it." msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:145 -msgid "commented on" +#: ../../Zotlabs/Module/Manage.php:166 +msgid "Default Channel" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:158 ../../Zotlabs/Lib/Enotify.php:307 -msgid "liked" +#: ../../Zotlabs/Module/Manage.php:167 +msgid "Make Default" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:161 ../../Zotlabs/Lib/Enotify.php:307 -msgid "disliked" +#: ../../Zotlabs/Module/Manage.php:170 +#, php-format +msgid "%d new introductions" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:166 -msgid "voted on" +#: ../../Zotlabs/Module/Manage.php:172 +msgid "Delegated Channel" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:209 -#, php-format -msgid "%1$s %2$s [zrl=%3$s]a %4$s[/zrl]" +#: ../../Zotlabs/Module/Editwebpage.php:139 +msgid "Page link" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:217 -#, php-format -msgid "%1$s %2$s [zrl=%3$s]%4$s's %5$s[/zrl]" +#: ../../Zotlabs/Module/Editwebpage.php:166 +msgid "Edit Webpage" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:226 ../../Zotlabs/Lib/Enotify.php:311 -#, php-format -msgid "%1$s %2$s [zrl=%3$s]your %4$s[/zrl]" +#: ../../Zotlabs/Widget/Cover_photo.php:74 +msgid "Click to show more" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:238 -#, php-format -msgid "[$Projectname:Notify] Moderated Comment to conversation #%1$d by %2$s" +#: ../../Zotlabs/Widget/Appcategories.php:49 +msgid "App Categories" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:240 -#, php-format -msgid "[$Projectname:Notify] Comment to conversation #%1$d by %2$s" +#: ../../Zotlabs/Widget/Bookmarkedchats.php:25 +msgid "Bookmarked Chatrooms" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:241 -#, php-format -msgid "%1$s commented on an item/conversation you have been following" +#: ../../Zotlabs/Widget/Suggestions.php:58 +msgid "Suggestions" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:244 ../../Zotlabs/Lib/Enotify.php:331 -#: ../../Zotlabs/Lib/Enotify.php:347 ../../Zotlabs/Lib/Enotify.php:371 -#: ../../Zotlabs/Lib/Enotify.php:388 ../../Zotlabs/Lib/Enotify.php:401 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." +#: ../../Zotlabs/Widget/Suggestions.php:59 +msgid "See more..." msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:248 ../../Zotlabs/Lib/Enotify.php:249 -#, php-format -msgid "Please visit %s to approve or reject this comment." +#: ../../Zotlabs/Widget/Chatroom_list.php:26 +msgid "Overview" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:327 -#, php-format -msgid "[$Projectname:Notify] Like received to conversation #%1$d by %2$s" +#: ../../Zotlabs/Widget/Channel_activities.php:46 +msgid "No recent activities" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:328 -#, php-format -msgid "%1$s liked an item/conversation you created" +#: ../../Zotlabs/Widget/Channel_activities.php:214 +msgctxt "noun" +msgid "new connection" +msgid_plural "new connections" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Widget/Channel_activities.php:220 +msgctxt "noun" +msgid "notice" +msgid_plural "notices" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Widget/Suggestedchats.php:36 +msgid "Suggested Chatrooms" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:339 -#, php-format -msgid "[$Projectname:Notify] %s posted to your profile wall" +#: ../../Zotlabs/Widget/Privacygroups.php:45 +msgid "Add new group" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:341 -#, php-format -msgid "%1$s posted to your profile wall at %2$s" +#: ../../Zotlabs/Widget/Pinned.php:84 +msgid "I agree" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:343 -#, php-format -msgid "%1$s posted to [zrl=%2$s]your wall[/zrl]" +#: ../../Zotlabs/Widget/Pinned.php:84 +msgid "I disagree" +msgstr "" + +#: ../../Zotlabs/Widget/Pinned.php:84 +msgid "I abstain" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:365 +#: ../../Zotlabs/Widget/Pinned.php:125 ../../Zotlabs/Widget/Pinned.php:126 #, php-format -msgid "[$Projectname:Notify] %s tagged you" +msgid "View %s's profile - %s" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:366 -#, php-format -msgid "%1$s tagged you at %2$s" +#: ../../Zotlabs/Widget/Pinned.php:159 +msgid "Don't show" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:367 -#, php-format -msgid "%1$s [zrl=%2$s]tagged you[/zrl]." +#: ../../Zotlabs/Widget/Notes.php:39 +msgid "Read mode" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:378 -#, php-format -msgid "[$Projectname:Notify] %1$s poked you" +#: ../../Zotlabs/Widget/Notes.php:40 +msgid "Edit mode" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:379 -#, php-format -msgid "%1$s poked you at %2$s" +#: ../../Zotlabs/Widget/Notes.php:41 +msgid "Editing" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:380 -#, php-format -msgid "%1$s [zrl=%2$s]poked you[/zrl]." +#: ../../Zotlabs/Widget/Notes.php:42 +msgid "Saving" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:395 -#, php-format -msgid "[$Projectname:Notify] %s tagged your post" +#: ../../Zotlabs/Widget/Notes.php:43 +msgid "Saved" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:396 -#, php-format -msgid "%1$s tagged your post at %2$s" +#: ../../Zotlabs/Widget/Follow.php:34 +msgid "Add New Connection" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:397 -#, php-format -msgid "%1$s tagged [zrl=%2$s]your post[/zrl]" +#: ../../Zotlabs/Widget/Follow.php:35 +msgid "Enter channel address" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:408 -msgid "[$Projectname:Notify] Introduction received" +#: ../../Zotlabs/Widget/Follow.php:36 +msgid "Examples: bob@example.com, https://example.com/barbara" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:409 -#, php-format -msgid "You've received an new connection request from '%1$s' at %2$s" +#: ../../Zotlabs/Widget/Archive.php:49 +msgid "Archives" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:410 -#, php-format -msgid "You've received [zrl=%1$s]a new connection request[/zrl] from %2$s." +#: ../../Zotlabs/Widget/Permcats.php:43 +msgid "Add new role" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:413 ../../Zotlabs/Lib/Enotify.php:431 -#, php-format -msgid "You may visit their profile at %s" +#: ../../Zotlabs/Widget/Permcats.php:93 +msgid "Role members" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:415 -#, php-format -msgid "Please visit %s to approve or reject the connection request." +#: ../../Zotlabs/Widget/Notifications.php:24 +msgid "New network activity notifications" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:422 -msgid "[$Projectname:Notify] Friend suggestion received" +#: ../../Zotlabs/Widget/Notifications.php:27 +msgid "Network stream" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:423 -#, php-format -msgid "You've received a friend suggestion from '%1$s' at %2$s" +#: ../../Zotlabs/Widget/Notifications.php:30 +#: ../../Zotlabs/Widget/Notifications.php:69 +msgid "Mark all notifications read" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:424 -#, php-format -msgid "You've received [zrl=%1$s]a friend suggestion[/zrl] for %2$s from %3$s." +#: ../../Zotlabs/Widget/Notifications.php:33 +#: ../../Zotlabs/Widget/Notifications.php:53 +#: ../../Zotlabs/Widget/Notifications.php:72 +#: ../../Zotlabs/Widget/Notifications.php:164 +msgid "Show new posts only" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:429 -msgid "Name:" +#: ../../Zotlabs/Widget/Notifications.php:34 +#: ../../Zotlabs/Widget/Notifications.php:54 +#: ../../Zotlabs/Widget/Notifications.php:73 +#: ../../Zotlabs/Widget/Notifications.php:134 +#: ../../Zotlabs/Widget/Notifications.php:165 +msgid "Filter by name or address" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:430 -msgid "Photo:" +#: ../../Zotlabs/Widget/Notifications.php:44 +msgid "New home activity notifications" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:433 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." +#: ../../Zotlabs/Widget/Notifications.php:47 +msgid "Home stream" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:658 -msgid "[$Projectname:Notify]" +#: ../../Zotlabs/Widget/Notifications.php:50 +#: ../../Zotlabs/Widget/Notifications.php:161 +msgid "Mark all notifications seen" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:826 -msgid "created a new poll" +#: ../../Zotlabs/Widget/Notifications.php:62 +#: ../../Zotlabs/Widget/Activity_filter.php:44 +msgid "Direct Messages" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:826 -msgid "created a new post" +#: ../../Zotlabs/Widget/Notifications.php:63 +msgid "New direct messages notifications" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:827 -#, php-format -msgid "voted on %s's poll" +#: ../../Zotlabs/Widget/Notifications.php:66 +msgid "Direct messages stream" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:827 -#, php-format -msgid "commented on %s's post" +#: ../../Zotlabs/Widget/Notifications.php:81 +#: ../../Zotlabs/Widget/Activity_filter.php:53 +msgid "Events" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:831 -#, php-format -msgid "repeated %s's post" +#: ../../Zotlabs/Widget/Notifications.php:82 +msgid "New events notifications" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:835 -#, php-format -msgid "liked %s's post" +#: ../../Zotlabs/Widget/Notifications.php:85 +msgid "View events" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:839 -#, php-format -msgid "disliked %s's post" +#: ../../Zotlabs/Widget/Notifications.php:88 +msgid "Mark all events seen" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:843 ../../Zotlabs/Lib/Enotify.php:946 -msgid "shared a file with you" +#: ../../Zotlabs/Widget/Notifications.php:97 +msgid "New connections notifications" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:852 -#, php-format -msgid "edited a post dated %s" +#: ../../Zotlabs/Widget/Notifications.php:100 +msgid "View all connections" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:855 -#, php-format -msgid "edited a comment dated %s" +#: ../../Zotlabs/Widget/Notifications.php:109 +msgid "New files notifications" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:931 -msgid "added your channel" +#: ../../Zotlabs/Widget/Notifications.php:116 +#: ../../Zotlabs/Widget/Notifications.php:117 +#: ../../Zotlabs/Widget/Messages.php:35 +msgid "Notices" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:961 -msgid "sent you a direct message" +#: ../../Zotlabs/Widget/Notifications.php:120 +msgid "View all notices" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:968 -msgid "g A l F d" +#: ../../Zotlabs/Widget/Notifications.php:123 +msgid "Mark all notices seen" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:971 -msgid "[today]" +#: ../../Zotlabs/Widget/Notifications.php:144 +msgid "Registrations" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:981 -msgid "created an event" +#: ../../Zotlabs/Widget/Notifications.php:145 +msgid "New registrations notifications" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:996 -msgid "status verified" +#: ../../Zotlabs/Widget/Notifications.php:155 +msgid "New public stream notifications" msgstr "" -#: ../../Zotlabs/Lib/Connect.php:46 ../../Zotlabs/Lib/Connect.php:143 -msgid "Channel is blocked on this site." +#: ../../Zotlabs/Widget/Notifications.php:158 +msgid "Public stream" msgstr "" -#: ../../Zotlabs/Lib/Connect.php:51 -msgid "Channel location missing." +#: ../../Zotlabs/Widget/Notifications.php:172 +msgid "Sorry, you have got no notifications at the moment" msgstr "" -#: ../../Zotlabs/Lib/Connect.php:103 -msgid "Remote channel or protocol unavailable." +#: ../../Zotlabs/Widget/Settings_menu.php:37 +msgid "Account settings" msgstr "" -#: ../../Zotlabs/Lib/Connect.php:137 -msgid "Channel discovery failed." +#: ../../Zotlabs/Widget/Settings_menu.php:43 +msgid "Channel settings" msgstr "" -#: ../../Zotlabs/Lib/Connect.php:155 -msgid "Protocol disabled." +#: ../../Zotlabs/Widget/Settings_menu.php:49 +msgid "Privacy settings" msgstr "" -#: ../../Zotlabs/Lib/Connect.php:167 -msgid "Cannot connect to yourself." +#: ../../Zotlabs/Widget/Settings_menu.php:56 +msgid "Display settings" msgstr "" -#: ../../Zotlabs/Lib/Connect.php:272 -msgid "error saving data" +#: ../../Zotlabs/Widget/Settings_menu.php:63 +msgid "Manage locations" msgstr "" -#: ../../Zotlabs/Lib/Chatroom.php:25 -msgid "Missing room name" +#: ../../Zotlabs/Widget/Tokens.php:41 +msgid "Add new guest" msgstr "" -#: ../../Zotlabs/Lib/Chatroom.php:34 -msgid "Duplicate room name" +#: ../../Zotlabs/Widget/Rating.php:57 +msgid "Rating Tools" msgstr "" -#: ../../Zotlabs/Lib/Chatroom.php:84 ../../Zotlabs/Lib/Chatroom.php:92 -msgid "Invalid room specifier." +#: ../../Zotlabs/Widget/Rating.php:61 ../../Zotlabs/Widget/Rating.php:63 +msgid "Rate Me" msgstr "" -#: ../../Zotlabs/Lib/Chatroom.php:124 -msgid "Room not found." +#: ../../Zotlabs/Widget/Rating.php:66 +msgid "View Ratings" msgstr "" -#: ../../Zotlabs/Lib/Chatroom.php:145 -msgid "Room is full" +#: ../../Zotlabs/Widget/Affinity.php:60 +msgid "Refresh" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:328 -msgid "Affinity Tool" +#: ../../Zotlabs/Widget/Savedsearch.php:81 +msgid "Remove term" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:331 -msgid "Site Admin" +#: ../../Zotlabs/Widget/Photo_rand.php:63 ../../Zotlabs/Widget/Photo.php:54 +msgid "photo/image" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:335 -msgid "Content Filter" +#: ../../Zotlabs/Widget/Hq_controls.php:23 +msgid "Toggle post editor" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:338 -msgid "Remote Diagnostics" +#: ../../Zotlabs/Widget/Hq_controls.php:33 +msgid "Toggle personal notes" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:339 -msgid "Suggest Channels" +#: ../../Zotlabs/Widget/Hq_controls.php:43 +msgid "Channel activities" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:341 -msgid "Channel Manager" +#: ../../Zotlabs/Widget/Activity_filter.php:48 +msgid "Show direct (private) messages" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:342 -msgid "Stream" +#: ../../Zotlabs/Widget/Activity_filter.php:57 +msgid "Show posts that include events" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:353 -msgid "Mail" +#: ../../Zotlabs/Widget/Activity_filter.php:63 +msgid "Polls" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:356 -msgid "Chat" +#: ../../Zotlabs/Widget/Activity_filter.php:67 +msgid "Show posts that include polls" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:358 -msgid "Probe" +#: ../../Zotlabs/Widget/Activity_filter.php:90 +#, php-format +msgid "Show posts related to the %s privacy group" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:359 -msgid "Suggest" +#: ../../Zotlabs/Widget/Activity_filter.php:99 +msgid "Show my privacy groups" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:360 -msgid "Random Channel" +#: ../../Zotlabs/Widget/Activity_filter.php:123 +msgid "Show posts to this forum" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:361 -msgid "Invite" +#: ../../Zotlabs/Widget/Activity_filter.php:134 +msgid "Show forums" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:364 ../../Zotlabs/Storage/Browser.php:407 -msgid "Post" +#: ../../Zotlabs/Widget/Activity_filter.php:148 +msgid "Starred Posts" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:369 -msgid "Notifications" +#: ../../Zotlabs/Widget/Activity_filter.php:152 +msgid "Show posts that I have starred" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:370 -msgid "Order Apps" +#: ../../Zotlabs/Widget/Activity_filter.php:163 +msgid "Personal Posts" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:371 -msgid "CardDAV" +#: ../../Zotlabs/Widget/Activity_filter.php:167 +msgid "Show posts that mention or involve me" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:375 -msgid "OAuth Apps Manager" +#: ../../Zotlabs/Widget/Activity_filter.php:190 +#, php-format +msgid "Show posts that I have filed to %s" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:376 -msgid "OAuth2 Apps Manager" +#: ../../Zotlabs/Widget/Activity_filter.php:200 +msgid "Show filed post categories" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:377 -msgid "PDL Editor" +#: ../../Zotlabs/Widget/Activity_filter.php:214 +msgid "Panel search" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:380 -msgid "My Chatrooms" +#: ../../Zotlabs/Widget/Activity_filter.php:224 +msgid "Filter by name" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:381 -msgid "Channel Export" +#: ../../Zotlabs/Widget/Activity_filter.php:239 +msgid "Remove active filter" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:575 ../../Zotlabs/Lib/Apps.php:597 -msgid "Purchase" +#: ../../Zotlabs/Widget/Activity_filter.php:255 +msgid "Stream Filters" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:602 -msgid "Undelete" +#: ../../Zotlabs/Widget/Cdav.php:41 +msgid "Select Channel" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:610 -msgid "Add to app-tray" +#: ../../Zotlabs/Widget/Cdav.php:46 +msgid "Read-write" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:611 -msgid "Remove from app-tray" +#: ../../Zotlabs/Widget/Cdav.php:47 +msgid "Read-only" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:612 -msgid "Pin to navbar" +#: ../../Zotlabs/Widget/Cdav.php:133 +msgid "Channel Calendar" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:613 -msgid "Unpin from navbar" +#: ../../Zotlabs/Widget/Cdav.php:137 +msgid "Shared CalDAV Calendars" msgstr "" -#: ../../Zotlabs/Lib/Techlevels.php:10 -msgid "0. Beginner/Basic" +#: ../../Zotlabs/Widget/Cdav.php:141 +msgid "Share this calendar" msgstr "" -#: ../../Zotlabs/Lib/Techlevels.php:11 -msgid "1. Novice - not skilled but willing to learn" +#: ../../Zotlabs/Widget/Cdav.php:143 +msgid "Calendar name and color" msgstr "" -#: ../../Zotlabs/Lib/Techlevels.php:12 -msgid "2. Intermediate - somewhat comfortable" +#: ../../Zotlabs/Widget/Cdav.php:145 +msgid "Create new CalDAV calendar" msgstr "" -#: ../../Zotlabs/Lib/Techlevels.php:13 -msgid "3. Advanced - very comfortable" +#: ../../Zotlabs/Widget/Cdav.php:147 +msgid "Calendar Name" msgstr "" -#: ../../Zotlabs/Lib/Techlevels.php:14 -msgid "4. Expert - I can write computer code" +#: ../../Zotlabs/Widget/Cdav.php:148 +msgid "Calendar Tools" msgstr "" -#: ../../Zotlabs/Lib/Techlevels.php:15 -msgid "5. Wizard - I probably know more than you do" +#: ../../Zotlabs/Widget/Cdav.php:150 +msgid "Import calendar" msgstr "" -#: ../../Zotlabs/Lib/Libzotdir.php:163 -msgid "Directory Options" +#: ../../Zotlabs/Widget/Cdav.php:151 +msgid "Select a calendar to import to" msgstr "" -#: ../../Zotlabs/Lib/Libzotdir.php:165 -msgid "Safe Mode" +#: ../../Zotlabs/Widget/Cdav.php:178 +msgid "Addressbooks" msgstr "" -#: ../../Zotlabs/Lib/Libzotdir.php:166 -msgid "Public Forums Only" +#: ../../Zotlabs/Widget/Cdav.php:180 +msgid "Addressbook name" msgstr "" -#: ../../Zotlabs/Lib/Libzotdir.php:168 -msgid "This Website Only" +#: ../../Zotlabs/Widget/Cdav.php:182 +msgid "Create new addressbook" msgstr "" -#: ../../Zotlabs/Lib/Libzot.php:679 -msgid "Unable to verify channel signature" +#: ../../Zotlabs/Widget/Cdav.php:183 +msgid "Addressbook Name" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:110 -msgid "Restricted message" +#: ../../Zotlabs/Widget/Cdav.php:185 +msgid "Addressbook Tools" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:117 -msgid "Direct message" +#: ../../Zotlabs/Widget/Cdav.php:186 +msgid "Import addressbook" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:122 -msgid "Public Policy" +#: ../../Zotlabs/Widget/Cdav.php:187 +msgid "Select an addressbook to import to" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:160 -msgid "Privacy conflict. Discretion advised." +#: ../../Zotlabs/Widget/Appstore.php:16 +msgid "App Collections" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:191 ../../Zotlabs/Storage/Browser.php:369 -msgid "Admin Delete" +#: ../../Zotlabs/Widget/Appstore.php:18 +msgid "Installed apps" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:319 -msgid "Reply on this comment" +#: ../../Zotlabs/Widget/Newmember.php:36 +msgid "Profile Creation" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:319 -msgid "reply" +#: ../../Zotlabs/Widget/Newmember.php:38 +msgid "Upload profile photo" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:319 -msgid "Reply to" +#: ../../Zotlabs/Widget/Newmember.php:39 +msgid "Upload cover photo" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:342 -msgid "Delivery Report" +#: ../../Zotlabs/Widget/Newmember.php:43 +msgid "Find and Connect with others" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:362 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Lib/ThreadItem.php:363 -#, php-format -msgid "%d unseen" +#: ../../Zotlabs/Widget/Newmember.php:45 +msgid "View the directory" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:413 -msgid "Forum" +#: ../../Zotlabs/Widget/Newmember.php:47 +msgid "Manage your connections" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:420 -msgid "to" +#: ../../Zotlabs/Widget/Newmember.php:50 +msgid "Communicate" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:422 -msgid "Wall-to-Wall" +#: ../../Zotlabs/Widget/Newmember.php:52 +msgid "View your channel homepage" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:423 -msgid "via Wall-To-Wall:" +#: ../../Zotlabs/Widget/Newmember.php:53 +msgid "View your network stream" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:451 -msgid "Attend" +#: ../../Zotlabs/Widget/Newmember.php:59 +msgid "Documentation" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:469 -msgid "Go to previous comment" +#: ../../Zotlabs/Widget/Newmember.php:62 +msgid "Missing Features?" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:482 -msgid "Add to Calendar" +#: ../../Zotlabs/Widget/Newmember.php:64 +msgid "Pin apps to navigation bar" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:841 -msgid "Image" +#: ../../Zotlabs/Widget/Newmember.php:65 +msgid "Install more apps" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:843 -msgid "Insert Link" +#: ../../Zotlabs/Widget/Newmember.php:76 +msgid "View public stream" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:844 -msgid "Video" +#: ../../Zotlabs/Widget/Activity_order.php:96 +msgid "Commented Date" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:853 -msgid "Your full name (required)" +#: ../../Zotlabs/Widget/Activity_order.php:100 +msgid "Order by last commented date" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:854 -msgid "Your email address (required)" +#: ../../Zotlabs/Widget/Activity_order.php:103 +msgid "Posted Date" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:855 -msgid "Your website URL (optional)" +#: ../../Zotlabs/Widget/Activity_order.php:107 +msgid "Order by last posted date" msgstr "" -#: ../../Zotlabs/Lib/DB_Upgrade.php:67 -msgid "Source code of failed update: " +#: ../../Zotlabs/Widget/Activity_order.php:110 +msgid "Date Unthreaded" msgstr "" -#: ../../Zotlabs/Lib/DB_Upgrade.php:88 -#, php-format -msgid "Update Error at %s" +#: ../../Zotlabs/Widget/Activity_order.php:114 +msgid "Order unthreaded by date" msgstr "" -#: ../../Zotlabs/Lib/DB_Upgrade.php:94 -#, php-format -msgid "Update %s failed. See error logs." +#: ../../Zotlabs/Widget/Activity_order.php:129 +msgid "Stream Order" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:108 -#: ../../Zotlabs/Access/PermissionRoles.php:384 -msgid "Public" +#: ../../Zotlabs/Widget/Activity.php:55 +msgctxt "widget" +msgid "Activity" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:109 -msgid "Anybody in the $Projectname network" +#: ../../Zotlabs/Widget/Tasklist.php:31 +msgid "Tasks" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:110 -#, php-format -msgid "Any account on %s" +#: ../../Zotlabs/Widget/Admin.php:28 ../../Zotlabs/Widget/Admin.php:66 +msgid "Member registrations waiting for confirmation" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:111 -msgid "Any of my connections" +#: ../../Zotlabs/Widget/Admin.php:34 +msgid "Inspect queue" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:112 -msgid "Only connections I specifically allow" +#: ../../Zotlabs/Widget/Admin.php:35 +msgid "Queueworker" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:113 -msgid "Anybody authenticated (could include visitors from other networks)" +#: ../../Zotlabs/Widget/Admin.php:37 +msgid "DB updates" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:114 -msgid "Any connections including those who haven't yet been approved" +#: ../../Zotlabs/Widget/Admin.php:62 +msgid "Addon Features" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:150 -msgid "" -"This is your default setting for the audience of your normal stream, and " -"posts." +#: ../../Zotlabs/Widget/Messages.php:32 +msgid "Public and restricted messages" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:151 -msgid "" -"This is your default setting for who can view your default channel profile" +#: ../../Zotlabs/Widget/Messages.php:33 +msgid "Direct messages" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:152 -msgid "This is your default setting for who can view your connections" +#: ../../Zotlabs/Widget/Messages.php:34 +msgid "Starred messages" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:153 -msgid "" -"This is your default setting for who can view your file storage and photos" +#: ../../Zotlabs/Widget/Messages.php:37 +msgid "No messages" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:154 -msgid "This is your default setting for the audience of your webpages" +#: ../../Zotlabs/Widget/Messages.php:38 +msgid "Unseen" msgstr "" -#: ../../Zotlabs/Lib/Libsync.php:805 -#, php-format -msgid "Unable to verify site signature for %s" +#: ../../Zotlabs/Widget/Chatroom_members.php:17 +msgid "Chat Members" msgstr "" #: ../../Zotlabs/Access/PermissionRoles.php:337 @@ -15456,15 +15426,15 @@ msgstr "" msgid "Change filename to" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:309 ../../Zotlabs/Storage/Browser.php:390 +#: ../../Zotlabs/Storage/Browser.php:309 ../../Zotlabs/Storage/Browser.php:393 msgid "Select a target location" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:310 ../../Zotlabs/Storage/Browser.php:391 +#: ../../Zotlabs/Storage/Browser.php:310 ../../Zotlabs/Storage/Browser.php:394 msgid "Copy to target location" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:311 ../../Zotlabs/Storage/Browser.php:389 +#: ../../Zotlabs/Storage/Browser.php:311 ../../Zotlabs/Storage/Browser.php:392 msgid "Set permissions for all files and sub folders" msgstr "" @@ -15476,124 +15446,90 @@ msgstr "" msgid "File category" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:362 +#: ../../Zotlabs/Storage/Browser.php:365 msgid "Total" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:364 +#: ../../Zotlabs/Storage/Browser.php:367 msgid "Shared" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:366 +#: ../../Zotlabs/Storage/Browser.php:369 msgid "Add Files" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:381 +#: ../../Zotlabs/Storage/Browser.php:384 msgid "parent" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:399 +#: ../../Zotlabs/Storage/Browser.php:402 msgid "Select All" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:400 +#: ../../Zotlabs/Storage/Browser.php:403 msgid "Bulk Actions" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:401 +#: ../../Zotlabs/Storage/Browser.php:404 msgid "Adjust Permissions" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:402 +#: ../../Zotlabs/Storage/Browser.php:405 msgid "Move or Copy" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:405 +#: ../../Zotlabs/Storage/Browser.php:408 msgid "Info" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:406 +#: ../../Zotlabs/Storage/Browser.php:409 msgid "Rename" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:408 +#: ../../Zotlabs/Storage/Browser.php:411 msgid "Attachment BBcode" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:409 +#: ../../Zotlabs/Storage/Browser.php:412 msgid "Embed BBcode" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:410 +#: ../../Zotlabs/Storage/Browser.php:413 msgid "Link BBcode" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:480 +#: ../../Zotlabs/Storage/Browser.php:486 #, php-format msgid "You are using %1$s of your available file storage." msgstr "" -#: ../../Zotlabs/Storage/Browser.php:485 +#: ../../Zotlabs/Storage/Browser.php:491 #, php-format msgid "You are using %1$s of %2$s available file storage. (%3$s%)" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:496 +#: ../../Zotlabs/Storage/Browser.php:502 msgid "WARNING:" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:537 +#: ../../Zotlabs/Storage/Browser.php:543 msgid "Create new folder" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:539 +#: ../../Zotlabs/Storage/Browser.php:545 msgid "Upload file" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:551 +#: ../../Zotlabs/Storage/Browser.php:557 msgid "Drop files here to immediately upload" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:554 +#: ../../Zotlabs/Storage/Browser.php:560 msgid "" "You can select files via the upload button or drop them right here or into " "an existing folder." msgstr "" -#: ../../boot.php:1724 -msgid "Create an account to access services and applications" -msgstr "" - -#: ../../boot.php:1742 -msgid "Email or nickname" -msgstr "" - -#: ../../boot.php:1752 -msgid "Password" -msgstr "" - -#: ../../boot.php:1753 -msgid "Remember me" -msgstr "" - -#: ../../boot.php:1756 -msgid "Forgot your password?" -msgstr "" - -#: ../../boot.php:2637 -#, php-format -msgid "[$Projectname] Website SSL error for %s" -msgstr "" - -#: ../../boot.php:2642 -msgid "Website SSL certificate is not valid. Please correct." -msgstr "" - -#: ../../boot.php:2758 -#, php-format -msgid "[$Projectname] Cron tasks not running on %s" -msgstr "" - -#: ../../boot.php:2763 -msgid "Cron/Scheduled tasks not running." +#: ../../util/nconfig.php:34 +msgid "Source channel not found." msgstr "" -- cgit v1.2.3 From edcb0631aa441f36cfca2384d26a622a945c6e63 Mon Sep 17 00:00:00 2001 From: Mario Date: Thu, 5 Jan 2023 11:35:15 +0100 Subject: composer dump autoload --- vendor/autoload.php | 17 +++++++++++++++-- vendor/composer/ClassLoader.php | 31 ++++++++++++++++--------------- vendor/composer/autoload_classmap.php | 4 ++++ vendor/composer/autoload_real.php | 27 ++++++++++----------------- vendor/composer/autoload_static.php | 4 ++++ 5 files changed, 49 insertions(+), 34 deletions(-) diff --git a/vendor/autoload.php b/vendor/autoload.php index 5f506ac21..b8eae3f7e 100644 --- a/vendor/autoload.php +++ b/vendor/autoload.php @@ -3,8 +3,21 @@ // autoload.php @generated by Composer if (PHP_VERSION_ID < 50600) { - echo 'Composer 2.3.0 dropped support for autoloading on PHP <5.6 and you are running '.PHP_VERSION.', please upgrade PHP or use Composer 2.2 LTS via "composer self-update --2.2". Aborting.'.PHP_EOL; - exit(1); + if (!headers_sent()) { + header('HTTP/1.1 500 Internal Server Error'); + } + $err = 'Composer 2.3.0 dropped support for autoloading on PHP <5.6 and you are running '.PHP_VERSION.', please upgrade PHP or use Composer 2.2 LTS via "composer self-update --2.2". Aborting.'.PHP_EOL; + if (!ini_get('display_errors')) { + if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') { + fwrite(STDERR, $err); + } elseif (!headers_sent()) { + echo $err; + } + } + trigger_error( + $err, + E_USER_ERROR + ); } require_once __DIR__ . '/composer/autoload_real.php'; diff --git a/vendor/composer/ClassLoader.php b/vendor/composer/ClassLoader.php index afef3fa2a..3a8ed4886 100644 --- a/vendor/composer/ClassLoader.php +++ b/vendor/composer/ClassLoader.php @@ -42,6 +42,9 @@ namespace Composer\Autoload; */ class ClassLoader { + /** @var \Closure(string):void */ + private $includeFile; + /** @var ?string */ private $vendorDir; @@ -106,6 +109,18 @@ class ClassLoader public function __construct($vendorDir = null) { $this->vendorDir = $vendorDir; + + /** + * Scope isolated include. + * + * Prevents access to $this/self from included files. + * + * @param string $file + * @return void + */ + $this->includeFile = static function($file) { + include $file; + }; } /** @@ -425,7 +440,7 @@ class ClassLoader public function loadClass($class) { if ($file = $this->findFile($class)) { - includeFile($file); + ($this->includeFile)($file); return true; } @@ -556,17 +571,3 @@ class ClassLoader return false; } } - -/** - * Scope isolated include. - * - * Prevents access to $this/self from included files. - * - * @param string $file - * @return void - * @private - */ -function includeFile($file) -{ - include $file; -} diff --git a/vendor/composer/autoload_classmap.php b/vendor/composer/autoload_classmap.php index 910e542d2..896daae0b 100644 --- a/vendor/composer/autoload_classmap.php +++ b/vendor/composer/autoload_classmap.php @@ -1196,6 +1196,7 @@ return array( 'Zotlabs\\Lib\\Permcat' => $baseDir . '/Zotlabs/Lib/Permcat.php', 'Zotlabs\\Lib\\PermissionDescription' => $baseDir . '/Zotlabs/Lib/PermissionDescription.php', 'Zotlabs\\Lib\\Queue' => $baseDir . '/Zotlabs/Lib/Queue.php', + 'Zotlabs\\Lib\\QueueWorker' => $baseDir . '/Zotlabs/Lib/QueueWorker.php', 'Zotlabs\\Lib\\SConfig' => $baseDir . '/Zotlabs/Lib/SConfig.php', 'Zotlabs\\Lib\\Share' => $baseDir . '/Zotlabs/Lib/Share.php', 'Zotlabs\\Lib\\SuperCurl' => $baseDir . '/Zotlabs/Lib/SuperCurl.php', @@ -1223,6 +1224,7 @@ return array( 'Zotlabs\\Module\\Admin\\Logs' => $baseDir . '/Zotlabs/Module/Admin/Logs.php', 'Zotlabs\\Module\\Admin\\Profs' => $baseDir . '/Zotlabs/Module/Admin/Profs.php', 'Zotlabs\\Module\\Admin\\Queue' => $baseDir . '/Zotlabs/Module/Admin/Queue.php', + 'Zotlabs\\Module\\Admin\\Queueworker' => $baseDir . '/Zotlabs/Module/Admin/Queueworker.php', 'Zotlabs\\Module\\Admin\\Security' => $baseDir . '/Zotlabs/Module/Admin/Security.php', 'Zotlabs\\Module\\Admin\\Site' => $baseDir . '/Zotlabs/Module/Admin/Site.php', 'Zotlabs\\Module\\Admin\\Themes' => $baseDir . '/Zotlabs/Module/Admin/Themes.php', @@ -1704,6 +1706,8 @@ return array( 'Zotlabs\\Update\\_1251' => $baseDir . '/Zotlabs/Update/_1251.php', 'Zotlabs\\Update\\_1252' => $baseDir . '/Zotlabs/Update/_1252.php', 'Zotlabs\\Update\\_1253' => $baseDir . '/Zotlabs/Update/_1253.php', + 'Zotlabs\\Update\\_1254' => $baseDir . '/Zotlabs/Update/_1254.php', + 'Zotlabs\\Update\\_1255' => $baseDir . '/Zotlabs/Update/_1255.php', 'Zotlabs\\Web\\Controller' => $baseDir . '/Zotlabs/Web/Controller.php', 'Zotlabs\\Web\\HTTPHeaders' => $baseDir . '/Zotlabs/Web/HTTPHeaders.php', 'Zotlabs\\Web\\HTTPSig' => $baseDir . '/Zotlabs/Web/HTTPSig.php', diff --git a/vendor/composer/autoload_real.php b/vendor/composer/autoload_real.php index 8f436d4ab..16298a0b9 100644 --- a/vendor/composer/autoload_real.php +++ b/vendor/composer/autoload_real.php @@ -37,25 +37,18 @@ class ComposerAutoloaderInit7b34d7e50a62201ec5d5e526a5b8b35d $loader->register(true); - $includeFiles = \Composer\Autoload\ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d::$files; - foreach ($includeFiles as $fileIdentifier => $file) { - composerRequire7b34d7e50a62201ec5d5e526a5b8b35d($fileIdentifier, $file); + $filesToLoad = \Composer\Autoload\ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d::$files; + $requireFile = static function ($fileIdentifier, $file) { + if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { + $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true; + + require $file; + } + }; + foreach ($filesToLoad as $fileIdentifier => $file) { + ($requireFile)($fileIdentifier, $file); } return $loader; } } - -/** - * @param string $fileIdentifier - * @param string $file - * @return void - */ -function composerRequire7b34d7e50a62201ec5d5e526a5b8b35d($fileIdentifier, $file) -{ - if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { - $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true; - - require $file; - } -} diff --git a/vendor/composer/autoload_static.php b/vendor/composer/autoload_static.php index 75f0b21f7..1a3ed33e7 100644 --- a/vendor/composer/autoload_static.php +++ b/vendor/composer/autoload_static.php @@ -1407,6 +1407,7 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d 'Zotlabs\\Lib\\Permcat' => __DIR__ . '/../..' . '/Zotlabs/Lib/Permcat.php', 'Zotlabs\\Lib\\PermissionDescription' => __DIR__ . '/../..' . '/Zotlabs/Lib/PermissionDescription.php', 'Zotlabs\\Lib\\Queue' => __DIR__ . '/../..' . '/Zotlabs/Lib/Queue.php', + 'Zotlabs\\Lib\\QueueWorker' => __DIR__ . '/../..' . '/Zotlabs/Lib/QueueWorker.php', 'Zotlabs\\Lib\\SConfig' => __DIR__ . '/../..' . '/Zotlabs/Lib/SConfig.php', 'Zotlabs\\Lib\\Share' => __DIR__ . '/../..' . '/Zotlabs/Lib/Share.php', 'Zotlabs\\Lib\\SuperCurl' => __DIR__ . '/../..' . '/Zotlabs/Lib/SuperCurl.php', @@ -1434,6 +1435,7 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d 'Zotlabs\\Module\\Admin\\Logs' => __DIR__ . '/../..' . '/Zotlabs/Module/Admin/Logs.php', 'Zotlabs\\Module\\Admin\\Profs' => __DIR__ . '/../..' . '/Zotlabs/Module/Admin/Profs.php', 'Zotlabs\\Module\\Admin\\Queue' => __DIR__ . '/../..' . '/Zotlabs/Module/Admin/Queue.php', + 'Zotlabs\\Module\\Admin\\Queueworker' => __DIR__ . '/../..' . '/Zotlabs/Module/Admin/Queueworker.php', 'Zotlabs\\Module\\Admin\\Security' => __DIR__ . '/../..' . '/Zotlabs/Module/Admin/Security.php', 'Zotlabs\\Module\\Admin\\Site' => __DIR__ . '/../..' . '/Zotlabs/Module/Admin/Site.php', 'Zotlabs\\Module\\Admin\\Themes' => __DIR__ . '/../..' . '/Zotlabs/Module/Admin/Themes.php', @@ -1915,6 +1917,8 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d 'Zotlabs\\Update\\_1251' => __DIR__ . '/../..' . '/Zotlabs/Update/_1251.php', 'Zotlabs\\Update\\_1252' => __DIR__ . '/../..' . '/Zotlabs/Update/_1252.php', 'Zotlabs\\Update\\_1253' => __DIR__ . '/../..' . '/Zotlabs/Update/_1253.php', + 'Zotlabs\\Update\\_1254' => __DIR__ . '/../..' . '/Zotlabs/Update/_1254.php', + 'Zotlabs\\Update\\_1255' => __DIR__ . '/../..' . '/Zotlabs/Update/_1255.php', 'Zotlabs\\Web\\Controller' => __DIR__ . '/../..' . '/Zotlabs/Web/Controller.php', 'Zotlabs\\Web\\HTTPHeaders' => __DIR__ . '/../..' . '/Zotlabs/Web/HTTPHeaders.php', 'Zotlabs\\Web\\HTTPSig' => __DIR__ . '/../..' . '/Zotlabs/Web/HTTPSig.php', -- cgit v1.2.3 From 79d99688b4febeef6ae552252c254efa6911fd53 Mon Sep 17 00:00:00 2001 From: Mario Date: Thu, 5 Jan 2023 11:39:09 +0100 Subject: bump version --- boot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot.php b/boot.php index a28805a62..0e324cc5b 100644 --- a/boot.php +++ b/boot.php @@ -60,7 +60,7 @@ require_once('include/bbcode.php'); require_once('include/items.php'); define('PLATFORM_NAME', 'hubzilla'); -define('STD_VERSION', '8.0RC1'); +define('STD_VERSION', '8.1'); define('ZOT_REVISION', '6.0'); define('DB_UPDATE_VERSION', 1255); -- cgit v1.2.3 From 47071c58aa868ee9756a98c967b64c024d22920b Mon Sep 17 00:00:00 2001 From: Mario Date: Thu, 5 Jan 2023 18:21:49 +0100 Subject: fix affinity slider updates - issue #1714 --- Zotlabs/Web/Session.php | 2 +- library/jRange/.gitignore | 2 +- library/jRange/demo/index.html | 87 +++++++++++++++++++--- library/jRange/jquery.range-min.js | 2 +- library/jRange/jquery.range.js | 146 +++++++++++++++++++++++++++---------- view/js/main.js | 11 ++- view/tpl/main_slider.tpl | 59 +++++++-------- 7 files changed, 220 insertions(+), 89 deletions(-) diff --git a/Zotlabs/Web/Session.php b/Zotlabs/Web/Session.php index 14c054d20..1b5537ba0 100644 --- a/Zotlabs/Web/Session.php +++ b/Zotlabs/Web/Session.php @@ -81,7 +81,7 @@ class Session { 'lifetime' => ((isset($arr['lifetime'])) ? $arr['lifetime'] : 0), 'path' => ((isset($arr['path'])) ? $arr['path'] : '/'), 'domain' => (($arr['domain']) ? $arr['domain'] : false), - 'secure' => ((isset($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) == 'on') ? true : false), + 'secure' => true, //((isset($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) == 'on') ? true : false), 'httponly' => ((isset($arr['httponly'])) ? $arr['httponly'] : true), 'samesite' => 'None' ]); diff --git a/library/jRange/.gitignore b/library/jRange/.gitignore index 089ae868a..bdedd7dd3 100644 --- a/library/jRange/.gitignore +++ b/library/jRange/.gitignore @@ -1,2 +1,2 @@ - +.DS_Store *.codekit diff --git a/library/jRange/demo/index.html b/library/jRange/demo/index.html index 19a5f33f0..61966ba22 100644 --- a/library/jRange/demo/index.html +++ b/library/jRange/demo/index.html @@ -38,17 +38,18 @@
$('.single-slider').jRange({
-    from: 0,
-    to: 100,
-    step: 1,
-    scale: [0,25,50,75,100],
+    from: -2.0,
+    to: 2.0,
+    step: 0.5,
+    scale: [-2.0,-1.0,0.0,1.0,2.0],
     format: '%s',
     width: 300,
-    showLabels: true
+    showLabels: true,
+    snap: true
 });
- +
@@ -179,6 +180,15 @@ Default : false

True if this is a range selector. If its a range the value of hidden input will be set comma-seperated, e.g., "25,75"

+ + + snap + Optional + Boolean + + Default : false +

True to snap slider to step values

+ disable @@ -203,8 +213,62 @@

For single slider value is without comma, however for a range selector value is comma-seperated.

+ + ondragend + Optional + Function + +

ondragend callback. Useful if you want to fire event just once per slider drag.

+ + + + onbarclicked + Optional + Function + +

called when user clicks on the bar

+ + +

Modification

+

Change values on runtime

+

Methods which you can call to dynamically modify current values and range. + + + + + + + + + + + + + + + + + + + +
MethodDescription
setValue +

sets the current value of the slider without changing its range, if you want to update the range as well use updateRange instead.

+ + $('.slider').jRange('setValue', '10,20');
+ $('.slider').jRange('setValue', '10'); +
+
updateRange +

'updateRange' to change (min, max) value and interval after initialized.

+ + $('.slider').jRange('updateRange', '0,100');
+ $('.slider').jRange('updateRange', '0,100', '25,50');
+ $('.slider').jRange('updateRange', '0,100', 25); +
+

passing second parameter also sets its current value

+
+

@@ -235,13 +299,14 @@