aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2024-11-08 11:19:42 +0100
committerMario Vavti <mario@mariovavti.com>2024-11-08 11:19:42 +0100
commit4b4cac63fd4597b5c3090377196c8ad970900b21 (patch)
treea13eb1e5b569e6ac023000a8acb78d9f016f5209
parent21b60bf119a3d070e385c1011f4c3ccb9951f23c (diff)
parent17183cc5dcbc5eb825d353d9f24fa74b2e4c6cdd (diff)
downloadvolse-hubzilla-4b4cac63fd4597b5c3090377196c8ad970900b21.tar.gz
volse-hubzilla-4b4cac63fd4597b5c3090377196c8ad970900b21.tar.bz2
volse-hubzilla-4b4cac63fd4597b5c3090377196c8ad970900b21.zip
Merge branch 'dev' into containers
-rw-r--r--.phpcs.xml4
-rw-r--r--CHANGELOG26
-rw-r--r--Zotlabs/Lib/Libsync.php2
-rw-r--r--Zotlabs/Module/Thing.php35
-rw-r--r--boot.php2
-rwxr-xr-xtests/create_test_db.sh13
-rw-r--r--view/js/main.js52
-rw-r--r--view/nb/hmessages.po (renamed from view/nb-no/hmessages.po)21805
-rw-r--r--view/nb/hstrings.php (renamed from view/nb-no/hstrings.php)5460
-rw-r--r--view/nb/lostpass_eml.tpl (renamed from view/nb-no/lostpass_eml.tpl)0
-rw-r--r--view/nb/messages.po (renamed from view/nb-no/messages.po)0
-rw-r--r--view/nb/passchanged_eml.tpl (renamed from view/nb-no/passchanged_eml.tpl)0
-rw-r--r--view/nb/register_open_eml.tpl (renamed from view/nb-no/register_open_eml.tpl)0
-rw-r--r--view/nb/register_verify_eml.tpl (renamed from view/nb-no/register_verify_eml.tpl)0
-rw-r--r--view/nb/strings.php (renamed from view/nb-no/strings.php)0
-rw-r--r--view/nb/update_fail_eml.tpl (renamed from view/nb-no/update_fail_eml.tpl)0
-rw-r--r--view/tpl/cdav_calendar.tpl10
17 files changed, 13624 insertions, 13785 deletions
diff --git a/.phpcs.xml b/.phpcs.xml
index 0054e4cda..c9c9cdd57 100644
--- a/.phpcs.xml
+++ b/.phpcs.xml
@@ -48,6 +48,10 @@
<exclude name="Generic.Files.OneClassPerFile.MultipleFound"/>
<exclude name="Generic.Files.OneObjectStructurePerFile.MultipleFound"/>
<exclude name="Generic.Formatting.SpaceAfterCast.NoSpace"/>
+
+ <exclude name="Generic.Classes.OpeningBraceSameLine.BraceOnNewLine" />
+ <exclude name="Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed" />
+ <exclude name="Generic.Functions.OpeningFunctionBraceKernighanRitchie.BraceOnNewLine" />
</rule>
<!--
diff --git a/CHANGELOG b/CHANGELOG
index 8055223ad..cbfcab178 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,29 @@
+Hubzilla 9.4.4 (2024-11-06)
+ - Update Norwegian translations
+ - Fix error adding things when multiple profiles not enabled
+ - Port mod thing to use $_GET/$_POST instead of $_REQUEST
+ - Move Norwegian translations from nb-no to nb
+ - Fix intact alernative network hublocs being marked deleted in Libsync::sync_locations()
+ - Fix modals only partly removed when DOM emlement updated via ajax
+ - Add explicit check for channel_address in channel_url()
+ - Fix PHP deprecation warnings in mod setup
+ - Fix PHP warning in Web/HttpMeta
+ - Fix typo in UnitTestCase
+ - Fix missing CSRF token checks in mod account_edit
+ - Fix OCAP tokens only added to images
+ - Fix unescaped zid parameter
+ - Fix wrong date format in published date in update question activities
+ - Fix include for en TOS page
+ - Fix query in copy_of_pubitem() returning duplicate items
+ - Fix edit button not clickable if below right aside when viewing webpages
+ - Fix rendering of category tags icons in the editor
+ - Fix regex to detect URLs in cleanup_bbcode
+ - Fix duplicate posts from forum clones
+ - Fix follow to non primary hub location in pubcrawl addon
+ - Fix id host not rewritten to local host in pubcrawl addon
+ - Fix regression when manually fetching items in pubcrawl addon
+
+
Hubzilla 9.4.3 (2024-10-10)
- Discard Add/Remove activities (Hubzilla 10 and (streams) compatibility)
- Fix HQ channel activities icons
diff --git a/Zotlabs/Lib/Libsync.php b/Zotlabs/Lib/Libsync.php
index a7e33ba6b..c6b149738 100644
--- a/Zotlabs/Lib/Libsync.php
+++ b/Zotlabs/Lib/Libsync.php
@@ -885,7 +885,7 @@ class Libsync {
dbesc($t)
);
- q("update hubloc set hubloc_error = 1, hubloc_deleted = 1 where hubloc_url = '%s' and hubloc_sitekey != '%s'",
+ q("update hubloc set hubloc_error = 1, hubloc_deleted = 1 where hubloc_url = '%s' and hubloc_sitekey != '%s' and hubloc_network = 'zot6'",
dbesc($r[0]['hubloc_url']),
dbesc($r[0]['hubloc_sitekey'])
);
diff --git a/Zotlabs/Module/Thing.php b/Zotlabs/Module/Thing.php
index 2038db8c0..a77081741 100644
--- a/Zotlabs/Module/Thing.php
+++ b/Zotlabs/Module/Thing.php
@@ -50,24 +50,31 @@ class Thing extends \Zotlabs\Web\Controller {
$channel = \App::get_channel();
- $term_hash = (($_REQUEST['term_hash']) ? $_REQUEST['term_hash'] : '');
+ $term_hash = (($_POST['term_hash']) ? $_POST['term_hash'] : '');
- $name = escape_tags($_REQUEST['term']);
- $verb = escape_tags($_REQUEST['verb']);
- $activity = intval($_REQUEST['activity']);
- $profile_guid = escape_tags($_REQUEST['profile_assign']);
- $url = $_REQUEST['url'];
- $photo = $_REQUEST['img'];
+ $name = escape_tags($_POST['term']);
+ $verb = escape_tags($_POST['verb']);
+ $activity = intval($_POST['activity']);
+ $url = $_POST['url'];
+ $photo = $_POST['img'];
+
+ $profile_guid = isset($_POST['profile_assign'])
+ ? escape_tags($_POST['profile_assign'])
+ : null;
$hash = new_uuid();
$verbs = obj_verbs();
- /**
- * verbs: [0] = first person singular, e.g. "I want", [1] = 3rd person singular, e.g. "Bill wants"
- * We use the first person form when creating an activity, but the third person for use in activities
- * @FIXME There is no accounting for verb gender for languages where this is significant. We may eventually
- * require obj_verbs() to provide full conjugations and specify which form to use in the $_REQUEST params to this module.
+ /*
+ * verbs: [0] = first person singular, e.g. "I want", [1] = 3rd person
+ * singular, e.g. "Bill wants" We use the first person form when
+ * creating an activity, but the third person for use in activities
+ *
+ * @FIXME There is no accounting for verb gender for languages where
+ * this is significant. We may eventually require obj_verbs() to
+ * provide full conjugations and specify which form to use in the
+ * $_POST params to this module.
*/
$translated_verb = $verbs[$verb][1];
@@ -100,7 +107,7 @@ class Thing extends \Zotlabs\Web\Controller {
return;
$acl = new \Zotlabs\Access\AccessList($channel);
- $acl->set_from_array($_REQUEST);
+ $acl->set_from_array($_POST);
$x = $acl->get();
@@ -394,7 +401,7 @@ class Thing extends \Zotlabs\Web\Controller {
'$profile_lbl' => t('Select a profile'),
'$profile_select' => contact_profile_assign(''),
'$verb_lbl' => $channel['channel_name'],
- '$activity' => array('activity',t('Post an activity'),((array_key_exists('activity',$_REQUEST)) ? $_REQUEST['activity'] : true),t('Only sends to viewers of the applicable profile')),
+ '$activity' => array('activity',t('Post an activity'),((array_key_exists('activity',$_GET)) ? $_GET['activity'] : true),t('Only sends to viewers of the applicable profile')),
'$verb_select' => obj_verb_selector(),
'$thing_lbl' => t('Name of thing e.g. something'),
'$url_lbl' => t('URL of thing (optional)'),
diff --git a/boot.php b/boot.php
index 8723874b9..07d19e753 100644
--- a/boot.php
+++ b/boot.php
@@ -66,7 +66,7 @@ require_once('include/security.php');
define('PLATFORM_NAME', 'hubzilla');
-define('STD_VERSION', '9.5');
+define('STD_VERSION', '9.5.1');
define('ZOT_REVISION', '6.0');
define('DB_UPDATE_VERSION', 1263);
diff --git a/tests/create_test_db.sh b/tests/create_test_db.sh
index b98f5e2a5..dc9122aa0 100755
--- a/tests/create_test_db.sh
+++ b/tests/create_test_db.sh
@@ -40,6 +40,7 @@ case $HZ_TEST_DB_TYPE in
mariadb | mysql )
db_type="mysql"
+ db_binary=$HZ_TEST_DB_TYPE
default_charset="utf8mb4"
root_user="root"
root_passwd="root"
@@ -90,11 +91,11 @@ else
echo -e "\n--------------"
echo "Client version:"
echo -e "--------------\n"
- mysql --version
+ $db_binary --version
- mysql -v -u $HZ_TEST_DB_ROOT_USER -p$HZ_TEST_DB_ROOT_PASS -Ns -e "SELECT VERSION();"
+ $db_binary -v -u $HZ_TEST_DB_ROOT_USER -p$HZ_TEST_DB_ROOT_PASS -Ns -e "SELECT VERSION();"
- mysql -u $HZ_TEST_DB_ROOT_USER -p$HZ_TEST_DB_ROOT_PASS <<-EOSQL
+ $db_binary -u $HZ_TEST_DB_ROOT_USER -p$HZ_TEST_DB_ROOT_PASS <<-EOSQL
DROP DATABASE IF EXISTS $HZ_TEST_DB_NAME;
CREATE DATABASE $HZ_TEST_DB_NAME CHARACTER SET $HZ_TEST_DB_CHARSET;
@@ -107,7 +108,7 @@ else
echo -e "\n--------------"
echo "Importing schema..."
echo -e "--------------\n"
- mysql -u $HZ_TEST_DB_USER -p$HZ_TEST_DB_PASS $HZ_TEST_DB_NAME < ./install/schema_mysql.sql
- mysql -v -u $HZ_TEST_DB_ROOT_USER -p$HZ_TEST_DB_ROOT_PASS -Ns -e "show databases"
- mysql -v -u $HZ_TEST_DB_USER -p$HZ_TEST_DB_PASS $HZ_TEST_DB_NAME -Ns -e "show tables"
+ $db_binary -u $HZ_TEST_DB_USER -p$HZ_TEST_DB_PASS $HZ_TEST_DB_NAME < ./install/schema_mysql.sql
+ $db_binary -v -u $HZ_TEST_DB_ROOT_USER -p$HZ_TEST_DB_ROOT_PASS -Ns -e "show databases"
+ $db_binary -v -u $HZ_TEST_DB_USER -p$HZ_TEST_DB_PASS $HZ_TEST_DB_NAME -Ns -e "show tables"
fi
diff --git a/view/js/main.js b/view/js/main.js
index 87025a1c8..c1b0d410c 100644
--- a/view/js/main.js
+++ b/view/js/main.js
@@ -1178,20 +1178,27 @@ function justifyPhotosAjax(id) {
}
function dolike(ident, verb) {
- $('#like-rotator-' + ident.toString()).show();
+ $('#like-rotator-' + ident).show();
- if(typeof conv_mode == typeof undefined)
+ if (typeof conv_mode == typeof undefined) {
conv_mode = '';
+ }
- if(typeof page_mode == typeof undefined)
+ if (typeof page_mode == typeof undefined) {
page_mode = '';
+ }
+
+ let reload = 0;
- var reload = '';
- if(module == 'photos')
+ if (module == 'photos') {
reload = 1;
+ }
+
- $.get('like/' + ident.toString() + '?verb=' + verb + '&conv_mode=' + conv_mode + '&page_mode=' + page_mode + '&reload=' + reload, function (data) {
- if(data.success) {
+ $.get('like/' + ident + '?verb=' + verb + '&conv_mode=' + conv_mode + '&page_mode=' + page_mode + '&reload=' + reload, function (data) {
+ if (data.success) {
+
+ close_modal();
// mod photos
if (data.reload) {
@@ -1213,10 +1220,9 @@ function dolike(ident, verb) {
$('#wall-item-ago-' + data.id + ' .autotime').timeago();
collapseHeight();
liking = 0;
- // remove modal backdrop in case the update was triggered from a modal
- $('.modal-backdrop').remove();
}
});
+
liking = 1;
}
@@ -1332,26 +1338,28 @@ function dropItem(url, object, b64mid) {
}
function dosubthread(ident) {
- $('#like-rotator-' + ident.toString()).show();
- $.get('subthread/sub/' + ident.toString(), updateInit );
+ $('#like-rotator-' + ident).show();
+ $.get('subthread/sub/' + ident, updateInit );
liking = 1;
}
function dounsubthread(ident) {
- $('#like-rotator-' + ident.toString()).show();
- $.get('subthread/unsub/' + ident.toString(), updateInit );
+ $('#like-rotator-' + ident).show();
+ $.get('subthread/unsub/' + ident, updateInit );
liking = 1;
}
-function moderate_approve(ident) {
- $('#like-rotator-' + ident.toString()).show();
- $.get('moderate/' + ident.toString() + '/approve', updateInit );
+function moderate_approve(ident, verb) {
+ $('#like-rotator-' + ident).show();
+ close_modal();
+ $.get('moderate/' + ident + '/approve', updateInit );
liking = 1;
}
function moderate_drop(ident) {
- $('#like-rotator-' + ident.toString()).show();
- $.get('moderate/' + ident.toString() + '/drop', $('#thread-wrapper-' + ident.toString()).fadeOut(function() { this.remove(); }));
+ $('#like-rotator-' + ident).show();
+ close_modal();
+ $.get('moderate/' + ident + '/drop', $('#thread-wrapper-' + ident).fadeOut(function() { this.remove(); }));
liking = 1;
}
@@ -1723,3 +1731,11 @@ function toast(string, severity) {
toastInstance.show();
}
+
+function close_modal() {
+ let modal = bootstrap.Modal.getInstance(document.querySelector('.modal.show'));
+
+ if (modal) {
+ modal.hide();
+ }
+}
diff --git a/view/nb-no/hmessages.po b/view/nb/hmessages.po
index d8f0bffc4..3d0fa3dca 100644
--- a/view/nb-no/hmessages.po
+++ b/view/nb/hmessages.po
@@ -3,4329 +3,2431 @@
# This file is distributed under the same license as the hubzilla package.
# Mike Macgirvin, 2012
# Haakon Meland Eriksen <haakon.eriksen@far.no>, 2015-2016.
-# SPDX-FileCopyrightText: 2022, 2023 Harald Eilertsen <haraldei@anduin.net>
+# SPDX-FileCopyrightText: 2022, 2023, 2024 Harald Eilertsen <haraldei@anduin.net>
#
msgid ""
msgstr ""
"Project-Id-Version: 8.6RC1\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-07-04 17:57+0000\n"
-"PO-Revision-Date: 2023-12-15 22:33+0100\n"
+"POT-Creation-Date: 2024-09-20 12:31+0200\n"
+"PO-Revision-Date: 2024-11-04 10:19+0100\n"
"Last-Translator: Harald Eilertsen <haraldei@anduin.net>\n"
-"Language-Team: Norwegian Bokmal <l10n-no@lister.huftis.org>\n"
+"Language-Team: Norwegian Bokmål <l10n-no@lister.huftis.org>\n"
"Language: nb_NO\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1 ? 1 : 0);\n"
-"X-Generator: Lokalize 23.08.4\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:3502
-#: ../../Zotlabs/Module/Admin/Site.php:245
-msgid "Default"
-msgstr "Standard"
-
-#: ../../view/theme/redbasic/php/config.php:16
-#: ../../view/theme/redbasic/php/config.php:19
-msgid "Focus (Hubzilla default)"
-msgstr "Focus (Hubzilla standard)"
+"X-Generator: Lokalize 24.08.2\n"
-#: ../../view/theme/redbasic/php/config.php:98
-#: ../../addon/wiki/Widget/Wiki_pages.php:69 ../../addon/wiki/Mod_Wiki.php:218
-#: ../../addon/wiki/Mod_Wiki.php:907
-#: ../../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:140
-#: ../../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:1425
-#: ../../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:101 ../../addon/piwik/piwik.php:95
-#: ../../addon/workflow/workflow.php:1468
-#: ../../addon/workflow/workflow.php:1527
-#: ../../addon/workflow/workflow.php:1646
-#: ../../addon/workflow/workflow.php:2749
-#: ../../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:208 ../../Zotlabs/Module/Chat.php:247
-#: ../../Zotlabs/Module/Poke.php:199 ../../Zotlabs/Module/Mitem.php:259
-#: ../../Zotlabs/Module/Filestorage.php:208
-#: ../../Zotlabs/Module/Connect.php:107 ../../Zotlabs/Module/Editpost.php:88
-#: ../../Zotlabs/Module/Admin/Themes.php:158
-#: ../../Zotlabs/Module/Admin/Features.php:66
-#: ../../Zotlabs/Module/Admin/Security.php:129
-#: ../../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:445
-#: ../../Zotlabs/Module/Regate.php:407 ../../Zotlabs/Module/Permcats.php:257
-#: ../../Zotlabs/Module/Mood.php:156 ../../Zotlabs/Module/Appman.php:220
-#: ../../Zotlabs/Module/Contactedit.php:429
-#: ../../Zotlabs/Module/Contactedit.php:462
-#: ../../Zotlabs/Module/Email_validation.php:40
-#: ../../Zotlabs/Module/Photos.php:1053 ../../Zotlabs/Module/Photos.php:1093
-#: ../../Zotlabs/Module/Photos.php:1206 ../../Zotlabs/Module/Profiles.php:739
-#: ../../Zotlabs/Module/Invite.php:563 ../../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:229
-#: ../../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/Multifactor.php:85
-#: ../../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:122
-#: ../../Zotlabs/Module/Settings/Conversation.php:49
-#: ../../Zotlabs/Module/Defperms.php:262 ../../Zotlabs/Module/Pconfig.php:117
-#: ../../Zotlabs/Module/Oauth2.php:114 ../../Zotlabs/Module/Thing.php:328
-#: ../../Zotlabs/Module/Thing.php:381 ../../Zotlabs/Module/Pdledit.php:137
-#: ../../Zotlabs/Module/Connedit.php:714 ../../Zotlabs/Module/Locs.php:125
-#: ../../Zotlabs/Module/Sources.php:123 ../../Zotlabs/Module/Sources.php:160
-#: ../../Zotlabs/Lib/ThreadItem.php:831 ../../Zotlabs/Storage/Browser.php:385
-msgid "Submit"
-msgstr "Lagre"
+#: ../../include/bbcode.php:234 ../../include/bbcode.php:994
+#: ../../include/bbcode.php:1659 ../../include/bbcode.php:1667
+msgid "Image/photo"
+msgstr "Bilde/fotografi"
-#: ../../view/theme/redbasic/php/config.php:102
-msgid "Theme settings"
-msgstr "Instillinger for utseende"
+#: ../../include/bbcode.php:286
+msgid "Encrypted content"
+msgstr "Kryptert innhold"
-#: ../../view/theme/redbasic/php/config.php:103
-msgid "Dark style"
+#: ../../include/bbcode.php:342
+#, php-format
+msgid "Install %1$s element %2$s"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:104
-msgid "Light style"
+#: ../../include/bbcode.php:346
+#, 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."
-#: ../../view/theme/redbasic/php/config.php:105
-msgid "Common settings"
-msgstr ""
+#: ../../include/bbcode.php:356 ../../Zotlabs/Module/Impel.php:47
+msgid "webpage"
+msgstr "nettside"
-#: ../../view/theme/redbasic/php/config.php:106
-#, fuzzy
-#| msgid "Default photo upload folder"
-msgid "Default to dark mode"
-msgstr "Standard mappe for opplasting av bilder"
+#: ../../include/bbcode.php:359 ../../Zotlabs/Module/Impel.php:57
+msgid "layout"
+msgstr "layout"
-#: ../../view/theme/redbasic/php/config.php:106
-#: ../../view/theme/redbasic/php/config.php:107
-#: ../../view/theme/redbasic/php/config.php:108
-#: ../../view/theme/redbasic/php/config.php:124
-#: ../../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:135
-#: ../../addon/content_import/Mod_content_import.php:136
-#: ../../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:98
-#: ../../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:1419 ../../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:1483
-#: ../../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:666 ../../Zotlabs/Module/Profiles.php:675
-#: ../../Zotlabs/Module/Profiles.php:685 ../../Zotlabs/Module/Profiles.php:693
-#: ../../Zotlabs/Module/Profiles.php:697
-#: ../../Zotlabs/Module/Settings/Channel.php:224
-#: ../../Zotlabs/Module/Settings/Multifactor.php:82
-#: ../../Zotlabs/Module/Settings/Display.php:86
-#: ../../Zotlabs/Module/Settings/Privacy.php:132
-#: ../../Zotlabs/Module/Settings/Privacy.php:133
-#: ../../Zotlabs/Module/Settings/Privacy.php:134
-#: ../../Zotlabs/Module/Settings/Privacy.php:135
-#: ../../Zotlabs/Module/Settings/Privacy.php:136
-#: ../../Zotlabs/Module/Settings/Privacy.php:137
-#: ../../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:392 ../../Zotlabs/Storage/Browser.php:394
-#: ../../Zotlabs/Storage/Browser.php:558 ../../boot.php:1751
-msgid "No"
-msgstr "Nei"
+#: ../../include/bbcode.php:362 ../../Zotlabs/Module/Impel.php:52
+msgid "block"
+msgstr "byggekloss"
-#: ../../view/theme/redbasic/php/config.php:106
-#: ../../view/theme/redbasic/php/config.php:107
-#: ../../view/theme/redbasic/php/config.php:108
-#: ../../view/theme/redbasic/php/config.php:124
-#: ../../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:135
-#: ../../addon/content_import/Mod_content_import.php:136
-#: ../../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:98
-#: ../../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:1419 ../../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:1483
-#: ../../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:666 ../../Zotlabs/Module/Profiles.php:675
-#: ../../Zotlabs/Module/Profiles.php:685 ../../Zotlabs/Module/Profiles.php:693
-#: ../../Zotlabs/Module/Profiles.php:697
-#: ../../Zotlabs/Module/Settings/Channel.php:224
-#: ../../Zotlabs/Module/Settings/Multifactor.php:82
-#: ../../Zotlabs/Module/Settings/Display.php:86
-#: ../../Zotlabs/Module/Settings/Privacy.php:132
-#: ../../Zotlabs/Module/Settings/Privacy.php:133
-#: ../../Zotlabs/Module/Settings/Privacy.php:134
-#: ../../Zotlabs/Module/Settings/Privacy.php:135
-#: ../../Zotlabs/Module/Settings/Privacy.php:136
-#: ../../Zotlabs/Module/Settings/Privacy.php:137
-#: ../../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:392
-#: ../../Zotlabs/Storage/Browser.php:394 ../../Zotlabs/Storage/Browser.php:558
-#: ../../boot.php:1751
-msgid "Yes"
-msgstr "Ja"
+#: ../../include/bbcode.php:365 ../../Zotlabs/Module/Impel.php:64
+msgid "menu"
+msgstr "meny"
-#: ../../view/theme/redbasic/php/config.php:107
-msgid "Always use light icons for navbar"
+#: ../../include/bbcode.php:568
+msgid "card"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:107
-msgid "Enable this option if you use a dark navbar color in light mode"
+#: ../../include/bbcode.php:570
+msgid "article"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:108
-msgid "Narrow navbar"
-msgstr "Smal navigasjonslinje"
-
-#: ../../view/theme/redbasic/php/config.php:109
-msgid "Navigation bar background color"
-msgstr "Navigasjonslinjens bakgrunnsfarge"
-
-#: ../../view/theme/redbasic/php/config.php:110
-#, fuzzy
-#| msgid "Navigation bar background color"
-msgid "Dark navigation bar background color"
-msgstr "Navigasjonslinjens bakgrunnsfarge"
-
-#: ../../view/theme/redbasic/php/config.php:111
-msgid "Link color"
-msgstr "Lenkefarge"
-
-#: ../../view/theme/redbasic/php/config.php:112
-#, fuzzy
-#| msgid "Link color"
-msgid "Dark link color"
-msgstr "Lenkefarge"
-
-#: ../../view/theme/redbasic/php/config.php:113
-msgid "Link hover color"
-msgstr "Lenkefarge når musepekeren er over"
-
-#: ../../view/theme/redbasic/php/config.php:114
-#, fuzzy
-#| msgid "Link hover color"
-msgid "Dark link hover color"
-msgstr "Lenkefarge når musepekeren er over"
-
-#: ../../view/theme/redbasic/php/config.php:115
-msgid "Set the background color"
-msgstr "Angi bakgrunnsfargen"
-
-#: ../../view/theme/redbasic/php/config.php:116
-#, fuzzy
-#| msgid "Set the background color"
-msgid "Set the dark background color"
-msgstr "Angi bakgrunnsfargen"
-
-#: ../../view/theme/redbasic/php/config.php:117
-msgid "Set the background image"
-msgstr "Angi bakgrunnsbilde"
-
-#: ../../view/theme/redbasic/php/config.php:118
-#, fuzzy
-#| msgid "Set the background image"
-msgid "Set the dark background image"
-msgstr "Angi bakgrunnsbilde"
-
-#: ../../view/theme/redbasic/php/config.php:119
-msgid "Set font-size for the entire application"
-msgstr "Angi skriftstørrelsen for hele programmet"
-
-#: ../../view/theme/redbasic/php/config.php:119
-msgid "Examples: 1rem, 100%, 16px"
-msgstr "For eksempel: 1rem, 100%, 16px"
-
-#: ../../view/theme/redbasic/php/config.php:120
-msgid "Set radius of corners"
-msgstr "Angi hjørneradius"
-
-#: ../../view/theme/redbasic/php/config.php:120
-msgid "Example: 4px"
-msgstr "For eksempel: 4px"
-
-#: ../../view/theme/redbasic/php/config.php:121
-msgid "Set maximum width of content region in rem"
-msgstr "Set maksbredde for hovedregionen i rem"
-
-#: ../../view/theme/redbasic/php/config.php:121
-msgid "Leave empty for default width"
-msgstr "La feltet stå tomt for å bruke standard bredde"
-
-#: ../../view/theme/redbasic/php/config.php:122
-msgid "Set size of conversation author photo"
-msgstr "Angi størrelsen for samtalens forfatterbilde"
-
-#: ../../view/theme/redbasic/php/config.php:123
-msgid "Set size of followup author photos"
-msgstr "Angi størrelsen på forfatterbilder ved oppfølging"
-
-#: ../../view/theme/redbasic/php/config.php:124
-msgid "Show advanced settings"
-msgstr "Vis avanserte innstillinger"
-
-#: ../../util/nconfig.php:34
-msgid "Source channel not found."
-msgstr "Fant ikke kildekanalen."
-
-#: ../../addon/superblock/superblock.php:355
-msgid "Block Completely"
-msgstr "Blokker helt"
-
-#: ../../addon/superblock/Mod_Superblock.php:62
-msgid "superblock settings updated"
-msgstr "innstillingene til superblokk ble oppdatert"
-
-#: ../../addon/superblock/Mod_Superblock.php:86
-msgid "Currently blocked"
-msgstr "Blokkert for øyeblikket"
-
-#: ../../addon/superblock/Mod_Superblock.php:88
-msgid "No channels currently blocked"
-msgstr "Ingen kanaler er blokkert i øyeblikket"
+#: ../../include/bbcode.php:572 ../../include/conversation.php:180
+#: ../../include/text.php:2364 ../../include/markdown.php:208
+#: ../../Zotlabs/Module/Tagger.php:79
+msgid "post"
+msgstr "innlegg"
-#: ../../addon/superblock/Mod_Superblock.php:90
-#: ../../Zotlabs/Module/Tagrm.php:137 ../../Zotlabs/Module/Admin/Addons.php:462
-#: ../../Zotlabs/Module/Cover_photo.php:424 ../../Zotlabs/Module/Photos.php:991
-msgid "Remove"
-msgstr "Fjern"
+#: ../../include/bbcode.php:576 ../../include/markdown.php:206
+#, php-format
+msgid "%1$s wrote the following %2$s %3$s"
+msgstr "%1$s skrev følgende %2$s %3$s"
-#: ../../addon/nsabait/Mod_Nsabait.php:23
-msgid "NSA Bait App"
-msgstr ""
+#: ../../include/bbcode.php:653 ../../include/bbcode.php:661
+msgid "Click to open/close"
+msgstr "Klikk for å åpne/lukke"
-#: ../../addon/nsabait/Mod_Nsabait.php:25
-msgid "Make yourself a political target."
+#: ../../include/bbcode.php:661 ../../include/markdown.php:278
+msgid "spoiler"
msgstr ""
-#: ../../addon/visage/Mod_Visage.php:23
-msgid "Recent Channel/Profile Viewers"
+#: ../../include/bbcode.php:674
+msgid "View article"
msgstr ""
-#: ../../addon/visage/Mod_Visage.php:34
-msgid "No entries."
+#: ../../include/bbcode.php:674
+msgid "View summary"
msgstr ""
-#: ../../addon/wiki/Widget/Wiki_pages.php:55
-msgid "Wiki Pages"
-msgstr "Wikisider"
-
-#: ../../addon/wiki/Widget/Wiki_pages.php:61 ../../addon/wiki/Mod_Wiki.php:899
-msgid "Add new page"
-msgstr "Legg til ny side"
-
-#: ../../addon/wiki/Widget/Wiki_pages.php:65 ../../addon/wiki/Mod_Wiki.php:220
-#: ../../addon/wiki/Mod_Wiki.php:368 ../../addon/wiki/Mod_Wiki.php:903
-#: ../../addon/mdpost/mdpost.php:41 ../../include/text.php:2213
-msgid "Markdown"
-msgstr "Markdown"
-
-#: ../../addon/wiki/Widget/Wiki_pages.php:65 ../../addon/wiki/Mod_Wiki.php:220
-#: ../../addon/wiki/Mod_Wiki.php:368 ../../addon/wiki/Mod_Wiki.php:903
-#: ../../include/text.php:2211
-msgid "BBcode"
-msgstr "BBcode"
-
-#: ../../addon/wiki/Widget/Wiki_pages.php:65 ../../addon/wiki/Mod_Wiki.php:220
-#: ../../addon/wiki/Mod_Wiki.php:903 ../../include/text.php:2214
-msgid "Text"
-msgstr "Tekst"
-
-#: ../../addon/wiki/Widget/Wiki_pages.php:66
-msgid "Page name"
-msgstr "Sidenavn"
-
-#: ../../addon/wiki/Widget/Wiki_pages.php:68 ../../addon/wiki/Mod_Wiki.php:906
-#: ../../Zotlabs/Module/Dreport.php:133
-msgid "Options"
-msgstr "Valg"
-
-#: ../../addon/wiki/Widget/Wiki_list.php:20 ../../addon/wiki/Mod_Wiki.php:209
-#: ../../addon/wiki/wiki.php:70 ../../include/nav.php:522
-msgid "Wikis"
-msgstr "Wikier"
-
-#: ../../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:256 ../../Zotlabs/Module/Cdav.php:1364
-#: ../../Zotlabs/Module/Sharedwithme.php:107
-#: ../../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:380
-msgid "Name"
-msgstr "Navn"
-
-#: ../../addon/wiki/Widget/Wiki_page_history.php:29
-#: ../../addon/wiki/Lib/NativeWikiPage.php:589
-msgctxt "wiki_history"
-msgid "Message"
-msgstr "Melding"
-
-#: ../../addon/wiki/Widget/Wiki_page_history.php:30
-#: ../../addon/wiki/Lib/NativeWikiPage.php:590
-msgid "Date"
-msgstr "Dato"
-
-#: ../../addon/wiki/Widget/Wiki_page_history.php:31
-#: ../../addon/wiki/Lib/NativeWikiPage.php:591
-#: ../../addon/wiki/Mod_Wiki.php:364
-msgid "Revert"
-msgstr "Tilbakestill"
-
-#: ../../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:104
-#: ../../addon/articles/articles.php:105 ../../include/help.php:133
-#: ../../Zotlabs/Module/Display.php:149 ../../Zotlabs/Module/Page.php:136
-#: ../../Zotlabs/Module/Block.php:77 ../../Zotlabs/Web/Router.php:186
-msgid "Page not found."
-msgstr "Siden ikke funnet."
-
-#: ../../addon/wiki/Lib/NativeWikiPage.php:630 ../../include/bbcode.php:1061
-#: ../../include/bbcode.php:1246
+#: ../../include/bbcode.php:1127 ../../include/bbcode.php:1312
+#: ../../extend/addon/hzaddons/wiki/Lib/NativeWikiPage.php:630
msgid "Different viewers will see this text differently"
msgstr "Denne teksten vil se forskjellig ut for ulike besøkende"
-#: ../../addon/wiki/Mod_Wiki.php:36 ../../addon/cart/cart.php:1459
-#: ../../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:425 ../../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:3953 ../../include/attach.php:156
-#: ../../include/attach.php:205 ../../include/attach.php:278
-#: ../../include/attach.php:329 ../../include/attach.php:431
-#: ../../include/attach.php:445 ../../include/attach.php:452
-#: ../../include/attach.php:534 ../../include/attach.php:1106
-#: ../../include/attach.php:1179 ../../include/attach.php:1344
-#: ../../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:222 ../../Zotlabs/Module/Channel.php:379
-#: ../../Zotlabs/Module/Channel.php:418 ../../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:141
-#: ../../Zotlabs/Module/Item.php:513 ../../Zotlabs/Module/Item.php:532
-#: ../../Zotlabs/Module/Item.php:542 ../../Zotlabs/Module/Item.php:1443
-#: ../../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:388
-#: ../../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:59
-#: ../../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:614
-#: ../../Zotlabs/Module/Bookmarks.php:70 ../../Zotlabs/Module/Invite.php:64
-#: ../../Zotlabs/Module/Invite.php:315 ../../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:119
-msgid "Permission denied."
-msgstr "Tillatelse avslått."
-
-#: ../../addon/wiki/Mod_Wiki.php:81 ../../addon/cart/manual_payments.php:93
-#: ../../addon/cart/submodules/paypalbutton.php:456
-#: ../../addon/cart/submodules/paypalbuttonV2.php:486
-#: ../../addon/cart/myshop.php:37 ../../addon/cart/cart.php:1610
-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:381
-#: ../../addon/cards/Mod_Card_edit.php:99 ../../addon/cards/cards.php:74
-#: ../../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:144 ../../Zotlabs/Widget/Cdav.php:181
-#: ../../Zotlabs/Module/Group.php:245 ../../Zotlabs/Module/Oauth.php:171
-#: ../../Zotlabs/Module/Editwebpage.php:142
-#: ../../Zotlabs/Module/Webpages.php:250
-#: ../../Zotlabs/Module/Admin/Profs.php:175 ../../Zotlabs/Module/Blocks.php:158
-#: ../../Zotlabs/Module/Editblock.php:114
-#: ../../Zotlabs/Module/Editlayout.php:114
-#: ../../Zotlabs/Module/Connections.php:338
-#: ../../Zotlabs/Module/Connections.php:387
-#: ../../Zotlabs/Module/Connections.php:408 ../../Zotlabs/Module/Menu.php:176
-#: ../../Zotlabs/Module/Oauth2.php:192 ../../Zotlabs/Module/Thing.php:268
-#: ../../Zotlabs/Module/Layouts.php:191 ../../Zotlabs/Lib/Apps.php:601
-#: ../../Zotlabs/Lib/ThreadItem.php:158
-msgid "Edit"
-msgstr "Endre"
-
-#: ../../addon/wiki/Mod_Wiki.php:215 ../../Zotlabs/Storage/Browser.php:407
-msgid "Download"
-msgstr ""
-
-#: ../../addon/wiki/Mod_Wiki.php:216 ../../addon/wiki/Mod_Wiki.php:406
-#: ../../Zotlabs/Module/Pubsites.php:62 ../../Zotlabs/Module/Webpages.php:256
-#: ../../Zotlabs/Module/Blocks.php:164 ../../Zotlabs/Module/Layouts.php:196
-msgid "View"
-msgstr "Vis"
-
-#: ../../addon/wiki/Mod_Wiki.php:217 ../../Zotlabs/Module/Manage.php:137
-#: ../../Zotlabs/Module/Profiles.php:852
-msgid "Create New"
-msgstr "Opprett nytt"
-
-#: ../../addon/wiki/Mod_Wiki.php:219
-msgid "Wiki name"
-msgstr ""
-
-#: ../../addon/wiki/Mod_Wiki.php:220
-msgid "Content type"
-msgstr ""
-
-#: ../../addon/wiki/Mod_Wiki.php:222 ../../Zotlabs/Storage/Browser.php:381
-msgid "Type"
-msgstr "Type"
-
-#: ../../addon/wiki/Mod_Wiki.php:223
-msgid "Any&nbsp;type"
-msgstr ""
-
-#: ../../addon/wiki/Mod_Wiki.php:230
-msgid "Lock content type"
-msgstr ""
-
-#: ../../addon/wiki/Mod_Wiki.php:231
-msgid "Create a status post for this wiki"
-msgstr ""
-
-#: ../../addon/wiki/Mod_Wiki.php:232
-msgid "Edit Wiki Name"
-msgstr ""
-
-#: ../../addon/wiki/Mod_Wiki.php:277
-#, fuzzy
-msgid "Wiki not found"
-msgstr "Fant ikke wikien."
-
-#: ../../addon/wiki/Mod_Wiki.php:303
-msgid "Rename page"
-msgstr ""
-
-#: ../../addon/wiki/Mod_Wiki.php:304 ../../addon/hsse/hsse.php:186
-#: ../../include/conversation.php:1452 ../../Zotlabs/Widget/Cdav.php:142
-#: ../../Zotlabs/Module/Webpages.php:251 ../../Zotlabs/Module/Blocks.php:159
-#: ../../Zotlabs/Module/Photos.php:1073 ../../Zotlabs/Module/Layouts.php:192
-msgid "Share"
-msgstr "Del"
-
-#: ../../addon/wiki/Mod_Wiki.php:318
-msgid "Error retrieving page content"
-msgstr ""
-
-#: ../../addon/wiki/Mod_Wiki.php:326 ../../addon/wiki/Mod_Wiki.php:328
-msgid "New page"
-msgstr ""
-
-#: ../../addon/wiki/Mod_Wiki.php:363
-msgid "Revision Comparison"
-msgstr ""
-
-#: ../../addon/wiki/Mod_Wiki.php:365 ../../addon/wiki/Mod_Wiki.php:398
-#: ../../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:1475 ../../include/conversation.php:1530
-#: ../../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:1049
-#: ../../Zotlabs/Module/Cdav.php:1382 ../../Zotlabs/Module/Tagrm.php:15
-#: ../../Zotlabs/Module/Tagrm.php:138 ../../Zotlabs/Module/Editpost.php:114
-#: ../../Zotlabs/Module/Admin/Addons.php:430
-#: ../../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:386
-msgid "Cancel"
-msgstr "Avbryt"
-
-#: ../../addon/wiki/Mod_Wiki.php:371
-msgid "Short description of your changes (optional)"
-msgstr ""
-
-#: ../../addon/wiki/Mod_Wiki.php:381 ../../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 ""
-
-#: ../../addon/wiki/Mod_Wiki.php:391
-msgid "New page name"
-msgstr ""
-
-#: ../../addon/wiki/Mod_Wiki.php:396
-msgid "Embed image from photo albums"
-msgstr ""
-
-#: ../../addon/wiki/Mod_Wiki.php:397 ../../addon/hsse/hsse.php:208
-#: ../../include/conversation.php:1474
-msgid "Embed an image from your albums"
-msgstr ""
-
-#: ../../addon/wiki/Mod_Wiki.php:399 ../../addon/hsse/hsse.php:210
-#: ../../addon/hsse/hsse.php:257 ../../include/conversation.php:1476
-#: ../../include/conversation.php:1529
-#: ../../Zotlabs/Module/Profile_photo.php:554
-#: ../../Zotlabs/Module/Cover_photo.php:429
-msgid "OK"
-msgstr "OK"
-
-#: ../../addon/wiki/Mod_Wiki.php:400 ../../addon/hsse/hsse.php:139
-#: ../../include/conversation.php:1395
-#: ../../Zotlabs/Module/Profile_photo.php:555
-#: ../../Zotlabs/Module/Cover_photo.php:430
-msgid "Choose images to embed"
-msgstr ""
-
-#: ../../addon/wiki/Mod_Wiki.php:401 ../../addon/hsse/hsse.php:140
-#: ../../include/conversation.php:1396
-#: ../../Zotlabs/Module/Profile_photo.php:556
-#: ../../Zotlabs/Module/Cover_photo.php:431
-msgid "Choose an album"
-msgstr ""
-
-#: ../../addon/wiki/Mod_Wiki.php:402 ../../Zotlabs/Module/Profile_photo.php:557
-#: ../../Zotlabs/Module/Cover_photo.php:432
-msgid "Choose a different album"
-msgstr ""
-
-#: ../../addon/wiki/Mod_Wiki.php:403 ../../addon/hsse/hsse.php:142
-#: ../../include/conversation.php:1398
-#: ../../Zotlabs/Module/Profile_photo.php:558
-#: ../../Zotlabs/Module/Cover_photo.php:433
-msgid "Error getting album list"
-msgstr ""
-
-#: ../../addon/wiki/Mod_Wiki.php:404 ../../addon/hsse/hsse.php:143
-#: ../../include/conversation.php:1399
-#: ../../Zotlabs/Module/Profile_photo.php:559
-#: ../../Zotlabs/Module/Cover_photo.php:434
-msgid "Error getting photo link"
-msgstr ""
-
-#: ../../addon/wiki/Mod_Wiki.php:405 ../../addon/hsse/hsse.php:144
-#: ../../include/conversation.php:1400
-#: ../../Zotlabs/Module/Profile_photo.php:560
-#: ../../Zotlabs/Module/Cover_photo.php:435
-msgid "Error getting album"
-msgstr ""
-
-#: ../../addon/wiki/Mod_Wiki.php:407
-msgid "History"
-msgstr ""
-
-#: ../../addon/wiki/Mod_Wiki.php:485
-msgid "Error creating wiki. Invalid name."
-msgstr ""
-
-#: ../../addon/wiki/Mod_Wiki.php:492
-msgid "A wiki with this name already exists."
-msgstr ""
-
-#: ../../addon/wiki/Mod_Wiki.php:505
-msgid "Wiki created, but error creating Home page."
-msgstr ""
-
-#: ../../addon/wiki/Mod_Wiki.php:512
-msgid "Error creating wiki"
-msgstr ""
-
-#: ../../addon/wiki/Mod_Wiki.php:536
-msgid "Error updating wiki. Invalid name."
-msgstr ""
-
-#: ../../addon/wiki/Mod_Wiki.php:555
-msgid "Error updating wiki"
-msgstr ""
-
-#: ../../addon/wiki/Mod_Wiki.php:570
-msgid "Wiki delete permission denied."
-msgstr ""
-
-#: ../../addon/wiki/Mod_Wiki.php:580
-msgid "Error deleting wiki"
-msgstr ""
-
-#: ../../addon/wiki/Mod_Wiki.php:613
-msgid "New page created"
-msgstr ""
-
-#: ../../addon/wiki/Mod_Wiki.php:739
-msgid "Cannot delete Home"
-msgstr ""
-
-#: ../../addon/wiki/Mod_Wiki.php:815
-msgid "Current Revision"
-msgstr ""
-
-#: ../../addon/wiki/Mod_Wiki.php:815
-msgid "Selected Revision"
-msgstr ""
-
-#: ../../addon/wiki/Mod_Wiki.php:870
-msgid "You must be authenticated."
-msgstr ""
-
-#: ../../addon/openclipatar/openclipatar.php:51
-#: ../../addon/openclipatar/openclipatar.php:129
-msgid "System defaults:"
-msgstr ""
-
-#: ../../addon/openclipatar/openclipatar.php:55
-msgid "Preferred Clipart IDs"
-msgstr ""
-
-#: ../../addon/openclipatar/openclipatar.php:55
-msgid "List of preferred clipart ids. These will be shown first."
-msgstr ""
-
-#: ../../addon/openclipatar/openclipatar.php:56
-msgid "Default Search Term"
-msgstr "Standard søkeord"
-
-#: ../../addon/openclipatar/openclipatar.php:56
-msgid "The default search term. These will be shown second."
-msgstr "Standard søkeord. Disse vil vises som nummer to."
-
-#: ../../addon/openclipatar/openclipatar.php:57
-msgid "Return After"
-msgstr ""
-
-#: ../../addon/openclipatar/openclipatar.php:57
-msgid "Page to load after image selection."
-msgstr ""
-
-#: ../../addon/openclipatar/openclipatar.php:58 ../../include/nav.php:114
-#: ../../include/conversation.php:1096 ../../Zotlabs/Module/Connedit.php:480
-#: ../../Zotlabs/Lib/Apps.php:349
-msgid "View Profile"
-msgstr "Vis profil"
-
-#: ../../addon/openclipatar/openclipatar.php:59 ../../include/nav.php:119
-#: ../../include/channel.php:1534
-msgid "Edit Profile"
-msgstr "Endre profil"
-
-#: ../../addon/openclipatar/openclipatar.php:60
-msgid "Profile List"
-msgstr ""
-
-#: ../../addon/openclipatar/openclipatar.php:62
-msgid "Order of Preferred"
-msgstr ""
+#: ../../include/bbcode.php:1635
+msgid "$1 wrote:"
+msgstr "$1 skrev:"
-#: ../../addon/openclipatar/openclipatar.php:62
-msgid "Sort order of preferred clipart ids."
-msgstr ""
+#: ../../include/features.php:53 ../../Zotlabs/Module/Admin/Features.php:55
+#: ../../Zotlabs/Module/Admin/Features.php:56
+#: ../../Zotlabs/Module/Settings/Features.php:38
+msgid "Off"
+msgstr "Av"
-#: ../../addon/openclipatar/openclipatar.php:63
-#: ../../addon/openclipatar/openclipatar.php:69
-msgid "Newest first"
-msgstr ""
+#: ../../include/features.php:53 ../../Zotlabs/Module/Admin/Features.php:55
+#: ../../Zotlabs/Module/Admin/Features.php:56
+#: ../../Zotlabs/Module/Settings/Features.php:38
+msgid "On"
+msgstr "På"
-#: ../../addon/openclipatar/openclipatar.php:66
-msgid "As entered"
-msgstr ""
+#: ../../include/features.php:80 ../../include/nav.php:489
+#: ../../include/nav.php:492 ../../Zotlabs/Lib/Apps.php:352
+msgid "Calendar"
+msgstr "Kalender"
-#: ../../addon/openclipatar/openclipatar.php:68
-msgid "Order of other"
+#: ../../include/features.php:84
+msgid "Start calendar week on Monday"
msgstr ""
-#: ../../addon/openclipatar/openclipatar.php:68
-msgid "Sort order of other clipart ids."
+#: ../../include/features.php:85
+msgid "Default is Sunday"
msgstr ""
-#: ../../addon/openclipatar/openclipatar.php:70
-msgid "Most downloaded first"
+#: ../../include/features.php:92
+msgid "Event Timezone Selection"
msgstr ""
-#: ../../addon/openclipatar/openclipatar.php:71
-msgid "Most liked first"
+#: ../../include/features.php:93
+msgid "Allow event creation in timezones other than your own."
msgstr ""
-#: ../../addon/openclipatar/openclipatar.php:73
-msgid "Preferred IDs Message"
-msgstr ""
+#: ../../include/features.php:102
+msgid "Channel Home"
+msgstr "Kanalhjem"
-#: ../../addon/openclipatar/openclipatar.php:73
-msgid "Message to display above preferred results."
-msgstr ""
+#: ../../include/features.php:106
+msgid "Search by Date"
+msgstr "Søk etter dato"
-#: ../../addon/openclipatar/openclipatar.php:79
-msgid "Uploaded by: "
-msgstr ""
+#: ../../include/features.php:107
+msgid "Ability to select posts by date ranges"
+msgstr "Mulighet for å velge innlegg etter datoområde"
-#: ../../addon/openclipatar/openclipatar.php:79
-msgid "Drawn by: "
-msgstr ""
+#: ../../include/features.php:114
+msgid "Tag Cloud"
+msgstr "Merkelappsky"
-#: ../../addon/openclipatar/openclipatar.php:183
-#: ../../addon/openclipatar/openclipatar.php:195
-msgid "Use this image"
-msgstr ""
+#: ../../include/features.php:115
+msgid "Provide a personal tag cloud on your channel page"
+msgstr "Tilby en personlig merkelappsky på din kanalside"
-#: ../../addon/openclipatar/openclipatar.php:193
-msgid "Or select from a free OpenClipart.org image:"
-msgstr ""
+#: ../../include/features.php:122 ../../include/features.php:356
+msgid "Use blog/list mode"
+msgstr "Bruk blogg/listemodus"
-#: ../../addon/openclipatar/openclipatar.php:196
-msgid "Search Term"
-msgstr "Søkeord"
+#: ../../include/features.php:123 ../../include/features.php:357
+msgid "Comments will be displayed separately"
+msgstr "Kommentarer blir vist separat fra innlegget"
-#: ../../addon/openclipatar/openclipatar.php:233
-msgid "Unknown error. Please try again later."
-msgstr ""
+#: ../../include/features.php:131 ../../include/text.php:1078
+#: ../../Zotlabs/Lib/Apps.php:339 ../../Zotlabs/Module/Connections.php:399
+msgid "Connections"
+msgstr "Forbindelser"
-#: ../../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."
+#: ../../include/features.php:135
+msgid "Connection Filtering"
+msgstr "Filtrer forbindelser"
-#: ../../addon/openclipatar/openclipatar.php:309
-msgid "Profile photo updated successfully."
+#: ../../include/features.php:136
+msgid "Filter incoming posts from connections based on keywords/content"
msgstr ""
+"Filtrer innkommende innlegg fra forbindelser basert på nøkkelord/innhold"
-#: ../../addon/bookmarker/bookmarker.php:38
-#: ../../Zotlabs/Lib/ThreadItem.php:474
-msgid "Save Bookmarks"
-msgstr "Lagre bokmerker"
-
-#: ../../addon/rainbowtag/Mod_Rainbowtag.php:22
-msgid "Rainbow Tag App"
+#: ../../include/features.php:144
+msgid "Conversation"
msgstr ""
-#: ../../addon/rainbowtag/Mod_Rainbowtag.php:23
-msgid "Add some colour to tag clouds"
+#: ../../include/features.php:156
+msgid "Emoji Reactions"
msgstr ""
-#: ../../addon/rainbowtag/Mod_Rainbowtag.php:30
-msgid "Rainbow Tag"
+#: ../../include/features.php:157
+msgid "Add emoji reaction ability to posts"
msgstr ""
-#: ../../addon/photocache/Mod_Photocache.php:27
-msgid "Photo Cache settings saved."
-msgstr ""
+#: ../../include/features.php:164
+msgid "Dislike Posts"
+msgstr "Mislik innlegg"
-#: ../../addon/photocache/Mod_Photocache.php:43
-msgid ""
-"Saves a copy of images from external sites locally to increase your "
-"anonymity in the web."
-msgstr ""
+#: ../../include/features.php:165
+msgid "Ability to dislike posts/comments"
+msgstr "Mulighet til å mislike innlegg/kommentarer"
-#: ../../addon/photocache/Mod_Photocache.php:49
-msgid "Minimal photo size for caching"
-msgstr ""
+#: ../../include/features.php:172
+msgid "Star Posts"
+msgstr "Stjerneinnlegg"
-#: ../../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:173
+msgid "Ability to mark special posts with a star indicator"
+msgstr "Mulighet til å merke spesielle innlegg med en stjerne"
-#: ../../addon/photocache/Mod_Photocache.php:60
-msgid "Photo Cache"
+#: ../../include/features.php:180
+msgid "Reply on comment"
msgstr ""
-#: ../../addon/gallery/gallery.php:43 ../../addon/gallery/Mod_Gallery.php:134
-msgid "Gallery"
+#: ../../include/features.php:181
+msgid "Ability to reply on selected comment"
msgstr ""
-#: ../../addon/gallery/gallery.php:46
-msgid "Photo Gallery"
-msgstr ""
+#: ../../include/features.php:190 ../../Zotlabs/Lib/Apps.php:353
+msgid "Directory"
+msgstr "Katalog"
-#: ../../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."
+#: ../../include/features.php:194
+msgid "Advanced Directory Search"
+msgstr "Avansert katalogsøk"
-#: ../../addon/planets/Mod_Planets.php:23
-msgid "Random Planet App"
-msgstr ""
+#: ../../include/features.php:195
+msgid "Allows creation of complex directory search queries"
+msgstr "Gjør det mulig å bruke avanserte kriterier ved søk i katalogen"
-#: ../../addon/planets/Mod_Planets.php:25
-msgid ""
-"Set a random planet from the Star Wars Empire as your location when posting"
+#: ../../include/features.php:204
+msgid "Editor"
msgstr ""
-#: ../../addon/openid/Mod_Id.php:85 ../../include/selectors.php:64
-#: ../../include/selectors.php:81 ../../include/channel.php:1720
-msgid "Male"
-msgstr "Mannlig"
-
-#: ../../addon/openid/Mod_Id.php:87 ../../include/selectors.php:64
-#: ../../include/selectors.php:81 ../../include/channel.php:1718
-msgid "Female"
-msgstr "Kvinnelig"
-
-#: ../../addon/openid/Mod_Openid.php:32
-msgid "OpenID protocol error. No ID returned."
-msgstr "OpenID protokollfeil. Ingen ID ble returnert."
+#: ../../include/features.php:208
+msgid "Post Categories"
+msgstr "Innleggskategorier"
-#: ../../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."
+#: ../../include/features.php:209
+msgid "Add categories to your posts"
+msgstr "Legg kategorier til dine innlegg"
-#: ../../addon/openid/Mod_Openid.php:189 ../../include/auth.php:334
-msgid "Login failed."
-msgstr "Innlogging mislyktes."
+#: ../../include/features.php:216
+msgid "Large Photos"
+msgstr "Store bilder"
-#: ../../addon/openid/openid.php:49
+#: ../../include/features.php:217
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."
-
-#: ../../addon/openid/openid.php:49
-msgid "The error message was:"
-msgstr "Feilmeldingen var:"
-
-#: ../../addon/openid/MysqlProvider.php:52
-msgid "First Name"
-msgstr "Fornavn"
-
-#: ../../addon/openid/MysqlProvider.php:53
-msgid "Last Name"
-msgstr "Etternavn"
-
-#: ../../addon/openid/MysqlProvider.php:54 ../../addon/redred/Mod_Redred.php:73
-#: ../../boot.php:1740
-msgid "Nickname"
-msgstr "Kallenavn"
-
-#: ../../addon/openid/MysqlProvider.php:55
-msgid "Full Name"
-msgstr "Fullt navn"
-
-#: ../../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:1773
-#: ../../Zotlabs/Module/Cdav.php:1368
-#: ../../Zotlabs/Module/Admin/Accounts.php:316
-#: ../../Zotlabs/Module/Admin/Accounts.php:330
-#: ../../Zotlabs/Module/Connedit.php:736
-msgid "Email"
-msgstr "E-post"
-
-#: ../../addon/openid/MysqlProvider.php:58
-#: ../../addon/openid/MysqlProvider.php:59
-#: ../../addon/openid/MysqlProvider.php:60 ../../Zotlabs/Lib/Apps.php:366
-msgid "Profile Photo"
-msgstr "Profilbilde"
-
-#: ../../addon/openid/MysqlProvider.php:61
-msgid "Profile Photo 16px"
-msgstr "Profilbilde 16px"
-
-#: ../../addon/openid/MysqlProvider.php:62
-msgid "Profile Photo 32px"
-msgstr "Profilbilde 32px"
-
-#: ../../addon/openid/MysqlProvider.php:63
-msgid "Profile Photo 48px"
-msgstr "Profilbilde 48px"
-
-#: ../../addon/openid/MysqlProvider.php:64
-msgid "Profile Photo 64px"
-msgstr "Profilbilde 64px"
-
-#: ../../addon/openid/MysqlProvider.php:65
-msgid "Profile Photo 80px"
-msgstr "Profilbilde 80px"
-
-#: ../../addon/openid/MysqlProvider.php:66
-msgid "Profile Photo 128px"
-msgstr "Profilbilde 128px"
-
-#: ../../addon/openid/MysqlProvider.php:67 ../../include/event.php:141
-msgid "Timezone"
-msgstr "Tidssone"
-
-#: ../../addon/openid/MysqlProvider.php:68
-#: ../../Zotlabs/Module/Profiles.php:783
-msgid "Homepage URL"
-msgstr "Hjemmeside URL"
-
-#: ../../addon/openid/MysqlProvider.php:69 ../../Zotlabs/Lib/Apps.php:364
-msgid "Language"
-msgstr "Språk"
-
-#: ../../addon/openid/MysqlProvider.php:70
-msgid "Birth Year"
-msgstr "Fødselsår"
-
-#: ../../addon/openid/MysqlProvider.php:71
-msgid "Birth Month"
-msgstr "Fødselsmåne"
-
-#: ../../addon/openid/MysqlProvider.php:72
-msgid "Birth Day"
-msgstr "Fødselsdag"
-
-#: ../../addon/openid/MysqlProvider.php:73
-msgid "Birthdate"
-msgstr "Fødselsdato"
-
-#: ../../addon/openid/MysqlProvider.php:74
-#: ../../Zotlabs/Module/Profiles.php:456
-msgid "Gender"
-msgstr "Kjønn"
-
-#: ../../addon/moremoods/moremoods.php:19
-#, fuzzy
-msgid "lonely"
-msgstr "Ensom"
-
-#: ../../addon/moremoods/moremoods.php:20
-msgid "drunk"
-msgstr ""
-
-#: ../../addon/moremoods/moremoods.php:21
-msgid "horny"
-msgstr ""
-
-#: ../../addon/moremoods/moremoods.php:22
-msgid "stoned"
-msgstr ""
-
-#: ../../addon/moremoods/moremoods.php:23
-msgid "fucked up"
-msgstr ""
-
-#: ../../addon/moremoods/moremoods.php:24
-msgid "clusterfucked"
-msgstr ""
-
-#: ../../addon/moremoods/moremoods.php:25
-msgid "crazy"
-msgstr ""
-
-#: ../../addon/moremoods/moremoods.php:26
-msgid "hurt"
-msgstr ""
-
-#: ../../addon/moremoods/moremoods.php:27
-msgid "sleepy"
-msgstr ""
-
-#: ../../addon/moremoods/moremoods.php:28
-msgid "grumpy"
-msgstr ""
-
-#: ../../addon/moremoods/moremoods.php:29
-msgid "high"
-msgstr ""
-
-#: ../../addon/moremoods/moremoods.php:30
-msgid "semi-conscious"
-msgstr ""
-
-#: ../../addon/moremoods/moremoods.php:31
-msgid "in love"
-msgstr ""
-
-#: ../../addon/moremoods/moremoods.php:32
-msgid "in lust"
-msgstr ""
-
-#: ../../addon/moremoods/moremoods.php:33
-msgid "naked"
-msgstr ""
-
-#: ../../addon/moremoods/moremoods.php:34
-msgid "stinky"
-msgstr ""
-
-#: ../../addon/moremoods/moremoods.php:35
-msgid "sweaty"
-msgstr ""
-
-#: ../../addon/moremoods/moremoods.php:36
-msgid "bleeding out"
-msgstr ""
-
-#: ../../addon/moremoods/moremoods.php:37
-msgid "victorious"
-msgstr ""
-
-#: ../../addon/moremoods/moremoods.php:38
-msgid "defeated"
-msgstr ""
-
-#: ../../addon/moremoods/moremoods.php:39
-msgid "envious"
-msgstr ""
-
-#: ../../addon/moremoods/moremoods.php:40
-msgid "jealous"
-msgstr ""
-
-#: ../../addon/dirstats/dirstats.php:94
-msgid "Hubzilla Directory Stats"
-msgstr ""
-
-#: ../../addon/dirstats/dirstats.php:95
-msgid "Total Hubs"
-msgstr ""
-
-#: ../../addon/dirstats/dirstats.php:97
-msgid "Hubzilla Hubs"
-msgstr ""
-
-#: ../../addon/dirstats/dirstats.php:99
-msgid "Friendica Hubs"
-msgstr ""
-
-#: ../../addon/dirstats/dirstats.php:101
-msgid "Diaspora Pods"
-msgstr ""
-
-#: ../../addon/dirstats/dirstats.php:103
-msgid "Hubzilla Channels"
-msgstr ""
-
-#: ../../addon/dirstats/dirstats.php:105
-msgid "Friendica Channels"
-msgstr ""
-
-#: ../../addon/dirstats/dirstats.php:107
-msgid "Diaspora Channels"
-msgstr ""
-
-#: ../../addon/dirstats/dirstats.php:109
-msgid "Aged 35 and above"
-msgstr ""
-
-#: ../../addon/dirstats/dirstats.php:111
-msgid "Aged 34 and under"
-msgstr ""
-
-#: ../../addon/dirstats/dirstats.php:113
-msgid "Average Age"
-msgstr ""
-
-#: ../../addon/dirstats/dirstats.php:115
-msgid "Known Chatrooms"
+"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"
-#: ../../addon/dirstats/dirstats.php:117
-msgid "Known Tags"
-msgstr ""
+#: ../../include/features.php:224
+msgid "Even More Encryption"
+msgstr "Enda mer kryptering"
-#: ../../addon/dirstats/dirstats.php:119
+#: ../../include/features.php:225
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 ""
-
-#: ../../addon/redred/Mod_Redred.php:24
-msgid "Channel is required."
-msgstr ""
-
-#: ../../addon/redred/Mod_Redred.php:29 ../../Zotlabs/Module/Network.php:333
-#, fuzzy
-msgid "Invalid channel."
-msgstr "Ugyldig kanal"
-
-#: ../../addon/redred/Mod_Redred.php:38
-msgid "Hubzilla Crosspost Connector Settings saved."
-msgstr ""
-
-#: ../../addon/redred/Mod_Redred.php:61
-msgid "Send public postings to Hubzilla channel by default"
-msgstr ""
-
-#: ../../addon/redred/Mod_Redred.php:65
-msgid "Hubzilla API Path"
-msgstr ""
-
-#: ../../addon/redred/Mod_Redred.php:65 ../../addon/rtof/Mod_Rtof.php:51
-msgid "https://{sitename}/api"
-msgstr ""
-
-#: ../../addon/redred/Mod_Redred.php:69
-msgid "Hubzilla login name"
-msgstr ""
-
-#: ../../addon/redred/Mod_Redred.php:73
-msgid "Hubzilla channel name"
-msgstr ""
-
-#: ../../addon/redred/Mod_Redred.php:77
-msgid "Hubzilla password"
-msgstr ""
-
-#: ../../addon/redred/Mod_Redred.php:85
-msgid "Hubzilla Crosspost Connector"
-msgstr ""
-
-#: ../../addon/redred/redred.php:50
-msgid "Post to Hubzilla"
-msgstr ""
-
-#: ../../addon/redphotos/redphotos.php:106
-msgid "Photos imported"
-msgstr ""
-
-#: ../../addon/redphotos/redphotos.php:119
-#: ../../addon/redfiles/redfiles.php:109 ../../addon/hzfiles/hzfiles.php:75
-#: ../../include/items.php:447 ../../Zotlabs/Module/Import_items.php:116
-#: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Group.php:108
-#: ../../Zotlabs/Module/Like.php:348 ../../Zotlabs/Module/Share.php:72
-#: ../../Zotlabs/Module/Subthread.php:89 ../../Zotlabs/Module/Dreport.php:10
-#: ../../Zotlabs/Module/Dreport.php:55 ../../Zotlabs/Web/WebServer.php:118
-msgid "Permission denied"
-msgstr "Tillatelse avvist"
-
-#: ../../addon/redphotos/redphotos.php:129
-msgid "Redmatrix Photo Album Import"
-msgstr ""
-
-#: ../../addon/redphotos/redphotos.php:130
-msgid "This will import all your Redmatrix photo albums to this channel."
-msgstr ""
-
-#: ../../addon/redphotos/redphotos.php:131
-#: ../../addon/redfiles/redfiles.php:121
-msgid "Redmatrix Server base URL"
-msgstr ""
-
-#: ../../addon/redphotos/redphotos.php:132
-#: ../../addon/redfiles/redfiles.php:122
-msgid "Redmatrix Login Username"
-msgstr ""
-
-#: ../../addon/redphotos/redphotos.php:133
-#: ../../addon/redfiles/redfiles.php:123
-msgid "Redmatrix Login Password"
-msgstr ""
-
-#: ../../addon/redphotos/redphotos.php:134
-msgid "Import just this album"
-msgstr ""
-
-#: ../../addon/redphotos/redphotos.php:134
-msgid "Leave blank to import all albums"
+"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"
-#: ../../addon/redphotos/redphotos.php:135
-msgid "Maximum count to import"
-msgstr ""
+#: ../../include/features.php:232
+msgid "Disable Comments"
+msgstr "Slå av kommentarer"
-#: ../../addon/redphotos/redphotos.php:135
-msgid "0 or blank to import all available"
-msgstr ""
+#: ../../include/features.php:233
+msgid "Provide the option to disable comments for a post"
+msgstr "Slår på valg for å ikke tillate kommentarer til innlegget"
-#: ../../addon/redphotos/redphotohelper.php:71 ../../addon/pubcrawl/as.php:1958
-#: ../../addon/diaspora/Receiver.php:1693 ../../include/text.php:2352
-#: ../../include/conversation.php:138 ../../Zotlabs/Module/Like.php:453
-#: ../../Zotlabs/Module/Tagger.php:71 ../../Zotlabs/Module/Subthread.php:115
-#: ../../Zotlabs/Lib/Activity.php:3690
-msgid "photo"
-msgstr "foto"
+#: ../../include/features.php:240
+msgid "Delayed Posting"
+msgstr "Tidfest publisering"
-#: ../../addon/statusnet/Mod_Statusnet.php:61
-msgid ""
-"Please contact your site administrator.<br />The provided API URL is not "
-"valid."
-msgstr ""
-"Den oppgitte URLen for APIet er ikke gyldig. Kontakt serverens administrator."
+#: ../../include/features.php:241
+msgid "Allow posts to be published at a later date"
+msgstr "Tillat innlegg å bli publisert på et senere tidspunkt"
-#: ../../addon/statusnet/Mod_Statusnet.php:98
-msgid "We could not contact the GNU social API with the Path you entered."
-msgstr ""
+#: ../../include/features.php:248
+msgid "Content Expiration"
+msgstr "Innholdet utløper"
-#: ../../addon/statusnet/Mod_Statusnet.php:130
-msgid "GNU social settings updated."
+#: ../../include/features.php:249
+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"
-#: ../../addon/statusnet/Mod_Statusnet.php:179
-msgid "Globally Available GNU social OAuthKeys"
-msgstr ""
+#: ../../include/features.php:256
+msgid "Suppress Duplicate Posts/Comments"
+msgstr "Forhindre duplikat av innlegg/kommentarer"
-#: ../../addon/statusnet/Mod_Statusnet.php:181
+#: ../../include/features.php:257
msgid ""
-"There are preconfigured OAuth key pairs for some GNU social servers "
-"available. If you are using one of them, please use these credentials.<br /"
-">If not feel free to connect to any other GNU social instance (see below)."
+"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."
-#: ../../addon/statusnet/Mod_Statusnet.php:196
-msgid "Provide your own OAuth Credentials"
-msgstr ""
+#: ../../include/features.php:264
+msgid "Auto-save drafts of posts and comments"
+msgstr "Automatisk lagring av kladd for innlegg og kommentarer"
-#: ../../addon/statusnet/Mod_Statusnet.php:198
+#: ../../include/features.php:265
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.<br />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 ""
-
-#: ../../addon/statusnet/Mod_Statusnet.php:202
-msgid "OAuth Consumer Key"
+"Automatically saves post and comment drafts in local browser storage to help "
+"prevent accidental loss of compositions"
msgstr ""
+"Lagrer automatisk utkast til innlegg og kommentarer i nettleserens interne "
+"lager for å unngå å tape innholet ved et uhell"
-#: ../../addon/statusnet/Mod_Statusnet.php:206
-msgid "OAuth Consumer Secret"
+#: ../../include/features.php:274
+msgid "Manage"
msgstr ""
-#: ../../addon/statusnet/Mod_Statusnet.php:210
-msgid "Base API Path"
-msgstr ""
+#: ../../include/features.php:278
+msgid "Navigation Channel Select"
+msgstr "Navigasjon kanalvalg"
-#: ../../addon/statusnet/Mod_Statusnet.php:210
-msgid "Remember the trailing /"
-msgstr ""
+#: ../../include/features.php:279
+msgid "Change channels directly from within the navigation dropdown menu"
+msgstr "Endre kanaler direkte fra navigasjonsmenyen"
-#: ../../addon/statusnet/Mod_Statusnet.php:214
-msgid "GNU social application name"
-msgstr ""
+#: ../../include/features.php:288 ../../Zotlabs/Module/Connections.php:347
+#: ../../Zotlabs/Widget/Notifications.php:23
+msgid "Network"
+msgstr "Nettverk"
-#: ../../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 <strong>public</strong> posts will be "
-"posted to GNU social."
-msgstr ""
+#: ../../include/features.php:292
+msgid "Events Filter"
+msgstr "Arrangementsfilter"
-#: ../../addon/statusnet/Mod_Statusnet.php:239
-msgid "Log in with GNU social"
-msgstr ""
+#: ../../include/features.php:293
+msgid "Ability to display only events"
+msgstr "Mulighet for kun å vise arrangementer"
-#: ../../addon/statusnet/Mod_Statusnet.php:242
-msgid "Copy the security code from GNU social here"
-msgstr ""
+#: ../../include/features.php:300
+msgid "Polls Filter"
+msgstr "Filer for Spørreskjema"
-#: ../../addon/statusnet/Mod_Statusnet.php:252
-msgid "Cancel Connection Process"
-msgstr ""
+#: ../../include/features.php:301
+msgid "Ability to display only polls"
+msgstr "Mulighet for å kun vise spørreskjema"
-#: ../../addon/statusnet/Mod_Statusnet.php:254
-msgid "Current GNU social API is"
-msgstr ""
+#: ../../include/features.php:308 ../../Zotlabs/Widget/Savedsearch.php:89
+msgid "Saved Searches"
+msgstr "Lagrede søk"
-#: ../../addon/statusnet/Mod_Statusnet.php:258
-msgid "Cancel GNU social Connection"
-msgstr ""
+#: ../../include/features.php:309
+msgid "Save search terms for re-use"
+msgstr "Lagre søkeuttrykk for senere bruk"
-#: ../../addon/statusnet/Mod_Statusnet.php:270
-#: ../../addon/twitter/Mod_Twitter.php:145
-msgid "Currently connected to: "
-msgstr ""
+#: ../../include/features.php:316 ../../include/contact_widgets.php:55
+#: ../../Zotlabs/Widget/Filer.php:33
+#: ../../Zotlabs/Widget/Activity_filter.php:196
+msgid "Saved Folders"
+msgstr "Lagrede mapper"
-#: ../../addon/statusnet/Mod_Statusnet.php:275
-msgid ""
-"<strong>Note</strong>: Due your privacy settings (<em>Hide your profile "
-"details from unknown viewers?</em>) 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/features.php:317
+msgid "Ability to file posts under folders"
+msgstr "Mulighet til å sortere innlegg i mapper"
-#: ../../addon/statusnet/Mod_Statusnet.php:280
-msgid "Post to GNU social by default"
-msgstr ""
+#: ../../include/features.php:324
+msgid "Alternate Stream Order"
+msgstr "Alternativer for sortering"
-#: ../../addon/statusnet/Mod_Statusnet.php:280
+#: ../../include/features.php:325
msgid ""
-"If enabled your public postings will be posted to the associated GNU-social "
-"account by default"
-msgstr ""
-
-#: ../../addon/statusnet/Mod_Statusnet.php:289
-#: ../../addon/twitter/Mod_Twitter.php:169
-msgid "Clear OAuth configuration"
-msgstr ""
-
-#: ../../addon/statusnet/Mod_Statusnet.php:301
-msgid "GNU-Social Crosspost Connector"
-msgstr ""
-
-#: ../../addon/statusnet/statusnet.php:145
-msgid "Post to GNU social"
-msgstr ""
-
-#: ../../addon/statusnet/statusnet.php:593
-#: ../../Zotlabs/Module/Admin/Site.php:423
-msgid "Site name"
-msgstr "Nettstedets navn"
-
-#: ../../addon/statusnet/statusnet.php:594
-msgid "API URL"
-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"
-msgstr "Consumer Secret"
-
-#: ../../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"
-
-#: ../../addon/statusnet/statusnet.php:597
-msgid "Application name"
-msgstr ""
-
-#: ../../addon/rtof/Mod_Rtof.php:24
-msgid "Friendica Crosspost Connector Settings saved."
-msgstr ""
-
-#: ../../addon/rtof/Mod_Rtof.php:47
-msgid "Send public postings to Friendica by default"
-msgstr ""
-
-#: ../../addon/rtof/Mod_Rtof.php:51
-msgid "Friendica API Path"
-msgstr ""
-
-#: ../../addon/rtof/Mod_Rtof.php:55
-msgid "Friendica login name"
-msgstr ""
-
-#: ../../addon/rtof/Mod_Rtof.php:59
-msgid "Friendica password"
-msgstr ""
-
-#: ../../addon/rtof/Mod_Rtof.php:67
-msgid "Friendica Crosspost Connector"
-msgstr ""
-
-#: ../../addon/rtof/rtof.php:51
-msgid "Post to Friendica"
-msgstr ""
-
-#: ../../addon/wppost/wppost.php:47
-msgid "Post to WordPress"
-msgstr ""
-
-#: ../../addon/wppost/Mod_Wppost.php:30
-msgid "Wordpress Settings saved."
-msgstr ""
-
-#: ../../addon/wppost/Mod_Wppost.php:67
-msgid "WordPress username"
-msgstr ""
-
-#: ../../addon/wppost/Mod_Wppost.php:71
-msgid "WordPress password"
-msgstr ""
-
-#: ../../addon/wppost/Mod_Wppost.php:75
-msgid "WordPress API URL"
-msgstr ""
-
-#: ../../addon/wppost/Mod_Wppost.php:76
-msgid "Typically https://your-blog.tld/xmlrpc.php"
-msgstr ""
-
-#: ../../addon/wppost/Mod_Wppost.php:79
-msgid "WordPress blogid"
+"Ability to order the stream by last post date, last comment date or "
+"unthreaded activities"
msgstr ""
+"Mulighet for å sortere tidslinjen etter dato for siste innlegg, siste "
+"kommentar eller som separate aktiviteter"
-#: ../../addon/wppost/Mod_Wppost.php:80
-msgid "For multi-user sites such as wordpress.com, otherwise leave blank"
-msgstr ""
+#: ../../include/features.php:332
+msgid "Contact Filter"
+msgstr "Kontaktfilter"
-#: ../../addon/wppost/Mod_Wppost.php:84
-msgid "Post to WordPress by default"
-msgstr ""
+#: ../../include/features.php:333
+msgid "Ability to display only posts of a selected contact"
+msgstr "Mulighet for å kun vise innlegg fra en bestemt kontakt"
-#: ../../addon/wppost/Mod_Wppost.php:88
-msgid "Forward comments (requires hubzilla_wp plugin)"
-msgstr ""
+#: ../../include/features.php:340
+msgid "Forum Filter"
+msgstr "Forumfilter"
-#: ../../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 ""
+#: ../../include/features.php:341
+msgid "Ability to display only posts of a specific forum"
+msgstr "Mulighet for å kun vise innlegg i et bestemt forum"
-#: ../../addon/wppost/Mod_Wppost.php:96 ../../addon/dwpost/Mod_Dwpost.php:67
-msgid "Link description (default:"
-msgstr ""
+#: ../../include/features.php:348
+msgid "Personal Posts Filter"
+msgstr "Filter for personlige innlegg"
-#: ../../addon/wppost/Mod_Wppost.php:104
-msgid "Wordpress Post"
-msgstr ""
+#: ../../include/features.php:349
+msgid "Ability to display only posts that you've interacted on"
+msgstr "Mulighet til å vise kun innlegg du har deltatt på"
-#: ../../addon/content_import/Mod_content_import.php:27
-msgid "No server specified"
-msgstr ""
+#: ../../include/features.php:366 ../../include/nav.php:470
+#: ../../Zotlabs/Lib/Apps.php:351 ../../Zotlabs/Module/Fbrowser.php:29
+#: ../../Zotlabs/Widget/Channel_activities.php:93
+msgid "Photos"
+msgstr "Bilder"
-#: ../../addon/content_import/Mod_content_import.php:72
-msgid "Posts imported"
-msgstr ""
+#: ../../include/features.php:370
+msgid "Photo Location"
+msgstr "Bildeplassering"
-#: ../../addon/content_import/Mod_content_import.php:112
-msgid "Files imported"
+#: ../../include/features.php:371
+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."
-#: ../../addon/content_import/Mod_content_import.php:133
-#: ../../Zotlabs/Lib/Apps.php:337
-msgid "Content Import"
+#: ../../include/features.php:378
+msgid "Flag Adult Photos"
msgstr ""
-#: ../../addon/content_import/Mod_content_import.php:134
+#: ../../include/features.php:379
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 ""
-
-#: ../../addon/content_import/Mod_content_import.php:135
-msgid "Include posts"
-msgstr ""
-
-#: ../../addon/content_import/Mod_content_import.php:135
-msgid "Conversations, Articles, Cards, and other posted content"
-msgstr ""
-
-#: ../../addon/content_import/Mod_content_import.php:136
-msgid "Include files"
-msgstr ""
-
-#: ../../addon/content_import/Mod_content_import.php:136
-msgid "Files, Photos and other cloud storage"
-msgstr ""
-
-#: ../../addon/content_import/Mod_content_import.php:137
-msgid "Original Server base URL"
-msgstr ""
-
-#: ../../addon/content_import/Mod_content_import.php:138
-#: ../../addon/hzfiles/hzfiles.php:84
-msgid "Since modified date yyyy-mm-dd"
-msgstr ""
-
-#: ../../addon/content_import/Mod_content_import.php:139
-#: ../../addon/hzfiles/hzfiles.php:85
-msgid "Until modified date yyyy-mm-dd"
-msgstr ""
-
-#: ../../addon/hsse/hsse.php:82 ../../include/conversation.php:1340
-msgid "Set your location"
-msgstr "Angi din plassering"
-
-#: ../../addon/hsse/hsse.php:83 ../../include/conversation.php:1341
-msgid "Clear browser location"
-msgstr "Fjern nettleserplassering"
-
-#: ../../addon/hsse/hsse.php:95 ../../addon/cards/Mod_Card_edit.php:101
-#: ../../addon/articles/Mod_Article_edit.php:99
-#: ../../include/conversation.php:1353 ../../Zotlabs/Module/Editwebpage.php:143
-#: ../../Zotlabs/Module/Chat.php:219 ../../Zotlabs/Module/Editblock.php:116
-msgid "Insert web link"
-msgstr "Sett inn web-lenke"
-
-#: ../../addon/hsse/hsse.php:99 ../../include/conversation.php:1357
-msgid "Embed (existing) photo from your photo albums"
-msgstr "Sett inn (eksisterende) bilde fra fotoalbumene dine"
-
-#: ../../addon/hsse/hsse.php:134 ../../include/conversation.php:1390
-#: ../../Zotlabs/Module/Chat.php:217
-msgid "Please enter a link URL:"
-msgstr "Vennligst skriv inn en lenke URL:"
-
-#: ../../addon/hsse/hsse.php:135 ../../include/conversation.php:1391
-msgid "Tag term:"
-msgstr "Merkelapp:"
-
-#: ../../addon/hsse/hsse.php:136 ../../include/conversation.php:1392
-msgid "Where are you right now?"
-msgstr "Hvor er du akkurat nå?"
-
-#: ../../addon/hsse/hsse.php:141 ../../include/conversation.php:1397
-msgid "Choose a different album..."
-msgstr ""
-
-#: ../../addon/hsse/hsse.php:145 ../../include/conversation.php:1401
-msgid "Comments enabled"
-msgstr ""
-
-#: ../../addon/hsse/hsse.php:146 ../../include/conversation.php:1402
-msgid "Comments disabled"
+"Provide photo edit option to hide inappropriate photos from default album "
+"view"
msgstr ""
-#: ../../addon/hsse/hsse.php:153 ../../include/conversation.php:1419
-#: ../../Zotlabs/Module/Webpages.php:257 ../../Zotlabs/Module/Photos.php:1094
-#: ../../Zotlabs/Lib/ThreadItem.php:841
-msgid "Preview"
-msgstr "Forhåndsvisning"
-
-#: ../../addon/hsse/hsse.php:195 ../../include/conversation.php:1461
-msgid "Page link name"
-msgstr "Sidens lenkenavn"
-
-#: ../../addon/hsse/hsse.php:198 ../../include/conversation.php:1464
-msgid "Post as"
-msgstr "Lag innlegg som"
-
-#: ../../addon/hsse/hsse.php:200 ../../include/conversation.php:1466
-#: ../../Zotlabs/Lib/ThreadItem.php:832
-msgid "Bold"
-msgstr "Uthevet"
-
-#: ../../addon/hsse/hsse.php:201 ../../include/conversation.php:1467
-#: ../../Zotlabs/Lib/ThreadItem.php:833
-msgid "Italic"
-msgstr "Kursiv"
-
-#: ../../addon/hsse/hsse.php:202 ../../include/conversation.php:1468
-#: ../../Zotlabs/Lib/ThreadItem.php:834
-msgid "Underline"
-msgstr "Understreket"
-
-#: ../../addon/hsse/hsse.php:203 ../../include/conversation.php:1469
-#: ../../Zotlabs/Lib/ThreadItem.php:835
-msgid "Quote"
-msgstr "Sitat"
-
-#: ../../addon/hsse/hsse.php:204 ../../include/conversation.php:1470
-#: ../../Zotlabs/Lib/ThreadItem.php:836
-msgid "Code"
-msgstr "Kode"
-
-#: ../../addon/hsse/hsse.php:205 ../../include/conversation.php:1471
-#: ../../Zotlabs/Lib/ThreadItem.php:838
-msgid "Attach/Upload file"
-msgstr "Last opp fil/vedlegg"
-
-#: ../../addon/hsse/hsse.php:212 ../../include/conversation.php:1478
-msgid "Toggle voting"
-msgstr "Skru av eller på stemming"
-
-#: ../../addon/hsse/hsse.php:215 ../../include/conversation.php:1485
-msgid "Disable comments"
-msgstr "Slå av kommentarer"
-
-#: ../../addon/hsse/hsse.php:216 ../../include/conversation.php:1486
-msgid "Toggle comments"
+#: ../../include/features.php:388 ../../Zotlabs/Lib/Apps.php:367
+#: ../../Zotlabs/Module/Contactedit.php:430
+msgid "Profiles"
msgstr ""
-#: ../../addon/hsse/hsse.php:221 ../../addon/cards/Mod_Card_edit.php:118
-#: ../../addon/articles/Mod_Article_edit.php:116
-#: ../../include/conversation.php:1492 ../../Zotlabs/Module/Editblock.php:129
-#: ../../Zotlabs/Module/Photos.php:667 ../../Zotlabs/Module/Photos.php:1039
-msgid "Title (optional)"
-msgstr "Tittel (valgfri)"
-
-#: ../../addon/hsse/hsse.php:224 ../../include/conversation.php:1496
-msgid "Categories (optional, comma-separated list)"
-msgstr "Kategorier (valgfri, kommaseparert liste)"
-
-#: ../../addon/hsse/hsse.php:225 ../../include/conversation.php:1497
-msgid "Permission settings"
-msgstr "Tillatelser - innstillinger"
-
-#: ../../addon/hsse/hsse.php:247 ../../include/conversation.php:1519
-msgid "Other networks and post services"
-msgstr "Andre nettverk og innleggstjenester"
-
-#: ../../addon/hsse/hsse.php:250 ../../include/conversation.php:1522
-msgid "Set expiration date"
-msgstr "Angi utløpsdato"
-
-#: ../../addon/hsse/hsse.php:253 ../../include/conversation.php:1525
-msgid "Set publish date"
-msgstr "Angi publiseringsdato"
+#: ../../include/features.php:392
+msgid "Advanced Profiles"
+msgstr "Avanserte profiler"
-#: ../../addon/hsse/hsse.php:255 ../../include/conversation.php:1527
-#: ../../Zotlabs/Module/Chat.php:218 ../../Zotlabs/Lib/ThreadItem.php:844
-msgid "Encrypt text"
-msgstr "Krypter tekst"
+#: ../../include/features.php:393
+msgid "Additional profile sections and selections"
+msgstr "Ytterlige seksjoner og utvalg til profilen"
-#: ../../addon/hsse/Mod_Hsse.php:15
-msgid "WYSIWYG status editor"
-msgstr ""
+#: ../../include/features.php:400
+msgid "Profile Import/Export"
+msgstr "Profil-import/-eksport"
-#: ../../addon/hsse/Mod_Hsse.php:24
-msgid "WYSIWYG Status App"
-msgstr ""
+#: ../../include/features.php:401
+msgid "Save and load profile details across sites/channels"
+msgstr "Lagre og åpne profildetaljer på tvers av nettsteder/kanaler"
-#: ../../addon/hsse/Mod_Hsse.php:32
-msgid "WYSIWYG Status"
-msgstr ""
+#: ../../include/features.php:408
+msgid "Multiple Profiles"
+msgstr "Flere profiler"
-#: ../../addon/openstreetmap/openstreetmap.php:133
-msgid "View Larger"
-msgstr ""
+#: ../../include/features.php:409
+msgid "Ability to create multiple profiles"
+msgstr "Mulig å lage flere profiler"
-#: ../../addon/openstreetmap/openstreetmap.php:156
-msgid "Tile Server URL"
-msgstr ""
+#: ../../include/bookmarks.php:34
+#, php-format
+msgid "%1$s's bookmarks"
+msgstr "%1$s sine bokmerker"
-#: ../../addon/openstreetmap/openstreetmap.php:156
-msgid ""
-"A list of <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" "
-"target=\"_blank\">public tile servers</a>"
-msgstr ""
+#: ../../include/feedutils.php:851 ../../include/text.php:1580
+msgid "unknown"
+msgstr "ukjent"
-#: ../../addon/openstreetmap/openstreetmap.php:157
-msgid "Nominatim (reverse geocoding) Server URL"
-msgstr ""
+#: ../../include/attach.php:156 ../../include/attach.php:205
+#: ../../include/attach.php:278 ../../include/attach.php:329
+#: ../../include/attach.php:431 ../../include/attach.php:445
+#: ../../include/attach.php:452 ../../include/attach.php:534
+#: ../../include/attach.php:1106 ../../include/attach.php:1179
+#: ../../include/attach.php:1344 ../../include/photos.php:31
+#: ../../include/items.php:3928 ../../Zotlabs/Lib/Chatroom.php:135
+#: ../../Zotlabs/Web/WebServer.php:119 ../../Zotlabs/Module/Menu.php:130
+#: ../../Zotlabs/Module/Menu.php:141 ../../Zotlabs/Module/Editblock.php:67
+#: ../../Zotlabs/Module/Channel.php:234 ../../Zotlabs/Module/Channel.php:391
+#: ../../Zotlabs/Module/Channel.php:429
+#: ../../Zotlabs/Module/New_channel.php:106
+#: ../../Zotlabs/Module/New_channel.php:131 ../../Zotlabs/Module/Block.php:24
+#: ../../Zotlabs/Module/Block.php:74 ../../Zotlabs/Module/Setup.php:220
+#: ../../Zotlabs/Module/Bookmarks.php:70 ../../Zotlabs/Module/Api.php:26
+#: ../../Zotlabs/Module/Channel_calendar.php:232
+#: ../../Zotlabs/Module/Editlayout.php:67
+#: ../../Zotlabs/Module/Editlayout.php:90 ../../Zotlabs/Module/Photos.php:71
+#: ../../Zotlabs/Module/Viewconnections.php:28
+#: ../../Zotlabs/Module/Viewconnections.php:33
+#: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Common.php:38
+#: ../../Zotlabs/Module/Profiles.php:168 ../../Zotlabs/Module/Profiles.php:611
+#: ../../Zotlabs/Module/Network.php:18 ../../Zotlabs/Module/Authtest.php:13
+#: ../../Zotlabs/Module/Invite.php:65 ../../Zotlabs/Module/Invite.php:316
+#: ../../Zotlabs/Module/Sources.php:80 ../../Zotlabs/Module/Suggest.php:32
+#: ../../Zotlabs/Module/Group.php:15 ../../Zotlabs/Module/Group.php:31
+#: ../../Zotlabs/Module/Settings.php:59 ../../Zotlabs/Module/Layouts.php:71
+#: ../../Zotlabs/Module/Layouts.php:78 ../../Zotlabs/Module/Layouts.php:89
+#: ../../Zotlabs/Module/Viewsrc.php:19 ../../Zotlabs/Module/Cover_photo.php:299
+#: ../../Zotlabs/Module/Cover_photo.php:312 ../../Zotlabs/Module/Chat.php:111
+#: ../../Zotlabs/Module/Chat.php:116 ../../Zotlabs/Module/Achievements.php:34
+#: ../../Zotlabs/Module/Appman.php:163
+#: ../../Zotlabs/Module/Service_limits.php:11
+#: ../../Zotlabs/Module/Connedit.php:299
+#: ../../Zotlabs/Module/Editwebpage.php:68
+#: ../../Zotlabs/Module/Editwebpage.php:89
+#: ../../Zotlabs/Module/Editwebpage.php:107
+#: ../../Zotlabs/Module/Editwebpage.php:121
+#: ../../Zotlabs/Module/Register.php:201 ../../Zotlabs/Module/Thing.php:309
+#: ../../Zotlabs/Module/Thing.php:331 ../../Zotlabs/Module/Thing.php:372
+#: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80
+#: ../../Zotlabs/Module/Defperms.php:181 ../../Zotlabs/Module/Locs.php:98
+#: ../../Zotlabs/Module/Page.php:34 ../../Zotlabs/Module/Page.php:133
+#: ../../Zotlabs/Module/Vote.php:19 ../../Zotlabs/Module/Profile_photo.php:390
+#: ../../Zotlabs/Module/Profile_photo.php:421
+#: ../../Zotlabs/Module/Webpages.php:131
+#: ../../Zotlabs/Module/Connections.php:32
+#: ../../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/Pdledit.php:35
+#: ../../Zotlabs/Module/Moderate.php:15 ../../Zotlabs/Module/Regmod.php:20
+#: ../../Zotlabs/Module/Attach_edit.php:90
+#: ../../Zotlabs/Module/Attach_edit.php:99
+#: ../../Zotlabs/Module/Attach_edit.php:106 ../../Zotlabs/Module/Item.php:512
+#: ../../Zotlabs/Module/Item.php:531 ../../Zotlabs/Module/Item.php:541
+#: ../../Zotlabs/Module/Item.php:1463 ../../Zotlabs/Module/Display.php:387
+#: ../../Zotlabs/Module/Mitem.php:129 ../../Zotlabs/Module/Sharedwithme.php:19
+#: ../../Zotlabs/Module/Like.php:242 ../../Zotlabs/Module/Manage.php:10
+#: ../../Zotlabs/Module/Profile.php:99 ../../Zotlabs/Module/Profile.php:114
+#: ../../extend/addon/hzaddons/articles/Mod_Article_edit.php:51
+#: ../../extend/addon/hzaddons/articles/Mod_Articles.php:94
+#: ../../extend/addon/hzaddons/pumpio/pumpio.php:44
+#: ../../extend/addon/hzaddons/keepout/keepout.php:36
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:63
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:288
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:425
+#: ../../extend/addon/hzaddons/cards/Mod_Card_edit.php:51
+#: ../../extend/addon/hzaddons/cards/Mod_Cards.php:89
+#: ../../extend/addon/hzaddons/openid/Mod_Id.php:53
+msgid "Permission denied."
+msgstr "Tillatelse avslått."
-#: ../../addon/openstreetmap/openstreetmap.php:157
-msgid ""
-"A list of <a href=\"http://wiki.openstreetmap.org/wiki/Nominatim\" "
-"target=\"_blank\">Nominatim servers</a>"
-msgstr ""
+#: ../../include/attach.php:273 ../../include/attach.php:324
+#: ../../include/attach.php:426
+msgid "Item was not found."
+msgstr "Elementet ble ikke funnet."
-#: ../../addon/openstreetmap/openstreetmap.php:158
-msgid "Default zoom"
+#: ../../include/attach.php:290
+msgid "Unknown error."
msgstr ""
-#: ../../addon/openstreetmap/openstreetmap.php:158
-msgid ""
-"The default zoom level. (1:world, 18:highest, also depends on tile server)"
-msgstr ""
+#: ../../include/attach.php:621
+msgid "No source file."
+msgstr "Ingen kildefil."
-#: ../../addon/openstreetmap/openstreetmap.php:159
-msgid "Include marker on map"
-msgstr ""
+#: ../../include/attach.php:643
+msgid "Cannot locate file to replace"
+msgstr "Kan ikke finne filen som skal byttes ut"
-#: ../../addon/openstreetmap/openstreetmap.php:159
-msgid "Include a marker on the map."
-msgstr ""
+#: ../../include/attach.php:662
+msgid "Cannot locate file to revise/update"
+msgstr "Finner ikke filen som skal revideres/oppdateres"
-#: ../../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."
+#: ../../include/attach.php:808
+#, php-format
+msgid "File exceeds size limit of %d"
+msgstr "Filens størrelse overgår grensen på %d"
-#: ../../addon/ijpost/Mod_Ijpost.php:23
-msgid "Insane Journal Crosspost Connector Settings saved."
-msgstr ""
+#: ../../include/attach.php:829
+#, 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."
-#: ../../addon/ijpost/Mod_Ijpost.php:35
-msgid "Insane Journal Crosspost Connector App"
+#: ../../include/attach.php:1019
+msgid "File upload failed. Possible system limit or action terminated."
msgstr ""
+"Mislyktes med å laste opp filen. Mulig systemgrense eller handling avbrutt."
-#: ../../addon/ijpost/Mod_Ijpost.php:35 ../../addon/xmpp/Mod_Xmpp.php:35
-#: ../../Zotlabs/Module/Lang.php:20 ../../Zotlabs/Module/Invite.php:69
-msgid "Not Installed"
-msgstr ""
+#: ../../include/attach.php:1048
+msgid "Stored file could not be verified. Upload failed."
+msgstr "Lagret fil kunne ikke bekreftes. Opplasting mislyktes."
-#: ../../addon/ijpost/Mod_Ijpost.php:36
-msgid "Relay public postings to Insane Journal"
-msgstr ""
+#: ../../include/attach.php:1120 ../../include/attach.php:1136
+msgid "Path not available."
+msgstr "Stien er ikke tilgjengelig."
-#: ../../addon/ijpost/Mod_Ijpost.php:53
-msgid "InsaneJournal username"
-msgstr ""
+#: ../../include/attach.php:1184 ../../include/attach.php:1349
+msgid "Empty pathname"
+msgstr "Tomt sti-navn"
-#: ../../addon/ijpost/Mod_Ijpost.php:57
-msgid "InsaneJournal password"
-msgstr ""
+#: ../../include/attach.php:1210
+msgid "duplicate filename or path"
+msgstr "duplikat av filnavn eller sti"
-#: ../../addon/ijpost/Mod_Ijpost.php:61
-msgid "Post to InsaneJournal by default"
-msgstr ""
+#: ../../include/attach.php:1238
+msgid "Path not found."
+msgstr "Stien ble ikke funnet."
-#: ../../addon/ijpost/Mod_Ijpost.php:69
-msgid "Insane Journal Crosspost Connector"
-msgstr ""
+#: ../../include/attach.php:1305
+msgid "mkdir failed."
+msgstr "mkdir mislyktes."
-#: ../../addon/ijpost/ijpost.php:44
-msgid "Post to Insane Journal"
-msgstr ""
+#: ../../include/attach.php:1309
+msgid "database storage failed."
+msgstr "databaselagring mislyktes."
-#: ../../addon/totp_bak/Mod_Totp.php:32
-msgid "TOTP Two-Step Verification"
-msgstr ""
+#: ../../include/attach.php:1355
+msgid "Empty path"
+msgstr "Tom sti"
-#: ../../addon/totp_bak/Mod_Totp.php:33
-msgid "Enter the 2-step verification generated by your authenticator app:"
-msgstr ""
+#: ../../include/attach.php:1984
+#, fuzzy, php-format
+#| msgid "Files: shared with me"
+msgid "%s shared an %s with you"
+msgstr "Filer: delt med meg"
-#: ../../addon/totp_bak/Mod_Totp.php:34
-msgid "Success!"
+#: ../../include/attach.php:1984
+#, php-format
+msgid "%s shared a %s with you"
msgstr ""
-#: ../../addon/totp_bak/Mod_Totp.php:35
-msgid "Invalid code, please try again."
-msgstr ""
+#: ../../include/attach.php:1984 ../../Zotlabs/Module/Like.php:447
+#, fuzzy
+#| msgid "Image"
+msgid "image"
+msgstr "Bilde"
-#: ../../addon/totp_bak/Mod_Totp.php:36
-msgid "Too many invalid codes..."
+#: ../../include/attach.php:1984
+#: ../../extend/addon/hzaddons/redfiles/redfilehelper.php:64
+msgid "file"
msgstr ""
-#: ../../addon/totp_bak/Mod_Totp.php:37 ../../Zotlabs/Module/Totp_check.php:81
-msgid "Verify"
+#: ../../include/network.php:413
+msgid "url: "
msgstr ""
-#: ../../addon/totp_bak/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/network.php:414
+msgid "error_code: "
msgstr ""
-#: ../../addon/totp_bak/Settings/Totp.php:95
-msgid "Your TOTP secret is"
+#: ../../include/network.php:415
+msgid "error_string: "
msgstr ""
-#: ../../addon/totp_bak/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/network.php:416
+msgid "content-type: "
msgstr ""
-#: ../../addon/totp_bak/Settings/Totp.php:101
-#: ../../Zotlabs/Module/Settings/Multifactor.php:86
-msgid "Test"
-msgstr "Sjekk koden"
+#: ../../include/network.php:1774 ../../include/network.php:1775
+msgid "Friendica"
+msgstr "Friendica"
-#: ../../addon/totp_bak/Settings/Totp.php:102
-msgid "Generate New Secret"
-msgstr ""
+#: ../../include/network.php:1776
+msgid "OStatus"
+msgstr "OStatus"
-#: ../../addon/totp_bak/Settings/Totp.php:103
-msgid "Go"
+#: ../../include/network.php:1777
+msgid "GNU-Social"
msgstr ""
-#: ../../addon/totp_bak/Settings/Totp.php:104
-msgid "Enter your password"
-msgstr ""
+#: ../../include/network.php:1778
+msgid "RSS/Atom"
+msgstr "RSS/Atom"
-#: ../../addon/totp_bak/Settings/Totp.php:105
-msgid "enter TOTP code from your device"
+#: ../../include/network.php:1779
+msgid "ActivityPub"
msgstr ""
-#: ../../addon/totp_bak/Settings/Totp.php:106
-msgid "Pass!"
-msgstr ""
+#: ../../include/network.php:1780 ../../Zotlabs/Module/Connedit.php:736
+#: ../../Zotlabs/Module/Admin/Accounts.php:316
+#: ../../Zotlabs/Module/Admin/Accounts.php:330
+#: ../../Zotlabs/Module/Cdav.php:1372
+#: ../../extend/addon/hzaddons/rtof/Mod_Rtof.php:55
+#: ../../extend/addon/hzaddons/redred/Mod_Redred.php:69
+#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:56
+#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:57
+msgid "Email"
+msgstr "E-post"
-#: ../../addon/totp_bak/Settings/Totp.php:107
-msgid "Fail"
-msgstr ""
+#: ../../include/network.php:1781
+msgid "Diaspora"
+msgstr "Diaspora"
-#: ../../addon/totp_bak/Settings/Totp.php:108
-msgid "Incorrect password, try again."
-msgstr ""
+#: ../../include/network.php:1782
+msgid "Facebook"
+msgstr "Facebook"
-#: ../../addon/totp_bak/Settings/Totp.php:109
-msgid "Record your new TOTP secret and rescan the QR code above."
-msgstr ""
+#: ../../include/network.php:1783
+msgid "Zot"
+msgstr "Zot"
-#: ../../addon/totp_bak/Settings/Totp.php:117
-msgid "TOTP Settings"
-msgstr ""
+#: ../../include/network.php:1784
+msgid "LinkedIn"
+msgstr "LinkedIn"
-#: ../../addon/wholikesme/wholikesme.php:29
-msgid "Who likes me?"
-msgstr ""
+#: ../../include/network.php:1785
+msgid "XMPP/IM"
+msgstr "XMPP/IM"
-#: ../../addon/qrator/qrator.php:48
-msgid "QR code"
-msgstr ""
+#: ../../include/network.php:1786
+msgid "MySpace"
+msgstr "MySpace"
-#: ../../addon/qrator/qrator.php:63
-msgid "QR Generator"
+#: ../../include/auth.php:232
+msgid "Delegation session ended."
msgstr ""
-#: ../../addon/qrator/qrator.php:64
-msgid "Enter some text"
-msgstr ""
+#: ../../include/auth.php:236
+msgid "Logged out."
+msgstr "Logget ut."
-#: ../../addon/pubcrawl/as.php:1332 ../../addon/pubcrawl/as.php:2002
-#: ../../include/network.php:1772 ../../Zotlabs/Lib/Activity.php:3732
-msgid "ActivityPub"
+#: ../../include/auth.php:342
+msgid "Email validation is incomplete. Please check your email."
msgstr ""
-#: ../../addon/pubcrawl/as.php:1958 ../../addon/diaspora/Receiver.php:1693
-#: ../../Zotlabs/Module/Like.php:453 ../../Zotlabs/Module/Subthread.php:115
-msgid "status"
-msgstr "status"
+#: ../../include/auth.php:358
+msgid "Failed authentication"
+msgstr "Mislykket autentisering"
-#: ../../addon/pubcrawl/as.php:1993 ../../addon/diaspora/Receiver.php:1628
-#: ../../include/conversation.php:184 ../../Zotlabs/Module/Like.php:485
-#: ../../Zotlabs/Lib/Activity.php:3723
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "%1$s liker %2$s sin %3$s"
+#: ../../include/auth.php:368
+#: ../../extend/addon/hzaddons/openid/Mod_Openid.php:189
+msgid "Login failed."
+msgstr "Innlogging mislyktes."
-#: ../../addon/pubcrawl/as.php:1995 ../../include/conversation.php:187
-#: ../../Zotlabs/Module/Like.php:487 ../../Zotlabs/Lib/Activity.php:3725
+#: ../../include/opengraph.php:56
#, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
-msgstr "%1$s liker ikke %2$s sin %3$s"
-
-#: ../../addon/pubcrawl/Mod_Pubcrawl.php:25
-msgid "ActivityPub Protocol Settings updated."
-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."
-msgstr ""
-
-#: ../../addon/pubcrawl/Mod_Pubcrawl.php:47
-msgid "Deliver to ActivityPub recipients in privacy groups"
-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"
-msgstr ""
-
-#: ../../addon/pubcrawl/Mod_Pubcrawl.php:51
-msgid "Send multi-media HTML articles"
-msgstr ""
-
-#: ../../addon/pubcrawl/Mod_Pubcrawl.php:51
-msgid "Not supported by some microblog services such as Mastodon"
-msgstr ""
-
-#: ../../addon/pubcrawl/Mod_Pubcrawl.php:59
-msgid "Activitypub Protocol"
-msgstr ""
-
-#: ../../addon/fediwordle/fediwordle.php:211
-msgid "ERROR: word length is not correct!"
-msgstr ""
-
-#: ../../addon/fediwordle/Mod_Fediwordle.php:22
-msgid "Fediwordle App"
+msgid "This is the home page of %s."
msgstr ""
-#: ../../addon/fediwordle/Mod_Fediwordle.php:23
-msgid "A distributed word game inspired by wordle."
-msgstr ""
+#: ../../include/nav.php:109
+msgid "Remote authentication"
+msgstr "Fjernautentisering"
-#: ../../addon/fediwordle/Mod_Fediwordle.php:24
-msgid ""
-"To start a game, enter [wordle]your_word[/wordle] somewhere in a toplevel "
-"post."
-msgstr ""
+#: ../../include/nav.php:109
+msgid "Click to authenticate to your home hub"
+msgstr "Klikk for å godkjennes mot din hjemme-hub"
-#: ../../addon/fediwordle/Mod_Fediwordle.php:25
-msgid "Your contacts can post their guess in the comments."
-msgstr ""
+#: ../../include/nav.php:115 ../../Zotlabs/Module/Admin/Channels.php:168
+#: ../../Zotlabs/Module/Admin.php:118 ../../Zotlabs/Module/Manage.php:162
+#: ../../Zotlabs/Widget/Channel_activities.php:239
+#: ../../Zotlabs/Widget/Admin.php:29
+msgid "Channels"
+msgstr "Kanaler"
-#: ../../addon/fediwordle/Mod_Fediwordle.php:26
-msgid ""
-"Your channel will evaluate the guess and automatically post the response."
-msgstr ""
+#: ../../include/nav.php:115
+msgid "Manage your channels"
+msgstr "Behandle kanalene dine"
-#: ../../addon/fediwordle/Mod_Fediwordle.php:28
-msgid "Correct letters"
-msgstr ""
+#: ../../include/nav.php:118 ../../Zotlabs/Lib/Apps.php:345
+#: ../../Zotlabs/Module/Admin/Addons.php:349
+#: ../../Zotlabs/Module/Admin/Themes.php:141
+#: ../../Zotlabs/Widget/Settings_menu.php:71
+#: ../../Zotlabs/Widget/Newmember.php:60
+msgid "Settings"
+msgstr "Innstillinger"
-#: ../../addon/fediwordle/Mod_Fediwordle.php:29
-msgid "Letters contained in the word but at the wrong spot"
-msgstr ""
+#: ../../include/nav.php:118
+msgid "Account/Channel Settings"
+msgstr "Konto-/kanalinnstillinger"
-#: ../../addon/fediwordle/Mod_Fediwordle.php:30
-msgid "Letters not contained in the word"
-msgstr ""
+#: ../../include/nav.php:124 ../../include/nav.php:154
+#: ../../include/nav.php:175 ../../boot.php:1759
+msgid "Logout"
+msgstr "Logg ut"
-#: ../../addon/ldapauth/ldapauth.php:101
-msgid "An account has been created for you."
-msgstr ""
+#: ../../include/nav.php:124 ../../include/nav.php:154
+msgid "End this session"
+msgstr "Avslutt denne økten"
-#: ../../addon/ldapauth/ldapauth.php:108
-msgid "Authentication successful but rejected: account creation is disabled."
-msgstr ""
+#: ../../include/nav.php:127 ../../include/conversation.php:902
+#: ../../Zotlabs/Lib/Apps.php:350 ../../Zotlabs/Module/Connedit.php:480
+#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:58
+msgid "View Profile"
+msgstr "Vis profil"
-#: ../../addon/dwpost/Mod_Dwpost.php:26
-msgid "Dreamwidth Crosspost Connector Settings saved."
-msgstr ""
+#: ../../include/nav.php:127
+msgid "Your profile page"
+msgstr "Din profilside"
-#: ../../addon/dwpost/Mod_Dwpost.php:51
-msgid "Dreamwidth username"
-msgstr ""
+#: ../../include/nav.php:130 ../../include/channel.php:1539
+#: ../../Zotlabs/Module/Profiles.php:851
+msgid "Edit Profiles"
+msgstr "Rediger profiler"
-#: ../../addon/dwpost/Mod_Dwpost.php:55
-msgid "Dreamwidth password"
-msgstr ""
+#: ../../include/nav.php:130
+msgid "Manage/Edit profiles"
+msgstr "Håndter/endre profiler"
-#: ../../addon/dwpost/Mod_Dwpost.php:59
-msgid "Post to Dreamwidth by default"
-msgstr ""
+#: ../../include/nav.php:132 ../../include/channel.php:1543
+#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:59
+msgid "Edit Profile"
+msgstr "Rediger profil"
-#: ../../addon/dwpost/Mod_Dwpost.php:75
-msgid "Dreamwidth Crosspost Connector"
-msgstr ""
+#: ../../include/nav.php:132 ../../Zotlabs/Widget/Newmember.php:42
+msgid "Edit your profile"
+msgstr "Rediger profil"
-#: ../../addon/dwpost/dwpost.php:49
-msgid "Post to Dreamwidth"
-msgstr ""
+#: ../../include/nav.php:139 ../../include/nav.php:143 ../../boot.php:1760
+#: ../../Zotlabs/Lib/Apps.php:342
+msgid "Login"
+msgstr "Logg inn"
-#: ../../addon/morepokes/morepokes.php:19
-msgid "bitchslap"
-msgstr ""
+#: ../../include/nav.php:139 ../../include/nav.php:143
+msgid "Sign in"
+msgstr "Logg på"
-#: ../../addon/morepokes/morepokes.php:19
-msgid "bitchslapped"
+#: ../../include/nav.php:173
+msgid "Take me home"
msgstr ""
-#: ../../addon/morepokes/morepokes.php:20
-msgid "shag"
+#: ../../include/nav.php:175
+msgid "Log me out of this site"
msgstr ""
-#: ../../addon/morepokes/morepokes.php:20
-msgid "shagged"
-msgstr ""
+#: ../../include/nav.php:180 ../../boot.php:1737
+#: ../../Zotlabs/Module/Register.php:543
+msgid "Register"
+msgstr "Registrer"
-#: ../../addon/morepokes/morepokes.php:21
-msgid "patent"
-msgstr ""
+#: ../../include/nav.php:180
+msgid "Create an account"
+msgstr "Lag en konto"
-#: ../../addon/morepokes/morepokes.php:21
-msgid "patented"
-msgstr ""
+#: ../../include/nav.php:194 ../../include/nav.php:341
+#: ../../Zotlabs/Lib/Apps.php:354 ../../Zotlabs/Module/Layouts.php:184
+msgid "Help"
+msgstr "Hjelp"
-#: ../../addon/morepokes/morepokes.php:22
-msgid "hug"
-msgstr ""
+#: ../../include/nav.php:194
+msgid "Help and documentation"
+msgstr "Hjelp og dokumentasjon"
-#: ../../addon/morepokes/morepokes.php:22
-msgid "hugged"
-msgstr ""
+#: ../../include/nav.php:208 ../../include/text.php:1190
+#: ../../include/text.php:1202 ../../include/acl_selectors.php:149
+#: ../../Zotlabs/Lib/Apps.php:357 ../../Zotlabs/Module/Connections.php:403
+#: ../../Zotlabs/Module/Search.php:47 ../../Zotlabs/Widget/Sitesearch.php:37
+#: ../../Zotlabs/Widget/Activity_filter.php:210
+msgid "Search"
+msgstr "Søk"
-#: ../../addon/morepokes/morepokes.php:23
-msgid "murder"
-msgstr ""
+#: ../../include/nav.php:208
+msgid "Search site @name, !forum, #tag, ?docs, content"
+msgstr "Søk etter @navn, !forum, #emne, ?dokumentasjon eller innhold"
-#: ../../addon/morepokes/morepokes.php:23
-msgid "murdered"
-msgstr ""
+#: ../../include/nav.php:214 ../../Zotlabs/Widget/Admin.php:61
+msgid "Admin"
+msgstr "Administrator"
-#: ../../addon/morepokes/morepokes.php:24
-msgid "worship"
-msgstr ""
+#: ../../include/nav.php:214
+msgid "Site Setup and Configuration"
+msgstr "Nettstedsoppsett og -konfigurasjon"
-#: ../../addon/morepokes/morepokes.php:24
-msgid "worshipped"
-msgstr ""
+#: ../../include/nav.php:345 ../../Zotlabs/Module/New_channel.php:158
+#: ../../Zotlabs/Module/New_channel.php:165
+#: ../../Zotlabs/Module/Defperms.php:254 ../../Zotlabs/Widget/Messages.php:36
+#: ../../Zotlabs/Widget/Notifications.php:175
+#, fuzzy
+msgid "Loading"
+msgstr "Laster..."
-#: ../../addon/morepokes/morepokes.php:25
-msgid "kiss"
-msgstr ""
+#: ../../include/nav.php:350
+msgid "@name, #tag, ?doc, content"
+msgstr "@navn, #merkelapp, ?dokumentasjon, innhold"
-#: ../../addon/morepokes/morepokes.php:25
-msgid "kissed"
-msgstr ""
+#: ../../include/nav.php:351
+msgid "Please wait..."
+msgstr "Vennligst vent..."
-#: ../../addon/morepokes/morepokes.php:26
-msgid "tempt"
-msgstr ""
+#: ../../include/nav.php:357 ../../Zotlabs/Lib/Apps.php:329
+msgid "Apps"
+msgstr "Apper"
-#: ../../addon/morepokes/morepokes.php:26
-msgid "tempted"
+#: ../../include/nav.php:358
+msgid "Channel Apps"
msgstr ""
-#: ../../addon/morepokes/morepokes.php:27
-msgid "raise eyebrows at"
+#: ../../include/nav.php:359
+msgid "System Apps"
msgstr ""
-#: ../../addon/morepokes/morepokes.php:27
-msgid "raised their eyebrows at"
+#: ../../include/nav.php:360
+msgid "Pinned Apps"
msgstr ""
-#: ../../addon/morepokes/morepokes.php:28
-msgid "insult"
-msgstr ""
+#: ../../include/nav.php:361
+msgid "Featured Apps"
+msgstr "Fremhevede apper"
-#: ../../addon/morepokes/morepokes.php:28
-msgid "insulted"
-msgstr ""
+#: ../../include/nav.php:447 ../../Zotlabs/Lib/Apps.php:349
+#: ../../Zotlabs/Module/Admin/Channels.php:176
+msgid "Channel"
+msgstr "Kanal"
-#: ../../addon/morepokes/morepokes.php:29
-msgid "praise"
-msgstr ""
+#: ../../include/nav.php:450
+msgid "Status Messages and Posts"
+msgstr "Statusmeldinger og -innlegg"
-#: ../../addon/morepokes/morepokes.php:29
-msgid "praised"
-msgstr ""
+#: ../../include/nav.php:460 ../../Zotlabs/Module/Help.php:239
+msgid "About"
+msgstr "Om"
-#: ../../addon/morepokes/morepokes.php:30
-msgid "be dubious of"
-msgstr ""
+#: ../../include/nav.php:463
+msgid "Profile Details"
+msgstr "Profildetaljer"
-#: ../../addon/morepokes/morepokes.php:30
-msgid "was dubious of"
-msgstr ""
+#: ../../include/nav.php:473 ../../include/photos.php:722
+msgid "Photo Albums"
+msgstr "Fotoalbum"
-#: ../../addon/morepokes/morepokes.php:31
-msgid "eat"
-msgstr ""
+#: ../../include/nav.php:478 ../../Zotlabs/Lib/Apps.php:346
+#: ../../Zotlabs/Storage/Browser.php:351 ../../Zotlabs/Module/Fbrowser.php:85
+#: ../../Zotlabs/Widget/Channel_activities.php:125
+#: ../../Zotlabs/Widget/Notifications.php:108
+msgid "Files"
+msgstr "Filer"
-#: ../../addon/morepokes/morepokes.php:31
-msgid "ate"
-msgstr ""
+#: ../../include/nav.php:481
+msgid "Files and Storage"
+msgstr "Filer og lagring"
-#: ../../addon/morepokes/morepokes.php:32
-msgid "giggle and fawn at"
-msgstr ""
+#: ../../include/nav.php:503 ../../include/nav.php:506
+#: ../../Zotlabs/Lib/Apps.php:336 ../../Zotlabs/Widget/Chatroom_list.php:22
+msgid "Chatrooms"
+msgstr "Chatrom"
-#: ../../addon/morepokes/morepokes.php:32
-msgid "giggled and fawned at"
-msgstr ""
+#: ../../include/nav.php:516 ../../Zotlabs/Lib/Apps.php:335
+#: ../../Zotlabs/Module/Bookmarks.php:90
+msgid "Bookmarks"
+msgstr "Bokmerker"
-#: ../../addon/morepokes/morepokes.php:33
-msgid "doubt"
-msgstr ""
+#: ../../include/nav.php:519
+msgid "Saved Bookmarks"
+msgstr "Lagrede bokmerker"
-#: ../../addon/morepokes/morepokes.php:33
-msgid "doubted"
-msgstr ""
+#: ../../include/nav.php:527 ../../Zotlabs/Lib/Apps.php:347
+#: ../../Zotlabs/Module/Webpages.php:247
+#: ../../Zotlabs/Widget/Channel_activities.php:168
+msgid "Webpages"
+msgstr "Websider"
-#: ../../addon/morepokes/morepokes.php:34
-msgid "glare"
+#: ../../include/nav.php:530
+msgid "View Webpages"
msgstr ""
-#: ../../addon/morepokes/morepokes.php:34
-msgid "glared at"
-msgstr ""
+#: ../../include/event.php:35 ../../include/event.php:133
+msgid "l F d, Y \\@ g:i A"
+msgstr "l F d, Y \\@ g:i A"
-#: ../../addon/morepokes/morepokes.php:35
-msgid "fuck"
-msgstr ""
+#: ../../include/event.php:43
+msgid "Starts:"
+msgstr "Starter:"
-#: ../../addon/morepokes/morepokes.php:35
-msgid "fucked"
-msgstr ""
+#: ../../include/event.php:53
+msgid "Finishes:"
+msgstr "Slutter:"
-#: ../../addon/morepokes/morepokes.php:36
-msgid "bonk"
-msgstr ""
+#: ../../include/event.php:67 ../../include/event.php:158
+#: ../../include/channel.php:1640 ../../Zotlabs/Module/Directory.php:354
+msgid "Location:"
+msgstr "Plassering:"
-#: ../../addon/morepokes/morepokes.php:36
-msgid "bonked"
+#: ../../include/event.php:133
+msgid "l F d, Y"
msgstr ""
-#: ../../addon/morepokes/morepokes.php:37
-msgid "declare undying love for"
+#: ../../include/event.php:137
+msgid "Start:"
msgstr ""
-#: ../../addon/morepokes/morepokes.php:37
-msgid "declared undying love for"
+#: ../../include/event.php:141
+msgid "End:"
msgstr ""
-#: ../../addon/rendezvous/rendezvous.php:57
-msgid "Errors encountered deleting database table "
-msgstr ""
+#: ../../include/event.php:146
+#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:67
+msgid "Timezone"
+msgstr "Tidssone"
-#: ../../addon/rendezvous/rendezvous.php:95 ../../addon/twitter/twitter.php:502
-msgid "Submit Settings"
-msgstr ""
+#: ../../include/event.php:1246
+msgid "This event has been added to your calendar."
+msgstr "Denne hendelsen er lagt til i din kalender."
-#: ../../addon/rendezvous/rendezvous.php:96
-msgid "Drop tables when uninstalling?"
-msgstr ""
+#: ../../include/event.php:1400 ../../include/conversation.php:153
+#: ../../include/text.php:2361 ../../Zotlabs/Module/Channel_calendar.php:221
+#: ../../Zotlabs/Module/Tagger.php:75 ../../Zotlabs/Module/Like.php:450
+msgid "event"
+msgstr "hendelse"
-#: ../../addon/rendezvous/rendezvous.php:96
-msgid ""
-"If checked, the Rendezvous database tables will be deleted when the plugin "
-"is uninstalled."
-msgstr ""
+#: ../../include/event.php:1479
+msgid "Not specified"
+msgstr "Ikke spesifisert"
-#: ../../addon/rendezvous/rendezvous.php:97
-msgid "Mapbox Access Token"
-msgstr ""
+#: ../../include/event.php:1480
+msgid "Needs Action"
+msgstr "Trenger handling"
-#: ../../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/event.php:1481
+msgid "Completed"
+msgstr "Ferdig"
-#: ../../addon/rendezvous/rendezvous.php:162
-msgid "Rendezvous"
-msgstr ""
+#: ../../include/event.php:1482
+msgid "In Process"
+msgstr "Igang"
-#: ../../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/event.php:1483
+msgid "Cancelled"
+msgstr "Avbrutt"
-#: ../../addon/rendezvous/rendezvous.php:168
-msgid "Welcome to Rendezvous!"
-msgstr ""
+#: ../../include/event.php:1564 ../../include/connections.php:790
+#: ../../Zotlabs/Module/Connedit.php:741 ../../Zotlabs/Module/Cdav.php:1377
+#, fuzzy
+msgid "Mobile"
+msgstr "mobil"
-#: ../../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:1565 ../../include/connections.php:791
+#: ../../Zotlabs/Module/Connedit.php:742 ../../Zotlabs/Module/Cdav.php:1378
+#: ../../Zotlabs/Widget/Notifications.php:43
+msgid "Home"
+msgstr "Hjem"
-#: ../../addon/rendezvous/rendezvous.php:171
-msgid "Let's meet here"
+#: ../../include/event.php:1566 ../../include/connections.php:792
+msgid "Home, Voice"
msgstr ""
-#: ../../addon/rendezvous/rendezvous.php:173
-#: ../../addon/cart/submodules/hzservices.php:657
-#: ../../addon/cart/submodules/manualcat.php:260
-#: ../../Zotlabs/Module/Cdav.php:1005 ../../Zotlabs/Module/Appman.php:210
-#: ../../Zotlabs/Module/Rbmark.php:100
-msgid "Description"
-msgstr "Beskrivelse"
-
-#: ../../addon/rendezvous/rendezvous.php:174
-msgid "New marker"
+#: ../../include/event.php:1567 ../../include/connections.php:793
+msgid "Home, Fax"
msgstr ""
-#: ../../addon/rendezvous/rendezvous.php:175
-msgid "Edit marker"
+#: ../../include/event.php:1568 ../../include/connections.php:794
+#: ../../Zotlabs/Module/Connedit.php:743 ../../Zotlabs/Module/Cdav.php:1379
+msgid "Work"
msgstr ""
-#: ../../addon/rendezvous/rendezvous.php:176
-msgid "New identity"
+#: ../../include/event.php:1569 ../../include/connections.php:795
+msgid "Work, Voice"
msgstr ""
-#: ../../addon/rendezvous/rendezvous.php:177
-msgid "Delete marker"
+#: ../../include/event.php:1570 ../../include/connections.php:796
+msgid "Work, Fax"
msgstr ""
-#: ../../addon/rendezvous/rendezvous.php:178
-msgid "Delete member"
-msgstr ""
+#: ../../include/event.php:1571 ../../include/event.php:1578
+#: ../../include/connections.php:797 ../../include/connections.php:804
+#: ../../include/selectors.php:64 ../../include/selectors.php:81
+#: ../../include/selectors.php:119 ../../include/selectors.php:155
+#: ../../Zotlabs/Access/PermissionRoles.php:362
+#: ../../Zotlabs/Module/Connedit.php:744 ../../Zotlabs/Module/Cdav.php:1380
+msgid "Other"
+msgstr "Annen"
-#: ../../addon/rendezvous/rendezvous.php:179
-msgid "Edit proximity alert"
-msgstr ""
+#: ../../include/photos.php:153
+#, php-format
+msgid "Image exceeds website size limit of %lu bytes"
+msgstr "Bilde overstiger nettstedets størrelsesbegrensning på %lu bytes"
-#: ../../addon/rendezvous/rendezvous.php:180
-msgid ""
-"A proximity alert will be issued when this member is within a certain radius "
-"of you.<br><br>Enter a radius in meters (0 to disable):"
-msgstr ""
+#: ../../include/photos.php:164
+msgid "Image file is empty."
+msgstr "Bildefilen er tom."
-#: ../../addon/rendezvous/rendezvous.php:180
-#: ../../addon/rendezvous/rendezvous.php:185
-msgid "distance"
-msgstr ""
+#: ../../include/photos.php:198 ../../Zotlabs/Module/Cover_photo.php:240
+#: ../../Zotlabs/Module/Profile_photo.php:275
+msgid "Unable to process image"
+msgstr "Kan ikke behandle bildet"
-#: ../../addon/rendezvous/rendezvous.php:181
-msgid "Proximity alert distance (meters)"
-msgstr ""
+#: ../../include/photos.php:324
+msgid "Photo storage failed."
+msgstr "Bildelagring mislyktes."
-#: ../../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.<br><br>Enter a radius in meters (0 to disable):"
-msgstr ""
+#: ../../include/photos.php:373
+msgid "a new photo"
+msgstr "et nytt bilde"
-#: ../../addon/rendezvous/rendezvous.php:183
-msgid "Marker proximity alert"
-msgstr ""
+#: ../../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"
-#: ../../addon/rendezvous/rendezvous.php:186
-msgid "Reminder note"
-msgstr ""
+#: ../../include/photos.php:723 ../../Zotlabs/Module/Photos.php:1339
+#: ../../Zotlabs/Module/Photos.php:1352 ../../Zotlabs/Module/Photos.php:1353
+msgid "Recent Photos"
+msgstr "Nye bilder"
-#: ../../addon/rendezvous/rendezvous.php:187
-msgid ""
-"Enter a note to be displayed when you are within the specified proximity..."
-msgstr ""
+#: ../../include/photos.php:727
+msgid "Upload New Photos"
+msgstr "Last opp nye bilder"
-#: ../../addon/rendezvous/rendezvous.php:199
-msgid "Add new rendezvous"
-msgstr ""
+#: ../../include/items.php:456 ../../Zotlabs/Web/WebServer.php:118
+#: ../../Zotlabs/Module/Import_items.php:116 ../../Zotlabs/Module/Group.php:109
+#: ../../Zotlabs/Module/Dreport.php:10 ../../Zotlabs/Module/Dreport.php:54
+#: ../../Zotlabs/Module/Profperm.php:29 ../../Zotlabs/Module/Subthread.php:89
+#: ../../Zotlabs/Module/Like.php:344
+#: ../../extend/addon/hzaddons/hzfiles/hzfiles.php:75
+#: ../../extend/addon/hzaddons/redphotos/redphotos.php:119
+#: ../../extend/addon/hzaddons/redfiles/redfiles.php:109
+msgid "Permission denied"
+msgstr "Tillatelse avvist"
-#: ../../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/items.php:1241
+msgid "Visible to anybody on the internet."
+msgstr "Synlig for enhver på Internett."
-#: ../../addon/rendezvous/rendezvous.php:232
-msgid "You have no rendezvous. Press the button above to create a rendezvous!"
-msgstr ""
+#: ../../include/items.php:1243
+msgid "Visible to you only."
+msgstr "Synlig bare for deg."
-#: ../../addon/rendezvous/rendezvous.php:401 ../../Zotlabs/Module/Setup.php:730
-msgid "Errors encountered creating database tables."
-msgstr "Feil oppstod under opprettelsen av databasetabeller."
+#: ../../include/items.php:1245
+msgid "Visible to anybody in this network."
+msgstr "Synlig for enhver i dette nettverket."
-#: ../../addon/startpage/Mod_Startpage.php:60
-msgid "Page to load after login"
-msgstr ""
+#: ../../include/items.php:1247
+msgid "Visible to anybody authenticated."
+msgstr "Synlig for enhver som er autentisert."
-#: ../../addon/startpage/Mod_Startpage.php:60
-msgid ""
-"Examples: &quot;apps&quot;, &quot;network?f=&gid=37&quot; (privacy "
-"collection), &quot;channel&quot; or &quot;notifications/system&quot; (leave "
-"blank for default network page (grid)."
-msgstr ""
+#: ../../include/items.php:1249
+#, php-format
+msgid "Visible to anybody on %s."
+msgstr "Synlig for alle på %s."
-#: ../../addon/startpage/Mod_Startpage.php:68
-msgid "Startpage"
-msgstr ""
+#: ../../include/items.php:1251
+msgid "Visible to all connections."
+msgstr "Synlig for alle forbindelser."
-#: ../../addon/upgrade_info/upgrade_info.php:48
-msgid "Your channel has been upgraded to $Projectname version"
-msgstr ""
+#: ../../include/items.php:1253
+msgid "Visible to approved connections."
+msgstr "Synlig for godkjente forbindelser."
-#: ../../addon/upgrade_info/upgrade_info.php:50
-msgid "Please have a look at the"
-msgstr ""
+#: ../../include/items.php:1255
+msgid "Visible to specific connections."
+msgstr "Synlig for spesifikke forbindelser."
-#: ../../addon/upgrade_info/upgrade_info.php:52
-msgid "git history"
+#: ../../include/items.php:3345 ../../Zotlabs/Lib/Activity.php:2196
+#: ../../Zotlabs/Module/Share.php:124
+#, php-format
+msgid "&#x1f501; Repeated %1$s's %2$s"
msgstr ""
-#: ../../addon/upgrade_info/upgrade_info.php:54
-msgid "change log"
-msgstr ""
+#: ../../include/items.php:3848 ../../Zotlabs/Module/Viewsrc.php:25
+#: ../../Zotlabs/Module/Thing.php:113 ../../Zotlabs/Module/Filestorage.php:29
+#: ../../Zotlabs/Module/Admin/Addons.php:264
+#: ../../Zotlabs/Module/Admin/Themes.php:73 ../../Zotlabs/Module/Display.php:59
+#: ../../Zotlabs/Module/Display.php:120 ../../Zotlabs/Module/Display.php:391
+#: ../../Zotlabs/Module/Admin.php:63
+#: ../../extend/addon/hzaddons/flashcards/Mod_Flashcards.php:291
+#: ../../extend/addon/hzaddons/flashcards/Mod_Flashcards.php:292
+msgid "Item not found."
+msgstr "Elementet ble ikke funnet."
-#: ../../addon/upgrade_info/upgrade_info.php:55
-msgid "for further info."
-msgstr ""
+#: ../../include/items.php:4430 ../../Zotlabs/Module/Group.php:63
+#: ../../Zotlabs/Module/Group.php:207
+msgid "Privacy group not found."
+msgstr "Personverngruppen ble ikke funnet."
-#: ../../addon/upgrade_info/upgrade_info.php:60
-msgid "Upgrade Info"
-msgstr ""
+#: ../../include/items.php:4446
+msgid "Privacy group is empty."
+msgstr "Personverngruppen er tom."
-#: ../../addon/upgrade_info/upgrade_info.php:64
-msgid "Do not show this again"
-msgstr ""
+#: ../../include/items.php:4453
+#, php-format
+msgid "Privacy group: %s"
+msgstr "Personverngruppe: %s"
-#: ../../addon/twitter/Mod_Twitter.php:65
-msgid "Twitter settings updated."
-msgstr ""
+#: ../../include/items.php:4463
+#, php-format
+msgid "Connection: %s"
+msgstr "Forbindelse: %s"
-#: ../../addon/twitter/Mod_Twitter.php:101
-msgid ""
-"No consumer key pair for Twitter found. Please contact your site "
-"administrator."
-msgstr ""
+#: ../../include/items.php:4465
+msgid "Connection not found."
+msgstr "Forbindelsen ble ikke funnet."
-#: ../../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 <strong>public</strong> posts will "
-"be posted to Twitter."
+#: ../../include/account.php:39
+msgid "The provided email address is not valid"
msgstr ""
-#: ../../addon/twitter/Mod_Twitter.php:125
-msgid "Log in with Twitter"
+#: ../../include/account.php:42
+msgid "The provided email domain is not among those allowed on this site"
msgstr ""
-#: ../../addon/twitter/Mod_Twitter.php:128
-msgid "Copy the PIN from Twitter here"
+#: ../../include/account.php:49
+msgid "The provided email address is already registered at this site"
msgstr ""
-#: ../../addon/twitter/Mod_Twitter.php:150
+#: ../../include/account.php:56
msgid ""
-"<strong>Note:</strong> Due your privacy settings (<em>Hide your profile "
-"details from unknown viewers?</em>) 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 ""
-
-#: ../../addon/twitter/Mod_Twitter.php:155
-msgid "Twitter post length"
+"There is a pending registration for this address - click \"Register\" to "
+"continue verification"
msgstr ""
-#: ../../addon/twitter/Mod_Twitter.php:155
-msgid "Maximum tweet length"
-msgstr ""
+#: ../../include/account.php:95
+msgid "An invitation is required."
+msgstr "En invitasjon er påkrevd."
-#: ../../addon/twitter/Mod_Twitter.php:160
-msgid "Send public postings to Twitter by default"
-msgstr ""
+#: ../../include/account.php:104
+msgid "Invitation could not be verified."
+msgstr "Invitasjon kunne ikke bekreftes."
-#: ../../addon/twitter/Mod_Twitter.php:160
-msgid ""
-"If enabled your public postings will be posted to the associated Twitter "
-"account by default"
-msgstr ""
+#: ../../include/account.php:192
+msgid "Please enter the required information."
+msgstr "Vennligst skriv inn nødvendig informasjon."
-#: ../../addon/twitter/Mod_Twitter.php:179
-msgid "Twitter Crosspost Connector"
-msgstr ""
+#: ../../include/account.php:259 ../../include/account.php:367
+msgid "Failed to store account information."
+msgstr "Mislyktes med å lagre kontoinformasjon."
-#: ../../addon/twitter/twitter.php:109
-msgid "Post to Twitter"
-msgstr ""
+#: ../../include/account.php:436 ../../include/account.php:504
+#: ../../Zotlabs/Module/Register.php:329
+#, php-format
+msgid "Registration confirmation for %s"
+msgstr "Registreringsbekreftelse for %s"
-#: ../../addon/pumpio/pumpio.php:152
-msgid "You are now authenticated to pumpio."
-msgstr ""
+#: ../../include/account.php:579
+#, php-format
+msgid "Registration request at %s"
+msgstr "Registreringsforespørsel hos %s"
-#: ../../addon/pumpio/pumpio.php:153
-msgid "return to the featured settings page"
-msgstr "tilbake til funksjonsinnstillinger"
+#: ../../include/account.php:601
+msgid "your registration password"
+msgstr "ditt registreringspassord"
-#: ../../addon/pumpio/pumpio.php:168
-msgid "Post to Pump.io"
-msgstr ""
+#: ../../include/account.php:607 ../../include/account.php:696
+#, php-format
+msgid "Registration details for %s"
+msgstr "Registreringsdetaljer for %s"
-#: ../../addon/pumpio/Mod_Pumpio.php:40
-msgid "Pump.io Settings saved."
-msgstr ""
+#: ../../include/account.php:707
+msgid "Account approved."
+msgstr "Konto godkjent."
-#: ../../addon/pumpio/Mod_Pumpio.php:71
-msgid "Pump.io servername"
-msgstr ""
+#: ../../include/account.php:763
+#, php-format
+msgid "Registration revoked for %s"
+msgstr "Registrering trukket tilbake for %s"
-#: ../../addon/pumpio/Mod_Pumpio.php:71
-msgid "Without \"http://\" or \"https://\""
+#: ../../include/account.php:770
+#, php-format
+msgid "Could not revoke registration for %s"
msgstr ""
-#: ../../addon/pumpio/Mod_Pumpio.php:75
-msgid "Pump.io username"
-msgstr ""
+#: ../../include/account.php:1187 ../../include/account.php:1189
+msgid "Click here to upgrade."
+msgstr "Klikk her for å oppgradere."
-#: ../../addon/pumpio/Mod_Pumpio.php:75
-msgid "Without the servername"
-msgstr ""
+#: ../../include/account.php:1195
+msgid "This action exceeds the limits set by your subscription plan."
+msgstr "Denne handlingen går utenfor grensene satt i din abonnementsplan."
-#: ../../addon/pumpio/Mod_Pumpio.php:86
-msgid "You are not authenticated to pumpio"
-msgstr ""
+#: ../../include/account.php:1200
+msgid "This action is not available under your subscription plan."
+msgstr "Denne handlingen er ikke tilgjengelig i din abonnementsplan."
-#: ../../addon/pumpio/Mod_Pumpio.php:88
-msgid "(Re-)Authenticate your pump.io connection"
+#: ../../include/account.php:1260
+msgid "open"
msgstr ""
-#: ../../addon/pumpio/Mod_Pumpio.php:92
-msgid "Post to pump.io by default"
+#: ../../include/account.php:1260
+msgid "closed"
msgstr ""
-#: ../../addon/pumpio/Mod_Pumpio.php:96
-msgid "Should posts be public"
+#: ../../include/account.php:1267
+msgid "Registration is currently"
msgstr ""
-#: ../../addon/pumpio/Mod_Pumpio.php:100
-msgid "Mirror all public posts"
+#: ../../include/account.php:1276
+msgid "please come back"
msgstr ""
-#: ../../addon/pumpio/Mod_Pumpio.php:110
-msgid "Pump.io Crosspost Connector"
-msgstr ""
+#: ../../include/photo/photo_driver.php:458
+#: ../../Zotlabs/Module/Profile_photo.php:168
+#: ../../Zotlabs/Module/Profile_photo.php:337
+msgid "Profile Photos"
+msgstr "Profilbilder"
-#: ../../addon/gravatar/gravatar.php:123
-msgid "generic profile image"
-msgstr ""
+#: ../../include/activities.php:30
+msgid " and "
+msgstr " og "
-#: ../../addon/gravatar/gravatar.php:124
-msgid "random geometric pattern"
-msgstr ""
+#: ../../include/activities.php:32
+#, fuzzy
+#| msgid " "
+msgid ", "
+msgstr " "
-#: ../../addon/gravatar/gravatar.php:125
-msgid "monster face"
-msgstr ""
+#: ../../include/activities.php:36 ../../include/activities.php:38
+#: ../../Zotlabs/Lib/Apps.php:365 ../../Zotlabs/Module/Profile_photo.php:227
+#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:58
+#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:59
+#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:60
+msgid "Profile Photo"
+msgstr "Profilbilde"
-#: ../../addon/gravatar/gravatar.php:126
-msgid "computer generated face"
-msgstr ""
+#: ../../include/activities.php:36 ../../Zotlabs/Module/Cover_photo.php:230
+#, fuzzy
+#| msgid "Cover Photos"
+msgid "Cover Photo"
+msgstr "Forsidebilder"
-#: ../../addon/gravatar/gravatar.php:127
-msgid "retro arcade style face"
-msgstr ""
+#: ../../include/activities.php:45
+msgid "public profile"
+msgstr "offentlig profil"
-#: ../../addon/gravatar/gravatar.php:128
-msgid "Hub default profile photo"
-msgstr ""
+#: ../../include/activities.php:62
+#, fuzzy, php-format
+#| msgid "%1$s has an updated %2$s, changing %3$s."
+msgid "%1$s %2$s has been updated to %3$s."
+msgstr "%1$s har oppdatert %2$s, endret %3$s."
-#: ../../addon/gravatar/gravatar.php:143
-msgid "Information"
-msgstr ""
+#: ../../include/activities.php:65
+#, fuzzy, php-format
+#| msgid "%1$s has an updated %2$s, changing %3$s."
+msgid "%1$s updated the %2$s. Changed %3$s."
+msgstr "%1$s har oppdatert %2$s, endret %3$s."
-#: ../../addon/gravatar/gravatar.php:143
+#: ../../include/group.php:23
msgid ""
-"Libravatar addon is installed, too. Please disable Libravatar addon or this "
-"Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if "
-"nothing was found at Libravatar."
-msgstr ""
-
-#: ../../addon/gravatar/gravatar.php:150 ../../addon/msgfooter/msgfooter.php:46
-#: ../../addon/xmpp/xmpp.php:43
-msgid "Save Settings"
-msgstr ""
-
-#: ../../addon/gravatar/gravatar.php:151
-msgid "Default avatar image"
-msgstr ""
-
-#: ../../addon/gravatar/gravatar.php:151
-msgid "Select default avatar image if none was found at Gravatar. See README"
-msgstr ""
-
-#: ../../addon/gravatar/gravatar.php:152
-msgid "Rating of images"
-msgstr ""
-
-#: ../../addon/gravatar/gravatar.php:152
-msgid "Select the appropriate avatar rating for your site. See README"
+"A deleted group with this name was revived. Existing item permissions "
+"<strong>may</strong> apply to this group and any future members. If this is "
+"not what you intended, please create another group with a different name."
msgstr ""
+"En slettet gruppe med dette navnet ble gjenopprettet. Eksisterende "
+"tillatelser for elementet <strong>kan</strong> gjelde for denne gruppen og "
+"fremtidige medlemmer. Hvis du ønsket noe annet, vennligst lag en ny gruppe "
+"med et annet navn."
-#: ../../addon/gravatar/gravatar.php:165
-msgid "Gravatar settings updated."
-msgstr ""
+#: ../../include/group.php:271
+msgid "Add new connections to this privacy group"
+msgstr "Legg nye forbindelser i denne personverngruppen"
-#: ../../addon/msgfooter/msgfooter.php:47
-msgid "text to include in all outgoing posts from this site"
-msgstr ""
+#: ../../include/group.php:305
+msgid "edit"
+msgstr "endre"
-#: ../../addon/sendzid/Mod_Sendzid.php:21
-msgid "Send your identity to all websites"
-msgstr ""
+#: ../../include/group.php:327 ../../include/acl_selectors.php:87
+#: ../../Zotlabs/Lib/Apps.php:368 ../../Zotlabs/Module/Group.php:144
+#: ../../Zotlabs/Widget/Activity_filter.php:95
+msgid "Privacy Groups"
+msgstr "Personverngrupper"
-#: ../../addon/sendzid/Mod_Sendzid.php:29
-msgid "Send ZID"
-msgstr ""
+#: ../../include/group.php:328
+msgid "Edit group"
+msgstr "Endre gruppe"
-#: ../../addon/cart/widgets/catalogitem.php:57
-#: ../../addon/cart/submodules/hzservices.php:660
-#: ../../addon/cart/submodules/manualcat.php:263
-msgid "Price"
+#: ../../include/group.php:329
+msgid "Manage privacy groups"
msgstr ""
-#: ../../addon/cart/manual_payments.php:7
-msgid "Error: order mismatch. Please try again."
-msgstr ""
+#: ../../include/group.php:330
+msgid "Channels not in any privacy group"
+msgstr "Kanaler uten personverngruppe"
-#: ../../addon/cart/manual_payments.php:61
-msgid "Manual payments are not enabled."
-msgstr ""
+#: ../../include/group.php:332 ../../Zotlabs/Widget/Savedsearch.php:90
+msgid "add"
+msgstr "legg til"
-#: ../../addon/cart/manual_payments.php:68
-#: ../../addon/cart/submodules/paypalbutton.php:392
-#: ../../addon/cart/submodules/paypalbuttonV2.php:417
-#: ../../addon/cart/cart.php:1632
-msgid "Order not found."
-msgstr ""
+#: ../../include/language.php:423 ../../include/text.php:2199
+msgid "default"
+msgstr "standard"
-#: ../../addon/cart/manual_payments.php:77
-msgid "Finished"
-msgstr ""
+#: ../../include/language.php:436
+msgid "Select an alternate language"
+msgstr "Velg et annet språk"
-#: ../../addon/cart/submodules/subscriptions.php:151
-msgid "Enable Subscription Management Module"
+#: ../../include/import.php:31
+msgid "Unable to import a removed channel."
msgstr ""
-#: ../../addon/cart/submodules/subscriptions.php:223
+#: ../../include/import.php:57
msgid ""
-"Cannot include subscription items with different terms in the same order."
-msgstr ""
-
-#: ../../addon/cart/submodules/subscriptions.php:372
-msgid "Select Subscription to Edit"
-msgstr ""
-
-#: ../../addon/cart/submodules/subscriptions.php:380
-msgid "Edit Subscriptions"
-msgstr ""
-
-#: ../../addon/cart/submodules/subscriptions.php:414
-msgid "Subscription SKU"
-msgstr ""
-
-#: ../../addon/cart/submodules/subscriptions.php:419
-msgid "Catalog Description"
-msgstr ""
-
-#: ../../addon/cart/submodules/subscriptions.php:423
-msgid "Subscription available for purchase."
-msgstr ""
-
-#: ../../addon/cart/submodules/subscriptions.php:428
-msgid "Maximum active subscriptions to this item per account."
-msgstr ""
-
-#: ../../addon/cart/submodules/subscriptions.php:431
-msgid "Subscription price."
-msgstr ""
-
-#: ../../addon/cart/submodules/subscriptions.php:435
-msgid "Quantity"
-msgstr ""
-
-#: ../../addon/cart/submodules/subscriptions.php:439
-msgid "Term"
-msgstr ""
-
-#: ../../addon/cart/submodules/hzservices.php:65
-msgid "Enable Hubzilla Services Module"
-msgstr ""
-
-#: ../../addon/cart/submodules/hzservices.php:164
-#: ../../addon/cart/submodules/manualcat.php:172
-msgid "New Sku"
-msgstr ""
-
-#: ../../addon/cart/submodules/hzservices.php:199
-#: ../../addon/cart/submodules/manualcat.php:208
-msgid "Cannot save edits to locked item."
-msgstr ""
-
-#: ../../addon/cart/submodules/hzservices.php:248
-#: ../../addon/cart/submodules/hzservices.php:335
-msgid "SKU not found."
-msgstr ""
-
-#: ../../addon/cart/submodules/hzservices.php:301
-#: ../../addon/cart/submodules/hzservices.php:305
-msgid "Invalid Activation Directive."
-msgstr ""
-
-#: ../../addon/cart/submodules/hzservices.php:376
-#: ../../addon/cart/submodules/hzservices.php:380
-msgid "Invalid Deactivation Directive."
-msgstr ""
-
-#: ../../addon/cart/submodules/hzservices.php:566
-msgid "Add to this privacy group"
-msgstr ""
-
-#: ../../addon/cart/submodules/hzservices.php:582
-msgid "Set user service class"
-msgstr ""
-
-#: ../../addon/cart/submodules/hzservices.php:609
-msgid "You must be using a local account to purchase this service."
-msgstr ""
-
-#: ../../addon/cart/submodules/hzservices.php:649
-#: ../../addon/cart/submodules/manualcat.php:252
-msgid "Changes Locked"
-msgstr ""
-
-#: ../../addon/cart/submodules/hzservices.php:653
-#: ../../addon/cart/submodules/manualcat.php:256
-msgid "Item available for purchase."
+"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."
-#: ../../addon/cart/submodules/hzservices.php:663
-#: ../../addon/cart/submodules/manualcat.php:266
-msgid "Photo URL"
-msgstr ""
+#: ../../include/import.php:78
+#: ../../extend/addon/hzaddons/diaspora/import_diaspora.php:43
+msgid "Unable to create a unique channel address. Import failed."
+msgstr "Klarte ikke å lage en unik kanaladresse. Import mislyktes."
-#: ../../addon/cart/submodules/hzservices.php:667
-msgid "Add buyer to privacy group"
-msgstr ""
+#: ../../include/import.php:129
+msgid "Cloned channel not found. Import failed."
+msgstr "Klonet kanal ble ikke funnet. Import mislyktes."
-#: ../../addon/cart/submodules/hzservices.php:672
-msgid "Add buyer as connection"
-msgstr ""
+#: ../../include/datetime.php:58 ../../Zotlabs/Module/Profiles.php:751
+#: ../../Zotlabs/Widget/Newmember.php:58
+msgid "Miscellaneous"
+msgstr "Forskjellig"
-#: ../../addon/cart/submodules/hzservices.php:680
-#: ../../addon/cart/submodules/hzservices.php:722
-msgid "Set Service Class"
-msgstr ""
+#: ../../include/datetime.php:140
+#, fuzzy
+msgid "Birthday"
+msgstr "Fødselsdag:"
-#: ../../addon/cart/submodules/orderoptions.php:70
-msgid "Enable Order/Item Options"
-msgstr ""
+#: ../../include/datetime.php:140
+msgid "Age: "
+msgstr "Alder: "
-#: ../../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/datetime.php:140
+msgid "YYYY-MM-DD or MM-DD"
+msgstr "YYYY-MM-DD eller MM-DD"
-#: ../../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:208
-#: ../../Zotlabs/Module/Appman.php:209 ../../Zotlabs/Module/Profiles.php:761
-#: ../../Zotlabs/Module/Profiles.php:765
+#: ../../include/datetime.php:211 ../../include/js_strings.php:124
+#: ../../Zotlabs/Module/Profiles.php:760 ../../Zotlabs/Module/Profiles.php:764
+#: ../../Zotlabs/Module/Appman.php:218 ../../Zotlabs/Module/Appman.php:219
+#: ../../Zotlabs/Module/Register.php:501
#: ../../Zotlabs/Module/Settings/Multifactor.php:84
+#: ../../extend/addon/hzaddons/cart/submodules/orderoptions.php:334
+#: ../../extend/addon/hzaddons/cart/submodules/orderoptions.php:358
+#: ../../extend/addon/hzaddons/cart/submodules/orderoptions.php:434
+#: ../../extend/addon/hzaddons/cart/submodules/orderoptions.php:458
msgid "Required"
msgstr "Påkrevd"
-#: ../../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 ""
-
-#: ../../addon/cart/submodules/paypalbutton.php:85
-msgid "Enable Paypal Button Module"
-msgstr ""
-
-#: ../../addon/cart/submodules/paypalbutton.php:93
-#: ../../addon/cart/submodules/paypalbuttonV2.php:96
-msgid "Use Production Key"
-msgstr ""
-
-#: ../../addon/cart/submodules/paypalbutton.php:100
-#: ../../addon/cart/submodules/paypalbuttonV2.php:103
-msgid "Paypal Sandbox Client Key"
-msgstr ""
-
-#: ../../addon/cart/submodules/paypalbutton.php:107
-#: ../../addon/cart/submodules/paypalbuttonV2.php:110
-msgid "Paypal Sandbox Secret Key"
-msgstr ""
-
-#: ../../addon/cart/submodules/paypalbutton.php:113
-#: ../../addon/cart/submodules/paypalbuttonV2.php:116
-msgid "Paypal Production Client Key"
-msgstr ""
-
-#: ../../addon/cart/submodules/paypalbutton.php:120
-#: ../../addon/cart/submodules/paypalbuttonV2.php:123
-msgid "Paypal Production Secret Key"
-msgstr ""
-
-#: ../../addon/cart/submodules/paypalbutton.php:252
-#: ../../addon/cart/submodules/paypalbuttonV2.php:271
-msgid "Paypal button payments are not enabled."
-msgstr ""
-
-#: ../../addon/cart/submodules/paypalbutton.php:270
-#: ../../addon/cart/submodules/paypalbuttonV2.php:289
-msgid ""
-"Paypal button payments are not properly configured. Please choose another "
-"payment option."
-msgstr ""
-
-#: ../../addon/cart/submodules/paypalbuttonV2.php:86
-msgid "Enable Paypal Button Module (API-v2)"
-msgstr ""
-
-#: ../../addon/cart/submodules/manualcat.php:61
-msgid "Enable Manual Cart Module"
-msgstr ""
-
-#: ../../addon/cart/myshop.php:30
-#, fuzzy
-msgid "Access Denied."
-msgstr "Ingen tilgang"
-
-#: ../../addon/cart/myshop.php:113 ../../addon/cart/cart.php:1495
-msgid "Order Not Found"
-msgstr ""
-
-#: ../../addon/cart/myshop.php:145 ../../addon/cart/myshop.php:181
-#: ../../addon/cart/myshop.php:215 ../../addon/cart/myshop.php:265
-#: ../../addon/cart/myshop.php:300 ../../addon/cart/myshop.php:323
-msgid "Access Denied"
-msgstr "Ingen tilgang"
-
-#: ../../addon/cart/myshop.php:190 ../../addon/cart/myshop.php:224
-#: ../../addon/cart/myshop.php:275 ../../addon/cart/myshop.php:333
-#, fuzzy
-msgid "Invalid Item"
-msgstr "Ugyldig element."
-
-#: ../../addon/cart/Settings/Cart.php:58
-msgid "Enable Test Catalog"
-msgstr ""
-
-#: ../../addon/cart/Settings/Cart.php:70
-msgid "Enable Manual Payments"
-msgstr ""
-
-#: ../../addon/cart/Settings/Cart.php:90
-msgid "Base Merchant Currency"
-msgstr ""
-
-#: ../../addon/cart/Settings/Cart.php:129 ../../addon/cart/cart.php:1424
-msgid "Cart Settings"
-msgstr ""
-
-#: ../../addon/cart/cart.php:259
-msgid "DB Cleanup Failure"
-msgstr ""
-
-#: ../../addon/cart/cart.php:692
-msgid "[cart] Item Added"
-msgstr ""
-
-#: ../../addon/cart/cart.php:1107
-msgid "Order already checked out."
-msgstr ""
-
-#: ../../addon/cart/cart.php:1417
-msgid "Drop database tables when uninstalling."
-msgstr ""
-
-#: ../../addon/cart/cart.php:1436 ../../addon/cart/cart.php:1439
-msgid "Shop"
-msgstr ""
-
-#: ../../addon/cart/cart.php:1599
-msgid "You must be logged into the Grid to shop."
-msgstr ""
-
-#: ../../addon/cart/cart.php:1648
-#, fuzzy
-msgid "Access denied."
-msgstr "Ingen tilgang"
-
-#: ../../addon/cart/cart.php:1700 ../../addon/cart/cart.php:1843
-msgid "No Order Found"
-msgstr ""
-
-#: ../../addon/cart/cart.php:1709
-msgid "An unknown error has occurred Please start again."
-msgstr ""
-
-#: ../../addon/cart/cart.php:1852
-msgid "Requirements not met."
-msgstr ""
-
-#: ../../addon/cart/cart.php:1852
-msgid "Review your order and complete any needed requirements."
-msgstr ""
-
-#: ../../addon/cart/cart.php:1878
-msgid "Invalid Payment Type. Please start again."
-msgstr ""
-
-#: ../../addon/cart/cart.php:1885
-msgid "Order not found"
-msgstr ""
-
-#: ../../addon/nofed/Mod_Nofed.php:21
-msgid "nofed Settings saved."
-msgstr ""
-
-#: ../../addon/nofed/Mod_Nofed.php:40
-msgid "Federate posts by default"
-msgstr ""
-
-#: ../../addon/nofed/Mod_Nofed.php:48
-msgid "No Federation"
-msgstr ""
-
-#: ../../addon/nofed/nofed.php:47
-msgid "Federate"
-msgstr ""
-
-#: ../../addon/smileybutton/Mod_Smileybutton.php:42
-msgid "Hide the button and show the smilies directly."
-msgstr ""
-
-#: ../../addon/smileybutton/Mod_Smileybutton.php:50
-msgid "Smileybutton Settings"
-msgstr ""
-
-#: ../../addon/redfiles/redfilehelper.php:64 ../../include/attach.php:2147
-msgid "file"
-msgstr ""
-
-#: ../../addon/redfiles/redfiles.php:119
-msgid "Redmatrix File Storage Import"
-msgstr ""
-
-#: ../../addon/redfiles/redfiles.php:120
-msgid "This will import all your Redmatrix cloud files to this channel."
-msgstr ""
-
-#: ../../addon/diaspora/diaspora.php:78
-msgid ""
-"Please install the statistics addon to be able to configure a diaspora relay"
-msgstr ""
-
-#: ../../addon/diaspora/diaspora.php:88
-msgid "Diaspora Relay Handle"
-msgstr ""
-
-#: ../../addon/diaspora/diaspora.php:88
-msgid "Address of a diaspora relay. Example: relay@diasporarelay.tld"
-msgstr ""
-
-#: ../../addon/diaspora/diaspora.php:108
-msgid "Diaspora relay could not be imported"
-msgstr ""
-
-#: ../../addon/diaspora/diaspora.php:1069
-msgid "No subject"
-msgstr ""
-
-#: ../../addon/diaspora/p.php:48 ../../addon/diaspora/util.php:342
-#: ../../addon/diaspora/util.php:355 ../../Zotlabs/Lib/Enotify.php:61
-msgid "$projectname"
-msgstr "$projectname"
+#: ../../include/datetime.php:238 ../../boot.php:2774
+msgid "never"
+msgstr "aldri"
-#: ../../addon/diaspora/import_diaspora.php:18
-msgid "No username found in import file."
-msgstr "Ingen brukernavn ble funnet i importfilen."
+#: ../../include/datetime.php:244
+msgid "less than a second ago"
+msgstr "for mindre enn ett sekund siden"
-#: ../../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."
+#: ../../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"
-#: ../../addon/diaspora/import_diaspora.php:140
-msgid "Import completed."
-msgstr "Import ferdig."
+#: ../../include/datetime.php:273
+msgctxt "relative_date"
+msgid "year"
+msgid_plural "years"
+msgstr[0] "år"
+msgstr[1] "år"
-#: ../../addon/diaspora/Mod_Diaspora.php:43
-msgid "Diaspora Protocol Settings updated."
-msgstr ""
+#: ../../include/datetime.php:276
+msgctxt "relative_date"
+msgid "month"
+msgid_plural "months"
+msgstr[0] "måned"
+msgstr[1] "måneder"
-#: ../../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/datetime.php:279
+msgctxt "relative_date"
+msgid "week"
+msgid_plural "weeks"
+msgstr[0] "uke"
+msgstr[1] "uker"
-#: ../../addon/diaspora/Mod_Diaspora.php:80
-msgid "Prevent your hashtags from being redirected to other sites"
-msgstr ""
+#: ../../include/datetime.php:282
+msgctxt "relative_date"
+msgid "day"
+msgid_plural "days"
+msgstr[0] "dag"
+msgstr[1] "dager"
-#: ../../addon/diaspora/Mod_Diaspora.php:84
-msgid "Sign and forward posts and comments with no existing Diaspora signature"
-msgstr ""
+#: ../../include/datetime.php:285
+msgctxt "relative_date"
+msgid "hour"
+msgid_plural "hours"
+msgstr[0] "time"
+msgstr[1] "timer"
-#: ../../addon/diaspora/Mod_Diaspora.php:89
-msgid "Followed hashtags (comma separated, do not include the #)"
-msgstr ""
+#: ../../include/datetime.php:288
+msgctxt "relative_date"
+msgid "minute"
+msgid_plural "minutes"
+msgstr[0] "minutt"
+msgstr[1] "minutter"
-#: ../../addon/diaspora/Mod_Diaspora.php:98
-msgid "Diaspora Protocol"
-msgstr ""
+#: ../../include/datetime.php:291
+msgctxt "relative_date"
+msgid "second"
+msgid_plural "seconds"
+msgstr[0] "sekund"
+msgstr[1] "sekunder"
-#: ../../addon/diaspora/Receiver.php:1632
+#: ../../include/datetime.php:520
#, php-format
-msgid "%1$s dislikes %2$s's %3$s"
-msgstr ""
+msgid "%1$s's birthday"
+msgstr "%1$s sin fødselsdag"
-#: ../../addon/diaspora/Receiver.php:2251 ../../Zotlabs/Module/Like.php:495
+#: ../../include/datetime.php:521
#, php-format
-msgid "%1$s is attending %2$s's %3$s"
-msgstr "%1$s deltar på %2$ss %3$s"
+msgid "Happy Birthday %1$s"
+msgstr "Gratulerer med dagen, %1$s"
-#: ../../addon/diaspora/Receiver.php:2253 ../../Zotlabs/Module/Like.php:497
-#, php-format
-msgid "%1$s is not attending %2$s's %3$s"
-msgstr "%1$s deltar ikke på %2$ss %3$s"
+#: ../../include/conversation.php:149 ../../include/text.php:2358
+#: ../../Zotlabs/Module/Tagger.php:71 ../../Zotlabs/Module/Subthread.php:112
+#: ../../extend/addon/hzaddons/diaspora/Receiver.php:1693
+#: ../../extend/addon/hzaddons/redphotos/redphotohelper.php:71
+msgid "photo"
+msgstr "foto"
-#: ../../addon/diaspora/Receiver.php:2255 ../../Zotlabs/Module/Like.php:499
-#, php-format
-msgid "%1$s may attend %2$s's %3$s"
-msgstr "%1$s deltar kanskje på %2$ss %3$s"
+#: ../../include/conversation.php:157 ../../Zotlabs/Module/Like.php:183
+msgid "channel"
+msgstr "kanal"
-#: ../../addon/piwik/piwik.php:85
-msgid ""
-"This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> "
-"analytics tool."
-msgstr ""
+#: ../../include/conversation.php:182 ../../include/text.php:2366
+#: ../../Zotlabs/Module/Tagger.php:81
+msgid "comment"
+msgstr "kommentar"
-#: ../../addon/piwik/piwik.php:88
+#: ../../include/conversation.php:196 ../../Zotlabs/Module/Like.php:483
+#: ../../extend/addon/hzaddons/diaspora/Receiver.php:1628
#, php-format
-msgid ""
-"If you do not want that your visits are logged this way you <a href='%s'>can "
-"set a cookie to prevent Piwik from tracking further visits of the site</a> "
-"(opt-out)."
-msgstr ""
-
-#: ../../addon/piwik/piwik.php:96
-msgid "Piwik Base URL"
-msgstr ""
-
-#: ../../addon/piwik/piwik.php:96
-msgid ""
-"Absolute path to your Piwik installation. (without protocol (http/s), with "
-"trailing slash)"
-msgstr ""
-
-#: ../../addon/piwik/piwik.php:97
-msgid "Site ID"
-msgstr ""
-
-#: ../../addon/piwik/piwik.php:98
-msgid "Show opt-out cookie link?"
-msgstr ""
-
-#: ../../addon/piwik/piwik.php:99
-msgid "Asynchronous tracking"
-msgstr ""
-
-#: ../../addon/piwik/piwik.php:100
-msgid "Enable frontend JavaScript error tracking"
-msgstr ""
-
-#: ../../addon/piwik/piwik.php:100
-msgid "This feature requires Piwik >= 2.2.0"
-msgstr ""
-
-#: ../../addon/workflow/workflow.php:222
-msgid "Workflow user."
-msgstr ""
-
-#: ../../addon/workflow/workflow.php:273
-msgid "This channel"
-msgstr ""
-
-#: ../../addon/workflow/workflow.php:286 ../../Zotlabs/Module/Locs.php:123
-msgid "Primary"
-msgstr "Primær"
-
-#: ../../addon/workflow/workflow.php:328
-msgid "Create New Workflow Item"
-msgstr ""
-
-#: ../../addon/workflow/workflow.php:547 ../../addon/workflow/workflow.php:1444
-#: ../../addon/workflow/workflow.php:1463
-msgid "Workflow"
-msgstr ""
-
-#: ../../addon/workflow/workflow.php:1432
-msgid "No Workflows Available"
-msgstr ""
-
-#: ../../addon/workflow/workflow.php:1462
-msgid "Add item to which workflow"
-msgstr ""
-
-#: ../../addon/workflow/workflow.php:1522
-#: ../../addon/workflow/workflow.php:1641
-msgid "Create Workflow Item"
-msgstr ""
-
-#: ../../addon/workflow/workflow.php:2603
-msgid "Link"
-msgstr ""
-
-#: ../../addon/workflow/workflow.php:2605
-msgid "Web link."
-msgstr ""
-
-#: ../../addon/workflow/workflow.php:2624
-#: ../../addon/workflow/workflow.php:2685 ../../Zotlabs/Module/Cdav.php:1366
-#: ../../Zotlabs/Module/Connedit.php:734
-msgid "Title"
-msgstr "Tittel"
-
-#: ../../addon/workflow/workflow.php:2626
-#: ../../addon/workflow/workflow.php:2687
-msgid "Brief description or title"
-msgstr ""
-
-#: ../../addon/workflow/workflow.php:2632 ../../Zotlabs/Widget/Notes.php:38
-#: ../../Zotlabs/Lib/Apps.php:375
-msgid "Notes"
-msgstr "Merknader"
-
-#: ../../addon/workflow/workflow.php:2634
-#: ../../addon/workflow/workflow.php:2695
-msgid "Notes and Info"
-msgstr ""
-
-#: ../../addon/workflow/workflow.php:2693
-msgid "Body"
-msgstr ""
-
-#: ../../addon/workflow/Settings/Mod_WorkflowSettings.php:101
-msgid "Workflow Settings"
-msgstr ""
-
-#: ../../addon/donate/donate.php:21
-msgid "Project Servers and Resources"
-msgstr ""
-
-#: ../../addon/donate/donate.php:22
-msgid "Project Creator and Tech Lead"
-msgstr ""
-
-#: ../../addon/donate/donate.php:49
-msgid ""
-"And the hundreds of other people and organisations who helped make the "
-"Hubzilla possible."
-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."
-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 - "
-"<strong>you do</strong>.)"
-msgstr ""
-
-#: ../../addon/donate/donate.php:54
-msgid ""
-"Help support our ground-breaking work in decentralisation, web identity, and "
-"privacy."
-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."
-msgstr ""
-
-#: ../../addon/donate/donate.php:59
-msgid "Donate"
-msgstr ""
-
-#: ../../addon/donate/donate.php:61
-msgid ""
-"Choose a project, developer, or public hub to support with a one-time "
-"donation"
-msgstr ""
-
-#: ../../addon/donate/donate.php:62
-msgid "Donate Now"
-msgstr ""
-
-#: ../../addon/donate/donate.php:63
-msgid ""
-"<strong><em>Or</em></strong> become a project sponsor (Hubzilla Project only)"
-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"
-msgstr ""
-
-#: ../../addon/donate/donate.php:65
-msgid "Sponsor"
-msgstr ""
-
-#: ../../addon/donate/donate.php:68
-msgid "Special thanks to: "
-msgstr ""
-
-#: ../../addon/likebanner/likebanner.php:51
-msgid "Your Webbie:"
-msgstr ""
-
-#: ../../addon/likebanner/likebanner.php:54
-msgid "Fontsize (px):"
-msgstr ""
-
-#: ../../addon/likebanner/likebanner.php:68
-msgid "Link:"
-msgstr ""
-
-#: ../../addon/likebanner/likebanner.php:70
-msgid "Like us on Hubzilla"
-msgstr ""
-
-#: ../../addon/likebanner/likebanner.php:72
-msgid "Embed:"
-msgstr ""
+msgid "%1$s likes %2$s's %3$s"
+msgstr "%1$s liker %2$s sin %3$s"
-#: ../../addon/opensearch/opensearch.php:26
+#: ../../include/conversation.php:198
#, php-format
-msgctxt "opensearch"
-msgid "Search %1$s (%2$s)"
-msgstr "Søk %1$s (%2$s)"
-
-#: ../../addon/opensearch/opensearch.php:28
-msgctxt "opensearch"
-msgid "$Projectname"
-msgstr "$Projectname"
-
-#: ../../addon/opensearch/opensearch.php:42 ../../Zotlabs/Module/Invite.php:238
-#: ../../Zotlabs/Module/Invite.php:507 ../../Zotlabs/Module/Invite.php:521
-#: ../../Zotlabs/Module/Home.php:87 ../../Zotlabs/Module/Home.php:95
-#: ../../Zotlabs/Lib/Enotify.php:66
-msgid "$Projectname"
-msgstr "$Projectname"
-
-#: ../../addon/opensearch/opensearch.php:43
-msgid "Search $Projectname"
-msgstr ""
-
-#: ../../addon/fuzzloc/Mod_Fuzzloc.php:22
-msgid "Fuzzloc Settings updated."
-msgstr ""
-
-#: ../../addon/fuzzloc/Mod_Fuzzloc.php:38
-msgid "Minimum offset in meters"
-msgstr ""
-
-#: ../../addon/fuzzloc/Mod_Fuzzloc.php:42
-msgid "Maximum offset in meters"
-msgstr ""
-
-#: ../../addon/fuzzloc/Mod_Fuzzloc.php:51
-msgid "Fuzzy Location"
-msgstr ""
-
-#: ../../addon/hubwall/hubwall.php:19
-msgid "Send email to all members"
+msgid "likes %1$s's %2$s"
msgstr ""
-#: ../../addon/hubwall/hubwall.php:33 ../../Zotlabs/Lib/Enotify.php:65
+#: ../../include/conversation.php:201 ../../Zotlabs/Module/Like.php:485
#, php-format
-msgid "%s Administrator"
-msgstr "%s administrator"
-
-#: ../../addon/hubwall/hubwall.php:50 ../../addon/mailtest/mailtest.php:50
-msgid "No recipients found."
-msgstr ""
+msgid "%1$s doesn't like %2$s's %3$s"
+msgstr "%1$s liker ikke %2$s sin %3$s"
-#: ../../addon/hubwall/hubwall.php:73
+#: ../../include/conversation.php:202
#, php-format
-msgid "%1$d of %2$d messages sent."
+msgid "doesn't like %1$s's %2$s"
msgstr ""
-#: ../../addon/hubwall/hubwall.php:81
-msgid "Send email to all hub members."
-msgstr ""
+#: ../../include/conversation.php:205
+#, fuzzy, php-format
+#| msgid "%1$s may attend %2$s's %3$s"
+msgid "%1$s repeated %2$s's %3$s"
+msgstr "%1$s deltar kanskje på %2$ss %3$s"
-#: ../../addon/hubwall/hubwall.php:92 ../../addon/mailtest/mailtest.php:96
-msgid "Message subject"
-msgstr ""
+#: ../../include/conversation.php:206
+#, fuzzy, php-format
+#| msgid "Visit %1$s's %2$s"
+msgid "repeated %1$s's %2$s"
+msgstr "Besøk %1$s sitt %2$s"
-#: ../../addon/hubwall/hubwall.php:93
-msgid "Sender Email address"
+#: ../../include/conversation.php:334 ../../Zotlabs/Lib/ThreadItem.php:536
+msgid "This is an unsaved preview"
msgstr ""
-#: ../../addon/hubwall/hubwall.php:94
-msgid "Test mode (only send to hub administrator)"
-msgstr ""
+#: ../../include/conversation.php:471 ../../Zotlabs/Module/Photos.php:1110
+msgctxt "title"
+msgid "Likes"
+msgstr "Liker"
-#: ../../addon/cards/Widget/Cards_categories.php:80
-#: ../../addon/articles/Widget/Articles_categories.php:80
-#: ../../include/contact_widgets.php:115 ../../include/contact_widgets.php:149
-#: ../../include/taxonomy.php:423 ../../include/taxonomy.php:505
-#: ../../include/taxonomy.php:525 ../../include/taxonomy.php:546
-#: ../../Zotlabs/Module/Cdav.php:1062 ../../Zotlabs/Storage/Browser.php:293
-#: ../../Zotlabs/Storage/Browser.php:391 ../../Zotlabs/Storage/Browser.php:406
-msgid "Categories"
-msgstr "Kategorier"
+#: ../../include/conversation.php:472 ../../Zotlabs/Module/Photos.php:1110
+msgctxt "title"
+msgid "Dislikes"
+msgstr "Liker ikke"
-#: ../../addon/cards/Widget/Cards_categories.php:83
-#: ../../addon/articles/Widget/Articles_categories.php:83
-#: ../../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"
+#: ../../include/conversation.php:473 ../../Zotlabs/Module/Photos.php:1111
+#: ../../Zotlabs/Widget/Pinned.php:73
+msgctxt "title"
+msgid "Attending"
+msgstr "Deltar"
-#: ../../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."
+#: ../../include/conversation.php:474 ../../Zotlabs/Module/Photos.php:1111
+#: ../../Zotlabs/Widget/Pinned.php:74
+msgctxt "title"
+msgid "Not attending"
+msgstr "Deltar ikke"
-#: ../../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:30 ../../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."
+#: ../../include/conversation.php:475 ../../Zotlabs/Module/Photos.php:1111
+#: ../../Zotlabs/Widget/Pinned.php:75
+msgctxt "title"
+msgid "Might attend"
+msgstr "Deltar kanskje"
-#: ../../addon/cards/Mod_Card_edit.php:129
-msgid "Edit Card"
+#: ../../include/conversation.php:477
+msgctxt "title"
+msgid "Repeats"
msgstr ""
-#: ../../addon/cards/Mod_Card_edit.php:130
-#: ../../addon/articles/Mod_Article_edit.php:128
-#: ../../include/conversation.php:736 ../../include/conversation.php:799
-#: ../../Zotlabs/Module/Tokens.php:295 ../../Zotlabs/Module/Group.php:251
-#: ../../Zotlabs/Module/Oauth.php:172 ../../Zotlabs/Module/Editwebpage.php:167
-#: ../../Zotlabs/Module/Cdav.php:1047 ../../Zotlabs/Module/Cdav.php:1381
-#: ../../Zotlabs/Module/Webpages.php:252
-#: ../../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:160
+#: ../../include/conversation.php:546
+msgid "Select"
+msgstr "Velg"
+
+#: ../../include/conversation.php:547 ../../include/conversation.php:608
+#: ../../Zotlabs/Lib/Apps.php:618 ../../Zotlabs/Lib/ThreadItem.php:183
+#: ../../Zotlabs/Lib/ThreadItem.php:544 ../../Zotlabs/Storage/Browser.php:388
#: ../../Zotlabs/Module/Editblock.php:139
-#: ../../Zotlabs/Module/Editlayout.php:138 ../../Zotlabs/Module/Photos.php:1171
-#: ../../Zotlabs/Module/Oauth2.php:193 ../../Zotlabs/Module/Thing.php:269
-#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Connedit.php:749
-#: ../../Zotlabs/Lib/Apps.php:602 ../../Zotlabs/Lib/ThreadItem.php:179
-#: ../../Zotlabs/Lib/ThreadItem.php:509 ../../Zotlabs/Storage/Browser.php:387
+#: ../../Zotlabs/Module/Editlayout.php:138 ../../Zotlabs/Module/Photos.php:1173
+#: ../../Zotlabs/Module/Oauth.php:172 ../../Zotlabs/Module/Group.php:252
+#: ../../Zotlabs/Module/Oauth2.php:193 ../../Zotlabs/Module/Connedit.php:540
+#: ../../Zotlabs/Module/Connedit.php:749
+#: ../../Zotlabs/Module/Editwebpage.php:167 ../../Zotlabs/Module/Thing.php:295
+#: ../../Zotlabs/Module/Blocks.php:160 ../../Zotlabs/Module/Webpages.php:252
+#: ../../Zotlabs/Module/Admin/Accounts.php:320
+#: ../../Zotlabs/Module/Admin/Channels.php:171
+#: ../../Zotlabs/Module/Admin/Profs.php:177 ../../Zotlabs/Module/Tokens.php:295
+#: ../../Zotlabs/Module/Permcats.php:261 ../../Zotlabs/Module/Cdav.php:1047
+#: ../../Zotlabs/Module/Cdav.php:1385 ../../Zotlabs/Module/Contactedit.php:651
+#: ../../extend/addon/hzaddons/articles/Mod_Article_edit.php:128
+#: ../../extend/addon/hzaddons/cards/Mod_Card_edit.php:130
msgid "Delete"
msgstr "Slett"
-#: ../../addon/cards/cards.php:48 ../../addon/cards/cards.php:160
-#: ../../addon/cards/Mod_Cards.php:209 ../../Zotlabs/Lib/Apps.php:331
-msgid "Cards"
-msgstr ""
-
-#: ../../addon/cards/cards.php:51
-msgid "View Cards"
-msgstr ""
-
-#: ../../addon/cards/cards.php:82 ../../addon/articles/articles.php:83
-#: ../../include/conversation.php:852
-msgid "View in context"
-msgstr "Vis i sammenheng"
+#: ../../include/conversation.php:553 ../../Zotlabs/Lib/ThreadItem.php:287
+msgid "Toggle Star Status"
+msgstr "Skru av og på stjernestatus"
-#: ../../addon/cards/Mod_Cards.php:115
-msgid "Add Card"
-msgstr ""
+#: ../../include/conversation.php:559
+msgid "Private Message"
+msgstr "Privat melding"
-#: ../../addon/cards/Mod_Cards.php:116
-#: ../../addon/articles/Mod_Articles.php:120 ../../include/text.php:1171
-#: ../../include/text.php:1183 ../../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 "Lagre"
+#: ../../include/conversation.php:568 ../../Zotlabs/Lib/ThreadItem.php:297
+#: ../../Zotlabs/Widget/Pinned.php:84
+msgid "Message signature validated"
+msgstr "Innleggets signatur er bekreftet"
-#: ../../addon/notifyadmin/notifyadmin.php:34
-msgid "New registration"
-msgstr ""
+#: ../../include/conversation.php:569 ../../Zotlabs/Lib/ThreadItem.php:298
+#: ../../Zotlabs/Widget/Pinned.php:85
+msgid "Message signature incorrect"
+msgstr "Innleggets signatur er feil"
-#: ../../addon/notifyadmin/notifyadmin.php:40
-#: ../../Zotlabs/Module/Invite.php:265
-#, php-format
-msgid "%s : Message delivery failed."
-msgstr "%s : meldingslevering feilet."
+#: ../../include/conversation.php:607 ../../Zotlabs/Lib/ThreadItem.php:543
+#: ../../Zotlabs/Module/Connections.php:358
+#: ../../Zotlabs/Module/Connections.php:409
+#: ../../Zotlabs/Module/Admin/Accounts.php:318
+msgid "Approve"
+msgstr "Godkjenn"
-#: ../../addon/notifyadmin/notifyadmin.php:42
+#: ../../include/conversation.php:613
#, php-format
-msgid "Message sent to %s. New account registration: %s"
-msgstr ""
-
-#: ../../addon/flashcards/Mod_Flashcards.php:225
-msgid "Not allowed."
-msgstr ""
-
-#: ../../addon/flashcards/Mod_Flashcards.php:261
-#: ../../include/acl_selectors.php:154 ../../Zotlabs/Module/Chat.php:240
-#: ../../Zotlabs/Module/Filestorage.php:195 ../../Zotlabs/Module/Photos.php:671
-#: ../../Zotlabs/Module/Photos.php:1042 ../../Zotlabs/Module/Thing.php:321
-#: ../../Zotlabs/Module/Thing.php:374
-msgid "Permissions"
-msgstr "Tillatelser"
-
-#: ../../addon/flashcards/Mod_Flashcards.php:268
-#: ../../Zotlabs/Module/Filestorage.php:202
-msgid "Set/edit permissions"
-msgstr "Angi/endre tillatelser"
-
-#: ../../addon/flashcards/Mod_Flashcards.php:291
-#: ../../addon/flashcards/Mod_Flashcards.php:292 ../../include/items.php:3876
-#: ../../Zotlabs/Module/Filestorage.php:29
-#: ../../Zotlabs/Module/Admin/Themes.php:72
-#: ../../Zotlabs/Module/Admin/Addons.php:263
-#: ../../Zotlabs/Module/Viewsrc.php:25 ../../Zotlabs/Module/Display.php:53
-#: ../../Zotlabs/Module/Display.php:114 ../../Zotlabs/Module/Display.php:392
-#: ../../Zotlabs/Module/Admin.php:61 ../../Zotlabs/Module/Thing.php:96
-msgid "Item not found."
-msgstr "Elementet ble ikke funnet."
-
-#: ../../addon/libertree/libertree.php:43
-msgid "Post to Libertree"
-msgstr ""
-
-#: ../../addon/libertree/Mod_Libertree.php:25
-msgid "Libertree Crosspost Connector Settings saved."
-msgstr ""
-
-#: ../../addon/libertree/Mod_Libertree.php:49
-msgid "Libertree API token"
-msgstr ""
-
-#: ../../addon/libertree/Mod_Libertree.php:53
-msgid "Libertree site URL"
-msgstr ""
-
-#: ../../addon/libertree/Mod_Libertree.php:57
-msgid "Post to Libertree by default"
-msgstr ""
-
-#: ../../addon/libertree/Mod_Libertree.php:65
-msgid "Libertree Crosspost Connector"
-msgstr ""
-
-#: ../../addon/randpost/randpost.php:99
-msgid "You're welcome."
-msgstr ""
-
-#: ../../addon/randpost/randpost.php:100
-msgid "Ah shucks..."
-msgstr ""
-
-#: ../../addon/randpost/randpost.php:101
-msgid "Don't mention it."
-msgstr ""
-
-#: ../../addon/randpost/randpost.php:102
-msgid "&lt;blush&gt;"
-msgstr ""
-
-#: ../../addon/buglink/buglink.php:16 ../../Zotlabs/Lib/Apps.php:333
-msgid "Report Bug"
-msgstr ""
-
-#: ../../addon/logrot/logrot.php:36
-msgid "Logfile archive directory"
-msgstr ""
+msgid "View %s's profile @ %s"
+msgstr "Vis %s sin profile @ %s"
-#: ../../addon/logrot/logrot.php:36
-msgid "Directory to store rotated logs"
-msgstr ""
+#: ../../include/conversation.php:635
+msgid "Categories:"
+msgstr "Kategorier:"
-#: ../../addon/logrot/logrot.php:37
-msgid "Logfile size in bytes before rotating"
-msgstr ""
+#: ../../include/conversation.php:636
+msgid "Filed under:"
+msgstr "Sortert under:"
-#: ../../addon/logrot/logrot.php:38
-msgid "Number of logfiles to retain"
-msgstr ""
+#: ../../include/conversation.php:642 ../../Zotlabs/Lib/ThreadItem.php:455
+#: ../../Zotlabs/Widget/Pinned.php:128
+#, php-format
+msgid "from %s"
+msgstr "fra %s"
-#: ../../addon/testdrive/testdrive.php:104
+#: ../../include/conversation.php:645 ../../Zotlabs/Lib/ThreadItem.php:458
+#: ../../Zotlabs/Widget/Pinned.php:131
#, php-format
-msgid "Your account on %s will expire in a few days."
-msgstr ""
+msgid "last edited: %s"
+msgstr "sist endret: %s"
-#: ../../addon/testdrive/testdrive.php:105
-msgid "Your test account is about to expire."
-msgstr ""
+#: ../../include/conversation.php:646 ../../Zotlabs/Lib/ThreadItem.php:459
+#: ../../Zotlabs/Widget/Pinned.php:132
+#, php-format
+msgid "Expires: %s"
+msgstr "Utløper: %s"
-#: ../../addon/hideaside/Mod_Hideaside.php:28
-msgid "Hide Aside App"
-msgstr ""
+#: ../../include/conversation.php:661
+#: ../../extend/addon/hzaddons/articles/articles.php:83
+#: ../../extend/addon/hzaddons/cards/cards.php:82
+msgid "View in context"
+msgstr "Vis i sammenheng"
-#: ../../addon/hideaside/Mod_Hideaside.php:29
-msgid "Fade out aside areas after a while when using endless scroll"
-msgstr ""
+#: ../../include/conversation.php:663 ../../Zotlabs/Lib/ThreadItem.php:537
+#: ../../Zotlabs/Module/Photos.php:1077
+msgid "Please wait"
+msgstr "Vennligst vent"
-#: ../../addon/skeleton/Mod_Skeleton.php:38
-msgid "Some setting"
-msgstr ""
+#: ../../include/conversation.php:764
+msgid "remove"
+msgstr "fjern"
-#: ../../addon/skeleton/Mod_Skeleton.php:38
-msgid "A setting"
-msgstr ""
+#: ../../include/conversation.php:768
+msgid "Loading..."
+msgstr "Laster..."
-#: ../../addon/skeleton/Mod_Skeleton.php:46
-msgid "Skeleton Settings"
-msgstr ""
+#: ../../include/conversation.php:769 ../../Zotlabs/Lib/ThreadItem.php:314
+msgid "Conversation Features"
+msgstr "Samtaleinnstillinger"
-#: ../../addon/socialauth/Mod_SocialAuth.php:106
-#: ../../addon/socialauth/Mod_SocialAuth.php:179
-msgid "Network error"
-msgstr ""
+#: ../../include/conversation.php:770
+msgid "Delete Selected Items"
+msgstr "Slett valgte elementer"
-#: ../../addon/socialauth/Mod_SocialAuth.php:110
-#: ../../addon/socialauth/Mod_SocialAuth.php:183
-msgid "API error"
-msgstr ""
+#: ../../include/conversation.php:806
+msgid "View Source"
+msgstr "Vis kilde"
-#: ../../addon/socialauth/Mod_SocialAuth.php:114
-#: ../../addon/socialauth/Mod_SocialAuth.php:187
-msgid "Unknown issue"
-msgstr ""
+#: ../../include/conversation.php:816
+msgid "Follow Thread"
+msgstr "Følg tråd"
-#: ../../addon/socialauth/Mod_SocialAuth.php:152
-msgid "Unable to retrieve email address from remote identity provider"
-msgstr ""
+#: ../../include/conversation.php:825
+msgid "Unfollow Thread"
+msgstr "Ikke følg tråd"
-#: ../../addon/socialauth/Mod_SocialAuth.php:171
-msgid "Unable to login using email address "
-msgstr ""
+#: ../../include/conversation.php:914 ../../Zotlabs/Module/Connedit.php:501
+msgid "Recent Activity"
+msgstr "Nylig aktivitet"
-#: ../../addon/socialauth/Mod_SocialAuth.php:211
-msgid "Social Authentication using your social media account"
-msgstr ""
+#: ../../include/conversation.php:926 ../../include/channel.php:1625
+#: ../../include/connections.php:150 ../../Zotlabs/Module/Suggest.php:69
+#: ../../Zotlabs/Module/Directory.php:371
+#: ../../Zotlabs/Module/Connections.php:365
+#: ../../Zotlabs/Widget/Suggestions.php:51 ../../Zotlabs/Widget/Follow.php:37
+msgid "Connect"
+msgstr "Koble"
-#: ../../addon/socialauth/Mod_SocialAuth.php:215
-msgid ""
-"This app enables one or more social provider sign-in buttons on the login "
-"page."
-msgstr ""
+#: ../../include/conversation.php:938
+msgid "Edit Connection"
+msgstr "Endre forbindelse"
-#: ../../addon/socialauth/Mod_SocialAuth.php:233
-msgid "Add an identity provider"
-msgstr ""
+#: ../../include/conversation.php:1006 ../../include/cdav.php:158
+#: ../../include/cdav.php:159 ../../include/cdav.php:167
+#: ../../Zotlabs/Lib/Apps.php:1168 ../../Zotlabs/Lib/Apps.php:1252
+#: ../../Zotlabs/Lib/Activity.php:1684 ../../Zotlabs/Module/Photos.php:788
+#: ../../Zotlabs/Module/Photos.php:1246
+#: ../../Zotlabs/Module/Embedphotos.php:177 ../../Zotlabs/Widget/Pinned.php:257
+#: ../../Zotlabs/Widget/Album.php:90 ../../Zotlabs/Widget/Portfolio.php:99
+msgid "Unknown"
+msgstr "Ukjent"
-#: ../../addon/socialauth/Mod_SocialAuth.php:260
+#: ../../include/conversation.php:1008
#, fuzzy
-msgid "Enable "
-msgstr "Skru på"
-
-#: ../../addon/socialauth/Mod_SocialAuth.php:267
-msgid "Key"
-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"
-msgstr ""
-
-#: ../../addon/socialauth/Mod_SocialAuth.php:272
-msgid "Secret"
-msgstr ""
-
-#: ../../addon/socialauth/Mod_SocialAuth.php:308
-msgid "Add a custom provider"
-msgstr ""
-
-#: ../../addon/socialauth/Mod_SocialAuth.php:328
-msgid "Remove an identity provider"
-msgstr ""
-
-#: ../../addon/socialauth/Mod_SocialAuth.php:338
-msgid "Social authentication"
-msgstr ""
-
-#: ../../addon/socialauth/Mod_SocialAuth.php:380
-msgid "Error while saving provider settings"
-msgstr ""
+#| msgid "Remove this file"
+msgid "Approve this item"
+msgstr "Fjern denne filen"
-#: ../../addon/socialauth/Mod_SocialAuth.php:403
-msgid "Custom provider already exists"
-msgstr ""
+#: ../../include/conversation.php:1008
+#, fuzzy
+#| msgid "Delete this item?"
+msgid "Delete this item"
+msgstr "Slett dette elementet?"
-#: ../../addon/socialauth/Mod_SocialAuth.php:420
-msgid "Social authentication settings saved."
-msgstr ""
+#: ../../include/conversation.php:1062
+#, php-format
+msgid "%s likes this."
+msgstr "%s liker dette."
-#: ../../addon/nsfw/nsfw.php:153
-msgid "Possible adult content"
-msgstr ""
+#: ../../include/conversation.php:1062
+#, php-format
+msgid "%s doesn't like this."
+msgstr "%s liker ikke dette."
-#: ../../addon/nsfw/nsfw.php:168
+#: ../../include/conversation.php:1066
#, php-format
-msgid "%s - view"
-msgstr ""
+msgid "<span %1$s>%2$d people</span> like this."
+msgid_plural "<span %1$s>%2$d people</span> like this."
+msgstr[0] "<span %1$s>%2$d person</span> liker dette."
+msgstr[1] "<span %1$s>%2$d personer</span> liker dette."
-#: ../../addon/nsfw/Mod_Nsfw.php:22
-msgid "NSFW Settings saved."
-msgstr ""
+#: ../../include/conversation.php:1068
+#, php-format
+msgid "<span %1$s>%2$d people</span> don't like this."
+msgid_plural "<span %1$s>%2$d people</span> don't like this."
+msgstr[0] "<span %1$s>%2$d person</span> liker ikke dette."
+msgstr[1] "<span %1$s>%2$d personer</span> liker ikke dette."
-#: ../../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/conversation.php:1074
+msgid "and"
+msgstr "og"
-#: ../../addon/nsfw/Mod_Nsfw.php:47
-msgid "Comma separated list of keywords to hide"
-msgstr ""
+#: ../../include/conversation.php:1077
+#, 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"
-#: ../../addon/nsfw/Mod_Nsfw.php:47
-msgid "Word, /regular-expression/, lang=xx, lang!=xx"
-msgstr ""
+#: ../../include/conversation.php:1078
+#, php-format
+msgid "%s like this."
+msgstr "%s liker dette."
-#: ../../addon/nsfw/Mod_Nsfw.php:56
-msgid "NSFW"
-msgstr ""
+#: ../../include/conversation.php:1078
+#, php-format
+msgid "%s don't like this."
+msgstr "%s liker ikke dette."
-#: ../../addon/upload_limits/upload_limits.php:25
-msgid "Show Upload Limits"
-msgstr ""
+#: ../../include/conversation.php:1129
+#: ../../extend/addon/hzaddons/hsse/hsse.php:82
+msgid "Set your location"
+msgstr "Angi din plassering"
-#: ../../addon/upload_limits/upload_limits.php:27
-msgid "Hubzilla configured maximum size: "
-msgstr ""
+#: ../../include/conversation.php:1130
+#: ../../extend/addon/hzaddons/hsse/hsse.php:83
+msgid "Clear browser location"
+msgstr "Fjern nettleserplassering"
-#: ../../addon/upload_limits/upload_limits.php:28
-msgid "PHP upload_max_filesize: "
-msgstr ""
+#: ../../include/conversation.php:1142 ../../Zotlabs/Module/Editblock.php:116
+#: ../../Zotlabs/Module/Chat.php:219 ../../Zotlabs/Module/Editwebpage.php:143
+#: ../../extend/addon/hzaddons/articles/Mod_Article_edit.php:99
+#: ../../extend/addon/hzaddons/hsse/hsse.php:95
+#: ../../extend/addon/hzaddons/cards/Mod_Card_edit.php:101
+msgid "Insert web link"
+msgstr "Sett inn web-lenke"
-#: ../../addon/upload_limits/upload_limits.php:29
-msgid "PHP post_max_size (must be larger than upload_max_filesize): "
-msgstr ""
+#: ../../include/conversation.php:1146
+#: ../../extend/addon/hzaddons/hsse/hsse.php:99
+msgid "Embed (existing) photo from your photo albums"
+msgstr "Sett inn (eksisterende) bilde fra fotoalbumene dine"
-#: ../../addon/tictac/tictac.php:21
-msgid "Three Dimensional Tic-Tac-Toe"
-msgstr ""
+#: ../../include/conversation.php:1179 ../../Zotlabs/Module/Chat.php:217
+#: ../../extend/addon/hzaddons/hsse/hsse.php:134
+msgid "Please enter a link URL:"
+msgstr "Vennligst skriv inn en lenke URL:"
-#: ../../addon/tictac/tictac.php:54
-msgid "3D Tic-Tac-Toe"
-msgstr ""
+#: ../../include/conversation.php:1180
+#: ../../extend/addon/hzaddons/hsse/hsse.php:135
+msgid "Tag term:"
+msgstr "Merkelapp:"
-#: ../../addon/tictac/tictac.php:59
-msgid "New game"
-msgstr ""
+#: ../../include/conversation.php:1181
+#: ../../extend/addon/hzaddons/hsse/hsse.php:136
+msgid "Where are you right now?"
+msgstr "Hvor er du akkurat nå?"
-#: ../../addon/tictac/tictac.php:60
-msgid "New game with handicap"
-msgstr ""
+#: ../../include/conversation.php:1184 ../../Zotlabs/Module/Cover_photo.php:388
+#: ../../Zotlabs/Module/Profile_photo.php:555
+#: ../../extend/addon/hzaddons/hsse/hsse.php:139
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:400
+msgid "Choose images to embed"
+msgstr "Velg bilder"
-#: ../../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/conversation.php:1185 ../../Zotlabs/Module/Cover_photo.php:389
+#: ../../Zotlabs/Module/Profile_photo.php:556
+#: ../../extend/addon/hzaddons/hsse/hsse.php:140
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:401
+msgid "Choose an album"
+msgstr "Velg et album"
-#: ../../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/conversation.php:1186
+#: ../../extend/addon/hzaddons/hsse/hsse.php:141
+msgid "Choose a different album..."
+msgstr "Velg et annet album..."
-#: ../../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/conversation.php:1187 ../../Zotlabs/Module/Cover_photo.php:391
+#: ../../Zotlabs/Module/Profile_photo.php:558
+#: ../../extend/addon/hzaddons/hsse/hsse.php:142
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:403
+msgid "Error getting album list"
msgstr ""
-#: ../../addon/tictac/tictac.php:183
-msgid "You go first..."
+#: ../../include/conversation.php:1188 ../../Zotlabs/Module/Cover_photo.php:392
+#: ../../Zotlabs/Module/Profile_photo.php:559
+#: ../../extend/addon/hzaddons/hsse/hsse.php:143
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:404
+msgid "Error getting photo link"
msgstr ""
-#: ../../addon/tictac/tictac.php:188
-msgid "I'm going first this time..."
+#: ../../include/conversation.php:1189 ../../Zotlabs/Module/Cover_photo.php:393
+#: ../../Zotlabs/Module/Profile_photo.php:560
+#: ../../extend/addon/hzaddons/hsse/hsse.php:144
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:405
+msgid "Error getting album"
msgstr ""
-#: ../../addon/tictac/tictac.php:194
-msgid "You won!"
+#: ../../include/conversation.php:1190
+#: ../../extend/addon/hzaddons/hsse/hsse.php:145
+msgid "Comments enabled"
msgstr ""
-#: ../../addon/tictac/tictac.php:200 ../../addon/tictac/tictac.php:225
-msgid "\"Cat\" game!"
+#: ../../include/conversation.php:1191
+#: ../../extend/addon/hzaddons/hsse/hsse.php:146
+msgid "Comments disabled"
msgstr ""
-#: ../../addon/tictac/tictac.php:223
-msgid "I won!"
-msgstr ""
+#: ../../include/conversation.php:1192
+#, fuzzy
+#| msgid "Profile deleted."
+msgid "Confirm delete"
+msgstr "Profilen er slettet."
-#: ../../addon/mailtest/mailtest.php:19
-msgid "Send test email"
-msgstr ""
+#: ../../include/conversation.php:1209 ../../Zotlabs/Lib/ThreadItem.php:878
+#: ../../Zotlabs/Module/Photos.php:1096 ../../Zotlabs/Module/Webpages.php:257
+#: ../../extend/addon/hzaddons/hsse/hsse.php:153
+msgid "Preview"
+msgstr "Forhåndsvisning"
-#: ../../addon/mailtest/mailtest.php:66
-msgid "Mail sent."
-msgstr ""
+#: ../../include/conversation.php:1242 ../../Zotlabs/Lib/ThreadItem.php:344
+#: ../../Zotlabs/Module/Photos.php:1076 ../../Zotlabs/Module/Layouts.php:192
+#: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Webpages.php:251
+#: ../../Zotlabs/Widget/Cdav.php:142
+#: ../../extend/addon/hzaddons/hsse/hsse.php:186
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:304
+msgid "Share"
+msgstr "Del"
-#: ../../addon/mailtest/mailtest.php:68
-msgid "Sending of mail failed."
-msgstr ""
+#: ../../include/conversation.php:1251
+#: ../../extend/addon/hzaddons/hsse/hsse.php:195
+msgid "Page link name"
+msgstr "Sidens lenkenavn"
-#: ../../addon/mailtest/mailtest.php:77
-msgid "Mail Test"
-msgstr ""
+#: ../../include/conversation.php:1254
+#: ../../extend/addon/hzaddons/hsse/hsse.php:198
+msgid "Post as"
+msgstr "Lag innlegg som"
-#: ../../addon/ljpost/Mod_Ljpost.php:53
-msgid "Livejournal username"
-msgstr ""
+#: ../../include/conversation.php:1256 ../../Zotlabs/Lib/ThreadItem.php:869
+#: ../../extend/addon/hzaddons/hsse/hsse.php:200
+msgid "Bold"
+msgstr "Uthevet"
-#: ../../addon/ljpost/Mod_Ljpost.php:57
-msgid "Livejournal password"
-msgstr ""
+#: ../../include/conversation.php:1257 ../../Zotlabs/Lib/ThreadItem.php:870
+#: ../../extend/addon/hzaddons/hsse/hsse.php:201
+msgid "Italic"
+msgstr "Kursiv"
-#: ../../addon/ljpost/Mod_Ljpost.php:61
-msgid "Post to Livejournal by default"
-msgstr ""
+#: ../../include/conversation.php:1258 ../../Zotlabs/Lib/ThreadItem.php:871
+#: ../../extend/addon/hzaddons/hsse/hsse.php:202
+msgid "Underline"
+msgstr "Understreket"
-#: ../../addon/ljpost/Mod_Ljpost.php:65
-msgid "Send wall-to-wall posts to Livejournal"
-msgstr ""
+#: ../../include/conversation.php:1259 ../../Zotlabs/Lib/ThreadItem.php:872
+#: ../../extend/addon/hzaddons/hsse/hsse.php:203
+msgid "Quote"
+msgstr "Sitat"
-#: ../../addon/ljpost/Mod_Ljpost.php:77
-msgid "Livejournal Crosspost Connector"
-msgstr ""
+#: ../../include/conversation.php:1260 ../../Zotlabs/Lib/ThreadItem.php:873
+#: ../../extend/addon/hzaddons/hsse/hsse.php:204
+msgid "Code"
+msgstr "Kode"
-#: ../../addon/ljpost/ljpost.php:49
-msgid "Post to Livejournal"
-msgstr ""
+#: ../../include/conversation.php:1261 ../../Zotlabs/Lib/ThreadItem.php:875
+#: ../../extend/addon/hzaddons/hsse/hsse.php:205
+msgid "Attach/Upload file"
+msgstr "Last opp fil/vedlegg"
-#: ../../addon/ljpost/ljpost.php:127
-msgid "Posted by"
+#: ../../include/conversation.php:1264
+#: ../../extend/addon/hzaddons/hsse/hsse.php:208
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:397
+msgid "Embed an image from your albums"
msgstr ""
-#: ../../addon/mdpost/mdpost.php:42
-msgid "Use markdown for editing posts"
-msgstr ""
+#: ../../include/conversation.php:1265 ../../include/conversation.php:1320
+#: ../../Zotlabs/Storage/Browser.php:387 ../../Zotlabs/Module/Editblock.php:141
+#: ../../Zotlabs/Module/Editlayout.php:140 ../../Zotlabs/Module/Oauth.php:110
+#: ../../Zotlabs/Module/Oauth.php:136 ../../Zotlabs/Module/Editpost.php:114
+#: ../../Zotlabs/Module/Oauth2.php:115 ../../Zotlabs/Module/Oauth2.php:143
+#: ../../Zotlabs/Module/Cover_photo.php:386 ../../Zotlabs/Module/Tagrm.php:15
+#: ../../Zotlabs/Module/Tagrm.php:138 ../../Zotlabs/Module/Connedit.php:750
+#: ../../Zotlabs/Module/Editwebpage.php:169 ../../Zotlabs/Module/Filer.php:56
+#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88
+#: ../../Zotlabs/Module/Profile_photo.php:553
+#: ../../Zotlabs/Module/Admin/Addons.php:431 ../../Zotlabs/Module/Cdav.php:1049
+#: ../../Zotlabs/Module/Cdav.php:1386
+#: ../../extend/addon/hzaddons/articles/Mod_Article_edit.php:130
+#: ../../extend/addon/hzaddons/hsse/hsse.php:209
+#: ../../extend/addon/hzaddons/hsse/hsse.php:258
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:365
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:398
+#: ../../extend/addon/hzaddons/cards/Mod_Card_edit.php:132
+msgid "Cancel"
+msgstr "Avbryt"
-#: ../../addon/articles/Mod_Article_edit.php:127
-msgid "Edit Article"
-msgstr ""
+#: ../../include/conversation.php:1266 ../../include/conversation.php:1319
+#: ../../Zotlabs/Module/Cover_photo.php:387
+#: ../../Zotlabs/Module/Profile_photo.php:554
+#: ../../extend/addon/hzaddons/hsse/hsse.php:210
+#: ../../extend/addon/hzaddons/hsse/hsse.php:257
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:399
+msgid "OK"
+msgstr "OK"
-#: ../../addon/articles/articles.php:48 ../../addon/articles/articles.php:160
-#: ../../addon/articles/Mod_Articles.php:228 ../../Zotlabs/Lib/Apps.php:330
-msgid "Articles"
-msgstr ""
+#: ../../include/conversation.php:1268
+#: ../../extend/addon/hzaddons/hsse/hsse.php:212
+msgid "Toggle voting"
+msgstr "Skru av eller på stemming"
-#: ../../addon/articles/articles.php:51
-msgid "View Articles"
-msgstr ""
+#: ../../include/conversation.php:1269
+msgid "Toggle poll"
+msgstr "Spørreskjema (på/av)"
-#: ../../addon/articles/Mod_Articles.php:119
-msgid "Add Article"
-msgstr ""
+#: ../../include/conversation.php:1270
+msgid "Option"
+msgstr "Valg"
-#: ../../addon/hzfiles/hzfiles.php:81
-msgid "Hubzilla File Storage Import"
-msgstr ""
+#: ../../include/conversation.php:1271
+msgid "Add option"
+msgstr "Legg til valg"
-#: ../../addon/hzfiles/hzfiles.php:82
-msgid "This will import all your cloud files from another server."
-msgstr ""
+#: ../../include/conversation.php:1272
+msgid "Minutes"
+msgstr "Minutter"
-#: ../../addon/hzfiles/hzfiles.php:83
-msgid "Hubzilla Server base URL"
-msgstr ""
+#: ../../include/conversation.php:1272
+#, fuzzy
+msgid "Hours"
+msgstr "timer"
-#: ../../addon/authchoose/Mod_Authchoose.php:30
-msgid ""
-"Allow magic authentication only to websites of your immediate connections"
-msgstr ""
+#: ../../include/conversation.php:1272
+#, fuzzy
+msgid "Days"
+msgstr "dager"
-#: ../../addon/authchoose/Mod_Authchoose.php:36
-msgid "Authchoose"
-msgstr ""
+#: ../../include/conversation.php:1273
+msgid "Allow multiple answers"
+msgstr "Tillat flere svar"
-#: ../../addon/pageheader/Mod_Pageheader.php:22
-msgid "pageheader Settings saved."
-msgstr ""
+#: ../../include/conversation.php:1273
+#: ../../view/theme/redbasic/php/config.php:201
+#: ../../view/theme/redbasic/php/config.php:202
+#: ../../view/theme/redbasic/php/config.php:203
+#: ../../view/theme/redbasic/php/config.php:215 ../../boot.php:1765
+#: ../../Zotlabs/Lib/Libzotdir.php:166 ../../Zotlabs/Lib/Libzotdir.php:167
+#: ../../Zotlabs/Lib/Libzotdir.php:169 ../../Zotlabs/Storage/Browser.php:310
+#: ../../Zotlabs/Storage/Browser.php:311 ../../Zotlabs/Storage/Browser.php:312
+#: ../../Zotlabs/Storage/Browser.php:393 ../../Zotlabs/Storage/Browser.php:395
+#: ../../Zotlabs/Storage/Browser.php:559 ../../Zotlabs/Module/Menu.php:163
+#: ../../Zotlabs/Module/Menu.php:222 ../../Zotlabs/Module/Api.php:101
+#: ../../Zotlabs/Module/Photos.php:666 ../../Zotlabs/Module/Profiles.php:674
+#: ../../Zotlabs/Module/Profiles.php:684 ../../Zotlabs/Module/Profiles.php:692
+#: ../../Zotlabs/Module/Profiles.php:696 ../../Zotlabs/Module/Sources.php:122
+#: ../../Zotlabs/Module/Sources.php:157 ../../Zotlabs/Module/Group.php:138
+#: ../../Zotlabs/Module/Group.php:139 ../../Zotlabs/Module/Group.php:148
+#: ../../Zotlabs/Module/Group.php:250 ../../Zotlabs/Module/Group.php:302
+#: ../../Zotlabs/Module/Group.php:303 ../../Zotlabs/Module/Connedit.php:622
+#: ../../Zotlabs/Module/Import.php:611 ../../Zotlabs/Module/Import.php:615
+#: ../../Zotlabs/Module/Import.php:616 ../../Zotlabs/Module/Register.php:515
+#: ../../Zotlabs/Module/Defperms.php:195
+#: ../../Zotlabs/Module/Filestorage.php:203
+#: ../../Zotlabs/Module/Filestorage.php:211
+#: ../../Zotlabs/Module/Admin/Site.php:306 ../../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/Settings/Channel.php:225
+#: ../../Zotlabs/Module/Settings/Multifactor.php:82
+#: ../../Zotlabs/Module/Settings/Privacy.php:133
+#: ../../Zotlabs/Module/Settings/Privacy.php:134
+#: ../../Zotlabs/Module/Settings/Privacy.php:135
+#: ../../Zotlabs/Module/Settings/Privacy.php:136
+#: ../../Zotlabs/Module/Settings/Privacy.php:137
+#: ../../Zotlabs/Module/Settings/Privacy.php:138
+#: ../../Zotlabs/Module/Settings/Display.php:87
+#: ../../Zotlabs/Module/Contactedit.php:270
+#: ../../Zotlabs/Module/Contactedit.php:315
+#: ../../extend/addon/hzaddons/cart/cart.php:1418
+#: ../../extend/addon/hzaddons/cart/submodules/orderoptions.php:72
+#: ../../extend/addon/hzaddons/cart/submodules/orderoptions.php:338
+#: ../../extend/addon/hzaddons/cart/submodules/orderoptions.php:362
+#: ../../extend/addon/hzaddons/cart/submodules/orderoptions.php:438
+#: ../../extend/addon/hzaddons/cart/submodules/orderoptions.php:462
+#: ../../extend/addon/hzaddons/cart/submodules/subscriptions.php:153
+#: ../../extend/addon/hzaddons/cart/submodules/subscriptions.php:425
+#: ../../extend/addon/hzaddons/cart/submodules/manualcat.php:63
+#: ../../extend/addon/hzaddons/cart/submodules/manualcat.php:254
+#: ../../extend/addon/hzaddons/cart/submodules/manualcat.php:258
+#: ../../extend/addon/hzaddons/cart/submodules/paypalbuttonV2.php:88
+#: ../../extend/addon/hzaddons/cart/submodules/paypalbuttonV2.php:98
+#: ../../extend/addon/hzaddons/cart/submodules/paypalbutton.php:87
+#: ../../extend/addon/hzaddons/cart/submodules/paypalbutton.php:95
+#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:67
+#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:651
+#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:655
+#: ../../extend/addon/hzaddons/cart/Settings/Cart.php:61
+#: ../../extend/addon/hzaddons/cart/Settings/Cart.php:73
+#: ../../extend/addon/hzaddons/socialauth/Mod_SocialAuth.php:218
+#: ../../extend/addon/hzaddons/pumpio/Mod_Pumpio.php:92
+#: ../../extend/addon/hzaddons/pumpio/Mod_Pumpio.php:96
+#: ../../extend/addon/hzaddons/pumpio/Mod_Pumpio.php:100
+#: ../../extend/addon/hzaddons/statusnet/Mod_Statusnet.php:258
+#: ../../extend/addon/hzaddons/statusnet/Mod_Statusnet.php:280
+#: ../../extend/addon/hzaddons/statusnet/Mod_Statusnet.php:289
+#: ../../extend/addon/hzaddons/ljpost/Mod_Ljpost.php:61
+#: ../../extend/addon/hzaddons/ljpost/Mod_Ljpost.php:65
+#: ../../extend/addon/hzaddons/ljpost/Mod_Ljpost.php:69
+#: ../../extend/addon/hzaddons/nofed/Mod_Nofed.php:40
+#: ../../extend/addon/hzaddons/twitter/Mod_Twitter.php:160
+#: ../../extend/addon/hzaddons/twitter/Mod_Twitter.php:169
+#: ../../extend/addon/hzaddons/diaspora/Mod_Diaspora.php:70
+#: ../../extend/addon/hzaddons/dwpost/Mod_Dwpost.php:59
+#: ../../extend/addon/hzaddons/dwpost/Mod_Dwpost.php:63
+#: ../../extend/addon/hzaddons/content_import/Mod_content_import.php:135
+#: ../../extend/addon/hzaddons/content_import/Mod_content_import.php:136
+#: ../../extend/addon/hzaddons/rtof/Mod_Rtof.php:47
+#: ../../extend/addon/hzaddons/redred/Mod_Redred.php:61
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:230
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:231
+#: ../../extend/addon/hzaddons/libertree/Mod_Libertree.php:57
+#: ../../extend/addon/hzaddons/pubcrawl/Mod_Pubcrawl.php:45
+#: ../../extend/addon/hzaddons/ijpost/Mod_Ijpost.php:61
+#: ../../extend/addon/hzaddons/wppost/Mod_Wppost.php:84
+#: ../../extend/addon/hzaddons/wppost/Mod_Wppost.php:88
+#: ../../extend/addon/hzaddons/wppost/Mod_Wppost.php:92
+msgid "No"
+msgstr "Nei"
-#: ../../addon/pageheader/Mod_Pageheader.php:41
-msgid "Message to display on every page on this server"
-msgstr ""
+#: ../../include/conversation.php:1273
+#: ../../view/theme/redbasic/php/config.php:201
+#: ../../view/theme/redbasic/php/config.php:202
+#: ../../view/theme/redbasic/php/config.php:203
+#: ../../view/theme/redbasic/php/config.php:215 ../../boot.php:1765
+#: ../../Zotlabs/Lib/Libzotdir.php:166 ../../Zotlabs/Lib/Libzotdir.php:167
+#: ../../Zotlabs/Lib/Libzotdir.php:169 ../../Zotlabs/Storage/Browser.php:310
+#: ../../Zotlabs/Storage/Browser.php:311 ../../Zotlabs/Storage/Browser.php:312
+#: ../../Zotlabs/Storage/Browser.php:393 ../../Zotlabs/Storage/Browser.php:395
+#: ../../Zotlabs/Storage/Browser.php:559 ../../Zotlabs/Module/Menu.php:163
+#: ../../Zotlabs/Module/Menu.php:222 ../../Zotlabs/Module/Api.php:100
+#: ../../Zotlabs/Module/Photos.php:666 ../../Zotlabs/Module/Profiles.php:674
+#: ../../Zotlabs/Module/Profiles.php:684 ../../Zotlabs/Module/Profiles.php:692
+#: ../../Zotlabs/Module/Profiles.php:696 ../../Zotlabs/Module/Sources.php:122
+#: ../../Zotlabs/Module/Sources.php:157 ../../Zotlabs/Module/Group.php:138
+#: ../../Zotlabs/Module/Group.php:139 ../../Zotlabs/Module/Group.php:148
+#: ../../Zotlabs/Module/Group.php:250 ../../Zotlabs/Module/Group.php:302
+#: ../../Zotlabs/Module/Group.php:303 ../../Zotlabs/Module/Import.php:611
+#: ../../Zotlabs/Module/Import.php:615 ../../Zotlabs/Module/Import.php:616
+#: ../../Zotlabs/Module/Register.php:515 ../../Zotlabs/Module/Defperms.php:195
+#: ../../Zotlabs/Module/Filestorage.php:203
+#: ../../Zotlabs/Module/Filestorage.php:211
+#: ../../Zotlabs/Module/Admin/Site.php:308 ../../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/Settings/Channel.php:225
+#: ../../Zotlabs/Module/Settings/Multifactor.php:82
+#: ../../Zotlabs/Module/Settings/Privacy.php:133
+#: ../../Zotlabs/Module/Settings/Privacy.php:134
+#: ../../Zotlabs/Module/Settings/Privacy.php:135
+#: ../../Zotlabs/Module/Settings/Privacy.php:136
+#: ../../Zotlabs/Module/Settings/Privacy.php:137
+#: ../../Zotlabs/Module/Settings/Privacy.php:138
+#: ../../Zotlabs/Module/Settings/Display.php:87
+#: ../../Zotlabs/Module/Contactedit.php:270
+#: ../../extend/addon/hzaddons/cart/cart.php:1418
+#: ../../extend/addon/hzaddons/cart/submodules/orderoptions.php:72
+#: ../../extend/addon/hzaddons/cart/submodules/orderoptions.php:337
+#: ../../extend/addon/hzaddons/cart/submodules/orderoptions.php:361
+#: ../../extend/addon/hzaddons/cart/submodules/orderoptions.php:437
+#: ../../extend/addon/hzaddons/cart/submodules/orderoptions.php:461
+#: ../../extend/addon/hzaddons/cart/submodules/subscriptions.php:153
+#: ../../extend/addon/hzaddons/cart/submodules/subscriptions.php:425
+#: ../../extend/addon/hzaddons/cart/submodules/manualcat.php:63
+#: ../../extend/addon/hzaddons/cart/submodules/manualcat.php:254
+#: ../../extend/addon/hzaddons/cart/submodules/manualcat.php:258
+#: ../../extend/addon/hzaddons/cart/submodules/paypalbuttonV2.php:88
+#: ../../extend/addon/hzaddons/cart/submodules/paypalbuttonV2.php:98
+#: ../../extend/addon/hzaddons/cart/submodules/paypalbutton.php:87
+#: ../../extend/addon/hzaddons/cart/submodules/paypalbutton.php:95
+#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:67
+#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:651
+#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:655
+#: ../../extend/addon/hzaddons/cart/Settings/Cart.php:61
+#: ../../extend/addon/hzaddons/cart/Settings/Cart.php:73
+#: ../../extend/addon/hzaddons/socialauth/Mod_SocialAuth.php:218
+#: ../../extend/addon/hzaddons/pumpio/Mod_Pumpio.php:92
+#: ../../extend/addon/hzaddons/pumpio/Mod_Pumpio.php:96
+#: ../../extend/addon/hzaddons/pumpio/Mod_Pumpio.php:100
+#: ../../extend/addon/hzaddons/statusnet/Mod_Statusnet.php:258
+#: ../../extend/addon/hzaddons/statusnet/Mod_Statusnet.php:280
+#: ../../extend/addon/hzaddons/statusnet/Mod_Statusnet.php:289
+#: ../../extend/addon/hzaddons/ljpost/Mod_Ljpost.php:61
+#: ../../extend/addon/hzaddons/ljpost/Mod_Ljpost.php:65
+#: ../../extend/addon/hzaddons/ljpost/Mod_Ljpost.php:69
+#: ../../extend/addon/hzaddons/nofed/Mod_Nofed.php:40
+#: ../../extend/addon/hzaddons/twitter/Mod_Twitter.php:160
+#: ../../extend/addon/hzaddons/twitter/Mod_Twitter.php:169
+#: ../../extend/addon/hzaddons/diaspora/Mod_Diaspora.php:70
+#: ../../extend/addon/hzaddons/dwpost/Mod_Dwpost.php:59
+#: ../../extend/addon/hzaddons/dwpost/Mod_Dwpost.php:63
+#: ../../extend/addon/hzaddons/content_import/Mod_content_import.php:135
+#: ../../extend/addon/hzaddons/content_import/Mod_content_import.php:136
+#: ../../extend/addon/hzaddons/rtof/Mod_Rtof.php:47
+#: ../../extend/addon/hzaddons/redred/Mod_Redred.php:61
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:230
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:231
+#: ../../extend/addon/hzaddons/libertree/Mod_Libertree.php:57
+#: ../../extend/addon/hzaddons/pubcrawl/Mod_Pubcrawl.php:45
+#: ../../extend/addon/hzaddons/ijpost/Mod_Ijpost.php:61
+#: ../../extend/addon/hzaddons/wppost/Mod_Wppost.php:84
+#: ../../extend/addon/hzaddons/wppost/Mod_Wppost.php:88
+#: ../../extend/addon/hzaddons/wppost/Mod_Wppost.php:92
+msgid "Yes"
+msgstr "Ja"
-#: ../../addon/pageheader/Mod_Pageheader.php:49
-msgid "Page Header"
-msgstr ""
+#: ../../include/conversation.php:1275
+#: ../../extend/addon/hzaddons/hsse/hsse.php:215
+msgid "Disable comments"
+msgstr "Slå av kommentarer"
-#: ../../addon/irc/Mod_Irc.php:23 ../../addon/irc/irc.php:41
-msgid "Popular Channels"
+#: ../../include/conversation.php:1276
+#: ../../extend/addon/hzaddons/hsse/hsse.php:216
+msgid "Toggle comments"
msgstr ""
-#: ../../addon/irc/irc.php:37
-msgid "Channels to auto connect"
-msgstr ""
+#: ../../include/conversation.php:1282 ../../Zotlabs/Module/Editblock.php:129
+#: ../../Zotlabs/Module/Photos.php:667 ../../Zotlabs/Module/Photos.php:1042
+#: ../../extend/addon/hzaddons/articles/Mod_Article_edit.php:116
+#: ../../extend/addon/hzaddons/hsse/hsse.php:221
+#: ../../extend/addon/hzaddons/cards/Mod_Card_edit.php:118
+msgid "Title (optional)"
+msgstr "Tittel (valgfri)"
-#: ../../addon/irc/irc.php:37 ../../addon/irc/irc.php:41
-msgid "Comma separated list"
-msgstr ""
+#: ../../include/conversation.php:1283
+msgid "Summary (optional)"
+msgstr "Sammendrag (valgfritt)"
-#: ../../addon/irc/irc.php:45
-msgid "IRC Settings"
-msgstr ""
+#: ../../include/conversation.php:1286
+#: ../../extend/addon/hzaddons/hsse/hsse.php:224
+msgid "Categories (optional, comma-separated list)"
+msgstr "Kategorier (valgfri, kommaseparert liste)"
-#: ../../addon/irc/irc.php:54
-msgid "IRC settings saved."
-msgstr ""
+#: ../../include/conversation.php:1287
+#: ../../extend/addon/hzaddons/hsse/hsse.php:225
+msgid "Permission settings"
+msgstr "Tillatelser - innstillinger"
-#: ../../addon/irc/irc.php:58
-msgid "IRC Chatroom"
-msgstr ""
+#: ../../include/conversation.php:1309
+#: ../../extend/addon/hzaddons/hsse/hsse.php:247
+msgid "Other networks and post services"
+msgstr "Andre nettverk og innleggstjenester"
-#: ../../addon/xmpp/xmpp.php:44
-msgid "Jabber BOSH host"
-msgstr ""
+#: ../../include/conversation.php:1312
+#: ../../extend/addon/hzaddons/hsse/hsse.php:250
+msgid "Set expiration date"
+msgstr "Angi utløpsdato"
-#: ../../addon/xmpp/xmpp.php:45
-msgid "Use central userbase"
-msgstr ""
+#: ../../include/conversation.php:1315
+#: ../../extend/addon/hzaddons/hsse/hsse.php:253
+msgid "Set publish date"
+msgstr "Angi publiseringsdato"
-#: ../../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/conversation.php:1317 ../../Zotlabs/Lib/ThreadItem.php:881
+#: ../../Zotlabs/Module/Chat.php:218
+#: ../../extend/addon/hzaddons/hsse/hsse.php:255
+msgid "Encrypt text"
+msgstr "Krypter tekst"
-#: ../../addon/xmpp/Mod_Xmpp.php:23
-msgid "XMPP settings updated."
-msgstr ""
+#: ../../include/conversation.php:1560 ../../include/taxonomy.php:677
+#: ../../Zotlabs/Module/Photos.php:1129
+msgctxt "noun"
+msgid "Like"
+msgid_plural "Likes"
+msgstr[0] "Liker"
+msgstr[1] "Liker"
-#: ../../addon/xmpp/Mod_Xmpp.php:35
-msgid "XMPP App"
-msgstr ""
+#: ../../include/conversation.php:1563
+msgctxt "noun"
+msgid "Repeat"
+msgid_plural "Repeats"
+msgstr[0] ""
+msgstr[1] ""
-#: ../../addon/xmpp/Mod_Xmpp.php:36
-msgid "Embedded XMPP (Jabber) client"
-msgstr ""
+#: ../../include/conversation.php:1566 ../../Zotlabs/Module/Photos.php:1134
+msgctxt "noun"
+msgid "Dislike"
+msgid_plural "Dislikes"
+msgstr[0] "Liker ikke"
+msgstr[1] "Liker ikke"
-#: ../../addon/xmpp/Mod_Xmpp.php:52
-msgid "Individual credentials"
-msgstr ""
+#: ../../include/conversation.php:1569
+msgctxt "noun"
+msgid "Attending"
+msgid_plural "Attending"
+msgstr[0] "Deltar"
+msgstr[1] "Deltar"
-#: ../../addon/xmpp/Mod_Xmpp.php:58
-msgid "Jabber BOSH server"
-msgstr ""
+#: ../../include/conversation.php:1572
+msgctxt "noun"
+msgid "Not Attending"
+msgid_plural "Not Attending"
+msgstr[0] "Deltar ikke"
+msgstr[1] "Deltar ikke"
-#: ../../addon/xmpp/Mod_Xmpp.php:67
-msgid "XMPP Settings"
-msgstr ""
+#: ../../include/conversation.php:1575
+msgctxt "noun"
+msgid "Undecided"
+msgid_plural "Undecided"
+msgstr[0] "Ikke bestemt"
+msgstr[1] "Ikke bestemt"
-#: ../../include/text.php:547
+#: ../../include/text.php:562
msgid "prev"
msgstr "forrige"
-#: ../../include/text.php:549
+#: ../../include/text.php:564
msgid "first"
msgstr "første"
-#: ../../include/text.php:578
+#: ../../include/text.php:593
msgid "last"
msgstr "siste"
-#: ../../include/text.php:581
+#: ../../include/text.php:596
msgid "next"
msgstr "neste"
-#: ../../include/text.php:599
+#: ../../include/text.php:614
msgid "older"
msgstr "eldre"
-#: ../../include/text.php:601
+#: ../../include/text.php:616
msgid "newer"
msgstr "nyere"
-#: ../../include/text.php:1058 ../../include/features.php:133
-#: ../../Zotlabs/Module/Connections.php:399 ../../Zotlabs/Lib/Apps.php:338
-msgid "Connections"
-msgstr "Forbindelser"
-
-#: ../../include/text.php:1066 ../../Zotlabs/Module/Viewconnections.php:80
+#: ../../include/text.php:1086 ../../Zotlabs/Module/Viewconnections.php:80
#: ../../Zotlabs/Module/Connections.php:306
msgid "Accepts"
msgstr ""
-#: ../../include/text.php:1069 ../../Zotlabs/Module/Viewconnections.php:83
+#: ../../include/text.php:1089 ../../Zotlabs/Module/Viewconnections.php:83
#: ../../Zotlabs/Module/Connections.php:309
msgid "Comments"
msgstr ""
-#: ../../include/text.php:1074 ../../Zotlabs/Module/Viewconnections.php:88
+#: ../../include/text.php:1094 ../../Zotlabs/Module/Viewconnections.php:88
#: ../../Zotlabs/Module/Connections.php:314
msgid "Stream items"
msgstr ""
-#: ../../include/text.php:1079 ../../Zotlabs/Module/Viewconnections.php:93
+#: ../../include/text.php:1099 ../../Zotlabs/Module/Viewconnections.php:93
#: ../../Zotlabs/Module/Connections.php:319
msgid "Wall posts"
msgstr ""
-#: ../../include/text.php:1083 ../../Zotlabs/Module/Viewconnections.php:97
+#: ../../include/text.php:1103 ../../Zotlabs/Module/Viewconnections.php:97
#: ../../Zotlabs/Module/Connections.php:323
msgid "Nothing"
msgstr ""
-#: ../../include/text.php:1096
+#: ../../include/text.php:1116
#, php-format
msgid "View all %s connections"
msgstr "Vis alle %s forbindelser"
-#: ../../include/text.php:1159
+#: ../../include/text.php:1179
#, php-format
msgid "Network: %s"
msgstr ""
-#: ../../include/text.php:1170 ../../include/text.php:1182
-#: ../../include/nav.php:195 ../../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:403
-#: ../../Zotlabs/Lib/Apps.php:358
-msgid "Search"
-msgstr "Søk"
-
-#: ../../include/text.php:1262
-msgid "poke"
-msgstr "prikk"
-
-#: ../../include/text.php:1262 ../../include/conversation.php:277
-msgid "poked"
-msgstr "prikket"
-
-#: ../../include/text.php:1263
-msgid "ping"
-msgstr "varsle"
-
-#: ../../include/text.php:1263
-msgid "pinged"
-msgstr "varslet"
-
-#: ../../include/text.php:1292
-msgid "happy"
-msgstr "glad"
-
-#: ../../include/text.php:1293
-msgid "sad"
-msgstr "trist"
-
-#: ../../include/text.php:1294
-msgid "mellow"
-msgstr "dempet"
-
-#: ../../include/text.php:1295
-msgid "tired"
-msgstr "trøtt"
-
-#: ../../include/text.php:1296
-msgid "perky"
-msgstr "oppkvikket"
-
-#: ../../include/text.php:1297
-msgid "angry"
-msgstr "sint"
-
-#: ../../include/text.php:1298
-msgid "stupefied"
-msgstr "lamslått"
-
-#: ../../include/text.php:1299
-msgid "puzzled"
-msgstr "forundret"
-
-#: ../../include/text.php:1300
-msgid "interested"
-msgstr "interessert"
-
-#: ../../include/text.php:1301
-msgid "bitter"
-msgstr "bitter"
-
-#: ../../include/text.php:1302
-msgid "cheerful"
-msgstr "munter"
-
-#: ../../include/text.php:1303
-msgid "alive"
-msgstr "levende"
-
-#: ../../include/text.php:1304
-msgid "annoyed"
-msgstr "irritert"
-
-#: ../../include/text.php:1305
-msgid "anxious"
-msgstr "nervøs"
-
-#: ../../include/text.php:1306
-msgid "cranky"
-msgstr "gretten"
-
-#: ../../include/text.php:1307
-msgid "disturbed"
-msgstr "foruroliget"
-
-#: ../../include/text.php:1308
-msgid "frustrated"
-msgstr "frustrert"
-
-#: ../../include/text.php:1309
-msgid "depressed"
-msgstr "lei seg"
-
-#: ../../include/text.php:1310
-msgid "motivated"
-msgstr "motivert"
-
-#: ../../include/text.php:1311
-msgid "relaxed"
-msgstr "avslappet"
-
-#: ../../include/text.php:1312
-msgid "surprised"
-msgstr "overrasket"
+#: ../../include/text.php:1191 ../../include/text.php:1203
+#: ../../Zotlabs/Module/Rbmark.php:29 ../../Zotlabs/Module/Rbmark.php:85
+#: ../../Zotlabs/Module/Filer.php:54
+#: ../../Zotlabs/Module/Admin/Queueworker.php:115
+#: ../../Zotlabs/Module/Admin/Profs.php:95
+#: ../../Zotlabs/Module/Admin/Profs.php:115
+#: ../../extend/addon/hzaddons/articles/Mod_Articles.php:120
+#: ../../extend/addon/hzaddons/cards/Mod_Cards.php:116
+msgid "Save"
+msgstr "Lagre"
-#: ../../include/text.php:1500 ../../include/js_strings.php:100
+#: ../../include/text.php:1499 ../../include/js_strings.php:100
msgid "Monday"
msgstr "mandag"
-#: ../../include/text.php:1500 ../../include/js_strings.php:101
+#: ../../include/text.php:1499 ../../include/js_strings.php:101
msgid "Tuesday"
msgstr "tirsdag"
-#: ../../include/text.php:1500 ../../include/js_strings.php:102
+#: ../../include/text.php:1499 ../../include/js_strings.php:102
msgid "Wednesday"
msgstr "onsdag"
-#: ../../include/text.php:1500 ../../include/js_strings.php:103
+#: ../../include/text.php:1499 ../../include/js_strings.php:103
msgid "Thursday"
msgstr "torsdag"
-#: ../../include/text.php:1500 ../../include/js_strings.php:104
+#: ../../include/text.php:1499 ../../include/js_strings.php:104
msgid "Friday"
msgstr "fredag"
-#: ../../include/text.php:1500 ../../include/js_strings.php:105
+#: ../../include/text.php:1499 ../../include/js_strings.php:105
msgid "Saturday"
msgstr "lørdag"
-#: ../../include/text.php:1500 ../../include/js_strings.php:99
+#: ../../include/text.php:1499 ../../include/js_strings.php:99
msgid "Sunday"
msgstr "søndag"
-#: ../../include/text.php:1504 ../../include/js_strings.php:75
+#: ../../include/text.php:1503 ../../include/js_strings.php:75
msgid "January"
msgstr "januar"
-#: ../../include/text.php:1504 ../../include/js_strings.php:76
+#: ../../include/text.php:1503 ../../include/js_strings.php:76
msgid "February"
msgstr "februar"
-#: ../../include/text.php:1504 ../../include/js_strings.php:77
+#: ../../include/text.php:1503 ../../include/js_strings.php:77
msgid "March"
msgstr "mars"
-#: ../../include/text.php:1504 ../../include/js_strings.php:78
+#: ../../include/text.php:1503 ../../include/js_strings.php:78
msgid "April"
msgstr "april"
-#: ../../include/text.php:1504
+#: ../../include/text.php:1503
msgid "May"
msgstr "mai"
-#: ../../include/text.php:1504 ../../include/js_strings.php:80
+#: ../../include/text.php:1503 ../../include/js_strings.php:80
msgid "June"
msgstr "juni"
-#: ../../include/text.php:1504 ../../include/js_strings.php:81
+#: ../../include/text.php:1503 ../../include/js_strings.php:81
msgid "July"
msgstr "juli"
-#: ../../include/text.php:1504 ../../include/js_strings.php:82
+#: ../../include/text.php:1503 ../../include/js_strings.php:82
msgid "August"
msgstr "august"
-#: ../../include/text.php:1504 ../../include/js_strings.php:83
+#: ../../include/text.php:1503 ../../include/js_strings.php:83
msgid "September"
msgstr "september"
-#: ../../include/text.php:1504 ../../include/js_strings.php:84
+#: ../../include/text.php:1503 ../../include/js_strings.php:84
msgid "October"
msgstr "oktober"
-#: ../../include/text.php:1504 ../../include/js_strings.php:85
+#: ../../include/text.php:1503 ../../include/js_strings.php:85
msgid "November"
msgstr "november"
-#: ../../include/text.php:1504 ../../include/js_strings.php:86
+#: ../../include/text.php:1503 ../../include/js_strings.php:86
msgid "December"
msgstr "desember"
-#: ../../include/text.php:1578
+#: ../../include/text.php:1577
#, fuzzy
#| msgid "Unknown Attachment"
msgid "Unknown attachment"
msgstr "Ukjent vedlegg"
-#: ../../include/text.php:1581 ../../Zotlabs/Module/Sharedwithme.php:109
-#: ../../Zotlabs/Storage/Browser.php:382
+#: ../../include/text.php:1580 ../../Zotlabs/Storage/Browser.php:383
+#: ../../Zotlabs/Module/Sharedwithme.php:109
msgid "Size"
msgstr "Størrelse"
-#: ../../include/text.php:1581 ../../include/feedutils.php:871
-msgid "unknown"
-msgstr "ukjent"
-
#: ../../include/text.php:1623
msgid "remove category"
msgstr "fjern kategori"
-#: ../../include/text.php:1700
+#: ../../include/text.php:1701
msgid "remove from file"
msgstr "fjern fra fil"
-#: ../../include/text.php:1887
+#: ../../include/text.php:1888
msgid "Download binary/encrypted content"
msgstr ""
-#: ../../include/text.php:1945 ../../include/text.php:1954
-#: ../../include/text.php:1981 ../../include/text.php:1990
+#: ../../include/text.php:1946 ../../include/text.php:1955
+#: ../../include/text.php:1982 ../../include/text.php:1991
#, php-format
msgctxt "noun"
msgid "%d Vote"
@@ -4333,7 +2435,7 @@ msgid_plural "%d Votes"
msgstr[0] ""
msgstr[1] ""
-#: ../../include/text.php:1997
+#: ../../include/text.php:1998
#, php-format
msgctxt "noun"
msgid "%d Vote in total"
@@ -4341,617 +2443,196 @@ msgid_plural "%d Votes in total"
msgstr[0] ""
msgstr[1] ""
-#: ../../include/text.php:2003
+#: ../../include/text.php:2004
msgid "Poll has ended"
msgstr "Spørreskjema har utløpt"
-#: ../../include/text.php:2006
+#: ../../include/text.php:2007
#, php-format
msgid "Poll ends in %s"
msgstr "Spørreskjema utløper om %s"
-#: ../../include/text.php:2013 ../../Zotlabs/Lib/ThreadItem.php:446
+#: ../../include/text.php:2014 ../../Zotlabs/Lib/ThreadItem.php:471
msgid "Vote"
msgstr ""
-#: ../../include/text.php:2168
+#: ../../include/text.php:2174
msgid "Link to Source"
msgstr "Lenke til kilde"
-#: ../../include/text.php:2193 ../../include/language.php:433
-msgid "default"
-msgstr "standard"
-
-#: ../../include/text.php:2201
+#: ../../include/text.php:2207
msgid "Page layout"
msgstr "Sidens layout"
-#: ../../include/text.php:2201
+#: ../../include/text.php:2207
msgid "You can create your own with the layouts tool"
msgstr "Du kan lage din egen med layout-verktøyet"
-#: ../../include/text.php:2212
+#: ../../include/text.php:2217
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:220
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:368
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:903
+#: ../../extend/addon/hzaddons/wiki/Widget/Wiki_pages.php:68
+msgid "BBcode"
+msgstr "BBcode"
+
+#: ../../include/text.php:2218
msgid "HTML"
msgstr ""
-#: ../../include/text.php:2215
+#: ../../include/text.php:2219
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:220
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:368
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:903
+#: ../../extend/addon/hzaddons/wiki/Widget/Wiki_pages.php:68
+#: ../../extend/addon/hzaddons/mdpost/mdpost.php:41
+msgid "Markdown"
+msgstr "Markdown"
+
+#: ../../include/text.php:2220
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:220
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:903
+#: ../../extend/addon/hzaddons/wiki/Widget/Wiki_pages.php:68
+msgid "Text"
+msgstr "Tekst"
+
+#: ../../include/text.php:2221
msgid "Comanche Layout"
msgstr ""
-#: ../../include/text.php:2220
+#: ../../include/text.php:2226
msgid "PHP"
msgstr ""
-#: ../../include/text.php:2232
+#: ../../include/text.php:2238
msgid "Page content type"
msgstr "Sidens innholdstype"
-#: ../../include/text.php:2355 ../../include/event.php:1356
-#: ../../include/conversation.php:142
-#: ../../Zotlabs/Module/Channel_calendar.php:221
-#: ../../Zotlabs/Module/Like.php:455 ../../Zotlabs/Module/Tagger.php:75
-msgid "event"
-msgstr "hendelse"
-
-#: ../../include/text.php:2358 ../../include/conversation.php:168
-#: ../../include/bbcode.php:566 ../../include/markdown.php:208
-#: ../../Zotlabs/Module/Tagger.php:79 ../../Zotlabs/Lib/Activity.php:3690
-msgid "post"
-msgstr "innlegg"
-
-#: ../../include/text.php:2360 ../../include/conversation.php:170
-#: ../../Zotlabs/Module/Tagger.php:81
-msgid "comment"
-msgstr "kommentar"
-
-#: ../../include/text.php:2365
+#: ../../include/text.php:2371
msgid "activity"
msgstr "aktivitet"
-#: ../../include/text.php:2368
+#: ../../include/text.php:2374
msgid "poll"
msgstr "spørreskjema"
-#: ../../include/text.php:2481
+#: ../../include/text.php:2487
msgid "a-z, 0-9, -, and _ only"
msgstr ""
-#: ../../include/text.php:2786
+#: ../../include/text.php:2795
msgid "Design Tools"
msgstr "Designverktøy"
-#: ../../include/text.php:2789 ../../Zotlabs/Module/Blocks.php:152
+#: ../../include/text.php:2798 ../../Zotlabs/Module/Blocks.php:152
msgid "Blocks"
msgstr "Byggeklosser"
-#: ../../include/text.php:2790 ../../Zotlabs/Module/Menu.php:171
+#: ../../include/text.php:2799 ../../Zotlabs/Module/Menu.php:171
msgid "Menus"
msgstr "Menyer"
-#: ../../include/text.php:2791 ../../Zotlabs/Module/Layouts.php:182
+#: ../../include/text.php:2800 ../../Zotlabs/Module/Layouts.php:182
msgid "Layouts"
msgstr "Layout"
-#: ../../include/text.php:2792
+#: ../../include/text.php:2801
msgid "Pages"
msgstr "Sider"
-#: ../../include/text.php:2804
+#: ../../include/text.php:2813
msgid "Import"
msgstr "Importer"
-#: ../../include/text.php:2805
+#: ../../include/text.php:2814
msgid "Import website..."
msgstr ""
-#: ../../include/text.php:2806
+#: ../../include/text.php:2815
msgid "Select folder to import"
msgstr ""
-#: ../../include/text.php:2807
+#: ../../include/text.php:2816
msgid "Import from a zipped folder:"
msgstr ""
-#: ../../include/text.php:2808
+#: ../../include/text.php:2817
msgid "Import from cloud files:"
msgstr ""
-#: ../../include/text.php:2809
+#: ../../include/text.php:2818
msgid "/cloud/channel/path/to/folder"
msgstr ""
-#: ../../include/text.php:2810
+#: ../../include/text.php:2819
msgid "Enter path to website files"
msgstr ""
-#: ../../include/text.php:2811
+#: ../../include/text.php:2820
msgid "Select folder"
msgstr ""
-#: ../../include/text.php:2812
+#: ../../include/text.php:2821
msgid "Export website..."
msgstr ""
-#: ../../include/text.php:2813
+#: ../../include/text.php:2822
msgid "Export to a zip file"
msgstr ""
-#: ../../include/text.php:2814
+#: ../../include/text.php:2823
msgid "website.zip"
msgstr ""
-#: ../../include/text.php:2815
+#: ../../include/text.php:2824
msgid "Enter a name for the zip file."
msgstr ""
-#: ../../include/text.php:2816
+#: ../../include/text.php:2825
msgid "Export to cloud files"
msgstr ""
-#: ../../include/text.php:2817
+#: ../../include/text.php:2826
msgid "/path/to/export/folder"
msgstr ""
-#: ../../include/text.php:2818
+#: ../../include/text.php:2827
msgid "Enter a path to a cloud files destination."
msgstr ""
-#: ../../include/text.php:2819
+#: ../../include/text.php:2828
msgid "Specify folder"
msgstr ""
-#: ../../include/opengraph.php:56
-#, php-format
-msgid "This is the home page of %s."
-msgstr ""
-
-#: ../../include/event.php:33 ../../include/event.php:128
-msgid "l F d, Y \\@ g:i A"
-msgstr "l F d, Y \\@ g:i A"
-
-#: ../../include/event.php:41
-msgid "Starts:"
-msgstr "Starter:"
-
-#: ../../include/event.php:51
-msgid "Finishes:"
-msgstr "Slutter:"
-
-#: ../../include/event.php:63 ../../include/event.php:153
-#: ../../include/channel.php:1631 ../../Zotlabs/Module/Directory.php:354
-msgid "Location:"
-msgstr "Plassering:"
-
-#: ../../include/event.php:128
-msgid "l F d, Y"
-msgstr ""
-
-#: ../../include/event.php:132
-msgid "Start:"
-msgstr ""
+#: ../../include/text.php:3520 ../../view/theme/redbasic/php/config.php:18
+#: ../../Zotlabs/Module/Admin/Site.php:232
+#: ../../extend/addon/hzaddons/cart/submodules/orderoptions.php:335
+#: ../../extend/addon/hzaddons/cart/submodules/orderoptions.php:359
+#: ../../extend/addon/hzaddons/cart/submodules/orderoptions.php:435
+#: ../../extend/addon/hzaddons/cart/submodules/orderoptions.php:459
+msgid "Default"
+msgstr "Standard"
-#: ../../include/event.php:136
-msgid "End:"
+#: ../../include/oembed.php:155
+msgid "View PDF"
msgstr ""
-#: ../../include/event.php:1202
-msgid "This event has been added to your calendar."
-msgstr "Denne hendelsen er lagt til i din kalender."
-
-#: ../../include/event.php:1435
-msgid "Not specified"
-msgstr "Ikke spesifisert"
-
-#: ../../include/event.php:1436
-msgid "Needs Action"
-msgstr "Trenger handling"
-
-#: ../../include/event.php:1437
-msgid "Completed"
-msgstr "Ferdig"
-
-#: ../../include/event.php:1438
-msgid "In Process"
-msgstr "Igang"
-
-#: ../../include/event.php:1439
-msgid "Cancelled"
-msgstr "Avbrutt"
+#: ../../include/oembed.php:390
+msgid " by "
+msgstr " av "
-#: ../../include/event.php:1520 ../../include/connections.php:781
-#: ../../Zotlabs/Module/Cdav.php:1373 ../../Zotlabs/Module/Connedit.php:741
+#: ../../include/oembed.php:391
#, fuzzy
-msgid "Mobile"
-msgstr "mobil"
-
-#: ../../include/event.php:1521 ../../include/connections.php:782
-#: ../../Zotlabs/Widget/Notifications.php:43 ../../Zotlabs/Module/Cdav.php:1374
-#: ../../Zotlabs/Module/Connedit.php:742
-msgid "Home"
-msgstr "Hjem"
-
-#: ../../include/event.php:1522 ../../include/connections.php:783
-msgid "Home, Voice"
-msgstr ""
-
-#: ../../include/event.php:1523 ../../include/connections.php:784
-msgid "Home, Fax"
-msgstr ""
-
-#: ../../include/event.php:1524 ../../include/connections.php:785
-#: ../../Zotlabs/Module/Cdav.php:1375 ../../Zotlabs/Module/Connedit.php:743
-msgid "Work"
-msgstr ""
-
-#: ../../include/event.php:1525 ../../include/connections.php:786
-msgid "Work, Voice"
-msgstr ""
-
-#: ../../include/event.php:1526 ../../include/connections.php:787
-msgid "Work, Fax"
-msgstr ""
-
-#: ../../include/event.php:1527 ../../include/event.php:1534
-#: ../../include/selectors.php:64 ../../include/selectors.php:81
-#: ../../include/selectors.php:119 ../../include/selectors.php:155
-#: ../../include/connections.php:788 ../../include/connections.php:795
-#: ../../Zotlabs/Module/Cdav.php:1376 ../../Zotlabs/Module/Connedit.php:744
-#: ../../Zotlabs/Access/PermissionRoles.php:360
-msgid "Other"
-msgstr "Annen"
-
-#: ../../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"
-
-#: ../../include/features.php:55 ../../Zotlabs/Module/Admin/Features.php:55
-#: ../../Zotlabs/Module/Admin/Features.php:56
-#: ../../Zotlabs/Module/Settings/Features.php:38
-msgid "On"
+msgid " on "
msgstr "På"
-#: ../../include/features.php:82 ../../include/nav.php:473
-#: ../../include/nav.php:476 ../../Zotlabs/Lib/Apps.php:351
-msgid "Calendar"
-msgstr "Kalender"
-
-#: ../../include/features.php:86
-msgid "Start calendar week on Monday"
-msgstr ""
-
-#: ../../include/features.php:87
-msgid "Default is Sunday"
-msgstr ""
-
-#: ../../include/features.php:94
-msgid "Event Timezone Selection"
-msgstr ""
-
-#: ../../include/features.php:95
-msgid "Allow event creation in timezones other than your own."
-msgstr ""
-
-#: ../../include/features.php:104
-msgid "Channel Home"
-msgstr "Kanalhjem"
-
-#: ../../include/features.php:108
-msgid "Search by Date"
-msgstr "Søk etter dato"
-
-#: ../../include/features.php:109
-msgid "Ability to select posts by date ranges"
-msgstr "Mulighet for å velge innlegg etter datoområde"
-
-#: ../../include/features.php:116
-msgid "Tag Cloud"
-msgstr "Merkelappsky"
-
-#: ../../include/features.php:117
-msgid "Provide a personal tag cloud on your channel page"
-msgstr "Tilby en personlig merkelappsky på din kanalside"
-
-#: ../../include/features.php:124 ../../include/features.php:358
-msgid "Use blog/list mode"
-msgstr "Bruk blogg/listemodus"
-
-#: ../../include/features.php:125 ../../include/features.php:359
-msgid "Comments will be displayed separately"
-msgstr "Kommentarer blir vist separat fra innlegget"
-
-#: ../../include/features.php:137
-msgid "Connection Filtering"
-msgstr "Filtrer forbindelser"
-
-#: ../../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"
-
-#: ../../include/features.php:146
-msgid "Conversation"
-msgstr ""
-
-#: ../../include/features.php:158
-msgid "Emoji Reactions"
-msgstr ""
-
-#: ../../include/features.php:159
-msgid "Add emoji reaction ability to posts"
-msgstr ""
-
-#: ../../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 ""
-
-#: ../../include/features.php:183
-msgid "Ability to reply on selected comment"
-msgstr ""
-
-#: ../../include/features.php:192 ../../Zotlabs/Lib/Apps.php:352
-msgid "Directory"
-msgstr "Katalog"
-
-#: ../../include/features.php:196
-msgid "Advanced Directory Search"
-msgstr "Avansert katalogsøk"
-
-#: ../../include/features.php:197
-msgid "Allows creation of complex directory search queries"
-msgstr "Gjør det mulig å bruke avanserte kriterier ved søk i katalogen"
-
-#: ../../include/features.php:206
-msgid "Editor"
-msgstr ""
-
-#: ../../include/features.php:210
-msgid "Post Categories"
-msgstr "Innleggskategorier"
-
-#: ../../include/features.php:211
-msgid "Add categories to your posts"
-msgstr "Legg kategorier til dine innlegg"
-
-#: ../../include/features.php:218
-msgid "Large Photos"
-msgstr "Store bilder"
-
-#: ../../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"
-
-#: ../../include/features.php:226
-msgid "Even More Encryption"
-msgstr "Enda mer kryptering"
-
-#: ../../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"
-
-#: ../../include/features.php:234
-msgid "Disable Comments"
-msgstr "Slå av kommentarer"
-
-#: ../../include/features.php:235
-msgid "Provide the option to disable comments for a post"
-msgstr "Slår på valg for å ikke tillate kommentarer til innlegget"
-
-#: ../../include/features.php:242
-msgid "Delayed Posting"
-msgstr "Tidfest publisering"
-
-#: ../../include/features.php:243
-msgid "Allow posts to be published at a later date"
-msgstr "Tillat innlegg å bli publisert på et senere tidspunkt"
-
-#: ../../include/features.php:250
-msgid "Content Expiration"
-msgstr "Innholdet utløper"
-
-#: ../../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"
-
-#: ../../include/features.php:259
-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:266
-msgid "Auto-save drafts of posts and comments"
-msgstr "Automatisk lagring av kladd for innlegg og kommentarer"
-
-#: ../../include/features.php:267
-msgid ""
-"Automatically saves post and comment drafts in local browser storage to help "
-"prevent accidental loss of compositions"
-msgstr ""
-"Lagrer automatisk utkast til innlegg og kommentarer i nettleserens interne "
-"lager for å unngå å tape innholet ved et uhell"
-
-#: ../../include/features.php:276
-msgid "Manage"
-msgstr ""
-
-#: ../../include/features.php:280
-msgid "Navigation Channel Select"
-msgstr "Navigasjon kanalvalg"
-
-#: ../../include/features.php:281
-msgid "Change channels directly from within the navigation dropdown menu"
-msgstr "Endre kanaler direkte fra navigasjonsmenyen"
-
-#: ../../include/features.php:290 ../../Zotlabs/Widget/Notifications.php:23
-#: ../../Zotlabs/Module/Connections.php:347
-msgid "Network"
-msgstr "Nettverk"
-
-#: ../../include/features.php:294
-msgid "Events Filter"
-msgstr "Arrangementsfilter"
-
-#: ../../include/features.php:295
-msgid "Ability to display only events"
-msgstr "Mulighet for kun å vise arrangementer"
-
-#: ../../include/features.php:302
-msgid "Polls Filter"
-msgstr "Filer for Spørreskjema"
-
-#: ../../include/features.php:303
-msgid "Ability to display only polls"
-msgstr "Mulighet for å kun vise spørreskjema"
-
-#: ../../include/features.php:310 ../../Zotlabs/Widget/Savedsearch.php:89
-msgid "Saved Searches"
-msgstr "Lagrede søk"
-
-#: ../../include/features.php:311
-msgid "Save search terms for re-use"
-msgstr "Lagre søkeuttrykk for senere bruk"
-
-#: ../../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"
-
-#: ../../include/features.php:319
-msgid "Ability to file posts under folders"
-msgstr "Mulighet til å sortere innlegg i mapper"
-
-#: ../../include/features.php:326
-msgid "Alternate Stream Order"
-msgstr "Alternativer for sortering"
-
-#: ../../include/features.php:327
-msgid ""
-"Ability to order the stream by last post date, last comment date or "
-"unthreaded activities"
-msgstr ""
-"Mulighet for å sortere tidslinjen etter dato for siste innlegg, siste "
-"kommentar eller som separate aktiviteter"
-
-#: ../../include/features.php:334
-msgid "Contact Filter"
-msgstr "Kontaktfilter"
-
-#: ../../include/features.php:335
-msgid "Ability to display only posts of a selected contact"
-msgstr "Mulighet for å kun vise innlegg fra en bestemt kontakt"
-
-#: ../../include/features.php:342
-msgid "Forum Filter"
-msgstr "Forumfilter"
-
-#: ../../include/features.php:343
-msgid "Ability to display only posts of a specific forum"
-msgstr "Mulighet for å kun vise innlegg i et bestemt forum"
-
-#: ../../include/features.php:350
-msgid "Personal Posts Filter"
-msgstr "Filter for personlige innlegg"
-
-#: ../../include/features.php:351
-msgid "Ability to display only posts that you've interacted on"
-msgstr "Mulighet til å vise kun innlegg du har deltatt på"
-
-#: ../../include/features.php:368 ../../include/nav.php:454
-#: ../../Zotlabs/Widget/Channel_activities.php:93
-#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:350
-msgid "Photos"
-msgstr "Bilder"
-
-#: ../../include/features.php:372
-msgid "Photo Location"
-msgstr "Bildeplassering"
-
-#: ../../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."
-
-#: ../../include/features.php:380
-msgid "Flag Adult Photos"
-msgstr ""
-
-#: ../../include/features.php:381
-msgid ""
-"Provide photo edit option to hide inappropriate photos from default album "
-"view"
-msgstr ""
-
-#: ../../include/features.php:390 ../../Zotlabs/Module/Contactedit.php:444
-#: ../../Zotlabs/Lib/Apps.php:368
-msgid "Profiles"
-msgstr ""
-
-#: ../../include/features.php:394
-msgid "Advanced Profiles"
-msgstr "Avanserte profiler"
-
-#: ../../include/features.php:395
-msgid "Additional profile sections and selections"
-msgstr "Ytterlige seksjoner og utvalg til profilen"
-
-#: ../../include/features.php:402
-msgid "Profile Import/Export"
-msgstr "Profil-import/-eksport"
-
-#: ../../include/features.php:403
-msgid "Save and load profile details across sites/channels"
-msgstr "Lagre og åpne profildetaljer på tvers av nettsteder/kanaler"
-
-#: ../../include/features.php:410
-msgid "Multiple Profiles"
-msgstr "Flere profiler"
-
-#: ../../include/features.php:411
-msgid "Ability to create multiple profiles"
-msgstr "Mulig å lage flere profiler"
+#: ../../include/oembed.php:424
+msgid "Embedded content"
+msgstr "Innebygget innhold"
-#: ../../include/security.php:633
-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."
+#: ../../include/oembed.php:433
+msgid "Embedding disabled"
+msgstr "Innbygging avskrudd"
#: ../../include/js_strings.php:5
msgid "Delete this item?"
@@ -4961,36 +2642,36 @@ msgstr "Slett dette elementet?"
msgid "Item deleted"
msgstr ""
-#: ../../include/js_strings.php:7 ../../Zotlabs/Module/Photos.php:1092
-#: ../../Zotlabs/Module/Photos.php:1205 ../../Zotlabs/Lib/ThreadItem.php:830
+#: ../../include/js_strings.php:7 ../../Zotlabs/Lib/ThreadItem.php:867
+#: ../../Zotlabs/Module/Photos.php:1094 ../../Zotlabs/Module/Photos.php:1207
msgid "Comment"
msgstr "Kommentar"
-#: ../../include/js_strings.php:8 ../../Zotlabs/Lib/ThreadItem.php:539
-#, php-format
-msgid "%s show all"
-msgstr ""
+#: ../../include/js_strings.php:8 ../../Zotlabs/Lib/ThreadItem.php:576
+#, fuzzy
+#| msgid "View all"
+msgid "show all"
+msgstr "Vis alle"
#: ../../include/js_strings.php:9
-#, php-format
-msgid "%s show less"
-msgstr ""
+#, fuzzy
+#| msgid "Show Oldest First"
+msgid "show less"
+msgstr "Vis eldste først"
#: ../../include/js_strings.php:10
-#, php-format
-msgid "%s expand"
+msgid "expand"
msgstr ""
#: ../../include/js_strings.php:11
-#, php-format
-msgid "%s collapse"
+msgid "collapse"
msgstr ""
#: ../../include/js_strings.php:12
msgid "Password too short"
msgstr "Passordet er for kort"
-#: ../../include/js_strings.php:13 ../../Zotlabs/Module/Register.php:161
+#: ../../include/js_strings.php:13 ../../Zotlabs/Module/Register.php:162
msgid "Passwords do not match"
msgstr "Passordene er ikke like"
@@ -5031,6 +2712,113 @@ msgstr "Vurdering"
msgid "Describe (optional)"
msgstr "Beskriv (valgfritt)"
+#: ../../include/js_strings.php:23 ../../view/theme/redbasic/php/config.php:188
+#: ../../Zotlabs/Lib/ThreadItem.php:868 ../../Zotlabs/Storage/Browser.php:386
+#: ../../Zotlabs/Module/Import_items.php:125 ../../Zotlabs/Module/Setup.php:319
+#: ../../Zotlabs/Module/Setup.php:359 ../../Zotlabs/Module/Regate.php:408
+#: ../../Zotlabs/Module/Photos.php:1056 ../../Zotlabs/Module/Photos.php:1095
+#: ../../Zotlabs/Module/Photos.php:1208 ../../Zotlabs/Module/Oauth.php:109
+#: ../../Zotlabs/Module/Editpost.php:88 ../../Zotlabs/Module/Profiles.php:738
+#: ../../Zotlabs/Module/Invite.php:564 ../../Zotlabs/Module/Sources.php:123
+#: ../../Zotlabs/Module/Sources.php:160 ../../Zotlabs/Module/Group.php:151
+#: ../../Zotlabs/Module/Group.php:160 ../../Zotlabs/Module/Oauth2.php:114
+#: ../../Zotlabs/Module/Chat.php:208 ../../Zotlabs/Module/Chat.php:247
+#: ../../Zotlabs/Module/Appman.php:230 ../../Zotlabs/Module/Connedit.php:714
+#: ../../Zotlabs/Module/Import.php:622 ../../Zotlabs/Module/Pconfig.php:117
+#: ../../Zotlabs/Module/Xchan.php:15 ../../Zotlabs/Module/Thing.php:357
+#: ../../Zotlabs/Module/Thing.php:409 ../../Zotlabs/Module/Defperms.php:262
+#: ../../Zotlabs/Module/Locs.php:125 ../../Zotlabs/Module/Connect.php:107
+#: ../../Zotlabs/Module/Affinity.php:84
+#: ../../Zotlabs/Module/Filestorage.php:208
+#: ../../Zotlabs/Module/Pdledit.php:137 ../../Zotlabs/Module/Admin/Site.php:402
+#: ../../Zotlabs/Module/Admin/Accounts.php:309
+#: ../../Zotlabs/Module/Admin/Account_edit.php:73
+#: ../../Zotlabs/Module/Admin/Security.php:130
+#: ../../Zotlabs/Module/Admin/Channels.php:169
+#: ../../Zotlabs/Module/Admin/Features.php:66
+#: ../../Zotlabs/Module/Admin/Addons.php:446
+#: ../../Zotlabs/Module/Admin/Profs.php:179
+#: ../../Zotlabs/Module/Admin/Themes.php:174
+#: ../../Zotlabs/Module/Admin/Logs.php:85 ../../Zotlabs/Module/Mitem.php:259
+#: ../../Zotlabs/Module/Email_validation.php:41
+#: ../../Zotlabs/Module/Tokens.php:294 ../../Zotlabs/Module/Permcats.php:257
+#: ../../Zotlabs/Module/Settings/Channel.php:230
+#: ../../Zotlabs/Module/Settings/Editor.php:42
+#: ../../Zotlabs/Module/Settings/Photos.php:42
+#: ../../Zotlabs/Module/Settings/Profiles.php:52
+#: ../../Zotlabs/Module/Settings/Network.php:62
+#: ../../Zotlabs/Module/Settings/Directory.php:42
+#: ../../Zotlabs/Module/Settings/Channel_home.php:91
+#: ../../Zotlabs/Module/Settings/Calendar.php:42
+#: ../../Zotlabs/Module/Settings/Conversation.php:44
+#: ../../Zotlabs/Module/Settings/Features.php:48
+#: ../../Zotlabs/Module/Settings/Connections.php:42
+#: ../../Zotlabs/Module/Settings/Multifactor.php:85
+#: ../../Zotlabs/Module/Settings/Events.php:42
+#: ../../Zotlabs/Module/Settings/Account.php:109
+#: ../../Zotlabs/Module/Settings/Privacy.php:123
+#: ../../Zotlabs/Module/Settings/Display.php:188
+#: ../../Zotlabs/Module/Settings/Manage.php:43
+#: ../../Zotlabs/Module/Contactedit.php:415
+#: ../../Zotlabs/Module/Contactedit.php:448
+#: ../../extend/addon/hzaddons/cart/cart.php:1424
+#: ../../extend/addon/hzaddons/cart/submodules/orderoptions.php:312
+#: ../../extend/addon/hzaddons/cart/submodules/orderoptions.php:412
+#: ../../extend/addon/hzaddons/cart/submodules/subscriptions.php:410
+#: ../../extend/addon/hzaddons/cart/submodules/manualcat.php:248
+#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:645
+#: ../../extend/addon/hzaddons/cart/Settings/Cart.php:132
+#: ../../extend/addon/hzaddons/cart/Settings/Cart.php:142
+#: ../../extend/addon/hzaddons/hzfiles/hzfiles.php:86
+#: ../../extend/addon/hzaddons/openstreetmap/openstreetmap.php:147
+#: ../../extend/addon/hzaddons/socialauth/Mod_SocialAuth.php:341
+#: ../../extend/addon/hzaddons/pumpio/Mod_Pumpio.php:113
+#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:54
+#: ../../extend/addon/hzaddons/statusnet/Mod_Statusnet.php:191
+#: ../../extend/addon/hzaddons/statusnet/Mod_Statusnet.php:249
+#: ../../extend/addon/hzaddons/statusnet/Mod_Statusnet.php:304
+#: ../../extend/addon/hzaddons/statusnet/statusnet.php:602
+#: ../../extend/addon/hzaddons/ljpost/Mod_Ljpost.php:80
+#: ../../extend/addon/hzaddons/pageheader/Mod_Pageheader.php:52
+#: ../../extend/addon/hzaddons/nofed/Mod_Nofed.php:51
+#: ../../extend/addon/hzaddons/likebanner/likebanner.php:57
+#: ../../extend/addon/hzaddons/piwik/piwik.php:95
+#: ../../extend/addon/hzaddons/startpage/Mod_Startpage.php:71
+#: ../../extend/addon/hzaddons/twitter/Mod_Twitter.php:182
+#: ../../extend/addon/hzaddons/fuzzloc/Mod_Fuzzloc.php:54
+#: ../../extend/addon/hzaddons/diaspora/Mod_Diaspora.php:101
+#: ../../extend/addon/hzaddons/diaspora/diaspora.php:90
+#: ../../extend/addon/hzaddons/redphotos/redphotos.php:136
+#: ../../extend/addon/hzaddons/skeleton/Mod_Skeleton.php:49
+#: ../../extend/addon/hzaddons/dwpost/Mod_Dwpost.php:78
+#: ../../extend/addon/hzaddons/content_import/Mod_content_import.php:140
+#: ../../extend/addon/hzaddons/rtof/Mod_Rtof.php:70
+#: ../../extend/addon/hzaddons/redfiles/redfiles.php:124
+#: ../../extend/addon/hzaddons/mailtest/mailtest.php:100
+#: ../../extend/addon/hzaddons/redred/Mod_Redred.php:88
+#: ../../extend/addon/hzaddons/workflow/workflow.php:1490
+#: ../../extend/addon/hzaddons/workflow/workflow.php:1549
+#: ../../extend/addon/hzaddons/workflow/workflow.php:1668
+#: ../../extend/addon/hzaddons/workflow/workflow.php:2786
+#: ../../extend/addon/hzaddons/workflow/Settings/Mod_WorkflowSettings.php:94
+#: ../../extend/addon/hzaddons/nsfw/Mod_Nsfw.php:59
+#: ../../extend/addon/hzaddons/photocache/Mod_Photocache.php:63
+#: ../../extend/addon/hzaddons/logrot/logrot.php:35
+#: ../../extend/addon/hzaddons/xmpp/Mod_Xmpp.php:70
+#: ../../extend/addon/hzaddons/faces/Mod_Faces.php:141
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:218
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:907
+#: ../../extend/addon/hzaddons/wiki/Widget/Wiki_pages.php:72
+#: ../../extend/addon/hzaddons/libertree/Mod_Libertree.php:68
+#: ../../extend/addon/hzaddons/hubwall/hubwall.php:96
+#: ../../extend/addon/hzaddons/irc/irc.php:45
+#: ../../extend/addon/hzaddons/pubcrawl/Mod_Pubcrawl.php:61
+#: ../../extend/addon/hzaddons/flashcards/Mod_Flashcards.php:269
+#: ../../extend/addon/hzaddons/ijpost/Mod_Ijpost.php:72
+#: ../../extend/addon/hzaddons/wppost/Mod_Wppost.php:107
+msgid "Submit"
+msgstr "Lagre"
+
#: ../../include/js_strings.php:24
msgid "Please enter a link URL"
msgstr "Vennligst skriv inn en lenke URL"
@@ -5041,9 +2829,9 @@ msgstr ""
"Endringene er ikke lagret. Er du sikker på at du ønsker å forlate denne "
"siden?"
-#: ../../include/js_strings.php:26 ../../Zotlabs/Module/Pubsites.php:54
-#: ../../Zotlabs/Module/Cdav.php:1006 ../../Zotlabs/Module/Profiles.php:479
-#: ../../Zotlabs/Module/Profiles.php:750 ../../Zotlabs/Module/Locs.php:121
+#: ../../include/js_strings.php:26 ../../Zotlabs/Module/Profiles.php:476
+#: ../../Zotlabs/Module/Profiles.php:749 ../../Zotlabs/Module/Pubsites.php:55
+#: ../../Zotlabs/Module/Locs.php:121 ../../Zotlabs/Module/Cdav.php:1006
msgid "Location"
msgstr "Plassering"
@@ -5098,12 +2886,12 @@ msgstr ""
msgid "Pinned"
msgstr ""
-#: ../../include/js_strings.php:39 ../../Zotlabs/Lib/ThreadItem.php:473
+#: ../../include/js_strings.php:39 ../../Zotlabs/Lib/ThreadItem.php:498
msgid "Pin to the top"
msgstr ""
-#: ../../include/js_strings.php:40 ../../Zotlabs/Widget/Pinned.php:160
-#: ../../Zotlabs/Lib/ThreadItem.php:473
+#: ../../include/js_strings.php:40 ../../Zotlabs/Lib/ThreadItem.php:498
+#: ../../Zotlabs/Widget/Pinned.php:151
msgid "Unpin from the top"
msgstr ""
@@ -5305,515 +3093,509 @@ msgstr ""
msgid "Email address not valid"
msgstr ""
-#: ../../include/help.php:81
-msgid "Help:"
-msgstr "Hjelp:"
-
-#: ../../include/help.php:118 ../../include/help.php:126
-#: ../../include/nav.php:181 ../../include/nav.php:325
-#: ../../Zotlabs/Module/Layouts.php:184 ../../Zotlabs/Lib/Apps.php:353
-msgid "Help"
-msgstr "Hjelp"
-
-#: ../../include/help.php:130
-msgid "Not Found"
-msgstr "Ikke funnet"
+#: ../../include/channel.php:50
+msgid "Unable to obtain identity information from database"
+msgstr "Klarer ikke å få tak i identitetsinformasjon fra databasen"
-#: ../../include/photos.php:152
-#, php-format
-msgid "Image exceeds website size limit of %lu bytes"
-msgstr "Bilde overstiger nettstedets størrelsesbegrensning på %lu bytes"
+#: ../../include/channel.php:83
+msgid "Empty name"
+msgstr "Mangler navn"
-#: ../../include/photos.php:163
-msgid "Image file is empty."
-msgstr "Bildefilen er tom."
+#: ../../include/channel.php:86
+msgid "Name too long"
+msgstr "Navnet er for langt"
-#: ../../include/photos.php:197 ../../Zotlabs/Module/Profile_photo.php:275
-#: ../../Zotlabs/Module/Cover_photo.php:241
-msgid "Unable to process image"
-msgstr "Kan ikke behandle bildet"
+#: ../../include/channel.php:203
+msgid "No account identifier"
+msgstr "Ingen kontoidentifikator"
-#: ../../include/photos.php:323
-msgid "Photo storage failed."
-msgstr "Bildelagring mislyktes."
+#: ../../include/channel.php:215 ../../Zotlabs/Module/Register.php:96
+msgid "Nickname is required."
+msgstr "Kallenavn er påkrevd."
-#: ../../include/photos.php:372
-msgid "a new photo"
-msgstr "et nytt bilde"
+#: ../../include/channel.php:229 ../../include/channel.php:668
+#: ../../Zotlabs/Module/Register.php:101 ../../Zotlabs/Module/Changeaddr.php:46
+msgid "Reserved nickname. Please choose another."
+msgstr "Reservert kallenavn. Vennligst velg et annet."
-#: ../../include/photos.php:376
-#, php-format
-msgctxt "photo_upload"
-msgid "%1$s posted %2$s to %3$s"
-msgstr "%1$s la inn %2$s til %3$s"
+#: ../../include/channel.php:234 ../../include/channel.php:673
+#: ../../Zotlabs/Module/Register.php:106 ../../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/photos.php:721 ../../include/nav.php:457
-msgid "Photo Albums"
-msgstr "Fotoalbum"
+#: ../../include/channel.php:300
+msgid "Unable to retrieve created identity"
+msgstr "Klarer ikke å hente den lagede identiteten"
-#: ../../include/photos.php:722 ../../Zotlabs/Module/Photos.php:1338
-#: ../../Zotlabs/Module/Photos.php:1351 ../../Zotlabs/Module/Photos.php:1352
-msgid "Recent Photos"
-msgstr "Nye bilder"
+#: ../../include/channel.php:411
+msgid "Default Profile"
+msgstr "Standardprofil"
-#: ../../include/photos.php:726
-msgid "Upload New Photos"
-msgstr "Last opp nye bilder"
+#: ../../include/channel.php:465 ../../include/channel.php:468
+#: ../../include/selectors.php:138 ../../Zotlabs/Module/Connedit.php:581
+#: ../../Zotlabs/Module/Contactedit.php:283
+#: ../../Zotlabs/Widget/Affinity.php:38
+msgid "Friends"
+msgstr "Venner"
-#: ../../include/network.php:412
-msgid "url: "
+#: ../../include/channel.php:601 ../../include/channel.php:690
+msgid "Unable to retrieve modified identity"
msgstr ""
-#: ../../include/network.php:413
-msgid "error_code: "
+#: ../../include/channel.php:1382
+msgid "Requested channel is not available"
msgstr ""
-#: ../../include/network.php:414
-msgid "error_string: "
-msgstr ""
+#: ../../include/channel.php:1436 ../../Zotlabs/Module/Menu.php:92
+#: ../../Zotlabs/Module/Editblock.php:31 ../../Zotlabs/Module/Editlayout.php:31
+#: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Achievements.php:15
+#: ../../Zotlabs/Module/Editwebpage.php:32 ../../Zotlabs/Module/Hcard.php:12
+#: ../../Zotlabs/Module/Blocks.php:33 ../../Zotlabs/Module/Webpages.php:39
+#: ../../Zotlabs/Module/Connect.php:17 ../../Zotlabs/Module/Filestorage.php:59
+#: ../../Zotlabs/Module/Profile.php:27
+#: ../../extend/addon/hzaddons/articles/Mod_Articles.php:46
+#: ../../extend/addon/hzaddons/gallery/Mod_Gallery.php:49
+#: ../../extend/addon/hzaddons/cards/Mod_Cards.php:42
+msgid "Requested profile is not available."
+msgstr "Forespurt profil er ikke tilgjengelig."
-#: ../../include/network.php:415
-msgid "content-type: "
+#: ../../include/channel.php:1532 ../../Zotlabs/Module/Profiles.php:743
+msgid "Change profile photo"
+msgstr "Endre profilbilde"
+
+#: ../../include/channel.php:1539 ../../include/channel.php:1543
+#: ../../include/menu.php:120 ../../Zotlabs/Lib/Apps.php:617
+#: ../../Zotlabs/Lib/ThreadItem.php:162 ../../Zotlabs/Module/Menu.php:176
+#: ../../Zotlabs/Module/Editblock.php:114
+#: ../../Zotlabs/Module/Editlayout.php:114 ../../Zotlabs/Module/Oauth.php:171
+#: ../../Zotlabs/Module/Group.php:246 ../../Zotlabs/Module/Layouts.php:191
+#: ../../Zotlabs/Module/Oauth2.php:192 ../../Zotlabs/Module/Editwebpage.php:142
+#: ../../Zotlabs/Module/Thing.php:294 ../../Zotlabs/Module/Blocks.php:158
+#: ../../Zotlabs/Module/Webpages.php:250
+#: ../../Zotlabs/Module/Connections.php:338
+#: ../../Zotlabs/Module/Connections.php:387
+#: ../../Zotlabs/Module/Connections.php:408
+#: ../../Zotlabs/Module/Admin/Profs.php:176 ../../Zotlabs/Widget/Cdav.php:144
+#: ../../Zotlabs/Widget/Cdav.php:181
+#: ../../extend/addon/hzaddons/articles/Mod_Article_edit.php:97
+#: ../../extend/addon/hzaddons/articles/articles.php:75
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:214
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:381
+#: ../../extend/addon/hzaddons/cards/cards.php:74
+#: ../../extend/addon/hzaddons/cards/Mod_Card_edit.php:99
+msgid "Edit"
+msgstr "Endre"
+
+#: ../../include/channel.php:1540
+msgid "Create New Profile"
+msgstr "Lag ny profil"
+
+#: ../../include/channel.php:1558 ../../Zotlabs/Module/Profiles.php:841
+msgid "Profile Image"
+msgstr "Profilbilde"
+
+#: ../../include/channel.php:1561
+msgid "Visible to everybody"
msgstr ""
-#: ../../include/network.php:1767 ../../include/network.php:1768
-msgid "Friendica"
-msgstr "Friendica"
+#: ../../include/channel.php:1562 ../../Zotlabs/Module/Profiles.php:740
+#: ../../Zotlabs/Module/Profiles.php:845
+msgid "Edit visibility"
+msgstr "Endre synlighet"
-#: ../../include/network.php:1769
-msgid "OStatus"
-msgstr "OStatus"
+#: ../../include/channel.php:1644 ../../include/channel.php:1772
+msgid "Gender:"
+msgstr "Kjønn:"
-#: ../../include/network.php:1770
-msgid "GNU-Social"
+#: ../../include/channel.php:1645 ../../include/channel.php:1818
+msgid "Status:"
+msgstr "Status:"
+
+#: ../../include/channel.php:1646 ../../include/channel.php:1842
+msgid "Homepage:"
+msgstr "Hjemmeside:"
+
+#: ../../include/channel.php:1647 ../../include/channel.php:1844
+#: ../../Zotlabs/Module/Directory.php:368
+msgid "Hometown:"
+msgstr "Hjemby:"
+
+#: ../../include/channel.php:1648
+msgid "Online Now"
+msgstr "Online nå"
+
+#: ../../include/channel.php:1697
+msgid "This channel has not added a profile description yet"
+msgstr "Denne kanalen har ikke lagt til en profilbeskrivelse enda"
+
+#: ../../include/channel.php:1699
+msgid "Change your profile photo"
msgstr ""
-#: ../../include/network.php:1771
-msgid "RSS/Atom"
-msgstr "RSS/Atom"
+#: ../../include/channel.php:1727 ../../include/selectors.php:64
+#: ../../include/selectors.php:81
+#: ../../extend/addon/hzaddons/openid/Mod_Id.php:87
+msgid "Female"
+msgstr "Kvinnelig"
-#: ../../include/network.php:1774
-msgid "Diaspora"
-msgstr "Diaspora"
+#: ../../include/channel.php:1729 ../../include/selectors.php:64
+#: ../../include/selectors.php:81
+#: ../../extend/addon/hzaddons/openid/Mod_Id.php:85
+msgid "Male"
+msgstr "Mannlig"
-#: ../../include/network.php:1775
-msgid "Facebook"
-msgstr "Facebook"
+#: ../../include/channel.php:1731
+msgid "Trans"
+msgstr ""
-#: ../../include/network.php:1776
-msgid "Zot"
-msgstr "Zot"
+#: ../../include/channel.php:1733 ../../include/selectors.php:64
+msgid "Neuter"
+msgstr "Intetkjønn"
-#: ../../include/network.php:1777
-msgid "LinkedIn"
-msgstr "LinkedIn"
+#: ../../include/channel.php:1735 ../../include/selectors.php:64
+msgid "Non-specific"
+msgstr "Ubestemt"
-#: ../../include/network.php:1778
-msgid "XMPP/IM"
-msgstr "XMPP/IM"
+#: ../../include/channel.php:1770
+msgid "Full Name:"
+msgstr "Fullt navn:"
-#: ../../include/network.php:1779
-msgid "MySpace"
-msgstr "MySpace"
+#: ../../include/channel.php:1803
+msgid "j F, Y"
+msgstr "j F, Y"
-#: ../../include/activities.php:42
-msgid " and "
-msgstr " og "
+#: ../../include/channel.php:1804
+msgid "j F"
+msgstr "j F"
-#: ../../include/activities.php:50
-msgid "public profile"
-msgstr "offentlig profil"
+#: ../../include/channel.php:1811
+msgid "Birthday:"
+msgstr "Fødselsdag:"
-#: ../../include/activities.php:59
-#, php-format
-msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
-msgstr "%1$s endret %2$s til &ldquo;%3$s&rdquo;"
+#: ../../include/channel.php:1815 ../../Zotlabs/Module/Directory.php:349
+msgid "Age:"
+msgstr "Alder:"
-#: ../../include/activities.php:60
+#: ../../include/channel.php:1824
#, php-format
-msgid "Visit %1$s's %2$s"
-msgstr "Besøk %1$s sitt %2$s"
+msgid "for %1$d %2$s"
+msgstr "for %1$d %2$s"
+
+#: ../../include/channel.php:1836
+msgid "Tags:"
+msgstr "Merkelapper:"
+
+#: ../../include/channel.php:1840
+msgid "Sexual Preference:"
+msgstr "Seksuell preferanse:"
+
+#: ../../include/channel.php:1846
+msgid "Political Views:"
+msgstr "Politiske synspunkter:"
+
+#: ../../include/channel.php:1848
+msgid "Religion:"
+msgstr "Religion:"
+
+#: ../../include/channel.php:1850 ../../Zotlabs/Module/Directory.php:370
+msgid "About:"
+msgstr "Om:"
+
+#: ../../include/channel.php:1852
+msgid "Hobbies/Interests:"
+msgstr "Hobbyer/interesser:"
+
+#: ../../include/channel.php:1854
+msgid "Likes:"
+msgstr "Liker:"
+
+#: ../../include/channel.php:1856
+msgid "Dislikes:"
+msgstr "Misliker:"
+
+#: ../../include/channel.php:1858
+msgid "Contact information and Social Networks:"
+msgstr "Kontaktinformasjon og sosiale nettverk:"
+
+#: ../../include/channel.php:1860
+msgid "My other channels:"
+msgstr "Mine andre kanaler:"
+
+#: ../../include/channel.php:1862
+msgid "Musical interests:"
+msgstr "Musikkinteresse:"
+
+#: ../../include/channel.php:1864
+msgid "Books, literature:"
+msgstr "Bøker, litteratur:"
+
+#: ../../include/channel.php:1866
+msgid "Television:"
+msgstr "TV:"
+
+#: ../../include/channel.php:1868
+msgid "Film/dance/culture/entertainment:"
+msgstr "Film/dans/kultur/underholdning:"
+
+#: ../../include/channel.php:1870
+msgid "Love/Romance:"
+msgstr "Kjærlighet/romantikk:"
+
+#: ../../include/channel.php:1872
+msgid "Work/employment:"
+msgstr "Arbeid/sysselsetting:"
+
+#: ../../include/channel.php:1874
+msgid "School/education:"
+msgstr "Skole/utdannelse:"
+
+#: ../../include/channel.php:1895 ../../Zotlabs/Lib/Apps.php:366
+#: ../../Zotlabs/Module/Profperm.php:114
+msgid "Profile"
+msgstr "Profil"
-#: ../../include/activities.php:63
+#: ../../include/channel.php:1897
+msgid "Like this thing"
+msgstr "Lik denne tingen"
+
+#: ../../include/channel.php:1898
+msgid "Export"
+msgstr "Eksport"
+
+#: ../../include/channel.php:2351
+msgid "cover photo"
+msgstr "forsidebilde"
+
+#: ../../include/channel.php:2632 ../../boot.php:1761
+#: ../../Zotlabs/Module/Rmagic.php:96
+msgid "Remote Authentication"
+msgstr "Fjernautentisering"
+
+#: ../../include/channel.php:2633 ../../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:2634 ../../Zotlabs/Module/Rmagic.php:98
+msgid "Authenticate"
+msgstr "Autentiser"
+
+#: ../../include/channel.php:2794 ../../Zotlabs/Module/Admin/Accounts.php:184
#, php-format
-msgid "%1$s has an updated %2$s, changing %3$s."
-msgstr "%1$s har oppdatert %2$s, endret %3$s."
+msgid "Account '%s' deleted"
+msgstr "Kontoen '%s' slettet"
-#: ../../include/contact_widgets.php:11
+#: ../../include/contact_widgets.php:13
#, php-format
msgid "%d invitation available"
msgid_plural "%d invitations available"
msgstr[0] "%d invitasjon tilgjengelig"
msgstr[1] "%d invitasjoner tilgjengelig"
-#: ../../include/contact_widgets.php:16 ../../include/acl_selectors.php:145
-#: ../../Zotlabs/Module/Admin/Site.php:419
+#: ../../include/contact_widgets.php:18 ../../include/acl_selectors.php:145
+#: ../../Zotlabs/Module/Admin/Site.php:406
msgid "Advanced"
msgstr "Avansert"
-#: ../../include/contact_widgets.php:19
+#: ../../include/contact_widgets.php:21
msgid "Find Channels"
msgstr "Finn kanaler"
-#: ../../include/contact_widgets.php:20
+#: ../../include/contact_widgets.php:22
msgid "Enter name or interest"
msgstr "Skriv navn eller interesse"
-#: ../../include/contact_widgets.php:21
+#: ../../include/contact_widgets.php:23
msgid "Connect/Follow"
msgstr "Forbindelse/Følg"
-#: ../../include/contact_widgets.php:22
+#: ../../include/contact_widgets.php:24
msgid "Examples: Robert Morgenstein, Fishing"
msgstr "Eksempler: Ola Nordmann, fisking"
-#: ../../include/contact_widgets.php:23 ../../Zotlabs/Module/Directory.php:435
+#: ../../include/contact_widgets.php:25 ../../Zotlabs/Module/Directory.php:435
#: ../../Zotlabs/Module/Directory.php:440
#: ../../Zotlabs/Module/Connections.php:407
msgid "Find"
msgstr "Finn"
-#: ../../include/contact_widgets.php:24 ../../Zotlabs/Module/Directory.php:439
-#: ../../Zotlabs/Module/Suggest.php:77
+#: ../../include/contact_widgets.php:26 ../../Zotlabs/Module/Suggest.php:77
+#: ../../Zotlabs/Module/Directory.php:439
msgid "Channel Suggestions"
msgstr "Kanalforslag"
-#: ../../include/contact_widgets.php:26
+#: ../../include/contact_widgets.php:28
msgid "Random Profile"
msgstr "Tilfeldig profil"
-#: ../../include/contact_widgets.php:27
+#: ../../include/contact_widgets.php:29
msgid "Invite Friends"
msgstr "Inviter venner"
-#: ../../include/contact_widgets.php:29
+#: ../../include/contact_widgets.php:31
msgid "Advanced example: name=fred and country=iceland"
msgstr "Avansert eksempel: navn=fred og land=island"
-#: ../../include/contact_widgets.php:182
+#: ../../include/contact_widgets.php:58 ../../include/contact_widgets.php:121
+#: ../../include/contact_widgets.php:155 ../../Zotlabs/Widget/Filer.php:36
+#: ../../Zotlabs/Widget/Appcategories.php:52
+#: ../../extend/addon/hzaddons/articles/Widget/Articles_categories.php:83
+#: ../../extend/addon/hzaddons/cards/Widget/Cards_categories.php:83
+msgid "Everything"
+msgstr "Alt"
+
+#: ../../include/contact_widgets.php:118 ../../include/contact_widgets.php:152
+#: ../../include/taxonomy.php:425 ../../include/taxonomy.php:507
+#: ../../include/taxonomy.php:527 ../../include/taxonomy.php:548
+#: ../../Zotlabs/Storage/Browser.php:293 ../../Zotlabs/Storage/Browser.php:392
+#: ../../Zotlabs/Storage/Browser.php:407 ../../Zotlabs/Module/Cdav.php:1062
+#: ../../extend/addon/hzaddons/articles/Widget/Articles_categories.php:80
+#: ../../extend/addon/hzaddons/cards/Widget/Cards_categories.php:80
+msgid "Categories"
+msgstr "Kategorier"
+
+#: ../../include/contact_widgets.php:185
msgid "Common Connections"
msgstr ""
-#: ../../include/contact_widgets.php:186
+#: ../../include/contact_widgets.php:189
#, php-format
msgid "View all %d common connections"
msgstr ""
-#: ../../include/language.php:446
-msgid "Select an alternate language"
-msgstr "Velg et annet språk"
-
-#: ../../include/import.php:30
-msgid "Unable to import a removed channel."
-msgstr ""
-
-#: ../../include/import.php:56
+#: ../../include/security.php:633
msgid ""
-"Cannot create a duplicate channel identifier on this system. Import failed."
+"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 ""
-"Kan ikke lage en kopi av kanal-identifikatoren på dette systemet. Import "
-"mislyktes."
-
-#: ../../include/import.php:122
-msgid "Cloned channel not found. Import failed."
-msgstr "Klonet kanal ble ikke funnet. Import mislyktes."
-
-#: ../../include/nav.php:96
-msgid "Remote authentication"
-msgstr "Fjernautentisering"
-
-#: ../../include/nav.php:96
-msgid "Click to authenticate to your home hub"
-msgstr "Klikk for å godkjennes mot din hjemme-hub"
-
-#: ../../include/nav.php:102 ../../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"
-
-#: ../../include/nav.php:102
-msgid "Manage your channels"
-msgstr "Behandle kanalene dine"
-
-#: ../../include/nav.php:105 ../../Zotlabs/Widget/Settings_menu.php:71
-#: ../../Zotlabs/Widget/Newmember.php:58
-#: ../../Zotlabs/Module/Admin/Themes.php:125
-#: ../../Zotlabs/Module/Admin/Addons.php:348 ../../Zotlabs/Lib/Apps.php:344
-msgid "Settings"
-msgstr "Innstillinger"
-
-#: ../../include/nav.php:105
-msgid "Account/Channel Settings"
-msgstr "Konto-/kanalinnstillinger"
-
-#: ../../include/nav.php:111 ../../include/nav.php:141
-#: ../../include/nav.php:162 ../../boot.php:1745
-msgid "Logout"
-msgstr "Logg ut"
-
-#: ../../include/nav.php:111 ../../include/nav.php:141
-msgid "End this session"
-msgstr "Avslutt denne økten"
-
-#: ../../include/nav.php:114
-msgid "Your profile page"
-msgstr "Din profilside"
-
-#: ../../include/nav.php:117 ../../include/channel.php:1530
-#: ../../Zotlabs/Module/Profiles.php:851
-msgid "Edit Profiles"
-msgstr "Endre profiler"
-
-#: ../../include/nav.php:117
-msgid "Manage/Edit profiles"
-msgstr "Håndter/endre profiler"
-
-#: ../../include/nav.php:119 ../../Zotlabs/Widget/Newmember.php:40
-msgid "Edit your profile"
-msgstr "Rediger profil"
-
-#: ../../include/nav.php:126 ../../include/nav.php:130
-#: ../../Zotlabs/Lib/Apps.php:341 ../../boot.php:1746
-msgid "Login"
-msgstr "Logg inn"
-
-#: ../../include/nav.php:126 ../../include/nav.php:130
-msgid "Sign in"
-msgstr "Logg på"
+"Skjemaets sikkerhetspollett var ikke gyldig. Dette skjedde antakelig fordi "
+"skjemaet har vært åpnet for lenge (>3 timer) før det ble sendt inn."
-#: ../../include/nav.php:160
-msgid "Take me home"
+#: ../../include/taxonomy.php:326
+msgid "Trending"
msgstr ""
-#: ../../include/nav.php:162
-msgid "Log me out of this site"
-msgstr ""
+#: ../../include/taxonomy.php:326 ../../include/taxonomy.php:465
+#: ../../include/taxonomy.php:486 ../../Zotlabs/Widget/Tagcloud.php:27
+msgid "Tags"
+msgstr "Merkelapper"
-#: ../../include/nav.php:167 ../../Zotlabs/Module/Register.php:542
-#: ../../boot.php:1723
-msgid "Register"
-msgstr "Registrer"
+#: ../../include/taxonomy.php:566
+msgid "Keywords"
+msgstr "Nøkkelord"
-#: ../../include/nav.php:167
-msgid "Create an account"
-msgstr "Lag en konto"
+#: ../../include/taxonomy.php:587
+msgid "have"
+msgstr "har"
-#: ../../include/nav.php:181
-msgid "Help and documentation"
-msgstr "Hjelp og dokumentasjon"
+#: ../../include/taxonomy.php:587
+msgid "has"
+msgstr "har"
-#: ../../include/nav.php:195
-msgid "Search site @name, !forum, #tag, ?docs, content"
-msgstr "Søk etter @navn, !forum, #emne, ?dokumentasjon eller innhold"
+#: ../../include/taxonomy.php:588
+msgid "want"
+msgstr "ønsker"
-#: ../../include/nav.php:201 ../../Zotlabs/Widget/Admin.php:61
-msgid "Admin"
-msgstr "Administrator"
+#: ../../include/taxonomy.php:588
+msgid "wants"
+msgstr "ønsker"
-#: ../../include/nav.php:201
-msgid "Site Setup and Configuration"
-msgstr "Nettstedsoppsett og -konfigurasjon"
+#: ../../include/taxonomy.php:589 ../../Zotlabs/Lib/ThreadItem.php:335
+msgid "like"
+msgstr "liker"
-#: ../../include/nav.php:329 ../../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
-#, fuzzy
-msgid "Loading"
-msgstr "Laster..."
+#: ../../include/taxonomy.php:589
+msgid "likes"
+msgstr "liker"
-#: ../../include/nav.php:334
-msgid "@name, #tag, ?doc, content"
-msgstr "@navn, #merkelapp, ?dokumentasjon, innhold"
+#: ../../include/taxonomy.php:590 ../../Zotlabs/Lib/ThreadItem.php:336
+msgid "dislike"
+msgstr "misliker"
-#: ../../include/nav.php:335
-msgid "Please wait..."
-msgstr "Vennligst vent..."
+#: ../../include/taxonomy.php:590
+msgid "dislikes"
+msgstr "misliker"
-#: ../../include/nav.php:341 ../../Zotlabs/Lib/Apps.php:328
-msgid "Apps"
-msgstr "Apper"
+#: ../../include/connections.php:174
+msgid "New window"
+msgstr "Nytt vindu"
-#: ../../include/nav.php:342
-msgid "Channel Apps"
-msgstr ""
+#: ../../include/connections.php:175
+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/nav.php:343
-msgid "System Apps"
-msgstr ""
+#: ../../include/acl_selectors.php:33
+#: ../../Zotlabs/Lib/PermissionDescription.php:34
+msgid "Visible to your default audience"
+msgstr "Synlig for ditt standard publikum"
-#: ../../include/nav.php:344
-msgid "Pinned Apps"
+#: ../../include/acl_selectors.php:100
+msgid "Profile-Based Privacy Groups"
msgstr ""
-#: ../../include/nav.php:345
-msgid "Featured Apps"
-msgstr "Fremhevede apper"
-
-#: ../../include/nav.php:431 ../../Zotlabs/Module/Admin/Channels.php:154
-#: ../../Zotlabs/Lib/Apps.php:348
-msgid "Channel"
-msgstr "Kanal"
-
-#: ../../include/nav.php:434
-msgid "Status Messages and Posts"
-msgstr "Statusmeldinger og -innlegg"
-
-#: ../../include/nav.php:444 ../../Zotlabs/Module/Help.php:85
-msgid "About"
-msgstr "Om"
-
-#: ../../include/nav.php:447
-msgid "Profile Details"
-msgstr "Profildetaljer"
-
-#: ../../include/nav.php:462 ../../Zotlabs/Widget/Channel_activities.php:125
-#: ../../Zotlabs/Widget/Notifications.php:108
-#: ../../Zotlabs/Module/Fbrowser.php:85 ../../Zotlabs/Lib/Apps.php:345
-#: ../../Zotlabs/Storage/Browser.php:351
-msgid "Files"
-msgstr "Filer"
-
-#: ../../include/nav.php:465
-msgid "Files and Storage"
-msgstr "Filer og lagring"
-
-#: ../../include/nav.php:487 ../../include/nav.php:490
-#: ../../Zotlabs/Widget/Chatroom_list.php:22 ../../Zotlabs/Lib/Apps.php:335
-msgid "Chatrooms"
-msgstr "Chatrom"
+#: ../../include/acl_selectors.php:119
+msgid "Private Forum"
+msgstr ""
-#: ../../include/nav.php:500 ../../Zotlabs/Module/Bookmarks.php:90
-#: ../../Zotlabs/Lib/Apps.php:334
-msgid "Bookmarks"
-msgstr "Bokmerker"
+#: ../../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/nav.php:503
-msgid "Saved Bookmarks"
-msgstr "Lagrede bokmerker"
+#: ../../include/acl_selectors.php:136
+#: ../../Zotlabs/Lib/PermissionDescription.php:107
+#: ../../Zotlabs/Module/Settings/Privacy.php:66
+msgid "Only me"
+msgstr "Kun meg"
-#: ../../include/nav.php:511 ../../Zotlabs/Widget/Channel_activities.php:168
-#: ../../Zotlabs/Module/Webpages.php:247 ../../Zotlabs/Lib/Apps.php:346
-msgid "Webpages"
-msgstr "Websider"
+#: ../../include/acl_selectors.php:143
+msgid "Share with"
+msgstr "Del med"
-#: ../../include/nav.php:514
-msgid "View Webpages"
-msgstr ""
+#: ../../include/acl_selectors.php:144
+msgid "Custom selection"
+msgstr "Tilpasset utvalg"
-#: ../../include/nav.php:525 ../../Zotlabs/Lib/Apps.php:347
-msgid "Wiki"
+#: ../../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/auth.php:197
-msgid "Delegation session ended."
+#: ../../include/acl_selectors.php:147 ../../Zotlabs/Module/Authorize.php:32
+msgid "Allow"
msgstr ""
-#: ../../include/auth.php:201
-msgid "Logged out."
-msgstr "Logget ut."
-
-#: ../../include/auth.php:308
-msgid "Email validation is incomplete. Please check your email."
+#: ../../include/acl_selectors.php:148
+msgid "Don't allow"
msgstr ""
-#: ../../include/auth.php:324
-msgid "Failed authentication"
-msgstr "Mislykket autentisering"
-
-#: ../../include/datetime.php:58 ../../Zotlabs/Widget/Newmember.php:56
-#: ../../Zotlabs/Module/Profiles.php:752
-msgid "Miscellaneous"
-msgstr "Forskjellig"
-
-#: ../../include/datetime.php:140
-#, fuzzy
-msgid "Birthday"
-msgstr "Fødselsdag:"
-
-#: ../../include/datetime.php:140
-msgid "Age: "
-msgstr "Alder: "
-
-#: ../../include/datetime.php:140
-msgid "YYYY-MM-DD or MM-DD"
-msgstr "YYYY-MM-DD eller MM-DD"
-
-#: ../../include/datetime.php:238 ../../boot.php:2752
-msgid "never"
-msgstr "aldri"
-
-#: ../../include/datetime.php:244
-msgid "less than a second ago"
-msgstr "for mindre enn ett sekund siden"
-
-#: ../../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"
-
-#: ../../include/datetime.php:273
-msgctxt "relative_date"
-msgid "year"
-msgid_plural "years"
-msgstr[0] "år"
-msgstr[1] "år"
-
-#: ../../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/acl_selectors.php:154 ../../Zotlabs/Module/Photos.php:671
+#: ../../Zotlabs/Module/Photos.php:1045 ../../Zotlabs/Module/Chat.php:240
+#: ../../Zotlabs/Module/Thing.php:350 ../../Zotlabs/Module/Thing.php:402
+#: ../../Zotlabs/Module/Filestorage.php:195
+#: ../../extend/addon/hzaddons/flashcards/Mod_Flashcards.php:261
+msgid "Permissions"
+msgstr "Tillatelser"
-#: ../../include/datetime.php:520
-#, php-format
-msgid "%1$s's birthday"
-msgstr "%1$s sin fødselsdag"
+#: ../../include/acl_selectors.php:156 ../../Zotlabs/Lib/ThreadItem.php:531
+#: ../../Zotlabs/Storage/Browser.php:415 ../../Zotlabs/Module/Photos.php:1266
+#: ../../Zotlabs/Widget/Pinned.php:154
+msgid "Close"
+msgstr "Lukk"
-#: ../../include/datetime.php:521
+#: ../../include/acl_selectors.php:181
#, php-format
-msgid "Happy Birthday %1$s"
-msgstr "Gratulerer med dagen, %1$s"
+msgid ""
+"Post permissions %s cannot be changed %s after a post is shared.</br />These "
+"permissions set who is allowed to view the post."
+msgstr ""
+"Tillatelsene til innlegget %s kan ikke endres %s etter at innlegget er delt."
+"</br />Disse tillatelsene avgjør hvem som kan se innlegget."
#: ../../include/cdav.php:157
msgid "INVALID EVENT DISMISSED!"
@@ -5824,16 +3606,6 @@ msgstr ""
msgid "Summary: "
msgstr "Sammendrag"
-#: ../../include/cdav.php:158 ../../include/cdav.php:159
-#: ../../include/cdav.php:167 ../../include/conversation.php:1217
-#: ../../Zotlabs/Widget/Album.php:90 ../../Zotlabs/Widget/Pinned.php:275
-#: ../../Zotlabs/Widget/Portfolio.php:99
-#: ../../Zotlabs/Module/Embedphotos.php:177 ../../Zotlabs/Module/Photos.php:788
-#: ../../Zotlabs/Module/Photos.php:1245 ../../Zotlabs/Lib/Activity.php:1681
-#: ../../Zotlabs/Lib/Apps.php:1152 ../../Zotlabs/Lib/Apps.php:1236
-msgid "Unknown"
-msgstr "Ukjent"
-
#: ../../include/cdav.php:159
#, fuzzy
msgid "Date: "
@@ -5852,353 +3624,9 @@ msgstr ""
msgid "Name: "
msgstr "Navn"
-#: ../../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:501
-msgid "This is an unsaved preview"
-msgstr ""
-
-#: ../../include/conversation.php:658 ../../Zotlabs/Module/Photos.php:1108
-msgctxt "title"
-msgid "Likes"
-msgstr "Liker"
-
-#: ../../include/conversation.php:659 ../../Zotlabs/Module/Photos.php:1108
-msgctxt "title"
-msgid "Dislikes"
-msgstr "Liker ikke"
-
-#: ../../include/conversation.php:660 ../../Zotlabs/Widget/Pinned.php:82
-#: ../../Zotlabs/Module/Photos.php:1109
-msgctxt "title"
-msgid "Agree"
-msgstr "Enig"
-
-#: ../../include/conversation.php:661 ../../Zotlabs/Widget/Pinned.php:83
-#: ../../Zotlabs/Module/Photos.php:1109
-msgctxt "title"
-msgid "Disagree"
-msgstr "Uenig"
-
-#: ../../include/conversation.php:662 ../../Zotlabs/Widget/Pinned.php:84
-#: ../../Zotlabs/Module/Photos.php:1109
-msgctxt "title"
-msgid "Abstain"
-msgstr "Avstår"
-
-#: ../../include/conversation.php:663 ../../Zotlabs/Widget/Pinned.php:71
-#: ../../Zotlabs/Module/Photos.php:1110
-msgctxt "title"
-msgid "Attending"
-msgstr "Deltar"
-
-#: ../../include/conversation.php:664 ../../Zotlabs/Widget/Pinned.php:72
-#: ../../Zotlabs/Module/Photos.php:1110
-msgctxt "title"
-msgid "Not attending"
-msgstr "Deltar ikke"
-
-#: ../../include/conversation.php:665 ../../Zotlabs/Widget/Pinned.php:73
-#: ../../Zotlabs/Module/Photos.php:1110
-msgctxt "title"
-msgid "Might attend"
-msgstr "Deltar kanskje"
-
-#: ../../include/conversation.php:735
-msgid "Select"
-msgstr "Velg"
-
-#: ../../include/conversation.php:742 ../../Zotlabs/Lib/ThreadItem.php:263
-msgid "Toggle Star Status"
-msgstr "Skru av og på stjernestatus"
-
-#: ../../include/conversation.php:748
-msgid "Private Message"
-msgstr "Privat melding"
-
-#: ../../include/conversation.php:757 ../../Zotlabs/Widget/Pinned.php:93
-#: ../../Zotlabs/Lib/ThreadItem.php:273
-msgid "Message signature validated"
-msgstr "Innleggets signatur er bekreftet"
-
-#: ../../include/conversation.php:758 ../../Zotlabs/Widget/Pinned.php:94
-#: ../../Zotlabs/Lib/ThreadItem.php:274
-msgid "Message signature incorrect"
-msgstr "Innleggets signatur er feil"
-
-#: ../../include/conversation.php:798
-#: ../../Zotlabs/Module/Admin/Accounts.php:318
-#: ../../Zotlabs/Module/Connections.php:358
-#: ../../Zotlabs/Module/Connections.php:409
-#: ../../Zotlabs/Lib/ThreadItem.php:508
-msgid "Approve"
-msgstr "Godkjenn"
-
-#: ../../include/conversation.php:804
-#, php-format
-msgid "View %s's profile @ %s"
-msgstr "Vis %s sin profile @ %s"
-
-#: ../../include/conversation.php:826
-msgid "Categories:"
-msgstr "Kategorier:"
-
-#: ../../include/conversation.php:827
-msgid "Filed under:"
-msgstr "Sortert under:"
-
-#: ../../include/conversation.php:833 ../../Zotlabs/Widget/Pinned.php:137
-#: ../../Zotlabs/Lib/ThreadItem.php:430
-#, php-format
-msgid "from %s"
-msgstr "fra %s"
-
-#: ../../include/conversation.php:836 ../../Zotlabs/Widget/Pinned.php:140
-#: ../../Zotlabs/Lib/ThreadItem.php:433
-#, php-format
-msgid "last edited: %s"
-msgstr "sist endret: %s"
-
-#: ../../include/conversation.php:837 ../../Zotlabs/Widget/Pinned.php:141
-#: ../../Zotlabs/Lib/ThreadItem.php:434
-#, php-format
-msgid "Expires: %s"
-msgstr "Utløper: %s"
-
-#: ../../include/conversation.php:854 ../../Zotlabs/Module/Photos.php:1074
-#: ../../Zotlabs/Lib/ThreadItem.php:502
-msgid "Please wait"
-msgstr "Vennligst vent"
-
-#: ../../include/conversation.php:955
-msgid "remove"
-msgstr "fjern"
-
-#: ../../include/conversation.php:959
-msgid "Loading..."
-msgstr "Laster..."
-
-#: ../../include/conversation.php:960 ../../Zotlabs/Lib/ThreadItem.php:290
-msgid "Conversation Features"
-msgstr "Samtaleinnstillinger"
-
-#: ../../include/conversation.php:961
-msgid "Delete Selected Items"
-msgstr "Slett valgte elementer"
-
-#: ../../include/conversation.php:997
-msgid "View Source"
-msgstr "Vis kilde"
-
-#: ../../include/conversation.php:1007
-msgid "Follow Thread"
-msgstr "Følg tråd"
-
-#: ../../include/conversation.php:1016
-msgid "Unfollow Thread"
-msgstr "Ikke følg tråd"
-
-#: ../../include/conversation.php:1108 ../../Zotlabs/Module/Connedit.php:501
-msgid "Recent Activity"
-msgstr "Nylig aktivitet"
-
-#: ../../include/conversation.php:1120 ../../include/connections.php:141
-#: ../../include/channel.php:1616 ../../Zotlabs/Widget/Suggestions.php:51
-#: ../../Zotlabs/Widget/Follow.php:37 ../../Zotlabs/Module/Directory.php:371
-#: ../../Zotlabs/Module/Connections.php:365 ../../Zotlabs/Module/Suggest.php:69
-msgid "Connect"
-msgstr "Koble"
-
-#: ../../include/conversation.php:1132
-msgid "Edit Connection"
-msgstr "Endre forbindelse"
-
-#: ../../include/conversation.php:1144 ../../Zotlabs/Module/Poke.php:181
-#: ../../Zotlabs/Module/Poke.php:185 ../../Zotlabs/Lib/Apps.php:356
-msgid "Poke"
-msgstr "Prikk"
-
-#: ../../include/conversation.php:1219
-#, fuzzy
-#| msgid "Remove this file"
-msgid "Approve this item"
-msgstr "Fjern denne filen"
-
-#: ../../include/conversation.php:1219
-#, fuzzy
-#| msgid "Delete this item?"
-msgid "Delete this item"
-msgstr "Slett dette elementet?"
-
-#: ../../include/conversation.php:1273
-#, php-format
-msgid "%s likes this."
-msgstr "%s liker dette."
-
-#: ../../include/conversation.php:1273
-#, php-format
-msgid "%s doesn't like this."
-msgstr "%s liker ikke dette."
-
-#: ../../include/conversation.php:1277
-#, php-format
-msgid "<span %1$s>%2$d people</span> like this."
-msgid_plural "<span %1$s>%2$d people</span> like this."
-msgstr[0] "<span %1$s>%2$d person</span> liker dette."
-msgstr[1] "<span %1$s>%2$d personer</span> liker dette."
-
-#: ../../include/conversation.php:1279
-#, php-format
-msgid "<span %1$s>%2$d people</span> don't like this."
-msgid_plural "<span %1$s>%2$d people</span> don't like this."
-msgstr[0] "<span %1$s>%2$d person</span> liker ikke dette."
-msgstr[1] "<span %1$s>%2$d personer</span> liker ikke dette."
-
-#: ../../include/conversation.php:1285
-msgid "and"
-msgstr "og"
-
-#: ../../include/conversation.php:1288
-#, 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:1289
-#, php-format
-msgid "%s like this."
-msgstr "%s liker dette."
-
-#: ../../include/conversation.php:1289
-#, php-format
-msgid "%s don't like this."
-msgstr "%s liker ikke dette."
-
-#: ../../include/conversation.php:1479
-msgid "Toggle poll"
-msgstr "Spørreskjema (på/av)"
-
-#: ../../include/conversation.php:1480
-msgid "Option"
-msgstr "Valg"
-
-#: ../../include/conversation.php:1481
-msgid "Add option"
-msgstr "Legg til valg"
-
-#: ../../include/conversation.php:1482
-msgid "Minutes"
-msgstr "Minutter"
-
-#: ../../include/conversation.php:1482
-#, fuzzy
-msgid "Hours"
-msgstr "timer"
-
-#: ../../include/conversation.php:1482
-#, fuzzy
-msgid "Days"
-msgstr "dager"
-
-#: ../../include/conversation.php:1483
-msgid "Allow multiple answers"
-msgstr "Tillat flere svar"
-
-#: ../../include/conversation.php:1493
-msgid "Summary (optional)"
-msgstr "Sammendrag (valgfritt)"
-
-#: ../../include/conversation.php:1768 ../../include/taxonomy.php:675
-#: ../../include/channel.php:1779 ../../Zotlabs/Module/Photos.php:1128
-#: ../../Zotlabs/Lib/ThreadItem.php:233
-msgctxt "noun"
-msgid "Like"
-msgid_plural "Likes"
-msgstr[0] "Liker"
-msgstr[1] "Liker"
-
-#: ../../include/conversation.php:1771 ../../Zotlabs/Module/Photos.php:1133
-#: ../../Zotlabs/Lib/ThreadItem.php:239
-msgctxt "noun"
-msgid "Dislike"
-msgid_plural "Dislikes"
-msgstr[0] "Liker ikke"
-msgstr[1] "Liker ikke"
-
-#: ../../include/conversation.php:1774
-msgctxt "noun"
-msgid "Attending"
-msgid_plural "Attending"
-msgstr[0] "Deltar"
-msgstr[1] "Deltar"
-
-#: ../../include/conversation.php:1777
-msgctxt "noun"
-msgid "Not Attending"
-msgid_plural "Not Attending"
-msgstr[0] "Deltar ikke"
-msgstr[1] "Deltar ikke"
-
-#: ../../include/conversation.php:1780
-msgctxt "noun"
-msgid "Undecided"
-msgid_plural "Undecided"
-msgstr[0] "Ikke bestemt"
-msgstr[1] "Ikke bestemt"
-
-#: ../../include/conversation.php:1783
-msgctxt "noun"
-msgid "Agree"
-msgid_plural "Agrees"
-msgstr[0] "Enig"
-msgstr[1] "Enige"
-
-#: ../../include/conversation.php:1786
-msgctxt "noun"
-msgid "Disagree"
-msgid_plural "Disagrees"
-msgstr[0] "Uenig"
-msgstr[1] "Uenige"
-
-#: ../../include/conversation.php:1789
-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 ""
+msgstr "Velg en profil for denne kontakten"
#: ../../include/selectors.php:45
msgid "Frequently"
@@ -6256,14 +3684,6 @@ msgstr "Transseksuell"
msgid "Hermaphrodite"
msgstr "Hermafroditt"
-#: ../../include/selectors.php:64 ../../include/channel.php:1724
-msgid "Neuter"
-msgstr "Intetkjønn"
-
-#: ../../include/selectors.php:64 ../../include/channel.php:1726
-msgid "Non-specific"
-msgstr "Ubestemt"
-
#: ../../include/selectors.php:64
msgid "Undecided"
msgstr "Ubestemt"
@@ -6356,13 +3776,6 @@ msgstr "Utro"
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/Frynsegoder"
@@ -6447,1996 +3860,1827 @@ msgstr "Bryr meg ikke"
msgid "Ask me"
msgstr "Spør meg"
-#: ../../include/connections.php:165
-msgid "New window"
-msgstr "Nytt vindu"
+#: ../../include/zid.php:417
+#, php-format
+msgid "OpenWebAuth: %1$s welcomes %2$s"
+msgstr "OpenWebAuth: %1$s ønsker %2$s velkommen"
-#: ../../include/connections.php:166
-msgid "Open the selected location in a different window or browser tab"
-msgstr "Åpne det valgte stedet i et annet vindu eller nettleser-fane"
+#: ../../view/theme/redbasic/php/config.php:19
+#: ../../view/theme/redbasic/php/config.php:22
+msgid "Focus (Hubzilla default)"
+msgstr "Focus (Hubzilla standard)"
-#: ../../include/group.php:23
-msgid ""
-"A deleted group with this name was revived. Existing item permissions "
-"<strong>may</strong> apply to this group and any future members. If this is "
-"not what you intended, please create another group with a different name."
+#: ../../view/theme/redbasic/php/config.php:192
+msgid "Theme settings"
+msgstr "Instillinger for utseende"
+
+#: ../../view/theme/redbasic/php/config.php:193
+msgid "Dark style"
msgstr ""
-"En slettet gruppe med dette navnet ble gjenopprettet. Eksisterende "
-"tillatelser for elementet <strong>kan</strong> 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"
+#: ../../view/theme/redbasic/php/config.php:194
+msgid "Light style"
+msgstr ""
-#: ../../include/group.php:305
-msgid "edit"
-msgstr "endre"
+#: ../../view/theme/redbasic/php/config.php:195
+msgid "Common settings"
+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:369
-msgid "Privacy Groups"
-msgstr "Personverngrupper"
+#: ../../view/theme/redbasic/php/config.php:196
+msgid "Primary theme color"
+msgstr ""
-#: ../../include/group.php:328
-msgid "Edit group"
-msgstr "Endre gruppe"
+#: ../../view/theme/redbasic/php/config.php:196
+#: ../../view/theme/redbasic/php/config.php:197
+#: ../../view/theme/redbasic/php/config.php:198
+#: ../../view/theme/redbasic/php/config.php:199
+#: ../../view/theme/redbasic/php/config.php:200
+#, fuzzy
+#| msgid "Leave empty for default width"
+msgid "Current color, leave empty for default"
+msgstr "La feltet stå tomt for å bruke standard bredde"
-#: ../../include/group.php:329
-msgid "Manage privacy groups"
+#: ../../view/theme/redbasic/php/config.php:197
+msgid "Success theme color"
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"
+#: ../../view/theme/redbasic/php/config.php:198
+#, fuzzy
+#| msgid "Link hover color"
+msgid "Info theme color"
+msgstr "Lenkefarge når musepekeren er over"
-#: ../../include/taxonomy.php:324
-msgid "Trending"
-msgstr ""
+#: ../../view/theme/redbasic/php/config.php:199
+#, fuzzy
+#| msgid "Link hover color"
+msgid "Warning theme color"
+msgstr "Lenkefarge når musepekeren er over"
-#: ../../include/taxonomy.php:324 ../../include/taxonomy.php:463
-#: ../../include/taxonomy.php:484 ../../Zotlabs/Widget/Tagcloud.php:27
-msgid "Tags"
-msgstr "Merkelapper"
+#: ../../view/theme/redbasic/php/config.php:200
+#, fuzzy
+#| msgid "Link hover color"
+msgid "Danger theme color"
+msgstr "Lenkefarge når musepekeren er over"
-#: ../../include/taxonomy.php:564
-msgid "Keywords"
-msgstr "Nøkkelord"
+#: ../../view/theme/redbasic/php/config.php:201
+#, fuzzy
+#| msgid "Default photo upload folder"
+msgid "Default to dark mode"
+msgstr "Standard mappe for opplasting av bilder"
-#: ../../include/taxonomy.php:585
-msgid "have"
-msgstr "har"
+#: ../../view/theme/redbasic/php/config.php:202
+msgid "Always use light icons for navbar"
+msgstr ""
-#: ../../include/taxonomy.php:585
-msgid "has"
-msgstr "har"
+#: ../../view/theme/redbasic/php/config.php:202
+msgid "Enable this option if you use a dark navbar color in light mode"
+msgstr ""
-#: ../../include/taxonomy.php:586
-msgid "want"
-msgstr "ønsker"
+#: ../../view/theme/redbasic/php/config.php:203
+msgid "Narrow navbar"
+msgstr "Smal navigasjonslinje"
-#: ../../include/taxonomy.php:586
-msgid "wants"
-msgstr "ønsker"
+#: ../../view/theme/redbasic/php/config.php:204
+msgid "Navigation bar background color"
+msgstr "Navigasjonslinjens bakgrunnsfarge"
-#: ../../include/taxonomy.php:587 ../../Zotlabs/Lib/ThreadItem.php:310
-msgid "like"
-msgstr "liker"
+#: ../../view/theme/redbasic/php/config.php:205
+#, fuzzy
+#| msgid "Navigation bar background color"
+msgid "Dark navigation bar background color"
+msgstr "Navigasjonslinjens bakgrunnsfarge"
-#: ../../include/taxonomy.php:587
-msgid "likes"
-msgstr "liker"
+#: ../../view/theme/redbasic/php/config.php:206
+msgid "Set the background color"
+msgstr "Angi bakgrunnsfargen"
-#: ../../include/taxonomy.php:588 ../../Zotlabs/Lib/ThreadItem.php:311
-msgid "dislike"
-msgstr "misliker"
+#: ../../view/theme/redbasic/php/config.php:207
+#, fuzzy
+#| msgid "Set the background color"
+msgid "Set the dark background color"
+msgstr "Angi bakgrunnsfargen"
-#: ../../include/taxonomy.php:588
-msgid "dislikes"
-msgstr "misliker"
+#: ../../view/theme/redbasic/php/config.php:208
+msgid "Set the background image"
+msgstr "Angi bakgrunnsbilde"
-#: ../../include/items.php:1234
-msgid "Visible to anybody on the internet."
-msgstr "Synlig for enhver på Internett."
+#: ../../view/theme/redbasic/php/config.php:209
+#, fuzzy
+#| msgid "Set the background image"
+msgid "Set the dark background image"
+msgstr "Angi bakgrunnsbilde"
-#: ../../include/items.php:1236
-msgid "Visible to you only."
-msgstr "Synlig bare for deg."
+#: ../../view/theme/redbasic/php/config.php:210
+msgid "Set font-size for the entire application"
+msgstr "Angi skriftstørrelsen for hele programmet"
-#: ../../include/items.php:1238
-msgid "Visible to anybody in this network."
-msgstr "Synlig for enhver i dette nettverket."
+#: ../../view/theme/redbasic/php/config.php:210
+msgid "Examples: 1rem, 100%, 16px"
+msgstr "For eksempel: 1rem, 100%, 16px"
-#: ../../include/items.php:1240
-msgid "Visible to anybody authenticated."
-msgstr "Synlig for enhver som er autentisert."
+#: ../../view/theme/redbasic/php/config.php:211
+#, fuzzy
+#| msgid "Set radius of corners"
+msgid "Set radius of corners in rem"
+msgstr "Angi hjørneradius"
-#: ../../include/items.php:1242
-#, php-format
-msgid "Visible to anybody on %s."
-msgstr "Synlig for alle på %s."
+#: ../../view/theme/redbasic/php/config.php:211
+#, fuzzy
+#| msgid "Leave empty for default width"
+msgid "Leave empty for default radius"
+msgstr "La feltet stå tomt for å bruke standard bredde"
-#: ../../include/items.php:1244
-msgid "Visible to all connections."
-msgstr "Synlig for alle forbindelser."
+#: ../../view/theme/redbasic/php/config.php:212
+msgid "Set maximum width of content region in rem"
+msgstr "Set maksbredde for hovedregionen i rem"
-#: ../../include/items.php:1246
-msgid "Visible to approved connections."
-msgstr "Synlig for godkjente forbindelser."
+#: ../../view/theme/redbasic/php/config.php:212
+msgid "Leave empty for default width"
+msgstr "La feltet stå tomt for å bruke standard bredde"
-#: ../../include/items.php:1248
-msgid "Visible to specific connections."
-msgstr "Synlig for spesifikke forbindelser."
+#: ../../view/theme/redbasic/php/config.php:213
+msgid "Set size of conversation author photo"
+msgstr "Angi størrelsen for samtalens forfatterbilde"
-#: ../../include/items.php:3373 ../../Zotlabs/Module/Share.php:104
-#, php-format
-msgid "&#x1f501; Repeated %1$s's %2$s"
-msgstr ""
+#: ../../view/theme/redbasic/php/config.php:213
+#: ../../view/theme/redbasic/php/config.php:214
+#, fuzzy
+#| msgid "Leave empty for default width"
+msgid "Leave empty for default size"
+msgstr "La feltet stå tomt for å bruke standard bredde"
-#: ../../include/items.php:4455 ../../Zotlabs/Module/Group.php:62
-#: ../../Zotlabs/Module/Group.php:206
-msgid "Privacy group not found."
-msgstr "Personverngruppen ble ikke funnet."
+#: ../../view/theme/redbasic/php/config.php:214
+msgid "Set size of followup author photos"
+msgstr "Angi størrelsen på forfatterbilder ved oppfølging"
-#: ../../include/items.php:4471
-msgid "Privacy group is empty."
-msgstr "Personverngruppen er tom."
+#: ../../view/theme/redbasic/php/config.php:215
+msgid "Show advanced settings"
+msgstr "Vis avanserte innstillinger"
-#: ../../include/items.php:4478
-#, php-format
-msgid "Privacy group: %s"
-msgstr "Personverngruppe: %s"
+#: ../../boot.php:1736
+msgid "Create an account to access services and applications"
+msgstr ""
-#: ../../include/items.php:4488
-#, php-format
-msgid "Connection: %s"
-msgstr "Forbindelse: %s"
+#: ../../boot.php:1754
+msgid "Email or nickname"
+msgstr "Epost eller brukernavn"
-#: ../../include/items.php:4490
-msgid "Connection not found."
-msgstr "Forbindelsen ble ikke funnet."
+#: ../../boot.php:1754 ../../extend/addon/hzaddons/redred/Mod_Redred.php:73
+#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:54
+msgid "Nickname"
+msgstr "Kallenavn"
-#: ../../include/items.php:4837 ../../Zotlabs/Module/Cover_photo.php:297
-msgid "female"
-msgstr "kvinne"
+#: ../../boot.php:1764
+msgid "Password"
+msgstr "Passord"
-#: ../../include/items.php:4838 ../../Zotlabs/Module/Cover_photo.php:298
-#, php-format
-msgid "%1$s updated her %2$s"
-msgstr "%1$s oppdaterte %2$s sitt"
+#: ../../boot.php:1765
+msgid "Remember me"
+msgstr "Husk meg"
-#: ../../include/items.php:4839 ../../Zotlabs/Module/Cover_photo.php:299
-msgid "male"
-msgstr "mann"
+#: ../../boot.php:1768
+msgid "Forgot your password?"
+msgstr "Glemt passordet ditt?"
-#: ../../include/items.php:4840 ../../Zotlabs/Module/Cover_photo.php:300
-#, php-format
-msgid "%1$s updated his %2$s"
-msgstr "%1$s oppdaterte %2$s sitt"
+#: ../../boot.php:1769 ../../Zotlabs/Module/Lostpass.php:91
+msgid "Password Reset"
+msgstr "Tilbakestill passord"
-#: ../../include/items.php:4842 ../../Zotlabs/Module/Cover_photo.php:302
+#: ../../boot.php:2647
#, php-format
-msgid "%1$s updated their %2$s"
-msgstr "%1$s oppdaterte %2$s deres"
+msgid "[$Projectname] Website SSL error for %s"
+msgstr ""
-#: ../../include/items.php:4844
-msgid "profile photo"
-msgstr "profilbilde"
+#: ../../boot.php:2652
+msgid "Website SSL certificate is not valid. Please correct."
+msgstr "Nettstedets SSL-sertifikat er ikke gyldig. Vennligst fiks dette."
-#: ../../include/items.php:5171
+#: ../../boot.php:2768
#, php-format
-msgid "[Edited %s]"
+msgid "[$Projectname] Cron tasks not running on %s"
msgstr ""
-#: ../../include/items.php:5171
-msgctxt "edit_activity"
-msgid "Post"
-msgstr "Innlegg"
-
-#: ../../include/items.php:5171
-msgctxt "edit_activity"
-msgid "Comment"
-msgstr "Kommentar"
+#: ../../boot.php:2773
+msgid "Cron/Scheduled tasks not running."
+msgstr "Cron/planlagte oppgaver kjører ikke."
-#: ../../include/account.php:38
-msgid "The provided email address is not valid"
+#: ../../Zotlabs/Lib/Techlevels.php:10
+msgid "0. Beginner/Basic"
msgstr ""
-#: ../../include/account.php:41
-msgid "The provided email domain is not among those allowed on this site"
+#: ../../Zotlabs/Lib/Techlevels.php:11
+msgid "1. Novice - not skilled but willing to learn"
msgstr ""
-#: ../../include/account.php:48
-msgid "The provided email address is already registered at this site"
+#: ../../Zotlabs/Lib/Techlevels.php:12
+msgid "2. Intermediate - somewhat comfortable"
msgstr ""
-#: ../../include/account.php:55
-msgid ""
-"There is a pending registration for this address - click \"Register\" to "
-"continue verification"
+#: ../../Zotlabs/Lib/Techlevels.php:13
+msgid "3. Advanced - very comfortable"
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"
+#: ../../Zotlabs/Lib/Techlevels.php:14
+msgid "4. Expert - I can write computer code"
msgstr ""
-#: ../../include/account.php:1186 ../../include/account.php:1188
-msgid "Click here to upgrade."
-msgstr "Klikk her for å oppgradere."
-
-#: ../../include/account.php:1194
-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:1199
-msgid "This action is not available under your subscription plan."
-msgstr "Denne handlingen er ikke tilgjengelig i din abonnementsplan."
-
-#: ../../include/account.php:1259
-msgid "open"
+#: ../../Zotlabs/Lib/Techlevels.php:15
+msgid "5. Wizard - I probably know more than you do"
msgstr ""
-#: ../../include/account.php:1259
-msgid "closed"
-msgstr ""
+#: ../../Zotlabs/Lib/Apps.php:330
+msgid "Affinity Tool"
+msgstr "Nærhetsverktøy"
-#: ../../include/account.php:1266
-msgid "Registration is currently"
+#: ../../Zotlabs/Lib/Apps.php:331
+#: ../../extend/addon/hzaddons/articles/articles.php:48
+#: ../../extend/addon/hzaddons/articles/articles.php:160
+#: ../../extend/addon/hzaddons/articles/Mod_Articles.php:228
+msgid "Articles"
msgstr ""
-#: ../../include/account.php:1275
-msgid "please come back"
+#: ../../Zotlabs/Lib/Apps.php:332
+#: ../../extend/addon/hzaddons/cards/cards.php:48
+#: ../../extend/addon/hzaddons/cards/cards.php:160
+#: ../../extend/addon/hzaddons/cards/Mod_Cards.php:209
+msgid "Cards"
msgstr ""
-#: ../../include/photo/photo_driver.php:450
-#: ../../Zotlabs/Module/Profile_photo.php:167
-#: ../../Zotlabs/Module/Profile_photo.php:337
-msgid "Profile Photos"
-msgstr "Profilbilder"
+#: ../../Zotlabs/Lib/Apps.php:333
+msgid "Site Admin"
+msgstr "Nettstedsadministrator"
-#: ../../include/attach.php:273 ../../include/attach.php:324
-#: ../../include/attach.php:426
-msgid "Item was not found."
-msgstr "Elementet ble ikke funnet."
+#: ../../Zotlabs/Lib/Apps.php:334
+#: ../../extend/addon/hzaddons/buglink/buglink.php:16
+msgid "Report Bug"
+msgstr ""
-#: ../../include/attach.php:290
-msgid "Unknown error."
+#: ../../Zotlabs/Lib/Apps.php:337
+msgid "Content Filter"
msgstr ""
-#: ../../include/attach.php:621
-msgid "No source file."
-msgstr "Ingen kildefil."
+#: ../../Zotlabs/Lib/Apps.php:338
+#: ../../extend/addon/hzaddons/content_import/Mod_content_import.php:133
+msgid "Content Import"
+msgstr ""
-#: ../../include/attach.php:643
-msgid "Cannot locate file to replace"
-msgstr "Kan ikke finne filen som skal byttes ut"
+#: ../../Zotlabs/Lib/Apps.php:340
+msgid "Remote Diagnostics"
+msgstr ""
-#: ../../include/attach.php:662
-msgid "Cannot locate file to revise/update"
-msgstr "Finner ikke filen som skal revideres/oppdateres"
+#: ../../Zotlabs/Lib/Apps.php:341
+msgid "Suggest Channels"
+msgstr "Foreslå kanaler"
-#: ../../include/attach.php:808
-#, php-format
-msgid "File exceeds size limit of %d"
-msgstr "Filens størrelse overgår grensen på %d"
+#: ../../Zotlabs/Lib/Apps.php:343
+msgid "Channel Manager"
+msgstr "Kanalstyring"
-#: ../../include/attach.php:829
-#, 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/Lib/Apps.php:344
+msgid "Stream"
+msgstr "Tidslinje"
-#: ../../include/attach.php:1019
-msgid "File upload failed. Possible system limit or action terminated."
+#: ../../Zotlabs/Lib/Apps.php:348
+msgid "Wiki"
msgstr ""
-"Mislyktes med å laste opp filen. Mulig systemgrense eller handling avbrutt."
-#: ../../include/attach.php:1048
-msgid "Stored file could not be verified. Upload failed."
-msgstr "Lagret fil kunne ikke bekreftes. Opplasting mislyktes."
+#: ../../Zotlabs/Lib/Apps.php:355
+msgid "Mail"
+msgstr "Melding"
-#: ../../include/attach.php:1120 ../../include/attach.php:1136
-msgid "Path not available."
-msgstr "Stien er ikke tilgjengelig."
+#: ../../Zotlabs/Lib/Apps.php:356
+msgid "Chat"
+msgstr "Chat"
-#: ../../include/attach.php:1184 ../../include/attach.php:1349
-msgid "Empty pathname"
-msgstr "Tomt sti-navn"
+#: ../../Zotlabs/Lib/Apps.php:358
+msgid "Probe"
+msgstr "Undersøk"
-#: ../../include/attach.php:1210
-msgid "duplicate filename or path"
-msgstr "duplikat av filnavn eller sti"
+#: ../../Zotlabs/Lib/Apps.php:359
+msgid "Suggest"
+msgstr "Forreslå"
-#: ../../include/attach.php:1238
-msgid "Path not found."
-msgstr "Stien ble ikke funnet."
+#: ../../Zotlabs/Lib/Apps.php:360
+msgid "Random Channel"
+msgstr "Tilfeldig kanal"
-#: ../../include/attach.php:1305
-msgid "mkdir failed."
-msgstr "mkdir mislyktes."
+#: ../../Zotlabs/Lib/Apps.php:361
+msgid "Invite"
+msgstr "Inviter"
-#: ../../include/attach.php:1309
-msgid "database storage failed."
-msgstr "databaselagring mislyktes."
+#: ../../Zotlabs/Lib/Apps.php:362 ../../Zotlabs/Widget/Admin.php:31
+msgid "Features"
+msgstr "Funksjoner"
-#: ../../include/attach.php:1355
-msgid "Empty path"
-msgstr "Tom sti"
+#: ../../Zotlabs/Lib/Apps.php:363
+#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:69
+msgid "Language"
+msgstr "Språk"
-#: ../../include/attach.php:2147
-#, fuzzy, php-format
-#| msgid "Files: shared with me"
-msgid "%s shared an %s with you"
-msgstr "Filer: delt med meg"
+#: ../../Zotlabs/Lib/Apps.php:364 ../../Zotlabs/Storage/Browser.php:411
+msgid "Post"
+msgstr "Innlegg"
-#: ../../include/attach.php:2147
-#, php-format
-msgid "%s shared a %s with you"
+#: ../../Zotlabs/Lib/Apps.php:369
+msgid "Notifications"
+msgstr "Varsler"
+
+#: ../../Zotlabs/Lib/Apps.php:370
+msgid "Order Apps"
msgstr ""
-#: ../../include/attach.php:2147
-#, fuzzy
-#| msgid "Image"
-msgid "image"
-msgstr "Bilde"
+#: ../../Zotlabs/Lib/Apps.php:371
+msgid "CardDAV"
+msgstr ""
-#: ../../include/bookmarks.php:34
-#, php-format
-msgid "%1$s's bookmarks"
-msgstr "%1$s sine bokmerker"
+#: ../../Zotlabs/Lib/Apps.php:372 ../../Zotlabs/Module/Sources.php:105
+msgid "Channel Sources"
+msgstr "Kanalkilder"
-#: ../../include/bbcode.php:233 ../../include/bbcode.php:939
-#: ../../include/bbcode.php:1560 ../../include/bbcode.php:1568
-msgid "Image/photo"
-msgstr "Bilde/fotografi"
+#: ../../Zotlabs/Lib/Apps.php:373 ../../Zotlabs/Module/Tokens.php:288
+msgid "Guest Access"
+msgstr ""
-#: ../../include/bbcode.php:280 ../../include/bbcode.php:1585
-msgid "Encrypted content"
-msgstr "Kryptert innhold"
+#: ../../Zotlabs/Lib/Apps.php:374 ../../Zotlabs/Widget/Notes.php:38
+#: ../../extend/addon/hzaddons/workflow/workflow.php:2661
+msgid "Notes"
+msgstr "Merknader"
-#: ../../include/bbcode.php:336
-#, php-format
-msgid "Install %1$s element %2$s"
+#: ../../Zotlabs/Lib/Apps.php:375
+msgid "OAuth Apps Manager"
msgstr ""
-#: ../../include/bbcode.php:340
-#, php-format
-msgid ""
-"This post contains an installable %s element, however you lack permissions "
-"to install it on this site."
+#: ../../Zotlabs/Lib/Apps.php:376
+msgid "OAuth2 Apps Manager"
msgstr ""
-"Dette innlegget inneholder det installerbare elementet %s, men du mangler "
-"tillatelse til å installere det på dette nettstedet."
-#: ../../include/bbcode.php:350 ../../Zotlabs/Module/Impel.php:47
-msgid "webpage"
-msgstr "nettside"
-
-#: ../../include/bbcode.php:353 ../../Zotlabs/Module/Impel.php:57
-msgid "layout"
-msgstr "layout"
+#: ../../Zotlabs/Lib/Apps.php:377
+msgid "PDL Editor"
+msgstr ""
-#: ../../include/bbcode.php:356 ../../Zotlabs/Module/Impel.php:52
-msgid "block"
-msgstr "byggekloss"
+#: ../../Zotlabs/Lib/Apps.php:378 ../../Zotlabs/Module/Permcats.php:248
+msgid "Contact Roles"
+msgstr ""
-#: ../../include/bbcode.php:359 ../../Zotlabs/Module/Impel.php:64
-msgid "menu"
-msgstr "meny"
+#: ../../Zotlabs/Lib/Apps.php:379 ../../Zotlabs/Module/Pubstream.php:109
+#: ../../Zotlabs/Widget/Notifications.php:154
+msgid "Public Stream"
+msgstr ""
-#: ../../include/bbcode.php:562
-msgid "card"
+#: ../../Zotlabs/Lib/Apps.php:380
+msgid "My Chatrooms"
msgstr ""
-#: ../../include/bbcode.php:564
-msgid "article"
+#: ../../Zotlabs/Lib/Apps.php:381
+msgid "Channel Export"
msgstr ""
-#: ../../include/bbcode.php:570 ../../include/markdown.php:206
-#, php-format
-msgid "%1$s wrote the following %2$s %3$s"
-msgstr "%1$s skrev følgende %2$s %3$s"
+#: ../../Zotlabs/Lib/Apps.php:562 ../../Zotlabs/Module/Oauth.php:53
+#: ../../Zotlabs/Module/Oauth.php:135 ../../Zotlabs/Module/Oauth2.php:58
+#: ../../Zotlabs/Module/Oauth2.php:142 ../../Zotlabs/Module/Connedit.php:748
+#: ../../Zotlabs/Module/Admin/Addons.php:461 ../../Zotlabs/Module/Cdav.php:1044
+#: ../../Zotlabs/Module/Cdav.php:1384
+msgid "Update"
+msgstr "Oppdater"
-#: ../../include/bbcode.php:647 ../../include/bbcode.php:655
-msgid "Click to open/close"
-msgstr "Klikk for å åpne/lukke"
+#: ../../Zotlabs/Lib/Apps.php:562 ../../Zotlabs/Module/Admin/Addons.php:430
+msgid "Install"
+msgstr "Installer"
-#: ../../include/bbcode.php:655 ../../include/markdown.php:259
-msgid "spoiler"
-msgstr ""
+#: ../../Zotlabs/Lib/Apps.php:592 ../../Zotlabs/Lib/Apps.php:614
+msgid "Purchase"
+msgstr "Kjøp"
-#: ../../include/bbcode.php:668
-msgid "View article"
+#: ../../Zotlabs/Lib/Apps.php:619
+msgid "Undelete"
msgstr ""
-#: ../../include/bbcode.php:668
-msgid "View summary"
-msgstr ""
+#: ../../Zotlabs/Lib/Apps.php:627
+msgid "Add to app-tray"
+msgstr "Legg til i meny"
-#: ../../include/bbcode.php:1536
-msgid "$1 wrote:"
-msgstr "$1 skrev:"
+#: ../../Zotlabs/Lib/Apps.php:628
+msgid "Remove from app-tray"
+msgstr "Fjern fra meny"
-#: ../../include/channel.php:48
-msgid "Unable to obtain identity information from database"
-msgstr "Klarer ikke å få tak i identitetsinformasjon fra databasen"
+#: ../../Zotlabs/Lib/Apps.php:629
+msgid "Pin to navbar"
+msgstr "Fest til navigasjonslinjen"
-#: ../../include/channel.php:81
-msgid "Empty name"
-msgstr "Mangler navn"
+#: ../../Zotlabs/Lib/Apps.php:630
+msgid "Unpin from navbar"
+msgstr "Fjern fra navigasjonslinjen"
-#: ../../include/channel.php:84
-msgid "Name too long"
-msgstr "Navnet er for langt"
+#: ../../Zotlabs/Lib/Libzotdir.php:164
+msgid "Directory Options"
+msgstr "Kataloginnstillinger"
-#: ../../include/channel.php:201
-msgid "No account identifier"
-msgstr "Ingen kontoidentifikator"
+#: ../../Zotlabs/Lib/Libzotdir.php:166
+msgid "Safe Mode"
+msgstr "Trygg modus"
-#: ../../include/channel.php:213 ../../Zotlabs/Module/Register.php:95
-msgid "Nickname is required."
-msgstr "Kallenavn er påkrevd."
+#: ../../Zotlabs/Lib/Libzotdir.php:167
+msgid "Public Forums Only"
+msgstr "Bare offentlige forum"
-#: ../../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."
+#: ../../Zotlabs/Lib/Libzotdir.php:169
+msgid "This Website Only"
+msgstr "Kun dette nettstedet"
-#: ../../include/channel.php:232 ../../include/channel.php:664
-#: ../../Zotlabs/Module/Register.php:105 ../../Zotlabs/Module/Changeaddr.php:51
+#: ../../Zotlabs/Lib/AccessList.php:26
msgid ""
-"Nickname has unsupported characters or is already being used on this site."
+"A deleted privacy group with this name was revived. Existing item "
+"permissions <strong>may</strong> 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 ""
-"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"
+#: ../../Zotlabs/Lib/AccessList.php:268
+msgid "Select a privacy group"
msgstr ""
-#: ../../include/channel.php:1373
-msgid "Requested channel is not available"
-msgstr ""
+#: ../../Zotlabs/Lib/ThreadItem.php:110
+msgid "Restricted message"
+msgstr "Begrenset melding"
-#: ../../include/channel.php:1523 ../../Zotlabs/Module/Profiles.php:744
-msgid "Change profile photo"
-msgstr "Endre profilbilde"
+#: ../../Zotlabs/Lib/ThreadItem.php:117
+msgid "Direct message"
+msgstr "Direktemelding"
-#: ../../include/channel.php:1531
-msgid "Create New Profile"
-msgstr "Lag ny profil"
+#: ../../Zotlabs/Lib/ThreadItem.php:122
+msgid "Public Policy"
+msgstr ""
-#: ../../include/channel.php:1549 ../../Zotlabs/Module/Profiles.php:841
-msgid "Profile Image"
-msgstr "Profilbilde"
+#: ../../Zotlabs/Lib/ThreadItem.php:156
+msgid "Privacy conflict. Discretion advised."
+msgstr ""
-#: ../../include/channel.php:1552
-msgid "Visible to everybody"
+#: ../../Zotlabs/Lib/ThreadItem.php:187 ../../Zotlabs/Storage/Browser.php:373
+msgid "Admin Delete"
msgstr ""
-#: ../../include/channel.php:1553 ../../Zotlabs/Module/Profiles.php:741
-#: ../../Zotlabs/Module/Profiles.php:845
-msgid "Edit visibility"
-msgstr "Endre synlighet"
+#: ../../Zotlabs/Lib/ThreadItem.php:190 ../../Zotlabs/Module/Filer.php:55
+msgid "Save to Folder"
+msgstr "Lagre i mappe"
-#: ../../include/channel.php:1635 ../../include/channel.php:1763
-msgid "Gender:"
-msgstr "Kjønn:"
+#: ../../Zotlabs/Lib/ThreadItem.php:217 ../../Zotlabs/Widget/Pinned.php:77
+msgid "I will attend"
+msgstr "Jeg vil delta"
-#: ../../include/channel.php:1636 ../../include/channel.php:1807
-msgid "Status:"
-msgstr "Status:"
+#: ../../Zotlabs/Lib/ThreadItem.php:217 ../../Zotlabs/Widget/Pinned.php:77
+msgid "I will not attend"
+msgstr "Jeg deltar ikke"
-#: ../../include/channel.php:1637 ../../include/channel.php:1831
-msgid "Homepage:"
-msgstr "Hjemmeside:"
+#: ../../Zotlabs/Lib/ThreadItem.php:217 ../../Zotlabs/Widget/Pinned.php:77
+msgid "I might attend"
+msgstr "Jeg vil kanskje delta"
-#: ../../include/channel.php:1638 ../../include/channel.php:1833
-#: ../../Zotlabs/Module/Directory.php:368
-msgid "Hometown:"
-msgstr "Hjemby:"
+#: ../../Zotlabs/Lib/ThreadItem.php:335 ../../Zotlabs/Module/Photos.php:1074
+msgid "I like this (toggle)"
+msgstr "Jeg liker dette (skru av og på)"
-#: ../../include/channel.php:1639
-msgid "Online Now"
-msgstr "Online nå"
+#: ../../Zotlabs/Lib/ThreadItem.php:336 ../../Zotlabs/Module/Photos.php:1075
+msgid "I don't like this (toggle)"
+msgstr "Jeg liker ikke dette (skru av og på)"
-#: ../../include/channel.php:1688
-msgid "This channel has not added a profile description yet"
-msgstr ""
+#: ../../Zotlabs/Lib/ThreadItem.php:337
+#, fuzzy
+#| msgid "Delete this menu"
+msgid "Reply to this comment"
+msgstr "Slett denne menyen"
-#: ../../include/channel.php:1690
-msgid "Change your profile photo"
+#: ../../Zotlabs/Lib/ThreadItem.php:337
+msgid "reply"
msgstr ""
-#: ../../include/channel.php:1722
-msgid "Trans"
+#: ../../Zotlabs/Lib/ThreadItem.php:337
+msgid "Reply to"
msgstr ""
-#: ../../include/channel.php:1761
-msgid "Full Name:"
-msgstr "Fullt navn:"
-
-#: ../../include/channel.php:1768
-msgid "Like this channel"
-msgstr "Lik denne kanalen"
+#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../Zotlabs/Widget/Pinned.php:95
+msgid "share"
+msgstr "del"
-#: ../../include/channel.php:1792
-msgid "j F, Y"
-msgstr "j F, Y"
+#: ../../Zotlabs/Lib/ThreadItem.php:348
+msgid "Repeat"
+msgstr ""
-#: ../../include/channel.php:1793
-msgid "j F"
-msgstr "j F"
+#: ../../Zotlabs/Lib/ThreadItem.php:348
+msgid "repeat"
+msgstr ""
-#: ../../include/channel.php:1800
-msgid "Birthday:"
-msgstr "Fødselsdag:"
+#: ../../Zotlabs/Lib/ThreadItem.php:359
+msgid "Delivery Report"
+msgstr "Leveringsrapport"
-#: ../../include/channel.php:1804 ../../Zotlabs/Module/Directory.php:349
-msgid "Age:"
-msgstr "Alder:"
+#: ../../Zotlabs/Lib/ThreadItem.php:380
+#, fuzzy, php-format
+#| msgid "%d comment"
+#| msgid_plural "%d comments"
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] "%d kommentar"
+msgstr[1] "%d kommentarer"
-#: ../../include/channel.php:1813
+#: ../../Zotlabs/Lib/ThreadItem.php:381
#, php-format
-msgid "for %1$d %2$s"
-msgstr "for %1$d %2$s"
-
-#: ../../include/channel.php:1825
-msgid "Tags:"
-msgstr "Merkelapper:"
-
-#: ../../include/channel.php:1829
-msgid "Sexual Preference:"
-msgstr "Seksuell preferanse:"
-
-#: ../../include/channel.php:1835
-msgid "Political Views:"
-msgstr "Politiske synspunkter:"
-
-#: ../../include/channel.php:1837
-msgid "Religion:"
-msgstr "Religion:"
-
-#: ../../include/channel.php:1839 ../../Zotlabs/Module/Directory.php:370
-msgid "About:"
-msgstr "Om:"
-
-#: ../../include/channel.php:1841
-msgid "Hobbies/Interests:"
-msgstr "Hobbyer/interesser:"
-
-#: ../../include/channel.php:1843
-msgid "Likes:"
-msgstr "Liker:"
+msgid "%d unseen"
+msgstr "%d uleste"
-#: ../../include/channel.php:1845
-msgid "Dislikes:"
-msgstr "Misliker:"
+#: ../../Zotlabs/Lib/ThreadItem.php:431
+msgid "Forum"
+msgstr ""
-#: ../../include/channel.php:1847
-msgid "Contact information and Social Networks:"
-msgstr "Kontaktinformasjon og sosiale nettverk:"
+#: ../../Zotlabs/Lib/ThreadItem.php:438
+msgid "to"
+msgstr "til"
-#: ../../include/channel.php:1849
-msgid "My other channels:"
-msgstr "Mine andre kanaler:"
+#: ../../Zotlabs/Lib/ThreadItem.php:439 ../../Zotlabs/Widget/Pinned.php:123
+#: ../../Zotlabs/Widget/Messages.php:146 ../../Zotlabs/Widget/Messages.php:149
+msgid "via"
+msgstr "via"
-#: ../../include/channel.php:1851
-msgid "Musical interests:"
-msgstr "Musikkinteresse:"
+#: ../../Zotlabs/Lib/ThreadItem.php:440
+msgid "Wall-to-Wall"
+msgstr "Vegg-til-vegg"
-#: ../../include/channel.php:1853
-msgid "Books, literature:"
-msgstr "Bøker, litteratur:"
+#: ../../Zotlabs/Lib/ThreadItem.php:441
+msgid "via Wall-To-Wall:"
+msgstr "via vegg-til-vegg:"
-#: ../../include/channel.php:1855
-msgid "Television:"
-msgstr "TV:"
+#: ../../Zotlabs/Lib/ThreadItem.php:469
+msgid "Attend"
+msgstr ""
-#: ../../include/channel.php:1857
-msgid "Film/dance/culture/entertainment:"
-msgstr "Film/dans/kultur/underholdning:"
+#: ../../Zotlabs/Lib/ThreadItem.php:470 ../../Zotlabs/Widget/Pinned.php:137
+msgid "Attendance Options"
+msgstr ""
-#: ../../include/channel.php:1859
-msgid "Love/Romance:"
-msgstr "Kjærlighet/romantikk:"
+#: ../../Zotlabs/Lib/ThreadItem.php:472 ../../Zotlabs/Widget/Pinned.php:138
+msgid "Voting Options"
+msgstr ""
-#: ../../include/channel.php:1861
-msgid "Work/employment:"
-msgstr "Arbeid/sysselsetting:"
+#: ../../Zotlabs/Lib/ThreadItem.php:487
+msgid "Go to previous comment"
+msgstr ""
-#: ../../include/channel.php:1863
-msgid "School/education:"
-msgstr "Skole/utdannelse:"
+#: ../../Zotlabs/Lib/ThreadItem.php:496 ../../Zotlabs/Widget/Pinned.php:150
+msgid "Pinned post"
+msgstr ""
-#: ../../include/channel.php:1884 ../../Zotlabs/Module/Profperm.php:113
-#: ../../Zotlabs/Lib/Apps.php:367
-msgid "Profile"
-msgstr "Profil"
+#: ../../Zotlabs/Lib/ThreadItem.php:499
+#: ../../extend/addon/hzaddons/bookmarker/bookmarker.php:38
+msgid "Save Bookmarks"
+msgstr "Lagre bokmerker"
-#: ../../include/channel.php:1886
-msgid "Like this thing"
-msgstr "Lik denne tingen"
+#: ../../Zotlabs/Lib/ThreadItem.php:500
+msgid "Add to Calendar"
+msgstr "Legg til i kalender"
-#: ../../include/channel.php:1887
-msgid "Export"
-msgstr "Eksport"
+#: ../../Zotlabs/Lib/ThreadItem.php:508
+#, fuzzy
+#| msgid "Mark all events seen"
+msgid "Mark all comments seen"
+msgstr "Merk alle hendelser som sett"
-#: ../../include/channel.php:2340 ../../Zotlabs/Module/Cover_photo.php:304
-msgid "cover photo"
-msgstr "forsidebilde"
+#: ../../Zotlabs/Lib/ThreadItem.php:547
+#, fuzzy
+#| msgid "Add Photos"
+msgid "Add yours"
+msgstr "Legg til bilder"
-#: ../../include/channel.php:2615 ../../Zotlabs/Module/Rmagic.php:96
-#: ../../boot.php:1747
-msgid "Remote Authentication"
-msgstr "Fjernautentisering"
+#: ../../Zotlabs/Lib/ThreadItem.php:547
+#, fuzzy
+#| msgid "Remove term"
+msgid "Remove yours"
+msgstr "Fjern begrep"
-#: ../../include/channel.php:2616 ../../Zotlabs/Module/Rmagic.php:97
-msgid "Enter your channel address (e.g. channel@example.com)"
-msgstr "Skriv din kanaladresse (for eksempel channel@exampel.com)"
+#: ../../Zotlabs/Lib/ThreadItem.php:865 ../../Zotlabs/Module/Photos.php:1092
+#: ../../Zotlabs/Module/Photos.php:1205
+msgid "This is you"
+msgstr "Dette er deg"
-#: ../../include/channel.php:2617 ../../Zotlabs/Module/Rmagic.php:98
-msgid "Authenticate"
-msgstr "Autentiser"
+#: ../../Zotlabs/Lib/ThreadItem.php:874
+msgid "Image"
+msgstr "Bilde"
-#: ../../include/channel.php:2775 ../../Zotlabs/Module/Admin/Accounts.php:184
-#, php-format
-msgid "Account '%s' deleted"
-msgstr "Kontoen '%s' slettet"
+#: ../../Zotlabs/Lib/ThreadItem.php:876
+msgid "Insert Link"
+msgstr "Sett inn lenke"
-#: ../../include/acl_selectors.php:33
-#: ../../Zotlabs/Lib/PermissionDescription.php:34
-msgid "Visible to your default audience"
-msgstr "Synlig for ditt standard publikum"
+#: ../../Zotlabs/Lib/ThreadItem.php:877
+msgid "Video"
+msgstr "Video"
-#: ../../include/acl_selectors.php:100
-msgid "Profile-Based Privacy Groups"
+#: ../../Zotlabs/Lib/ThreadItem.php:886
+msgid "Your full name (required)"
msgstr ""
-#: ../../include/acl_selectors.php:119
-msgid "Private Forum"
+#: ../../Zotlabs/Lib/ThreadItem.php:887
+msgid "Your email address (required)"
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:65
-#: ../../Zotlabs/Lib/PermissionDescription.php:107
-msgid "Only me"
-msgstr "Kun meg"
-
-#: ../../include/acl_selectors.php:143
-msgid "Share with"
-msgstr "Del med"
-
-#: ../../include/acl_selectors.php:144
-msgid "Custom selection"
-msgstr "Tilpasset utvalg"
-
-#: ../../include/acl_selectors.php:146
-msgid ""
-"Select \"Allow\" to allow viewing. \"Don't allow\" lets you override and "
-"limit the scope of \"Allow\"."
+#: ../../Zotlabs/Lib/ThreadItem.php:888
+msgid "Your website URL (optional)"
msgstr ""
-#: ../../include/acl_selectors.php:147 ../../Zotlabs/Module/Authorize.php:32
-msgid "Allow"
+#: ../../Zotlabs/Lib/Activity.php:2173
+#, php-format
+msgid "Likes %1$s's %2$s"
msgstr ""
-#: ../../include/acl_selectors.php:148
-msgid "Don't allow"
+#: ../../Zotlabs/Lib/Activity.php:2176
+#, php-format
+msgid "Doesn't like %1$s's %2$s"
msgstr ""
-#: ../../include/acl_selectors.php:156 ../../Zotlabs/Widget/Pinned.php:163
-#: ../../Zotlabs/Module/Photos.php:1265 ../../Zotlabs/Lib/ThreadItem.php:496
-#: ../../Zotlabs/Storage/Browser.php:414
-msgid "Close"
-msgstr "Lukk"
+#: ../../Zotlabs/Lib/Activity.php:2182
+#, php-format
+msgid "Will attend %s's event"
+msgstr ""
-#: ../../include/acl_selectors.php:181
+#: ../../Zotlabs/Lib/Activity.php:2185
#, php-format
-msgid ""
-"Post permissions %s cannot be changed %s after a post is shared.</br />These "
-"permissions set who is allowed to view the post."
+msgid "Will not attend %s's event"
msgstr ""
-"Tillatelsene til innlegget %s kan ikke endres %s etter at innlegget er delt."
-"</br />Disse tillatelsene avgjør hvem som kan se innlegget."
-#: ../../include/oembed.php:155
-msgid "View PDF"
+#: ../../Zotlabs/Lib/Activity.php:2188
+#, php-format
+msgid "May attend %s's event"
msgstr ""
-#: ../../include/oembed.php:391
-msgid " by "
-msgstr " av "
+#: ../../Zotlabs/Lib/Activity.php:2191
+#, php-format
+msgid "May not attend %s's event"
+msgstr ""
-#: ../../include/oembed.php:392
-#, fuzzy
-msgid " on "
-msgstr "På"
+#: ../../Zotlabs/Lib/Chatroom.php:25
+msgid "Missing room name"
+msgstr "Mangler romnavn"
-#: ../../include/oembed.php:421
-msgid "Embedded content"
-msgstr "Innebygget innhold"
+#: ../../Zotlabs/Lib/Chatroom.php:34
+msgid "Duplicate room name"
+msgstr "Duplikat romnavn"
-#: ../../include/oembed.php:430
-msgid "Embedding disabled"
-msgstr "Innbygging avskrudd"
+#: ../../Zotlabs/Lib/Chatroom.php:84 ../../Zotlabs/Lib/Chatroom.php:92
+msgid "Invalid room specifier."
+msgstr "Ugyldig rom-spesifisering."
-#: ../../include/zid.php:410
-#, php-format
-msgid "OpenWebAuth: %1$s welcomes %2$s"
-msgstr "OpenWebAuth: %1$s ønsker %2$s velkommen"
+#: ../../Zotlabs/Lib/Chatroom.php:124
+msgid "Room not found."
+msgstr "Rommet ble ikke funnet."
-#: ../../Zotlabs/Widget/Activity_order.php:96
-msgid "Commented Date"
-msgstr "Sist kommentert"
+#: ../../Zotlabs/Lib/Chatroom.php:145
+msgid "Room is full"
+msgstr "Rommet er fullt"
-#: ../../Zotlabs/Widget/Activity_order.php:100
-msgid "Order by last commented date"
-msgstr "Sorter etter dato for siste kommentar"
+#: ../../Zotlabs/Lib/Enotify.php:61
+msgid "$Projectname Notification"
+msgstr "$Projectname varsling"
-#: ../../Zotlabs/Widget/Activity_order.php:103
-msgid "Posted Date"
-msgstr "Innleggsdato"
+#: ../../Zotlabs/Lib/Enotify.php:62
+#: ../../extend/addon/hzaddons/diaspora/p.php:48
+#: ../../extend/addon/hzaddons/diaspora/util.php:346
+#: ../../extend/addon/hzaddons/diaspora/util.php:359
+msgid "$projectname"
+msgstr "$projectname"
-#: ../../Zotlabs/Widget/Activity_order.php:107
-msgid "Order by last posted date"
-msgstr "Sorter etter dato innlegg ble postet"
+#: ../../Zotlabs/Lib/Enotify.php:64
+msgid "Thank You,"
+msgstr "Tusen takk,"
-#: ../../Zotlabs/Widget/Activity_order.php:110
-msgid "Date Unthreaded"
-msgstr "Utrådet"
+#: ../../Zotlabs/Lib/Enotify.php:66
+#: ../../extend/addon/hzaddons/hubwall/hubwall.php:33
+#, php-format
+msgid "%s Administrator"
+msgstr "%s administrator"
-#: ../../Zotlabs/Widget/Activity_order.php:114
-msgid "Order unthreaded by date"
-msgstr "Sorter innlegg og kommentarer uavhengig av hverandre etter dato"
+#: ../../Zotlabs/Lib/Enotify.php:67
+#, php-format
+msgid "This email was sent by %1$s at %2$s."
+msgstr ""
-#: ../../Zotlabs/Widget/Activity_order.php:129
-msgid "Stream Order"
-msgstr "Sortering av innlegg"
+#: ../../Zotlabs/Lib/Enotify.php:67 ../../Zotlabs/Module/Invite.php:239
+#: ../../Zotlabs/Module/Invite.php:508 ../../Zotlabs/Module/Invite.php:522
+#: ../../Zotlabs/Module/Home.php:88 ../../Zotlabs/Module/Home.php:96
+#: ../../extend/addon/hzaddons/opensearch/opensearch.php:42
+msgid "$Projectname"
+msgstr "$Projectname"
-#: ../../Zotlabs/Widget/Tokens.php:41
-msgid "Add new guest"
+#: ../../Zotlabs/Lib/Enotify.php:68
+#, php-format
+msgid ""
+"To stop receiving these messages, please adjust your Notification Settings "
+"at %s"
msgstr ""
-#: ../../Zotlabs/Widget/Tokens.php:49 ../../Zotlabs/Module/Lockview.php:236
-msgid "Guest access"
+#: ../../Zotlabs/Lib/Enotify.php:69
+#, php-format
+msgid "To stop receiving these messages, please adjust your %s."
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:782
-#: ../../Zotlabs/Module/Photos.php:1323
-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:813
-msgid "Edit Album"
-msgstr "Endre album"
-
-#: ../../Zotlabs/Widget/Album.php:103 ../../Zotlabs/Widget/Cdav.php:152
-#: ../../Zotlabs/Widget/Cdav.php:188 ../../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:681
-#: ../../Zotlabs/Storage/Browser.php:546
-msgid "Upload"
-msgstr "Last opp"
+#: ../../Zotlabs/Lib/Enotify.php:69
+#: ../../Zotlabs/Module/Settings/Channel.php:242
+msgid "Notification Settings"
+msgstr "Varslingsinnstillinger"
-#: ../../Zotlabs/Widget/Tasklist.php:31
-msgid "Tasks"
-msgstr "Oppgaver"
+#: ../../Zotlabs/Lib/Enotify.php:124
+#, php-format
+msgid "%s <!item_type!>"
+msgstr "%s <!item_type!>"
-#: ../../Zotlabs/Widget/Chatroom_members.php:17
-msgid "Chat Members"
-msgstr ""
+#: ../../Zotlabs/Lib/Enotify.php:132
+#, php-format
+msgid "[$Projectname:Notify] New direct message received at %s"
+msgstr "[$Projectname:Notify] Ny direktemelding mottatt kl. %s"
-#: ../../Zotlabs/Widget/Channel_activities.php:29
-#: ../../Zotlabs/Module/Go.php:27
-msgid "Welcome"
-msgstr "Velkommen"
+#: ../../Zotlabs/Lib/Enotify.php:134
+#, php-format
+msgid "%1$s sent you a new direct message at %2$s"
+msgstr "%1$s sendte deg en ny direktemelding kl. %2$s"
-#: ../../Zotlabs/Widget/Channel_activities.php:46
-#, fuzzy
-#| msgid "Recent activity"
-msgid "No recent activities"
-msgstr "Nylig aktivitet"
+#: ../../Zotlabs/Lib/Enotify.php:135
+#, php-format
+msgid "%1$s sent you %2$s."
+msgstr "%1$s sendte deg %2$s."
-#: ../../Zotlabs/Widget/Channel_activities.php:214
-msgctxt "noun"
-msgid "new connection"
-msgid_plural "new connections"
-msgstr[0] "ny forbindelse"
-msgstr[1] "nye forbindelser"
+#: ../../Zotlabs/Lib/Enotify.php:135
+msgid "a direct message"
+msgstr "en direktemelding"
-#: ../../Zotlabs/Widget/Channel_activities.php:220
-msgctxt "noun"
-msgid "notice"
-msgid_plural "notices"
-msgstr[0] "varsel"
-msgstr[1] "varsel"
+#: ../../Zotlabs/Lib/Enotify.php:136
+#, php-format
+msgid "Please visit %s to view and/or reply to your direct messages."
+msgstr "Gå til %s for å vise og/eller svare på dine direktemeldinger."
-#: ../../Zotlabs/Widget/Pinned.php:75 ../../Zotlabs/Lib/ThreadItem.php:206
-msgid "I will attend"
-msgstr "Jeg vil delta"
+#: ../../Zotlabs/Lib/Enotify.php:149
+msgid "requested to comment on"
+msgstr ""
-#: ../../Zotlabs/Widget/Pinned.php:75 ../../Zotlabs/Lib/ThreadItem.php:206
-msgid "I will not attend"
-msgstr "Jeg deltar ikke"
+#: ../../Zotlabs/Lib/Enotify.php:149
+msgid "commented on"
+msgstr ""
-#: ../../Zotlabs/Widget/Pinned.php:75 ../../Zotlabs/Lib/ThreadItem.php:206
-msgid "I might attend"
-msgstr "Jeg vil kanskje delta"
+#: ../../Zotlabs/Lib/Enotify.php:162 ../../Zotlabs/Lib/Enotify.php:318
+#, fuzzy
+#| msgid "Request date"
+msgid "requested to like"
+msgstr "Dato for forespørsel"
-#: ../../Zotlabs/Widget/Pinned.php:86
-msgid "I agree"
-msgstr "Jeg er enig"
+#: ../../Zotlabs/Lib/Enotify.php:162 ../../Zotlabs/Lib/Enotify.php:318
+msgid "liked"
+msgstr ""
-#: ../../Zotlabs/Widget/Pinned.php:86
-msgid "I disagree"
-msgstr "Jeg er uenig"
+#: ../../Zotlabs/Lib/Enotify.php:165 ../../Zotlabs/Lib/Enotify.php:321
+msgid "requested to dislike"
+msgstr ""
-#: ../../Zotlabs/Widget/Pinned.php:86
-msgid "I abstain"
-msgstr "Jeg avstår"
+#: ../../Zotlabs/Lib/Enotify.php:165 ../../Zotlabs/Lib/Enotify.php:321
+msgid "disliked"
+msgstr ""
-#: ../../Zotlabs/Widget/Pinned.php:104 ../../Zotlabs/Lib/ThreadItem.php:324
-msgid "Share This"
-msgstr "Del dette"
+#: ../../Zotlabs/Lib/Enotify.php:168
+#, fuzzy
+#| msgid "Created"
+msgid "repeated"
+msgstr "Laget"
-#: ../../Zotlabs/Widget/Pinned.php:104 ../../Zotlabs/Lib/ThreadItem.php:324
-msgid "share"
-msgstr "del"
+#: ../../Zotlabs/Lib/Enotify.php:173
+msgid "voted on"
+msgstr ""
-#: ../../Zotlabs/Widget/Pinned.php:127 ../../Zotlabs/Widget/Pinned.php:128
+#: ../../Zotlabs/Lib/Enotify.php:216
#, php-format
-msgid "View %s's profile - %s"
-msgstr "Vis %s sin profil - %s"
+msgid "%1$s %2$s [zrl=%3$s]a %4$s[/zrl]"
+msgstr ""
-#: ../../Zotlabs/Widget/Pinned.php:132 ../../Zotlabs/Widget/Messages.php:146
-#: ../../Zotlabs/Lib/ThreadItem.php:414
-msgid "via"
-msgstr "via"
+#: ../../Zotlabs/Lib/Enotify.php:224
+#, php-format
+msgid "%1$s %2$s [zrl=%3$s]%4$s's %5$s[/zrl]"
+msgstr ""
-#: ../../Zotlabs/Widget/Pinned.php:146 ../../Zotlabs/Lib/ThreadItem.php:445
-msgid "Attendance Options"
+#: ../../Zotlabs/Lib/Enotify.php:233 ../../Zotlabs/Lib/Enotify.php:325
+#, php-format
+msgid "%1$s %2$s [zrl=%3$s]your %4$s[/zrl]"
msgstr ""
-#: ../../Zotlabs/Widget/Pinned.php:147 ../../Zotlabs/Lib/ThreadItem.php:447
-msgid "Voting Options"
+#: ../../Zotlabs/Lib/Enotify.php:245
+#, php-format
+msgid "[$Projectname:Notify] Moderated Comment to conversation #%1$d by %2$s"
msgstr ""
-#: ../../Zotlabs/Widget/Pinned.php:159 ../../Zotlabs/Lib/ThreadItem.php:471
-msgid "Pinned post"
+#: ../../Zotlabs/Lib/Enotify.php:247
+#, php-format
+msgid "[$Projectname:Notify] Comment to conversation #%1$d by %2$s"
msgstr ""
-#: ../../Zotlabs/Widget/Pinned.php:161
-msgid "Don't show"
-msgstr "Ikke vis"
+#: ../../Zotlabs/Lib/Enotify.php:248
+#, php-format
+msgid "%1$s commented on an item/conversation you have been following"
+msgstr ""
-#: ../../Zotlabs/Widget/Activity.php:55
-#, fuzzy
-msgctxt "widget"
-msgid "Activity"
-msgstr "aktivitet"
+#: ../../Zotlabs/Lib/Enotify.php:251 ../../Zotlabs/Lib/Enotify.php:345
+#: ../../Zotlabs/Lib/Enotify.php:361 ../../Zotlabs/Lib/Enotify.php:385
+#: ../../Zotlabs/Lib/Enotify.php:402 ../../Zotlabs/Lib/Enotify.php:415
+#, 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/Widget/Cdav.php:41
-msgid "Select Channel"
+#: ../../Zotlabs/Lib/Enotify.php:255 ../../Zotlabs/Lib/Enotify.php:256
+#, php-format
+msgid "Please visit %s to approve or reject this comment."
msgstr ""
-#: ../../Zotlabs/Widget/Cdav.php:46
-msgid "Read-write"
+#: ../../Zotlabs/Lib/Enotify.php:341
+#, php-format
+msgid "[$Projectname:Notify] Like received to conversation #%1$d by %2$s"
msgstr ""
-#: ../../Zotlabs/Widget/Cdav.php:47
-msgid "Read-only"
+#: ../../Zotlabs/Lib/Enotify.php:342
+#, php-format
+msgid "%1$s liked an item/conversation you created"
msgstr ""
-#: ../../Zotlabs/Widget/Cdav.php:133
-msgid "Channel Calendar"
+#: ../../Zotlabs/Lib/Enotify.php:353
+#, php-format
+msgid "[$Projectname:Notify] %s posted to your profile wall"
msgstr ""
-#: ../../Zotlabs/Widget/Cdav.php:135 ../../Zotlabs/Widget/Cdav.php:149
-#: ../../Zotlabs/Module/Cdav.php:1046
-msgid "CalDAV Calendars"
+#: ../../Zotlabs/Lib/Enotify.php:355
+#, php-format
+msgid "%1$s posted to your profile wall at %2$s"
msgstr ""
-#: ../../Zotlabs/Widget/Cdav.php:137
-msgid "Shared CalDAV Calendars"
+#: ../../Zotlabs/Lib/Enotify.php:357
+#, php-format
+msgid "%1$s posted to [zrl=%2$s]your wall[/zrl]"
msgstr ""
-#: ../../Zotlabs/Widget/Cdav.php:141
-msgid "Share this calendar"
+#: ../../Zotlabs/Lib/Enotify.php:379
+#, php-format
+msgid "[$Projectname:Notify] %s tagged you"
msgstr ""
-#: ../../Zotlabs/Widget/Cdav.php:143
-msgid "Calendar name and color"
+#: ../../Zotlabs/Lib/Enotify.php:380
+#, php-format
+msgid "%1$s tagged you at %2$s"
msgstr ""
-#: ../../Zotlabs/Widget/Cdav.php:145
-msgid "Create new CalDAV calendar"
+#: ../../Zotlabs/Lib/Enotify.php:381
+#, php-format
+msgid "%1$s [zrl=%2$s]tagged you[/zrl]."
msgstr ""
-#: ../../Zotlabs/Widget/Cdav.php:146 ../../Zotlabs/Widget/Cdav.php:184
-#: ../../Zotlabs/Module/Cdav.php:1050 ../../Zotlabs/Module/Cdav.php:1379
-#: ../../Zotlabs/Module/Webpages.php:249
-#: ../../Zotlabs/Module/New_channel.php:189 ../../Zotlabs/Module/Blocks.php:157
-#: ../../Zotlabs/Module/Menu.php:182 ../../Zotlabs/Module/Connedit.php:747
-#: ../../Zotlabs/Module/Layouts.php:183 ../../Zotlabs/Storage/Browser.php:368
-#: ../../Zotlabs/Storage/Browser.php:544
-msgid "Create"
-msgstr "Lag"
-
-#: ../../Zotlabs/Widget/Cdav.php:147
-msgid "Calendar Name"
+#: ../../Zotlabs/Lib/Enotify.php:392
+#, php-format
+msgid "[$Projectname:Notify] %1$s poked you"
msgstr ""
-#: ../../Zotlabs/Widget/Cdav.php:148
-msgid "Calendar Tools"
+#: ../../Zotlabs/Lib/Enotify.php:393
+#, php-format
+msgid "%1$s poked you at %2$s"
msgstr ""
-#: ../../Zotlabs/Widget/Cdav.php:149 ../../Zotlabs/Module/Cdav.php:1046
-msgid "Channel Calendars"
+#: ../../Zotlabs/Lib/Enotify.php:394
+#, php-format
+msgid "%1$s [zrl=%2$s]poked you[/zrl]."
msgstr ""
-#: ../../Zotlabs/Widget/Cdav.php:150
-msgid "Import calendar"
+#: ../../Zotlabs/Lib/Enotify.php:409
+#, php-format
+msgid "[$Projectname:Notify] %s tagged your post"
msgstr ""
-#: ../../Zotlabs/Widget/Cdav.php:151
-msgid "Select a calendar to import to"
+#: ../../Zotlabs/Lib/Enotify.php:410
+#, php-format
+msgid "%1$s tagged your post at %2$s"
msgstr ""
-#: ../../Zotlabs/Widget/Cdav.php:178
-msgid "Addressbooks"
+#: ../../Zotlabs/Lib/Enotify.php:411
+#, php-format
+msgid "%1$s tagged [zrl=%2$s]your post[/zrl]"
msgstr ""
-#: ../../Zotlabs/Widget/Cdav.php:180
-msgid "Addressbook name"
+#: ../../Zotlabs/Lib/Enotify.php:422
+msgid "[$Projectname:Notify] Introduction received"
msgstr ""
-#: ../../Zotlabs/Widget/Cdav.php:182
-msgid "Create new addressbook"
+#: ../../Zotlabs/Lib/Enotify.php:423
+#, php-format
+msgid "You've received an new connection request from '%1$s' at %2$s"
msgstr ""
-#: ../../Zotlabs/Widget/Cdav.php:183
-msgid "Addressbook Name"
+#: ../../Zotlabs/Lib/Enotify.php:424
+#, php-format
+msgid "You've received [zrl=%1$s]a new connection request[/zrl] from %2$s."
msgstr ""
-#: ../../Zotlabs/Widget/Cdav.php:185
-msgid "Addressbook Tools"
-msgstr ""
+#: ../../Zotlabs/Lib/Enotify.php:427 ../../Zotlabs/Lib/Enotify.php:445
+#, php-format
+msgid "You may visit their profile at %s"
+msgstr "Du kan besøke profilen deres på %s"
-#: ../../Zotlabs/Widget/Cdav.php:186
-msgid "Import addressbook"
+#: ../../Zotlabs/Lib/Enotify.php:429
+#, 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/Widget/Cdav.php:187
-msgid "Select an addressbook to import to"
+#: ../../Zotlabs/Lib/Enotify.php:436
+msgid "[$Projectname:Notify] Friend suggestion received"
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/Lib/Enotify.php:437
+#, php-format
+msgid "You've received a friend suggestion from '%1$s' at %2$s"
+msgstr ""
-#: ../../Zotlabs/Widget/Settings_menu.php:43
-msgid "Channel settings"
-msgstr "Kanalinnstillinger"
+#: ../../Zotlabs/Lib/Enotify.php:438
+#, php-format
+msgid "You've received [zrl=%1$s]a friend suggestion[/zrl] for %2$s from %3$s."
+msgstr ""
-#: ../../Zotlabs/Widget/Settings_menu.php:49
-msgid "Privacy settings"
-msgstr "Personverninnstillinger"
+#: ../../Zotlabs/Lib/Enotify.php:443
+msgid "Name:"
+msgstr "Navn:"
-#: ../../Zotlabs/Widget/Settings_menu.php:56
-msgid "Display settings"
-msgstr "Visningsinnstillinger"
+#: ../../Zotlabs/Lib/Enotify.php:444
+msgid "Photo:"
+msgstr "Bilde:"
-#: ../../Zotlabs/Widget/Settings_menu.php:63
-msgid "Manage locations"
-msgstr ""
+#: ../../Zotlabs/Lib/Enotify.php:447
+#, php-format
+msgid "Please visit %s to approve or reject the suggestion."
+msgstr "Vennligst besøk %s for å godkjenne eller avslå dette forslaget."
-#: ../../Zotlabs/Widget/Chatroom_list.php:26
-msgid "Overview"
+#: ../../Zotlabs/Lib/Enotify.php:677
+msgid "[$Projectname:Notify]"
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/Lib/Enotify.php:843
+msgid "created a new poll"
+msgstr "opprettet spørreskjema"
-#: ../../Zotlabs/Widget/Bookmarkedchats.php:25
-msgid "Bookmarked Chatrooms"
-msgstr "Bokmerkede chatrom"
+#: ../../Zotlabs/Lib/Enotify.php:843
+msgid "created a new post"
+msgstr "laget et nytt innlegg"
-#: ../../Zotlabs/Widget/Appcategories.php:49
-msgid "App Categories"
-msgstr "Appkategorier"
+#: ../../Zotlabs/Lib/Enotify.php:844
+#, php-format
+msgid "voted on %s's poll"
+msgstr "stemte på %s sitt spørreskjema"
-#: ../../Zotlabs/Widget/Hq_controls.php:23
-msgid "Toggle post editor"
-msgstr "Vis redigering av innlegg"
+#: ../../Zotlabs/Lib/Enotify.php:844
+#, php-format
+msgid "commented on %s's post"
+msgstr "kommenterte på %s sitt innlegg"
-#: ../../Zotlabs/Widget/Hq_controls.php:33
-msgid "Toggle personal notes"
+#: ../../Zotlabs/Lib/Enotify.php:848 ../../Zotlabs/Lib/Enotify.php:948
+msgid "shared a file with you"
msgstr ""
-#: ../../Zotlabs/Widget/Hq_controls.php:43
-msgid "Channel activities"
+#: ../../Zotlabs/Lib/Enotify.php:857
+#, php-format
+msgid "edited a post dated %s"
msgstr ""
-#: ../../Zotlabs/Widget/Permcats.php:43
-msgid "Add new role"
+#: ../../Zotlabs/Lib/Enotify.php:860
+#, php-format
+msgid "edited a comment dated %s"
msgstr ""
-#: ../../Zotlabs/Widget/Permcats.php:92
-#: ../../Zotlabs/Module/Contactedit.php:409
-msgid "Contact roles"
-msgstr ""
+#: ../../Zotlabs/Lib/Enotify.php:933
+msgid "added your channel"
+msgstr "la til din kanal"
-#: ../../Zotlabs/Widget/Permcats.php:93
-msgid "Role members"
-msgstr ""
+#: ../../Zotlabs/Lib/Enotify.php:963
+msgid "sent you a direct message"
+msgstr "sendte deg en direktemelding"
-#: ../../Zotlabs/Widget/Photo.php:54 ../../Zotlabs/Widget/Photo_rand.php:63
-msgid "photo/image"
-msgstr "foto/bilde"
+#: ../../Zotlabs/Lib/Enotify.php:970
+msgid "g A l F d"
+msgstr "g A l F d"
-#: ../../Zotlabs/Widget/Admin.php:27 ../../Zotlabs/Module/Admin/Site.php:414
-msgid "Site"
-msgstr "Nettsted"
+#: ../../Zotlabs/Lib/Enotify.php:973
+msgid "[today]"
+msgstr "[idag]"
-#: ../../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/Lib/Enotify.php:983
+msgid "created an event"
+msgstr ""
-#: ../../Zotlabs/Widget/Admin.php:28 ../../Zotlabs/Widget/Admin.php:66
-msgid "Member registrations waiting for confirmation"
+#: ../../Zotlabs/Lib/Enotify.php:998
+msgid "status verified"
msgstr ""
-#: ../../Zotlabs/Widget/Admin.php:30
-#: ../../Zotlabs/Module/Admin/Security.php:106
-msgid "Security"
-msgstr "Sikkerhet"
+#: ../../Zotlabs/Lib/DB_Upgrade.php:68
+msgid "Source code of failed update: "
+msgstr ""
-#: ../../Zotlabs/Widget/Admin.php:31 ../../Zotlabs/Lib/Apps.php:363
-msgid "Features"
-msgstr "Funksjoner"
+#: ../../Zotlabs/Lib/DB_Upgrade.php:89
+#, php-format
+msgid "Update Error at %s"
+msgstr "Oppdateringsfeil ved %s"
-#: ../../Zotlabs/Widget/Admin.php:32 ../../Zotlabs/Module/Admin/Addons.php:346
-#: ../../Zotlabs/Module/Admin/Addons.php:444
-msgid "Addons"
-msgstr "Tillegg"
+#: ../../Zotlabs/Lib/DB_Upgrade.php:95
+#, php-format
+msgid "Update %s failed. See error logs."
+msgstr "Oppdatering %s mislyktes. Se feilloggen."
-#: ../../Zotlabs/Widget/Admin.php:33 ../../Zotlabs/Module/Admin/Themes.php:123
-#: ../../Zotlabs/Module/Admin/Themes.php:157
-msgid "Themes"
-msgstr "Utseende"
+#: ../../Zotlabs/Lib/Connect.php:45 ../../Zotlabs/Lib/Connect.php:146
+msgid "Channel is blocked on this site."
+msgstr "Kanalen er blokkert på dette nettstedet."
-#: ../../Zotlabs/Widget/Admin.php:34
-msgid "Inspect queue"
-msgstr "Inspiser kø"
+#: ../../Zotlabs/Lib/Connect.php:50
+msgid "Channel location missing."
+msgstr "Kanalplassering mangler."
-#: ../../Zotlabs/Widget/Admin.php:35
-msgid "Queueworker"
+#: ../../Zotlabs/Lib/Connect.php:104
+msgid "Remote channel or protocol unavailable."
msgstr ""
-#: ../../Zotlabs/Widget/Admin.php:36 ../../Zotlabs/Module/Admin/Profs.php:168
-msgid "Profile Fields"
-msgstr "Profilfelter"
+#: ../../Zotlabs/Lib/Connect.php:140
+msgid "Channel discovery failed."
+msgstr "Kanaloppdagelse mislyktes."
-#: ../../Zotlabs/Widget/Admin.php:37
-msgid "DB updates"
-msgstr "Databaseoppdateringer"
+#: ../../Zotlabs/Lib/Connect.php:158
+msgid "Protocol disabled."
+msgstr "Protokollen er avskrudd."
-#: ../../Zotlabs/Widget/Admin.php:54 ../../Zotlabs/Widget/Admin.php:64
-#: ../../Zotlabs/Module/Admin/Logs.php:83
-msgid "Logs"
-msgstr "Logger"
+#: ../../Zotlabs/Lib/Connect.php:170
+msgid "Cannot connect to yourself."
+msgstr "Kan ikke lage forbindelse med deg selv."
-#: ../../Zotlabs/Widget/Admin.php:62
-msgid "Addon Features"
+#: ../../Zotlabs/Lib/Connect.php:275
+msgid "error saving data"
msgstr ""
-#: ../../Zotlabs/Widget/Activity_filter.php:44
-#: ../../Zotlabs/Widget/Notifications.php:62
-msgid "Direct Messages"
-msgstr "Direktemeldinger"
-
-#: ../../Zotlabs/Widget/Activity_filter.php:48
-msgid "Show direct (private) messages"
-msgstr "Vis direktemeldinger (private meldinger)"
+#: ../../Zotlabs/Lib/Libzot.php:688
+msgid "Unable to verify channel signature"
+msgstr "Ikke i stand til å sjekke kanalsignaturen"
-#: ../../Zotlabs/Widget/Activity_filter.php:53
-#: ../../Zotlabs/Widget/Notifications.php:81
-msgid "Events"
-msgstr "Hendelser"
+#: ../../Zotlabs/Lib/PermissionDescription.php:108
+#: ../../Zotlabs/Access/PermissionRoles.php:386
+msgid "Public"
+msgstr "Offentlig"
-#: ../../Zotlabs/Widget/Activity_filter.php:57
-msgid "Show posts that include events"
+#: ../../Zotlabs/Lib/PermissionDescription.php:109
+msgid "Anybody in the $Projectname network"
msgstr ""
-#: ../../Zotlabs/Widget/Activity_filter.php:63
-msgid "Polls"
-msgstr "Spørreskjema"
-
-#: ../../Zotlabs/Widget/Activity_filter.php:67
-msgid "Show posts that include polls"
-msgstr "Vis innlegg som inneholder spørreskjema"
-
-#: ../../Zotlabs/Widget/Activity_filter.php:90
+#: ../../Zotlabs/Lib/PermissionDescription.php:110
#, php-format
-msgid "Show posts related to the %s privacy group"
+msgid "Any account on %s"
msgstr ""
-#: ../../Zotlabs/Widget/Activity_filter.php:99
-msgid "Show my privacy groups"
+#: ../../Zotlabs/Lib/PermissionDescription.php:111
+msgid "Any of my connections"
msgstr ""
-#: ../../Zotlabs/Widget/Activity_filter.php:123
-msgid "Show posts to this forum"
+#: ../../Zotlabs/Lib/PermissionDescription.php:112
+msgid "Only connections I specifically allow"
msgstr ""
-#: ../../Zotlabs/Widget/Activity_filter.php:134
-msgid "Show forums"
+#: ../../Zotlabs/Lib/PermissionDescription.php:113
+msgid "Anybody authenticated (could include visitors from other networks)"
msgstr ""
-#: ../../Zotlabs/Widget/Activity_filter.php:148
-msgid "Starred Posts"
+#: ../../Zotlabs/Lib/PermissionDescription.php:114
+msgid "Any connections including those who haven't yet been approved"
msgstr ""
-#: ../../Zotlabs/Widget/Activity_filter.php:152
-msgid "Show posts that I have starred"
+#: ../../Zotlabs/Lib/PermissionDescription.php:150
+msgid ""
+"This is your default setting for the audience of your normal stream, and "
+"posts."
msgstr ""
-#: ../../Zotlabs/Widget/Activity_filter.php:163
-msgid "Personal Posts"
+#: ../../Zotlabs/Lib/PermissionDescription.php:151
+msgid ""
+"This is your default setting for who can view your default channel profile"
msgstr ""
-#: ../../Zotlabs/Widget/Activity_filter.php:167
-msgid "Show posts that mention or involve me"
+#: ../../Zotlabs/Lib/PermissionDescription.php:152
+msgid "This is your default setting for who can view your connections"
msgstr ""
-#: ../../Zotlabs/Widget/Activity_filter.php:190
-#, php-format
-msgid "Show posts that I have filed to %s"
+#: ../../Zotlabs/Lib/PermissionDescription.php:153
+msgid ""
+"This is your default setting for who can view your file storage and photos"
msgstr ""
-#: ../../Zotlabs/Widget/Activity_filter.php:200
-msgid "Show filed post categories"
+#: ../../Zotlabs/Lib/PermissionDescription.php:154
+msgid "This is your default setting for the audience of your webpages"
msgstr ""
-#: ../../Zotlabs/Widget/Activity_filter.php:214
-msgid "Panel search"
-msgstr ""
+#: ../../Zotlabs/Lib/Libsync.php:824
+#, php-format
+msgid "Unable to verify site signature for %s"
+msgstr "Ikke i stand til å bekrefte signaturen til %s"
-#: ../../Zotlabs/Widget/Activity_filter.php:224
-msgid "Filter by name"
-msgstr "Filtrer etter navn"
+#: ../../Zotlabs/Lib/Permcat.php:83
+msgctxt "permcat"
+msgid "Default"
+msgstr "Standard"
-#: ../../Zotlabs/Widget/Activity_filter.php:239
-msgid "Remove active filter"
+#: ../../Zotlabs/Access/PermissionRoles.php:339
+msgid "Social Networking"
+msgstr "Sosialt nettverk"
+
+#: ../../Zotlabs/Access/PermissionRoles.php:340
+msgid "Social - Federation"
msgstr ""
-#: ../../Zotlabs/Widget/Activity_filter.php:255
-msgid "Stream Filters"
-msgstr "Filtere for tidslinjen"
+#: ../../Zotlabs/Access/PermissionRoles.php:341
+msgid "Social - Mostly Public"
+msgstr "Sosial - ganske offentlig"
-#: ../../Zotlabs/Widget/Appstore.php:16
-msgid "App Collections"
-msgstr "Appsamlinger"
+#: ../../Zotlabs/Access/PermissionRoles.php:342
+msgid "Social - Restricted"
+msgstr "Sosial - begrenset"
-#: ../../Zotlabs/Widget/Appstore.php:18
-msgid "Installed apps"
-msgstr "Installerte apper"
+#: ../../Zotlabs/Access/PermissionRoles.php:343
+msgid "Social - Private"
+msgstr "Sosial - privat"
-#: ../../Zotlabs/Widget/Appstore.php:19 ../../Zotlabs/Module/Apps.php:51
-msgid "Available Apps"
-msgstr "Tilgjengelige apper"
+#: ../../Zotlabs/Access/PermissionRoles.php:346
+msgid "Community Forum"
+msgstr "Forum for fellesskap"
-#: ../../Zotlabs/Widget/Privacygroups.php:45
-msgid "Add new group"
-msgstr ""
+#: ../../Zotlabs/Access/PermissionRoles.php:347
+msgid "Forum - Mostly Public"
+msgstr "Forum - ganske offentlig"
-#: ../../Zotlabs/Widget/Privacygroups.php:54
-#: ../../Zotlabs/Module/Contactedit.php:443
-#, fuzzy
-msgid "Privacy groups"
-msgstr "Personverngrupper"
+#: ../../Zotlabs/Access/PermissionRoles.php:348
+msgid "Forum - Restricted"
+msgstr "Forum - begrenset"
-#: ../../Zotlabs/Widget/Rating.php:57
-msgid "Rating Tools"
-msgstr "Vurderingsverktøy"
+#: ../../Zotlabs/Access/PermissionRoles.php:349
+msgid "Forum - Private"
+msgstr "Forum - privat"
-#: ../../Zotlabs/Widget/Rating.php:61 ../../Zotlabs/Widget/Rating.php:63
-msgid "Rate Me"
-msgstr "Vurder meg"
+#: ../../Zotlabs/Access/PermissionRoles.php:352
+msgid "Feed Republish"
+msgstr "Republisering av strømmet innhold"
-#: ../../Zotlabs/Widget/Rating.php:66
-msgid "View Ratings"
-msgstr "Vis vurderinger"
+#: ../../Zotlabs/Access/PermissionRoles.php:353
+msgid "Feed - Mostly Public"
+msgstr "Strøm - ganske offentlig"
-#: ../../Zotlabs/Widget/Cover_photo.php:74
-msgid "Click to show more"
-msgstr ""
+#: ../../Zotlabs/Access/PermissionRoles.php:354
+msgid "Feed - Restricted"
+msgstr "Strøm - begrenset"
-#: ../../Zotlabs/Widget/Follow.php:27 ../../Zotlabs/Module/Connections.php:377
-#, php-format
-msgid "You have %1$.0f of %2$.0f allowed connections."
-msgstr "Du har %1$.0f av %2$.0f tillate forbindelser."
+#: ../../Zotlabs/Access/PermissionRoles.php:357
+msgid "Special Purpose"
+msgstr "Spesiell bruk"
-#: ../../Zotlabs/Widget/Follow.php:34
-msgid "Add New Connection"
-msgstr "Legg til ny forbindelse"
+#: ../../Zotlabs/Access/PermissionRoles.php:358
+msgid "Special - Celebrity/Soapbox"
+msgstr "Spesiell - kjendis/talerstol"
-#: ../../Zotlabs/Widget/Follow.php:35
-msgid "Enter channel address"
-msgstr "Skriv kanaladressen"
+#: ../../Zotlabs/Access/PermissionRoles.php:359
+msgid "Special - Group Repository"
+msgstr "Spesiell - gruppelager"
-#: ../../Zotlabs/Widget/Follow.php:36
-msgid "Examples: bob@example.com, https://example.com/barbara"
-msgstr "Eksempel: ola@eksempel.no, https://eksempel.no/kari"
+#: ../../Zotlabs/Access/PermissionRoles.php:363
+msgid "Custom/Expert Mode"
+msgstr "Tilpasset/Ekspertmodus"
-#: ../../Zotlabs/Widget/Messages.php:32
-msgid "Public and restricted messages"
-msgstr ""
+#: ../../Zotlabs/Access/PermissionRoles.php:387
+msgid "Personal"
+msgstr "Personlig"
-#: ../../Zotlabs/Widget/Messages.php:33
-msgid "Direct messages"
-msgstr "Direktemeldinger"
+#: ../../Zotlabs/Access/PermissionRoles.php:388
+#, fuzzy
+msgid "Community forum"
+msgstr "Forum for fellesskap"
-#: ../../Zotlabs/Widget/Messages.php:34
-msgid "Starred messages"
+#: ../../Zotlabs/Access/PermissionRoles.php:389
+msgid "Custom"
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 "Ingen meldinger"
-
-#: ../../Zotlabs/Widget/Messages.php:38
-msgid "Unseen"
+#: ../../Zotlabs/Access/Permissions.php:56
+msgid "Can view my channel stream and posts"
msgstr ""
-#: ../../Zotlabs/Widget/Messages.php:39
-#: ../../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 "Filtrer etter navn eller adresse"
-
-#: ../../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/Access/Permissions.php:57
+msgid "Can send me their channel stream and posts"
+msgstr "Kan sende meg deres kanalstrøm og innlegg"
-#: ../../Zotlabs/Widget/Newmember.php:62
-msgid "Missing Features?"
-msgstr "Noe som mangler?"
+#: ../../Zotlabs/Access/Permissions.php:58
+msgid "Can view my default channel profile"
+msgstr "Kan se min standard kanalprofil"
-#: ../../Zotlabs/Widget/Newmember.php:64
-msgid "Pin apps to navigation bar"
-msgstr "Fest apper til navigasjonslinjen"
+#: ../../Zotlabs/Access/Permissions.php:59
+msgid "Can view my connections"
+msgstr "Kan se mine forbindelser"
-#: ../../Zotlabs/Widget/Newmember.php:65
-msgid "Install more apps"
-msgstr "Legg til flere apper"
+#: ../../Zotlabs/Access/Permissions.php:60
+msgid "Can view my file storage and photos"
+msgstr "Kan se mine filer og bilder"
-#: ../../Zotlabs/Widget/Newmember.php:76
-msgid "View public stream"
+#: ../../Zotlabs/Access/Permissions.php:61
+msgid "Can upload/modify my file storage and photos"
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"
+#: ../../Zotlabs/Access/Permissions.php:62
+msgid "Can view my channel webpages"
msgstr ""
-#: ../../Zotlabs/Widget/Notes.php:40
-msgid "Edit mode"
+#: ../../Zotlabs/Access/Permissions.php:63
+msgid "Can view my wiki pages"
msgstr ""
-#: ../../Zotlabs/Widget/Notes.php:41
-msgid "Editing"
+#: ../../Zotlabs/Access/Permissions.php:64
+msgid "Can create/edit my channel webpages"
msgstr ""
-#: ../../Zotlabs/Widget/Notes.php:42
-msgid "Saving"
+#: ../../Zotlabs/Access/Permissions.php:65
+msgid "Can write to my wiki pages"
msgstr ""
-#: ../../Zotlabs/Widget/Notes.php:43
-msgid "Saved"
+#: ../../Zotlabs/Access/Permissions.php:66
+msgid "Can post on my channel (wall) page"
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/Access/Permissions.php:67
+msgid "Can comment on or like my posts"
+msgstr "Kan kommentere på eller like mine innlegg"
-#: ../../Zotlabs/Widget/Affinity.php:60
-msgid "Refresh"
-msgstr "Forny"
+#: ../../Zotlabs/Access/Permissions.php:68
+msgid "Can send me direct messages"
+msgstr "Kan sende meg direktemeldinger"
-#: ../../Zotlabs/Widget/Notifications.php:24
-msgid "New network activity notifications"
+#: ../../Zotlabs/Access/Permissions.php:69
+msgid "Can like/dislike profiles and profile things"
msgstr ""
-#: ../../Zotlabs/Widget/Notifications.php:27
-msgid "Network stream"
+#: ../../Zotlabs/Access/Permissions.php:70
+msgid "Can chat with me"
msgstr ""
-#: ../../Zotlabs/Widget/Notifications.php:30
-#: ../../Zotlabs/Widget/Notifications.php:69
-msgid "Mark all notifications read"
+#: ../../Zotlabs/Access/Permissions.php:71
+msgid "Can source/mirror my public posts in derived channels"
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/Access/Permissions.php:73
+msgid "Can administer my channel"
msgstr ""
-#: ../../Zotlabs/Widget/Notifications.php:44
-msgid "New home activity notifications"
+#: ../../Zotlabs/Web/Router.php:188 ../../Zotlabs/Module/Help.php:172
+#: ../../Zotlabs/Module/Block.php:77 ../../Zotlabs/Module/Page.php:136
+#: ../../Zotlabs/Module/Display.php:155
+#: ../../extend/addon/hzaddons/articles/articles.php:105
+#: ../../extend/addon/hzaddons/wiki/Lib/NativeWikiPage.php:545
+#: ../../extend/addon/hzaddons/cards/cards.php:104
+msgid "Page not found."
+msgstr "Siden ikke funnet."
+
+#: ../../Zotlabs/Storage/Browser.php:292
+msgid "Change filename to"
msgstr ""
-#: ../../Zotlabs/Widget/Notifications.php:47
-msgid "Home stream"
+#: ../../Zotlabs/Storage/Browser.php:309 ../../Zotlabs/Storage/Browser.php:394
+msgid "Select a target location"
msgstr ""
-#: ../../Zotlabs/Widget/Notifications.php:50
-#: ../../Zotlabs/Widget/Notifications.php:161
-msgid "Mark all notifications seen"
+#: ../../Zotlabs/Storage/Browser.php:310 ../../Zotlabs/Storage/Browser.php:395
+msgid "Copy to target location"
msgstr ""
-#: ../../Zotlabs/Widget/Notifications.php:63
-msgid "New direct messages notifications"
-msgstr "Varsel om nye direktemeldinger"
+#: ../../Zotlabs/Storage/Browser.php:311 ../../Zotlabs/Storage/Browser.php:393
+msgid "Set permissions for all files and sub folders"
+msgstr ""
-#: ../../Zotlabs/Widget/Notifications.php:66
-msgid "Direct messages stream"
-msgstr "Strøm for direktemeldinger"
+#: ../../Zotlabs/Storage/Browser.php:312
+msgid "Notify your contacts about this file"
+msgstr "Varsle dine kontakter om denne filen"
-#: ../../Zotlabs/Widget/Notifications.php:82
-msgid "New events notifications"
+#: ../../Zotlabs/Storage/Browser.php:351
+msgid "File category"
msgstr ""
-#: ../../Zotlabs/Widget/Notifications.php:85
-msgid "View events"
-msgstr ""
+#: ../../Zotlabs/Storage/Browser.php:365
+msgid "Total"
+msgstr "Totalt"
-#: ../../Zotlabs/Widget/Notifications.php:88
-msgid "Mark all events seen"
-msgstr "Merk alle hendelser som sett"
+#: ../../Zotlabs/Storage/Browser.php:367
+msgid "Shared"
+msgstr "Delt"
-#: ../../Zotlabs/Widget/Notifications.php:96
-#: ../../Zotlabs/Module/Connections.php:168
-msgid "New Connections"
-msgstr "Nye forbindelser"
+#: ../../Zotlabs/Storage/Browser.php:368 ../../Zotlabs/Storage/Browser.php:545
+#: ../../Zotlabs/Module/Menu.php:182 ../../Zotlabs/Module/New_channel.php:190
+#: ../../Zotlabs/Module/Layouts.php:183 ../../Zotlabs/Module/Connedit.php:747
+#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Webpages.php:249
+#: ../../Zotlabs/Module/Cdav.php:1050 ../../Zotlabs/Module/Cdav.php:1383
+#: ../../Zotlabs/Widget/Cdav.php:146 ../../Zotlabs/Widget/Cdav.php:184
+msgid "Create"
+msgstr "Lag"
-#: ../../Zotlabs/Widget/Notifications.php:97
-msgid "New connections notifications"
+#: ../../Zotlabs/Storage/Browser.php:369
+msgid "Add Files"
msgstr ""
-#: ../../Zotlabs/Widget/Notifications.php:100
-msgid "View all connections"
-msgstr ""
+#: ../../Zotlabs/Storage/Browser.php:381 ../../Zotlabs/Module/Oauth.php:111
+#: ../../Zotlabs/Module/Oauth.php:137 ../../Zotlabs/Module/Oauth2.php:116
+#: ../../Zotlabs/Module/Oauth2.php:144 ../../Zotlabs/Module/Chat.php:256
+#: ../../Zotlabs/Module/Connedit.php:732
+#: ../../Zotlabs/Module/Admin/Channels.php:181
+#: ../../Zotlabs/Module/Sharedwithme.php:107 ../../Zotlabs/Module/Cdav.php:1368
+#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:172
+#: ../../extend/addon/hzaddons/wiki/Lib/NativeWikiPage.php:588
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:221
+#: ../../extend/addon/hzaddons/wiki/Widget/Wiki_page_history.php:28
+msgid "Name"
+msgstr "Navn"
-#: ../../Zotlabs/Widget/Notifications.php:109
-msgid "New files notifications"
-msgstr ""
+#: ../../Zotlabs/Storage/Browser.php:382
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:222
+msgid "Type"
+msgstr "Type"
-#: ../../Zotlabs/Widget/Notifications.php:120
-msgid "View all notices"
-msgstr ""
+#: ../../Zotlabs/Storage/Browser.php:384
+#: ../../Zotlabs/Module/Sharedwithme.php:110
+msgid "Last Modified"
+msgstr "Sist endret"
-#: ../../Zotlabs/Widget/Notifications.php:123
-msgid "Mark all notices seen"
-msgstr ""
+#: ../../Zotlabs/Storage/Browser.php:385
+msgid "parent"
+msgstr "opp et nivå"
-#: ../../Zotlabs/Widget/Notifications.php:144
-msgid "Registrations"
-msgstr ""
+#: ../../Zotlabs/Storage/Browser.php:390
+#: ../../Zotlabs/Module/Filestorage.php:206
+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/Widget/Notifications.php:145
-msgid "New registrations notifications"
-msgstr ""
+#: ../../Zotlabs/Storage/Browser.php:391
+#: ../../Zotlabs/Module/Filestorage.php:207
+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/Widget/Notifications.php:154
-#: ../../Zotlabs/Module/Pubstream.php:100 ../../Zotlabs/Lib/Apps.php:380
-msgid "Public Stream"
-msgstr ""
+#: ../../Zotlabs/Storage/Browser.php:403
+#, fuzzy
+msgid "Select All"
+msgstr "velg alle"
-#: ../../Zotlabs/Widget/Notifications.php:155
-msgid "New public stream notifications"
+#: ../../Zotlabs/Storage/Browser.php:404
+msgid "Bulk Actions"
msgstr ""
-#: ../../Zotlabs/Widget/Notifications.php:158
-msgid "Public stream"
+#: ../../Zotlabs/Storage/Browser.php:405
+msgid "Adjust Permissions"
msgstr ""
-#: ../../Zotlabs/Widget/Notifications.php:172
-msgid "Sorry, you have got no notifications at the moment"
+#: ../../Zotlabs/Storage/Browser.php:406
+msgid "Move or Copy"
msgstr ""
-#: ../../Zotlabs/Module/Tokens.php:94
-#, php-format
-msgid "This channel is limited to %d tokens"
+#: ../../Zotlabs/Storage/Browser.php:408
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:215
+msgid "Download"
msgstr ""
-#: ../../Zotlabs/Module/Tokens.php:100
-msgid "Name and Password are required."
+#: ../../Zotlabs/Storage/Browser.php:409
+msgid "Info"
msgstr ""
-#: ../../Zotlabs/Module/Tokens.php:215
-msgid "Token saved."
+#: ../../Zotlabs/Storage/Browser.php:410
+msgid "Rename"
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/Storage/Browser.php:412
+msgid "Attachment BBcode"
msgstr ""
-#: ../../Zotlabs/Module/Tokens.php:274
-msgid "Please select a role for this guest!"
+#: ../../Zotlabs/Storage/Browser.php:413
+msgid "Embed BBcode"
msgstr ""
-#: ../../Zotlabs/Module/Tokens.php:287
-msgid "Select a role for this guest"
+#: ../../Zotlabs/Storage/Browser.php:414
+msgid "Link BBcode"
msgstr ""
-#: ../../Zotlabs/Module/Tokens.php:288 ../../Zotlabs/Lib/Apps.php:374
-msgid "Guest Access"
-msgstr ""
+#: ../../Zotlabs/Storage/Browser.php:487
+#, php-format
+msgid "You are using %1$s of your available file storage."
+msgstr "Du bruker %1$s av din tilgjengelige lagringsplass."
-#: ../../Zotlabs/Module/Tokens.php:291
-msgid "Login Name"
-msgstr ""
+#: ../../Zotlabs/Storage/Browser.php:492
+#, php-format
+msgid "You are using %1$s of %2$s available file storage. (%3$s&#37;)"
+msgstr "Du bruker %1$s av %2$s tilgjengelig lagringsplass (%3$s&#37;)"
-#: ../../Zotlabs/Module/Tokens.php:292
-msgid "Login Password"
-msgstr ""
+#: ../../Zotlabs/Storage/Browser.php:503
+msgid "WARNING:"
+msgstr "ADVARSEL:"
-#: ../../Zotlabs/Module/Tokens.php:293
-msgid "Expires (yyyy-mm-dd)"
-msgstr ""
+#: ../../Zotlabs/Storage/Browser.php:544
+msgid "Create new folder"
+msgstr "Lag ny mappe"
-#: ../../Zotlabs/Module/Attach_edit.php:69
-#: ../../Zotlabs/Module/Filestorage.php:109
-msgid "File not found."
-msgstr "Filen ble ikke funnet."
+#: ../../Zotlabs/Storage/Browser.php:546
+msgid "Upload file"
+msgstr "Last opp fil"
-#: ../../Zotlabs/Module/Attach_edit.php:118
-msgid "Can not copy folder into itself."
+#: ../../Zotlabs/Storage/Browser.php:547 ../../Zotlabs/Module/Photos.php:681
+#: ../../Zotlabs/Module/Cover_photo.php:381
+#: ../../Zotlabs/Module/Profile_photo.php:547
+#: ../../Zotlabs/Module/Embedphotos.php:189 ../../Zotlabs/Widget/Album.php:103
+#: ../../Zotlabs/Widget/Portfolio.php:114 ../../Zotlabs/Widget/Cdav.php:152
+#: ../../Zotlabs/Widget/Cdav.php:188
+msgid "Upload"
+msgstr "Last opp"
+
+#: ../../Zotlabs/Storage/Browser.php:558
+msgid "Drop files here to immediately upload"
msgstr ""
-#: ../../Zotlabs/Module/Attach_edit.php:131
-#, php-format
-msgid "Can not move folder \"%s\" into itself."
+#: ../../Zotlabs/Storage/Browser.php:559
+#: ../../Zotlabs/Module/Filestorage.php:211
+msgid "Show in your contacts shared folder"
msgstr ""
-#: ../../Zotlabs/Module/Network.php:108
-msgid "No such group"
-msgstr "Gruppen finnes ikke"
+#: ../../Zotlabs/Storage/Browser.php:561
+msgid ""
+"You can select files via the upload button or drop them right here or into "
+"an existing folder."
+msgstr ""
-#: ../../Zotlabs/Module/Network.php:160
-msgid "No such channel"
-msgstr "Ingen slik kanal"
+#: ../../Zotlabs/Module/Menu.php:68
+msgid "Unable to update menu."
+msgstr "Ikke i stand til å oppdatere meny."
-#: ../../Zotlabs/Module/Network.php:172 ../../Zotlabs/Module/Channel.php:234
-msgid "Search Results For:"
-msgstr "Søkeresultat for:"
+#: ../../Zotlabs/Module/Menu.php:79
+msgid "Unable to create menu."
+msgstr "Ikke i stand til å lage meny."
-#: ../../Zotlabs/Module/Network.php:213 ../../Zotlabs/Module/Channel.php:267
-#: ../../Zotlabs/Module/Hq.php:103 ../../Zotlabs/Module/Pubstream.php:89
-#: ../../Zotlabs/Module/Display.php:89
-msgid "Reset form"
-msgstr "Nullstill skjema"
+#: ../../Zotlabs/Module/Menu.php:161 ../../Zotlabs/Module/Menu.php:174
+msgid "Menu Name"
+msgstr "Menynavn"
-#: ../../Zotlabs/Module/Network.php:248
-msgid "Privacy group is empty"
-msgstr "Personverngruppen er tom"
+#: ../../Zotlabs/Module/Menu.php:161
+msgid "Unique name (not visible on webpage) - required"
+msgstr "Unikt navn (ikke synlig på websiden) - påkrevet"
-#: ../../Zotlabs/Module/Network.php:258
-msgid "Privacy group: "
-msgstr "Personverngruppe: "
+#: ../../Zotlabs/Module/Menu.php:162 ../../Zotlabs/Module/Menu.php:175
+msgid "Menu Title"
+msgstr "Menytittel"
-#: ../../Zotlabs/Module/Import_items.php:50
-msgid "Not a zip file or zip file corrupted."
-msgstr ""
+#: ../../Zotlabs/Module/Menu.php:162
+msgid "Visible on webpage - leave empty for no title"
+msgstr "Synlig på websiden - la stå tomt for ingen tittel"
-#: ../../Zotlabs/Module/Import_items.php:121
-msgid "Import Items"
-msgstr "Importer elementer"
+#: ../../Zotlabs/Module/Menu.php:163
+msgid "Allow Bookmarks"
+msgstr "Tillat bokmerker"
-#: ../../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/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"
-#: ../../Zotlabs/Module/Import_items.php:123
-#: ../../Zotlabs/Module/Import.php:594
-msgid "File to Upload"
-msgstr "Fil som skal lastes opp"
+#: ../../Zotlabs/Module/Menu.php:164 ../../Zotlabs/Module/Menu.php:225
+msgid "Submit and proceed"
+msgstr "Send inn og fortsett"
-#: ../../Zotlabs/Module/Import_items.php:136
-#: ../../Zotlabs/Module/Import.php:107
-msgid "Imported file is empty."
-msgstr "Importert fil er tom."
+#: ../../Zotlabs/Module/Menu.php:177 ../../Zotlabs/Module/Locs.php:124
+msgid "Drop"
+msgstr "Slett"
-#: ../../Zotlabs/Module/Import_items.php:159
-msgid "Content import completed"
-msgstr ""
+#: ../../Zotlabs/Module/Menu.php:178 ../../Zotlabs/Module/Layouts.php:189
+#: ../../Zotlabs/Module/Blocks.php:155 ../../Zotlabs/Module/Webpages.php:261
+msgid "Created"
+msgstr "Laget"
-#: ../../Zotlabs/Module/Import_items.php:164
-msgid "Chatroom import completed"
-msgstr ""
+#: ../../Zotlabs/Module/Menu.php:179 ../../Zotlabs/Module/Layouts.php:190
+#: ../../Zotlabs/Module/Blocks.php:156 ../../Zotlabs/Module/Webpages.php:262
+msgid "Edited"
+msgstr "Endret"
-#: ../../Zotlabs/Module/Import_items.php:170
-msgid "Channel calendar import 1/2 completed"
-msgstr ""
+#: ../../Zotlabs/Module/Menu.php:180 ../../Zotlabs/Module/Connections.php:83
+#: ../../Zotlabs/Module/Connections.php:92
+#: ../../Zotlabs/Module/Notifications.php:101
+msgid "New"
+msgstr "Nye"
-#: ../../Zotlabs/Module/Import_items.php:176
-msgid "Channel calendar import 2/2 completed"
-msgstr ""
+#: ../../Zotlabs/Module/Menu.php:181
+msgid "Bookmarks allowed"
+msgstr "Bokmerker tillatt"
-#: ../../Zotlabs/Module/Import_items.php:181
-msgid "Menu import completed"
-msgstr ""
+#: ../../Zotlabs/Module/Menu.php:183
+msgid "Delete this menu"
+msgstr "Slett denne menyen"
-#: ../../Zotlabs/Module/Import_items.php:186
-msgid "Wiki import completed"
-msgstr ""
+#: ../../Zotlabs/Module/Menu.php:184 ../../Zotlabs/Module/Menu.php:219
+msgid "Edit menu contents"
+msgstr "Endre menyinnholdet"
-#: ../../Zotlabs/Module/Import_items.php:191
-msgid "Webpages import completed"
-msgstr ""
+#: ../../Zotlabs/Module/Menu.php:185
+msgid "Edit this menu"
+msgstr "Endre denne menyen"
-#: ../../Zotlabs/Module/Import.php:70
-msgid "Nothing to import."
-msgstr "Ingenting å importere."
+#: ../../Zotlabs/Module/Menu.php:201
+msgid "Menu could not be deleted."
+msgstr "Menyen kunne ikke bli slettet."
-#: ../../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/Menu.php:209 ../../Zotlabs/Module/Mitem.php:31
+msgid "Menu not found."
+msgstr "Menyen ble ikke funnet."
-#: ../../Zotlabs/Module/Import.php:163
-#, php-format
-msgid "Your service plan only allows %d channels."
-msgstr "Din tjenesteplan tillater bare %d kanaler."
+#: ../../Zotlabs/Module/Menu.php:214
+msgid "Edit Menu"
+msgstr "Endre meny"
-#: ../../Zotlabs/Module/Import.php:190
-msgid "No channel. Import failed."
-msgstr "Ingen kanal. Import mislyktes."
+#: ../../Zotlabs/Module/Menu.php:218
+msgid "Add or remove entries to this menu"
+msgstr "Legg til eller fjern punkter i denne menyen"
-#: ../../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/Menu.php:220
+msgid "Menu name"
+msgstr "Menynavn"
-#: ../../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/Menu.php:220
+msgid "Must be unique, only seen by you"
+msgstr "Må være unik, ses bare av deg"
-#: ../../Zotlabs/Module/Import.php:592
-msgid "Channel Import"
-msgstr ""
+#: ../../Zotlabs/Module/Menu.php:221
+msgid "Menu title"
+msgstr "Menytittel"
-#: ../../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/Menu.php:221
+msgid "Menu title as seen by others"
+msgstr "Menytittelen andre ser"
-#: ../../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/Menu.php:222
+msgid "Allow bookmarks"
+msgstr "Tillat bokmerker"
-#: ../../Zotlabs/Module/Import.php:597
-msgid "Your old identity address (xyz@example.com)"
-msgstr "Din gamle identitetsadresse (xyz@example.com)"
+#: ../../Zotlabs/Module/Menu.php:232 ../../Zotlabs/Module/Xchan.php:41
+#: ../../Zotlabs/Module/Mitem.php:134
+msgid "Not found."
+msgstr "Ikke funnet."
-#: ../../Zotlabs/Module/Import.php:598
-msgid "Your old login email address"
-msgstr "Din gamle innloggings e-postadresse"
+#: ../../Zotlabs/Module/Help.php:61
+msgid "Documentation Search"
+msgstr "Søk i dokumentasjon"
-#: ../../Zotlabs/Module/Import.php:599
-msgid "Your old login password"
-msgstr "Ditt gamle innloggingspassord"
+#: ../../Zotlabs/Module/Help.php:169
+msgid "Not Found"
+msgstr "Ikke funnet"
-#: ../../Zotlabs/Module/Import.php:600
-msgid "Import your items and files (limited by available memory)"
-msgstr ""
+#: ../../Zotlabs/Module/Help.php:222
+msgid "$Projectname Documentation"
+msgstr "$Projectname dokumentasjon"
-#: ../../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/Help.php:233
+msgid "Contents"
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/Help.php:240
+msgid "Members"
+msgstr "Medlemmer"
-#: ../../Zotlabs/Module/Import.php:605
-msgid "Move this channel (disable all previous locations)"
+#: ../../Zotlabs/Module/Help.php:241
+msgid "Administrators"
msgstr ""
-#: ../../Zotlabs/Module/Import.php:606
-msgid "Use this channel nickname instead of the one provided"
+#: ../../Zotlabs/Module/Help.php:242
+msgid "Developers"
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/Help.php:243
+msgid "Tutorials"
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/Help.php:261
+msgid "Help:"
+msgstr "Hjelp:"
-#: ../../Zotlabs/Module/Ochannel.php:32 ../../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/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95
+#: ../../Zotlabs/Module/Editlayout.php:79 ../../Zotlabs/Module/Editpost.php:24
+#: ../../Zotlabs/Module/Editwebpage.php:80
+#: ../../extend/addon/hzaddons/articles/Mod_Article_edit.php:17
+#: ../../extend/addon/hzaddons/articles/Mod_Article_edit.php:33
+#: ../../extend/addon/hzaddons/cards/Mod_Card_edit.php:17
+#: ../../extend/addon/hzaddons/cards/Mod_Card_edit.php:33
+msgid "Item not found"
+msgstr "Elementet ble ikke funnet."
-#: ../../Zotlabs/Module/Z6trans.php:19
-msgid "Update to Hubzilla 5.0 step 2"
-msgstr ""
+#: ../../Zotlabs/Module/Editblock.php:113 ../../Zotlabs/Module/Blocks.php:97
+#: ../../Zotlabs/Module/Blocks.php:153
+msgid "Block Name"
+msgstr "Byggeklossens navn"
-#: ../../Zotlabs/Module/Z6trans.php:21
-msgid "To complete the update please run"
-msgstr ""
+#: ../../Zotlabs/Module/Editblock.php:138
+msgid "Edit Block"
+msgstr "Endre byggekloss"
-#: ../../Zotlabs/Module/Z6trans.php:23
-msgid "php util/z6convert.php"
-msgstr ""
+#: ../../Zotlabs/Module/Channel.php:150 ../../Zotlabs/Module/Hcard.php:37
+#: ../../Zotlabs/Module/Profile.php:62
+msgid "Posts and comments"
+msgstr "Innlegg og kommentarer"
-#: ../../Zotlabs/Module/Z6trans.php:25
-msgid "from the terminal."
-msgstr ""
+#: ../../Zotlabs/Module/Channel.php:157 ../../Zotlabs/Module/Hcard.php:44
+#: ../../Zotlabs/Module/Profile.php:69
+msgid "Only posts"
+msgstr "Kun innlegg"
-#: ../../Zotlabs/Module/Register.php:112
-msgid "Email address required"
+#: ../../Zotlabs/Module/Channel.php:195 ../../Zotlabs/Module/Oep.php:82
+#: ../../Zotlabs/Module/Pubstream.php:55 ../../Zotlabs/Module/Display.php:53
+msgid "Malformed message id."
msgstr ""
-#: ../../Zotlabs/Module/Register.php:156
-msgid "No password provided"
-msgstr ""
+#: ../../Zotlabs/Module/Channel.php:231
+msgid "Insufficient permissions. Request redirected to profile page."
+msgstr "Utilstrekkelig tillatelse. Forespørsel omdirigert til profilsiden."
-#: ../../Zotlabs/Module/Register.php:179
-msgid "Terms of Service not accepted"
-msgstr ""
+#: ../../Zotlabs/Module/Channel.php:246 ../../Zotlabs/Module/Network.php:172
+msgid "Search Results For:"
+msgstr "Søkeresultat for:"
-#: ../../Zotlabs/Module/Register.php:241
-msgid "Invitation code succesfully applied"
-msgstr ""
+#: ../../Zotlabs/Module/Channel.php:279 ../../Zotlabs/Module/Rpost.php:111
+#: ../../Zotlabs/Module/Network.php:213 ../../Zotlabs/Module/Hq.php:99
+#: ../../Zotlabs/Module/Pubstream.php:98 ../../Zotlabs/Module/Display.php:95
+msgid "Reset form"
+msgstr "Nullstill skjema"
-#: ../../Zotlabs/Module/Register.php:261
-msgid "Invitation not in time or too late"
+#: ../../Zotlabs/Module/Channel.php:501 ../../Zotlabs/Module/Display.php:320
+msgid ""
+"You must enable javascript for your browser to be able to view this content."
msgstr ""
-#: ../../Zotlabs/Module/Register.php:267
-msgid "Invitation email failed"
-msgstr ""
+#: ../../Zotlabs/Module/New_channel.php:148 ../../Zotlabs/Module/Manage.php:130
+#, php-format
+msgid "You have created %1$.0f of %2$.0f allowed channels."
+msgstr "Du har laget %1$.0f av %2$.0f tillatte kanaler."
-#: ../../Zotlabs/Module/Register.php:275
-msgid "Invitation code failed"
+#: ../../Zotlabs/Module/New_channel.php:160
+msgid "Your real name is recommended."
msgstr ""
-#: ../../Zotlabs/Module/Register.php:282
-msgid "Invitations are not available"
+#: ../../Zotlabs/Module/New_channel.php:161
+msgid ""
+"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation "
+"Group\""
msgstr ""
+"Eksempel: \"Ola Nordmann\", \"Lisa og hestene hennes\", \"Fotball\", "
+"\"Sykkelgruppa\""
-#: ../../Zotlabs/Module/Register.php:292
-msgid "Registration on this hub is by invitation only"
+#: ../../Zotlabs/Module/New_channel.php:166
+msgid ""
+"This will be used to create a unique network address (like an email address)."
msgstr ""
-#: ../../Zotlabs/Module/Register.php:399
-msgid "New register request"
+#: ../../Zotlabs/Module/New_channel.php:168
+msgid "Allowed characters are a-z 0-9, - and _"
msgstr ""
-#: ../../Zotlabs/Module/Register.php:417
-msgid "Error creating dId A"
-msgstr ""
+#: ../../Zotlabs/Module/New_channel.php:176
+#, fuzzy
+msgid "Channel name"
+msgstr "Kanalnavn"
-#: ../../Zotlabs/Module/Register.php:435
-msgid "Registration on this hub is disabled."
-msgstr "Registrering ved dette nettstedet er skrudd av."
+#: ../../Zotlabs/Module/New_channel.php:178
+#: ../../Zotlabs/Module/Register.php:513
+msgid "Choose a short nickname"
+msgstr "Velg et kort kallenavn"
-#: ../../Zotlabs/Module/Register.php:444
-msgid "Registration on this hub is by approval only."
-msgstr "Registrering ved dette nettstedet skjer på godkjenning."
+#: ../../Zotlabs/Module/New_channel.php:179
+#: ../../Zotlabs/Module/Settings/Channel.php:234
+msgid "Channel role"
+msgstr "Kanalrolle"
-#: ../../Zotlabs/Module/Register.php:445
-msgid "Register at another affiliated hub in case when prefered"
+#: ../../Zotlabs/Module/New_channel.php:182
+msgid "Create a Channel"
msgstr ""
-#: ../../Zotlabs/Module/Register.php:458
-msgid "Registration on this hub is by invitation only."
+#: ../../Zotlabs/Module/New_channel.php:183
+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/Register.php:459
-msgid "Register at another affiliated hub"
+#: ../../Zotlabs/Module/New_channel.php:184
+msgid ""
+"or <a href=\"import\">import an existing channel</a> from another location."
msgstr ""
+"eller <a href=\"import\">importer en eksisterende kanal</a> fra et annet "
+"sted."
-#: ../../Zotlabs/Module/Register.php:473 ../../Zotlabs/Module/Siteinfo.php:28
-msgid "Terms of Service"
-msgstr "Tjenesteavtale"
+#: ../../Zotlabs/Module/New_channel.php:189
+msgid "Validate"
+msgstr ""
-#: ../../Zotlabs/Module/Register.php:479
-#, php-format
-msgid "I accept the %s for this website"
-msgstr "Jeg godtar %s for dette nettstedet"
+#: ../../Zotlabs/Module/Oexchange.php:27
+msgid "Unable to find your hub."
+msgstr "Ikke i stand til å finne hubben din."
-#: ../../Zotlabs/Module/Register.php:486
-#, php-format
-msgid "I am over %s years of age and accept the %s for this website"
+#: ../../Zotlabs/Module/Oexchange.php:41
+msgid "Post successful."
+msgstr "Innlegg vellykket."
+
+#: ../../Zotlabs/Module/Import_items.php:50
+msgid "Not a zip file or zip file corrupted."
msgstr ""
-#: ../../Zotlabs/Module/Register.php:496
-msgid "Your email address"
-msgstr "Din e-postadresse"
+#: ../../Zotlabs/Module/Import_items.php:121
+msgid "Import Items"
+msgstr "Importer elementer"
-#: ../../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/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/Register.php:503
-msgid "Choose a password"
-msgstr "Velg et passord"
+#: ../../Zotlabs/Module/Import_items.php:123
+#: ../../Zotlabs/Module/Import.php:605
+msgid "File to Upload"
+msgstr "Fil som skal lastes opp"
-#: ../../Zotlabs/Module/Register.php:504
-msgid "Please re-enter your password"
-msgstr "Vennligst skriv ditt passord en gang til"
+#: ../../Zotlabs/Module/Import_items.php:136
+#: ../../Zotlabs/Module/Import.php:108
+msgid "Imported file is empty."
+msgstr "Importert fil er tom."
-#: ../../Zotlabs/Module/Register.php:506
-msgid "Please enter your invitation code"
-msgstr "Vennligst skriv din invitasjonskode"
+#: ../../Zotlabs/Module/Import_items.php:159
+msgid "Content import completed"
+msgstr ""
-#: ../../Zotlabs/Module/Register.php:508
-msgid "Your name"
+#: ../../Zotlabs/Module/Import_items.php:164
+msgid "Chatroom import completed"
msgstr ""
-#: ../../Zotlabs/Module/Register.php:508
-msgid "Real name is preferred"
+#: ../../Zotlabs/Module/Import_items.php:170
+msgid "Channel calendar import 1/2 completed"
msgstr ""
-#: ../../Zotlabs/Module/Register.php:510
-#: ../../Zotlabs/Module/New_channel.php:177
-msgid "Choose a short nickname"
-msgstr "Velg et kort kallenavn"
+#: ../../Zotlabs/Module/Import_items.php:176
+msgid "Channel calendar import 2/2 completed"
+msgstr ""
-#: ../../Zotlabs/Module/Register.php:510
-msgid ""
-"Your nickname will be used to create an easy to remember channel address"
+#: ../../Zotlabs/Module/Import_items.php:181
+msgid "Menu import completed"
msgstr ""
-#: ../../Zotlabs/Module/Register.php:514
-msgid "Why do you want to join this hub?"
+#: ../../Zotlabs/Module/Import_items.php:186
+msgid "Wiki import completed"
msgstr ""
-#: ../../Zotlabs/Module/Register.php:514
-msgid "This will help to review your registration"
+#: ../../Zotlabs/Module/Import_items.php:191
+msgid "Webpages import completed"
msgstr ""
-#: ../../Zotlabs/Module/Register.php:520
-#: ../../Zotlabs/Module/Admin/Site.php:416
-msgid "Registration"
-msgstr "Registrering"
+#: ../../Zotlabs/Module/Rpost.php:117 ../../Zotlabs/Module/Editpost.php:113
+msgid "Edit post"
+msgstr "Endre innlegg"
-#: ../../Zotlabs/Module/Register.php:528
-msgid "I have an invite code"
+#: ../../Zotlabs/Module/Block.php:29 ../../Zotlabs/Module/Page.php:39
+msgid "Invalid item."
+msgstr "Ugyldig element."
+
+#: ../../Zotlabs/Module/Block.php:41 ../../Zotlabs/Module/Chanview.php:95
+#: ../../Zotlabs/Module/Cal.php:31 ../../Zotlabs/Module/Page.php:75
+#: ../../Zotlabs/Module/Wall_upload.php:30
+#: ../../Zotlabs/Module/Attach_edit.php:52 ../../Zotlabs/Module/Attach.php:22
+#: ../../extend/addon/hzaddons/articles/Mod_Article_edit.php:44
+#: ../../extend/addon/hzaddons/cards/Mod_Card_edit.php:44
+msgid "Channel not found."
+msgstr "Kanalen ble ikke funnet."
+
+#: ../../Zotlabs/Module/Lang.php:20
+msgid "Language App"
msgstr ""
-#: ../../Zotlabs/Module/Register.php:575
-msgid ""
-"This site has exceeded the number of allowed daily account registrations."
+#: ../../Zotlabs/Module/Lang.php:20 ../../Zotlabs/Module/Invite.php:70
+#: ../../extend/addon/hzaddons/xmpp/Mod_Xmpp.php:35
+#: ../../extend/addon/hzaddons/ijpost/Mod_Ijpost.php:35
+msgid "Not Installed"
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:511
-msgid "Public access denied."
-msgstr "Offentlig tilgang avvist."
+#: ../../Zotlabs/Module/Email_resend.php:12
+#: ../../Zotlabs/Module/Email_validation.php:25
+msgid "Token verification failed."
+msgstr ""
-#: ../../Zotlabs/Module/Search.php:250
-#, php-format
-msgid "Items tagged with: %s"
-msgstr "Elementer merket med: %s"
+#: ../../Zotlabs/Module/Email_resend.php:30
+msgid "Email verification resent"
+msgstr ""
-#: ../../Zotlabs/Module/Search.php:252
-#, php-format
-msgid "Search results for: %s"
-msgstr "Søkeresultater for: %s"
+#: ../../Zotlabs/Module/Email_resend.php:33
+msgid "Unable to resend email verification message."
+msgstr ""
-#: ../../Zotlabs/Module/Setup.php:179
+#: ../../Zotlabs/Module/Setup.php:180
msgid "$Projectname Server - Setup"
msgstr "$Projectname-tjener - oppsett"
-#: ../../Zotlabs/Module/Setup.php:183
+#: ../../Zotlabs/Module/Setup.php:184
msgid "Could not connect to database."
msgstr "Fikk ikke kontakt med databasen."
-#: ../../Zotlabs/Module/Setup.php:187
+#: ../../Zotlabs/Module/Setup.php:188
msgid ""
"Could not connect to specified site URL. Possible SSL certificate or DNS "
"issue."
@@ -8444,15 +5688,15 @@ msgstr ""
"Fikk ikke kontakt med det angitte nettstedets URL. Problemet kan muligens "
"skyldes SSL-sertifikatet eller DNS."
-#: ../../Zotlabs/Module/Setup.php:194
+#: ../../Zotlabs/Module/Setup.php:195
msgid "Could not create table."
msgstr "Kunne ikke lage tabellen."
-#: ../../Zotlabs/Module/Setup.php:200
+#: ../../Zotlabs/Module/Setup.php:201
msgid "Your site database has been installed."
msgstr "Databasen til ditt nettsted har blitt installert."
-#: ../../Zotlabs/Module/Setup.php:206
+#: ../../Zotlabs/Module/Setup.php:207
msgid ""
"You may need to import the file \"install/schema_xxx.sql\" manually using a "
"database client."
@@ -8460,36 +5704,36 @@ 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
+#: ../../Zotlabs/Module/Setup.php:208 ../../Zotlabs/Module/Setup.php:274
+#: ../../Zotlabs/Module/Setup.php:799
msgid "Please see the file \"install/INSTALL.txt\"."
msgstr "Vennligst les filen \"install/INSTALL.txt\"."
-#: ../../Zotlabs/Module/Setup.php:268
+#: ../../Zotlabs/Module/Setup.php:271
msgid "System check"
msgstr "Systemsjekk"
-#: ../../Zotlabs/Module/Setup.php:272 ../../Zotlabs/Module/Cdav.php:1027
-#: ../../Zotlabs/Module/Cal.php:200 ../../Zotlabs/Module/Photos.php:951
+#: ../../Zotlabs/Module/Setup.php:275 ../../Zotlabs/Module/Photos.php:955
+#: ../../Zotlabs/Module/Cal.php:200 ../../Zotlabs/Module/Cdav.php:1027
msgid "Next"
msgstr "Neste"
-#: ../../Zotlabs/Module/Setup.php:273
+#: ../../Zotlabs/Module/Setup.php:276
msgid "Check again"
msgstr "Sjekk igjen"
-#: ../../Zotlabs/Module/Setup.php:294
+#: ../../Zotlabs/Module/Setup.php:297
msgid "Database connection"
msgstr "Databaseforbindelse"
-#: ../../Zotlabs/Module/Setup.php:295
+#: ../../Zotlabs/Module/Setup.php:298
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
+#: ../../Zotlabs/Module/Setup.php:299
msgid ""
"Please contact your hosting provider or site administrator if you have "
"questions about these settings."
@@ -8497,7 +5741,7 @@ msgstr ""
"Vennligst kontakt din nettstedstilbyder eller nettstedsadministrator hvis du "
"har spørsmål om disse innstillingene."
-#: ../../Zotlabs/Module/Setup.php:297
+#: ../../Zotlabs/Module/Setup.php:300
msgid ""
"The database you specify below should already exist. If it does not, please "
"create it before continuing."
@@ -8505,43 +5749,43 @@ 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
+#: ../../Zotlabs/Module/Setup.php:304
msgid "Database Server Name"
msgstr "Navn på databasetjener"
-#: ../../Zotlabs/Module/Setup.php:301
+#: ../../Zotlabs/Module/Setup.php:304
msgid "Default is 127.0.0.1"
msgstr "Standard er 127.0.0.1"
-#: ../../Zotlabs/Module/Setup.php:302
+#: ../../Zotlabs/Module/Setup.php:305
msgid "Database Port"
msgstr "Databaseport"
-#: ../../Zotlabs/Module/Setup.php:302
+#: ../../Zotlabs/Module/Setup.php:305
msgid "Communication port number - use 0 for default"
msgstr "Kommunikasjonsportnummer - bruk 0 for standard"
-#: ../../Zotlabs/Module/Setup.php:303
+#: ../../Zotlabs/Module/Setup.php:306
msgid "Database Login Name"
msgstr "Database innloggingsnavn"
-#: ../../Zotlabs/Module/Setup.php:304
+#: ../../Zotlabs/Module/Setup.php:307
msgid "Database Login Password"
msgstr "Database innloggingspassord"
-#: ../../Zotlabs/Module/Setup.php:305
+#: ../../Zotlabs/Module/Setup.php:308
msgid "Database Name"
msgstr "Databasenavn"
-#: ../../Zotlabs/Module/Setup.php:306
+#: ../../Zotlabs/Module/Setup.php:309
msgid "Database Type"
msgstr "Databasetype"
-#: ../../Zotlabs/Module/Setup.php:308 ../../Zotlabs/Module/Setup.php:348
+#: ../../Zotlabs/Module/Setup.php:311 ../../Zotlabs/Module/Setup.php:351
msgid "Site administrator email address"
msgstr "E-postadressen til administrator ved nettstedet"
-#: ../../Zotlabs/Module/Setup.php:308 ../../Zotlabs/Module/Setup.php:348
+#: ../../Zotlabs/Module/Setup.php:311 ../../Zotlabs/Module/Setup.php:351
msgid ""
"Your account email address must match this in order to use the web admin "
"panel."
@@ -8549,35 +5793,35 @@ 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
+#: ../../Zotlabs/Module/Setup.php:312 ../../Zotlabs/Module/Setup.php:353
msgid "Website URL"
msgstr "Nettstedets URL"
-#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:350
+#: ../../Zotlabs/Module/Setup.php:312 ../../Zotlabs/Module/Setup.php:353
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
+#: ../../Zotlabs/Module/Setup.php:313 ../../Zotlabs/Module/Setup.php:355
msgid "Please select a default timezone for your website"
msgstr "Vennligst velg en standard tidssone for ditt nettsted"
-#: ../../Zotlabs/Module/Setup.php:337
+#: ../../Zotlabs/Module/Setup.php:340
msgid "Site settings"
msgstr "Nettstedets innstillinger"
-#: ../../Zotlabs/Module/Setup.php:391
+#: ../../Zotlabs/Module/Setup.php:394
msgid "PHP version 8.0 or greater is required."
msgstr ""
-#: ../../Zotlabs/Module/Setup.php:392
+#: ../../Zotlabs/Module/Setup.php:395
msgid "PHP version"
msgstr ""
-#: ../../Zotlabs/Module/Setup.php:408
+#: ../../Zotlabs/Module/Setup.php:411
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
+#: ../../Zotlabs/Module/Setup.php:412
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."
@@ -8585,11 +5829,11 @@ 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
+#: ../../Zotlabs/Module/Setup.php:416
msgid "PHP executable path"
msgstr "PHP-kjørefilens sti"
-#: ../../Zotlabs/Module/Setup.php:413
+#: ../../Zotlabs/Module/Setup.php:416
msgid ""
"Enter full path to php executable. You can leave this blank to continue the "
"installation."
@@ -8597,17 +5841,17 @@ msgstr ""
"Skriv full sti til kjørefilen for PHP. Du kan la denne stå blank for å "
"fortsette installasjonen."
-#: ../../Zotlabs/Module/Setup.php:418
+#: ../../Zotlabs/Module/Setup.php:421
msgid "Command line PHP"
msgstr "Kommandolinje PHP"
-#: ../../Zotlabs/Module/Setup.php:428
+#: ../../Zotlabs/Module/Setup.php:431
msgid ""
"Unable to check command line PHP, as shell_exec() is disabled. This is "
"required."
msgstr ""
-#: ../../Zotlabs/Module/Setup.php:432
+#: ../../Zotlabs/Module/Setup.php:435
msgid ""
"The command line version of PHP on your system does not have "
"\"register_argc_argv\" enabled."
@@ -8615,21 +5859,21 @@ msgstr ""
"Kommandolinjeversjonen av PHP på ditt system har ikke \"register_argc_argv\" "
"påskrudd."
-#: ../../Zotlabs/Module/Setup.php:433
+#: ../../Zotlabs/Module/Setup.php:436
msgid "This is required for message delivery to work."
msgstr "Dette er påkrevd for at meldingslevering skal virke."
-#: ../../Zotlabs/Module/Setup.php:436
+#: ../../Zotlabs/Module/Setup.php:439
msgid "PHP register_argc_argv"
msgstr "PHP register_argc_argv"
-#: ../../Zotlabs/Module/Setup.php:456
+#: ../../Zotlabs/Module/Setup.php:459
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
+#: ../../Zotlabs/Module/Setup.php:461
#, php-format
msgid ""
"Your max allowed total upload size is set to %s. Maximum size of one file to "
@@ -8639,15 +5883,15 @@ msgstr ""
"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
+#: ../../Zotlabs/Module/Setup.php:467
msgid "You can adjust these settings in the server php.ini file."
msgstr ""
-#: ../../Zotlabs/Module/Setup.php:466
+#: ../../Zotlabs/Module/Setup.php:469
msgid "PHP upload limits"
msgstr "PHP opplastingsgrenser"
-#: ../../Zotlabs/Module/Setup.php:489
+#: ../../Zotlabs/Module/Setup.php:492
msgid ""
"Error: the \"openssl_pkey_new\" function on this system is not able to "
"generate encryption keys"
@@ -8655,7 +5899,7 @@ msgstr ""
"Feil: \"openssl_pkey_new\"-funksjonen på dette systemet er ikke i stand til "
"å lage krypteringsnøkler"
-#: ../../Zotlabs/Module/Setup.php:490
+#: ../../Zotlabs/Module/Setup.php:493
msgid ""
"If running under Windows, please see \"http://www.php.net/manual/en/openssl."
"installation.php\"."
@@ -8663,108 +5907,140 @@ msgstr ""
"Ved kjøring på Windows, vennligst se \"http://www.php.net/manual/en/openssl."
"installation.php\"."
-#: ../../Zotlabs/Module/Setup.php:493
+#: ../../Zotlabs/Module/Setup.php:496
msgid "Generate encryption keys"
msgstr "Lag krypteringsnøkler"
-#: ../../Zotlabs/Module/Setup.php:510
+#: ../../Zotlabs/Module/Setup.php:500
+msgid "Error: the sodium encryption library is not installed."
+msgstr ""
+
+#: ../../Zotlabs/Module/Setup.php:502
+#, fuzzy
+#| msgid "Generate encryption keys"
+msgid "Generate ed25519 encryption keys"
+msgstr "Lag krypteringsnøkler"
+
+#: ../../Zotlabs/Module/Setup.php:507
+msgid ""
+"Error: one of \"bcmath\" or \"gmp\" (bigmath library) extensions are "
+"required."
+msgstr ""
+
+#: ../../Zotlabs/Module/Setup.php:509
+msgid "Bigmath library (either bcmath or gmp)"
+msgstr ""
+
+#: ../../Zotlabs/Module/Setup.php:526
msgid "libCurl PHP module"
msgstr "libCurl PHP-modul"
-#: ../../Zotlabs/Module/Setup.php:511
+#: ../../Zotlabs/Module/Setup.php:527
msgid "GD graphics PHP module"
msgstr "GD graphics PHP-modul"
-#: ../../Zotlabs/Module/Setup.php:512
+#: ../../Zotlabs/Module/Setup.php:528
msgid "OpenSSL PHP module"
msgstr "OpenSSL PHP-modul"
-#: ../../Zotlabs/Module/Setup.php:513
+#: ../../Zotlabs/Module/Setup.php:529
msgid "PDO database PHP module"
msgstr ""
-#: ../../Zotlabs/Module/Setup.php:514
+#: ../../Zotlabs/Module/Setup.php:530
msgid "mb_string PHP module"
msgstr "mb_string PHP-modul"
-#: ../../Zotlabs/Module/Setup.php:515
+#: ../../Zotlabs/Module/Setup.php:531
msgid "xml PHP module"
msgstr "xml PHP modul"
-#: ../../Zotlabs/Module/Setup.php:516
+#: ../../Zotlabs/Module/Setup.php:532
msgid "zip PHP module"
msgstr ""
-#: ../../Zotlabs/Module/Setup.php:520 ../../Zotlabs/Module/Setup.php:522
+#: ../../Zotlabs/Module/Setup.php:533
+#, fuzzy
+#| msgid "xml PHP module"
+msgid "intl PHP module"
+msgstr "xml PHP modul"
+
+#: ../../Zotlabs/Module/Setup.php:537 ../../Zotlabs/Module/Setup.php:539
msgid "Apache mod_rewrite module"
msgstr "Apache mod_rewrite-modul"
-#: ../../Zotlabs/Module/Setup.php:520
+#: ../../Zotlabs/Module/Setup.php:537
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
+#: ../../Zotlabs/Module/Setup.php:543 ../../Zotlabs/Module/Setup.php:546
msgid "exec"
msgstr ""
-#: ../../Zotlabs/Module/Setup.php:526
+#: ../../Zotlabs/Module/Setup.php:543
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
+#: ../../Zotlabs/Module/Setup.php:549 ../../Zotlabs/Module/Setup.php:552
msgid "shell_exec"
msgstr ""
-#: ../../Zotlabs/Module/Setup.php:532
+#: ../../Zotlabs/Module/Setup.php:549
msgid ""
"Error: shell_exec is required but is either not installed or has been "
"disabled in php.ini"
msgstr ""
-#: ../../Zotlabs/Module/Setup.php:540
+#: ../../Zotlabs/Module/Setup.php:557
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
+#: ../../Zotlabs/Module/Setup.php:561
msgid ""
"Error: GD PHP module with JPEG support or ImageMagick graphics library "
"required but not installed."
msgstr ""
-#: ../../Zotlabs/Module/Setup.php:548
+#: ../../Zotlabs/Module/Setup.php:565
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
+#: ../../Zotlabs/Module/Setup.php:571
msgid ""
"Error: PDO database PHP module missing a driver for either mysql or pgsql."
msgstr ""
-#: ../../Zotlabs/Module/Setup.php:559
+#: ../../Zotlabs/Module/Setup.php:576
msgid "Error: PDO database PHP module required but not installed."
msgstr ""
-#: ../../Zotlabs/Module/Setup.php:563
+#: ../../Zotlabs/Module/Setup.php:580
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
+#: ../../Zotlabs/Module/Setup.php:584
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
+#: ../../Zotlabs/Module/Setup.php:588
msgid "Error: zip PHP module required but not installed."
msgstr ""
-#: ../../Zotlabs/Module/Setup.php:590 ../../Zotlabs/Module/Setup.php:599
+#: ../../Zotlabs/Module/Setup.php:592
+#, fuzzy
+#| msgid "Error: openssl PHP module required but not installed."
+msgid "Error: intl PHP module required but not installed."
+msgstr "Feil: openssl PHP-modul er påkrevd, men er ikke installert."
+
+#: ../../Zotlabs/Module/Setup.php:611 ../../Zotlabs/Module/Setup.php:620
msgid ".htconfig.php is writable"
msgstr ".htconfig.php kan skrives til"
-#: ../../Zotlabs/Module/Setup.php:595
+#: ../../Zotlabs/Module/Setup.php:616
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."
@@ -8772,7 +6048,7 @@ 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
+#: ../../Zotlabs/Module/Setup.php:617
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."
@@ -8780,24 +6056,24 @@ msgstr ""
"Dette er oftest tillatelsesinnstilling, ettersom webtjeneren kanskje kan "
"skrive til filer i din mappe - selv om du kan."
-#: ../../Zotlabs/Module/Setup.php:597
+#: ../../Zotlabs/Module/Setup.php:618
msgid "Please see install/INSTALL.txt for additional information."
msgstr ""
-#: ../../Zotlabs/Module/Setup.php:613
+#: ../../Zotlabs/Module/Setup.php:634
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
+#: ../../Zotlabs/Module/Setup.php:635
#, 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
+#: ../../Zotlabs/Module/Setup.php:636 ../../Zotlabs/Module/Setup.php:657
msgid ""
"Please ensure that the user that your web server runs as (e.g. www-data) has "
"write access to this folder."
@@ -8805,7 +6081,7 @@ 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
+#: ../../Zotlabs/Module/Setup.php:637
#, php-format
msgid ""
"Note: as a security measure, you should give the web server write access to "
@@ -8814,23 +6090,23 @@ 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
+#: ../../Zotlabs/Module/Setup.php:640
#, php-format
msgid "%s is writable"
msgstr "%s kan skrives til"
-#: ../../Zotlabs/Module/Setup.php:635
+#: ../../Zotlabs/Module/Setup.php:656
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
+#: ../../Zotlabs/Module/Setup.php:660
msgid "store is writable"
msgstr "lageret kan skrives til"
-#: ../../Zotlabs/Module/Setup.php:671
+#: ../../Zotlabs/Module/Setup.php:692
msgid ""
"SSL certificate cannot be validated. Fix certificate or disable https access "
"to this site."
@@ -8838,7 +6114,7 @@ msgstr ""
"SSL-sertifikatet kan ikke kontrolleres. Fiks sertifikatet eller skru av "
"https tilgang til dette nettstedet."
-#: ../../Zotlabs/Module/Setup.php:672
+#: ../../Zotlabs/Module/Setup.php:693
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 "
@@ -8848,7 +6124,7 @@ msgstr ""
"TCP port 443 (HTTPS-porten), så MÅ du bruke nettlesergodkjent sertifkater. "
"Du MÅ IKKE bruke egensignert sertifikater!"
-#: ../../Zotlabs/Module/Setup.php:673
+#: ../../Zotlabs/Module/Setup.php:694
msgid ""
"This restriction is incorporated because public posts from you may for "
"example contain references to images on your own hub."
@@ -8856,7 +6132,7 @@ 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
+#: ../../Zotlabs/Module/Setup.php:695
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 "
@@ -8866,7 +6142,7 @@ msgstr ""
"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
+#: ../../Zotlabs/Module/Setup.php:696
msgid ""
"This can cause usability issues elsewhere (not just on your own site) so we "
"must insist on this requirement."
@@ -8874,14 +6150,14 @@ 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
+#: ../../Zotlabs/Module/Setup.php:697
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
+#: ../../Zotlabs/Module/Setup.php:698
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. "
@@ -8889,11 +6165,11 @@ msgid ""
"server communications."
msgstr ""
-#: ../../Zotlabs/Module/Setup.php:679
+#: ../../Zotlabs/Module/Setup.php:700
msgid "SSL certificate validation"
msgstr "SSL sertifikat-kontroll"
-#: ../../Zotlabs/Module/Setup.php:685
+#: ../../Zotlabs/Module/Setup.php:706
msgid ""
"Url rewrite in .htaccess is not working. Check your server configuration."
"Test: "
@@ -8901,11 +6177,11 @@ msgstr ""
"URL omskriving (rewrite) i .htaccess virker ikke. Sjekk konfigurasjonen til "
"tjeneren din. Test: "
-#: ../../Zotlabs/Module/Setup.php:688
+#: ../../Zotlabs/Module/Setup.php:709
msgid "Url rewrite is working"
msgstr "URL rewrite virker"
-#: ../../Zotlabs/Module/Setup.php:701
+#: ../../Zotlabs/Module/Setup.php:722
msgid ""
"The database configuration file \".htconfig.php\" could not be written. "
"Please use the enclosed text to create a configuration file in your web "
@@ -8915,235 +6191,464 @@ msgstr ""
"bruk den medfølgende teksten for å lage en konfigurasjonsfil i toppkatalogen "
"av din web-tjener."
-#: ../../Zotlabs/Module/Setup.php:776
+#: ../../Zotlabs/Module/Setup.php:751
+#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:401
+msgid "Errors encountered creating database tables."
+msgstr "Feil oppstod under opprettelsen av databasetabeller."
+
+#: ../../Zotlabs/Module/Setup.php:797
msgid "<h1>What next?</h1>"
msgstr ""
-#: ../../Zotlabs/Module/Setup.php:777
+#: ../../Zotlabs/Module/Setup.php:798
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/Bookmarks.php:62
+msgid "Bookmark added"
+msgstr "Bokmerke lagt til"
-#: ../../Zotlabs/Module/Viewconnections.php:105
-#, php-format
-msgid "Visit %s's profile [%s]"
-msgstr "Besøk %s sin profil [%s]"
+#: ../../Zotlabs/Module/Bookmarks.php:101
+msgid "My Connections Bookmarks"
+msgstr "Mine forbindelsers bokmerker"
-#: ../../Zotlabs/Module/Viewconnections.php:135
-msgid "View Connections"
-msgstr "Vis forbindelser"
+#: ../../Zotlabs/Module/Z6trans.php:19
+msgid "Update to Hubzilla 5.0 step 2"
+msgstr ""
-#: ../../Zotlabs/Module/Pubsites.php:26
-msgid "Public Hubs"
-msgstr "Offentlige huber"
+#: ../../Zotlabs/Module/Z6trans.php:21
+msgid "To complete the update please run"
+msgstr ""
-#: ../../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 <strong>may</strong> provide "
-"additional details."
+#: ../../Zotlabs/Module/Z6trans.php:23
+msgid "php util/z6convert.php"
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 "
-"<strong>kan</strong> gi tilleggsopplysninger."
-#: ../../Zotlabs/Module/Pubsites.php:35
-msgid "Hub URL"
-msgstr "Nettstedets URL"
+#: ../../Zotlabs/Module/Z6trans.php:25
+msgid "from the terminal."
+msgstr ""
-#: ../../Zotlabs/Module/Pubsites.php:35
-msgid "Access Type"
-msgstr "Tilgangstype"
+#: ../../Zotlabs/Module/Regate.php:85
+msgid "Email resent"
+msgstr ""
-#: ../../Zotlabs/Module/Pubsites.php:35
-msgid "Registration Policy"
-msgstr "Retningslinjer for registrering"
+#: ../../Zotlabs/Module/Regate.php:85
+msgid "Email resend failed"
+msgstr ""
-#: ../../Zotlabs/Module/Pubsites.php:35
-msgid "Stats"
-msgstr "Statistikk"
+#: ../../Zotlabs/Module/Regate.php:110
+msgid "Verification successful"
+msgstr ""
-#: ../../Zotlabs/Module/Pubsites.php:35
-msgid "Software"
-msgstr "Programvare"
+#: ../../Zotlabs/Module/Regate.php:154
+msgid "Account successfull created"
+msgstr ""
-#: ../../Zotlabs/Module/Pubsites.php:37
-msgid "Ratings"
-msgstr "Vurderinger"
+#: ../../Zotlabs/Module/Regate.php:212
+msgid "Channel successfull created"
+msgstr ""
-#: ../../Zotlabs/Module/Pubsites.php:51
-msgid "Rate"
-msgstr "Vurder"
+#: ../../Zotlabs/Module/Regate.php:218
+msgid "Automatic channel creation failed. Please create a channel."
+msgstr ""
-#: ../../Zotlabs/Module/Channel.php:141 ../../Zotlabs/Module/Hcard.php:37
-#: ../../Zotlabs/Module/Profile.php:62
-msgid "Posts and comments"
-msgstr "Innlegg og kommentarer"
+#: ../../Zotlabs/Module/Regate.php:230
+msgid "Account creation error"
+msgstr ""
-#: ../../Zotlabs/Module/Channel.php:148 ../../Zotlabs/Module/Hcard.php:44
-#: ../../Zotlabs/Module/Profile.php:69
-msgid "Only posts"
-msgstr "Kun innlegg"
+#: ../../Zotlabs/Module/Regate.php:242
+msgid "Verify failed"
+msgstr ""
-#: ../../Zotlabs/Module/Channel.php:161 ../../Zotlabs/Module/Channel.php:183
-#: ../../Zotlabs/Module/Hq.php:41 ../../Zotlabs/Module/Pubstream.php:46
-#: ../../Zotlabs/Module/Display.php:47 ../../Zotlabs/Module/Oep.php:82
-msgid "Malformed message id."
+#: ../../Zotlabs/Module/Regate.php:247
+msgid "Token verification failed"
msgstr ""
-#: ../../Zotlabs/Module/Channel.php:219
-msgid "Insufficient permissions. Request redirected to profile page."
-msgstr "Utilstrekkelig tillatelse. Forespørsel omdirigert til profilsiden."
+#: ../../Zotlabs/Module/Regate.php:252
+msgid "Request not inside time frame"
+msgstr ""
-#: ../../Zotlabs/Module/Channel.php:494 ../../Zotlabs/Module/Display.php:321
-msgid ""
-"You must enable javascript for your browser to be able to view this content."
+#: ../../Zotlabs/Module/Regate.php:258 ../../Zotlabs/Module/Regate.php:288
+msgid "Identity unknown"
msgstr ""
-#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63
-msgid "Invalid profile identifier."
-msgstr "Ugyldig profil-identifikator."
+#: ../../Zotlabs/Module/Regate.php:264
+msgid "dId2 mistaken"
+msgstr ""
-#: ../../Zotlabs/Module/Profperm.php:111
-msgid "Profile Visibility Editor"
-msgstr "Endre profilsynlighet"
+#: ../../Zotlabs/Module/Regate.php:292
+msgid "Your Registration ID"
+msgstr ""
-#: ../../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/Regate.php:305 ../../Zotlabs/Module/Regate.php:397
+#: ../../Zotlabs/Module/Regate.php:429
+msgid "Registration verification"
+msgstr ""
-#: ../../Zotlabs/Module/Profperm.php:124
-msgid "Visible To"
-msgstr "Synlig for"
+#: ../../Zotlabs/Module/Regate.php:312 ../../Zotlabs/Module/Regate.php:434
+msgid "Hold on, you can start verification in"
+msgstr ""
-#: ../../Zotlabs/Module/Profperm.php:140
-#: ../../Zotlabs/Module/Connections.php:221
-msgid "All Connections"
-msgstr "Alle forbindelser"
+#: ../../Zotlabs/Module/Regate.php:313
+msgid "Please remember your verification token for ID"
+msgstr ""
-#: ../../Zotlabs/Module/Group.php:47
-msgid "Privacy group created."
-msgstr "Personverngruppen er opprettet."
+#: ../../Zotlabs/Module/Regate.php:315
+msgid "Token validity"
+msgstr ""
-#: ../../Zotlabs/Module/Group.php:50
-msgid "Could not create privacy group."
-msgstr "Kunne ikke opprette personverngruppen."
+#: ../../Zotlabs/Module/Regate.php:351
+msgid "Resend email"
+msgstr ""
-#: ../../Zotlabs/Module/Group.php:82
-msgid "Privacy group updated."
-msgstr "Personverngruppen er oppdatert."
+#: ../../Zotlabs/Module/Regate.php:356
+msgid "Registration status"
+msgstr ""
-#: ../../Zotlabs/Module/Group.php:137 ../../Zotlabs/Module/Group.php:301
-msgid "Post to this group by default"
+#: ../../Zotlabs/Module/Regate.php:359
+msgid "Verification successful!"
msgstr ""
-#: ../../Zotlabs/Module/Group.php:138 ../../Zotlabs/Module/Group.php:302
-msgid "Add new contacts to this group by default"
+#: ../../Zotlabs/Module/Regate.php:360
+msgid "Your login ID is"
msgstr ""
-#: ../../Zotlabs/Module/Group.php:146
-#, fuzzy
-msgid "Privacy group name"
-msgstr "Personverngruppens navn:"
+#: ../../Zotlabs/Module/Regate.php:361
+msgid ""
+"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/Group.php:147 ../../Zotlabs/Module/Group.php:249
-msgid "Members are visible to other channels"
-msgstr "Medlemmer er synlig for andre kanaler"
+#: ../../Zotlabs/Module/Regate.php:373
+msgid "Registration request revoked"
+msgstr ""
-#: ../../Zotlabs/Module/Group.php:175
-msgid "Privacy group removed."
-msgstr "Personverngruppen er fjernet."
+#: ../../Zotlabs/Module/Regate.php:374
+msgid "Sorry for any inconvience. Thank you for your response."
+msgstr ""
-#: ../../Zotlabs/Module/Group.php:178
-msgid "Unable to remove privacy group."
-msgstr "Ikke i stand til å fjerne personverngruppen."
+#: ../../Zotlabs/Module/Regate.php:398
+msgid "Please enter your verification token for ID"
+msgstr ""
-#: ../../Zotlabs/Module/Group.php:244
-#, fuzzy, php-format
-msgid "Privacy Group: %s"
-msgstr "Personverngruppe: %s"
+#: ../../Zotlabs/Module/Regate.php:399 ../../Zotlabs/Module/Regate.php:426
+msgid "Please check your email!"
+msgstr ""
-#: ../../Zotlabs/Module/Group.php:246
-msgid "Privacy group name: "
-msgstr "Personverngruppens navn: "
+#: ../../Zotlabs/Module/Regate.php:409
+msgid "Verification token"
+msgstr ""
-#: ../../Zotlabs/Module/Group.php:262
-msgid "Group members"
+#: ../../Zotlabs/Module/Regate.php:420
+msgid "ID expired"
msgstr ""
-#: ../../Zotlabs/Module/Group.php:264
-msgid "Not in this group"
+#: ../../Zotlabs/Module/Regate.php:435
+msgid "You will require the verification token for ID"
msgstr ""
-#: ../../Zotlabs/Module/Group.php:296
-msgid "Click a channel to toggle membership"
+#: ../../Zotlabs/Module/Regate.php:444
+msgid "Unknown or expired ID"
msgstr ""
-#: ../../Zotlabs/Module/Go.php:21
-msgid "This page is available only to site members"
+#: ../../Zotlabs/Module/Regate.php:455
+msgid "dId2 malformed"
msgstr ""
-#: ../../Zotlabs/Module/Go.php:29
-msgid "What would you like to do?"
+#: ../../Zotlabs/Module/Api.php:76 ../../Zotlabs/Module/Api.php:97
+msgid "Authorize application connection"
+msgstr "Tillat programforbindelse"
+
+#: ../../Zotlabs/Module/Api.php:77
+msgid "Return to your app and insert this Security Code:"
msgstr ""
-#: ../../Zotlabs/Module/Go.php:31
+#: ../../Zotlabs/Module/Api.php:87
+msgid "Please login to continue."
+msgstr "Vennligst logg inn for å fortsette."
+
+#: ../../Zotlabs/Module/Api.php:99
msgid ""
-"Please bookmark this page if you would like to return to it in the future"
+"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/Module/Go.php:35
-msgid "Upload a profile photo"
-msgstr ""
+#: ../../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/Go.php:36
-msgid "Upload a cover photo"
-msgstr ""
+#: ../../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/Go.php:37
-msgid "Edit your default profile"
-msgstr ""
+#: ../../Zotlabs/Module/Channel_calendar.php:70
+msgid "Event title and start time are required."
+msgstr "Hendelsestittel og starttidspunkt er påkrevd."
-#: ../../Zotlabs/Module/Go.php:39
-msgid "View the channel directory"
+#: ../../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/Cal.php:161 ../../Zotlabs/Module/Cdav.php:935
+#, fuzzy
+msgid "Link to source"
+msgstr "Lenke til kilde"
+
+#: ../../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/Lockview.php:101
+msgid "Remote privacy information not available"
msgstr ""
-#: ../../Zotlabs/Module/Go.php:40
-msgid "View/edit your channel settings"
+#: ../../Zotlabs/Module/Lockview.php:144 ../../Zotlabs/Module/Lockview.php:203
+#: ../../Zotlabs/Module/Acl.php:124
+msgctxt "acl"
+msgid "Profile"
+msgstr "Profil"
+
+#: ../../Zotlabs/Module/Lockview.php:155 ../../Zotlabs/Module/Lockview.php:212
+#, fuzzy
+msgid "Privacy group"
+msgstr "Personverngruppe:"
+
+#: ../../Zotlabs/Module/Lockview.php:183
+msgid "Item"
msgstr ""
-#: ../../Zotlabs/Module/Go.php:41
-msgid "View the site or project documentation"
+#: ../../Zotlabs/Module/Lockview.php:230
+#, php-format
+msgid "Click to copy link to this ressource for guest %s to clipboard"
msgstr ""
-#: ../../Zotlabs/Module/Go.php:42
-msgid "Visit your channel homepage"
+#: ../../Zotlabs/Module/Lockview.php:230
+msgid "Link copied"
msgstr ""
-#: ../../Zotlabs/Module/Go.php:43
-msgid ""
-"View your connections and/or add somebody whose address you already know"
+#: ../../Zotlabs/Module/Lockview.php:235
+msgid "Access"
+msgstr "Tilgang"
+
+#: ../../Zotlabs/Module/Lockview.php:236 ../../Zotlabs/Widget/Tokens.php:49
+msgid "Guest access"
msgstr ""
-#: ../../Zotlabs/Module/Go.php:44
-msgid ""
-"View your personal stream (this may be empty until you add some connections)"
+#: ../../Zotlabs/Module/Lockview.php:237
+msgid "OCAP access"
msgstr ""
-#: ../../Zotlabs/Module/Go.php:52
-msgid "View the public stream. Warning: this content is not moderated"
+#: ../../Zotlabs/Module/Editlayout.php:128 ../../Zotlabs/Module/Layouts.php:129
+#: ../../Zotlabs/Module/Layouts.php:187
+msgid "Layout Name"
+msgstr "Layout-navn"
+
+#: ../../Zotlabs/Module/Editlayout.php:129 ../../Zotlabs/Module/Layouts.php:132
+msgid "Layout Description (Optional)"
+msgstr "Layoutens beskrivelse (valgfritt)"
+
+#: ../../Zotlabs/Module/Editlayout.php:137
+msgid "Edit Layout"
+msgstr "Endre layout"
+
+#: ../../Zotlabs/Module/Photos.php:84 ../../Zotlabs/Module/Photos.php:103
+msgid "Album not found."
+msgstr "Albumet ble ikke funnet."
+
+#: ../../Zotlabs/Module/Photos.php:93
+msgid "Delete Album"
+msgstr "Slett album"
+
+#: ../../Zotlabs/Module/Photos.php:165 ../../Zotlabs/Module/Photos.php:1057
+msgid "Delete Photo"
+msgstr "Slett bilde"
+
+#: ../../Zotlabs/Module/Photos.php:511
+#: ../../Zotlabs/Module/Viewconnections.php:23
+#: ../../Zotlabs/Module/Directory.php:72 ../../Zotlabs/Module/Directory.php:77
+#: ../../Zotlabs/Module/Display.php:27 ../../Zotlabs/Module/Search.php:24
+msgid "Public access denied."
+msgstr "Offentlig tilgang avvist."
+
+#: ../../Zotlabs/Module/Photos.php:522
+msgid "No photos selected"
+msgstr "Ingen bilder valgt"
+
+#: ../../Zotlabs/Module/Photos.php:571
+msgid "Access to this item is restricted."
+msgstr "Tilgang til dette elementet er begrenset."
+
+#: ../../Zotlabs/Module/Photos.php:614
+#, php-format
+msgid "%1$.2f MB photo storage used."
+msgstr "%1$.2f MB lagringsplass til bilder er brukt."
+
+#: ../../Zotlabs/Module/Photos.php:618
+#, 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."
+
+#: ../../Zotlabs/Module/Photos.php:660
+msgid "Upload Photos"
+msgstr "Last opp bilder"
+
+#: ../../Zotlabs/Module/Photos.php:664
+msgid "Enter an album name"
+msgstr "Skriv et albumnavn"
+
+#: ../../Zotlabs/Module/Photos.php:665
+msgid "or select an existing album (doubleclick)"
+msgstr "eller velg et eksisterende album (dobbeltklikk)"
+
+#: ../../Zotlabs/Module/Photos.php:666
+msgid "Create a status post for this upload"
+msgstr "Lag et statusinnlegg for denne opplastingen"
+
+#: ../../Zotlabs/Module/Photos.php:668
+msgid "Description (optional)"
+msgstr "Beskrivelse (valgritt)"
+
+#: ../../Zotlabs/Module/Photos.php:756
+msgid "Show Newest First"
+msgstr "Vis nyeste først"
+
+#: ../../Zotlabs/Module/Photos.php:758
+msgid "Show Oldest First"
+msgstr "Vis eldste først"
+
+#: ../../Zotlabs/Module/Photos.php:782 ../../Zotlabs/Module/Photos.php:1324
+#: ../../Zotlabs/Module/Embedphotos.php:171 ../../Zotlabs/Widget/Album.php:84
+#: ../../Zotlabs/Widget/Portfolio.php:91
+msgid "View Photo"
+msgstr "Vis foto"
+
+#: ../../Zotlabs/Module/Photos.php:813 ../../Zotlabs/Module/Embedphotos.php:187
+#: ../../Zotlabs/Widget/Album.php:101 ../../Zotlabs/Widget/Portfolio.php:112
+msgid "Edit Album"
+msgstr "Endre album"
+
+#: ../../Zotlabs/Module/Photos.php:815 ../../Zotlabs/Module/Photos.php:1355
+msgid "Add Photos"
+msgstr "Legg til bilder"
+
+#: ../../Zotlabs/Module/Photos.php:867
+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:869
+msgid "Photo not available"
+msgstr "Bilde er utilgjengelig"
+
+#: ../../Zotlabs/Module/Photos.php:927
+msgid "Use as profile photo"
+msgstr "Bruk som profilbilde"
+
+#: ../../Zotlabs/Module/Photos.php:928
+msgid "Use as cover photo"
+msgstr "Bruk som omslagsbilde"
+
+#: ../../Zotlabs/Module/Photos.php:935
+msgid "Private Photo"
+msgstr "Privat bilde"
+
+#: ../../Zotlabs/Module/Photos.php:946 ../../Zotlabs/Module/Cal.php:199
+#: ../../Zotlabs/Module/Cdav.php:1026
+msgid "Previous"
+msgstr "Forrige"
+
+#: ../../Zotlabs/Module/Photos.php:950
+msgid "View Full Size"
+msgstr "Vis i full størrelse"
+
+#: ../../Zotlabs/Module/Photos.php:994 ../../Zotlabs/Module/Cover_photo.php:382
+#: ../../Zotlabs/Module/Tagrm.php:137 ../../Zotlabs/Module/Admin/Addons.php:463
+#: ../../extend/addon/hzaddons/superblock/Mod_Superblock.php:90
+msgid "Remove"
+msgstr "Fjern"
+
+#: ../../Zotlabs/Module/Photos.php:1031
+msgid "Edit photo"
+msgstr "Endre bilde"
+
+#: ../../Zotlabs/Module/Photos.php:1033
+msgid "Rotate CW (right)"
+msgstr "Roter med klokka (mot høyre)"
+
+#: ../../Zotlabs/Module/Photos.php:1034
+msgid "Rotate CCW (left)"
+msgstr "Roter mot klokka (venstre)"
+
+#: ../../Zotlabs/Module/Photos.php:1037
+msgid "Move photo to album"
msgstr ""
+#: ../../Zotlabs/Module/Photos.php:1038
+msgid "Enter a new album name"
+msgstr "Skriv et nytt albumnavn"
+
+#: ../../Zotlabs/Module/Photos.php:1039
+msgid "or select an existing one (doubleclick)"
+msgstr "eller velg et eksisterende album (dobbeltklikk)"
+
+#: ../../Zotlabs/Module/Photos.php:1044
+msgid "Add a Tag"
+msgstr "Legg til merkelapp"
+
+#: ../../Zotlabs/Module/Photos.php:1052
+msgid "Example: @bob, @Barbara_Jensen, @jim@example.com"
+msgstr "Eksempel: @bob, @Barbara_Jensen, @jim@example.com"
+
+#: ../../Zotlabs/Module/Photos.php:1055
+msgid "Flag as adult in album view"
+msgstr "Flag som voksent i albumvisning"
+
+#: ../../Zotlabs/Module/Photos.php:1125 ../../Zotlabs/Module/Photos.php:1137
+msgid "View all"
+msgstr "Vis alle"
+
+#: ../../Zotlabs/Module/Photos.php:1238
+msgid "Photo Tools"
+msgstr "Fotoverktøy"
+
+#: ../../Zotlabs/Module/Photos.php:1247
+msgid "In This Photo:"
+msgstr "I dette bildet:"
+
+#: ../../Zotlabs/Module/Photos.php:1252
+msgid "Map"
+msgstr "Kart"
+
+#: ../../Zotlabs/Module/Photos.php:1260
+msgctxt "noun"
+msgid "Likes"
+msgstr "Liker"
+
+#: ../../Zotlabs/Module/Photos.php:1261
+msgctxt "noun"
+msgid "Dislikes"
+msgstr "Liker ikke"
+
#: ../../Zotlabs/Module/Oauth.php:45
msgid "Name is required"
msgstr "Navn er påkrevd"
@@ -9152,14 +6657,6 @@ msgstr "Navn er påkrevd"
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:1044 ../../Zotlabs/Module/Cdav.php:1380
-#: ../../Zotlabs/Module/Admin/Addons.php:460 ../../Zotlabs/Module/Oauth2.php:58
-#: ../../Zotlabs/Module/Oauth2.php:142 ../../Zotlabs/Module/Connedit.php:748
-#: ../../Zotlabs/Lib/Apps.php:546
-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
@@ -9171,11 +6668,24 @@ msgstr "Legg til program"
msgid "Name of application"
msgstr "Navn på program"
+#: ../../Zotlabs/Module/Oauth.php:112 ../../Zotlabs/Module/Oauth.php:138
+#: ../../extend/addon/hzaddons/statusnet/statusnet.php:596
+#: ../../extend/addon/hzaddons/twitter/twitter.php:504
+msgid "Consumer Key"
+msgstr "Consumer Key"
+
#: ../../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:113 ../../Zotlabs/Module/Oauth.php:139
+#: ../../Zotlabs/Module/Oauth2.php:117 ../../Zotlabs/Module/Oauth2.php:145
+#: ../../extend/addon/hzaddons/statusnet/statusnet.php:595
+#: ../../extend/addon/hzaddons/twitter/twitter.php:505
+msgid "Consumer Secret"
+msgstr "Consumer Secret"
+
#: ../../Zotlabs/Module/Oauth.php:114 ../../Zotlabs/Module/Oauth.php:140
#: ../../Zotlabs/Module/Oauth2.php:118 ../../Zotlabs/Module/Oauth2.php:146
msgid "Redirect"
@@ -9192,6 +6702,11 @@ msgstr ""
msgid "Icon url"
msgstr "Ikon-URL"
+#: ../../Zotlabs/Module/Oauth.php:115 ../../Zotlabs/Module/Sources.php:121
+#: ../../Zotlabs/Module/Sources.php:156 ../../Zotlabs/Module/Register.php:501
+msgid "Optional"
+msgstr "Valgfritt"
+
#: ../../Zotlabs/Module/Oauth.php:126
msgid "Application not found."
msgstr "Programmet ble ikke funnet."
@@ -9212,25 +6727,808 @@ msgstr "Ikke noe navn"
msgid "Remove authorization"
msgstr "Fjern tillatelse"
-#: ../../Zotlabs/Module/Editwebpage.php:139
-msgid "Page link"
-msgstr "Sidelenke"
+#: ../../Zotlabs/Module/Apps.php:51 ../../Zotlabs/Widget/Appstore.php:19
+msgid "Available Apps"
+msgstr "Tilgjengelige apper"
-#: ../../Zotlabs/Module/Editwebpage.php:166
-msgid "Edit Webpage"
-msgstr "Endre webside"
+#: ../../Zotlabs/Module/Apps.php:51
+msgid "Installed Apps"
+msgstr "Installerte apper"
-#: ../../Zotlabs/Module/Dirsearch.php:23 ../../Zotlabs/Module/Regdir.php:52
-msgid "This site is not a directory server"
-msgstr "Dette nettstedet er ikke en katalogtjener"
+#: ../../Zotlabs/Module/Apps.php:54
+msgid "Manage Apps"
+msgstr "Behandle apper"
-#: ../../Zotlabs/Module/Dirsearch.php:31
-msgid "This directory server requires an access token"
-msgstr "Denne katalogtjeneren krever en tilgangsnøkkel (access token)"
+#: ../../Zotlabs/Module/Apps.php:55
+msgid "Create Custom App"
+msgstr ""
-#: ../../Zotlabs/Module/Pin.php:36 ../../Zotlabs/Module/Item.php:478
-msgid "Unable to locate original post."
-msgstr "Ikke i stand til å finne opprinnelig innlegg."
+#: ../../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/Chanview.php:132
+msgid "toggle full screen mode"
+msgstr ""
+
+#: ../../Zotlabs/Module/Editpost.php:38 ../../Zotlabs/Module/Editpost.php:43
+msgid "Item is not editable"
+msgstr "Elementet kan ikke endres"
+
+#: ../../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/Common.php:14
+msgid "No channel."
+msgstr "Ingen kanal."
+
+#: ../../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/Profiles.php:23 ../../Zotlabs/Module/Profiles.php:211
+#: ../../Zotlabs/Module/Profiles.php:641
+msgid "Profile not found."
+msgstr "Profilen ble ikke funnet."
+
+#: ../../Zotlabs/Module/Profiles.php:43
+msgid "Profile deleted."
+msgstr "Profilen er slettet."
+
+#: ../../Zotlabs/Module/Profiles.php:67 ../../Zotlabs/Module/Profiles.php:104
+msgid "Profile-"
+msgstr "Profil-"
+
+#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:126
+msgid "New profile created."
+msgstr "Ny profil opprettet."
+
+#: ../../Zotlabs/Module/Profiles.php:110
+msgid "Profile unavailable to clone."
+msgstr "Profilen er utilgjengelig for klonen."
+
+#: ../../Zotlabs/Module/Profiles.php:145
+msgid "Profile unavailable to export."
+msgstr "Profilen er utilgjengelig for eksport."
+
+#: ../../Zotlabs/Module/Profiles.php:221
+msgid "Profile Name is required."
+msgstr "Profilnavn er påkrevd."
+
+#: ../../Zotlabs/Module/Profiles.php:426
+msgid "Marital Status"
+msgstr "Sivilstand"
+
+#: ../../Zotlabs/Module/Profiles.php:430
+msgid "Romantic Partner"
+msgstr "Romantisk partner"
+
+#: ../../Zotlabs/Module/Profiles.php:434 ../../Zotlabs/Module/Profiles.php:787
+msgid "Likes"
+msgstr "Liker"
+
+#: ../../Zotlabs/Module/Profiles.php:438 ../../Zotlabs/Module/Profiles.php:788
+msgid "Dislikes"
+msgstr "Liker ikke"
+
+#: ../../Zotlabs/Module/Profiles.php:442 ../../Zotlabs/Module/Profiles.php:795
+msgid "Work/Employment"
+msgstr "Arbeid/sysselsetting"
+
+#: ../../Zotlabs/Module/Profiles.php:445
+msgid "Religion"
+msgstr "Religion"
+
+#: ../../Zotlabs/Module/Profiles.php:449
+msgid "Political Views"
+msgstr "Politiske synspunkter"
+
+#: ../../Zotlabs/Module/Profiles.php:453
+#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:74
+msgid "Gender"
+msgstr "Kjønn"
+
+#: ../../Zotlabs/Module/Profiles.php:457
+msgid "Sexual Preference"
+msgstr "Seksuelle preferanser"
+
+#: ../../Zotlabs/Module/Profiles.php:461
+msgid "Homepage"
+msgstr "Hjemmeside"
+
+#: ../../Zotlabs/Module/Profiles.php:465
+msgid "Interests"
+msgstr "Interesser"
+
+#: ../../Zotlabs/Module/Profiles.php:469 ../../Zotlabs/Module/Connedit.php:739
+#: ../../Zotlabs/Module/Locs.php:122
+#: ../../Zotlabs/Module/Admin/Channels.php:182
+#: ../../Zotlabs/Module/Cdav.php:1375
+msgid "Address"
+msgstr "Adresse"
+
+#: ../../Zotlabs/Module/Profiles.php:573
+msgid "Profile updated."
+msgstr "Profilen er oppdatert."
+
+#: ../../Zotlabs/Module/Profiles.php:671
+msgid "Hide my connections from viewers of this profile"
+msgstr "Skjul mine forbindelser fra besøkende som ser denne profilen"
+
+#: ../../Zotlabs/Module/Profiles.php:684
+msgid "Publish my default profile in the network directory"
+msgstr "La standardprofilen min vises i nettverkskatalonen"
+
+#: ../../Zotlabs/Module/Profiles.php:692
+msgid "Suggest me as a potential contact to new members"
+msgstr "Foreslå meg som mulig kontakt til nye medlemmer"
+
+#: ../../Zotlabs/Module/Profiles.php:696
+msgid "Reveal my online status"
+msgstr "La andre se om jeg er pålogget eller ikke"
+
+#: ../../Zotlabs/Module/Profiles.php:737
+msgid "Edit Profile Details"
+msgstr "Endre profildetaljer"
+
+#: ../../Zotlabs/Module/Profiles.php:739
+msgid "View this profile"
+msgstr "Vis denne profilen"
+
+#: ../../Zotlabs/Module/Profiles.php:741
+msgid "Profile Tools"
+msgstr "Profilverktøy"
+
+#: ../../Zotlabs/Module/Profiles.php:742
+msgid "Change cover photo"
+msgstr "Endre omslagsbilde"
+
+#: ../../Zotlabs/Module/Profiles.php:744
+msgid "Create a new profile using these settings"
+msgstr "Lag en ny profil ved å bruke disse innstillingene"
+
+#: ../../Zotlabs/Module/Profiles.php:745
+msgid "Clone this profile"
+msgstr "Klon denne profilen"
+
+#: ../../Zotlabs/Module/Profiles.php:746
+msgid "Delete this profile"
+msgstr "Slett denne profilen"
+
+#: ../../Zotlabs/Module/Profiles.php:747
+msgid "Add profile things"
+msgstr "Legg til profilting"
+
+#: ../../Zotlabs/Module/Profiles.php:748
+msgid "Basic"
+msgstr "Grunnleggende"
+
+#: ../../Zotlabs/Module/Profiles.php:750
+msgid "Relationship"
+msgstr "Forhold"
+
+#: ../../Zotlabs/Module/Profiles.php:753
+msgid "Import profile from file"
+msgstr "Importer profil fra fil"
+
+#: ../../Zotlabs/Module/Profiles.php:754
+msgid "Export profile to file"
+msgstr "Eksporter profil til fil"
+
+#: ../../Zotlabs/Module/Profiles.php:755
+msgid "Your gender"
+msgstr "Kjønn"
+
+#: ../../Zotlabs/Module/Profiles.php:756
+msgid "Marital status"
+msgstr "Sivilstatus"
+
+#: ../../Zotlabs/Module/Profiles.php:757
+msgid "Sexual preference"
+msgstr "Legning"
+
+#: ../../Zotlabs/Module/Profiles.php:760
+msgid "Profile name"
+msgstr "Profilnavn"
+
+#: ../../Zotlabs/Module/Profiles.php:762
+msgid "This is your default profile."
+msgstr "Dette er din standardprofil."
+
+#: ../../Zotlabs/Module/Profiles.php:764
+msgid "Your full name"
+msgstr "Fullt navn"
+
+#: ../../Zotlabs/Module/Profiles.php:765
+msgid "Short title/description"
+msgstr "Kort tittel/beskrivelse"
+
+#: ../../Zotlabs/Module/Profiles.php:765
+msgid "Maximal 190 characters"
+msgstr "Maksimum 190 tegn"
+
+#: ../../Zotlabs/Module/Profiles.php:768
+msgid "Street address"
+msgstr "Gateadresse"
+
+#: ../../Zotlabs/Module/Profiles.php:769
+msgid "Locality/City"
+msgstr "Sted/by"
+
+#: ../../Zotlabs/Module/Profiles.php:770
+msgid "Region/State"
+msgstr "Region"
+
+#: ../../Zotlabs/Module/Profiles.php:771
+msgid "Postal/Zip code"
+msgstr "Postnummer"
+
+#: ../../Zotlabs/Module/Profiles.php:772 ../../Zotlabs/Module/Connedit.php:757
+#: ../../Zotlabs/Module/Cdav.php:1393
+msgid "Country"
+msgstr "Land"
+
+#: ../../Zotlabs/Module/Profiles.php:777
+msgid "Who (if applicable)"
+msgstr "Hvem (om relevant)"
+
+#: ../../Zotlabs/Module/Profiles.php:777
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+msgstr "Eksempler: kari123, Kari Villiamsen, kari@example.com"
+
+#: ../../Zotlabs/Module/Profiles.php:778
+msgid "Since (date)"
+msgstr "Fra (dato)"
+
+#: ../../Zotlabs/Module/Profiles.php:781
+msgid "Tell us about yourself"
+msgstr "Fortell oss om deg selv"
+
+#: ../../Zotlabs/Module/Profiles.php:782
+#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:68
+msgid "Homepage URL"
+msgstr "Hjemmeside URL"
+
+#: ../../Zotlabs/Module/Profiles.php:783
+msgid "Hometown"
+msgstr "Hjemsted"
+
+#: ../../Zotlabs/Module/Profiles.php:784
+msgid "Political views"
+msgstr "Politiske holdninger"
+
+#: ../../Zotlabs/Module/Profiles.php:785
+msgid "Religious views"
+msgstr "Religiøse holdninger"
+
+#: ../../Zotlabs/Module/Profiles.php:786
+msgid "Keywords used in directory listings"
+msgstr "Nøkkelord for bruk i katalogoppføringen"
+
+#: ../../Zotlabs/Module/Profiles.php:786
+msgid "Example: fishing photography software"
+msgstr "Eksempel: fisking fotografering programvare"
+
+#: ../../Zotlabs/Module/Profiles.php:789
+msgid "Musical interests"
+msgstr "Musikkinteresser"
+
+#: ../../Zotlabs/Module/Profiles.php:790
+msgid "Books, literature"
+msgstr "Bøker, litteratur"
+
+#: ../../Zotlabs/Module/Profiles.php:791
+msgid "Television"
+msgstr "TV/fjernsyn"
+
+#: ../../Zotlabs/Module/Profiles.php:792
+msgid "Film/Dance/Culture/Entertainment"
+msgstr "Film/dans/kultur/underholdning"
+
+#: ../../Zotlabs/Module/Profiles.php:793
+msgid "Hobbies/Interests"
+msgstr "Hobbier/Interesser"
+
+#: ../../Zotlabs/Module/Profiles.php:794
+msgid "Love/Romance"
+msgstr "Kjærlighet/romantikk"
+
+#: ../../Zotlabs/Module/Profiles.php:796
+msgid "School/Education"
+msgstr "Skolle/utdanning"
+
+#: ../../Zotlabs/Module/Profiles.php:797
+msgid "Contact information and social networks"
+msgstr "Kontaktinformasjon og andre sosiale nettverk"
+
+#: ../../Zotlabs/Module/Profiles.php:798
+msgid "My other channels"
+msgstr "Mine andre kanaler"
+
+#: ../../Zotlabs/Module/Profiles.php:852 ../../Zotlabs/Module/Manage.php:137
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:217
+msgid "Create New"
+msgstr "Lag ny profil"
+
+#: ../../Zotlabs/Module/Network.php:108
+msgid "No such group"
+msgstr "Gruppen finnes ikke"
+
+#: ../../Zotlabs/Module/Network.php:160
+msgid "No such channel"
+msgstr "Ingen slik kanal"
+
+#: ../../Zotlabs/Module/Network.php:248
+msgid "Privacy group is empty"
+msgstr "Personverngruppen er tom"
+
+#: ../../Zotlabs/Module/Network.php:258
+msgid "Privacy group: "
+msgstr "Personverngruppe: "
+
+#: ../../Zotlabs/Module/Network.php:333
+#: ../../extend/addon/hzaddons/redred/Mod_Redred.php:29
+#, fuzzy
+msgid "Invalid channel."
+msgstr "Ugyldig kanal"
+
+#: ../../Zotlabs/Module/Invite.php:70
+msgid "Invite App"
+msgstr ""
+
+#: ../../Zotlabs/Module/Invite.php:82
+msgid "Register is closed"
+msgstr ""
+
+#: ../../Zotlabs/Module/Invite.php:116 ../../Zotlabs/Module/Invite.php:563
+msgid "Note, the invitation code is valid up to"
+msgstr ""
+
+#: ../../Zotlabs/Module/Invite.php:129
+#, php-format
+msgid "Too many recipients for one invitation (max %d)"
+msgstr ""
+
+#: ../../Zotlabs/Module/Invite.php:133
+msgid "No recipients for this invitation"
+msgstr ""
+
+#: ../../Zotlabs/Module/Invite.php:152
+#, php-format
+msgid "(%s) : Not a real email address"
+msgstr "(%s): Ikke en virkelig epostadresse"
+
+#: ../../Zotlabs/Module/Invite.php:159
+#, php-format
+msgid "(%s) : Not allowed email address"
+msgstr "(%s): Ikke en tillatt epostadresse"
+
+#: ../../Zotlabs/Module/Invite.php:172
+#, php-format
+msgid "(%s) : email address already in use"
+msgstr "(%s): epostadressen er allerede i bruk"
+
+#: ../../Zotlabs/Module/Invite.php:179
+#, php-format
+msgid "(%s) : Accepted email address"
+msgstr "(%s): Godkjent epostadresse"
+
+#: ../../Zotlabs/Module/Invite.php:266
+#: ../../extend/addon/hzaddons/notifyadmin/notifyadmin.php:40
+#, php-format
+msgid "%s : Message delivery failed."
+msgstr "%s : meldingslevering feilet."
+
+#: ../../Zotlabs/Module/Invite.php:271
+#, php-format
+msgid "To %s : Message delivery success."
+msgstr ""
+
+#: ../../Zotlabs/Module/Invite.php:303
+#, php-format
+msgid "%1$d mail(s) sent, %2$d mail error(s)"
+msgstr ""
+
+#: ../../Zotlabs/Module/Invite.php:328
+msgid "Invites not proposed by configuration"
+msgstr ""
+
+#: ../../Zotlabs/Module/Invite.php:329
+msgid "Contact the site admin"
+msgstr ""
+
+#: ../../Zotlabs/Module/Invite.php:345
+msgid "Invites by users not enabled"
+msgstr ""
+
+#: ../../Zotlabs/Module/Invite.php:350
+msgid "You have no more invitations available"
+msgstr "Du har ikke flere invitasjoner tilgjengelig"
+
+#: ../../Zotlabs/Module/Invite.php:366
+msgid "Not on xchan"
+msgstr ""
+
+#: ../../Zotlabs/Module/Invite.php:399
+msgid "All users invitation limit exceeded."
+msgstr ""
+
+#: ../../Zotlabs/Module/Invite.php:411 ../../Zotlabs/Module/Admin/Site.php:343
+msgid "Minute(s)"
+msgstr ""
+
+#: ../../Zotlabs/Module/Invite.php:412 ../../Zotlabs/Module/Admin/Site.php:344
+msgid "Hour(s)"
+msgstr ""
+
+#: ../../Zotlabs/Module/Invite.php:413 ../../Zotlabs/Module/Admin/Site.php:345
+msgid "Day(s)"
+msgstr ""
+
+#: ../../Zotlabs/Module/Invite.php:417
+msgid "Invitation expires after"
+msgstr ""
+
+#: ../../Zotlabs/Module/Invite.php:422 ../../Zotlabs/Module/Admin/Site.php:362
+#: ../../Zotlabs/Module/Admin/Site.php:384
+msgid "duration up from now"
+msgstr ""
+
+#: ../../Zotlabs/Module/Invite.php:518 ../../Zotlabs/Module/Invite.php:557
+msgid "Invitation"
+msgstr ""
+
+#: ../../Zotlabs/Module/Invite.php:548
+msgid "Send invitations"
+msgstr "Send invitasjoner"
+
+#: ../../Zotlabs/Module/Invite.php:549
+msgid "Invitations I am using"
+msgstr "Invitasjoner jeg bruker"
+
+#: ../../Zotlabs/Module/Invite.php:550
+msgid "Invitations we are using"
+msgstr ""
+
+#: ../../Zotlabs/Module/Invite.php:551
+msgid "§ Note, the email(s) sent will be recorded in the system logs"
+msgstr ""
+
+#: ../../Zotlabs/Module/Invite.php:552
+msgid "Enter email addresses, one per line:"
+msgstr "Skriv e-postadresser, en per linje:"
+
+#: ../../Zotlabs/Module/Invite.php:553
+msgid "Your message:"
+msgstr "Din melding:"
+
+#: ../../Zotlabs/Module/Invite.php:554
+msgid "Invite template"
+msgstr ""
+
+#: ../../Zotlabs/Module/Invite.php:556
+msgid "Subject:"
+msgstr "Emne:"
+
+#: ../../Zotlabs/Module/Invite.php:562
+msgid "Here you may enter personal notes to the recipient(s)"
+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: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"
+
+#: ../../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 ""
+"Importer alt eller et utvalgt av innhold fra følgende kanal inn i denne "
+"kanalen og distribuer det i henhold til dine egne kanalinnstillinger."
+
+#: ../../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)"
+
+#: ../../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"
+
+#: ../../Zotlabs/Module/Sources.php:120 ../../Zotlabs/Module/Sources.php:159
+msgid "Channel Name"
+msgstr "Kanalnavn"
+
+#: ../../Zotlabs/Module/Sources.php:121 ../../Zotlabs/Module/Sources.php:156
+msgid ""
+"Add the following categories to posts imported from this source (comma "
+"separated)"
+msgstr ""
+
+#: ../../Zotlabs/Module/Sources.php:122 ../../Zotlabs/Module/Sources.php:157
+msgid "Resend posts with this channel as author"
+msgstr ""
+
+#: ../../Zotlabs/Module/Sources.php:122 ../../Zotlabs/Module/Sources.php:157
+msgid "Copyrights may apply"
+msgstr ""
+
+#: ../../Zotlabs/Module/Sources.php:142 ../../Zotlabs/Module/Sources.php:172
+msgid "Source not found."
+msgstr "Kilden ble ikke funnet."
+
+#: ../../Zotlabs/Module/Sources.php:149
+msgid "Edit Source"
+msgstr "Endre kilde"
+
+#: ../../Zotlabs/Module/Sources.php:150
+msgid "Delete Source"
+msgstr "Slett kilde"
+
+#: ../../Zotlabs/Module/Sources.php:180
+msgid "Source removed"
+msgstr "Kilden er fjernet"
+
+#: ../../Zotlabs/Module/Sources.php:182
+msgid "Unable to remove source."
+msgstr "Ikke i stand til å fjerne kilde."
+
+#: ../../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."
+
+#: ../../Zotlabs/Module/Suggest.php:71 ../../Zotlabs/Widget/Suggestions.php:53
+msgid "Ignore/Hide"
+msgstr "Ignorer/Skjul"
+
+#: ../../Zotlabs/Module/Impel.php:188
+#, php-format
+msgid "%s element installed"
+msgstr "%s element installert"
+
+#: ../../Zotlabs/Module/Impel.php:191
+#, php-format
+msgid "%s element installation failed"
+msgstr "Installasjon av %s-element mislyktes"
+
+#: ../../Zotlabs/Module/Group.php:48
+msgid "Privacy group created."
+msgstr "Personverngruppen er opprettet."
+
+#: ../../Zotlabs/Module/Group.php:51
+msgid "Could not create privacy group."
+msgstr "Kunne ikke opprette personverngruppen."
+
+#: ../../Zotlabs/Module/Group.php:83
+msgid "Privacy group updated."
+msgstr "Personverngruppen er oppdatert."
+
+#: ../../Zotlabs/Module/Group.php:138 ../../Zotlabs/Module/Group.php:302
+msgid "Post to this group by default"
+msgstr ""
+
+#: ../../Zotlabs/Module/Group.php:139 ../../Zotlabs/Module/Group.php:303
+msgid "Add new contacts to this group by default"
+msgstr ""
+
+#: ../../Zotlabs/Module/Group.php:147
+#, fuzzy
+msgid "Privacy group name"
+msgstr "Personverngruppens navn:"
+
+#: ../../Zotlabs/Module/Group.php:148 ../../Zotlabs/Module/Group.php:250
+msgid "Members are visible to other channels"
+msgstr "Medlemmer er synlig for andre kanaler"
+
+#: ../../Zotlabs/Module/Group.php:176
+msgid "Privacy group removed."
+msgstr "Personverngruppen er fjernet."
+
+#: ../../Zotlabs/Module/Group.php:179
+msgid "Unable to remove privacy group."
+msgstr "Ikke i stand til å fjerne personverngruppen."
+
+#: ../../Zotlabs/Module/Group.php:245
+#, fuzzy, php-format
+msgid "Privacy Group: %s"
+msgstr "Personverngruppe: %s"
+
+#: ../../Zotlabs/Module/Group.php:247
+msgid "Privacy group name: "
+msgstr "Personverngruppens navn: "
+
+#: ../../Zotlabs/Module/Group.php:263
+msgid "Group members"
+msgstr ""
+
+#: ../../Zotlabs/Module/Group.php:265
+msgid "Not in this group"
+msgstr ""
+
+#: ../../Zotlabs/Module/Group.php:297
+msgid "Click a channel to toggle membership"
+msgstr ""
+
+#: ../../Zotlabs/Module/Layouts.php:184
+msgid "Comanche page description language help"
+msgstr "Hjelp med Comanche sidebeskrivelsesspråk"
+
+#: ../../Zotlabs/Module/Layouts.php:188
+msgid "Layout Description"
+msgstr "Layout-beskrivelse"
+
+#: ../../Zotlabs/Module/Layouts.php:193
+msgid "Download PDL file"
+msgstr "Last ned PDL-fil"
+
+#: ../../Zotlabs/Module/Layouts.php:196 ../../Zotlabs/Module/Pubsites.php:63
+#: ../../Zotlabs/Module/Blocks.php:164 ../../Zotlabs/Module/Webpages.php:256
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:216
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:406
+msgid "View"
+msgstr "Vis"
+
+#: ../../Zotlabs/Module/Oauth2.php:54
+msgid "Name and Secret are required"
+msgstr ""
+
+#: ../../Zotlabs/Module/Oauth2.php:113
+msgid "Add OAuth2 application"
+msgstr ""
+
+#: ../../Zotlabs/Module/Oauth2.php:119 ../../Zotlabs/Module/Oauth2.php:147
+msgid "Grant Types"
+msgstr ""
+
+#: ../../Zotlabs/Module/Oauth2.php:119 ../../Zotlabs/Module/Oauth2.php:120
+msgid "leave blank unless your application sepcifically requires this"
+msgstr ""
+
+#: ../../Zotlabs/Module/Oauth2.php:120 ../../Zotlabs/Module/Oauth2.php:148
+msgid "Authorization scope"
+msgstr ""
+
+#: ../../Zotlabs/Module/Oauth2.php:132
+msgid "OAuth2 Application not found."
+msgstr ""
+
+#: ../../Zotlabs/Module/Oauth2.php:147 ../../Zotlabs/Module/Oauth2.php:148
+msgid "leave blank unless your application specifically requires this"
+msgstr ""
+
+#: ../../Zotlabs/Module/Oauth2.php:190
+msgid "Connected OAuth2 Apps"
+msgstr ""
+
+#: ../../Zotlabs/Module/Viewsrc.php:43
+msgid "item"
+msgstr ""
+
+#: ../../Zotlabs/Module/Cover_photo.php:86
+#: ../../Zotlabs/Module/Profile_photo.php:129
+msgid "Image uploaded but image cropping failed."
+msgstr "Bildet ble lastet opp, men beskjæring av bildet mislyktes."
+
+#: ../../Zotlabs/Module/Cover_photo.php:195
+#: ../../Zotlabs/Module/Cover_photo.php:252
+msgid "Cover Photos"
+msgstr "Forsidebilder"
+
+#: ../../Zotlabs/Module/Cover_photo.php:211
+#: ../../Zotlabs/Module/Profile_photo.php:185
+msgid "Image resize failed."
+msgstr "Endring av bildestørrelse mislyktes."
+
+#: ../../Zotlabs/Module/Cover_photo.php:263
+#: ../../Zotlabs/Module/Profile_photo.php:350
+msgid "Image upload failed."
+msgstr "Opplasting av bildet mislyktes."
+
+#: ../../Zotlabs/Module/Cover_photo.php:280
+#: ../../Zotlabs/Module/Profile_photo.php:370
+msgid "Unable to process image."
+msgstr "Kan ikke behandle bildet."
+
+#: ../../Zotlabs/Module/Cover_photo.php:325
+#: ../../Zotlabs/Module/Cover_photo.php:340
+#: ../../Zotlabs/Module/Profile_photo.php:432
+#: ../../Zotlabs/Module/Profile_photo.php:497
+msgid "Photo not available."
+msgstr "Bildet er ikke tilgjengelig."
+
+#: ../../Zotlabs/Module/Cover_photo.php:376
+msgid "Your cover photo may be visible to anybody on the internet"
+msgstr "Omslagsbildet ditt vil være synlig for enhver på internett"
+
+#: ../../Zotlabs/Module/Cover_photo.php:378
+msgid "Upload File:"
+msgstr "Last opp fil:"
+
+#: ../../Zotlabs/Module/Cover_photo.php:379
+msgid "Select a profile:"
+msgstr "Velg en profil:"
+
+#: ../../Zotlabs/Module/Cover_photo.php:380
+#, fuzzy
+msgid "Change Cover Photo"
+msgstr "Endre omslagsbilde"
+
+#: ../../Zotlabs/Module/Cover_photo.php:384
+#: ../../Zotlabs/Module/Cover_photo.php:385
+#: ../../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:390
+#: ../../Zotlabs/Module/Profile_photo.php:557
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:402
+msgid "Choose a different album"
+msgstr "Velg et annet album"
+
+#: ../../Zotlabs/Module/Cover_photo.php:396
+msgid "Select existing photo"
+msgstr "Velg eksisterende bilde"
+
+#: ../../Zotlabs/Module/Cover_photo.php:413
+#: ../../Zotlabs/Module/Profile_photo.php:581
+msgid "Crop Image"
+msgstr "Beskjær bildet"
+
+#: ../../Zotlabs/Module/Cover_photo.php:414
+#: ../../Zotlabs/Module/Profile_photo.php:582
+msgid "Please adjust the image cropping for optimum viewing."
+msgstr "Vennligst juster bildebeskjæringen for optimal visning."
+
+#: ../../Zotlabs/Module/Cover_photo.php:416
+msgid "Done Editing"
+msgstr "Lagre endringer"
+
+#: ../../Zotlabs/Module/Chat.php:29 ../../Zotlabs/Module/Ochannel.php:32
+msgid "You must be logged in to see this page."
+msgstr "Du må være innloegget for å se denne siden."
#: ../../Zotlabs/Module/Chat.php:193
msgid "Room not found"
@@ -9250,7 +7548,7 @@ msgstr "Jeg er borte akkurat nå"
#: ../../Zotlabs/Module/Chat.php:212
msgid "I am online"
-msgstr "Jeg er online"
+msgstr "Jeg er pålogget"
#: ../../Zotlabs/Module/Chat.php:214
msgid "Bookmark this room"
@@ -9289,544 +7587,1402 @@ msgstr "Utløp"
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/Dreport.php:37
+msgid "Invalid message"
+msgstr "Ugyldig melding"
-#: ../../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/Dreport.php:67
+msgid "no results"
+msgstr "ingen resultater"
-#: ../../Zotlabs/Module/Channel_calendar.php:70
-msgid "Event title and start time are required."
-msgstr "Hendelsestittel og starttidspunkt er påkrevd."
+#: ../../Zotlabs/Module/Dreport.php:81
+msgid "channel sync processed"
+msgstr "kanalsynkronisering er behandlet"
-#: ../../Zotlabs/Module/Channel_calendar.php:85
-#: ../../Zotlabs/Module/Channel_calendar.php:226
-msgid "Event not found."
-msgstr "Hendelsen ble ikke funnet."
+#: ../../Zotlabs/Module/Dreport.php:85
+msgid "queued"
+msgstr "lagt i kø"
-#: ../../Zotlabs/Module/Channel_calendar.php:370
-msgid "Edit event"
-msgstr "Endre hendelse"
+#: ../../Zotlabs/Module/Dreport.php:89
+msgid "posted"
+msgstr "lagt inn"
-#: ../../Zotlabs/Module/Channel_calendar.php:372
-msgid "Delete event"
-msgstr "Slett hendelse"
+#: ../../Zotlabs/Module/Dreport.php:93
+msgid "accepted for delivery"
+msgstr "akseptert for levering"
-#: ../../Zotlabs/Module/Channel_calendar.php:392
-#: ../../Zotlabs/Module/Cdav.php:935 ../../Zotlabs/Module/Cal.php:161
+#: ../../Zotlabs/Module/Dreport.php:97
+msgid "updated"
+msgstr "oppdatert"
+
+#: ../../Zotlabs/Module/Dreport.php:101
+msgid "update ignored"
+msgstr "oppdatering ignorert"
+
+#: ../../Zotlabs/Module/Dreport.php:104
+msgid "permission denied"
+msgstr "tillatelse avvist"
+
+#: ../../Zotlabs/Module/Dreport.php:108
+msgid "recipient not found"
+msgstr "mottaker ble ikke funnet"
+
+#: ../../Zotlabs/Module/Dreport.php:128
+#, php-format
+msgid "Delivery report for %1$s"
+msgstr "Leveringsrapport for %1$s"
+
+#: ../../Zotlabs/Module/Dreport.php:132
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:906
+#: ../../extend/addon/hzaddons/wiki/Widget/Wiki_pages.php:71
+msgid "Options"
+msgstr "Valg"
+
+#: ../../Zotlabs/Module/Dreport.php:133
+msgid "Redeliver"
+msgstr ""
+
+#: ../../Zotlabs/Module/Rbmark.php:72
+msgid "Select a bookmark folder"
+msgstr "Velg en bokmerkemappe"
+
+#: ../../Zotlabs/Module/Rbmark.php:80
+msgid "Save Bookmark"
+msgstr "Lagre bokmerke"
+
+#: ../../Zotlabs/Module/Rbmark.php:81
+msgid "URL of bookmark"
+msgstr "URL-en til bokmerket"
+
+#: ../../Zotlabs/Module/Rbmark.php:82 ../../Zotlabs/Module/Appman.php:220
+#: ../../Zotlabs/Module/Cdav.php:1005
+#: ../../extend/addon/hzaddons/cart/submodules/manualcat.php:260
+#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:657
+#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:173
+msgid "Description"
+msgstr "Beskrivelse"
+
+#: ../../Zotlabs/Module/Rbmark.php:86
+msgid "Or enter new bookmark folder name"
+msgstr "Eller skriv nytt navn på bokmerkemappe"
+
+#: ../../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"
+
+#: ../../Zotlabs/Module/Sse_bs.php:631
+msgid "Private forum"
+msgstr ""
+
+#: ../../Zotlabs/Module/Sse_bs.php:631
#, fuzzy
-msgid "Link to source"
-msgstr "Lenke til kilde"
+msgid "Public forum"
+msgstr "Offentlig forum:"
-#: ../../Zotlabs/Module/Channel_calendar.php:406
-msgid "calendar"
-msgstr "kalender"
+#: ../../Zotlabs/Module/Appman.php:39 ../../Zotlabs/Module/Appman.php:56
+msgid "App installed."
+msgstr "App installert."
-#: ../../Zotlabs/Module/Channel_calendar.php:493
-msgid "Failed to remove event"
-msgstr "Mislyktes med å slette hendelse"
+#: ../../Zotlabs/Module/Appman.php:49
+msgid "Malformed app."
+msgstr "Feil oppsett for app-en."
-#: ../../Zotlabs/Module/Totp_check.php:71
-#: ../../Zotlabs/Module/Admin/Account_edit.php:61
+#: ../../Zotlabs/Module/Appman.php:208
+msgid "Embed code"
+msgstr "Innbyggingskode"
+
+#: ../../Zotlabs/Module/Appman.php:213
+msgid "Edit App"
+msgstr "Endre app"
+
+#: ../../Zotlabs/Module/Appman.php:213
+msgid "Create App"
+msgstr "Lag app"
+
+#: ../../Zotlabs/Module/Appman.php:218
+msgid "Name of app"
+msgstr "Navn på app"
+
+#: ../../Zotlabs/Module/Appman.php:219
+msgid "Location (URL) of app"
+msgstr "Plassering (URL) til app"
+
+#: ../../Zotlabs/Module/Appman.php:221
+msgid "Photo icon URL"
+msgstr "Bildeikon URL"
+
+#: ../../Zotlabs/Module/Appman.php:221
+msgid "80 x 80 pixels - optional"
+msgstr "80 x80 pixler - valgfritt"
+
+#: ../../Zotlabs/Module/Appman.php:222
#, fuzzy
-msgid "Account not found."
-msgstr "Kontoen ble ikke funnet"
+msgid "Categories (optional, comma separated list)"
+msgstr "Kategorier (valgfri, kommaseparert liste)"
-#: ../../Zotlabs/Module/Totp_check.php:78
-msgid "Multifactor Verification"
+#: ../../Zotlabs/Module/Appman.php:223
+msgid "Version ID"
+msgstr "Versjons-ID"
+
+#: ../../Zotlabs/Module/Appman.php:224
+msgid "Price of app"
+msgstr "Pris på app"
+
+#: ../../Zotlabs/Module/Appman.php:225
+msgid "Location (URL) to purchase app"
+msgstr "Plassering (URL) for å kjøpe app"
+
+#: ../../Zotlabs/Module/Directory.php:124
+msgid "No default suggestions were found."
msgstr ""
-#: ../../Zotlabs/Module/Totp_check.php:80
-msgid "Please enter the verification key from your authenticator app"
+#: ../../Zotlabs/Module/Directory.php:292
+msgid "Gender: "
+msgstr "Kjønn: "
+
+#: ../../Zotlabs/Module/Directory.php:294
+msgid "Status: "
+msgstr "Status: "
+
+#: ../../Zotlabs/Module/Directory.php:296
+msgid "Homepage: "
+msgstr "Hjemmeside: "
+
+#: ../../Zotlabs/Module/Directory.php:357
+msgid "Description:"
+msgstr "Beskrivelse:"
+
+#: ../../Zotlabs/Module/Directory.php:359
+msgid "Unsafe"
msgstr ""
-#: ../../Zotlabs/Module/Like.php:112
-msgid "Like/Dislike"
-msgstr "Liker/Liker ikke"
+#: ../../Zotlabs/Module/Directory.php:362
+msgid "Spam"
+msgstr ""
-#: ../../Zotlabs/Module/Like.php:118
-msgid "This action is restricted to members."
-msgstr "Denne handlingen er begrenset til medlemmer."
+#: ../../Zotlabs/Module/Directory.php:372
+msgid "Public Forum:"
+msgstr "Offentlig forum:"
-#: ../../Zotlabs/Module/Like.php:119
-msgid ""
-"Please <a href=\"rmagic\">login with your $Projectname ID</a> or <a "
-"href=\"register\">register as a new $Projectname member</a> to continue."
+#: ../../Zotlabs/Module/Directory.php:375
+msgid "Keywords: "
+msgstr "Nøkkelord: "
+
+#: ../../Zotlabs/Module/Directory.php:378
+msgid "Don't suggest"
+msgstr "Ikke foreslå"
+
+#: ../../Zotlabs/Module/Directory.php:380
+msgid "Common connections (estimated):"
msgstr ""
-"Vennligst <a href=\"rmagic\">logg inn med din $Projectname ID</a> eller <a "
-"href=\"register\">registrer deg som et nytt $Projectname-medlem</a> 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/Directory.php:430
+msgid "Global Directory"
+msgstr "Global katalog"
-#: ../../Zotlabs/Module/Like.php:213
-msgid "thing"
-msgstr "ting"
+#: ../../Zotlabs/Module/Directory.php:430
+msgid "Local Directory"
+msgstr "Lokal katalog"
-#: ../../Zotlabs/Module/Like.php:259
-msgid "Channel unavailable."
-msgstr "Kanalen er utilgjengelig."
+#: ../../Zotlabs/Module/Directory.php:436
+msgid "Finding:"
+msgstr "Finner:"
-#: ../../Zotlabs/Module/Like.php:295
-msgid "Previous action reversed."
-msgstr "Forrige handling er omgjort."
+#: ../../Zotlabs/Module/Directory.php:441
+msgid "next page"
+msgstr "neste side"
-#: ../../Zotlabs/Module/Like.php:489
-#, 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/Directory.php:441
+msgid "previous page"
+msgstr "forrige side"
-#: ../../Zotlabs/Module/Like.php:491
-#, 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/Directory.php:442
+msgid "Sort options"
+msgstr "Sorteringsvalg"
+
+#: ../../Zotlabs/Module/Directory.php:443
+msgid "Alphabetic"
+msgstr "Alfabetisk"
+
+#: ../../Zotlabs/Module/Directory.php:444
+msgid "Reverse Alphabetic"
+msgstr "Omvendt alfabetisk"
+
+#: ../../Zotlabs/Module/Directory.php:445
+msgid "Newest to Oldest"
+msgstr "Nyest til eldst"
+
+#: ../../Zotlabs/Module/Directory.php:446
+msgid "Oldest to Newest"
+msgstr "Eldst til nyest"
+
+#: ../../Zotlabs/Module/Directory.php:464
+msgid "No entries (some entries may be hidden)."
+msgstr "Ingen oppføringer (noen oppføringer kan være skjult)."
+
+#: ../../Zotlabs/Module/Service_limits.php:23
+msgid "No service class restrictions found."
+msgstr "Ingen restriksjoner er funnet i tjenesteklasse."
+
+#: ../../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/Connedit.php:80 ../../Zotlabs/Module/Defperms.php:67
+#: ../../Zotlabs/Module/Contactedit.php:78
+msgid "Could not access contact record."
+msgstr "Fikk ikke tilgang til kontaktinformasjonen."
+
+#: ../../Zotlabs/Module/Connedit.php:101
+#: ../../Zotlabs/Module/Contactedit.php:107
+msgid "Could not locate selected profile."
+msgstr "Fant ikke valgt profil."
+
+#: ../../Zotlabs/Module/Connedit.php:171
+msgid "Connection updated."
+msgstr "Forbindelsen er oppdatert."
-#: ../../Zotlabs/Module/Like.php:493
+#: ../../Zotlabs/Module/Connedit.php:173
+msgid "Failed to update connection record."
+msgstr "Mislyktes med å oppdatere forbindelsesinformasjonen."
+
+#: ../../Zotlabs/Module/Connedit.php:215
+#: ../../Zotlabs/Module/Contactedit.php:180
+msgid "is now connected to"
+msgstr "er nå forbundet til"
+
+#: ../../Zotlabs/Module/Connedit.php:320
+msgid "Could not access address book record."
+msgstr "Fikk ikke tilgang til informasjonen i adresseboken."
+
+#: ../../Zotlabs/Module/Connedit.php:368
+msgid "Refresh failed - channel is currently unavailable."
+msgstr "Oppfrisking mislyktes - kanalen er for øyeblikket utilgjengelig."
+
+#: ../../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."
+
+#: ../../Zotlabs/Module/Connedit.php:441
+msgid "Connection has been removed."
+msgstr "Forbindelsen har blitt fjernet."
+
+#: ../../Zotlabs/Module/Connedit.php:483
#, 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"
+msgid "View %s's profile"
+msgstr "Vis %s sin profil"
-#: ../../Zotlabs/Module/Like.php:610
-msgid "Action completed."
-msgstr "Handling ferdig."
+#: ../../Zotlabs/Module/Connedit.php:487
+msgid "Refresh Permissions"
+msgstr "Oppfrisk tillatelser"
-#: ../../Zotlabs/Module/Like.php:611
-msgid "Thank you."
-msgstr "Tusen takk."
+#: ../../Zotlabs/Module/Connedit.php:490
+msgid "Fetch updated permissions"
+msgstr "Hent oppdaterte tillatelser"
-#: ../../Zotlabs/Module/Poke.php:182
-msgid "Poke somebody"
-msgstr "Dult noen"
+#: ../../Zotlabs/Module/Connedit.php:494
+msgid "Refresh Photo"
+msgstr ""
-#: ../../Zotlabs/Module/Poke.php:186
-#, fuzzy
-#| msgid "Poke somebody"
-msgid "Poke or ping somebody"
-msgstr "Dult noen"
+#: ../../Zotlabs/Module/Connedit.php:497
+msgid "Fetch updated photo"
+msgstr ""
-#: ../../Zotlabs/Module/Poke.php:193
-msgid "Recipient"
-msgstr "Mottaker"
+#: ../../Zotlabs/Module/Connedit.php:504
+msgid "View recent posts and comments"
+msgstr "Vis nylige innlegg og kommentarer"
-#: ../../Zotlabs/Module/Poke.php:194
-#, fuzzy
-#| msgid "Connections"
-msgid "Choose action"
-msgstr "Forbindelser"
+#: ../../Zotlabs/Module/Connedit.php:508
+#: ../../Zotlabs/Module/Admin/Accounts.php:322
+#: ../../Zotlabs/Module/Contactedit.php:623
+msgid "Unblock"
+msgstr "Ikke blokker lenger"
-#: ../../Zotlabs/Module/Poke.php:197 ../../Zotlabs/Module/Poke.php:198
-msgid "Make this post private"
-msgstr "Gjør dette innlegget privat"
+#: ../../Zotlabs/Module/Connedit.php:508
+#: ../../Zotlabs/Module/Admin/Accounts.php:321
+#: ../../Zotlabs/Module/Contactedit.php:623
+msgid "Block"
+msgstr "Blokker"
-#: ../../Zotlabs/Module/Cdav.php:819
-msgid "Calendar entries imported."
-msgstr "Kalenderhendelsene er importert."
+#: ../../Zotlabs/Module/Connedit.php:511
+#: ../../Zotlabs/Module/Contactedit.php:625
+msgid "Block (or Unblock) all communications with this connection"
+msgstr ""
+"Blokker eller fjern blokkering av all kommunikasjon med denne forbindelsen"
-#: ../../Zotlabs/Module/Cdav.php:821
-msgid "No calendar entries found."
-msgstr "Ingen kalenderhendelser funnet."
+#: ../../Zotlabs/Module/Connedit.php:512
+#: ../../Zotlabs/Module/Contactedit.php:626
+msgid "This connection is blocked!"
+msgstr "Denne forbindelsen er blokkert!"
-#: ../../Zotlabs/Module/Cdav.php:1000
-msgid "Event title"
-msgstr "Tittel på hendelse"
+#: ../../Zotlabs/Module/Connedit.php:516
+#: ../../Zotlabs/Module/Contactedit.php:630
+msgid "Unignore"
+msgstr "Ikke ignorer lenger"
-#: ../../Zotlabs/Module/Cdav.php:1001
-msgid "Start date and time"
-msgstr "Startdato og tidspunkt"
+#: ../../Zotlabs/Module/Connedit.php:516
+#: ../../Zotlabs/Module/Connections.php:360
+#: ../../Zotlabs/Module/Contactedit.php:630
+msgid "Ignore"
+msgstr "Ignorer"
-#: ../../Zotlabs/Module/Cdav.php:1002
-msgid "End date and time"
+#: ../../Zotlabs/Module/Connedit.php:519
+#: ../../Zotlabs/Module/Contactedit.php:632
+msgid "Ignore (or Unignore) all inbound communications from this connection"
msgstr ""
+"Ignorer eller fjern ignorering av all inngående kommunikasjon fra denne "
+"forbindelsen"
-#: ../../Zotlabs/Module/Cdav.php:1003
-#, fuzzy
-msgid "Timezone:"
-msgstr "Tidssone"
+#: ../../Zotlabs/Module/Connedit.php:520
+#: ../../Zotlabs/Module/Contactedit.php:633
+msgid "This connection is ignored!"
+msgstr "Denne forbindelsen er ignorert!"
-#: ../../Zotlabs/Module/Cdav.php:1026 ../../Zotlabs/Module/Cal.php:199
-#: ../../Zotlabs/Module/Photos.php:942
-msgid "Previous"
-msgstr "Forrige"
+#: ../../Zotlabs/Module/Connedit.php:524
+#: ../../Zotlabs/Module/Contactedit.php:637
+msgid "Unarchive"
+msgstr "Ikke arkiver lenger"
-#: ../../Zotlabs/Module/Cdav.php:1028 ../../Zotlabs/Module/Cal.php:201
-msgid "Today"
-msgstr "Idag"
+#: ../../Zotlabs/Module/Connedit.php:524
+#: ../../Zotlabs/Module/Contactedit.php:637
+msgid "Archive"
+msgstr "Arkiver"
-#: ../../Zotlabs/Module/Cdav.php:1029
-#, fuzzy
-msgid "Month"
-msgstr "måned"
+#: ../../Zotlabs/Module/Connedit.php:527
+#: ../../Zotlabs/Module/Contactedit.php:639
+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"
-#: ../../Zotlabs/Module/Cdav.php:1030
-#, fuzzy
-msgid "Week"
-msgstr "uke"
+#: ../../Zotlabs/Module/Connedit.php:528
+#: ../../Zotlabs/Module/Contactedit.php:640
+msgid "This connection is archived!"
+msgstr "Denne forbindelsen er arkivert!"
-#: ../../Zotlabs/Module/Cdav.php:1031
-#, fuzzy
-msgid "Day"
-msgstr "dag"
+#: ../../Zotlabs/Module/Connedit.php:532
+#: ../../Zotlabs/Module/Contactedit.php:644
+msgid "Unhide"
+msgstr "Ikke skjul lenger"
-#: ../../Zotlabs/Module/Cdav.php:1032
-msgid "List month"
+#: ../../Zotlabs/Module/Connedit.php:532
+#: ../../Zotlabs/Module/Contactedit.php:644
+msgid "Hide"
+msgstr "Skjul"
+
+#: ../../Zotlabs/Module/Connedit.php:535
+#: ../../Zotlabs/Module/Contactedit.php:646
+msgid "Hide or Unhide this connection from your other connections"
msgstr ""
+"Skjul eller fjern skjuling av denne forbindelsen fra dine andre forbindelser"
-#: ../../Zotlabs/Module/Cdav.php:1033
-msgid "List week"
+#: ../../Zotlabs/Module/Connedit.php:536
+#: ../../Zotlabs/Module/Contactedit.php:647
+msgid "This connection is hidden!"
+msgstr "Denne forbindelsen er skjult!"
+
+#: ../../Zotlabs/Module/Connedit.php:543
+#: ../../Zotlabs/Module/Contactedit.php:653
+msgid "Delete this connection"
+msgstr "Slett denne forbindelsen"
+
+#: ../../Zotlabs/Module/Connedit.php:550
+msgid "Fetch Vcard"
msgstr ""
-#: ../../Zotlabs/Module/Cdav.php:1034
-msgid "List day"
+#: ../../Zotlabs/Module/Connedit.php:553
+msgid "Fetch electronic calling card for this connection"
msgstr ""
-#: ../../Zotlabs/Module/Cdav.php:1042
-msgid "More"
+#: ../../Zotlabs/Module/Connedit.php:572
+#: ../../Zotlabs/Module/Contactedit.php:431
+msgid "Affinity"
msgstr ""
-#: ../../Zotlabs/Module/Cdav.php:1043
-msgid "Less"
+#: ../../Zotlabs/Module/Connedit.php:575
+msgid "Open Set Affinity section by default"
msgstr ""
-#: ../../Zotlabs/Module/Cdav.php:1045
-msgid "Select calendar"
+#: ../../Zotlabs/Module/Connedit.php:579
+#: ../../Zotlabs/Module/Contactedit.php:281
+#: ../../Zotlabs/Widget/Affinity.php:36
+msgid "Me"
+msgstr "Meg"
+
+#: ../../Zotlabs/Module/Connedit.php:580
+#: ../../Zotlabs/Module/Contactedit.php:282
+#: ../../Zotlabs/Widget/Affinity.php:37
+msgid "Family"
+msgstr "Familie"
+
+#: ../../Zotlabs/Module/Connedit.php:582
+#: ../../Zotlabs/Module/Contactedit.php:284
+#: ../../Zotlabs/Widget/Affinity.php:39
+msgid "Acquaintances"
+msgstr "Bekjente"
+
+#: ../../Zotlabs/Module/Connedit.php:583
+#: ../../Zotlabs/Module/Connections.php:97
+#: ../../Zotlabs/Module/Connections.php:111
+#: ../../Zotlabs/Module/Contactedit.php:285
+#: ../../Zotlabs/Widget/Affinity.php:40
+msgid "All"
+msgstr "Alle"
+
+#: ../../Zotlabs/Module/Connedit.php:612
+msgid "Filter"
msgstr ""
-#: ../../Zotlabs/Module/Cdav.php:1048
-msgid "Delete all"
+#: ../../Zotlabs/Module/Connedit.php:615
+msgid "Open Custom Filter section by default"
msgstr ""
-#: ../../Zotlabs/Module/Cdav.php:1051
-msgid "Sorry! Editing of recurrent events is not yet implemented."
+#: ../../Zotlabs/Module/Connedit.php:622
+#: ../../Zotlabs/Module/Contactedit.php:315
+msgid "Approve this contact"
msgstr ""
-#: ../../Zotlabs/Module/Cdav.php:1052
+#: ../../Zotlabs/Module/Connedit.php:622
+#: ../../Zotlabs/Module/Contactedit.php:315
+msgid "Accept contact to allow communication"
+msgstr ""
+
+#: ../../Zotlabs/Module/Connedit.php:626
+msgid "Set Affinity"
+msgstr "Angi nærhet"
+
+#: ../../Zotlabs/Module/Connedit.php:629
+msgid "Set Profile"
+msgstr "Angi profil"
+
+#: ../../Zotlabs/Module/Connedit.php:632
+msgid "Set Affinity & Profile"
+msgstr "Angi nærhet og profil"
+
+#: ../../Zotlabs/Module/Connedit.php:658
+#: ../../Zotlabs/Module/Contactedit.php:348
+msgid "Please select a role for this contact!"
+msgstr ""
+
+#: ../../Zotlabs/Module/Connedit.php:678
+#: ../../Zotlabs/Module/Contactedit.php:368
+msgid "This contact is unreachable from this location."
+msgstr ""
+
+#: ../../Zotlabs/Module/Connedit.php:679
+#: ../../Zotlabs/Module/Contactedit.php:369
+msgid "This contact may be unreachable from other channel locations."
+msgstr ""
+
+#: ../../Zotlabs/Module/Connedit.php:681
+#: ../../Zotlabs/Module/Contactedit.php:371
+msgid "Location independence is not supported by their network."
+msgstr ""
+
+#: ../../Zotlabs/Module/Connedit.php:685
+#, php-format
+msgid "Contact: %s"
+msgstr ""
+
+#: ../../Zotlabs/Module/Connedit.php:686
+#: ../../Zotlabs/Module/Connections.php:404
+msgid "Contact role"
+msgstr ""
+
+#: ../../Zotlabs/Module/Connedit.php:687
+msgid "Manage contact roles"
+msgstr ""
+
+#: ../../Zotlabs/Module/Connedit.php:694
+msgid "This contacts's primary address is"
+msgstr ""
+
+#: ../../Zotlabs/Module/Connedit.php:695
+msgid "Available locations:"
+msgstr "Tilgjengelige plasseringer:"
+
+#: ../../Zotlabs/Module/Connedit.php:700 ../../Zotlabs/Module/Defperms.php:259
msgid ""
-"Could not fetch calendar resource. The selected calendar might be disabled."
+"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."
+
+#: ../../Zotlabs/Module/Connedit.php:701
+#: ../../Zotlabs/Module/Contactedit.php:238
+#: ../../Zotlabs/Module/Contactedit.php:387
+msgid "Contact Tools"
+msgstr ""
+
+#: ../../Zotlabs/Module/Connedit.php:703
+#: ../../Zotlabs/Module/Contactedit.php:406
+msgid "Slide to adjust your degree of friendship"
+msgstr "Flytt for å justere din grad av vennskap"
+
+#: ../../Zotlabs/Module/Connedit.php:705
+#: ../../Zotlabs/Module/Contactedit.php:408
+msgid "Custom Filter"
+msgstr "Tilpasset filter"
+
+#: ../../Zotlabs/Module/Connedit.php:706
+#: ../../Zotlabs/Module/Settings/Channel.php:287
+#: ../../Zotlabs/Module/Contactedit.php:409
+msgid "Only import posts with this text"
+msgstr "Bare importer innlegg med disse ordene"
+
+#: ../../Zotlabs/Module/Connedit.php:706 ../../Zotlabs/Module/Connedit.php:707
+#: ../../Zotlabs/Module/Admin/Site.php:501
+#: ../../Zotlabs/Module/Admin/Site.php:502
+#: ../../Zotlabs/Module/Contactedit.php:409
+#: ../../Zotlabs/Module/Contactedit.php:410
+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/Connedit.php:707
+#: ../../Zotlabs/Module/Settings/Channel.php:286
+#: ../../Zotlabs/Module/Contactedit.php:410
+msgid "Do not import posts with this text"
+msgstr "Ikke importer innlegg med denne teksten"
+
+#: ../../Zotlabs/Module/Connedit.php:710
+msgid "Contact Pending Approval"
+msgstr ""
+
+#: ../../Zotlabs/Module/Connedit.php:713 ../../Zotlabs/Module/Defperms.php:261
+#: ../../Zotlabs/Module/Permcats.php:253
+msgid "inherited"
+msgstr "arvet"
+
+#: ../../Zotlabs/Module/Connedit.php:714
+#: ../../Zotlabs/Module/Contactedit.php:415
+msgid "Approve contact"
+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."
+msgstr ""
+"Vennligst velg profilen du ønsker å vise %s når profilen din ses på en "
+"sikret måte."
+
+#: ../../Zotlabs/Module/Connedit.php:717
+#: ../../Zotlabs/Module/Contactedit.php:417
+msgid "Their"
msgstr ""
-#: ../../Zotlabs/Module/Cdav.php:1365 ../../Zotlabs/Module/Connedit.php:733
+#: ../../Zotlabs/Module/Connedit.php:718
+#: ../../Zotlabs/Module/Contactedit.php:418
+msgid "My"
+msgstr ""
+
+#: ../../Zotlabs/Module/Connedit.php:720 ../../Zotlabs/Module/Defperms.php:266
+msgid "Individual Permissions"
+msgstr "Individuelle tillatelser"
+
+#: ../../Zotlabs/Module/Connedit.php:721
+msgid ""
+"Some permissions may be inherited from your channel's <a "
+"href=\"settings\"><strong>privacy settings</strong></a>, which have higher "
+"priority than individual settings. You can <strong>not</strong> change those "
+"settings here."
+msgstr ""
+"Noen tillatelser kan være arvet fra din kanals <a "
+"ref=\"settings\"><strong>personverninnstillinger</strong></a>, som har "
+"høyere prioritet enn individuelle innstillinger. Du kan <strong>ikke</"
+"strong> endre arvede innstillingene her."
+
+#: ../../Zotlabs/Module/Connedit.php:722
+msgid ""
+"Some permissions may be inherited from your channel's <a "
+"href=\"settings\"><strong>privacy settings</strong></a>, 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 <a "
+"ref=\"settings\"><strong>personverninnstillinger</strong></a>, 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."
+
+#: ../../Zotlabs/Module/Connedit.php:723
+msgid "Last update:"
+msgstr "Siste oppdatering:"
+
+#: ../../Zotlabs/Module/Connedit.php:731
+msgid "Details"
+msgstr ""
+
+#: ../../Zotlabs/Module/Connedit.php:733 ../../Zotlabs/Module/Cdav.php:1369
msgid "Organisation"
msgstr ""
-#: ../../Zotlabs/Module/Cdav.php:1367 ../../Zotlabs/Module/Connedit.php:735
+#: ../../Zotlabs/Module/Connedit.php:734 ../../Zotlabs/Module/Cdav.php:1370
+#: ../../extend/addon/hzaddons/workflow/workflow.php:2653
+#: ../../extend/addon/hzaddons/workflow/workflow.php:2722
+msgid "Title"
+msgstr "Tittel"
+
+#: ../../Zotlabs/Module/Connedit.php:735 ../../Zotlabs/Module/Cdav.php:1371
msgid "Phone"
msgstr ""
-#: ../../Zotlabs/Module/Cdav.php:1369 ../../Zotlabs/Module/Connedit.php:737
+#: ../../Zotlabs/Module/Connedit.php:737 ../../Zotlabs/Module/Cdav.php:1373
msgid "Instant messenger"
msgstr ""
-#: ../../Zotlabs/Module/Cdav.php:1370 ../../Zotlabs/Module/Connedit.php:738
+#: ../../Zotlabs/Module/Connedit.php:738 ../../Zotlabs/Module/Cdav.php:1374
msgid "Website"
msgstr ""
-#: ../../Zotlabs/Module/Cdav.php:1371
-#: ../../Zotlabs/Module/Admin/Channels.php:160
-#: ../../Zotlabs/Module/Profiles.php:472 ../../Zotlabs/Module/Connedit.php:739
-#: ../../Zotlabs/Module/Locs.php:122
-msgid "Address"
-msgstr "Adresse"
-
-#: ../../Zotlabs/Module/Cdav.php:1372 ../../Zotlabs/Module/Connedit.php:740
+#: ../../Zotlabs/Module/Connedit.php:740 ../../Zotlabs/Module/Cdav.php:1376
msgid "Note"
msgstr ""
-#: ../../Zotlabs/Module/Cdav.php:1377 ../../Zotlabs/Module/Connedit.php:745
+#: ../../Zotlabs/Module/Connedit.php:745 ../../Zotlabs/Module/Cdav.php:1381
msgid "Add Contact"
msgstr ""
-#: ../../Zotlabs/Module/Cdav.php:1378 ../../Zotlabs/Module/Connedit.php:746
+#: ../../Zotlabs/Module/Connedit.php:746 ../../Zotlabs/Module/Cdav.php:1382
msgid "Add Field"
msgstr ""
-#: ../../Zotlabs/Module/Cdav.php:1383 ../../Zotlabs/Module/Connedit.php:751
+#: ../../Zotlabs/Module/Connedit.php:751 ../../Zotlabs/Module/Cdav.php:1387
msgid "P.O. Box"
msgstr ""
-#: ../../Zotlabs/Module/Cdav.php:1384 ../../Zotlabs/Module/Connedit.php:752
+#: ../../Zotlabs/Module/Connedit.php:752 ../../Zotlabs/Module/Cdav.php:1388
msgid "Additional"
msgstr ""
-#: ../../Zotlabs/Module/Cdav.php:1385 ../../Zotlabs/Module/Connedit.php:753
+#: ../../Zotlabs/Module/Connedit.php:753 ../../Zotlabs/Module/Cdav.php:1389
msgid "Street"
msgstr ""
-#: ../../Zotlabs/Module/Cdav.php:1386 ../../Zotlabs/Module/Connedit.php:754
+#: ../../Zotlabs/Module/Connedit.php:754 ../../Zotlabs/Module/Cdav.php:1390
msgid "Locality"
msgstr ""
-#: ../../Zotlabs/Module/Cdav.php:1387 ../../Zotlabs/Module/Connedit.php:755
+#: ../../Zotlabs/Module/Connedit.php:755 ../../Zotlabs/Module/Cdav.php:1391
msgid "Region"
msgstr ""
-#: ../../Zotlabs/Module/Cdav.php:1388 ../../Zotlabs/Module/Connedit.php:756
+#: ../../Zotlabs/Module/Connedit.php:756 ../../Zotlabs/Module/Cdav.php:1392
msgid "ZIP Code"
msgstr ""
-#: ../../Zotlabs/Module/Cdav.php:1389 ../../Zotlabs/Module/Profiles.php:773
-#: ../../Zotlabs/Module/Connedit.php:757
-msgid "Country"
-msgstr "Land"
+#: ../../Zotlabs/Module/Import.php:71
+msgid "Nothing to import."
+msgstr "Ingenting å importere."
-#: ../../Zotlabs/Module/Cdav.php:1448
-msgid "Default Calendar"
+#: ../../Zotlabs/Module/Import.php:87 ../../Zotlabs/Module/Import.php:101
+msgid "Unable to download data from old server"
+msgstr "Ikke i stand til å laste ned data fra gammel tjener"
+
+#: ../../Zotlabs/Module/Import.php:164
+#, php-format
+msgid "Your service plan only allows %d channels."
+msgstr "Din tjenesteplan tillater bare %d kanaler."
+
+#: ../../Zotlabs/Module/Import.php:191
+msgid "No channel. Import failed."
+msgstr "Ingen kanal. Import mislyktes."
+
+#: ../../Zotlabs/Module/Import.php:197
+msgid "Channel exists but has been marked removed on this hub. Import failed."
msgstr ""
-#: ../../Zotlabs/Module/Cdav.php:1459
-msgid "Default Addressbook"
+#: ../../Zotlabs/Module/Import.php:568
+msgid ""
+"Automatic content and files import was not possible due to API version "
+"incompatiblity. Please import content and files manually!"
msgstr ""
-#: ../../Zotlabs/Module/Lockview.php:101
-msgid "Remote privacy information not available"
+#: ../../Zotlabs/Module/Import.php:596
+msgid "You must be logged in to use this feature."
+msgstr "Du må være innlogget for å bruke denne funksjonen."
+
+#: ../../Zotlabs/Module/Import.php:603
+msgid "Channel Import"
msgstr ""
-#: ../../Zotlabs/Module/Lockview.php:144 ../../Zotlabs/Module/Lockview.php:203
-#: ../../Zotlabs/Module/Acl.php:123
-msgctxt "acl"
-msgid "Profile"
-msgstr "Profil"
+#: ../../Zotlabs/Module/Import.php:604
+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/Lockview.php:155 ../../Zotlabs/Module/Lockview.php:212
-#, fuzzy
-msgid "Privacy group"
-msgstr "Personverngruppe:"
+#: ../../Zotlabs/Module/Import.php:606
+msgid "Or provide the old server/hub details"
+msgstr "Eller oppgi detaljene fra den gamle tjeneren/hub-en"
-#: ../../Zotlabs/Module/Lockview.php:183
-msgid "Item"
+#: ../../Zotlabs/Module/Import.php:608
+msgid "Your old identity address (xyz@example.com)"
+msgstr "Din gamle identitetsadresse (xyz@example.com)"
+
+#: ../../Zotlabs/Module/Import.php:609
+msgid "Your old login email address"
+msgstr "Din gamle innloggings e-postadresse"
+
+#: ../../Zotlabs/Module/Import.php:610
+msgid "Your old login password"
+msgstr "Ditt gamle innloggingspassord"
+
+#: ../../Zotlabs/Module/Import.php:611
+msgid "Import your items and files (limited by available memory)"
msgstr ""
-#: ../../Zotlabs/Module/Lockview.php:230
-#, php-format
-msgid "Click to copy link to this ressource for guest %s to clipboard"
+#: ../../Zotlabs/Module/Import.php:613
+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/Lockview.php:230
-msgid "Link copied"
+#: ../../Zotlabs/Module/Import.php:615
+msgid "Make this hub my primary location"
+msgstr "Gjør dette nettstedet til min primære plassering"
+
+#: ../../Zotlabs/Module/Import.php:616
+msgid "Move this channel (disable all previous locations)"
msgstr ""
-#: ../../Zotlabs/Module/Lockview.php:235
-msgid "Access"
-msgstr "Tilgang"
+#: ../../Zotlabs/Module/Import.php:617
+msgid "Use this channel nickname instead of the one provided"
+msgstr ""
-#: ../../Zotlabs/Module/Lockview.php:237
-msgid "OCAP access"
+#: ../../Zotlabs/Module/Import.php:617
+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/Item.php:764
-msgid "Empty post discarded."
-msgstr "Tomt innlegg forkastet."
+#: ../../Zotlabs/Module/Import.php:619
+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/Item.php:1179
-msgid "Duplicate post suppressed."
-msgstr "Duplikat av innlegg forhindret."
+#: ../../Zotlabs/Module/Editwebpage.php:139
+msgid "Page link"
+msgstr "Sidelenke"
-#: ../../Zotlabs/Module/Item.php:1329
-msgid "System error. Post not saved."
-msgstr "Systemfeil. Innlegg ble ikke lagret."
+#: ../../Zotlabs/Module/Editwebpage.php:166
+msgid "Edit Webpage"
+msgstr "Endre webside"
-#: ../../Zotlabs/Module/Item.php:1363
-msgid "Your comment is awaiting approval."
+#: ../../Zotlabs/Module/Filer.php:53
+msgid "Enter a folder name"
msgstr ""
-#: ../../Zotlabs/Module/Item.php:1500
-msgid "Unable to obtain post information from database."
-msgstr "Ikke i stand til å få tak i informasjon om innlegg fra databasen."
+#: ../../Zotlabs/Module/Filer.php:53
+msgid "or select an existing folder (doubleclick)"
+msgstr ""
+
+#: ../../Zotlabs/Module/Profperm.php:35 ../../Zotlabs/Module/Profperm.php:64
+msgid "Invalid profile identifier."
+msgstr "Ugyldig profil-identifikator."
+
+#: ../../Zotlabs/Module/Profperm.php:112
+msgid "Profile Visibility Editor"
+msgstr "Endre profilsynlighet"
+
+#: ../../Zotlabs/Module/Profperm.php:116
+msgid "Click on a contact to add or remove."
+msgstr "Klikk på en kontakt for å legge til eller fjerne."
+
+#: ../../Zotlabs/Module/Profperm.php:125
+msgid "Visible To"
+msgstr "Synlig for"
+
+#: ../../Zotlabs/Module/Profperm.php:141
+#: ../../Zotlabs/Module/Connections.php:221
+msgid "All Connections"
+msgstr "Alle forbindelser"
+
+#: ../../Zotlabs/Module/Cal.php:62
+msgid "Permissions denied."
+msgstr "Tillatelse avvist."
+
+#: ../../Zotlabs/Module/Cal.php:201 ../../Zotlabs/Module/Cdav.php:1028
+msgid "Today"
+msgstr "Idag"
+
+#: ../../Zotlabs/Module/Dircensor.php:61
+msgid "Entry censored"
+msgstr ""
+
+#: ../../Zotlabs/Module/Dircensor.php:64
+msgid "Entry OK"
+msgstr ""
+
+#: ../../Zotlabs/Module/Acl.php:371
+msgid "network"
+msgstr "nettverk"
+
+#: ../../Zotlabs/Module/Pconfig.php:33 ../../Zotlabs/Module/Pconfig.php:69
+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:58
+msgid "Configuration Editor"
+msgstr "Konfigurasjonsbehandler"
+
+#: ../../Zotlabs/Module/Pconfig.php:59
+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/Xchan.php:10
+msgid "Xchan Lookup"
+msgstr "Xchan oppslag"
+
+#: ../../Zotlabs/Module/Xchan.php:13
+msgid "Lookup xchan beginning with (or webbie): "
+msgstr "Slå opp xchan som begynner med (eller webbie): "
+
+#: ../../Zotlabs/Module/Register.php:113
+msgid "Email address required"
+msgstr ""
+
+#: ../../Zotlabs/Module/Register.php:157
+msgid "No password provided"
+msgstr ""
+
+#: ../../Zotlabs/Module/Register.php:180
+msgid "Terms of Service not accepted"
+msgstr ""
+
+#: ../../Zotlabs/Module/Register.php:242
+msgid "Invitation code succesfully applied"
+msgstr ""
+
+#: ../../Zotlabs/Module/Register.php:262
+msgid "Invitation not in time or too late"
+msgstr ""
+
+#: ../../Zotlabs/Module/Register.php:268
+msgid "Invitation email failed"
+msgstr ""
+
+#: ../../Zotlabs/Module/Register.php:276
+msgid "Invitation code failed"
+msgstr ""
+
+#: ../../Zotlabs/Module/Register.php:283
+msgid "Invitations are not available"
+msgstr ""
+
+#: ../../Zotlabs/Module/Register.php:293
+msgid "Registration on this hub is by invitation only"
+msgstr ""
+
+#: ../../Zotlabs/Module/Register.php:400
+msgid "New register request"
+msgstr ""
+
+#: ../../Zotlabs/Module/Register.php:418
+msgid "Error creating dId A"
+msgstr ""
+
+#: ../../Zotlabs/Module/Register.php:437
+msgid "Registration on this hub is disabled."
+msgstr "Registrering ved dette nettstedet er skrudd av."
+
+#: ../../Zotlabs/Module/Register.php:446
+msgid "Why do you want to join this hub?"
+msgstr ""
+
+#: ../../Zotlabs/Module/Register.php:446
+msgid "This will help to review your registration"
+msgstr ""
+
+#: ../../Zotlabs/Module/Register.php:447
+msgid "Registration on this hub is by approval only."
+msgstr "Registrering ved dette nettstedet skjer på godkjenning."
+
+#: ../../Zotlabs/Module/Register.php:448
+msgid "Register at another affiliated hub in case when prefered"
+msgstr ""
+
+#: ../../Zotlabs/Module/Register.php:461
+msgid "Registration on this hub is by invitation only."
+msgstr ""
-#: ../../Zotlabs/Module/Item.php:1507
+#: ../../Zotlabs/Module/Register.php:462
+msgid "Register at another affiliated hub"
+msgstr ""
+
+#: ../../Zotlabs/Module/Register.php:476 ../../Zotlabs/Module/Siteinfo.php:29
+msgid "Terms of Service"
+msgstr "Tjenesteavtale"
+
+#: ../../Zotlabs/Module/Register.php:482
#, 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."
+msgid "I accept the %s for this website"
+msgstr "Jeg godtar %s for dette nettstedet"
-#: ../../Zotlabs/Module/Item.php:1514
+#: ../../Zotlabs/Module/Register.php:489
#, php-format
-msgid "You have reached your limit of %1$.0f webpages."
-msgstr "Du har nådd din grense på %1$.0f websider."
+msgid "I am over %s years of age and accept the %s for this website"
+msgstr "Jeg er mer enn %s år gammel, og godtar %s for dette nettstedet"
-#: ../../Zotlabs/Module/Mitem.php:31 ../../Zotlabs/Module/Menu.php:209
-msgid "Menu not found."
-msgstr "Menyen ble ikke funnet."
+#: ../../Zotlabs/Module/Register.php:499
+msgid "Your email address"
+msgstr "Din e-postadresse"
-#: ../../Zotlabs/Module/Mitem.php:63
-msgid "Unable to create element."
-msgstr "Klarer ikke å lage element."
+#: ../../Zotlabs/Module/Register.php:506
+msgid "Choose a password"
+msgstr "Velg et passord"
-#: ../../Zotlabs/Module/Mitem.php:87
-msgid "Unable to update menu element."
-msgstr "Ikke i stand til å oppdatere menyelement."
+#: ../../Zotlabs/Module/Register.php:507
+msgid "Please re-enter your password"
+msgstr "Vennligst skriv ditt passord en gang til"
-#: ../../Zotlabs/Module/Mitem.php:103
-msgid "Unable to add menu element."
-msgstr "Ikke i stand til å legge til menyelement."
+#: ../../Zotlabs/Module/Register.php:509
+msgid "Please enter your invitation code"
+msgstr "Vennligst skriv din invitasjonskode"
-#: ../../Zotlabs/Module/Mitem.php:134 ../../Zotlabs/Module/Xchan.php:41
-#: ../../Zotlabs/Module/Menu.php:232
-msgid "Not found."
-msgstr "Ikke funnet."
+#: ../../Zotlabs/Module/Register.php:511
+msgid "Your name"
+msgstr "Navn"
-#: ../../Zotlabs/Module/Mitem.php:167 ../../Zotlabs/Module/Mitem.php:246
-msgid "Menu Item Permissions"
-msgstr "Menyelement Tillatelser"
+#: ../../Zotlabs/Module/Register.php:511
+msgid "Real name is preferred"
+msgstr ""
-#: ../../Zotlabs/Module/Mitem.php:168 ../../Zotlabs/Module/Mitem.php:247
-msgid "(click to open/close)"
-msgstr "(klikk for å åpne/lukke)"
+#: ../../Zotlabs/Module/Register.php:513
+msgid ""
+"Your nickname will be used to create an easy to remember channel address"
+msgstr ""
-#: ../../Zotlabs/Module/Mitem.php:174 ../../Zotlabs/Module/Mitem.php:191
-msgid "Link Name"
-msgstr "Lenkenavn"
+#: ../../Zotlabs/Module/Register.php:521
+#: ../../Zotlabs/Module/Admin/Site.php:403
+msgid "Registration"
+msgstr "Registrering"
-#: ../../Zotlabs/Module/Mitem.php:175 ../../Zotlabs/Module/Mitem.php:255
-msgid "Link or Submenu Target"
-msgstr "Lenke- eller undermeny-mål"
+#: ../../Zotlabs/Module/Register.php:529
+msgid "I have an invite code"
+msgstr ""
-#: ../../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/Register.php:576
+msgid ""
+"This site has exceeded the number of allowed daily account registrations."
+msgstr ""
-#: ../../Zotlabs/Module/Mitem.php:176 ../../Zotlabs/Module/Mitem.php:256
-msgid "Use magic-auth if available"
-msgstr "Bruk magic-autent hvis mulig"
+#: ../../Zotlabs/Module/Pubsites.php:27
+msgid "Public Hubs"
+msgstr "Offentlige huber"
-#: ../../Zotlabs/Module/Mitem.php:177 ../../Zotlabs/Module/Mitem.php:257
-msgid "Open link in new window"
-msgstr "Åpne lenke i nytt vindu"
+#: ../../Zotlabs/Module/Pubsites.php:30
+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 <strong>may</strong> 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 "
+"<strong>kan</strong> gi tilleggsopplysninger."
-#: ../../Zotlabs/Module/Mitem.php:178 ../../Zotlabs/Module/Mitem.php:258
-msgid "Order in list"
-msgstr "Ordne i liste"
+#: ../../Zotlabs/Module/Pubsites.php:36
+msgid "Hub URL"
+msgstr "Nettstedets URL"
-#: ../../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/Pubsites.php:36
+msgid "Access Type"
+msgstr "Tilgangstype"
-#: ../../Zotlabs/Module/Mitem.php:179
-msgid "Submit and finish"
-msgstr "Send inn og avslutt"
+#: ../../Zotlabs/Module/Pubsites.php:36
+msgid "Registration Policy"
+msgstr "Retningslinjer for registrering"
-#: ../../Zotlabs/Module/Mitem.php:180
-msgid "Submit and continue"
-msgstr "Send inn og fortsett"
+#: ../../Zotlabs/Module/Pubsites.php:36
+msgid "Stats"
+msgstr "Statistikk"
-#: ../../Zotlabs/Module/Mitem.php:189
-msgid "Menu:"
-msgstr "Meny:"
+#: ../../Zotlabs/Module/Pubsites.php:36
+msgid "Software"
+msgstr "Programvare"
-#: ../../Zotlabs/Module/Mitem.php:192
-msgid "Link Target"
-msgstr "Lenkemål"
+#: ../../Zotlabs/Module/Pubsites.php:38
+msgid "Ratings"
+msgstr "Vurderinger"
-#: ../../Zotlabs/Module/Mitem.php:195
-msgid "Edit menu"
-msgstr "Endre meny"
+#: ../../Zotlabs/Module/Pubsites.php:52
+msgid "Rate"
+msgstr "Vurder"
-#: ../../Zotlabs/Module/Mitem.php:198
-msgid "Edit element"
-msgstr "Endre element"
+#: ../../Zotlabs/Module/Thing.php:139
+msgid "Thing updated"
+msgstr "Tingen er oppdatert"
-#: ../../Zotlabs/Module/Mitem.php:199
-msgid "Drop element"
-msgstr "Slett element"
+#: ../../Zotlabs/Module/Thing.php:191
+msgid "Object store: failed"
+msgstr "Objektlagring: mislyktes"
-#: ../../Zotlabs/Module/Mitem.php:200
-msgid "New element"
-msgstr "Nytt element"
+#: ../../Zotlabs/Module/Thing.php:195
+msgid "Thing added"
+msgstr "Ting lagt til"
-#: ../../Zotlabs/Module/Mitem.php:201
-msgid "Edit this menu container"
-msgstr "Endre denne menybeholderen"
+#: ../../Zotlabs/Module/Thing.php:210
+#, php-format
+msgid "OBJ: %1$s %2$s %3$s"
+msgstr "OBJ: %1$s %2$s %3$s"
-#: ../../Zotlabs/Module/Mitem.php:202
-msgid "Add menu element"
-msgstr "Legg til menyelement"
+#: ../../Zotlabs/Module/Thing.php:277 ../../Zotlabs/Module/Thing.php:301
+msgid "item not found."
+msgstr "element ble ikke funnet."
-#: ../../Zotlabs/Module/Mitem.php:203
-msgid "Delete this menu item"
-msgstr "Slett dette menyelementet"
+#: ../../Zotlabs/Module/Thing.php:336
+msgid "Edit Thing"
+msgstr "Endre ting"
-#: ../../Zotlabs/Module/Mitem.php:204
-msgid "Edit this menu item"
-msgstr "Endre dette menyelementet"
+#: ../../Zotlabs/Module/Thing.php:338 ../../Zotlabs/Module/Thing.php:394
+msgid "Select a profile"
+msgstr "Velg en profil"
-#: ../../Zotlabs/Module/Mitem.php:222
-msgid "Menu item not found."
-msgstr "Menyelement ble ikke funnet."
+#: ../../Zotlabs/Module/Thing.php:342 ../../Zotlabs/Module/Thing.php:397
+msgid "Post an activity"
+msgstr "Legg inn en aktivitet"
-#: ../../Zotlabs/Module/Mitem.php:235
-msgid "Menu item deleted."
-msgstr "Menyelement slettet."
+#: ../../Zotlabs/Module/Thing.php:342 ../../Zotlabs/Module/Thing.php:397
+msgid "Only sends to viewers of the applicable profile"
+msgstr "Sender bare til seere av den aktuelle profilen"
-#: ../../Zotlabs/Module/Mitem.php:237
-msgid "Menu item could not be deleted."
-msgstr "Menyelement kunne ikke bli slettet."
+#: ../../Zotlabs/Module/Thing.php:344 ../../Zotlabs/Module/Thing.php:399
+msgid "Name of thing e.g. something"
+msgstr "Navn på ting for eksempel noe"
-#: ../../Zotlabs/Module/Mitem.php:244
-msgid "Edit Menu Element"
-msgstr "Endre menyelement"
+#: ../../Zotlabs/Module/Thing.php:346 ../../Zotlabs/Module/Thing.php:400
+msgid "URL of thing (optional)"
+msgstr "URL til ting (valgfritt)"
-#: ../../Zotlabs/Module/Mitem.php:254
-msgid "Link text"
-msgstr "Lenketekst"
+#: ../../Zotlabs/Module/Thing.php:348 ../../Zotlabs/Module/Thing.php:401
+msgid "URL for photo of thing (optional)"
+msgstr "URL til bilde av ting (valgfritt)"
-#: ../../Zotlabs/Module/Profile.php:106
-msgid "vcard"
+#: ../../Zotlabs/Module/Thing.php:392
+msgid "Add Thing to your Profile"
+msgstr "Legg til ting i din profil"
+
+#: ../../Zotlabs/Module/Home.php:105
+#, php-format
+msgid "Welcome to %s"
+msgstr "Velkommen til %s"
+
+#: ../../Zotlabs/Module/Blocks.php:154
+msgid "Block Title"
+msgstr "Byggeklossens tittel"
+
+#: ../../Zotlabs/Module/Defperms.php:111
+#: ../../Zotlabs/Module/Settings/Channel.php:151
+#: ../../extend/addon/hzaddons/openstreetmap/openstreetmap.php:163
+#: ../../extend/addon/hzaddons/piwik/piwik.php:116
+#: ../../extend/addon/hzaddons/twitter/twitter.php:493
+#: ../../extend/addon/hzaddons/diaspora/diaspora.php:108
+#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:82
+#: ../../extend/addon/hzaddons/logrot/logrot.php:54
+#: ../../extend/addon/hzaddons/xmpp/xmpp.php:54
+#: ../../extend/addon/hzaddons/faces/faces.php:291
+#: ../../extend/addon/hzaddons/msgfooter/msgfooter.php:54
+msgid "Settings updated."
+msgstr "Innstillinger oppdatert."
+
+#: ../../Zotlabs/Module/Defperms.php:252
+msgid "Connection Default Permissions"
+msgstr "Forbindelsens standard tillatelser"
+
+#: ../../Zotlabs/Module/Defperms.php:253
+msgid "Apply these permissions automatically"
+msgstr "Bruk disse tillatelsene automatisk"
+
+#: ../../Zotlabs/Module/Defperms.php:253
+msgid ""
+"If enabled, connection requests will be approved without your interaction"
msgstr ""
-#: ../../Zotlabs/Module/Sharedwithme.php:106
-msgid "Files: shared with me"
-msgstr "Filer: delt med meg"
+#: ../../Zotlabs/Module/Defperms.php:254
+msgid "Permission role"
+msgstr ""
-#: ../../Zotlabs/Module/Sharedwithme.php:108
-msgid "NEW"
-msgstr "NY"
+#: ../../Zotlabs/Module/Defperms.php:255
+msgid "Add permission role"
+msgstr ""
-#: ../../Zotlabs/Module/Sharedwithme.php:110
-#: ../../Zotlabs/Storage/Browser.php:383
-msgid "Last Modified"
-msgstr "Sist endret"
+#: ../../Zotlabs/Module/Defperms.php:260
+msgid "Automatic approval settings"
+msgstr ""
-#: ../../Zotlabs/Module/Sharedwithme.php:111
-msgid "Remove all files"
-msgstr "Fjern alle filer"
+#: ../../Zotlabs/Module/Defperms.php:263
+msgid "My Settings"
+msgstr "Mine innstillinger"
-#: ../../Zotlabs/Module/Sharedwithme.php:112
-msgid "Remove this file"
-msgstr "Fjern denne filen"
+#: ../../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/Help.php:25
-msgid "Documentation Search"
-msgstr "Søk i dokumentasjon"
+#: ../../Zotlabs/Module/Lostpass.php:19
+msgid "No valid account found."
+msgstr "Ingen gyldig konto funnet."
-#: ../../Zotlabs/Module/Help.php:86
-msgid "Members"
-msgstr "Medlemmer"
+#: ../../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."
-#: ../../Zotlabs/Module/Help.php:87
-msgid "Administrators"
+#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:108
+#, php-format
+msgid "Site Member (%s)"
+msgstr "Nettstedsmedlem (%s)"
+
+#: ../../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"
+
+#: ../../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."
-#: ../../Zotlabs/Module/Help.php:88
-msgid "Developers"
+#: ../../Zotlabs/Module/Lostpass.php:92
+msgid "Your password has been reset as requested."
+msgstr "Ditt passord har blitt tilbakestilt som forespurt."
+
+#: ../../Zotlabs/Module/Lostpass.php:93
+msgid "Your new password is"
+msgstr "Ditt nye passord er"
+
+#: ../../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"
+
+#: ../../Zotlabs/Module/Lostpass.php:95
+msgid "click here to login"
+msgstr "klikke her for å logge inn"
+
+#: ../../Zotlabs/Module/Lostpass.php:96
+msgid ""
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
msgstr ""
+"Ditt passord kan endres på siden <em>Innstillinger</em> etter vellykket "
+"innlogging."
-#: ../../Zotlabs/Module/Help.php:89
-msgid "Tutorials"
+#: ../../Zotlabs/Module/Lostpass.php:117
+#, php-format
+msgid "Your password has changed at %s"
+msgstr "Ditt passord er endret hos %s"
+
+#: ../../Zotlabs/Module/Lostpass.php:130
+msgid "Forgot your Password?"
+msgstr "Glemt passord ditt?"
+
+#: ../../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."
-#: ../../Zotlabs/Module/Help.php:101
-msgid "$Projectname Documentation"
-msgstr "$Projectname dokumentasjon"
+#: ../../Zotlabs/Module/Lostpass.php:132
+msgid "Email Address"
+msgstr "E-postadresse"
-#: ../../Zotlabs/Module/Help.php:102
-msgid "Contents"
+#: ../../Zotlabs/Module/Lostpass.php:133 ../../Zotlabs/Module/Pdledit.php:76
+#: ../../Zotlabs/Module/Pdledit.php:93
+msgid "Reset"
+msgstr "Tilbakestill"
+
+#: ../../Zotlabs/Module/Locs.php:27 ../../Zotlabs/Module/Locs.php:65
+msgid "Location not found."
+msgstr "Plassering er ikke funnet."
+
+#: ../../Zotlabs/Module/Locs.php:74
+msgid "Location lookup failed."
+msgstr "Oppslag på plassering mislyktes."
+
+#: ../../Zotlabs/Module/Locs.php:78
+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."
+
+#: ../../Zotlabs/Module/Locs.php:106
+msgid "Syncing locations"
+msgstr "Synkroniserer plasseringer"
+
+#: ../../Zotlabs/Module/Locs.php:115
+msgid "No locations found."
+msgstr "Ingen plasseringer ble funnet."
+
+#: ../../Zotlabs/Module/Locs.php:120
+msgid "Manage Channel Locations"
+msgstr "Håndter kanalplasseringer"
+
+#: ../../Zotlabs/Module/Locs.php:123
+#: ../../extend/addon/hzaddons/workflow/workflow.php:288
+msgid "Primary"
+msgstr "Primær"
+
+#: ../../Zotlabs/Module/Locs.php:126
+msgid "Sync Now"
+msgstr "Synkroniser nå"
+
+#: ../../Zotlabs/Module/Locs.php:127
+msgid "Please wait several minutes between consecutive operations."
+msgstr "Vennligst vent flere minutter mellom hver etterfølgende operasjon."
+
+#: ../../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."
+
+#: ../../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."
+
+#: ../../Zotlabs/Module/Totp_check.php:71
+#: ../../Zotlabs/Module/Admin/Account_edit.php:61
+#, fuzzy
+msgid "Account not found."
+msgstr "Kontoen ble ikke funnet"
+
+#: ../../Zotlabs/Module/Totp_check.php:78
+msgid "Multifactor Verification"
+msgstr ""
+
+#: ../../Zotlabs/Module/Totp_check.php:80
+msgid "Please enter the verification key from your authenticator app"
+msgstr ""
+
+#: ../../Zotlabs/Module/Totp_check.php:81
+msgid "Verify"
+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."
+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."
+
+#: ../../Zotlabs/Module/Vote.php:40
+msgid "Poll not found."
+msgstr "Fant ikke spørreskjema."
+
+#: ../../Zotlabs/Module/Vote.php:69
+msgid "Invalid response."
+msgstr ""
+
+#: ../../Zotlabs/Module/Vote.php:125
+msgid "Response submitted. Updates may not appear instantly."
+msgstr ""
+
+#: ../../Zotlabs/Module/Profile_photo.php:269
+#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:299
+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/Profile_photo.php:544
+msgid ""
+"This profile photo will be visible to anybody on the internet and may be "
+"distributed to other websites."
+msgstr ""
+"Dette profilbildet vil være synlig for enhver besøkende, og kan bli gjort tilg"
+"jengelig på andre nettsteder."
+
+#: ../../Zotlabs/Module/Profile_photo.php:544
+msgid ""
+"This profile photo will be visible only to channels with permission to view "
+"this profile."
msgstr ""
+#: ../../Zotlabs/Module/Profile_photo.php:546
+msgid "Use Photo for Profile"
+msgstr ""
+
+#: ../../Zotlabs/Module/Profile_photo.php:546
+msgid "Change Profile Photo"
+msgstr "Endre profilbilde"
+
+#: ../../Zotlabs/Module/Profile_photo.php:548
+msgid "Reset to default"
+msgstr "Sett tilbake til standard"
+
+#: ../../Zotlabs/Module/Profile_photo.php:562
+msgid "Select existing"
+msgstr "Velg eksisterende bilde"
+
+#: ../../Zotlabs/Module/Profile_photo.php:584
+msgid "Done editing"
+msgstr "Lagre endringer"
+
#: ../../Zotlabs/Module/Webpages.php:67
msgid "Import Webpage Elements"
msgstr ""
@@ -9855,16 +9011,6 @@ msgstr "Sidelenke"
msgid "Page Title"
msgstr "Sidetittel"
-#: ../../Zotlabs/Module/Webpages.php:261 ../../Zotlabs/Module/Blocks.php:155
-#: ../../Zotlabs/Module/Menu.php:178 ../../Zotlabs/Module/Layouts.php:189
-msgid "Created"
-msgstr "Laget"
-
-#: ../../Zotlabs/Module/Webpages.php:262 ../../Zotlabs/Module/Blocks.php:156
-#: ../../Zotlabs/Module/Menu.php:179 ../../Zotlabs/Module/Layouts.php:190
-msgid "Edited"
-msgstr "Endret"
-
#: ../../Zotlabs/Module/Webpages.php:290
msgid "Invalid file type."
msgstr ""
@@ -9885,61 +9031,146 @@ msgstr ""
msgid "Import complete."
msgstr ""
-#: ../../Zotlabs/Module/Filestorage.php:14
-#: ../../Zotlabs/Module/Filestorage.php:53
-msgid "Deprecated!"
+#: ../../Zotlabs/Module/Connections.php:58
+#: ../../Zotlabs/Module/Connections.php:116
+msgid "Active"
+msgstr "Aktiv"
+
+#: ../../Zotlabs/Module/Connections.php:63
+#: ../../Zotlabs/Module/Connections.php:185
+#: ../../Zotlabs/Module/Connections.php:296
+msgid "Blocked"
+msgstr "Blokkert"
+
+#: ../../Zotlabs/Module/Connections.php:68
+#: ../../Zotlabs/Module/Connections.php:192
+#: ../../Zotlabs/Module/Connections.php:295
+msgid "Ignored"
+msgstr "Ignorert"
+
+#: ../../Zotlabs/Module/Connections.php:73
+#: ../../Zotlabs/Module/Connections.php:206
+#: ../../Zotlabs/Module/Connections.php:294
+msgid "Hidden"
+msgstr "Skjult"
+
+#: ../../Zotlabs/Module/Connections.php:78
+#: ../../Zotlabs/Module/Connections.php:199
+msgid "Archived/Unreachable"
+msgstr "Arkivert/utilgjengelig"
+
+#: ../../Zotlabs/Module/Connections.php:161
+msgid "Active Connections"
+msgstr "Aktive forbindelser"
+
+#: ../../Zotlabs/Module/Connections.php:164
+msgid "Show active connections"
msgstr ""
-#: ../../Zotlabs/Module/Filestorage.php:157
-msgid "Permission Denied."
-msgstr "Tillatelse avvist."
+#: ../../Zotlabs/Module/Connections.php:168
+#: ../../Zotlabs/Widget/Notifications.php:96
+msgid "New Connections"
+msgstr "Nye forbindelser"
-#: ../../Zotlabs/Module/Filestorage.php:190
-msgid "Edit file permissions"
-msgstr "Endre filtillatelser"
+#: ../../Zotlabs/Module/Connections.php:171
+msgid "Show pending (new) connections"
+msgstr "Vis ventende (nye) forbindelser"
-#: ../../Zotlabs/Module/Filestorage.php:203
-msgid "Include all files and sub folders"
-msgstr "Inkluder alle filer og undermapper"
+#: ../../Zotlabs/Module/Connections.php:188
+msgid "Only show blocked connections"
+msgstr "Vis bare forbindelser som er blokkert"
-#: ../../Zotlabs/Module/Filestorage.php:204
-msgid "Return to file list"
-msgstr "Gå tilbake til filoversikten"
+#: ../../Zotlabs/Module/Connections.php:195
+msgid "Only show ignored connections"
+msgstr "Vis bare ignorerte forbindelser"
-#: ../../Zotlabs/Module/Filestorage.php:206
-#: ../../Zotlabs/Storage/Browser.php:389
-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/Connections.php:202
+msgid "Only show archived/unreachable connections"
+msgstr ""
-#: ../../Zotlabs/Module/Filestorage.php:207
-#: ../../Zotlabs/Storage/Browser.php:390
-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/Connections.php:209
+msgid "Only show hidden connections"
+msgstr "Vis bare skjulte forbindelser"
-#: ../../Zotlabs/Module/Filestorage.php:209
-msgid "Share this file"
-msgstr "Del denne filen"
+#: ../../Zotlabs/Module/Connections.php:224
+msgid "Show all connections"
+msgstr "Vis alle forbindelser"
-#: ../../Zotlabs/Module/Filestorage.php:210
-msgid "Show URL to this file"
-msgstr "Vis URLen til denne filen"
+#: ../../Zotlabs/Module/Connections.php:292
+msgid "Pending approval"
+msgstr "Venter på godkjenning"
-#: ../../Zotlabs/Module/Filestorage.php:211
-#: ../../Zotlabs/Storage/Browser.php:558
-msgid "Show in your contacts shared folder"
+#: ../../Zotlabs/Module/Connections.php:293
+msgid "Archived"
+msgstr "Arkivert"
+
+#: ../../Zotlabs/Module/Connections.php:297
+msgid "Not connected at this location"
msgstr ""
-#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98
-msgid "Tag removed"
-msgstr "Merkelapp fjernet"
+#: ../../Zotlabs/Module/Connections.php:336
+#, php-format
+msgid "%1$s [%2$s]"
+msgstr "%1$s [%2$s]"
-#: ../../Zotlabs/Module/Tagrm.php:123
-msgid "Remove Item Tag"
-msgstr "Fjern merkelapp fra element"
+#: ../../Zotlabs/Module/Connections.php:337
+msgid "Edit connection"
+msgstr "Endre forbindelse"
-#: ../../Zotlabs/Module/Tagrm.php:125
-msgid "Select a tag to remove: "
-msgstr "Velg merkelapp å fjerne: "
+#: ../../Zotlabs/Module/Connections.php:339
+msgid "Delete connection"
+msgstr "Slett forbindelse"
+
+#: ../../Zotlabs/Module/Connections.php:345
+msgid "Channel address"
+msgstr "Kanaladresse"
+
+#: ../../Zotlabs/Module/Connections.php:350
+msgid "Call"
+msgstr ""
+
+#: ../../Zotlabs/Module/Connections.php:352
+msgid "Status"
+msgstr "Status"
+
+#: ../../Zotlabs/Module/Connections.php:355
+msgid "Connected"
+msgstr "Forbundet"
+
+#: ../../Zotlabs/Module/Connections.php:357
+#: ../../Zotlabs/Module/Contactedit.php:448
+msgid "Approve connection"
+msgstr "Godkjenn forbindelse"
+
+#: ../../Zotlabs/Module/Connections.php:359
+msgid "Ignore connection"
+msgstr "Ignorer forbindelse"
+
+#: ../../Zotlabs/Module/Connections.php:361
+msgid "Recent activity"
+msgstr "Nylig aktivitet"
+
+#: ../../Zotlabs/Module/Connections.php:367
+msgid "Connect at this location"
+msgstr ""
+
+#: ../../Zotlabs/Module/Connections.php:377 ../../Zotlabs/Widget/Follow.php:27
+#, php-format
+msgid "You have %1$.0f of %2$.0f allowed connections."
+msgstr "Du har %1$.0f av %2$.0f tillate forbindelser."
+
+#: ../../Zotlabs/Module/Connections.php:405
+msgid "Search your connections"
+msgstr "Søk blant dine forbindelser"
+
+#: ../../Zotlabs/Module/Connections.php:406
+msgid "Contact search"
+msgstr ""
+
+#: ../../Zotlabs/Module/Connections.php:413
+#: ../../Zotlabs/Module/Contactedit.php:383
+msgid "This is a group/forum channel"
+msgstr ""
#: ../../Zotlabs/Module/Connect.php:65 ../../Zotlabs/Module/Connect.php:118
msgid "Continue"
@@ -9990,617 +9221,429 @@ msgstr "(Ingen spesifikke instruksjoner er gitt av kanaleieren.)"
msgid "Restricted or Premium Channel"
msgstr "Begrenset kanal eller premiumkanal"
-#: ../../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:113 ../../Zotlabs/Module/Rpost.php:211
-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/Queueworker.php:65
-msgid "Max queueworker threads"
+#: ../../Zotlabs/Module/Affinity.php:35
+msgid "Affinity Tool settings updated."
msgstr ""
-#: ../../Zotlabs/Module/Admin/Queueworker.php:67
-msgid "Minimum 4, default 4"
+#: ../../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/Queueworker.php:77
-msgid "Assume workers dead after"
+#: ../../Zotlabs/Module/Affinity.php:61
+msgid "Default maximum affinity level"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Queueworker.php:79
-msgid "Minimum 120, default 300 seconds"
-msgstr ""
+#: ../../Zotlabs/Module/Affinity.php:61
+#, fuzzy
+msgid "0-99 default 99"
+msgstr "Standard"
-#: ../../Zotlabs/Module/Admin/Queueworker.php:91
-msgid "Pause before starting next task"
+#: ../../Zotlabs/Module/Affinity.php:67
+msgid "Default minimum affinity level"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Queueworker.php:93
-msgid "Minimum 100, default 100 microseconds"
-msgstr ""
+#: ../../Zotlabs/Module/Affinity.php:67
+#, fuzzy
+msgid "0-99 - default 0"
+msgstr "Standard"
-#: ../../Zotlabs/Module/Admin/Queueworker.php:102
-msgid "Automatically adjust pause before starting next task"
+#: ../../Zotlabs/Module/Affinity.php:73
+msgid "Persistent affinity levels"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Queueworker.php:111
-msgid "Queueworker Settings"
+#: ../../Zotlabs/Module/Affinity.php:73
+msgid ""
+"If disabled the max and min levels will be reset to default after page reload"
msgstr ""
-#: ../../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"
+#: ../../Zotlabs/Module/Affinity.php:81
+msgid "Affinity Tool Settings"
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/Siteinfo.php:22
+msgid "About this site"
+msgstr "Om dette nettstedet "
-#: ../../Zotlabs/Module/Admin/Themes.php:61
-msgid "No themes found."
-msgstr "Ingen temaer er funnet."
+#: ../../Zotlabs/Module/Siteinfo.php:23
+#, fuzzy
+msgid "Site Name"
+msgstr "Nettstedets navn"
-#: ../../Zotlabs/Module/Admin/Themes.php:95
-#: ../../Zotlabs/Module/Admin/Addons.php:314
-msgid "Disable"
-msgstr "Skru av"
+#: ../../Zotlabs/Module/Siteinfo.php:25 ../../Zotlabs/Module/Admin/Site.php:414
+msgid "Site Information"
+msgstr "Nettstedsinformasjon"
-#: ../../Zotlabs/Module/Admin/Themes.php:97
-#: ../../Zotlabs/Module/Admin/Addons.php:317
-msgid "Enable"
-msgstr "Skru på"
+#: ../../Zotlabs/Module/Siteinfo.php:27
+msgid "Administrator"
+msgstr "Administrator"
-#: ../../Zotlabs/Module/Admin/Themes.php:116
-msgid "Screenshot"
-msgstr "Skjermbilde"
+#: ../../Zotlabs/Module/Siteinfo.php:30
+msgid "Software and Project information"
+msgstr "Program- og prosjektinformasjon"
-#: ../../Zotlabs/Module/Admin/Themes.php:122
-#: ../../Zotlabs/Module/Admin/Themes.php:156
-#: ../../Zotlabs/Module/Admin/Security.php:105
-#: ../../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:345
-#: ../../Zotlabs/Module/Admin/Addons.php:443 ../../Zotlabs/Module/Admin.php:140
-msgid "Administration"
-msgstr "Administrasjon"
+#: ../../Zotlabs/Module/Siteinfo.php:31
+msgid "This site is powered by $Projectname"
+msgstr "Dette nettstedet drives av $Projectname"
-#: ../../Zotlabs/Module/Admin/Themes.php:124
-#: ../../Zotlabs/Module/Admin/Addons.php:347
-msgid "Toggle"
-msgstr "Skru av og på"
+#: ../../Zotlabs/Module/Siteinfo.php:32
+#, fuzzy
+#| msgid ""
+#| "Federated and decentralised networking and identity services provided by "
+#| "Zot"
+msgid ""
+"Federated and decentralised networking and identity services provided by"
+msgstr "Fødererte og desentraliserte nettverks- og identitetstjenester via Zot"
-#: ../../Zotlabs/Module/Admin/Themes.php:134
-#: ../../Zotlabs/Module/Admin/Addons.php:355
-msgid "Author: "
-msgstr "Forfatter: "
+#: ../../Zotlabs/Module/Siteinfo.php:35
+msgid "Additional federated transport protocols:"
+msgstr "Øvrige fødererte transportprotokoller:"
-#: ../../Zotlabs/Module/Admin/Themes.php:135
-#: ../../Zotlabs/Module/Admin/Addons.php:356
-msgid "Maintainer: "
-msgstr "Vedlikeholder: "
+#: ../../Zotlabs/Module/Siteinfo.php:37
+#, php-format
+msgid "Version %s"
+msgstr "Versjon %s"
-#: ../../Zotlabs/Module/Admin/Themes.php:162
-msgid "[Experimental]"
-msgstr "[Eksperimentelt]"
+#: ../../Zotlabs/Module/Siteinfo.php:38
+msgid "Project homepage"
+msgstr "Prosjektets hjemmeside"
-#: ../../Zotlabs/Module/Admin/Themes.php:163
-msgid "[Unsupported]"
-msgstr "[Ingen støtte]"
+#: ../../Zotlabs/Module/Siteinfo.php:39
+msgid "Developer homepage"
+msgstr "Utviklers hjemmeside"
-#: ../../Zotlabs/Module/Admin/Features.php:56
-#, php-format
-msgid "Lock feature %s"
-msgstr "Lås funksjon %s"
+#: ../../Zotlabs/Module/Siteinfo.php:42 ../../Zotlabs/Module/Admin.php:149
+msgid "Active addons"
+msgstr "Aktive tillegg"
-#: ../../Zotlabs/Module/Admin/Features.php:64
-msgid "Manage Additional Features"
-msgstr "Håndter tilleggsfunksjoner"
+#: ../../Zotlabs/Module/Siteinfo.php:43
+#, fuzzy
+#| msgid "Block Title"
+msgid "Blocked sites"
+msgstr "Byggeklossens tittel"
-#: ../../Zotlabs/Module/Admin/Security.php:96
-msgid ""
-"By default, unfiltered HTML is allowed in embedded media. This is inherently "
-"insecure."
+#: ../../Zotlabs/Module/Import_progress.php:40
+msgid "Item sync completed!"
msgstr ""
-"Ufiltrert HTML er i utgangspunktet tillatt i innebygde media. Dette er en "
-"sikkerhetsrisiko."
-#: ../../Zotlabs/Module/Admin/Security.php:99
-msgid ""
-"The recommended setting is to only allow unfiltered HTML from the following "
-"sites:"
+#: ../../Zotlabs/Module/Import_progress.php:62
+#: ../../Zotlabs/Module/Import_progress.php:111
+msgid "Import host does not seem to be online or compatible"
msgstr ""
-"Det anbefales at man kun tillater ufiltrert HTML fra følgende nettsteder:"
-#: ../../Zotlabs/Module/Admin/Security.php:100
-msgid ""
-"https://youtube.com/<br />https://www.youtube.com/<br />https://youtu.be/"
-"<br />https://vimeo.com/<br />https://soundcloud.com/<br />"
+#: ../../Zotlabs/Module/Import_progress.php:73
+msgid "Item sync completed but no items were found!"
msgstr ""
-"https://youtube.com/<br />https://www.youtube.com/<br />https://youtu.be/"
-"<br />https://vimeo.com/<br />https://soundcloud.com/<br />"
-#: ../../Zotlabs/Module/Admin/Security.php:101
-msgid ""
-"All other embedded content will be filtered, <strong>unless</strong> "
-"embedded content from that site is explicitly blocked."
+#: ../../Zotlabs/Module/Import_progress.php:90
+msgid "File sync completed!"
msgstr ""
-"Alt annet innebygget innhold vil bli filtrert, <strong>med mindre</strong> "
-"innebygget innhold fra den aktuelle siden eksplisitt er blokkert."
-#: ../../Zotlabs/Module/Admin/Security.php:108
-msgid "Block public"
-msgstr "Blokker offentlig tilgang"
-
-#: ../../Zotlabs/Module/Admin/Security.php:108
-msgid ""
-"Check to block public access to all otherwise public personal pages on this "
-"site unless you are currently authenticated."
+#: ../../Zotlabs/Module/Import_progress.php:122
+msgid "File sync completed but no files were found!"
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:109
-msgid "Provide a cloud root directory"
+#: ../../Zotlabs/Module/Import_progress.php:137
+msgid "Channel clone status"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Security.php:109
-msgid ""
-"The cloud root directory lists all channel names which provide public files"
+#: ../../Zotlabs/Module/Import_progress.php:138
+msgid "Item sync status"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Security.php:110
-msgid "Show total disk space available to cloud uploads"
+#: ../../Zotlabs/Module/Import_progress.php:139
+msgid "File sync status"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Security.php:111
-msgid "Set \"Transport Security\" HTTP header"
-msgstr "Slå på \"Transport Security\" i HTTP meldingshodet"
-
-#: ../../Zotlabs/Module/Admin/Security.php:112
-msgid "Set \"Content Security Policy\" HTTP header"
-msgstr "Sett \"Content Security Policy\" i HTTP meldingshodet"
-
-#: ../../Zotlabs/Module/Admin/Security.php:113
-msgid "Allowed email domains"
-msgstr "Tillate e-postdomener"
-
-#: ../../Zotlabs/Module/Admin/Security.php:113
-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/Import_progress.php:146
+msgid "Channel cloning completed!"
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:114
-msgid "Not allowed email domains"
-msgstr "Ikke tillatte e-postdomener"
-#: ../../Zotlabs/Module/Admin/Security.php:114
-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."
+#: ../../Zotlabs/Module/Import_progress.php:147
+msgid "Resume"
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:115
-msgid "Allow communications only from these sites"
-msgstr "Tillat kommunikasjon med bare disse nettstedene"
-
-#: ../../Zotlabs/Module/Admin/Security.php:115
-msgid ""
-"One site per line. Leave empty to allow communication from anywhere by "
-"default"
+#: ../../Zotlabs/Module/Import_progress.php:148
+msgid "Only resume if sync stalled!"
msgstr ""
-"Et nettsted per linje. La det stå tomt for å tillate kommunikasjon med "
-"ethvert nettsted som standard"
-#: ../../Zotlabs/Module/Admin/Security.php:116
-msgid "Block communications from these sites"
-msgstr "Blokker kommunikasjon fra disse nettstedene"
+#: ../../Zotlabs/Module/Dirsearch.php:24 ../../Zotlabs/Module/Regdir.php:53
+msgid "This site is not a directory server"
+msgstr "Dette nettstedet er ikke en katalogtjener"
-#: ../../Zotlabs/Module/Admin/Security.php:117
-msgid "Allow communications only from these channels"
-msgstr "Tillat kommunikasjon med bare disse kanalene"
+#: ../../Zotlabs/Module/Dirsearch.php:32
+msgid "This directory server requires an access token"
+msgstr "Denne katalogtjeneren krever en tilgangsnøkkel (access token)"
-#: ../../Zotlabs/Module/Admin/Security.php:117
-msgid ""
-"One channel (hash) per line. Leave empty to allow from any channel by default"
+#: ../../Zotlabs/Module/Filestorage.php:14
+#: ../../Zotlabs/Module/Filestorage.php:53
+msgid "Deprecated!"
msgstr ""
-"En kanal (hash) per linje. La det stå tomt for å tillate enhver kanal som "
-"standard"
-#: ../../Zotlabs/Module/Admin/Security.php:118
-msgid "Block communications from these channels"
-msgstr "Blokker kommunikasjon fra disse kanalene"
+#: ../../Zotlabs/Module/Filestorage.php:109
+#: ../../Zotlabs/Module/Attach_edit.php:69
+msgid "File not found."
+msgstr "Filen ble ikke funnet."
-#: ../../Zotlabs/Module/Admin/Security.php:119
-msgid "Only allow embeds from secure (SSL) websites and links."
-msgstr "Kun tillat innebygget innhold fra sikre (HTTPS) nettsteder og lenker."
+#: ../../Zotlabs/Module/Filestorage.php:157
+msgid "Permission Denied."
+msgstr "Tillatelse avvist."
-#: ../../Zotlabs/Module/Admin/Security.php:120
-msgid "Allow unfiltered embedded HTML content only from these domains"
-msgstr "Kun tillat ufiltrert innebygget innhold fra disse domenene"
+#: ../../Zotlabs/Module/Filestorage.php:190
+msgid "Edit file permissions"
+msgstr "Endre filtillatelser"
-#: ../../Zotlabs/Module/Admin/Security.php:120
-msgid "One site per line. By default embedded content is filtered."
-msgstr ""
-"Ett nettsted pr. linje. Innebygget innhold er filtrert i utgangsounktet."
+#: ../../Zotlabs/Module/Filestorage.php:202
+#: ../../extend/addon/hzaddons/flashcards/Mod_Flashcards.php:268
+msgid "Set/edit permissions"
+msgstr "Angi/endre tillatelser"
-#: ../../Zotlabs/Module/Admin/Security.php:121
-msgid "Block embedded HTML from these domains"
-msgstr "Blokker innbygget HTML fra disse domenene"
+#: ../../Zotlabs/Module/Filestorage.php:203
+msgid "Include all files and sub folders"
+msgstr "Inkluder alle filer og undermapper"
-#: ../../Zotlabs/Module/Admin/Security.php:122
-msgid "Allow SVG thumbnails in file browser"
-msgstr ""
+#: ../../Zotlabs/Module/Filestorage.php:204
+msgid "Return to file list"
+msgstr "Gå tilbake til filoversikten"
-#: ../../Zotlabs/Module/Admin/Security.php:122
-msgid "WARNING: SVG images may contain malicious code."
-msgstr ""
+#: ../../Zotlabs/Module/Filestorage.php:209
+msgid "Share this file"
+msgstr "Del denne filen"
-#: ../../Zotlabs/Module/Admin/Security.php:123
-msgid "Allow embedded (inline) PDF files"
-msgstr ""
+#: ../../Zotlabs/Module/Filestorage.php:210
+msgid "Show URL to this file"
+msgstr "Vis URLen til denne filen"
-#: ../../Zotlabs/Module/Admin/Security.php:125
+#: ../../Zotlabs/Module/Pdledit_gui.php:119
#, fuzzy
-#| msgid "Default directory server"
-msgid "Additional trusted directory server URLs"
-msgstr "Standard katalogtjener"
-
-#: ../../Zotlabs/Module/Admin/Security.php:125
-msgid ""
-"Accept directory flags (spam, nsfw) from those servers. One per line like "
-"https://example.tld"
-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 ""
+msgid "Layout not found"
+msgstr "Layouten ble ikke funnet."
-#: ../../Zotlabs/Module/Admin/Accounts.php:310
-msgid "Show verified registrations"
+#: ../../Zotlabs/Module/Pdledit_gui.php:127
+msgid "This template does not support pdledi_gui (no content regions defined)"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Accounts.php:310
-msgid "Show all registrations"
+#: ../../Zotlabs/Module/Pdledit_gui.php:404
+msgid "Main page content"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Accounts.php:312
-msgid "Select toggle"
+#: ../../Zotlabs/Module/Pdledit_gui.php:405
+msgid "The main page content can not be edited!"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Accounts.php:313
-msgid "Deny selected"
-msgstr ""
+#: ../../Zotlabs/Module/Pdledit.php:27
+msgid "Layout updated."
+msgstr "Layout er oppdatert."
-#: ../../Zotlabs/Module/Admin/Accounts.php:314
-msgid "Approve selected"
-msgstr ""
+#: ../../Zotlabs/Module/Pdledit.php:55 ../../Zotlabs/Module/Pdledit.php:129
+msgid "Edit System Page Description"
+msgstr "Endre beskrivelsen av systemsiden"
-#: ../../Zotlabs/Module/Admin/Accounts.php:315
-msgid "All registrations"
-msgstr ""
+#: ../../Zotlabs/Module/Pdledit.php:76 ../../Zotlabs/Module/Pdledit.php:93
+msgid "(modified)"
+msgstr "(endret)"
-#: ../../Zotlabs/Module/Admin/Accounts.php:315
-msgid "Verified registrations waiting for approval"
-msgstr ""
+#: ../../Zotlabs/Module/Pdledit.php:124
+msgid "Layout not found."
+msgstr "Layouten ble ikke funnet."
-#: ../../Zotlabs/Module/Admin/Accounts.php:316
-msgid "Request date"
-msgstr "Dato for forespørsel"
+#: ../../Zotlabs/Module/Pdledit.php:130
+msgid "Module Name:"
+msgstr "Modulnavn:"
-#: ../../Zotlabs/Module/Admin/Accounts.php:316
-msgid "Requests"
-msgstr ""
+#: ../../Zotlabs/Module/Pdledit.php:131
+msgid "Layout Help"
+msgstr "Layout-hjelp"
-#: ../../Zotlabs/Module/Admin/Accounts.php:317
-msgid "No registrations available"
+#: ../../Zotlabs/Module/Pdledit.php:132
+msgid "Edit another layout"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Accounts.php:317
-msgid "No verified registrations available"
+#: ../../Zotlabs/Module/Pdledit.php:133
+msgid "System layout"
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/Moderate.php:70
+#, fuzzy
+#| msgid "Account approved."
+msgid "Item approved"
+msgstr "Konto godkjent."
-#: ../../Zotlabs/Module/Admin/Accounts.php:323
-msgid "Verified"
+#: ../../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/Admin/Accounts.php:324
-msgid "Not yet verified"
-msgstr ""
+#: ../../Zotlabs/Module/Removeaccount.php:57
+msgid "Remove This Account"
+msgstr "Slett denne kontoen"
-#: ../../Zotlabs/Module/Admin/Accounts.php:329
-msgid "ID"
-msgstr "ID"
+#: ../../Zotlabs/Module/Removeaccount.php:58
+#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Changeaddr.php:78
+msgid "WARNING: "
+msgstr "ADVARSEL: "
-#: ../../Zotlabs/Module/Admin/Accounts.php:331
-msgid "All channels"
+#: ../../Zotlabs/Module/Removeaccount.php:58
+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. "
-#: ../../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/Removeaccount.php:58
+msgid "This action is permanent and can not be undone!"
+msgstr "Denne handlingen er permanent og kan ikke angres!"
-#: ../../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/Removeaccount.php:59
+#: ../../Zotlabs/Module/Removeme.php:62 ../../Zotlabs/Module/Changeaddr.php:79
+msgid "Please enter your password for verification:"
+msgstr "Vennligst skriv ditt passord for å få bekreftelse:"
-#: ../../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/Removeaccount.php:61
+#: ../../Zotlabs/Module/Settings/Account.php:113
+msgid "Remove Account"
+msgstr "Slett konto"
-#: ../../Zotlabs/Module/Admin/Accounts.php:347
-msgid "Message"
-msgstr "Melding"
+#: ../../Zotlabs/Module/Regmod.php:15
+msgid "Please login."
+msgstr "Vennligst logg inn."
-#: ../../Zotlabs/Module/Admin/Site.php:111
+#: ../../Zotlabs/Module/Admin/Site.php:112
msgid "Invalid input"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Site.php:131
+#: ../../Zotlabs/Module/Admin/Site.php:132
msgid "Errors"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Site.php:219
+#: ../../Zotlabs/Module/Admin/Site.php:220
msgid "Site settings updated."
msgstr "Nettstedsinnstillinger er oppdatert."
-#: ../../Zotlabs/Module/Admin/Site.php:256
-#: ../../Zotlabs/Module/Settings/Display.php:116
+#: ../../Zotlabs/Module/Admin/Site.php:243
+#: ../../Zotlabs/Module/Settings/Display.php:117
#, php-format
msgid "%s - (Incompatible)"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Site.php:263
+#: ../../Zotlabs/Module/Admin/Site.php:250
msgid "mobile"
msgstr "mobil"
-#: ../../Zotlabs/Module/Admin/Site.php:265
+#: ../../Zotlabs/Module/Admin/Site.php:252
msgid "experimental"
msgstr "eksperimentell"
-#: ../../Zotlabs/Module/Admin/Site.php:267
+#: ../../Zotlabs/Module/Admin/Site.php:254
msgid "unsupported"
msgstr "ikke støttet"
-#: ../../Zotlabs/Module/Admin/Site.php:320
+#: ../../Zotlabs/Module/Admin/Site.php:307
msgid "Yes - with approval"
msgstr "Ja - med godkjenning"
-#: ../../Zotlabs/Module/Admin/Site.php:328
+#: ../../Zotlabs/Module/Admin/Site.php:315
msgid "My site is not a public server"
msgstr "Mitt nettsted er ikke en offentlig tjeneste"
-#: ../../Zotlabs/Module/Admin/Site.php:329
+#: ../../Zotlabs/Module/Admin/Site.php:316
msgid "My site has paid access only"
msgstr "Mitt nettsted gir kun tilgang mot betaling"
-#: ../../Zotlabs/Module/Admin/Site.php:330
+#: ../../Zotlabs/Module/Admin/Site.php:317
msgid "My site has free access only"
msgstr "Mitt nettsted har kun gratis tilgang"
-#: ../../Zotlabs/Module/Admin/Site.php:331
+#: ../../Zotlabs/Module/Admin/Site.php:318
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
+#: ../../Zotlabs/Module/Admin/Site.php:336
msgid "Default permission role for new accounts"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Site.php:349
+#: ../../Zotlabs/Module/Admin/Site.php:336
msgid ""
"This role will be used for the first channel created after registration."
msgstr ""
-#: ../../Zotlabs/Module/Admin/Site.php:356 ../../Zotlabs/Module/Invite.php:410
-msgid "Minute(s)"
-msgstr ""
-
-#: ../../Zotlabs/Module/Admin/Site.php:357 ../../Zotlabs/Module/Invite.php:411
-msgid "Hour(s)"
-msgstr ""
-
-#: ../../Zotlabs/Module/Admin/Site.php:358 ../../Zotlabs/Module/Invite.php:412
-msgid "Day(s)"
-msgstr ""
-
-#: ../../Zotlabs/Module/Admin/Site.php:359
+#: ../../Zotlabs/Module/Admin/Site.php:346
msgid "Week(s)"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Site.php:360
+#: ../../Zotlabs/Module/Admin/Site.php:347
msgid "Month(s)"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Site.php:361
+#: ../../Zotlabs/Module/Admin/Site.php:348
msgid "Year(s)"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Site.php:369
+#: ../../Zotlabs/Module/Admin/Site.php:356
msgid "Register verification delay"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Site.php:372
+#: ../../Zotlabs/Module/Admin/Site.php:359
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:421
-msgid "duration up from now"
-msgstr ""
-
-#: ../../Zotlabs/Module/Admin/Site.php:391
+#: ../../Zotlabs/Module/Admin/Site.php:378
msgid "Register verification expiration time"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Site.php:394
+#: ../../Zotlabs/Module/Admin/Site.php:381
msgid "Time before an unverified registration will expire"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Site.php:417
+#: ../../Zotlabs/Module/Admin/Site.php:398
+#: ../../Zotlabs/Module/Admin/Accounts.php:307
+#: ../../Zotlabs/Module/Admin/Security.php:106
+#: ../../Zotlabs/Module/Admin/Channels.php:167
+#: ../../Zotlabs/Module/Admin/Addons.php:346
+#: ../../Zotlabs/Module/Admin/Addons.php:444
+#: ../../Zotlabs/Module/Admin/Themes.php:138
+#: ../../Zotlabs/Module/Admin/Themes.php:172
+#: ../../Zotlabs/Module/Admin/Logs.php:83 ../../Zotlabs/Module/Admin.php:142
+msgid "Administration"
+msgstr "Administrasjon"
+
+#: ../../Zotlabs/Module/Admin/Site.php:401 ../../Zotlabs/Widget/Admin.php:27
+msgid "Site"
+msgstr "Nettsted"
+
+#: ../../Zotlabs/Module/Admin/Site.php:404
msgid "File upload"
msgstr "Last opp fil"
-#: ../../Zotlabs/Module/Admin/Site.php:418
+#: ../../Zotlabs/Module/Admin/Site.php:405
msgid "Policies"
msgstr "Retningslinjer"
-#: ../../Zotlabs/Module/Admin/Site.php:425
+#: ../../Zotlabs/Module/Admin/Site.php:410
+#: ../../extend/addon/hzaddons/statusnet/statusnet.php:593
+msgid "Site name"
+msgstr "Nettstedets navn"
+
+#: ../../Zotlabs/Module/Admin/Site.php:412
msgid "Banner/Logo"
msgstr "Banner/Logo"
-#: ../../Zotlabs/Module/Admin/Site.php:425
+#: ../../Zotlabs/Module/Admin/Site.php:412
msgid "Unfiltered HTML/CSS/JS is allowed"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Site.php:426
+#: ../../Zotlabs/Module/Admin/Site.php:413
msgid "Administrator Information"
msgstr "Administratorinformasjon"
-#: ../../Zotlabs/Module/Admin/Site.php:426
+#: ../../Zotlabs/Module/Admin/Site.php:413
msgid ""
"Contact information for site administrators. Displayed on siteinfo page. "
"BBCode can be used here"
@@ -10608,21 +9651,17 @@ 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 "Nettstedsinformasjon"
-
-#: ../../Zotlabs/Module/Admin/Site.php:427
+#: ../../Zotlabs/Module/Admin/Site.php:414
msgid ""
"Publicly visible description of this site. Displayed on siteinfo page. "
"BBCode can be used here"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Site.php:429
+#: ../../Zotlabs/Module/Admin/Site.php:415
msgid "System theme"
msgstr "Systemtema"
-#: ../../Zotlabs/Module/Admin/Site.php:429
+#: ../../Zotlabs/Module/Admin/Site.php:415
msgid ""
"Default system theme - may be over-ridden by user profiles - <a href='#' "
"id='cnftheme'>change theme settings</a>"
@@ -10630,19 +9669,19 @@ msgstr ""
"Standard systemtema - kan overstyres av brukerprofiler - <a href='#' "
"id='cnftheme'>endre temainnstillinger</a>"
-#: ../../Zotlabs/Module/Admin/Site.php:432
+#: ../../Zotlabs/Module/Admin/Site.php:418
msgid "Allow Feeds as Connections"
msgstr "Tillat strømmer som forbindelser"
-#: ../../Zotlabs/Module/Admin/Site.php:432
+#: ../../Zotlabs/Module/Admin/Site.php:418
msgid "(Heavy system resource usage)"
msgstr "(Tung bruk av systemressurser)"
-#: ../../Zotlabs/Module/Admin/Site.php:433
+#: ../../Zotlabs/Module/Admin/Site.php:419
msgid "Maximum image size"
msgstr "Største bildestørrelse"
-#: ../../Zotlabs/Module/Admin/Site.php:433
+#: ../../Zotlabs/Module/Admin/Site.php:419
msgid ""
"Maximum size in bytes of uploaded images. Default is 0, which means no "
"limits."
@@ -10650,122 +9689,122 @@ msgstr ""
"Største størrelse i bytes for opplastede bilder. Standard er 0, som betyr "
"ubegrenset."
-#: ../../Zotlabs/Module/Admin/Site.php:434
+#: ../../Zotlabs/Module/Admin/Site.php:420
msgid "Minimum age"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Site.php:434
+#: ../../Zotlabs/Module/Admin/Site.php:420
msgid "Minimum age (in years) for who may register on this site."
msgstr ""
-#: ../../Zotlabs/Module/Admin/Site.php:435
+#: ../../Zotlabs/Module/Admin/Site.php:421
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
+#: ../../Zotlabs/Module/Admin/Site.php:421
msgid "This is displayed on the public server site list."
msgstr ""
-#: ../../Zotlabs/Module/Admin/Site.php:441
+#: ../../Zotlabs/Module/Admin/Site.php:427
msgid "Register text"
msgstr "Registreringstekst"
-#: ../../Zotlabs/Module/Admin/Site.php:443
+#: ../../Zotlabs/Module/Admin/Site.php:429
msgid "This text will be displayed prominently at the registration page"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Site.php:447
+#: ../../Zotlabs/Module/Admin/Site.php:433
msgid "Does this site allow new member registration?"
msgstr "Tillater dette nettstedet registrering av nye medlemmer?"
-#: ../../Zotlabs/Module/Admin/Site.php:454
+#: ../../Zotlabs/Module/Admin/Site.php:440
msgid "Configure the registration open days/hours"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Site.php:456
+#: ../../Zotlabs/Module/Admin/Site.php:442
msgid "Empty or '-:-' value will keep registration open 24/7 (default)"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Site.php:457
+#: ../../Zotlabs/Module/Admin/Site.php:443
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
+#: ../../Zotlabs/Module/Admin/Site.php:444
msgid ""
"Weekday:Hour pairs must be separated by space ' ' example: 1:900-1700 "
"2:900-1700"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Site.php:459
+#: ../../Zotlabs/Module/Admin/Site.php:445
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
+#: ../../Zotlabs/Module/Admin/Site.php:446
msgid "Advanced examples:"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Site.php:460
-#: ../../Zotlabs/Module/Settings/Channel.php:183
+#: ../../Zotlabs/Module/Admin/Site.php:446
+#: ../../Zotlabs/Module/Settings/Channel.php:184
msgid "or"
msgstr "eller"
-#: ../../Zotlabs/Module/Admin/Site.php:461
+#: ../../Zotlabs/Module/Admin/Site.php:447
msgid "Check your configuration"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Site.php:465
+#: ../../Zotlabs/Module/Admin/Site.php:451
msgid "Max account registrations per day"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Site.php:467
+#: ../../Zotlabs/Module/Admin/Site.php:453
msgid "Unlimited if zero or no value - default 50"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Site.php:471
+#: ../../Zotlabs/Module/Admin/Site.php:457
msgid "Max account registrations from same IP"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Site.php:473
+#: ../../Zotlabs/Module/Admin/Site.php:459
msgid "Unlimited if zero or no value - default 3"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Site.php:479
+#: ../../Zotlabs/Module/Admin/Site.php:465
msgid "Auto channel create"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Site.php:481
+#: ../../Zotlabs/Module/Admin/Site.php:467
msgid ""
"If disabled the channel will be created in a separate step during the "
"registration process"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Site.php:485
+#: ../../Zotlabs/Module/Admin/Site.php:471
msgid "Require invite code"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Site.php:490
+#: ../../Zotlabs/Module/Admin/Site.php:476
msgid "Allow invite code"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Site.php:495
+#: ../../Zotlabs/Module/Admin/Site.php:481
msgid "Require email address"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Site.php:497
+#: ../../Zotlabs/Module/Admin/Site.php:483
msgid "The provided email address will be verified (recommended)"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Site.php:501
+#: ../../Zotlabs/Module/Admin/Site.php:487
msgid "Abandon account after x days"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Site.php:503
+#: ../../Zotlabs/Module/Admin/Site.php:489
msgid ""
"Will not waste system resources polling external sites for abandonded "
"accounts. Enter 0 for no time limit."
@@ -10773,22 +9812,22 @@ 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
+#: ../../Zotlabs/Module/Admin/Site.php:494
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
+#: ../../Zotlabs/Module/Admin/Site.php:494
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
+#: ../../Zotlabs/Module/Admin/Site.php:495
msgid "Preserve site homepage URL"
msgstr "Bevar URL-en til nettstedets hjemmeside"
-#: ../../Zotlabs/Module/Admin/Site.php:509
+#: ../../Zotlabs/Module/Admin/Site.php:495
msgid ""
"Present the site homepage in a frame at the original location instead of "
"redirecting"
@@ -10796,11 +9835,11 @@ msgstr ""
"Presenter hjemmesiden til nettstedet i en ramme fra den opprinnelige "
"plasseringen i stedet for å omdirigere"
-#: ../../Zotlabs/Module/Admin/Site.php:510
+#: ../../Zotlabs/Module/Admin/Site.php:496
msgid "Allowed friend domains"
msgstr "Tillatte vennedomener"
-#: ../../Zotlabs/Module/Admin/Site.php:510
+#: ../../Zotlabs/Module/Admin/Site.php:496
msgid ""
"Comma separated list of domains which are allowed to establish friendships "
"with this site. Wildcards are accepted. Empty to allow any domains"
@@ -10808,11 +9847,11 @@ 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
+#: ../../Zotlabs/Module/Admin/Site.php:497
msgid "Force publish"
msgstr "Tving publisering"
-#: ../../Zotlabs/Module/Admin/Site.php:511
+#: ../../Zotlabs/Module/Admin/Site.php:497
#, fuzzy
#| msgid ""
#| "Check to force all profiles on this site to be listed in the site "
@@ -10823,11 +9862,11 @@ msgstr ""
"Kryss av for å tvinge alle profiler på dette nettstedet til å bli oppført i "
"nettstedet sin katalog."
-#: ../../Zotlabs/Module/Admin/Site.php:512
+#: ../../Zotlabs/Module/Admin/Site.php:498
msgid "Enable public stream"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Site.php:512
+#: ../../Zotlabs/Module/Admin/Site.php:498
#, fuzzy
#| msgid ""
#| "Import and allow access to public content pulled from other sites. "
@@ -10837,49 +9876,37 @@ 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
+#: ../../Zotlabs/Module/Admin/Site.php:499
#, fuzzy
#| msgid "My site is not a public server"
msgid "Site only public stream"
msgstr "Mitt nettsted er ikke en offentlig tjeneste"
-#: ../../Zotlabs/Module/Admin/Site.php:513
+#: ../../Zotlabs/Module/Admin/Site.php:499
msgid "Restrict the public stream to content originating at this site"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Site.php:514
+#: ../../Zotlabs/Module/Admin/Site.php:500
msgid "Allow anybody on the internet to access the public streams"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Site.php:514
+#: ../../Zotlabs/Module/Admin/Site.php:500
msgid "Disable to require authentication before viewing"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Site.php:515
+#: ../../Zotlabs/Module/Admin/Site.php:501
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
+#: ../../Zotlabs/Module/Admin/Site.php:502
msgid "Do not import Public stream posts with this text"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Site.php:519
+#: ../../Zotlabs/Module/Admin/Site.php:505
msgid "Login on Homepage"
msgstr "Logg inn på hjemmesiden"
-#: ../../Zotlabs/Module/Admin/Site.php:519
+#: ../../Zotlabs/Module/Admin/Site.php:505
msgid ""
"Present a login box to visitors on the home page if no other content has "
"been configured."
@@ -10887,68 +9914,68 @@ msgstr ""
"Presenter en innloggingsboks til besøkende på hjemmesiden hvis ikke noe "
"annet innhold har blitt konfigurert."
-#: ../../Zotlabs/Module/Admin/Site.php:520
+#: ../../Zotlabs/Module/Admin/Site.php:506
msgid "Enable context help"
msgstr "Slå på kontekstuell hjelp"
-#: ../../Zotlabs/Module/Admin/Site.php:520
+#: ../../Zotlabs/Module/Admin/Site.php:506
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
+#: ../../Zotlabs/Module/Admin/Site.php:508
msgid "Reply-to email address for system generated email."
msgstr ""
-#: ../../Zotlabs/Module/Admin/Site.php:523
+#: ../../Zotlabs/Module/Admin/Site.php:509
msgid "Sender (From) email address for system generated email."
msgstr ""
-#: ../../Zotlabs/Module/Admin/Site.php:524
+#: ../../Zotlabs/Module/Admin/Site.php:510
msgid "Name of email sender for system generated email."
msgstr ""
-#: ../../Zotlabs/Module/Admin/Site.php:526
+#: ../../Zotlabs/Module/Admin/Site.php:512
msgid "Directory Server URL"
msgstr "Katalogtjener URL"
-#: ../../Zotlabs/Module/Admin/Site.php:526
+#: ../../Zotlabs/Module/Admin/Site.php:512
msgid "Default directory server"
msgstr "Standard katalogtjener"
-#: ../../Zotlabs/Module/Admin/Site.php:528
+#: ../../Zotlabs/Module/Admin/Site.php:514
msgid "Enable SSE Notifications"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Site.php:528
+#: ../../Zotlabs/Module/Admin/Site.php:514
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
+#: ../../Zotlabs/Module/Admin/Site.php:516
msgid "Proxy user"
msgstr "Brukernavn mellomtjener"
-#: ../../Zotlabs/Module/Admin/Site.php:531
+#: ../../Zotlabs/Module/Admin/Site.php:517
msgid "Proxy URL"
msgstr "Mellomtjener URL"
-#: ../../Zotlabs/Module/Admin/Site.php:532
+#: ../../Zotlabs/Module/Admin/Site.php:518
msgid "Network timeout"
msgstr "Nettverk tidsavbrudd"
-#: ../../Zotlabs/Module/Admin/Site.php:532
+#: ../../Zotlabs/Module/Admin/Site.php:518
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
+#: ../../Zotlabs/Module/Admin/Site.php:519
msgid "Delivery interval"
msgstr "Leveringsinterval"
-#: ../../Zotlabs/Module/Admin/Site.php:533
+#: ../../Zotlabs/Module/Admin/Site.php:519
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 "
@@ -10958,11 +9985,11 @@ msgstr ""
"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
+#: ../../Zotlabs/Module/Admin/Site.php:520
msgid "Deliveries per process"
msgstr "Leveranser per prosess"
-#: ../../Zotlabs/Module/Admin/Site.php:534
+#: ../../Zotlabs/Module/Admin/Site.php:520
msgid ""
"Number of deliveries to attempt in a single operating system process. Adjust "
"if necessary to tune system performance. Recommend: 1-5."
@@ -10970,11 +9997,11 @@ 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:536
+#: ../../Zotlabs/Module/Admin/Site.php:522
msgid "Poll interval"
msgstr "Spørreintervall"
-#: ../../Zotlabs/Module/Admin/Site.php:536
+#: ../../Zotlabs/Module/Admin/Site.php:522
msgid ""
"Delay background polling processes by this many seconds to reduce system "
"load. If 0, use delivery interval."
@@ -10982,22 +10009,22 @@ msgstr ""
"Forsink spørreprosessene i bakgrunnen med dette antall sekunder for å "
"redusere systembelastningen. Hvis 0, bruk dette leveringsintervallet."
-#: ../../Zotlabs/Module/Admin/Site.php:537
+#: ../../Zotlabs/Module/Admin/Site.php:523
msgid "Path to ImageMagick convert program"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Site.php:537
+#: ../../Zotlabs/Module/Admin/Site.php:523
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
+#: ../../Zotlabs/Module/Admin/Site.php:524
msgid "Maximum Load Average"
msgstr "Største belastningsgjennomsnitt"
-#: ../../Zotlabs/Module/Admin/Site.php:538
+#: ../../Zotlabs/Module/Admin/Site.php:524
msgid ""
"Maximum system load before delivery and poll processes are deferred - "
"default 50."
@@ -11005,151 +10032,561 @@ msgstr ""
"Største systembelastning før leverings- og spørreprosesser blir utsatt - "
"standard 50."
-#: ../../Zotlabs/Module/Admin/Site.php:539
+#: ../../Zotlabs/Module/Admin/Site.php:525
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
+#: ../../Zotlabs/Module/Admin/Site.php:525
msgid "0 for no expiration of imported content"
msgstr "0 dersom importert innhold ikke skal utgå"
-#: ../../Zotlabs/Module/Admin/Site.php:540
+#: ../../Zotlabs/Module/Admin/Site.php:526
msgid ""
"Do not expire any posts which have comments less than this many days ago"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Site.php:541
+#: ../../Zotlabs/Module/Admin/Site.php:527
msgid ""
"Public servers: Optional landing (marketing) webpage for new registrants"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Site.php:541
+#: ../../Zotlabs/Module/Admin/Site.php:527
#, php-format
msgid "Create this page first. Default is %s/register"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Site.php:542
+#: ../../Zotlabs/Module/Admin/Site.php:528
msgid "Page to display after creating a new channel"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Site.php:542
+#: ../../Zotlabs/Module/Admin/Site.php:528
msgid "Default: profiles"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Site.php:543
+#: ../../Zotlabs/Module/Admin/Site.php:529
msgid "Optional: site location"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Site.php:543
+#: ../../Zotlabs/Module/Admin/Site.php:529
msgid "Region or country"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Site.php:628
-#: ../../Zotlabs/Module/Admin/Site.php:629
+#: ../../Zotlabs/Module/Admin/Site.php:614
+#: ../../Zotlabs/Module/Admin/Site.php:615
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/Dbsync.php:19
+msgid "Update has been marked successful"
+msgstr "Oppdateringen har blitt merket som en suksess"
-#: ../../Zotlabs/Module/Admin/Logs.php:85
-msgid "Clear"
-msgstr "Tøm"
+#: ../../Zotlabs/Module/Admin/Dbsync.php:32
+#, php-format
+msgid "Verification of update %s failed. Check system logs."
+msgstr ""
-#: ../../Zotlabs/Module/Admin/Logs.php:91
-msgid "Debugging"
-msgstr "Feilsøking"
+#: ../../Zotlabs/Module/Admin/Dbsync.php:35
+#: ../../Zotlabs/Module/Admin/Dbsync.php:62
+#, php-format
+msgid "Update %s was successfully applied."
+msgstr "Oppdatering %s ble gjennomført med suksess."
-#: ../../Zotlabs/Module/Admin/Logs.php:92
-msgid "Log file"
-msgstr "Loggfil"
+#: ../../Zotlabs/Module/Admin/Dbsync.php:39
+#, php-format
+msgid "Verifying update %s did not return a status. Unknown if it succeeded."
+msgstr ""
-#: ../../Zotlabs/Module/Admin/Logs.php:92
+#: ../../Zotlabs/Module/Admin/Dbsync.php:42
+#, php-format
+msgid "Update %s does not contain a verification function."
+msgstr ""
+
+#: ../../Zotlabs/Module/Admin/Dbsync.php:46
+#: ../../Zotlabs/Module/Admin/Dbsync.php:69
+#, php-format
+msgid "Update function %s could not be found."
+msgstr "Oppdatering av funksjon %s kunne ikke finnes."
+
+#: ../../Zotlabs/Module/Admin/Dbsync.php:59
+#, php-format
+msgid "Executing update procedure %s failed. Check system logs."
+msgstr ""
+
+#: ../../Zotlabs/Module/Admin/Dbsync.php:66
+#, php-format
msgid ""
-"Must be writable by web server. Relative to your top-level webserver "
-"directory."
+"Update %s did not return a status. It cannot be determined if it was "
+"successful."
msgstr ""
-#: ../../Zotlabs/Module/Admin/Logs.php:93
-msgid "Log level"
-msgstr "Loggnivå"
+#: ../../Zotlabs/Module/Admin/Dbsync.php:87
+msgid "Failed Updates"
+msgstr "Mislykkede oppdateringer"
+
+#: ../../Zotlabs/Module/Admin/Dbsync.php:89
+msgid "Mark success (if update was manually applied)"
+msgstr "Marker suksess (hvis oppdateringen ble gjennomført manuelt)"
+
+#: ../../Zotlabs/Module/Admin/Dbsync.php:90
+msgid "Attempt to verify this update if a verification procedure exists"
+msgstr ""
+
+#: ../../Zotlabs/Module/Admin/Dbsync.php:91
+msgid "Attempt to execute this update step automatically"
+msgstr "Prøv å gjennomføre dette oppdateringstrinnet automatisk"
+
+#: ../../Zotlabs/Module/Admin/Dbsync.php:96
+msgid "No failed updates."
+msgstr "Ingen mislykkede oppdateringer."
+
+#: ../../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/Channels.php:31
+#: ../../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:308
+#: ../../Zotlabs/Module/Admin/Accounts.php:327
+#: ../../Zotlabs/Module/Admin.php:97 ../../Zotlabs/Widget/Admin.php:28
+msgid "Accounts"
+msgstr "Kontoer"
+
+#: ../../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:319
+#: ../../Zotlabs/Module/Authorize.php:33
+msgid "Deny"
+msgstr "Avslå"
+
+#: ../../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/Queueworker.php:66
+msgid "Max queueworker threads"
+msgstr ""
+
+#: ../../Zotlabs/Module/Admin/Queueworker.php:68
+msgid "Minimum 4, default 4"
+msgstr ""
+
+#: ../../Zotlabs/Module/Admin/Queueworker.php:78
+msgid "Assume workers dead after"
+msgstr ""
+
+#: ../../Zotlabs/Module/Admin/Queueworker.php:80
+msgid "Minimum 120, default 300 seconds"
+msgstr ""
+
+#: ../../Zotlabs/Module/Admin/Queueworker.php:92
+msgid "Pause before starting next task"
+msgstr ""
+
+#: ../../Zotlabs/Module/Admin/Queueworker.php:94
+msgid "Minimum 100, default 100 microseconds"
+msgstr ""
+
+#: ../../Zotlabs/Module/Admin/Queueworker.php:103
+msgid "Automatically adjust pause before starting next task"
+msgstr ""
+
+#: ../../Zotlabs/Module/Admin/Queueworker.php:112
+msgid "Queueworker Settings"
+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: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/Security.php:97
+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:100
+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:101
+msgid ""
+"https://youtube.com/<br />https://www.youtube.com/<br />https://youtu.be/"
+"<br />https://vimeo.com/<br />https://soundcloud.com/<br />"
+msgstr ""
+"https://youtube.com/<br />https://www.youtube.com/<br />https://youtu.be/"
+"<br />https://vimeo.com/<br />https://soundcloud.com/<br />"
+
+#: ../../Zotlabs/Module/Admin/Security.php:102
+msgid ""
+"All other embedded content will be filtered, <strong>unless</strong> "
+"embedded content from that site is explicitly blocked."
+msgstr ""
+"Alt annet innebygget innhold vil bli filtrert, <strong>med mindre</strong> "
+"innebygget innhold fra den aktuelle siden eksplisitt er blokkert."
+
+#: ../../Zotlabs/Module/Admin/Security.php:107
+#: ../../Zotlabs/Widget/Admin.php:30
+msgid "Security"
+msgstr "Sikkerhet"
+
+#: ../../Zotlabs/Module/Admin/Security.php:109
+msgid "Block public"
+msgstr "Blokker offentlig tilgang"
+
+#: ../../Zotlabs/Module/Admin/Security.php:109
+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:110
+msgid "Provide a cloud root directory"
+msgstr ""
+
+#: ../../Zotlabs/Module/Admin/Security.php:110
+msgid ""
+"The cloud root directory lists all channel names which provide public files"
+msgstr ""
+
+#: ../../Zotlabs/Module/Admin/Security.php:111
+msgid "Show total disk space available to cloud uploads"
+msgstr ""
+
+#: ../../Zotlabs/Module/Admin/Security.php:112
+msgid "Set \"Transport Security\" HTTP header"
+msgstr "Slå på \"Transport Security\" i HTTP meldingshodet"
+
+#: ../../Zotlabs/Module/Admin/Security.php:113
+msgid "Set \"Content Security Policy\" HTTP header"
+msgstr "Sett \"Content Security Policy\" i HTTP meldingshodet"
+
+#: ../../Zotlabs/Module/Admin/Security.php:114
+msgid "Allowed email domains"
+msgstr "Tillate e-postdomener"
+
+#: ../../Zotlabs/Module/Admin/Security.php:114
+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:115
+msgid "Not allowed email domains"
+msgstr "Ikke tillatte e-postdomener"
+
+#: ../../Zotlabs/Module/Admin/Security.php:115
+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:116
+msgid "Allow communications only from these sites"
+msgstr "Tillat kommunikasjon med bare disse nettstedene"
+
+#: ../../Zotlabs/Module/Admin/Security.php:116
+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:117
+msgid "Block communications from these sites"
+msgstr "Blokker kommunikasjon fra disse nettstedene"
+
+#: ../../Zotlabs/Module/Admin/Security.php:118
+msgid "Allow communications only from these channels"
+msgstr "Tillat kommunikasjon med bare disse kanalene"
+
+#: ../../Zotlabs/Module/Admin/Security.php:118
+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:119
+msgid "Block communications from these channels"
+msgstr "Blokker kommunikasjon fra disse kanalene"
+
+#: ../../Zotlabs/Module/Admin/Security.php:120
+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:121
+msgid "Allow unfiltered embedded HTML content only from these domains"
+msgstr "Kun tillat ufiltrert innebygget innhold fra disse domenene"
+
+#: ../../Zotlabs/Module/Admin/Security.php:121
+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:122
+msgid "Block embedded HTML from these domains"
+msgstr "Blokker innbygget HTML fra disse domenene"
+
+#: ../../Zotlabs/Module/Admin/Security.php:123
+msgid "Allow SVG thumbnails in file browser"
+msgstr ""
+
+#: ../../Zotlabs/Module/Admin/Security.php:123
+msgid "WARNING: SVG images may contain malicious code."
+msgstr ""
+
+#: ../../Zotlabs/Module/Admin/Security.php:124
+msgid "Allow embedded (inline) PDF files"
+msgstr ""
+
+#: ../../Zotlabs/Module/Admin/Security.php:126
+#, fuzzy
+#| msgid "Default directory server"
+msgid "Additional trusted directory server URLs"
+msgstr "Standard katalogtjener"
+
+#: ../../Zotlabs/Module/Admin/Security.php:126
+msgid ""
+"Accept directory flags (spam, nsfw) from those servers. One per line like "
+"https://example.tld"
+msgstr ""
+
+#: ../../Zotlabs/Module/Admin/Channels.php:28
+#: ../../Zotlabs/Module/Admin/Channels.php:80
+msgid "Channel not found"
+msgstr "Kanalen ble ikke funnet"
+
+#: ../../Zotlabs/Module/Admin/Channels.php:48
#, 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
+#: ../../Zotlabs/Module/Admin/Channels.php:57
#, 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
+#: ../../Zotlabs/Module/Admin/Channels.php:63
#, 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
+#: ../../Zotlabs/Module/Admin/Channels.php:90
#, php-format
msgid "Channel '%s' deleted"
msgstr "Kanalen '%s' er slettet"
-#: ../../Zotlabs/Module/Admin/Channels.php:87
+#: ../../Zotlabs/Module/Admin/Channels.php:109
#, php-format
msgid "Channel '%s' censored"
msgstr "Kanalen '%s' er sensurert"
-#: ../../Zotlabs/Module/Admin/Channels.php:87
+#: ../../Zotlabs/Module/Admin/Channels.php:109
#, php-format
msgid "Channel '%s' uncensored"
msgstr "Kanalen '%s' er ikke sensurert lenger"
-#: ../../Zotlabs/Module/Admin/Channels.php:98
+#: ../../Zotlabs/Module/Admin/Channels.php:120
#, php-format
msgid "Channel '%s' code allowed"
msgstr "Kanal '%s' kode tillatt"
-#: ../../Zotlabs/Module/Admin/Channels.php:98
+#: ../../Zotlabs/Module/Admin/Channels.php:120
#, php-format
msgid "Channel '%s' code disallowed"
msgstr "Kanal '%s' kode ikke tillatt"
-#: ../../Zotlabs/Module/Admin/Channels.php:148
+#: ../../Zotlabs/Module/Admin/Channels.php:170
msgid "select all"
msgstr "velg alle"
-#: ../../Zotlabs/Module/Admin/Channels.php:150
+#: ../../Zotlabs/Module/Admin/Channels.php:172
msgid "Censor"
msgstr "Sensurer"
-#: ../../Zotlabs/Module/Admin/Channels.php:151
+#: ../../Zotlabs/Module/Admin/Channels.php:173
msgid "Uncensor"
msgstr "Ikke sensurer lenger"
-#: ../../Zotlabs/Module/Admin/Channels.php:152
+#: ../../Zotlabs/Module/Admin/Channels.php:174
msgid "Allow Code"
msgstr "Tillat kode"
-#: ../../Zotlabs/Module/Admin/Channels.php:153
+#: ../../Zotlabs/Module/Admin/Channels.php:175
msgid "Disallow Code"
msgstr "Ikke tillat kode"
-#: ../../Zotlabs/Module/Admin/Channels.php:158
+#: ../../Zotlabs/Module/Admin/Channels.php:180
msgid "UID"
msgstr "UID"
-#: ../../Zotlabs/Module/Admin/Channels.php:162
+#: ../../Zotlabs/Module/Admin/Channels.php:184
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?"
@@ -11158,7 +10595,7 @@ msgstr ""
"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
+#: ../../Zotlabs/Module/Admin/Channels.php:185
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?"
@@ -11167,483 +10604,661 @@ msgstr ""
"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
+#: ../../Zotlabs/Module/Admin/Features.php:56
#, php-format
-msgid "Password changed for account %d."
+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/Addons.php:294
+#, php-format
+msgid "Plugin %s disabled."
+msgstr "Tilleggsfunksjonen %s er avskrudd."
+
+#: ../../Zotlabs/Module/Admin/Addons.php:299
+#, php-format
+msgid "Plugin %s enabled."
+msgstr "Tilleggsfunksjonen %s er påskrudd."
+
+#: ../../Zotlabs/Module/Admin/Addons.php:315
+#: ../../Zotlabs/Module/Admin/Themes.php:111
+msgid "Disable"
+msgstr "Skru av"
+
+#: ../../Zotlabs/Module/Admin/Addons.php:318
+#: ../../Zotlabs/Module/Admin/Themes.php:113
+msgid "Enable"
+msgstr "Skru på"
+
+#: ../../Zotlabs/Module/Admin/Addons.php:347
+#: ../../Zotlabs/Module/Admin/Addons.php:445 ../../Zotlabs/Widget/Admin.php:32
+msgid "Addons"
+msgstr "Tillegg"
+
+#: ../../Zotlabs/Module/Admin/Addons.php:348
+#: ../../Zotlabs/Module/Admin/Themes.php:140
+msgid "Toggle"
+msgstr "Skru av og på"
+
+#: ../../Zotlabs/Module/Admin/Addons.php:356
+#: ../../Zotlabs/Module/Admin/Themes.php:150
+msgid "Author: "
+msgstr "Forfatter: "
+
+#: ../../Zotlabs/Module/Admin/Addons.php:357
+#: ../../Zotlabs/Module/Admin/Themes.php:151
+msgid "Maintainer: "
+msgstr "Vedlikeholder: "
+
+#: ../../Zotlabs/Module/Admin/Addons.php:358
+msgid "Minimum project version: "
+msgstr "Minimum prosjektversjon: "
+
+#: ../../Zotlabs/Module/Admin/Addons.php:359
+msgid "Maximum project version: "
+msgstr "Maksimum prosjektversjon: "
+
+#: ../../Zotlabs/Module/Admin/Addons.php:360
+msgid "Minimum PHP version: "
+msgstr "Minimum PHP-versjon: "
+
+#: ../../Zotlabs/Module/Admin/Addons.php:361
+msgid "Compatible Server Roles: "
msgstr ""
-#: ../../Zotlabs/Module/Admin/Account_edit.php:46
-msgid "Account settings updated."
+#: ../../Zotlabs/Module/Admin/Addons.php:362
+msgid "Requires: "
+msgstr "Krever: "
+
+#: ../../Zotlabs/Module/Admin/Addons.php:363
+#: ../../Zotlabs/Module/Admin/Addons.php:450
+msgid "Disabled - version incompatibility"
+msgstr "Skrudd av - versjonsinkompatibilitet"
+
+#: ../../Zotlabs/Module/Admin/Addons.php:419
+msgid "Enter the public git repository URL of the addon repo."
msgstr ""
-#: ../../Zotlabs/Module/Admin/Account_edit.php:68
-msgid "Account Edit"
+#: ../../Zotlabs/Module/Admin/Addons.php:420
+msgid "Addon repo git URL"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Account_edit.php:69
-msgid "New Password"
+#: ../../Zotlabs/Module/Admin/Addons.php:421
+msgid "Custom repo name"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Account_edit.php:70
-msgid "New Password again"
+#: ../../Zotlabs/Module/Admin/Addons.php:421
+#, fuzzy
+msgid "(optional)"
+msgstr "Valgfritt"
+
+#: ../../Zotlabs/Module/Admin/Addons.php:422
+msgid "Download Addon Repo"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Account_edit.php:71
-msgid "Account language (for emails)"
+#: ../../Zotlabs/Module/Admin/Addons.php:429
+msgid "Install new repo"
+msgstr ""
+
+#: ../../Zotlabs/Module/Admin/Addons.php:453
+msgid "Manage Repos"
+msgstr ""
+
+#: ../../Zotlabs/Module/Admin/Addons.php:454
+msgid "Installed Addon Repositories"
+msgstr ""
+
+#: ../../Zotlabs/Module/Admin/Addons.php:455
+msgid "Install a New Addon Repository"
+msgstr ""
+
+#: ../../Zotlabs/Module/Admin/Addons.php:462
+msgid "Switch branch"
+msgstr ""
+
+#: ../../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
+#: ../../extend/addon/hzaddons/workflow/workflow.php:2668
+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/Profs.php:89
+#: ../../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/Profs.php:90
msgid "New Profile Field"
msgstr "Nytt profilfelt"
-#: ../../Zotlabs/Module/Admin/Profs.php:90
-#: ../../Zotlabs/Module/Admin/Profs.php:110
+#: ../../Zotlabs/Module/Admin/Profs.php:91
+#: ../../Zotlabs/Module/Admin/Profs.php:111
msgid "Field nickname"
msgstr "Feltets kallenavn"
-#: ../../Zotlabs/Module/Admin/Profs.php:90
-#: ../../Zotlabs/Module/Admin/Profs.php:110
+#: ../../Zotlabs/Module/Admin/Profs.php:91
+#: ../../Zotlabs/Module/Admin/Profs.php:111
msgid "System name of field"
msgstr "Systemnavnet til feltet"
-#: ../../Zotlabs/Module/Admin/Profs.php:91
-#: ../../Zotlabs/Module/Admin/Profs.php:111
+#: ../../Zotlabs/Module/Admin/Profs.php:92
+#: ../../Zotlabs/Module/Admin/Profs.php:112
msgid "Input type"
msgstr "Inndata-type"
-#: ../../Zotlabs/Module/Admin/Profs.php:92
-#: ../../Zotlabs/Module/Admin/Profs.php:112
+#: ../../Zotlabs/Module/Admin/Profs.php:93
+#: ../../Zotlabs/Module/Admin/Profs.php:113
msgid "Field Name"
msgstr "Feltnavn"
-#: ../../Zotlabs/Module/Admin/Profs.php:92
-#: ../../Zotlabs/Module/Admin/Profs.php:112
+#: ../../Zotlabs/Module/Admin/Profs.php:93
+#: ../../Zotlabs/Module/Admin/Profs.php:113
msgid "Label on profile pages"
msgstr "Merkelapp på profilsider"
-#: ../../Zotlabs/Module/Admin/Profs.php:93
-#: ../../Zotlabs/Module/Admin/Profs.php:113
+#: ../../Zotlabs/Module/Admin/Profs.php:94
+#: ../../Zotlabs/Module/Admin/Profs.php:114
msgid "Help text"
msgstr "Hjelpetekst"
-#: ../../Zotlabs/Module/Admin/Profs.php:93
-#: ../../Zotlabs/Module/Admin/Profs.php:113
+#: ../../Zotlabs/Module/Admin/Profs.php:94
+#: ../../Zotlabs/Module/Admin/Profs.php:114
msgid "Additional info (optional)"
msgstr "Tilleggsinformasjon (valgfritt)"
-#: ../../Zotlabs/Module/Admin/Profs.php:103
+#: ../../Zotlabs/Module/Admin/Profs.php:104
msgid "Field definition not found"
msgstr "Feltdefinisjonen ble ikke funnet"
-#: ../../Zotlabs/Module/Admin/Profs.php:109
+#: ../../Zotlabs/Module/Admin/Profs.php:110
msgid "Edit Profile Field"
msgstr "Endre profilfelt"
-#: ../../Zotlabs/Module/Admin/Profs.php:169
+#: ../../Zotlabs/Module/Admin/Profs.php:169 ../../Zotlabs/Widget/Admin.php:36
+msgid "Profile Fields"
+msgstr "Profilfelter"
+
+#: ../../Zotlabs/Module/Admin/Profs.php:170
msgid "Basic Profile Fields"
msgstr "Grunnleggende profilfelter"
-#: ../../Zotlabs/Module/Admin/Profs.php:170
+#: ../../Zotlabs/Module/Admin/Profs.php:171
msgid "Advanced Profile Fields"
msgstr "Utvidede profilfelter"
-#: ../../Zotlabs/Module/Admin/Profs.php:170
+#: ../../Zotlabs/Module/Admin/Profs.php:171
msgid "(In addition to basic fields)"
msgstr "(I tillegg til grunnleggende felt)"
-#: ../../Zotlabs/Module/Admin/Profs.php:172
+#: ../../Zotlabs/Module/Admin/Profs.php:173
msgid "All available fields"
msgstr "Alle tilgjengelige felt"
-#: ../../Zotlabs/Module/Admin/Profs.php:173
+#: ../../Zotlabs/Module/Admin/Profs.php:174
msgid "Custom Fields"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Profs.php:177
+#: ../../Zotlabs/Module/Admin/Profs.php:178
msgid "Create Custom Field"
msgstr "Legg til egendefinert felt"
-#: ../../Zotlabs/Module/Admin/Dbsync.php:19
-msgid "Update has been marked successful"
-msgstr "Oppdateringen har blitt merket som en suksess"
+#: ../../Zotlabs/Module/Admin/Themes.php:27
+msgid "Theme settings updated."
+msgstr "Temainnstillinger er oppdatert."
-#: ../../Zotlabs/Module/Admin/Dbsync.php:32
-#, php-format
-msgid "Verification of update %s failed. Check system logs."
-msgstr ""
+#: ../../Zotlabs/Module/Admin/Themes.php:62
+msgid "No themes found."
+msgstr "Ingen temaer er funnet."
-#: ../../Zotlabs/Module/Admin/Dbsync.php:35
-#: ../../Zotlabs/Module/Admin/Dbsync.php:62
-#, php-format
-msgid "Update %s was successfully applied."
-msgstr "Oppdatering %s ble gjennomført med suksess."
+#: ../../Zotlabs/Module/Admin/Themes.php:132
+msgid "Screenshot"
+msgstr "Skjermbilde"
-#: ../../Zotlabs/Module/Admin/Dbsync.php:39
-#, php-format
-msgid "Verifying update %s did not return a status. Unknown if it succeeded."
-msgstr ""
+#: ../../Zotlabs/Module/Admin/Themes.php:139
+#: ../../Zotlabs/Module/Admin/Themes.php:173 ../../Zotlabs/Widget/Admin.php:33
+msgid "Themes"
+msgstr "Utseende"
-#: ../../Zotlabs/Module/Admin/Dbsync.php:42
-#, php-format
-msgid "Update %s does not contain a verification function."
-msgstr ""
+#: ../../Zotlabs/Module/Admin/Themes.php:178
+msgid "[Experimental]"
+msgstr "[Eksperimentelt]"
-#: ../../Zotlabs/Module/Admin/Dbsync.php:46
-#: ../../Zotlabs/Module/Admin/Dbsync.php:69
-#, php-format
-msgid "Update function %s could not be found."
-msgstr "Oppdatering av funksjon %s kunne ikke finnes."
+#: ../../Zotlabs/Module/Admin/Themes.php:179
+msgid "[Unsupported]"
+msgstr "[Ingen støtte]"
-#: ../../Zotlabs/Module/Admin/Dbsync.php:59
-#, php-format
-msgid "Executing update procedure %s failed. Check system logs."
-msgstr ""
+#: ../../Zotlabs/Module/Admin/Logs.php:29
+msgid "Log settings updated."
+msgstr "Logginnstillinger er oppdatert."
-#: ../../Zotlabs/Module/Admin/Dbsync.php:66
-#, php-format
+#: ../../Zotlabs/Module/Admin/Logs.php:84 ../../Zotlabs/Widget/Admin.php:54
+#: ../../Zotlabs/Widget/Admin.php:64
+msgid "Logs"
+msgstr "Logger"
+
+#: ../../Zotlabs/Module/Admin/Logs.php:86
+msgid "Clear"
+msgstr "Tøm"
+
+#: ../../Zotlabs/Module/Admin/Logs.php:92
+msgid "Debugging"
+msgstr "Feilsøking"
+
+#: ../../Zotlabs/Module/Admin/Logs.php:93
+msgid "Log file"
+msgstr "Loggfil"
+
+#: ../../Zotlabs/Module/Admin/Logs.php:93
msgid ""
-"Update %s did not return a status. It cannot be determined if it was "
-"successful."
+"Must be writable by web server. Relative to your top-level webserver "
+"directory."
msgstr ""
-#: ../../Zotlabs/Module/Admin/Dbsync.php:87
-msgid "Failed Updates"
-msgstr "Mislykkede oppdateringer"
+#: ../../Zotlabs/Module/Admin/Logs.php:94
+msgid "Log level"
+msgstr "Loggnivå"
-#: ../../Zotlabs/Module/Admin/Dbsync.php:89
-msgid "Mark success (if update was manually applied)"
-msgstr "Marker suksess (hvis oppdateringen ble gjennomført manuelt)"
+#: ../../Zotlabs/Module/Attach_edit.php:118
+msgid "Can not copy folder into itself."
+msgstr ""
-#: ../../Zotlabs/Module/Admin/Dbsync.php:90
-msgid "Attempt to verify this update if a verification procedure exists"
+#: ../../Zotlabs/Module/Attach_edit.php:131
+#, php-format
+msgid "Can not move folder \"%s\" into itself."
msgstr ""
-#: ../../Zotlabs/Module/Admin/Dbsync.php:91
-msgid "Attempt to execute this update step automatically"
-msgstr "Prøv å gjennomføre dette oppdateringstrinnet automatisk"
+#: ../../Zotlabs/Module/Pin.php:36 ../../Zotlabs/Module/Item.php:477
+msgid "Unable to locate original post."
+msgstr "Ikke i stand til å finne opprinnelig innlegg."
-#: ../../Zotlabs/Module/Admin/Dbsync.php:96
-msgid "No failed updates."
-msgstr "Ingen mislykkede oppdateringer."
+#: ../../Zotlabs/Module/Subthread.php:112 ../../Zotlabs/Module/Like.php:456
+#: ../../extend/addon/hzaddons/diaspora/Receiver.php:1693
+msgid "status"
+msgstr "status"
-#: ../../Zotlabs/Module/Admin/Addons.php:293
+#: ../../Zotlabs/Module/Subthread.php:125
#, php-format
-msgid "Plugin %s disabled."
-msgstr "Tilleggsfunksjonen %s er avskrudd."
+msgid "%1$s is following %2$s's %3$s"
+msgstr "%1$s følger %2$s sin %3$s"
-#: ../../Zotlabs/Module/Admin/Addons.php:298
+#: ../../Zotlabs/Module/Subthread.php:127
#, php-format
-msgid "Plugin %s enabled."
-msgstr "Tilleggsfunksjonen %s er påskrudd."
+msgid "%1$s stopped following %2$s's %3$s"
+msgstr "%1$s stopped å følge %2$s sin %3$s"
-#: ../../Zotlabs/Module/Admin/Addons.php:357
-msgid "Minimum project version: "
-msgstr "Minimum prosjektversjon: "
+#: ../../Zotlabs/Module/Attach.php:68
+msgid "Item not available."
+msgstr "Elementet er ikke tilgjengelig."
-#: ../../Zotlabs/Module/Admin/Addons.php:358
-msgid "Maximum project version: "
-msgstr "Maksimum prosjektversjon: "
+#: ../../Zotlabs/Module/Removeme.php:35
+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."
-#: ../../Zotlabs/Module/Admin/Addons.php:359
-msgid "Minimum PHP version: "
-msgstr "Minimum PHP-versjon: "
+#: ../../Zotlabs/Module/Removeme.php:60 ../../Zotlabs/Module/Removeme.php:64
+#: ../../Zotlabs/Module/Settings/Channel.php:283
+msgid "Remove Channel"
+msgstr "Fjern kanal"
-#: ../../Zotlabs/Module/Admin/Addons.php:360
-msgid "Compatible Server Roles: "
+#: ../../Zotlabs/Module/Removeme.php:61
+msgid "This channel will be permanently removed. "
msgstr ""
-#: ../../Zotlabs/Module/Admin/Addons.php:361
-msgid "Requires: "
-msgstr "Krever: "
+#: ../../Zotlabs/Module/Removeme.php:61
+msgid "This action can not be undone!"
+msgstr ""
-#: ../../Zotlabs/Module/Admin/Addons.php:362
-#: ../../Zotlabs/Module/Admin/Addons.php:449
-msgid "Disabled - version incompatibility"
-msgstr "Skrudd av - versjonsinkompatibilitet"
+#: ../../Zotlabs/Module/Rmagic.php:46
+msgid "Authentication failed."
+msgstr "Autentisering mislyktes."
-#: ../../Zotlabs/Module/Admin/Addons.php:418
-msgid "Enter the public git repository URL of the addon repo."
-msgstr ""
+#: ../../Zotlabs/Module/Item.php:763
+msgid "Empty post discarded."
+msgstr "Tomt innlegg forkastet."
-#: ../../Zotlabs/Module/Admin/Addons.php:419
-msgid "Addon repo git URL"
-msgstr ""
+#: ../../Zotlabs/Module/Item.php:1207
+msgid "Duplicate post suppressed."
+msgstr "Duplikat av innlegg forhindret."
-#: ../../Zotlabs/Module/Admin/Addons.php:420
-msgid "Custom repo name"
+#: ../../Zotlabs/Module/Item.php:1350
+msgid "System error. Post not saved."
+msgstr "Systemfeil. Innlegg ble ikke lagret."
+
+#: ../../Zotlabs/Module/Item.php:1384
+msgid "Your comment is awaiting approval."
msgstr ""
-#: ../../Zotlabs/Module/Admin/Addons.php:420
-#, fuzzy
-msgid "(optional)"
-msgstr "Valgfritt"
+#: ../../Zotlabs/Module/Item.php:1520
+msgid "Unable to obtain post information from database."
+msgstr "Ikke i stand til å få tak i informasjon om innlegg fra databasen."
-#: ../../Zotlabs/Module/Admin/Addons.php:421
-msgid "Download Addon Repo"
+#: ../../Zotlabs/Module/Item.php:1527
+#, 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:1534
+#, 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/Display.php:340
+msgid "Article"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Addons.php:428
-msgid "Install new repo"
+#: ../../Zotlabs/Module/Display.php:384
+msgid "Item has been removed."
msgstr ""
-#: ../../Zotlabs/Module/Admin/Addons.php:429 ../../Zotlabs/Lib/Apps.php:546
-msgid "Install"
-msgstr "Installer"
+#: ../../Zotlabs/Module/Mitem.php:63
+msgid "Unable to create element."
+msgstr "Klarer ikke å lage element."
-#: ../../Zotlabs/Module/Admin/Addons.php:452
-msgid "Manage Repos"
-msgstr ""
+#: ../../Zotlabs/Module/Mitem.php:87
+msgid "Unable to update menu element."
+msgstr "Ikke i stand til å oppdatere menyelement."
-#: ../../Zotlabs/Module/Admin/Addons.php:453
-msgid "Installed Addon Repositories"
-msgstr ""
+#: ../../Zotlabs/Module/Mitem.php:103
+msgid "Unable to add menu element."
+msgstr "Ikke i stand til å legge til menyelement."
-#: ../../Zotlabs/Module/Admin/Addons.php:454
-msgid "Install a New Addon Repository"
-msgstr ""
+#: ../../Zotlabs/Module/Mitem.php:167 ../../Zotlabs/Module/Mitem.php:246
+msgid "Menu Item Permissions"
+msgstr "Menyelement Tillatelser"
-#: ../../Zotlabs/Module/Admin/Addons.php:461
-msgid "Switch branch"
-msgstr ""
+#: ../../Zotlabs/Module/Mitem.php:168 ../../Zotlabs/Module/Mitem.php:247
+msgid "(click to open/close)"
+msgstr "(klikk for å åpne/lukke)"
-#: ../../Zotlabs/Module/Apps.php:51
-msgid "Installed Apps"
-msgstr "Installerte apper"
+#: ../../Zotlabs/Module/Mitem.php:174 ../../Zotlabs/Module/Mitem.php:191
+msgid "Link Name"
+msgstr "Lenkenavn"
-#: ../../Zotlabs/Module/Apps.php:54
-msgid "Manage Apps"
-msgstr "Behandle apper"
+#: ../../Zotlabs/Module/Mitem.php:175 ../../Zotlabs/Module/Mitem.php:255
+msgid "Link or Submenu Target"
+msgstr "Lenke- eller undermeny-mål"
-#: ../../Zotlabs/Module/Apps.php:55
-msgid "Create Custom App"
-msgstr ""
+#: ../../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/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"
+#: ../../Zotlabs/Module/Mitem.php:176 ../../Zotlabs/Module/Mitem.php:256
+msgid "Use magic-auth if available"
+msgstr "Bruk magic-autent hvis mulig"
-#: ../../Zotlabs/Module/Removeme.php:35
-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."
+#: ../../Zotlabs/Module/Mitem.php:177 ../../Zotlabs/Module/Mitem.php:257
+msgid "Open link in new window"
+msgstr "Åpne lenke i nytt vindu"
-#: ../../Zotlabs/Module/Removeme.php:60 ../../Zotlabs/Module/Removeme.php:64
-#: ../../Zotlabs/Module/Settings/Channel.php:282
-msgid "Remove Channel"
-msgstr "Fjern kanal"
+#: ../../Zotlabs/Module/Mitem.php:178 ../../Zotlabs/Module/Mitem.php:258
+msgid "Order in list"
+msgstr "Ordne i liste"
-#: ../../Zotlabs/Module/Removeme.php:61
-#: ../../Zotlabs/Module/Removeaccount.php:58
-#: ../../Zotlabs/Module/Changeaddr.php:78
-msgid "WARNING: "
-msgstr "ADVARSEL: "
+#: ../../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/Removeme.php:61
-msgid "This channel will be permanently removed. "
-msgstr ""
+#: ../../Zotlabs/Module/Mitem.php:179
+msgid "Submit and finish"
+msgstr "Send inn og avslutt"
-#: ../../Zotlabs/Module/Removeme.php:61
-msgid "This action can not be undone!"
-msgstr ""
+#: ../../Zotlabs/Module/Mitem.php:180
+msgid "Submit and continue"
+msgstr "Send inn og fortsett"
-#: ../../Zotlabs/Module/Removeme.php:62
-#: ../../Zotlabs/Module/Removeaccount.php:59
-#: ../../Zotlabs/Module/Changeaddr.php:79
-msgid "Please enter your password for verification:"
-msgstr "Vennligst skriv ditt passord for å få bekreftelse:"
+#: ../../Zotlabs/Module/Mitem.php:189
+msgid "Menu:"
+msgstr "Meny:"
-#: ../../Zotlabs/Module/Regate.php:84
-msgid "Email resent"
-msgstr ""
+#: ../../Zotlabs/Module/Mitem.php:192
+msgid "Link Target"
+msgstr "Lenkemål"
-#: ../../Zotlabs/Module/Regate.php:84
-msgid "Email resend failed"
-msgstr ""
+#: ../../Zotlabs/Module/Mitem.php:195
+msgid "Edit menu"
+msgstr "Endre meny"
-#: ../../Zotlabs/Module/Regate.php:109
-msgid "Verification successful"
-msgstr ""
+#: ../../Zotlabs/Module/Mitem.php:198
+msgid "Edit element"
+msgstr "Endre element"
-#: ../../Zotlabs/Module/Regate.php:153
-msgid "Account successfull created"
-msgstr ""
+#: ../../Zotlabs/Module/Mitem.php:199
+msgid "Drop element"
+msgstr "Slett element"
-#: ../../Zotlabs/Module/Regate.php:211
-msgid "Channel successfull created"
-msgstr ""
+#: ../../Zotlabs/Module/Mitem.php:200
+msgid "New element"
+msgstr "Nytt element"
-#: ../../Zotlabs/Module/Regate.php:217
-msgid "Automatic channel creation failed. Please create a channel."
-msgstr ""
+#: ../../Zotlabs/Module/Mitem.php:201
+msgid "Edit this menu container"
+msgstr "Endre denne menybeholderen"
-#: ../../Zotlabs/Module/Regate.php:229
-msgid "Account creation error"
-msgstr ""
+#: ../../Zotlabs/Module/Mitem.php:202
+msgid "Add menu element"
+msgstr "Legg til menyelement"
-#: ../../Zotlabs/Module/Regate.php:241
-msgid "Verify failed"
-msgstr ""
+#: ../../Zotlabs/Module/Mitem.php:203
+msgid "Delete this menu item"
+msgstr "Slett dette menyelementet"
-#: ../../Zotlabs/Module/Regate.php:246
-msgid "Token verification failed"
-msgstr ""
+#: ../../Zotlabs/Module/Mitem.php:204
+msgid "Edit this menu item"
+msgstr "Endre dette menyelementet"
-#: ../../Zotlabs/Module/Regate.php:251
-msgid "Request not inside time frame"
-msgstr ""
+#: ../../Zotlabs/Module/Mitem.php:222
+msgid "Menu item not found."
+msgstr "Menyelement ble ikke funnet."
-#: ../../Zotlabs/Module/Regate.php:257 ../../Zotlabs/Module/Regate.php:287
-msgid "Identity unknown"
-msgstr ""
+#: ../../Zotlabs/Module/Mitem.php:235
+msgid "Menu item deleted."
+msgstr "Menyelement slettet."
-#: ../../Zotlabs/Module/Regate.php:263
-msgid "dId2 mistaken"
-msgstr ""
+#: ../../Zotlabs/Module/Mitem.php:237
+msgid "Menu item could not be deleted."
+msgstr "Menyelement kunne ikke bli slettet."
-#: ../../Zotlabs/Module/Regate.php:291
-msgid "Your Registration ID"
-msgstr ""
+#: ../../Zotlabs/Module/Mitem.php:244
+msgid "Edit Menu Element"
+msgstr "Endre menyelement"
-#: ../../Zotlabs/Module/Regate.php:304 ../../Zotlabs/Module/Regate.php:396
-#: ../../Zotlabs/Module/Regate.php:428
-msgid "Registration verification"
-msgstr ""
+#: ../../Zotlabs/Module/Mitem.php:254
+msgid "Link text"
+msgstr "Lenketekst"
-#: ../../Zotlabs/Module/Regate.php:311 ../../Zotlabs/Module/Regate.php:433
-msgid "Hold on, you can start verification in"
+#: ../../Zotlabs/Module/Email_validation.php:37
+msgid "Email Verification Required"
msgstr ""
-#: ../../Zotlabs/Module/Regate.php:312
-msgid "Please remember your verification token for ID"
+#: ../../Zotlabs/Module/Email_validation.php:38
+#, 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 ""
+"En verifikasjonskode ble sendt til epostadressen din [%s]. Skriv inn koden "
+"du mottok her for å fullføre kontoverifikasjonen. Det kan ta noen minutter "
+"før du mottar koden. Sjekk også at eposten ikke har havnet i mappen for "
+"søppelpost om du ikke ser den etter en stund."
-#: ../../Zotlabs/Module/Regate.php:314
-msgid "Token validity"
+#: ../../Zotlabs/Module/Email_validation.php:39
+msgid "Resend Email"
msgstr ""
-#: ../../Zotlabs/Module/Regate.php:350
-msgid "Resend email"
+#: ../../Zotlabs/Module/Email_validation.php:42
+msgid "Validation token"
msgstr ""
-#: ../../Zotlabs/Module/Regate.php:355
-msgid "Registration status"
+#: ../../Zotlabs/Module/Uexport.php:108
+msgid "No content available for year"
msgstr ""
-#: ../../Zotlabs/Module/Regate.php:358
-msgid "Verification successful!"
+#: ../../Zotlabs/Module/Uexport.php:171
+msgid "Export Channel"
+msgstr "Eksporter kanal"
+
+#: ../../Zotlabs/Module/Uexport.php:173
+msgid "Export channel"
+msgstr "Eksporter kanal"
+
+#: ../../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/Regate.php:359
-msgid "Your login ID is"
+#: ../../Zotlabs/Module/Uexport.php:177
+msgid "Export content"
msgstr ""
-#: ../../Zotlabs/Module/Regate.php:360
+#: ../../Zotlabs/Module/Uexport.php:178
msgid ""
-"After your account has been approved by our administrator you will be able "
-"to login with your login ID and your provided password."
+"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 ""
+"Dette vil eksportere dine innlegg, direktemeldinger, artikler og kort, en "
+"fil for hver måned, pakket i en zip fil for hvert år. Måneder uten innhold "
+"blir ignorert."
-#: ../../Zotlabs/Module/Regate.php:372
-msgid "Registration request revoked"
+#: ../../Zotlabs/Module/Uexport.php:180
+msgid "Export wikis"
msgstr ""
-#: ../../Zotlabs/Module/Regate.php:373
-msgid "Sorry for any inconvience. Thank you for your response."
+#: ../../Zotlabs/Module/Uexport.php:181
+msgid "This will export your wikis and wiki pages."
msgstr ""
-#: ../../Zotlabs/Module/Regate.php:397
-msgid "Please enter your verification token for ID"
+#: ../../Zotlabs/Module/Uexport.php:183
+msgid "Export webpages"
msgstr ""
-#: ../../Zotlabs/Module/Regate.php:398 ../../Zotlabs/Module/Regate.php:425
-msgid "Please check your email!"
+#: ../../Zotlabs/Module/Uexport.php:184
+msgid "This will export your webpages and menus."
msgstr ""
-#: ../../Zotlabs/Module/Regate.php:408
-msgid "Verification token"
+#: ../../Zotlabs/Module/Uexport.php:186
+msgid "Export channel calendar"
msgstr ""
-#: ../../Zotlabs/Module/Regate.php:419
-msgid "ID expired"
+#: ../../Zotlabs/Module/Uexport.php:187
+msgid ""
+"This will export your channel calendar events and associated items. CalDAV "
+"calendars are not included."
msgstr ""
-#: ../../Zotlabs/Module/Regate.php:434
-msgid "You will require the verification token for ID"
+#: ../../Zotlabs/Module/Uexport.php:189
+msgid "Export chatrooms"
msgstr ""
-#: ../../Zotlabs/Module/Regate.php:443
-msgid "Unknown or expired ID"
+#: ../../Zotlabs/Module/Uexport.php:190
+msgid "This will export your chatrooms. Chat history is dismissed."
msgstr ""
-#: ../../Zotlabs/Module/Regate.php:454
-msgid "dId2 malformed"
+#: ../../Zotlabs/Module/Uexport.php:192
+#, php-format
+msgid ""
+"This export can be imported or restored by visiting <a href=\"%1$s\">%2$s</"
+"a> on any site containing your channel."
msgstr ""
-#: ../../Zotlabs/Module/Manage.php:130 ../../Zotlabs/Module/New_channel.php:147
-#, php-format
-msgid "You have created %1$.0f of %2$.0f allowed channels."
-msgstr "Du har laget %1$.0f av %2$.0f tillatte kanaler."
+#: ../../Zotlabs/Module/Notifications.php:106
+#: ../../Zotlabs/Module/Notify.php:85
+msgid "No more system notifications."
+msgstr "Ingen flere systemvarsler."
-#: ../../Zotlabs/Module/Manage.php:137
-msgid "Create a new channel"
-msgstr "Lag en ny kanal"
+#: ../../Zotlabs/Module/Notifications.php:110
+#: ../../Zotlabs/Module/Notify.php:89
+msgid "System Notifications"
+msgstr "Systemvarsler"
-#: ../../Zotlabs/Module/Manage.php:163
-msgid "Current Channel"
-msgstr "Gjeldende kanal"
+#: ../../Zotlabs/Module/Notifications.php:111
+msgid "Mark all seen"
+msgstr "Merk alle som sett"
-#: ../../Zotlabs/Module/Manage.php:165
-msgid "Switch to one of your channels by selecting it."
-msgstr "Bytt til en av dine kanaler ved å velge den."
+#: ../../Zotlabs/Module/Sharedwithme.php:106
+msgid "Files: shared with me"
+msgstr "Filer: delt med meg"
-#: ../../Zotlabs/Module/Manage.php:166
-msgid "Default Channel"
-msgstr "Standardkanal"
+#: ../../Zotlabs/Module/Sharedwithme.php:108
+msgid "NEW"
+msgstr "NY"
-#: ../../Zotlabs/Module/Manage.php:167
-msgid "Make Default"
-msgstr "Gjør til standard"
+#: ../../Zotlabs/Module/Sharedwithme.php:111
+msgid "Remove all files"
+msgstr "Fjern alle filer"
-#: ../../Zotlabs/Module/Manage.php:170
+#: ../../Zotlabs/Module/Sharedwithme.php:112
+msgid "Remove this file"
+msgstr "Fjern denne filen"
+
+#: ../../Zotlabs/Module/Tokens.php:94
#, php-format
-msgid "%d new introductions"
-msgstr "%d nye introduksjoner"
+msgid "This channel is limited to %d tokens"
+msgstr ""
-#: ../../Zotlabs/Module/Manage.php:172
-msgid "Delegated Channel"
-msgstr "Delegert kanal"
+#: ../../Zotlabs/Module/Tokens.php:100
+msgid "Name and Password are required."
+msgstr ""
-#: ../../Zotlabs/Module/Pdledit_gui.php:119
-#, fuzzy
-msgid "Layout not found"
-msgstr "Layouten ble ikke funnet."
+#: ../../Zotlabs/Module/Tokens.php:215
+msgid "Token saved."
+msgstr ""
-#: ../../Zotlabs/Module/Pdledit_gui.php:127
-msgid "This template does not support pdledi_gui (no content regions defined)"
+#: ../../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/Pdledit_gui.php:403
-msgid "Main page content"
+#: ../../Zotlabs/Module/Tokens.php:274
+msgid "Please select a role for this guest!"
msgstr ""
-#: ../../Zotlabs/Module/Pdledit_gui.php:404
-msgid "The main page content can not be edited!"
+#: ../../Zotlabs/Module/Tokens.php:287
+msgid "Select a role for this guest"
msgstr ""
-#: ../../Zotlabs/Module/Chanview.php:132
-msgid "toggle full screen mode"
+#: ../../Zotlabs/Module/Tokens.php:291
+msgid "Login Name"
msgstr ""
-#: ../../Zotlabs/Module/Chatsvc.php:131
-msgid "Away"
-msgstr "Borte"
+#: ../../Zotlabs/Module/Tokens.php:292
+msgid "Login Password"
+msgstr ""
-#: ../../Zotlabs/Module/Chatsvc.php:136
-msgid "Online"
-msgstr "Online"
+#: ../../Zotlabs/Module/Tokens.php:293
+msgid "Expires (yyyy-mm-dd)"
+msgstr ""
#: ../../Zotlabs/Module/Permcats.php:59
msgid "Contact role deleted."
@@ -11677,10 +11292,6 @@ msgstr ""
msgid "Automatically assign this role to new contacts"
msgstr ""
-#: ../../Zotlabs/Module/Permcats.php:248 ../../Zotlabs/Lib/Apps.php:379
-msgid "Contact Roles"
-msgstr ""
-
#: ../../Zotlabs/Module/Permcats.php:249
msgid "Role name"
msgstr ""
@@ -11693,11 +11304,6 @@ msgstr ""
msgid "Deleting"
msgstr ""
-#: ../../Zotlabs/Module/Permcats.php:253 ../../Zotlabs/Module/Defperms.php:261
-#: ../../Zotlabs/Module/Connedit.php:713
-msgid "inherited"
-msgstr "arvet"
-
#: ../../Zotlabs/Module/Permcats.php:255
msgid "Role Permissions"
msgstr ""
@@ -11708,4261 +11314,4557 @@ msgid ""
"role</a>, which have higher priority than contact role settings."
msgstr ""
-#: ../../Zotlabs/Module/Email_resend.php:12
-#: ../../Zotlabs/Module/Email_validation.php:24
-msgid "Token verification failed."
-msgstr ""
+#: ../../Zotlabs/Module/Settings/Channel.php:106
+#: ../../Zotlabs/Module/Settings/Channel.php:218
+msgid "Please select a channel role"
+msgstr "Velg en kanalrolle"
-#: ../../Zotlabs/Module/Email_resend.php:30
-msgid "Email verification resent"
-msgstr ""
+#: ../../Zotlabs/Module/Settings/Channel.php:195
+msgid "Your channel address is"
+msgstr "Din kanaladresse er"
-#: ../../Zotlabs/Module/Email_resend.php:33
-msgid "Unable to resend email verification message."
-msgstr ""
+#: ../../Zotlabs/Module/Settings/Channel.php:198
+msgid "Your files/photos are accessible via WebDAV at"
+msgstr "Dine filer og foto er tilgjengelig via WebDAV på"
-#: ../../Zotlabs/Module/Cal.php:62
-msgid "Permissions denied."
-msgstr "Tillatelse avvist."
+#: ../../Zotlabs/Module/Settings/Channel.php:229
+msgid "Channel Settings"
+msgstr "Kanalinnstillinger"
-#: ../../Zotlabs/Module/Viewsrc.php:43
-msgid "item"
-msgstr ""
+#: ../../Zotlabs/Module/Settings/Channel.php:236
+msgid "Basic Settings"
+msgstr "Grunninnstillinger"
-#: ../../Zotlabs/Module/Apporder.php:47
-msgid "Change Order of Pinned Navbar Apps"
-msgstr ""
+#: ../../Zotlabs/Module/Settings/Channel.php:237
+msgid "Channel timezone:"
+msgstr "Tidssone for kanalen:"
-#: ../../Zotlabs/Module/Apporder.php:47
-msgid "Change Order of App Tray Apps"
-msgstr ""
+#: ../../Zotlabs/Module/Settings/Channel.php:238
+msgid "Default post location:"
+msgstr "Standard plassering for innlegg:"
-#: ../../Zotlabs/Module/Apporder.php:48
-msgid ""
-"Use arrows to move the corresponding app left (top) or right (bottom) in the "
-"navbar"
+#: ../../Zotlabs/Module/Settings/Channel.php:238
+msgid "Geographical location to display on your posts"
+msgstr "Geografisk plassering som vises på dine innlegg"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:239
+msgid "Use browser location"
+msgstr "Bruk nettleserplassering"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:240
+msgid "Adult content"
+msgstr "Voksent innhold"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:240
+msgid "This channel frequently or regularly publishes adult content"
msgstr ""
+"Denne kanalen vil ofte, eller regelmessig poste innlegg med voksent innhold"
-#: ../../Zotlabs/Module/Apporder.php:48
-msgid "Use arrows to move the corresponding app up or down in the app tray"
+#: ../../Zotlabs/Module/Settings/Channel.php:241
+msgid "Maximum Friend Requests/Day:"
+msgstr "Maksimalt antall venneforespørsler per dag:"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:241
+msgid "May reduce spam activity"
+msgstr "Kan redusere søppelpostaktivitet"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:243
+msgid "By default post a status message when:"
+msgstr "Legg inn en statusmelding når du:"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:244
+msgid "accepting a friend request"
+msgstr "aksepterer en venneforespørsel"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:245
+msgid "joining a forum/community"
+msgstr "blir med i et forum/miljø"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:246
+msgid "making an <em>interesting</em> profile change"
+msgstr "gjør en <em>interessant</em> profilendring"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:247
+msgid "Send a notification email when:"
+msgstr "Send en varsel-e-post når:"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:248
+msgid "You receive a connection request"
+msgstr "Du har mottatt en forespørsel om forbindelse"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:249
+msgid "Your connections are confirmed"
+msgstr "Dine forbindelser er bekreftet"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:250
+msgid "Someone writes on your profile wall"
+msgstr "Noen skriver på din profilvegg"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:251
+msgid "Someone writes a followup comment"
+msgstr "Noen skriver en oppfølgende kommentar"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:252
+msgid "You receive a private message"
+msgstr "Du mottar en privat melding"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:253
+msgid "You receive a friend suggestion"
+msgstr "Du mottok et venneforslag"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:254
+msgid "You are tagged in a post"
+msgstr "Du merkes i et innlegg"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:255
+msgid "You are poked/prodded/etc. in a post"
+msgstr "Du ble prikket/oppildnet/og så vider i et innlegg"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:256
+msgid "Someone likes your post/comment"
msgstr ""
-#: ../../Zotlabs/Module/Oexchange.php:27
-msgid "Unable to find your hub."
-msgstr "Ikke i stand til å finne hubben din."
+#: ../../Zotlabs/Module/Settings/Channel.php:257
+msgid "Show visual notifications including:"
+msgstr "Vis visuelle varslinger om:"
-#: ../../Zotlabs/Module/Oexchange.php:41
-msgid "Post successful."
-msgstr "Innlegg vellykket."
+#: ../../Zotlabs/Module/Settings/Channel.php:258
+msgid "Unseen stream activity"
+msgstr "Ny aktivitet i nettverksstrømmen"
-#: ../../Zotlabs/Module/Moderate.php:70
-#, fuzzy
-#| msgid "Account approved."
-msgid "Item approved"
-msgstr "Konto godkjent."
+#: ../../Zotlabs/Module/Settings/Channel.php:259
+msgid "Unseen channel activity"
+msgstr "Ny kanalaktivitet"
-#: ../../Zotlabs/Module/Removeaccount.php:35
+#: ../../Zotlabs/Module/Settings/Channel.php:260
+msgid "Unseen private messages"
+msgstr "Nye private meldinger"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:260
+#: ../../Zotlabs/Module/Settings/Channel.php:265
+#: ../../Zotlabs/Module/Settings/Channel.php:266
+#: ../../Zotlabs/Module/Settings/Channel.php:267
+msgid "Recommended"
+msgstr "Anbefalt"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:261
+msgid "Upcoming events"
+msgstr "Kommende hendelser"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:262
+msgid "Events today"
+msgstr "Hendelser idag"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:263
+msgid "Upcoming birthdays"
+msgstr "Kommende fødselsdager"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:263
+msgid "Not available in all themes"
+msgstr "Ikke tilgjengelig i alle temaer"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:264
+msgid "System (personal) notifications"
+msgstr "System (personlige) varslinger"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:265
+msgid "System info messages"
+msgstr "System infomeldinger"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:266
+msgid "System critical alerts"
+msgstr "System kritiske varsel"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:267
+msgid "New connections"
+msgstr "Nye forbindelser"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:268
+msgid "System Registrations"
+msgstr "Systemregistreringer"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:269
+msgid "Unseen shared files"
+msgstr "Nye delte filer"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:270
+msgid "Unseen public stream activity"
+msgstr "Ny aktivitet i den offentlige strømmen"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:271
+msgid "Unseen likes and dislikes"
+msgstr "Nye liker/ikke liker"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:272
+msgid "Unseen forum posts"
+msgstr "Ny forumpost"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:273
+msgid "Email notification hub (hostname)"
+msgstr "Hub for epostvarsler (tjenernavn)"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:273
+#, php-format
msgid ""
-"Account removals are not allowed within 48 hours of changing the account "
-"password."
+"If your channel is mirrored to multiple hubs, set this to your preferred "
+"location. This will prevent duplicate email notifications. Example: %s"
msgstr ""
-"Sletting av kontoer er ikke tillatt innen 48 timer etter endring av "
-"kontopassordet."
+"Hvis kanalen din er klonet til flere tjenere kan du sette dette til den du vil"
+" skal sende deg epostvarsler. Dette vil forhindre duplikate epostvarsler. Ekse"
+"mpel: %s"
-#: ../../Zotlabs/Module/Removeaccount.php:57
-msgid "Remove This Account"
-msgstr "Slett denne kontoen"
+#: ../../Zotlabs/Module/Settings/Channel.php:274
+msgid "Show new wall posts, private messages and connections under Notices"
+msgstr "Vis nye veggposter, private meldinger og forbindelser under varsler"
-#: ../../Zotlabs/Module/Removeaccount.php:58
+#: ../../Zotlabs/Module/Settings/Channel.php:275
+msgid "Mark all notices of the thread read if a notice is clicked"
+msgstr "Merk alle varsler for en tråd som lest når du klikker på ett varsel"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:275
+msgid "If no, only the clicked notice will be marked read"
+msgstr ""
+"Om du velger \"Nei\", blir kun det varslet du klikker på merket som lest"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:276
msgid ""
-"This account and all its channels will be completely removed from the "
-"network. "
+"Desktop notifications are unavailable because the required browser "
+"permission has not been granted"
msgstr ""
-"Denne kontoen og alle dens kanaler vil bli fullstendig fjernet fra "
-"nettverket. "
+"Skriverbordsvarsler er ikke tilgjengelig fordi nettstedet ikke har de nødvendi"
+"ge nettlesertillatelsene"
-#: ../../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/Settings/Channel.php:277
+msgid "Grant permission"
+msgstr "Gi tilgang"
-#: ../../Zotlabs/Module/Removeaccount.php:61
-#: ../../Zotlabs/Module/Settings/Account.php:111
-msgid "Remove Account"
-msgstr "Slett konto"
+#: ../../Zotlabs/Module/Settings/Channel.php:278
+msgid "Notify me of events this many days in advance"
+msgstr "Varsle meg om hendelser dette antall dager på forhånd"
-#: ../../Zotlabs/Module/Lang.php:20
-msgid "Language App"
-msgstr ""
+#: ../../Zotlabs/Module/Settings/Channel.php:278
+msgid "Must be greater than 0"
+msgstr "Må være større enn 0"
-#: ../../Zotlabs/Module/Uexport.php:108
-msgid "No content available for year"
+#: ../../Zotlabs/Module/Settings/Channel.php:281
+msgid "Default photo upload folder"
+msgstr "Standard mappe for opplasting av bilder"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:281
+#: ../../Zotlabs/Module/Settings/Channel.php:282
+msgid "%Y - current year, %m - current month"
+msgstr "%Y - nåværende år, %m - nåværende måned"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:282
+msgid "Default file upload folder"
+msgstr "Standard mappe for opplasting av filer"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:284
+msgid "Remove this channel."
+msgstr "Fjern denne kanalen."
+
+#: ../../Zotlabs/Module/Settings/Channel.php:285
+msgid "Expire other channel content after this many days"
+msgstr "Annet kanal innhold utløper etter så mange dager"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:285
+msgid "0 or blank to use the website limit."
+msgstr "0 eller la være tomt for å bruke grensen til nettstedet."
+
+#: ../../Zotlabs/Module/Settings/Channel.php:285
+#, php-format
+msgid "This website expires after %d days."
msgstr ""
-#: ../../Zotlabs/Module/Uexport.php:171
-msgid "Export Channel"
-msgstr "Eksporter kanal"
+#: ../../Zotlabs/Module/Settings/Channel.php:285
+msgid "This website does not expire imported content."
+msgstr "Dette nettstedet sletter ikke importert innhold."
-#: ../../Zotlabs/Module/Uexport.php:173
-msgid "Export channel"
-msgstr "Eksporter kanal"
+#: ../../Zotlabs/Module/Settings/Channel.php:285
+msgid "The website limit takes precedence if lower than your limit."
+msgstr "Nettstedets grense vil gjelde dersom den er lavere enn din grense."
-#: ../../Zotlabs/Module/Uexport.php:174
+#: ../../Zotlabs/Module/Settings/Channel.php:286
+#: ../../Zotlabs/Module/Settings/Channel.php:287
msgid ""
-"This will export your identity and social graph into a file which can be "
-"used to import your channel to a new hub."
+"Words one per line or #tags, $categories, /patterns/, lang=xx, lang!=xx - "
+"leave blank to import all posts"
msgstr ""
+"Ett ord per linje eller #emneknagger, $kategorier, /mønster/, lang=xx, lang!"
+"=xx - la være tomt for å importere alle innlegg"
-#: ../../Zotlabs/Module/Uexport.php:177
-msgid "Export content"
-msgstr ""
+#: ../../Zotlabs/Module/Settings/Featured.php:25
+msgid "No feature settings configured"
+msgstr "Ingen funksjonsinnstillinger er konfigurert"
-#: ../../Zotlabs/Module/Uexport.php:178
-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."
+#: ../../Zotlabs/Module/Settings/Featured.php:34
+msgid "Addon Settings"
+msgstr "Instillinger for tillegg"
+
+#: ../../Zotlabs/Module/Settings/Featured.php:35
+msgid "Please save/submit changes to any panel before opening another."
+msgstr "Husk å lagre endringene i ett panel før du åpner andre."
+
+#: ../../Zotlabs/Module/Settings/Editor.php:40
+msgid "Editor Settings"
+msgstr "Instillinger for redigering"
+
+#: ../../Zotlabs/Module/Settings/Photos.php:40
+msgid "Photos Settings"
msgstr ""
-"Dette vil eksportere dine innlegg, direktemeldinger, artikler og kort, en "
-"fil for hver måned, pakket i en zip fil for hvert år. Måneder uten innhold "
-"blir ignorert."
-#: ../../Zotlabs/Module/Uexport.php:180
-msgid "Export wikis"
+#: ../../Zotlabs/Module/Settings/Profiles.php:41
+msgid "Default profile for new contacts"
msgstr ""
-#: ../../Zotlabs/Module/Uexport.php:181
-msgid "This will export your wikis and wiki pages."
+#: ../../Zotlabs/Module/Settings/Profiles.php:49
+msgid "Profiles Settings"
msgstr ""
-#: ../../Zotlabs/Module/Uexport.php:183
-msgid "Export webpages"
+#: ../../Zotlabs/Module/Settings/Network.php:42
+#: ../../Zotlabs/Module/Settings/Channel_home.php:46
+msgid "Max height of content (in pixels)"
+msgstr "Maks høyde for innhold (i piksler)"
+
+#: ../../Zotlabs/Module/Settings/Network.php:44
+#: ../../Zotlabs/Module/Settings/Channel_home.php:48
+msgid "Click to expand content exceeding this height"
+msgstr "Klikk for å vise hele innlegg som overskrider denne grensen"
+
+#: ../../Zotlabs/Module/Settings/Network.php:59
+msgid "Stream Settings"
+msgstr "Instillinger for tidslinjen"
+
+#: ../../Zotlabs/Module/Settings/Directory.php:40
+msgid "Directory Settings"
msgstr ""
-#: ../../Zotlabs/Module/Uexport.php:184
-msgid "This will export your webpages and menus."
+#: ../../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"
+
+#: ../../Zotlabs/Module/Settings/Channel_home.php:88
+msgid "Channel Home Settings"
msgstr ""
-#: ../../Zotlabs/Module/Uexport.php:186
-msgid "Export channel calendar"
+#: ../../Zotlabs/Module/Settings/Calendar.php:40
+msgid "Calendar Settings"
msgstr ""
-#: ../../Zotlabs/Module/Uexport.php:187
-msgid ""
-"This will export your channel calendar events and associated items. CalDAV "
-"calendars are not included."
+#: ../../Zotlabs/Module/Settings/Conversation.php:42
+msgid "Conversation Settings"
msgstr ""
-#: ../../Zotlabs/Module/Uexport.php:189
-msgid "Export chatrooms"
+#: ../../Zotlabs/Module/Settings/Features.php:45
+msgid "Additional Features"
+msgstr "Ekstra funksjoner"
+
+#: ../../Zotlabs/Module/Settings/Connections.php:40
+msgid "Connections Settings"
msgstr ""
-#: ../../Zotlabs/Module/Uexport.php:190
-msgid "This will export your chatrooms. Chat history is dismissed."
+#: ../../Zotlabs/Module/Settings/Multifactor.php:23
+#, fuzzy
+#| msgid "Name is required"
+msgid "Password is required"
+msgstr "Navn er påkrevd"
+
+#: ../../Zotlabs/Module/Settings/Multifactor.php:29
+msgid "The provided password is not correct"
msgstr ""
-#: ../../Zotlabs/Module/Uexport.php:192
-#, php-format
+#: ../../Zotlabs/Module/Settings/Multifactor.php:68
+msgid "Account Multi-Factor Authentication"
+msgstr "Tofaktorautentisering"
+
+#: ../../Zotlabs/Module/Settings/Multifactor.php:69
msgid ""
-"This export can be imported or restored by visiting <a href=\"%1$s\">%2$s</"
-"a> on any site containing your channel."
+"This is your generated secret. It may be used in some cases if the QR image "
+"cannot be read. Please store it in a safe place."
msgstr ""
+"Dette er en generert sikkerhetskode. Den kan være nyttig i enkelte tilfeller "
+"hvor QR koden ikke kan leses. Lagre den et sikkert sted."
-#: ../../Zotlabs/Module/Display.php:341
-msgid "Article"
+#: ../../Zotlabs/Module/Settings/Multifactor.php:70
+msgid "Please enter the code from your authenticator app"
+msgstr "Skriv inn koden fra din autentiseringsapp"
+
+#: ../../Zotlabs/Module/Settings/Multifactor.php:71
+msgid "You will only be able to enable MFA if the test passes"
msgstr ""
+"Flerfaktorautentisering vil kun bli slått på dersom denne testen lykkes"
-#: ../../Zotlabs/Module/Display.php:385
-msgid "Item has been removed."
+#: ../../Zotlabs/Module/Settings/Multifactor.php:75
+msgid "Congratulations, the provided code was correct"
msgstr ""
-#: ../../Zotlabs/Module/Common.php:14
-msgid "No channel."
-msgstr "Ingen kanal."
+#: ../../Zotlabs/Module/Settings/Multifactor.php:76
+msgid "Incorrect code"
+msgstr ""
-#: ../../Zotlabs/Module/Common.php:45
-msgid "No connections in common."
-msgstr "Ingen forbindelser felles."
+#: ../../Zotlabs/Module/Settings/Multifactor.php:79
+#, fuzzy
+#| msgid "Failed authentication"
+msgid "Enable Multi-Factor Authentication"
+msgstr "Mislykket autentisering"
-#: ../../Zotlabs/Module/Common.php:65
-msgid "View Common Connections"
+#: ../../Zotlabs/Module/Settings/Multifactor.php:81
+msgid "Logging in will require you to be in possession of your smartphone"
msgstr ""
-#: ../../Zotlabs/Module/Impel.php:188
-#, php-format
-msgid "%s element installed"
-msgstr "%s element installert"
+#: ../../Zotlabs/Module/Settings/Multifactor.php:84
+#, fuzzy
+#| msgid "Your new password is"
+msgid "Your account password"
+msgstr "Ditt nye passord er"
-#: ../../Zotlabs/Module/Impel.php:191
-#, php-format
-msgid "%s element installation failed"
-msgstr "Installasjon av %s-element mislyktes"
+#: ../../Zotlabs/Module/Settings/Multifactor.php:86
+msgid "Test"
+msgstr "Sjekk koden"
-#: ../../Zotlabs/Module/New_channel.php:159
-msgid "Your real name is recommended."
+#: ../../Zotlabs/Module/Settings/Events.php:40
+msgid "Events Settings"
msgstr ""
-#: ../../Zotlabs/Module/New_channel.php:160
+#: ../../Zotlabs/Module/Settings/Account.php:23
+msgid "Not valid email."
+msgstr "Ikke gyldig e-post."
+
+#: ../../Zotlabs/Module/Settings/Account.php:26
+msgid "Protected email address. Cannot change to that email."
+msgstr "Beskyttet e-postadresse. Kan ikke endre til den e-postadressen."
+
+#: ../../Zotlabs/Module/Settings/Account.php:35
+msgid "System failure storing new email. Please try again."
+msgstr "Systemfeil ved lagring av ny e-post. Vennligst prøv igjen."
+
+#: ../../Zotlabs/Module/Settings/Account.php:53
+msgid "Password verification failed."
+msgstr "Passordbekreftelsen mislyktes."
+
+#: ../../Zotlabs/Module/Settings/Account.php:60
+msgid "Passwords do not match. Password unchanged."
+msgstr "Passordene stemmer ikke overens. Passord uforandret."
+
+#: ../../Zotlabs/Module/Settings/Account.php:64
+msgid "Empty passwords are not allowed. Password unchanged."
+msgstr "Tomme passord er ikke tillatt. Passord uforandret."
+
+#: ../../Zotlabs/Module/Settings/Account.php:78
+msgid "Password changed."
+msgstr "Passord endret."
+
+#: ../../Zotlabs/Module/Settings/Account.php:80
+msgid "Password update failed. Please try again."
+msgstr "Passord oppdatering mislyktes. Vennligst prøv igjen."
+
+#: ../../Zotlabs/Module/Settings/Account.php:105
+msgid "Account Settings"
+msgstr "Kontoinnstillinger"
+
+#: ../../Zotlabs/Module/Settings/Account.php:106
+msgid "Current Password"
+msgstr "Nåværende passord"
+
+#: ../../Zotlabs/Module/Settings/Account.php:107
+msgid "Enter New Password"
+msgstr "Skriv nytt passord"
+
+#: ../../Zotlabs/Module/Settings/Account.php:108
+msgid "Confirm New Password"
+msgstr "Bekreft nytt passord"
+
+#: ../../Zotlabs/Module/Settings/Account.php:108
+msgid "Leave password fields blank unless changing"
+msgstr "La passordfeltene stå blanke om det ikke skal endres"
+
+#: ../../Zotlabs/Module/Settings/Account.php:110
+msgid "Multi-Factor Authentication"
+msgstr "Flerfaktorautentisering"
+
+#: ../../Zotlabs/Module/Settings/Account.php:111
+msgid "DId2 or Email Address:"
+msgstr "DId2 eller epostadresse:"
+
+#: ../../Zotlabs/Module/Settings/Account.php:114
+msgid "Remove this account including all its channels"
+msgstr "Slett denne kontoen inkludert alle dens kanaler"
+
+#: ../../Zotlabs/Module/Settings/Privacy.php:49
+msgid "Privacy settings updated."
+msgstr "Personverninnstillingene ble oppdatert."
+
+#: ../../Zotlabs/Module/Settings/Privacy.php:67
+msgid "Only those you specifically allow"
+msgstr "Bare de du spesifikt tillater"
+
+#: ../../Zotlabs/Module/Settings/Privacy.php:68
+msgid "Approved connections"
+msgstr "Godkjente forbindelser"
+
+#: ../../Zotlabs/Module/Settings/Privacy.php:69
+msgid "Any connections"
+msgstr "Enhver forbindelse"
+
+#: ../../Zotlabs/Module/Settings/Privacy.php:70
+msgid "Anybody on this website"
+msgstr "Enhver ved dette nettstedet"
+
+#: ../../Zotlabs/Module/Settings/Privacy.php:71
+msgid "Anybody in this network"
+msgstr "Enhver i dette nettverket"
+
+#: ../../Zotlabs/Module/Settings/Privacy.php:72
+msgid "Anybody authenticated"
+msgstr "Enhver som er autentisert"
+
+#: ../../Zotlabs/Module/Settings/Privacy.php:73
+msgid "Anybody on the internet"
+msgstr "Enhver på Internett"
+
+#: ../../Zotlabs/Module/Settings/Privacy.php:83
msgid ""
-"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation "
-"Group\""
+"Advise: set to \"Anybody on the internet\" and use privacy groups to "
+"restrict access"
msgstr ""
-"Eksempel: \"Ola Nordmann\", \"Lisa og hestene hennes\", \"Fotball\", "
-"\"Sykkelgruppa\""
-#: ../../Zotlabs/Module/New_channel.php:165
+#: ../../Zotlabs/Module/Settings/Privacy.php:122
+msgid "Privacy Settings"
+msgstr "Personverninnstillinger"
+
+#: ../../Zotlabs/Module/Settings/Privacy.php:127
+msgid "Advanced configuration"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Privacy.php:129
+msgid "Proceed with caution"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Privacy.php:130
msgid ""
-"This will be used to create a unique network address (like an email address)."
+"Changing advanced configuration settings can impact your, and your contacts "
+"channels functionality and security."
msgstr ""
-#: ../../Zotlabs/Module/New_channel.php:167
-msgid "Allowed characters are a-z 0-9, - and _"
+#: ../../Zotlabs/Module/Settings/Privacy.php:131
+msgid "Accept the risk and continue"
msgstr ""
-#: ../../Zotlabs/Module/New_channel.php:175
-#, fuzzy
-msgid "Channel name"
-msgstr "Kanalnavn"
+#: ../../Zotlabs/Module/Settings/Privacy.php:133
+msgid "Automatically approve new contacts"
+msgstr "Automatisk godkjenn nye kontakter"
-#: ../../Zotlabs/Module/New_channel.php:178
-#: ../../Zotlabs/Module/Settings/Channel.php:233
-msgid "Channel role"
-msgstr "Kanalrolle"
+#: ../../Zotlabs/Module/Settings/Privacy.php:134
+msgid "Opt-out of search engine indexing"
+msgstr "Ikke la søkemotorer indeksere denne kanalen"
-#: ../../Zotlabs/Module/New_channel.php:181
-msgid "Create a Channel"
+#: ../../Zotlabs/Module/Settings/Privacy.php:135
+msgid "Group actor"
msgstr ""
-#: ../../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."
+#: ../../Zotlabs/Module/Settings/Privacy.php:135
+msgid "Allow this channel to act as a forum"
msgstr ""
-#: ../../Zotlabs/Module/New_channel.php:183
+#: ../../Zotlabs/Module/Settings/Privacy.php:136
+msgid "Accept all messages which mention you"
+msgstr "Godta alle meldinger som nevner deg"
+
+#: ../../Zotlabs/Module/Settings/Privacy.php:136
+msgid "This setting bypasses normal permissions"
+msgstr "Denne instillingen overstyrer vanlig tilgangskontroll"
+
+#: ../../Zotlabs/Module/Settings/Privacy.php:137
+msgid "Accept unsolicited comments for moderation"
+msgstr "Godta kommentarer fra fremmede for moderering"
+
+#: ../../Zotlabs/Module/Settings/Privacy.php:137
+msgid "Otherwise they will be silently dropped"
+msgstr "Ellers vil de avvises uten varsel"
+
+#: ../../Zotlabs/Module/Settings/Privacy.php:138
+msgid "Enable OCAP access"
+msgstr "Slå på OCAP tilgangskontroll"
+
+#: ../../Zotlabs/Module/Settings/Privacy.php:138
+msgid "Grant limited posts the right to access linked private media"
+msgstr "Gi begrensede innlegg tilgang til private media som er lenket fra dem"
+
+#: ../../Zotlabs/Module/Settings/Display.php:126
+#, php-format
+msgid "%s - (Experimental)"
+msgstr "%s - (Eksperimentelt)"
+
+#: ../../Zotlabs/Module/Settings/Display.php:183
+msgid "Display Settings"
+msgstr "Visningsinnstillinger"
+
+#: ../../Zotlabs/Module/Settings/Display.php:184
+msgid "Theme Settings"
+msgstr "Temainnstillinger"
+
+#: ../../Zotlabs/Module/Settings/Display.php:185
+msgid "Custom Theme Settings"
+msgstr "Tilpassede temainnstillinger"
+
+#: ../../Zotlabs/Module/Settings/Display.php:186
+msgid "Content Settings"
+msgstr "Innholdsinnstillinger"
+
+#: ../../Zotlabs/Module/Settings/Display.php:192
+msgid "Display Theme:"
+msgstr "Visningstema:"
+
+#: ../../Zotlabs/Module/Settings/Display.php:193
+msgid "Select scheme"
+msgstr "Velg skjema"
+
+#: ../../Zotlabs/Module/Settings/Display.php:195
+msgid "Preload images before rendering the page"
+msgstr "Last inn bildene før gjengivelsen av siden"
+
+#: ../../Zotlabs/Module/Settings/Display.php:195
msgid ""
-"or <a href=\"import\">import an existing channel</a> from another location."
+"The subjective page load time will be longer but the page will be ready when "
+"displayed"
msgstr ""
-"eller <a href=\"import\">importer en eksisterende kanal</a> fra et annet "
-"sted."
+"Den personlige opplevelsen av lastetiden vil være lenger, men siden vil være "
+"klar når den vises"
-#: ../../Zotlabs/Module/New_channel.php:188
-msgid "Validate"
-msgstr ""
+#: ../../Zotlabs/Module/Settings/Display.php:196
+msgid "Enable user zoom on mobile devices"
+msgstr "Skru på brukerstyrt zoom på mobile enheter"
-#: ../../Zotlabs/Module/Dircensor.php:61
-msgid "Entry censored"
-msgstr ""
+#: ../../Zotlabs/Module/Settings/Display.php:197
+msgid "Update browser every xx seconds"
+msgstr "Oppdater nettleser hvert xx sekunder"
-#: ../../Zotlabs/Module/Dircensor.php:64
-msgid "Entry OK"
-msgstr ""
+#: ../../Zotlabs/Module/Settings/Display.php:197
+msgid "Minimum of 10 seconds, no maximum"
+msgstr "Minimum 10 sekunder, ikke noe maksimum"
-#: ../../Zotlabs/Module/Service_limits.php:23
-msgid "No service class restrictions found."
-msgstr "Ingen restriksjoner er funnet i tjenesteklasse."
+#: ../../Zotlabs/Module/Settings/Display.php:198
+msgid "Maximum number of conversations to load at any time:"
+msgstr "Maksimalt antall samtaler å laste samtidig:"
-#: ../../Zotlabs/Module/Mood.php:152 ../../Zotlabs/Lib/Apps.php:355
-msgid "Mood"
-msgstr "Stemning"
+#: ../../Zotlabs/Module/Settings/Display.php:198
+msgid "Maximum of 30 items"
+msgstr ""
-#: ../../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/Settings/Display.php:199
+msgid "Show emoticons (smilies) as images"
+msgstr "Vis emoticons (smilefjes) som bilder"
-#: ../../Zotlabs/Module/Siteinfo.php:21
-msgid "About this site"
-msgstr "Om dette nettstedet "
+#: ../../Zotlabs/Module/Settings/Display.php:200
+msgid "Link post titles to source"
+msgstr "Lenk innleggets tittel til kilden"
-#: ../../Zotlabs/Module/Siteinfo.php:22
-#, fuzzy
-msgid "Site Name"
-msgstr "Nettstedets navn"
+#: ../../Zotlabs/Module/Settings/Display.php:202
+#: ../../Zotlabs/Widget/Newmember.php:82
+msgid "New Member Links"
+msgstr "Lenker for nye medlemmer"
-#: ../../Zotlabs/Module/Siteinfo.php:26
-msgid "Administrator"
-msgstr "Administrator"
+#: ../../Zotlabs/Module/Settings/Display.php:202
+msgid "Display new member quick links menu"
+msgstr "Vis hurtiglenker for nye medlemmer"
-#: ../../Zotlabs/Module/Siteinfo.php:29
-msgid "Software and Project information"
-msgstr "Program- og prosjektinformasjon"
+#: ../../Zotlabs/Module/Settings/Manage.php:41
+msgid "Channel Manager Settings"
+msgstr ""
-#: ../../Zotlabs/Module/Siteinfo.php:30
-msgid "This site is powered by $Projectname"
-msgstr "Dette nettstedet drives av $Projectname"
+#: ../../Zotlabs/Module/Apporder.php:47
+msgid "Change Order of Pinned Navbar Apps"
+msgstr ""
-#: ../../Zotlabs/Module/Siteinfo.php:31
+#: ../../Zotlabs/Module/Apporder.php:47
+msgid "Change Order of App Tray Apps"
+msgstr ""
+
+#: ../../Zotlabs/Module/Apporder.php:48
msgid ""
-"Federated and decentralised networking and identity services provided by Zot"
-msgstr "Fødererte og desentraliserte nettverks- og identitetstjenester via Zot"
+"Use arrows to move the corresponding app left (top) or right (bottom) in the "
+"navbar"
+msgstr ""
-#: ../../Zotlabs/Module/Siteinfo.php:34
-msgid "Additional federated transport protocols:"
-msgstr "Øvrige fødererte transportprotokoller:"
+#: ../../Zotlabs/Module/Apporder.php:48
+msgid "Use arrows to move the corresponding app up or down in the app tray"
+msgstr ""
-#: ../../Zotlabs/Module/Siteinfo.php:36
-#, php-format
-msgid "Version %s"
-msgstr "Versjon %s"
+#: ../../Zotlabs/Module/Like.php:111
+msgid "Like/Dislike"
+msgstr "Liker/Liker ikke"
-#: ../../Zotlabs/Module/Siteinfo.php:37
-msgid "Project homepage"
-msgstr "Prosjektets hjemmeside"
+#: ../../Zotlabs/Module/Like.php:117
+msgid "This action is restricted to members."
+msgstr "Denne handlingen er begrenset til medlemmer."
-#: ../../Zotlabs/Module/Siteinfo.php:38
-msgid "Developer homepage"
-msgstr "Utviklers hjemmeside"
+#: ../../Zotlabs/Module/Like.php:118
+msgid ""
+"Please <a href=\"rmagic\">login with your $Projectname ID</a> or <a "
+"href=\"register\">register as a new $Projectname member</a> to continue."
+msgstr ""
+"Vennligst <a href=\"rmagic\">logg inn med din $Projectname ID</a> eller <a "
+"href=\"register\">registrer deg som et nytt $Projectname-medlem</a> for å "
+"fortsette."
-#: ../../Zotlabs/Module/Appman.php:39 ../../Zotlabs/Module/Appman.php:56
-msgid "App installed."
-msgstr "App installert."
+#: ../../Zotlabs/Module/Like.php:171 ../../Zotlabs/Module/Like.php:197
+#: ../../Zotlabs/Module/Like.php:230
+msgid "Invalid request."
+msgstr "Ugyldig forespørsel."
-#: ../../Zotlabs/Module/Appman.php:49
-msgid "Malformed app."
-msgstr "Feil oppsett for app-en."
+#: ../../Zotlabs/Module/Like.php:212
+msgid "thing"
+msgstr "ting"
-#: ../../Zotlabs/Module/Appman.php:198
-msgid "Embed code"
-msgstr "Innbyggingskode"
+#: ../../Zotlabs/Module/Like.php:253
+msgid "Channel unavailable."
+msgstr "Kanalen er utilgjengelig."
-#: ../../Zotlabs/Module/Appman.php:203
-msgid "Edit App"
-msgstr "Endre app"
+#: ../../Zotlabs/Module/Like.php:289
+msgid "Previous action reversed."
+msgstr "Forrige handling er omgjort."
-#: ../../Zotlabs/Module/Appman.php:203
-msgid "Create App"
-msgstr "Lag app"
+#: ../../Zotlabs/Module/Like.php:453
+#, fuzzy
+#| msgid "Profile"
+msgid "profile"
+msgstr "Profil"
-#: ../../Zotlabs/Module/Appman.php:208
-msgid "Name of app"
-msgstr "Navn på app"
+#: ../../Zotlabs/Module/Like.php:487
+#: ../../extend/addon/hzaddons/diaspora/Receiver.php:2248
+#, php-format
+msgid "%1$s is attending %2$s's %3$s"
+msgstr "%1$s deltar på %2$ss %3$s"
-#: ../../Zotlabs/Module/Appman.php:209
-msgid "Location (URL) of app"
-msgstr "Plassering (URL) til app"
+#: ../../Zotlabs/Module/Like.php:489
+#: ../../extend/addon/hzaddons/diaspora/Receiver.php:2250
+#, 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/Appman.php:211
-msgid "Photo icon URL"
-msgstr "Bildeikon URL"
+#: ../../Zotlabs/Module/Like.php:491
+#: ../../extend/addon/hzaddons/diaspora/Receiver.php:2252
+#, php-format
+msgid "%1$s may attend %2$s's %3$s"
+msgstr "%1$s deltar kanskje på %2$ss %3$s"
-#: ../../Zotlabs/Module/Appman.php:211
-msgid "80 x 80 pixels - optional"
-msgstr "80 x80 pixler - valgfritt"
+#: ../../Zotlabs/Module/Like.php:615
+msgid "Action completed."
+msgstr "Handling ferdig."
-#: ../../Zotlabs/Module/Appman.php:212
-#, fuzzy
-msgid "Categories (optional, comma separated list)"
-msgstr "Kategorier (valgfri, kommaseparert liste)"
+#: ../../Zotlabs/Module/Like.php:616
+msgid "Thank you."
+msgstr "Tusen takk."
-#: ../../Zotlabs/Module/Appman.php:213
-msgid "Version ID"
-msgstr "Versjons-ID"
+#: ../../Zotlabs/Module/Follow.php:75
+msgid "Connection added."
+msgstr ""
-#: ../../Zotlabs/Module/Appman.php:214
-msgid "Price of app"
-msgstr "Pris på app"
+#: ../../Zotlabs/Module/Chatsvc.php:131
+msgid "Away"
+msgstr "Borte"
-#: ../../Zotlabs/Module/Appman.php:215
-msgid "Location (URL) to purchase app"
-msgstr "Plassering (URL) for å kjøpe app"
+#: ../../Zotlabs/Module/Chatsvc.php:136
+msgid "Online"
+msgstr "Online"
-#: ../../Zotlabs/Module/Admin.php:96
+#: ../../Zotlabs/Module/Admin.php:98
msgid "Blocked accounts"
msgstr ""
-#: ../../Zotlabs/Module/Admin.php:97
+#: ../../Zotlabs/Module/Admin.php:99
msgid "Expired accounts"
msgstr ""
-#: ../../Zotlabs/Module/Admin.php:98
+#: ../../Zotlabs/Module/Admin.php:100
msgid "Expiring accounts"
msgstr ""
-#: ../../Zotlabs/Module/Admin.php:122
+#: ../../Zotlabs/Module/Admin.php:124
msgid "Message queues"
msgstr "Meldingskøer"
-#: ../../Zotlabs/Module/Admin.php:136
+#: ../../Zotlabs/Module/Admin.php:138
msgid "Your software should be updated"
msgstr "Programvaren bør oppdateres"
-#: ../../Zotlabs/Module/Admin.php:141
+#: ../../Zotlabs/Module/Admin.php:143
msgid "Summary"
msgstr "Sammendrag"
-#: ../../Zotlabs/Module/Admin.php:144
+#: ../../Zotlabs/Module/Admin.php:146
msgid "Registered accounts"
msgstr "Registrerte kontoer"
-#: ../../Zotlabs/Module/Admin.php:145
+#: ../../Zotlabs/Module/Admin.php:147
msgid "Pending registrations"
msgstr "Ventende registreringer"
-#: ../../Zotlabs/Module/Admin.php:146
+#: ../../Zotlabs/Module/Admin.php:148
msgid "Registered channels"
msgstr "Registrerte kanaler"
-#: ../../Zotlabs/Module/Admin.php:147
-msgid "Active addons"
-msgstr "Aktive tillegg"
-
-#: ../../Zotlabs/Module/Admin.php:148
+#: ../../Zotlabs/Module/Admin.php:150
msgid "Version"
msgstr "Versjon"
-#: ../../Zotlabs/Module/Admin.php:149
+#: ../../Zotlabs/Module/Admin.php:151
msgid "Repository version (master)"
msgstr ""
-#: ../../Zotlabs/Module/Admin.php:150
+#: ../../Zotlabs/Module/Admin.php:152
msgid "Repository version (dev)"
msgstr ""
-#: ../../Zotlabs/Module/Contactedit.php:50
-msgid "Invalid abook_id"
+#: ../../Zotlabs/Module/Authorize.php:17
+msgid "Unknown App"
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/Module/Authorize.php:29
+msgid "Authorize"
+msgstr ""
-#: ../../Zotlabs/Module/Contactedit.php:107
-#: ../../Zotlabs/Module/Connedit.php:101
-msgid "Could not locate selected profile."
-msgstr "Fant ikke valgt profil."
+#: ../../Zotlabs/Module/Authorize.php:30
+#, php-format
+msgid "Do you authorize the app %s to access your channel data?"
+msgstr ""
-#: ../../Zotlabs/Module/Contactedit.php:192
-#: ../../Zotlabs/Module/Connedit.php:215
-msgid "is now connected to"
-msgstr "er nå forbundet til"
+#: ../../Zotlabs/Module/Go.php:22
+msgid "This page is available only to site members"
+msgstr ""
-#: ../../Zotlabs/Module/Contactedit.php:252
-#: ../../Zotlabs/Module/Contactedit.php:401
-#: ../../Zotlabs/Module/Connedit.php:701
-msgid "Contact Tools"
+#: ../../Zotlabs/Module/Go.php:28
+#: ../../Zotlabs/Widget/Channel_activities.php:29
+msgid "Welcome"
+msgstr "Velkommen"
+
+#: ../../Zotlabs/Module/Go.php:30
+msgid "What would you like to do?"
msgstr ""
-#: ../../Zotlabs/Module/Contactedit.php:329
-#: ../../Zotlabs/Module/Connedit.php:622
-msgid "Approve this contact"
+#: ../../Zotlabs/Module/Go.php:32
+msgid ""
+"Please bookmark this page if you would like to return to it in the future"
msgstr ""
-#: ../../Zotlabs/Module/Contactedit.php:329
-#: ../../Zotlabs/Module/Connedit.php:622
-msgid "Accept contact to allow communication"
+#: ../../Zotlabs/Module/Go.php:36
+msgid "Upload a profile photo"
msgstr ""
-#: ../../Zotlabs/Module/Contactedit.php:362
-#: ../../Zotlabs/Module/Connedit.php:658
-msgid "Please select a role for this contact!"
+#: ../../Zotlabs/Module/Go.php:37
+msgid "Upload a cover photo"
msgstr ""
-#: ../../Zotlabs/Module/Contactedit.php:382
-#: ../../Zotlabs/Module/Connedit.php:678
-msgid "This contact is unreachable from this location."
+#: ../../Zotlabs/Module/Go.php:38
+msgid "Edit your default profile"
msgstr ""
-#: ../../Zotlabs/Module/Contactedit.php:383
-#: ../../Zotlabs/Module/Connedit.php:679
-msgid "This contact may be unreachable from other channel locations."
+#: ../../Zotlabs/Module/Go.php:39 ../../Zotlabs/Widget/Newmember.php:48
+msgid "View friend suggestions"
+msgstr "Vis venneforslag"
+
+#: ../../Zotlabs/Module/Go.php:40
+msgid "View the channel directory"
msgstr ""
-#: ../../Zotlabs/Module/Contactedit.php:385
-#: ../../Zotlabs/Module/Connedit.php:681
-msgid "Location independence is not supported by their network."
+#: ../../Zotlabs/Module/Go.php:41
+msgid "View/edit your channel settings"
msgstr ""
-#: ../../Zotlabs/Module/Contactedit.php:395
+#: ../../Zotlabs/Module/Go.php:42
+msgid "View the site or project documentation"
+msgstr ""
+
+#: ../../Zotlabs/Module/Go.php:43
+msgid "Visit your channel homepage"
+msgstr ""
+
+#: ../../Zotlabs/Module/Go.php:44
+msgid ""
+"View your connections and/or add somebody whose address you already know"
+msgstr ""
+
+#: ../../Zotlabs/Module/Go.php:45
+msgid ""
+"View your personal stream (this may be empty until you add some connections)"
+msgstr ""
+
+#: ../../Zotlabs/Module/Go.php:53
+msgid "View the public stream. Warning: this content is not moderated"
+msgstr ""
+
+#: ../../Zotlabs/Module/Manage.php:137
+msgid "Create a new channel"
+msgstr "Lag en ny kanal"
+
+#: ../../Zotlabs/Module/Manage.php:163
+msgid "Current Channel"
+msgstr "Gjeldende kanal"
+
+#: ../../Zotlabs/Module/Manage.php:165
+msgid "Switch to one of your channels by selecting it."
+msgstr "Bytt til en av dine kanaler ved å velge den."
+
+#: ../../Zotlabs/Module/Manage.php:166
+msgid "Default Channel"
+msgstr "Standardkanal"
+
+#: ../../Zotlabs/Module/Manage.php:167
+msgid "Make Default"
+msgstr "Gjør til standard"
+
+#: ../../Zotlabs/Module/Manage.php:170
+#, php-format
+msgid "%d new introductions"
+msgstr "%d nye introduksjoner"
+
+#: ../../Zotlabs/Module/Manage.php:172
+msgid "Delegated Channel"
+msgstr "Delegert kanal"
+
+#: ../../Zotlabs/Module/Search.php:251
+#, php-format
+msgid "Items tagged with: %s"
+msgstr "Elementer merket med: %s"
+
+#: ../../Zotlabs/Module/Search.php:253
+#, php-format
+msgid "Search results for: %s"
+msgstr "Søkeresultater for: %s"
+
+#: ../../Zotlabs/Module/Changeaddr.php:35
+msgid ""
+"Channel name changes are not allowed within 48 hours of changing the account "
+"password."
+msgstr ""
+
+#: ../../Zotlabs/Module/Changeaddr.php:77
+msgid "Change channel nickname/address"
+msgstr ""
+
+#: ../../Zotlabs/Module/Changeaddr.php:78
+msgid "Any/all connections on other networks will be lost!"
+msgstr ""
+
+#: ../../Zotlabs/Module/Changeaddr.php:80
+msgid "New channel address"
+msgstr ""
+
+#: ../../Zotlabs/Module/Changeaddr.php:81
+msgid "Rename Channel"
+msgstr ""
+
+#: ../../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:1000
+msgid "Event title"
+msgstr "Tittel på hendelse"
+
+#: ../../Zotlabs/Module/Cdav.php:1001
+msgid "Start date and time"
+msgstr "Startdato og tidspunkt"
+
+#: ../../Zotlabs/Module/Cdav.php:1002
+msgid "End date and time"
+msgstr ""
+
+#: ../../Zotlabs/Module/Cdav.php:1003
#, fuzzy
-msgid "View profile"
-msgstr "Vis profil"
+msgid "Timezone:"
+msgstr "Tidssone"
-#: ../../Zotlabs/Module/Contactedit.php:397
-#: ../../Zotlabs/Module/Connections.php:414
-msgid "This is a group/forum channel"
+#: ../../Zotlabs/Module/Cdav.php:1029
+#, fuzzy
+msgid "Month"
+msgstr "måned"
+
+#: ../../Zotlabs/Module/Cdav.php:1030
+#, fuzzy
+msgid "Week"
+msgstr "uke"
+
+#: ../../Zotlabs/Module/Cdav.php:1031
+#, fuzzy
+msgid "Day"
+msgstr "dag"
+
+#: ../../Zotlabs/Module/Cdav.php:1032
+msgid "List month"
msgstr ""
-#: ../../Zotlabs/Module/Contactedit.php:408
-msgid "Select a role for this contact"
+#: ../../Zotlabs/Module/Cdav.php:1033
+msgid "List week"
msgstr ""
-#: ../../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/Module/Cdav.php:1034
+msgid "List day"
+msgstr ""
-#: ../../Zotlabs/Module/Contactedit.php:422
-#: ../../Zotlabs/Module/Connedit.php:705
-msgid "Custom Filter"
-msgstr "Tilpasset filter"
+#: ../../Zotlabs/Module/Cdav.php:1042
+msgid "More"
+msgstr ""
-#: ../../Zotlabs/Module/Contactedit.php:423
-#: ../../Zotlabs/Module/Settings/Channel.php:286
-#: ../../Zotlabs/Module/Connedit.php:706
-msgid "Only import posts with this text"
-msgstr "Bare importer innlegg med disse ordene"
+#: ../../Zotlabs/Module/Cdav.php:1043
+msgid "Less"
+msgstr ""
-#: ../../Zotlabs/Module/Contactedit.php:424
-#: ../../Zotlabs/Module/Settings/Channel.php:285
-#: ../../Zotlabs/Module/Connedit.php:707
-msgid "Do not import posts with this text"
-msgstr "Ikke importer innlegg med denne teksten"
+#: ../../Zotlabs/Module/Cdav.php:1045
+msgid "Select calendar"
+msgstr ""
-#: ../../Zotlabs/Module/Contactedit.php:429
-#: ../../Zotlabs/Module/Connedit.php:714
-msgid "Approve contact"
+#: ../../Zotlabs/Module/Cdav.php:1046 ../../Zotlabs/Widget/Cdav.php:149
+msgid "Channel Calendars"
msgstr ""
-#: ../../Zotlabs/Module/Contactedit.php:431
-#: ../../Zotlabs/Module/Connedit.php:717
-msgid "Their"
+#: ../../Zotlabs/Module/Cdav.php:1046 ../../Zotlabs/Widget/Cdav.php:135
+#: ../../Zotlabs/Widget/Cdav.php:149
+msgid "CalDAV Calendars"
msgstr ""
-#: ../../Zotlabs/Module/Contactedit.php:432
-#: ../../Zotlabs/Module/Connedit.php:718
-msgid "My"
+#: ../../Zotlabs/Module/Cdav.php:1048
+msgid "Delete all"
msgstr ""
-#: ../../Zotlabs/Module/Contactedit.php:440
+#: ../../Zotlabs/Module/Cdav.php:1051
+msgid "Sorry! Editing of recurrent events is not yet implemented."
+msgstr ""
+
+#: ../../Zotlabs/Module/Cdav.php:1052
+msgid ""
+"Could not fetch calendar resource. The selected calendar might be disabled."
+msgstr ""
+
+#: ../../Zotlabs/Module/Cdav.php:1452
+msgid "Default Calendar"
+msgstr ""
+
+#: ../../Zotlabs/Module/Cdav.php:1463
+msgid "Default Addressbook"
+msgstr ""
+
+#: ../../Zotlabs/Module/Contactedit.php:50
+msgid "Invalid abook_id"
+msgstr ""
+
+#: ../../Zotlabs/Module/Contactedit.php:381
+#, fuzzy
+msgid "View profile"
+msgstr "Vis profil"
+
+#: ../../Zotlabs/Module/Contactedit.php:394
+msgid "Select a role for this contact"
+msgstr ""
+
+#: ../../Zotlabs/Module/Contactedit.php:395
+#: ../../Zotlabs/Widget/Permcats.php:92
+msgid "Contact roles"
+msgstr ""
+
+#: ../../Zotlabs/Module/Contactedit.php:426
msgid "Roles"
msgstr ""
-#: ../../Zotlabs/Module/Contactedit.php:441
+#: ../../Zotlabs/Module/Contactedit.php:427
msgid "Compare permissions"
msgstr ""
-#: ../../Zotlabs/Module/Contactedit.php:442
+#: ../../Zotlabs/Module/Contactedit.php:428
msgid "Permission"
msgstr ""
-#: ../../Zotlabs/Module/Contactedit.php:445
-#: ../../Zotlabs/Module/Connedit.php:572
-msgid "Affinity"
-msgstr ""
+#: ../../Zotlabs/Module/Contactedit.php:429
+#: ../../Zotlabs/Widget/Privacygroups.php:54
+#, fuzzy
+msgid "Privacy groups"
+msgstr "Personverngrupper"
-#: ../../Zotlabs/Module/Contactedit.php:446
+#: ../../Zotlabs/Module/Contactedit.php:432
msgid "Content filter"
msgstr ""
-#: ../../Zotlabs/Module/Contactedit.php:456
+#: ../../Zotlabs/Module/Contactedit.php:442
msgid "Contact updated"
msgstr ""
-#: ../../Zotlabs/Module/Contactedit.php:456
+#: ../../Zotlabs/Module/Contactedit.php:442
msgid "Contact update failed"
msgstr ""
-#: ../../Zotlabs/Module/Contactedit.php:462
-#: ../../Zotlabs/Module/Connections.php:357
-msgid "Approve connection"
-msgstr "Godkjenn forbindelse"
-
-#: ../../Zotlabs/Module/Contactedit.php:508
-#: ../../Zotlabs/Module/Contactedit.php:518
+#: ../../Zotlabs/Module/Contactedit.php:491
+#: ../../extend/addon/hzaddons/diaspora/diaspora.php:417
+#: ../../extend/addon/hzaddons/pubcrawl/pubcrawl.php:1085
msgid "Refresh succeeded"
msgstr ""
-#: ../../Zotlabs/Module/Contactedit.php:511
+#: ../../Zotlabs/Module/Contactedit.php:494
+#: ../../extend/addon/hzaddons/diaspora/diaspora.php:412
+#: ../../extend/addon/hzaddons/pubcrawl/pubcrawl.php:1078
#, fuzzy
-msgid "Refresh failed - channel is currently unavailable"
-msgstr "Oppfrisking mislyktes - kanalen er for øyeblikket utilgjengelig."
+#| msgid "Refresh"
+msgid "Refresh failed"
+msgstr "Forny"
-#: ../../Zotlabs/Module/Contactedit.php:530
+#: ../../Zotlabs/Module/Contactedit.php:520
msgid "Block status updated"
msgstr ""
-#: ../../Zotlabs/Module/Contactedit.php:534
+#: ../../Zotlabs/Module/Contactedit.php:524
msgid "Block failed"
msgstr ""
-#: ../../Zotlabs/Module/Contactedit.php:545
+#: ../../Zotlabs/Module/Contactedit.php:535
msgid "Ignore status updated"
msgstr ""
-#: ../../Zotlabs/Module/Contactedit.php:549
+#: ../../Zotlabs/Module/Contactedit.php:539
msgid "Ignore failed"
msgstr ""
-#: ../../Zotlabs/Module/Contactedit.php:560
+#: ../../Zotlabs/Module/Contactedit.php:550
msgid "Archive status updated"
msgstr ""
-#: ../../Zotlabs/Module/Contactedit.php:564
+#: ../../Zotlabs/Module/Contactedit.php:554
msgid "Archive failed"
msgstr ""
-#: ../../Zotlabs/Module/Contactedit.php:575
+#: ../../Zotlabs/Module/Contactedit.php:565
msgid "Hide status updated"
msgstr ""
-#: ../../Zotlabs/Module/Contactedit.php:579
+#: ../../Zotlabs/Module/Contactedit.php:569
msgid "Hide failed"
msgstr ""
-#: ../../Zotlabs/Module/Contactedit.php:614
+#: ../../Zotlabs/Module/Contactedit.php:604
msgid "Contact removed"
msgstr ""
-#: ../../Zotlabs/Module/Contactedit.php:618
+#: ../../Zotlabs/Module/Contactedit.php:608
msgid "Delete failed"
msgstr ""
-#: ../../Zotlabs/Module/Contactedit.php:628
-#: ../../Zotlabs/Module/Connedit.php:487
-msgid "Refresh Permissions"
-msgstr "Oppfrisk tillatelser"
-
-#: ../../Zotlabs/Module/Contactedit.php:629
-#: ../../Zotlabs/Module/Connedit.php:490
-msgid "Fetch updated permissions"
-msgstr "Hent oppdaterte tillatelser"
+#: ../../Zotlabs/Module/Contactedit.php:618
+#: ../../Zotlabs/Widget/Affinity.php:60
+msgid "Refresh"
+msgstr "Forny"
-#: ../../Zotlabs/Module/Contactedit.php:633
-#: ../../Zotlabs/Module/Connedit.php:494
-msgid "Refresh Photo"
+#: ../../Zotlabs/Module/Contactedit.php:619
+msgid "Refetch contact info"
msgstr ""
-#: ../../Zotlabs/Module/Contactedit.php:634
-#: ../../Zotlabs/Module/Connedit.php:497
-msgid "Fetch updated photo"
-msgstr ""
-
-#: ../../Zotlabs/Module/Contactedit.php:641
-#: ../../Zotlabs/Module/Connedit.php:511
-msgid "Block (or Unblock) all communications with this connection"
+#: ../../Zotlabs/Module/Profile.php:106
+msgid "vcard"
msgstr ""
-"Blokker eller fjern blokkering av all kommunikasjon med denne forbindelsen"
-
-#: ../../Zotlabs/Module/Contactedit.php:642
-#: ../../Zotlabs/Module/Connedit.php:512
-msgid "This connection is blocked!"
-msgstr "Denne forbindelsen er blokkert!"
-
-#: ../../Zotlabs/Module/Contactedit.php:646
-#: ../../Zotlabs/Module/Connedit.php:516
-msgid "Unignore"
-msgstr "Ikke ignorer lenger"
-#: ../../Zotlabs/Module/Contactedit.php:646
-#: ../../Zotlabs/Module/Connections.php:360
-#: ../../Zotlabs/Module/Connedit.php:516
-msgid "Ignore"
-msgstr "Ignorer"
+#: ../../Zotlabs/Widget/Suggestions.php:58
+msgid "Suggestions"
+msgstr "Forslag"
-#: ../../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/Widget/Suggestions.php:59
+msgid "See more..."
+msgstr "Se mer..."
-#: ../../Zotlabs/Module/Contactedit.php:649
-#: ../../Zotlabs/Module/Connedit.php:520
-msgid "This connection is ignored!"
-msgstr "Denne forbindelsen er ignorert!"
+#: ../../Zotlabs/Widget/Pinned.php:95
+msgid "Share This"
+msgstr "Del dette"
-#: ../../Zotlabs/Module/Contactedit.php:653
-#: ../../Zotlabs/Module/Connedit.php:524
-msgid "Unarchive"
-msgstr "Ikke arkiver lenger"
+#: ../../Zotlabs/Widget/Pinned.php:118 ../../Zotlabs/Widget/Pinned.php:119
+#, php-format
+msgid "View %s's profile - %s"
+msgstr "Vis %s sin profil - %s"
-#: ../../Zotlabs/Module/Contactedit.php:653
-#: ../../Zotlabs/Module/Connedit.php:524
-msgid "Archive"
-msgstr "Arkiver"
+#: ../../Zotlabs/Widget/Pinned.php:152
+msgid "Don't show"
+msgstr "Ikke vis"
-#: ../../Zotlabs/Module/Contactedit.php:655
-#: ../../Zotlabs/Module/Connedit.php:527
-msgid ""
-"Archive (or Unarchive) this connection - mark channel dead but keep content"
+#: ../../Zotlabs/Widget/Privacygroups.php:45
+msgid "Add new group"
msgstr ""
-"Arkiver eller fjern arkivering av denne forbindelsen - marker kanal som død, "
-"men behold innhold"
-
-#: ../../Zotlabs/Module/Contactedit.php:656
-#: ../../Zotlabs/Module/Connedit.php:528
-msgid "This connection is archived!"
-msgstr "Denne forbindelsen er arkivert!"
-#: ../../Zotlabs/Module/Contactedit.php:660
-#: ../../Zotlabs/Module/Connedit.php:532
-msgid "Unhide"
-msgstr "Ikke skjul lenger"
+#: ../../Zotlabs/Widget/Savedsearch.php:81
+msgid "Remove term"
+msgstr "Fjern begrep"
-#: ../../Zotlabs/Module/Contactedit.php:660
-#: ../../Zotlabs/Module/Connedit.php:532
-msgid "Hide"
-msgstr "Skjul"
+#: ../../Zotlabs/Widget/Photo_rand.php:63 ../../Zotlabs/Widget/Photo.php:54
+msgid "photo/image"
+msgstr "foto/bilde"
-#: ../../Zotlabs/Module/Contactedit.php:662
-#: ../../Zotlabs/Module/Connedit.php:535
-msgid "Hide or Unhide this connection from your other connections"
+#: ../../Zotlabs/Widget/Notes.php:39
+msgid "Read mode"
msgstr ""
-"Skjul eller fjern skjuling av denne forbindelsen fra dine andre forbindelser"
-#: ../../Zotlabs/Module/Contactedit.php:663
-#: ../../Zotlabs/Module/Connedit.php:536
-msgid "This connection is hidden!"
-msgstr "Denne forbindelsen er skjult!"
+#: ../../Zotlabs/Widget/Notes.php:40
+msgid "Edit mode"
+msgstr ""
-#: ../../Zotlabs/Module/Contactedit.php:669
-#: ../../Zotlabs/Module/Connedit.php:543
-msgid "Delete this connection"
-msgstr "Slett denne forbindelsen"
+#: ../../Zotlabs/Widget/Notes.php:41
+msgid "Editing"
+msgstr ""
-#: ../../Zotlabs/Module/Directory.php:124
-msgid "No default suggestions were found."
+#: ../../Zotlabs/Widget/Notes.php:42
+msgid "Saving"
msgstr ""
-#: ../../Zotlabs/Module/Directory.php:292
-msgid "Gender: "
-msgstr "Kjønn: "
+#: ../../Zotlabs/Widget/Notes.php:43
+msgid "Saved"
+msgstr ""
-#: ../../Zotlabs/Module/Directory.php:294
-msgid "Status: "
-msgstr "Status: "
+#: ../../Zotlabs/Widget/Suggestedchats.php:36
+msgid "Suggested Chatrooms"
+msgstr "Foreslåtte chatrom"
-#: ../../Zotlabs/Module/Directory.php:296
-msgid "Homepage: "
-msgstr "Hjemmeside: "
+#: ../../Zotlabs/Widget/Bookmarkedchats.php:25
+msgid "Bookmarked Chatrooms"
+msgstr "Bokmerkede chatrom"
-#: ../../Zotlabs/Module/Directory.php:357
-msgid "Description:"
-msgstr "Beskrivelse:"
+#: ../../Zotlabs/Widget/Tasklist.php:31
+msgid "Tasks"
+msgstr "Oppgaver"
-#: ../../Zotlabs/Module/Directory.php:359
-msgid "Unsafe"
+#: ../../Zotlabs/Widget/Messages.php:32
+msgid "Public and restricted messages"
msgstr ""
-#: ../../Zotlabs/Module/Directory.php:362
-msgid "Spam"
+#: ../../Zotlabs/Widget/Messages.php:33
+msgid "Direct messages"
+msgstr "Direktemeldinger"
+
+#: ../../Zotlabs/Widget/Messages.php:34
+msgid "Starred messages"
msgstr ""
-#: ../../Zotlabs/Module/Directory.php:372
-msgid "Public Forum:"
-msgstr "Offentlig forum:"
+#: ../../Zotlabs/Widget/Messages.php:35
+#: ../../Zotlabs/Widget/Notifications.php:116
+#: ../../Zotlabs/Widget/Notifications.php:117
+msgid "Notices"
+msgstr "Varsel"
-#: ../../Zotlabs/Module/Directory.php:375
-msgid "Keywords: "
-msgstr "Nøkkelord: "
+#: ../../Zotlabs/Widget/Messages.php:37
+msgid "No messages"
+msgstr "Ingen meldinger"
-#: ../../Zotlabs/Module/Directory.php:378
-msgid "Don't suggest"
-msgstr "Ikke foreslå"
+#: ../../Zotlabs/Widget/Messages.php:38
+msgid "Unseen"
+msgstr "Ulest"
-#: ../../Zotlabs/Module/Directory.php:380
-msgid "Common connections (estimated):"
+#: ../../Zotlabs/Widget/Messages.php:39
+#: ../../Zotlabs/Widget/Notifications.php:34
+#: ../../Zotlabs/Widget/Notifications.php:54
+#: ../../Zotlabs/Widget/Notifications.php:73
+#: ../../Zotlabs/Widget/Notifications.php:134
+#: ../../Zotlabs/Widget/Notifications.php:167
+msgid "Filter by name or address"
+msgstr "Filtrer etter navn eller adresse"
+
+#: ../../Zotlabs/Widget/Cover_photo.php:74
+msgid "Click to show more"
msgstr ""
-#: ../../Zotlabs/Module/Directory.php:430
-msgid "Global Directory"
-msgstr "Global katalog"
+#: ../../Zotlabs/Widget/Activity.php:55
+#, fuzzy
+msgctxt "widget"
+msgid "Activity"
+msgstr "aktivitet"
-#: ../../Zotlabs/Module/Directory.php:430
-msgid "Local Directory"
-msgstr "Lokal katalog"
+#: ../../Zotlabs/Widget/Appstore.php:16
+msgid "App Collections"
+msgstr "Appsamlinger"
-#: ../../Zotlabs/Module/Directory.php:436
-msgid "Finding:"
-msgstr "Finner:"
+#: ../../Zotlabs/Widget/Appstore.php:18
+msgid "Installed apps"
+msgstr "Installerte apper"
-#: ../../Zotlabs/Module/Directory.php:441
-msgid "next page"
-msgstr "neste side"
+#: ../../Zotlabs/Widget/Hq_controls.php:23
+msgid "Toggle post editor"
+msgstr "Vis redigering av innlegg"
-#: ../../Zotlabs/Module/Directory.php:441
-msgid "previous page"
-msgstr "forrige side"
+#: ../../Zotlabs/Widget/Hq_controls.php:33
+msgid "Toggle personal notes"
+msgstr ""
-#: ../../Zotlabs/Module/Directory.php:442
-msgid "Sort options"
-msgstr "Sorteringsvalg"
+#: ../../Zotlabs/Widget/Hq_controls.php:43
+msgid "Channel activities"
+msgstr ""
-#: ../../Zotlabs/Module/Directory.php:443
-msgid "Alphabetic"
-msgstr "Alfabetisk"
+#: ../../Zotlabs/Widget/Archive.php:49
+msgid "Archives"
+msgstr "Arkiv"
-#: ../../Zotlabs/Module/Directory.php:444
-msgid "Reverse Alphabetic"
-msgstr "Omvendt alfabetisk"
+#: ../../Zotlabs/Widget/Channel_activities.php:46
+#, fuzzy
+#| msgid "Recent activity"
+msgid "No recent activities"
+msgstr "Nylig aktivitet"
-#: ../../Zotlabs/Module/Directory.php:445
-msgid "Newest to Oldest"
-msgstr "Nyest til eldst"
+#: ../../Zotlabs/Widget/Channel_activities.php:214
+msgctxt "noun"
+msgid "new connection"
+msgid_plural "new connections"
+msgstr[0] "ny forbindelse"
+msgstr[1] "nye forbindelser"
-#: ../../Zotlabs/Module/Directory.php:446
-msgid "Oldest to Newest"
-msgstr "Eldst til nyest"
+#: ../../Zotlabs/Widget/Channel_activities.php:220
+msgctxt "noun"
+msgid "notice"
+msgid_plural "notices"
+msgstr[0] "varsel"
+msgstr[1] "varsel"
-#: ../../Zotlabs/Module/Directory.php:464
-msgid "No entries (some entries may be hidden)."
-msgstr "Ingen oppføringer (noen oppføringer kan være skjult)."
+#: ../../Zotlabs/Widget/Settings_menu.php:37
+msgid "Account settings"
+msgstr "Kontoinnstillinger"
-#: ../../Zotlabs/Module/Api.php:74 ../../Zotlabs/Module/Api.php:95
-msgid "Authorize application connection"
-msgstr "Tillat programforbindelse"
+#: ../../Zotlabs/Widget/Settings_menu.php:43
+msgid "Channel settings"
+msgstr "Kanalinnstillinger"
-#: ../../Zotlabs/Module/Api.php:75
-msgid "Return to your app and insert this Security Code:"
-msgstr ""
+#: ../../Zotlabs/Widget/Settings_menu.php:49
+msgid "Privacy settings"
+msgstr "Personverninnstillinger"
-#: ../../Zotlabs/Module/Api.php:85
-msgid "Please login to continue."
-msgstr "Vennligst logg inn for å fortsette."
+#: ../../Zotlabs/Widget/Settings_menu.php:56
+msgid "Display settings"
+msgstr "Visningsinnstillinger"
-#: ../../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/Widget/Settings_menu.php:63
+msgid "Manage locations"
msgstr ""
-"Vil du tillate dette programmet å få tilgang til dine innlegg og kontakter, "
-"og/eller lage nye innlegg for deg?"
-#: ../../Zotlabs/Module/Regmod.php:15
-msgid "Please login."
-msgstr "Vennligst logg inn."
+#: ../../Zotlabs/Widget/Rating.php:59
+msgid "Rating Tools"
+msgstr "Vurderingsverktøy"
-#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:153
-#: ../../Zotlabs/Module/Editblock.php:113
-msgid "Block Name"
-msgstr "Byggeklossens navn"
+#: ../../Zotlabs/Widget/Rating.php:63 ../../Zotlabs/Widget/Rating.php:65
+msgid "Rate Me"
+msgstr "Vurder meg"
-#: ../../Zotlabs/Module/Blocks.php:154
-msgid "Block Title"
-msgstr "Byggeklossens tittel"
+#: ../../Zotlabs/Widget/Rating.php:68
+msgid "View Ratings"
+msgstr "Vis vurderinger"
-#: ../../Zotlabs/Module/Email_validation.php:36
-msgid "Email Verification Required"
-msgstr ""
+#: ../../Zotlabs/Widget/Appcategories.php:49
+msgid "App Categories"
+msgstr "Appkategorier"
-#: ../../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 ""
-"En verifikasjonskode ble sendt til epostadressen din [%s]. Skriv inn koden "
-"du mottok her for å fullføre kontoverifikasjonen. Det kan ta noen minutter "
-"før du mottar koden. Sjekk også at eposten ikke har havnet i mappen for "
-"søppelpost om du ikke ser den etter en stund."
+#: ../../Zotlabs/Widget/Activity_filter.php:44
+#: ../../Zotlabs/Widget/Notifications.php:62
+msgid "Direct Messages"
+msgstr "Direktemeldinger"
-#: ../../Zotlabs/Module/Email_validation.php:38
-msgid "Resend Email"
-msgstr ""
+#: ../../Zotlabs/Widget/Activity_filter.php:48
+msgid "Show direct (private) messages"
+msgstr "Vis direktemeldinger (private meldinger)"
-#: ../../Zotlabs/Module/Email_validation.php:41
-msgid "Validation token"
+#: ../../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/Module/Attach.php:68
-msgid "Item not available."
-msgstr "Elementet er ikke tilgjengelig."
+#: ../../Zotlabs/Widget/Activity_filter.php:63
+msgid "Polls"
+msgstr "Spørreskjema"
-#: ../../Zotlabs/Module/Vote.php:40
-msgid "Poll not found."
-msgstr "Fant ikke spørreskjema."
+#: ../../Zotlabs/Widget/Activity_filter.php:67
+msgid "Show posts that include polls"
+msgstr "Vis innlegg som inneholder spørreskjema"
-#: ../../Zotlabs/Module/Vote.php:69
-msgid "Invalid response."
+#: ../../Zotlabs/Widget/Activity_filter.php:90
+#, php-format
+msgid "Show posts related to the %s privacy group"
msgstr ""
-#: ../../Zotlabs/Module/Vote.php:125
-msgid "Response submitted. Updates may not appear instantly."
+#: ../../Zotlabs/Widget/Activity_filter.php:99
+msgid "Show my privacy groups"
msgstr ""
-#: ../../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/Module/Profile_photo.php:184
-#: ../../Zotlabs/Module/Cover_photo.php:212
-msgid "Image resize failed."
-msgstr "Endring av bildestørrelse mislyktes."
-
-#: ../../Zotlabs/Module/Profile_photo.php:350
-#: ../../Zotlabs/Module/Cover_photo.php:265
-msgid "Image upload failed."
-msgstr "Opplasting av bildet mislyktes."
-
-#: ../../Zotlabs/Module/Profile_photo.php:370
-#: ../../Zotlabs/Module/Cover_photo.php:282
-msgid "Unable to process image."
-msgstr "Kan ikke behandle bildet."
-
-#: ../../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/Widget/Activity_filter.php:123
+msgid "Show posts to this forum"
+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/Widget/Activity_filter.php:134
+msgid "Show forums"
msgstr ""
-#: ../../Zotlabs/Module/Profile_photo.php:544
-msgid ""
-"This profile photo will be visible only to channels with permission to view "
-"this profile."
+#: ../../Zotlabs/Widget/Activity_filter.php:148
+msgid "Starred Posts"
msgstr ""
-#: ../../Zotlabs/Module/Profile_photo.php:546
-msgid "Use Photo for Profile"
+#: ../../Zotlabs/Widget/Activity_filter.php:152
+msgid "Show posts that I have starred"
msgstr ""
-#: ../../Zotlabs/Module/Profile_photo.php:546
-#, fuzzy
-msgid "Change Profile Photo"
-msgstr "Endre profilbilde"
+#: ../../Zotlabs/Widget/Activity_filter.php:163
+msgid "Personal Posts"
+msgstr ""
-#: ../../Zotlabs/Module/Profile_photo.php:548
-msgid "Reset to default"
+#: ../../Zotlabs/Widget/Activity_filter.php:167
+msgid "Show posts that mention or involve me"
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/Widget/Activity_filter.php:190
+#, php-format
+msgid "Show posts that I have filed to %s"
msgstr ""
-#: ../../Zotlabs/Module/Profile_photo.php:562
-msgid "Select existing"
+#: ../../Zotlabs/Widget/Activity_filter.php:200
+msgid "Show filed post categories"
msgstr ""
-#: ../../Zotlabs/Module/Profile_photo.php:581
-#: ../../Zotlabs/Module/Cover_photo.php:455
-msgid "Crop Image"
-msgstr "Beskjær bildet"
+#: ../../Zotlabs/Widget/Activity_filter.php:214
+msgid "Panel search"
+msgstr ""
-#: ../../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."
+#: ../../Zotlabs/Widget/Activity_filter.php:224
+msgid "Filter by name"
+msgstr "Filtrer etter navn"
-#: ../../Zotlabs/Module/Profile_photo.php:584
-#, fuzzy
-msgid "Done editing"
-msgstr "Avslutt redigering"
+#: ../../Zotlabs/Widget/Activity_filter.php:239
+msgid "Remove active filter"
+msgstr ""
-#: ../../Zotlabs/Module/Editblock.php:138
-msgid "Edit Block"
-msgstr "Endre byggekloss"
+#: ../../Zotlabs/Widget/Activity_filter.php:255
+msgid "Stream Filters"
+msgstr "Filtere for tidslinjen"
-#: ../../Zotlabs/Module/Filer.php:53
-msgid "Enter a folder name"
+#: ../../Zotlabs/Widget/Notifications.php:24
+msgid "New network activity notifications"
msgstr ""
-#: ../../Zotlabs/Module/Filer.php:53
-msgid "or select an existing folder (doubleclick)"
+#: ../../Zotlabs/Widget/Notifications.php:27
+msgid "Network stream"
msgstr ""
-#: ../../Zotlabs/Module/Filer.php:55 ../../Zotlabs/Lib/ThreadItem.php:186
-msgid "Save to Folder"
-msgstr "Lagre i mappe"
+#: ../../Zotlabs/Widget/Notifications.php:30
+#: ../../Zotlabs/Widget/Notifications.php:69
+msgid "Mark all notifications read"
+msgstr ""
-#: ../../Zotlabs/Module/Editlayout.php:128 ../../Zotlabs/Module/Layouts.php:129
-#: ../../Zotlabs/Module/Layouts.php:187
-msgid "Layout Name"
-msgstr "Layout-navn"
+#: ../../Zotlabs/Widget/Notifications.php:33
+#: ../../Zotlabs/Widget/Notifications.php:53
+#: ../../Zotlabs/Widget/Notifications.php:72
+#: ../../Zotlabs/Widget/Notifications.php:166
+msgid "Show new posts only"
+msgstr ""
-#: ../../Zotlabs/Module/Editlayout.php:129 ../../Zotlabs/Module/Layouts.php:132
-msgid "Layout Description (Optional)"
-msgstr "Layoutens beskrivelse (valgfritt)"
+#: ../../Zotlabs/Widget/Notifications.php:44
+msgid "New home activity notifications"
+msgstr ""
-#: ../../Zotlabs/Module/Editlayout.php:137
-msgid "Edit Layout"
-msgstr "Endre layout"
+#: ../../Zotlabs/Widget/Notifications.php:47
+msgid "Home stream"
+msgstr ""
-#: ../../Zotlabs/Module/Connections.php:58
-#: ../../Zotlabs/Module/Connections.php:116
-msgid "Active"
+#: ../../Zotlabs/Widget/Notifications.php:50
+msgid "Mark all notifications seen"
msgstr ""
-#: ../../Zotlabs/Module/Connections.php:63
-#: ../../Zotlabs/Module/Connections.php:185
-#: ../../Zotlabs/Module/Connections.php:296
-msgid "Blocked"
-msgstr "Blokkert"
+#: ../../Zotlabs/Widget/Notifications.php:63
+msgid "New direct messages notifications"
+msgstr "Varsel om nye direktemeldinger"
-#: ../../Zotlabs/Module/Connections.php:68
-#: ../../Zotlabs/Module/Connections.php:192
-#: ../../Zotlabs/Module/Connections.php:295
-msgid "Ignored"
-msgstr "Ignorert"
+#: ../../Zotlabs/Widget/Notifications.php:66
+msgid "Direct messages stream"
+msgstr "Strøm for direktemeldinger"
-#: ../../Zotlabs/Module/Connections.php:73
-#: ../../Zotlabs/Module/Connections.php:206
-#: ../../Zotlabs/Module/Connections.php:294
-msgid "Hidden"
-msgstr "Skjult"
+#: ../../Zotlabs/Widget/Notifications.php:82
+msgid "New events notifications"
+msgstr ""
-#: ../../Zotlabs/Module/Connections.php:78
-#: ../../Zotlabs/Module/Connections.php:199
-msgid "Archived/Unreachable"
+#: ../../Zotlabs/Widget/Notifications.php:85
+msgid "View events"
msgstr ""
-#: ../../Zotlabs/Module/Connections.php:83
-#: ../../Zotlabs/Module/Connections.php:92 ../../Zotlabs/Module/Menu.php:180
-#: ../../Zotlabs/Module/Notifications.php:101
-msgid "New"
-msgstr "Nye"
+#: ../../Zotlabs/Widget/Notifications.php:88
+msgid "Mark all events seen"
+msgstr "Merk alle hendelser som sett"
-#: ../../Zotlabs/Module/Connections.php:161
-msgid "Active Connections"
+#: ../../Zotlabs/Widget/Notifications.php:97
+msgid "New connections notifications"
msgstr ""
-#: ../../Zotlabs/Module/Connections.php:164
-msgid "Show active connections"
+#: ../../Zotlabs/Widget/Notifications.php:100
+msgid "View all connections"
msgstr ""
-#: ../../Zotlabs/Module/Connections.php:171
-msgid "Show pending (new) connections"
-msgstr "Vis ventende (nye) forbindelser"
-
-#: ../../Zotlabs/Module/Connections.php:188
-msgid "Only show blocked connections"
-msgstr "Vis bare forbindelser som er blokkert"
-
-#: ../../Zotlabs/Module/Connections.php:195
-msgid "Only show ignored connections"
-msgstr "Vis bare ignorerte forbindelser"
-
-#: ../../Zotlabs/Module/Connections.php:202
-msgid "Only show archived/unreachable connections"
+#: ../../Zotlabs/Widget/Notifications.php:109
+msgid "New files notifications"
msgstr ""
-#: ../../Zotlabs/Module/Connections.php:209
-msgid "Only show hidden connections"
-msgstr "Vis bare skjulte forbindelser"
+#: ../../Zotlabs/Widget/Notifications.php:120
+msgid "View all notices"
+msgstr ""
-#: ../../Zotlabs/Module/Connections.php:224
-msgid "Show all connections"
-msgstr "Vis alle forbindelser"
+#: ../../Zotlabs/Widget/Notifications.php:123
+msgid "Mark all notices seen"
+msgstr ""
-#: ../../Zotlabs/Module/Connections.php:292
-msgid "Pending approval"
-msgstr "Venter på godkjenning"
+#: ../../Zotlabs/Widget/Notifications.php:144
+msgid "Registrations"
+msgstr ""
-#: ../../Zotlabs/Module/Connections.php:293
-msgid "Archived"
-msgstr "Arkivert"
+#: ../../Zotlabs/Widget/Notifications.php:145
+msgid "New registrations notifications"
+msgstr ""
-#: ../../Zotlabs/Module/Connections.php:297
-msgid "Not connected at this location"
+#: ../../Zotlabs/Widget/Notifications.php:155
+msgid "New public stream notifications"
msgstr ""
-#: ../../Zotlabs/Module/Connections.php:336
-#, php-format
-msgid "%1$s [%2$s]"
-msgstr "%1$s [%2$s]"
+#: ../../Zotlabs/Widget/Notifications.php:158
+msgid "Public stream"
+msgstr ""
-#: ../../Zotlabs/Module/Connections.php:337
-msgid "Edit connection"
-msgstr "Endre forbindelse"
+#: ../../Zotlabs/Widget/Notifications.php:174
+msgid "Sorry, you have got no notifications at the moment"
+msgstr ""
-#: ../../Zotlabs/Module/Connections.php:339
-msgid "Delete connection"
-msgstr "Slett forbindelse"
+#: ../../Zotlabs/Widget/Tokens.php:41
+msgid "Add new guest"
+msgstr ""
-#: ../../Zotlabs/Module/Connections.php:345
-msgid "Channel address"
-msgstr "Kanaladresse"
+#: ../../Zotlabs/Widget/Permcats.php:43
+msgid "Add new role"
+msgstr ""
-#: ../../Zotlabs/Module/Connections.php:350
-msgid "Call"
+#: ../../Zotlabs/Widget/Permcats.php:93
+msgid "Role members"
msgstr ""
-#: ../../Zotlabs/Module/Connections.php:352
-msgid "Status"
-msgstr "Status"
+#: ../../Zotlabs/Widget/Newmember.php:38
+msgid "Profile Creation"
+msgstr "Oppretting av profil"
-#: ../../Zotlabs/Module/Connections.php:355
-msgid "Connected"
-msgstr "Forbundet"
+#: ../../Zotlabs/Widget/Newmember.php:40
+msgid "Upload profile photo"
+msgstr "Last opp profilbilde"
-#: ../../Zotlabs/Module/Connections.php:359
-msgid "Ignore connection"
-msgstr "Ignorer forbindelse"
+#: ../../Zotlabs/Widget/Newmember.php:41
+msgid "Upload cover photo"
+msgstr "Last opp omslagsbilde"
-#: ../../Zotlabs/Module/Connections.php:361
-msgid "Recent activity"
-msgstr "Nylig aktivitet"
+#: ../../Zotlabs/Widget/Newmember.php:45
+msgid "Find and Connect with others"
+msgstr "Finn andre"
-#: ../../Zotlabs/Module/Connections.php:367
-msgid "Connect at this location"
-msgstr ""
+#: ../../Zotlabs/Widget/Newmember.php:47
+msgid "View the directory"
+msgstr "Se i katalogen"
-#: ../../Zotlabs/Module/Connections.php:404
-#: ../../Zotlabs/Module/Connedit.php:686
-msgid "Contact role"
-msgstr ""
+#: ../../Zotlabs/Widget/Newmember.php:49
+msgid "Manage your connections"
+msgstr "Behandle forbindelser"
-#: ../../Zotlabs/Module/Connections.php:405
-msgid "Search your connections"
-msgstr "Søk blant dine forbindelser"
+#: ../../Zotlabs/Widget/Newmember.php:52
+msgid "Communicate"
+msgstr "Kommuniser"
-#: ../../Zotlabs/Module/Connections.php:406
-msgid "Contact search"
-msgstr ""
+#: ../../Zotlabs/Widget/Newmember.php:54
+msgid "View your channel homepage"
+msgstr "Vis kanalens hjemmeside"
-#: ../../Zotlabs/Module/Cover_photo.php:196
-#: ../../Zotlabs/Module/Cover_photo.php:254
-msgid "Cover Photos"
-msgstr "Forsidebilder"
+#: ../../Zotlabs/Widget/Newmember.php:55
+msgid "View your network stream"
+msgstr "Vis nettverksstrømmen"
-#: ../../Zotlabs/Module/Cover_photo.php:418
-msgid "Your cover photo may be visible to anybody on the internet"
-msgstr ""
+#: ../../Zotlabs/Widget/Newmember.php:61
+msgid "Documentation"
+msgstr "Dokumentasjon"
-#: ../../Zotlabs/Module/Cover_photo.php:420
-msgid "Upload File:"
-msgstr "Last opp fil:"
+#: ../../Zotlabs/Widget/Newmember.php:64
+msgid "Missing Features?"
+msgstr "Noe som mangler?"
-#: ../../Zotlabs/Module/Cover_photo.php:421
-msgid "Select a profile:"
-msgstr "Velg en profil:"
+#: ../../Zotlabs/Widget/Newmember.php:66
+msgid "Pin apps to navigation bar"
+msgstr "Fest apper til navigasjonslinjen"
-#: ../../Zotlabs/Module/Cover_photo.php:422
-#, fuzzy
-msgid "Change Cover Photo"
-msgstr "Endre omslagsbilde"
+#: ../../Zotlabs/Widget/Newmember.php:67
+msgid "Install more apps"
+msgstr "Legg til flere apper"
-#: ../../Zotlabs/Module/Cover_photo.php:438
-msgid "Select existing photo"
+#: ../../Zotlabs/Widget/Newmember.php:78
+msgid "View public stream"
msgstr ""
-#: ../../Zotlabs/Module/Cover_photo.php:458
-msgid "Done Editing"
-msgstr "Avslutt redigering"
+#: ../../Zotlabs/Widget/Follow.php:34
+msgid "Add New Connection"
+msgstr "Legg til ny forbindelse"
-#: ../../Zotlabs/Module/Photos.php:84 ../../Zotlabs/Module/Photos.php:103
-msgid "Album not found."
-msgstr "Albumet ble ikke funnet."
+#: ../../Zotlabs/Widget/Follow.php:35
+msgid "Enter channel address"
+msgstr "Skriv kanaladressen"
-#: ../../Zotlabs/Module/Photos.php:93
-msgid "Delete Album"
-msgstr "Slett album"
+#: ../../Zotlabs/Widget/Follow.php:36
+msgid "Examples: bob@example.com, https://example.com/barbara"
+msgstr "Eksempel: ola@eksempel.no, https://eksempel.no/kari"
-#: ../../Zotlabs/Module/Photos.php:165 ../../Zotlabs/Module/Photos.php:1054
-msgid "Delete Photo"
-msgstr "Slett bilde"
+#: ../../Zotlabs/Widget/Admin.php:28 ../../Zotlabs/Widget/Admin.php:66
+msgid "Member registrations waiting for confirmation"
+msgstr ""
-#: ../../Zotlabs/Module/Photos.php:522
-msgid "No photos selected"
-msgstr "Ingen bilder valgt"
+#: ../../Zotlabs/Widget/Admin.php:34
+msgid "Inspect queue"
+msgstr "Inspiser kø"
-#: ../../Zotlabs/Module/Photos.php:571
-msgid "Access to this item is restricted."
-msgstr "Tilgang til dette elementet er begrenset."
+#: ../../Zotlabs/Widget/Admin.php:35
+msgid "Queueworker"
+msgstr ""
-#: ../../Zotlabs/Module/Photos.php:614
-#, php-format
-msgid "%1$.2f MB photo storage used."
-msgstr "%1$.2f MB lagringsplass til bilder er brukt."
+#: ../../Zotlabs/Widget/Admin.php:37
+msgid "DB updates"
+msgstr "Databaseoppdateringer"
-#: ../../Zotlabs/Module/Photos.php:618
-#, 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."
+#: ../../Zotlabs/Widget/Admin.php:62
+msgid "Addon Features"
+msgstr ""
-#: ../../Zotlabs/Module/Photos.php:660
-msgid "Upload Photos"
-msgstr "Last opp bilder"
+#: ../../Zotlabs/Widget/Chatroom_list.php:26
+msgid "Overview"
+msgstr ""
-#: ../../Zotlabs/Module/Photos.php:664
-msgid "Enter an album name"
-msgstr "Skriv et albumnavn"
+#: ../../Zotlabs/Widget/Cdav.php:41
+msgid "Select Channel"
+msgstr ""
-#: ../../Zotlabs/Module/Photos.php:665
-msgid "or select an existing album (doubleclick)"
-msgstr "eller velg et eksisterende album (dobbeltklikk)"
+#: ../../Zotlabs/Widget/Cdav.php:46
+msgid "Read-write"
+msgstr ""
-#: ../../Zotlabs/Module/Photos.php:666
-msgid "Create a status post for this upload"
-msgstr "Lag et statusinnlegg for denne opplastingen"
+#: ../../Zotlabs/Widget/Cdav.php:47
+msgid "Read-only"
+msgstr ""
-#: ../../Zotlabs/Module/Photos.php:668
-msgid "Description (optional)"
+#: ../../Zotlabs/Widget/Cdav.php:133
+msgid "Channel Calendar"
msgstr ""
-#: ../../Zotlabs/Module/Photos.php:756
-msgid "Show Newest First"
-msgstr "Vis nyeste først"
+#: ../../Zotlabs/Widget/Cdav.php:137
+msgid "Shared CalDAV Calendars"
+msgstr ""
-#: ../../Zotlabs/Module/Photos.php:758
-msgid "Show Oldest First"
-msgstr "Vis eldste først"
+#: ../../Zotlabs/Widget/Cdav.php:141
+msgid "Share this calendar"
+msgstr ""
-#: ../../Zotlabs/Module/Photos.php:815 ../../Zotlabs/Module/Photos.php:1354
-msgid "Add Photos"
+#: ../../Zotlabs/Widget/Cdav.php:143
+msgid "Calendar name and color"
msgstr ""
-#: ../../Zotlabs/Module/Photos.php:863
-msgid "Permission denied. Access to this item may be restricted."
-msgstr "Tillatelse avvist. Tilgang til dette elementet kan være begrenset."
+#: ../../Zotlabs/Widget/Cdav.php:145
+msgid "Create new CalDAV calendar"
+msgstr ""
-#: ../../Zotlabs/Module/Photos.php:865
-msgid "Photo not available"
-msgstr "Bilde er utilgjengelig"
+#: ../../Zotlabs/Widget/Cdav.php:147
+msgid "Calendar Name"
+msgstr ""
-#: ../../Zotlabs/Module/Photos.php:923
-msgid "Use as profile photo"
-msgstr "Bruk som profilbilde"
+#: ../../Zotlabs/Widget/Cdav.php:148
+msgid "Calendar Tools"
+msgstr ""
-#: ../../Zotlabs/Module/Photos.php:924
-msgid "Use as cover photo"
-msgstr "Bruk som omslagsbilde"
+#: ../../Zotlabs/Widget/Cdav.php:150
+msgid "Import calendar"
+msgstr ""
-#: ../../Zotlabs/Module/Photos.php:931
-msgid "Private Photo"
-msgstr "Privat bilde"
+#: ../../Zotlabs/Widget/Cdav.php:151
+msgid "Select a calendar to import to"
+msgstr ""
-#: ../../Zotlabs/Module/Photos.php:946
-msgid "View Full Size"
-msgstr "Vis i full størrelse"
+#: ../../Zotlabs/Widget/Cdav.php:178
+msgid "Addressbooks"
+msgstr ""
-#: ../../Zotlabs/Module/Photos.php:1028
-msgid "Edit photo"
-msgstr "Endre bilde"
+#: ../../Zotlabs/Widget/Cdav.php:180
+msgid "Addressbook name"
+msgstr ""
-#: ../../Zotlabs/Module/Photos.php:1030
-msgid "Rotate CW (right)"
-msgstr "Roter med klokka (mot høyre)"
+#: ../../Zotlabs/Widget/Cdav.php:182
+msgid "Create new addressbook"
+msgstr ""
-#: ../../Zotlabs/Module/Photos.php:1031
-msgid "Rotate CCW (left)"
-msgstr "Roter mot klokka (venstre)"
+#: ../../Zotlabs/Widget/Cdav.php:183
+msgid "Addressbook Name"
+msgstr ""
-#: ../../Zotlabs/Module/Photos.php:1034
-msgid "Move photo to album"
+#: ../../Zotlabs/Widget/Cdav.php:185
+msgid "Addressbook Tools"
msgstr ""
-#: ../../Zotlabs/Module/Photos.php:1035
-msgid "Enter a new album name"
-msgstr "Skriv et nytt albumnavn"
+#: ../../Zotlabs/Widget/Cdav.php:186
+msgid "Import addressbook"
+msgstr ""
-#: ../../Zotlabs/Module/Photos.php:1036
-msgid "or select an existing one (doubleclick)"
-msgstr "eller velg et eksisterende album (dobbeltklikk)"
+#: ../../Zotlabs/Widget/Cdav.php:187
+msgid "Select an addressbook to import to"
+msgstr ""
-#: ../../Zotlabs/Module/Photos.php:1041
-msgid "Add a Tag"
-msgstr "Legg til merkelapp"
+#: ../../Zotlabs/Widget/Activity_order.php:96
+msgid "Commented Date"
+msgstr "Sist kommentert"
-#: ../../Zotlabs/Module/Photos.php:1049
-msgid "Example: @bob, @Barbara_Jensen, @jim@example.com"
-msgstr "Eksempel: @bob, @Barbara_Jensen, @jim@example.com"
+#: ../../Zotlabs/Widget/Activity_order.php:100
+msgid "Order by last commented date"
+msgstr "Sorter etter dato for siste kommentar"
-#: ../../Zotlabs/Module/Photos.php:1052
-msgid "Flag as adult in album view"
-msgstr "Flag som voksent i albumvisning"
+#: ../../Zotlabs/Widget/Activity_order.php:103
+msgid "Posted Date"
+msgstr "Innleggsdato"
-#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:310
-msgid "I like this (toggle)"
-msgstr "Jeg liker dette (skru av og på)"
+#: ../../Zotlabs/Widget/Activity_order.php:107
+msgid "Order by last posted date"
+msgstr "Sorter etter dato innlegg ble postet"
-#: ../../Zotlabs/Module/Photos.php:1072 ../../Zotlabs/Lib/ThreadItem.php:311
-msgid "I don't like this (toggle)"
-msgstr "Jeg liker ikke dette (skru av og på)"
+#: ../../Zotlabs/Widget/Activity_order.php:110
+msgid "Date Unthreaded"
+msgstr "Utrådet"
-#: ../../Zotlabs/Module/Photos.php:1090 ../../Zotlabs/Module/Photos.php:1203
-#: ../../Zotlabs/Lib/ThreadItem.php:828
-msgid "This is you"
-msgstr "Dette er deg"
+#: ../../Zotlabs/Widget/Activity_order.php:114
+msgid "Order unthreaded by date"
+msgstr "Sorter innlegg og kommentarer uavhengig av hverandre etter dato"
-#: ../../Zotlabs/Module/Photos.php:1124 ../../Zotlabs/Module/Photos.php:1136
-#: ../../Zotlabs/Lib/ThreadItem.php:229 ../../Zotlabs/Lib/ThreadItem.php:242
-msgid "View all"
-msgstr "Vis alle"
+#: ../../Zotlabs/Widget/Activity_order.php:129
+msgid "Stream Order"
+msgstr "Sortering av innlegg"
-#: ../../Zotlabs/Module/Photos.php:1237
-msgid "Photo Tools"
-msgstr "Fotoverktøy"
+#: ../../Zotlabs/Widget/Chatroom_members.php:17
+msgid "Chat Members"
+msgstr ""
-#: ../../Zotlabs/Module/Photos.php:1246
-msgid "In This Photo:"
-msgstr "I dette bildet:"
+#: ../../util/nconfig.php:34
+msgid "Source channel not found."
+msgstr "Fant ikke kildekanalen."
-#: ../../Zotlabs/Module/Photos.php:1251
-msgid "Map"
-msgstr "Kart"
+#: ../../extend/addon/hzaddons/gravatar/gravatar.php:123
+msgid "generic profile image"
+msgstr ""
-#: ../../Zotlabs/Module/Photos.php:1259 ../../Zotlabs/Lib/ThreadItem.php:490
-msgctxt "noun"
-msgid "Likes"
-msgstr "Liker"
+#: ../../extend/addon/hzaddons/gravatar/gravatar.php:124
+msgid "random geometric pattern"
+msgstr ""
-#: ../../Zotlabs/Module/Photos.php:1260 ../../Zotlabs/Lib/ThreadItem.php:491
-msgctxt "noun"
-msgid "Dislikes"
-msgstr "Liker ikke"
+#: ../../extend/addon/hzaddons/gravatar/gravatar.php:125
+msgid "monster face"
+msgstr ""
-#: ../../Zotlabs/Module/Lostpass.php:19
-msgid "No valid account found."
-msgstr "Ingen gyldig konto funnet."
+#: ../../extend/addon/hzaddons/gravatar/gravatar.php:126
+msgid "computer generated 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."
+#: ../../extend/addon/hzaddons/gravatar/gravatar.php:127
+msgid "retro arcade style face"
+msgstr ""
-#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:108
-#, php-format
-msgid "Site Member (%s)"
-msgstr "Nettstedsmedlem (%s)"
+#: ../../extend/addon/hzaddons/gravatar/gravatar.php:128
+msgid "Hub default profile photo"
+msgstr ""
-#: ../../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"
+#: ../../extend/addon/hzaddons/gravatar/gravatar.php:143
+msgid "Information"
+msgstr ""
-#: ../../Zotlabs/Module/Lostpass.php:68
+#: ../../extend/addon/hzaddons/gravatar/gravatar.php:143
msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
+"Libravatar addon is installed, too. Please disable Libravatar addon or this "
+"Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if "
+"nothing was found at Libravatar."
msgstr ""
-"Forespørsel kunne ikke bekreftes. (Du kan ha sendt den inn tidligere.) "
-"Tilbakestilling av passord mislyktes."
-#: ../../Zotlabs/Module/Lostpass.php:91 ../../boot.php:1755
-msgid "Password Reset"
-msgstr "Tilbakestill passord"
-
-#: ../../Zotlabs/Module/Lostpass.php:92
-msgid "Your password has been reset as requested."
-msgstr "Ditt passord har blitt tilbakestilt som forespurt."
+#: ../../extend/addon/hzaddons/gravatar/gravatar.php:150
+#: ../../extend/addon/hzaddons/xmpp/xmpp.php:43
+#: ../../extend/addon/hzaddons/msgfooter/msgfooter.php:46
+msgid "Save Settings"
+msgstr ""
-#: ../../Zotlabs/Module/Lostpass.php:93
-msgid "Your new password is"
-msgstr "Ditt nye passord er"
+#: ../../extend/addon/hzaddons/gravatar/gravatar.php:151
+msgid "Default avatar image"
+msgstr ""
-#: ../../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"
+#: ../../extend/addon/hzaddons/gravatar/gravatar.php:151
+msgid "Select default avatar image if none was found at Gravatar. See README"
+msgstr ""
-#: ../../Zotlabs/Module/Lostpass.php:95
-msgid "click here to login"
-msgstr "klikke her for å logge inn"
+#: ../../extend/addon/hzaddons/gravatar/gravatar.php:152
+msgid "Rating of images"
+msgstr ""
-#: ../../Zotlabs/Module/Lostpass.php:96
-msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
+#: ../../extend/addon/hzaddons/gravatar/gravatar.php:152
+msgid "Select the appropriate avatar rating for your site. See README"
msgstr ""
-"Ditt passord kan endres på siden <em>Innstillinger</em> etter vellykket "
-"innlogging."
-#: ../../Zotlabs/Module/Lostpass.php:117
-#, php-format
-msgid "Your password has changed at %s"
-msgstr "Ditt passord er endret hos %s"
+#: ../../extend/addon/hzaddons/gravatar/gravatar.php:165
+msgid "Gravatar settings updated."
+msgstr ""
-#: ../../Zotlabs/Module/Lostpass.php:130
-msgid "Forgot your Password?"
-msgstr "Glemt passord ditt?"
+#: ../../extend/addon/hzaddons/sendzid/Mod_Sendzid.php:21
+msgid "Send your identity to all websites"
+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."
+#: ../../extend/addon/hzaddons/sendzid/Mod_Sendzid.php:29
+msgid "Send ZID"
msgstr ""
-"Skriv e-postadressen din og send inn for å tilbakestille passordet ditt. "
-"Sjekk deretter din e-post for videre instruksjoner."
-#: ../../Zotlabs/Module/Lostpass.php:132
-msgid "Email Address"
-msgstr "E-postadresse"
+#: ../../extend/addon/hzaddons/ldapauth/ldapauth.php:101
+msgid "An account has been created for you."
+msgstr ""
-#: ../../Zotlabs/Module/Lostpass.php:133 ../../Zotlabs/Module/Pdledit.php:76
-#: ../../Zotlabs/Module/Pdledit.php:93
-msgid "Reset"
-msgstr "Tilbakestill"
+#: ../../extend/addon/hzaddons/ldapauth/ldapauth.php:108
+msgid "Authentication successful but rejected: account creation is disabled."
+msgstr ""
-#: ../../Zotlabs/Module/Follow.php:92
-msgid "Connection added."
+#: ../../extend/addon/hzaddons/cart/cart.php:259
+msgid "DB Cleanup Failure"
msgstr ""
-#: ../../Zotlabs/Module/Page.php:39 ../../Zotlabs/Module/Block.php:29
-msgid "Invalid item."
-msgstr "Ugyldig element."
+#: ../../extend/addon/hzaddons/cart/cart.php:692
+msgid "[cart] Item Added"
+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."
+#: ../../extend/addon/hzaddons/cart/cart.php:1107
+msgid "Order already checked out."
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."
-#: ../../Zotlabs/Module/Profiles.php:26 ../../Zotlabs/Module/Profiles.php:214
-#: ../../Zotlabs/Module/Profiles.php:642
-msgid "Profile not found."
-msgstr "Profilen ble ikke funnet."
+#: ../../extend/addon/hzaddons/cart/cart.php:1416
+msgid "Drop database tables when uninstalling."
+msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:46
-msgid "Profile deleted."
-msgstr "Profilen er slettet."
+#: ../../extend/addon/hzaddons/cart/cart.php:1423
+#: ../../extend/addon/hzaddons/cart/Settings/Cart.php:129
+msgid "Cart Settings"
+msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:70 ../../Zotlabs/Module/Profiles.php:107
-msgid "Profile-"
-msgstr "Profil-"
+#: ../../extend/addon/hzaddons/cart/cart.php:1435
+#: ../../extend/addon/hzaddons/cart/cart.php:1438
+msgid "Shop"
+msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:92 ../../Zotlabs/Module/Profiles.php:129
-msgid "New profile created."
-msgstr "Ny profil opprettet."
+#: ../../extend/addon/hzaddons/cart/cart.php:1458
+#: ../../extend/addon/hzaddons/faces/Mod_Faces.php:64
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:36
+#: ../../extend/addon/hzaddons/flashcards/Mod_Flashcards.php:52
+msgid "Profile Unavailable."
+msgstr "Profilen er ikke tilgjengelig."
-#: ../../Zotlabs/Module/Profiles.php:113
-msgid "Profile unavailable to clone."
-msgstr "Profilen er utilgjengelig for klonen."
+#: ../../extend/addon/hzaddons/cart/cart.php:1494
+#: ../../extend/addon/hzaddons/cart/myshop.php:113
+msgid "Order Not Found"
+msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:148
-msgid "Profile unavailable to export."
-msgstr "Profilen er utilgjengelig for eksport."
+#: ../../extend/addon/hzaddons/cart/cart.php:1598
+msgid "You must be logged into the Grid to shop."
+msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:224
-msgid "Profile Name is required."
-msgstr "Profilnavn er påkrevd."
+#: ../../extend/addon/hzaddons/cart/cart.php:1609
+#: ../../extend/addon/hzaddons/cart/submodules/paypalbuttonV2.php:486
+#: ../../extend/addon/hzaddons/cart/submodules/paypalbutton.php:456
+#: ../../extend/addon/hzaddons/cart/myshop.php:37
+#: ../../extend/addon/hzaddons/cart/manual_payments.php:93
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:81
+msgid "Invalid channel"
+msgstr "Ugyldig kanal"
-#: ../../Zotlabs/Module/Profiles.php:429
-msgid "Marital Status"
-msgstr "Sivilstand"
+#: ../../extend/addon/hzaddons/cart/cart.php:1631
+#: ../../extend/addon/hzaddons/cart/submodules/paypalbuttonV2.php:417
+#: ../../extend/addon/hzaddons/cart/submodules/paypalbutton.php:392
+#: ../../extend/addon/hzaddons/cart/manual_payments.php:68
+msgid "Order not found."
+msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:433
-msgid "Romantic Partner"
-msgstr "Romantisk partner"
+#: ../../extend/addon/hzaddons/cart/cart.php:1647
+#, fuzzy
+msgid "Access denied."
+msgstr "Ingen tilgang"
-#: ../../Zotlabs/Module/Profiles.php:437 ../../Zotlabs/Module/Profiles.php:788
-msgid "Likes"
-msgstr "Liker"
+#: ../../extend/addon/hzaddons/cart/cart.php:1699
+#: ../../extend/addon/hzaddons/cart/cart.php:1842
+msgid "No Order Found"
+msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:441 ../../Zotlabs/Module/Profiles.php:789
-msgid "Dislikes"
-msgstr "Liker ikke"
+#: ../../extend/addon/hzaddons/cart/cart.php:1708
+msgid "An unknown error has occurred Please start again."
+msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:445 ../../Zotlabs/Module/Profiles.php:796
-msgid "Work/Employment"
-msgstr "Arbeid/sysselsetting"
+#: ../../extend/addon/hzaddons/cart/cart.php:1851
+msgid "Requirements not met."
+msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:448
-msgid "Religion"
-msgstr "Religion"
+#: ../../extend/addon/hzaddons/cart/cart.php:1851
+msgid "Review your order and complete any needed requirements."
+msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:452
-msgid "Political Views"
-msgstr "Politiske synspunkter"
+#: ../../extend/addon/hzaddons/cart/cart.php:1877
+msgid "Invalid Payment Type. Please start again."
+msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:460
-msgid "Sexual Preference"
-msgstr "Seksuelle preferanser"
+#: ../../extend/addon/hzaddons/cart/cart.php:1884
+msgid "Order not found"
+msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:464
-msgid "Homepage"
-msgstr "Hjemmeside"
+#: ../../extend/addon/hzaddons/cart/submodules/orderoptions.php:70
+msgid "Enable Order/Item Options"
+msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:468
-msgid "Interests"
-msgstr "Interesser"
+#: ../../extend/addon/hzaddons/cart/submodules/orderoptions.php:333
+#: ../../extend/addon/hzaddons/cart/submodules/orderoptions.php:357
+#: ../../extend/addon/hzaddons/cart/submodules/orderoptions.php:433
+#: ../../extend/addon/hzaddons/cart/submodules/orderoptions.php:457
+msgid "Label"
+msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:576
-msgid "Profile updated."
-msgstr "Profilen er oppdatert."
+#: ../../extend/addon/hzaddons/cart/submodules/orderoptions.php:336
+#: ../../extend/addon/hzaddons/cart/submodules/orderoptions.php:360
+#: ../../extend/addon/hzaddons/cart/submodules/orderoptions.php:436
+#: ../../extend/addon/hzaddons/cart/submodules/orderoptions.php:460
+msgid "Instructions"
+msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:672
-msgid "Hide my connections from viewers of this profile"
+#: ../../extend/addon/hzaddons/cart/submodules/subscriptions.php:151
+msgid "Enable Subscription Management Module"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:685
-msgid "Publish my default profile in the network directory"
+#: ../../extend/addon/hzaddons/cart/submodules/subscriptions.php:223
+msgid ""
+"Cannot include subscription items with different terms in the same order."
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:693
-msgid "Suggest me as a potential contact to new members"
+#: ../../extend/addon/hzaddons/cart/submodules/subscriptions.php:372
+msgid "Select Subscription to Edit"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:697
-msgid "Reveal my online status"
+#: ../../extend/addon/hzaddons/cart/submodules/subscriptions.php:380
+msgid "Edit Subscriptions"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:738
-msgid "Edit Profile Details"
-msgstr "Endre profildetaljer"
+#: ../../extend/addon/hzaddons/cart/submodules/subscriptions.php:414
+msgid "Subscription SKU"
+msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:740
-msgid "View this profile"
-msgstr "Vis denne profilen"
+#: ../../extend/addon/hzaddons/cart/submodules/subscriptions.php:419
+msgid "Catalog Description"
+msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:742
-msgid "Profile Tools"
-msgstr "Profilverktøy"
+#: ../../extend/addon/hzaddons/cart/submodules/subscriptions.php:423
+msgid "Subscription available for purchase."
+msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:743
-msgid "Change cover photo"
-msgstr "Endre omslagsbilde"
+#: ../../extend/addon/hzaddons/cart/submodules/subscriptions.php:428
+msgid "Maximum active subscriptions to this item per account."
+msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:745
-msgid "Create a new profile using these settings"
-msgstr "Lag en ny profil ved å bruke disse innstillingene"
+#: ../../extend/addon/hzaddons/cart/submodules/subscriptions.php:431
+msgid "Subscription price."
+msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:746
-msgid "Clone this profile"
-msgstr "Klon denne profilen"
+#: ../../extend/addon/hzaddons/cart/submodules/subscriptions.php:435
+msgid "Quantity"
+msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:747
-msgid "Delete this profile"
-msgstr "Slett denne profilen"
+#: ../../extend/addon/hzaddons/cart/submodules/subscriptions.php:439
+msgid "Term"
+msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:748
-msgid "Add profile things"
-msgstr "Legg til profilting"
+#: ../../extend/addon/hzaddons/cart/submodules/manualcat.php:61
+msgid "Enable Manual Cart Module"
+msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:749
-msgid "Basic"
+#: ../../extend/addon/hzaddons/cart/submodules/manualcat.php:172
+#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:164
+msgid "New Sku"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:751
-msgid "Relationship"
+#: ../../extend/addon/hzaddons/cart/submodules/manualcat.php:208
+#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:199
+msgid "Cannot save edits to locked item."
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:754
-msgid "Import profile from file"
-msgstr "Importer profil fra fil"
+#: ../../extend/addon/hzaddons/cart/submodules/manualcat.php:252
+#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:649
+msgid "Changes Locked"
+msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:755
-msgid "Export profile to file"
-msgstr "Eksporter profil til fil"
+#: ../../extend/addon/hzaddons/cart/submodules/manualcat.php:256
+#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:653
+msgid "Item available for purchase."
+msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:756
-msgid "Your gender"
-msgstr "Kjønn"
+#: ../../extend/addon/hzaddons/cart/submodules/manualcat.php:263
+#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:660
+#: ../../extend/addon/hzaddons/cart/widgets/catalogitem.php:57
+msgid "Price"
+msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:757
-msgid "Marital status"
-msgstr "Sivilstatus"
+#: ../../extend/addon/hzaddons/cart/submodules/manualcat.php:266
+#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:663
+msgid "Photo URL"
+msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:758
-msgid "Sexual preference"
-msgstr "Legning"
+#: ../../extend/addon/hzaddons/cart/submodules/paypalbuttonV2.php:86
+msgid "Enable Paypal Button Module (API-v2)"
+msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:761
-msgid "Profile name"
-msgstr "Profilnavn"
+#: ../../extend/addon/hzaddons/cart/submodules/paypalbuttonV2.php:96
+#: ../../extend/addon/hzaddons/cart/submodules/paypalbutton.php:93
+msgid "Use Production Key"
+msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:763
-msgid "This is your default profile."
-msgstr "Dette er din standardprofil."
+#: ../../extend/addon/hzaddons/cart/submodules/paypalbuttonV2.php:103
+#: ../../extend/addon/hzaddons/cart/submodules/paypalbutton.php:100
+msgid "Paypal Sandbox Client Key"
+msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:765
-msgid "Your full name"
-msgstr "Fullt navn"
+#: ../../extend/addon/hzaddons/cart/submodules/paypalbuttonV2.php:110
+#: ../../extend/addon/hzaddons/cart/submodules/paypalbutton.php:107
+msgid "Paypal Sandbox Secret Key"
+msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:766
-msgid "Short title/description"
+#: ../../extend/addon/hzaddons/cart/submodules/paypalbuttonV2.php:116
+#: ../../extend/addon/hzaddons/cart/submodules/paypalbutton.php:113
+msgid "Paypal Production Client Key"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:766
-msgid "Maximal 190 characters"
+#: ../../extend/addon/hzaddons/cart/submodules/paypalbuttonV2.php:123
+#: ../../extend/addon/hzaddons/cart/submodules/paypalbutton.php:120
+msgid "Paypal Production Secret Key"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:769
-msgid "Street address"
-msgstr "Gateadresse"
+#: ../../extend/addon/hzaddons/cart/submodules/paypalbuttonV2.php:271
+#: ../../extend/addon/hzaddons/cart/submodules/paypalbutton.php:252
+msgid "Paypal button payments are not enabled."
+msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:770
-msgid "Locality/City"
-msgstr "Sted/by"
+#: ../../extend/addon/hzaddons/cart/submodules/paypalbuttonV2.php:289
+#: ../../extend/addon/hzaddons/cart/submodules/paypalbutton.php:270
+msgid ""
+"Paypal button payments are not properly configured. Please choose another "
+"payment option."
+msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:771
-msgid "Region/State"
-msgstr "Region"
+#: ../../extend/addon/hzaddons/cart/submodules/paypalbutton.php:85
+msgid "Enable Paypal Button Module"
+msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:772
-msgid "Postal/Zip code"
-msgstr "Postnummer"
+#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:65
+msgid "Enable Hubzilla Services Module"
+msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:778
-msgid "Who (if applicable)"
-msgstr "Hvem (om relevant)"
+#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:248
+#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:335
+msgid "SKU not found."
+msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:778
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
-msgstr "Eksempler: kari123, Kari Villiamsen, kari@example.com"
+#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:301
+#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:305
+msgid "Invalid Activation Directive."
+msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:779
-msgid "Since (date)"
-msgstr "Fra (dato)"
+#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:376
+#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:380
+msgid "Invalid Deactivation Directive."
+msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:782
-msgid "Tell us about yourself"
-msgstr "Fortell oss om deg selv"
+#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:566
+msgid "Add to this privacy group"
+msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:784
-msgid "Hometown"
-msgstr "Hjemsted"
+#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:582
+msgid "Set user service class"
+msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:785
-msgid "Political views"
-msgstr "Politiske holdninger"
+#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:609
+msgid "You must be using a local account to purchase this service."
+msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:786
-msgid "Religious views"
-msgstr "Religiøse holdninger"
+#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:667
+msgid "Add buyer to privacy group"
+msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:787
-msgid "Keywords used in directory listings"
-msgstr "Nøkkelord for bruk i katalogoppføringen"
+#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:672
+msgid "Add buyer as connection"
+msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:787
-msgid "Example: fishing photography software"
-msgstr "Eksempel: fisking fotografering programvare"
+#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:680
+#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:722
+msgid "Set Service Class"
+msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:790
-msgid "Musical interests"
-msgstr "Musikkinteresser"
+#: ../../extend/addon/hzaddons/cart/myshop.php:30
+#, fuzzy
+msgid "Access Denied."
+msgstr "Ingen tilgang"
-#: ../../Zotlabs/Module/Profiles.php:791
-msgid "Books, literature"
-msgstr "Bøker, litteratur"
+#: ../../extend/addon/hzaddons/cart/myshop.php:145
+#: ../../extend/addon/hzaddons/cart/myshop.php:181
+#: ../../extend/addon/hzaddons/cart/myshop.php:215
+#: ../../extend/addon/hzaddons/cart/myshop.php:265
+#: ../../extend/addon/hzaddons/cart/myshop.php:300
+#: ../../extend/addon/hzaddons/cart/myshop.php:323
+msgid "Access Denied"
+msgstr "Ingen tilgang"
-#: ../../Zotlabs/Module/Profiles.php:792
-msgid "Television"
-msgstr "TV/fjernsyn"
+#: ../../extend/addon/hzaddons/cart/myshop.php:190
+#: ../../extend/addon/hzaddons/cart/myshop.php:224
+#: ../../extend/addon/hzaddons/cart/myshop.php:275
+#: ../../extend/addon/hzaddons/cart/myshop.php:333
+#, fuzzy
+msgid "Invalid Item"
+msgstr "Ugyldig element."
-#: ../../Zotlabs/Module/Profiles.php:793
-msgid "Film/Dance/Culture/Entertainment"
-msgstr "Film/dans/kultur/underholdning"
+#: ../../extend/addon/hzaddons/cart/manual_payments.php:7
+msgid "Error: order mismatch. Please try again."
+msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:794
-msgid "Hobbies/Interests"
-msgstr "Hobbier/Interesser"
+#: ../../extend/addon/hzaddons/cart/manual_payments.php:61
+msgid "Manual payments are not enabled."
+msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:795
-msgid "Love/Romance"
-msgstr "Kjærlighet/romantikk"
+#: ../../extend/addon/hzaddons/cart/manual_payments.php:77
+msgid "Finished"
+msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:797
-msgid "School/Education"
-msgstr "Skolle/utdanning"
+#: ../../extend/addon/hzaddons/cart/Settings/Cart.php:58
+msgid "Enable Test Catalog"
+msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:798
-msgid "Contact information and social networks"
-msgstr "Kontaktinformasjon og andre sosiale nettverk"
+#: ../../extend/addon/hzaddons/cart/Settings/Cart.php:70
+msgid "Enable Manual Payments"
+msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:799
-msgid "My other channels"
-msgstr "Mine andre kanaler"
+#: ../../extend/addon/hzaddons/cart/Settings/Cart.php:90
+msgid "Base Merchant Currency"
+msgstr ""
-#: ../../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"
+#: ../../extend/addon/hzaddons/articles/Mod_Article_edit.php:127
+msgid "Edit Article"
+msgstr ""
-#: ../../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"
+#: ../../extend/addon/hzaddons/articles/articles.php:51
+msgid "View Articles"
+msgstr ""
-#: ../../Zotlabs/Module/Bookmarks.php:62
-msgid "Bookmark added"
-msgstr "Bokmerke lagt til"
+#: ../../extend/addon/hzaddons/articles/Mod_Articles.php:119
+msgid "Add Article"
+msgstr ""
-#: ../../Zotlabs/Module/Bookmarks.php:101
-msgid "My Connections Bookmarks"
-msgstr "Mine forbindelsers bokmerker"
+#: ../../extend/addon/hzaddons/hzfiles/hzfiles.php:81
+msgid "Hubzilla File Storage Import"
+msgstr ""
-#: ../../Zotlabs/Module/Changeaddr.php:35
-msgid ""
-"Channel name changes are not allowed within 48 hours of changing the account "
-"password."
+#: ../../extend/addon/hzaddons/hzfiles/hzfiles.php:82
+msgid "This will import all your cloud files from another server."
msgstr ""
-#: ../../Zotlabs/Module/Changeaddr.php:77
-msgid "Change channel nickname/address"
+#: ../../extend/addon/hzaddons/hzfiles/hzfiles.php:83
+msgid "Hubzilla Server base URL"
msgstr ""
-#: ../../Zotlabs/Module/Changeaddr.php:78
-msgid "Any/all connections on other networks will be lost!"
+#: ../../extend/addon/hzaddons/hzfiles/hzfiles.php:84
+#: ../../extend/addon/hzaddons/content_import/Mod_content_import.php:138
+msgid "Since modified date yyyy-mm-dd"
msgstr ""
-#: ../../Zotlabs/Module/Changeaddr.php:80
-msgid "New channel address"
+#: ../../extend/addon/hzaddons/hzfiles/hzfiles.php:85
+#: ../../extend/addon/hzaddons/content_import/Mod_content_import.php:139
+msgid "Until modified date yyyy-mm-dd"
msgstr ""
-#: ../../Zotlabs/Module/Changeaddr.php:81
-msgid "Rename Channel"
+#: ../../extend/addon/hzaddons/openstreetmap/openstreetmap.php:125
+msgid "View Larger"
msgstr ""
-#: ../../Zotlabs/Module/Invite.php:69
-msgid "Invite App"
+#: ../../extend/addon/hzaddons/openstreetmap/openstreetmap.php:148
+msgid "Tile Server URL"
msgstr ""
-#: ../../Zotlabs/Module/Invite.php:81
-msgid "Register is closed"
+#: ../../extend/addon/hzaddons/openstreetmap/openstreetmap.php:148
+msgid ""
+"A list of <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" "
+"target=\"_blank\">public tile servers</a>"
msgstr ""
-#: ../../Zotlabs/Module/Invite.php:115 ../../Zotlabs/Module/Invite.php:562
-msgid "Note, the invitation code is valid up to"
+#: ../../extend/addon/hzaddons/openstreetmap/openstreetmap.php:149
+msgid "Nominatim (reverse geocoding) Server URL"
msgstr ""
-#: ../../Zotlabs/Module/Invite.php:128
-#, php-format
-msgid "Too many recipients for one invitation (max %d)"
+#: ../../extend/addon/hzaddons/openstreetmap/openstreetmap.php:149
+msgid ""
+"A list of <a href=\"http://wiki.openstreetmap.org/wiki/Nominatim\" "
+"target=\"_blank\">Nominatim servers</a>"
msgstr ""
-#: ../../Zotlabs/Module/Invite.php:132
-msgid "No recipients for this invitation"
+#: ../../extend/addon/hzaddons/openstreetmap/openstreetmap.php:150
+msgid "Default zoom"
msgstr ""
-#: ../../Zotlabs/Module/Invite.php:151
-#, php-format
-msgid "(%s) : Not a real email address"
-msgstr "(%s): Ikke en virkelig epostadresse"
+#: ../../extend/addon/hzaddons/openstreetmap/openstreetmap.php:150
+msgid ""
+"The default zoom level. (1:world, 18:highest, also depends on tile server)"
+msgstr ""
-#: ../../Zotlabs/Module/Invite.php:158
-#, php-format
-msgid "(%s) : Not allowed email address"
-msgstr "(%s): Ikke en tillatt epostadresse"
+#: ../../extend/addon/hzaddons/openstreetmap/openstreetmap.php:151
+msgid "Include marker on map"
+msgstr ""
-#: ../../Zotlabs/Module/Invite.php:171
-#, php-format
-msgid "(%s) : email address already in use"
-msgstr "(%s): epostadressen er allerede i bruk"
+#: ../../extend/addon/hzaddons/openstreetmap/openstreetmap.php:151
+msgid "Include a marker on the map."
+msgstr ""
-#: ../../Zotlabs/Module/Invite.php:178
-#, php-format
-msgid "(%s) : Accepted email address"
-msgstr "(%s): Godkjent epostadresse"
+#: ../../extend/addon/hzaddons/hsse/Mod_Hsse.php:15
+msgid "WYSIWYG status editor"
+msgstr ""
-#: ../../Zotlabs/Module/Invite.php:270
-#, php-format
-msgid "To %s : Message delivery success."
+#: ../../extend/addon/hzaddons/hsse/Mod_Hsse.php:24
+msgid "WYSIWYG Status App"
msgstr ""
-#: ../../Zotlabs/Module/Invite.php:302
-#, php-format
-msgid "%1$d mail(s) sent, %2$d mail error(s)"
+#: ../../extend/addon/hzaddons/hsse/Mod_Hsse.php:32
+msgid "WYSIWYG Status"
msgstr ""
-#: ../../Zotlabs/Module/Invite.php:327
-msgid "Invites not proposed by configuration"
+#: ../../extend/addon/hzaddons/socialauth/Mod_SocialAuth.php:106
+#: ../../extend/addon/hzaddons/socialauth/Mod_SocialAuth.php:179
+msgid "Network error"
msgstr ""
-#: ../../Zotlabs/Module/Invite.php:328
-msgid "Contact the site admin"
+#: ../../extend/addon/hzaddons/socialauth/Mod_SocialAuth.php:110
+#: ../../extend/addon/hzaddons/socialauth/Mod_SocialAuth.php:183
+msgid "API error"
msgstr ""
-#: ../../Zotlabs/Module/Invite.php:344
-msgid "Invites by users not enabled"
+#: ../../extend/addon/hzaddons/socialauth/Mod_SocialAuth.php:114
+#: ../../extend/addon/hzaddons/socialauth/Mod_SocialAuth.php:187
+msgid "Unknown issue"
msgstr ""
-#: ../../Zotlabs/Module/Invite.php:349
-msgid "You have no more invitations available"
-msgstr "Du har ikke flere invitasjoner tilgjengelig"
+#: ../../extend/addon/hzaddons/socialauth/Mod_SocialAuth.php:152
+msgid "Unable to retrieve email address from remote identity provider"
+msgstr ""
-#: ../../Zotlabs/Module/Invite.php:365
-msgid "Not on xchan"
+#: ../../extend/addon/hzaddons/socialauth/Mod_SocialAuth.php:171
+msgid "Unable to login using email address "
msgstr ""
-#: ../../Zotlabs/Module/Invite.php:398
-msgid "All users invitation limit exceeded."
+#: ../../extend/addon/hzaddons/socialauth/Mod_SocialAuth.php:211
+msgid "Social Authentication using your social media account"
msgstr ""
-#: ../../Zotlabs/Module/Invite.php:416
-msgid "Invitation expires after"
+#: ../../extend/addon/hzaddons/socialauth/Mod_SocialAuth.php:215
+msgid ""
+"This app enables one or more social provider sign-in buttons on the login "
+"page."
msgstr ""
-#: ../../Zotlabs/Module/Invite.php:517 ../../Zotlabs/Module/Invite.php:556
-msgid "Invitation"
+#: ../../extend/addon/hzaddons/socialauth/Mod_SocialAuth.php:233
+msgid "Add an identity provider"
msgstr ""
-#: ../../Zotlabs/Module/Invite.php:547
-msgid "Send invitations"
-msgstr "Send invitasjoner"
+#: ../../extend/addon/hzaddons/socialauth/Mod_SocialAuth.php:260
+#, fuzzy
+msgid "Enable "
+msgstr "Skru på"
-#: ../../Zotlabs/Module/Invite.php:548
-msgid "Invitations I am using"
+#: ../../extend/addon/hzaddons/socialauth/Mod_SocialAuth.php:267
+msgid "Key"
msgstr ""
-#: ../../Zotlabs/Module/Invite.php:549
-msgid "Invitations we are using"
+#: ../../extend/addon/hzaddons/socialauth/Mod_SocialAuth.php:267
+#: ../../extend/addon/hzaddons/socialauth/Mod_SocialAuth.php:272
+#: ../../extend/addon/hzaddons/socialauth/Mod_SocialAuth.php:288
+#: ../../extend/addon/hzaddons/socialauth/Mod_SocialAuth.php:299
+#: ../../extend/addon/hzaddons/socialauth/Mod_SocialAuth.php:308
+msgid "Word"
msgstr ""
-#: ../../Zotlabs/Module/Invite.php:550
-msgid "§ Note, the email(s) sent will be recorded in the system logs"
+#: ../../extend/addon/hzaddons/socialauth/Mod_SocialAuth.php:272
+msgid "Secret"
msgstr ""
-#: ../../Zotlabs/Module/Invite.php:551
-msgid "Enter email addresses, one per line:"
-msgstr "Skriv e-postadresser, en per linje:"
+#: ../../extend/addon/hzaddons/socialauth/Mod_SocialAuth.php:308
+msgid "Add a custom provider"
+msgstr ""
-#: ../../Zotlabs/Module/Invite.php:552
-msgid "Your message:"
-msgstr "Din melding:"
+#: ../../extend/addon/hzaddons/socialauth/Mod_SocialAuth.php:328
+msgid "Remove an identity provider"
+msgstr ""
-#: ../../Zotlabs/Module/Invite.php:553
-msgid "Invite template"
+#: ../../extend/addon/hzaddons/socialauth/Mod_SocialAuth.php:338
+msgid "Social authentication"
msgstr ""
-#: ../../Zotlabs/Module/Invite.php:555
-msgid "Subject:"
-msgstr "Emne:"
+#: ../../extend/addon/hzaddons/socialauth/Mod_SocialAuth.php:380
+msgid "Error while saving provider settings"
+msgstr ""
-#: ../../Zotlabs/Module/Invite.php:561
-msgid "Here you may enter personal notes to the recipient(s)"
+#: ../../extend/addon/hzaddons/socialauth/Mod_SocialAuth.php:403
+msgid "Custom provider already exists"
msgstr ""
-#: ../../Zotlabs/Module/Sse_bs.php:605
-msgid "Private forum"
+#: ../../extend/addon/hzaddons/socialauth/Mod_SocialAuth.php:420
+msgid "Social authentication settings saved."
msgstr ""
-#: ../../Zotlabs/Module/Sse_bs.php:605
-#, fuzzy
-msgid "Public forum"
-msgstr "Offentlig forum:"
+#: ../../extend/addon/hzaddons/pumpio/pumpio.php:152
+msgid "You are now authenticated to pumpio."
+msgstr ""
-#: ../../Zotlabs/Module/Xchan.php:10
-msgid "Xchan Lookup"
-msgstr "Xchan oppslag"
+#: ../../extend/addon/hzaddons/pumpio/pumpio.php:153
+msgid "return to the featured settings page"
+msgstr "tilbake til funksjonsinnstillinger"
-#: ../../Zotlabs/Module/Xchan.php:13
-msgid "Lookup xchan beginning with (or webbie): "
-msgstr "Slå opp xchan som begynner med (eller webbie): "
+#: ../../extend/addon/hzaddons/pumpio/pumpio.php:168
+msgid "Post to Pump.io"
+msgstr ""
-#: ../../Zotlabs/Module/Affinity.php:35
-msgid "Affinity Tool settings updated."
+#: ../../extend/addon/hzaddons/pumpio/Mod_Pumpio.php:40
+msgid "Pump.io Settings saved."
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."
+#: ../../extend/addon/hzaddons/pumpio/Mod_Pumpio.php:71
+msgid "Pump.io servername"
msgstr ""
-#: ../../Zotlabs/Module/Affinity.php:61
-msgid "Default maximum affinity level"
+#: ../../extend/addon/hzaddons/pumpio/Mod_Pumpio.php:71
+msgid "Without \"http://\" or \"https://\""
msgstr ""
-#: ../../Zotlabs/Module/Affinity.php:61
-#, fuzzy
-msgid "0-99 default 99"
-msgstr "Standard"
+#: ../../extend/addon/hzaddons/pumpio/Mod_Pumpio.php:75
+msgid "Pump.io username"
+msgstr ""
-#: ../../Zotlabs/Module/Affinity.php:67
-msgid "Default minimum affinity level"
+#: ../../extend/addon/hzaddons/pumpio/Mod_Pumpio.php:75
+msgid "Without the servername"
msgstr ""
-#: ../../Zotlabs/Module/Affinity.php:67
-#, fuzzy
-msgid "0-99 - default 0"
-msgstr "Standard"
+#: ../../extend/addon/hzaddons/pumpio/Mod_Pumpio.php:86
+msgid "You are not authenticated to pumpio"
+msgstr ""
-#: ../../Zotlabs/Module/Affinity.php:73
-msgid "Persistent affinity levels"
+#: ../../extend/addon/hzaddons/pumpio/Mod_Pumpio.php:88
+msgid "(Re-)Authenticate your pump.io connection"
msgstr ""
-#: ../../Zotlabs/Module/Affinity.php:73
-msgid ""
-"If disabled the max and min levels will be reset to default after page reload"
+#: ../../extend/addon/hzaddons/pumpio/Mod_Pumpio.php:92
+msgid "Post to pump.io by default"
msgstr ""
-#: ../../Zotlabs/Module/Affinity.php:81
-msgid "Affinity Tool Settings"
+#: ../../extend/addon/hzaddons/pumpio/Mod_Pumpio.php:96
+msgid "Should posts be public"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Network.php:42
-#: ../../Zotlabs/Module/Settings/Channel_home.php:46
-msgid "Max height of content (in pixels)"
-msgstr "Maks høyde for innhold (i piksler)"
+#: ../../extend/addon/hzaddons/pumpio/Mod_Pumpio.php:100
+msgid "Mirror all public posts"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Network.php:44
-#: ../../Zotlabs/Module/Settings/Channel_home.php:48
-msgid "Click to expand content exceeding this height"
-msgstr "Klikk for å vise hele innlegg som overskrider denne grensen"
+#: ../../extend/addon/hzaddons/pumpio/Mod_Pumpio.php:110
+msgid "Pump.io Crosspost Connector"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Network.php:59
-msgid "Stream Settings"
-msgstr "Instillinger for tidslinjen"
+#: ../../extend/addon/hzaddons/superblock/superblock.php:355
+msgid "Block Completely"
+msgstr "Blokker helt"
-#: ../../Zotlabs/Module/Settings/Features.php:45
-msgid "Additional Features"
-msgstr "Ekstra funksjoner"
+#: ../../extend/addon/hzaddons/superblock/Mod_Superblock.php:62
+msgid "superblock settings updated"
+msgstr "innstillingene til superblokk ble oppdatert"
-#: ../../Zotlabs/Module/Settings/Channel.php:105
-#: ../../Zotlabs/Module/Settings/Channel.php:217
-msgid "Please select a channel role"
-msgstr "Velg en kanalrolle"
+#: ../../extend/addon/hzaddons/superblock/Mod_Superblock.php:86
+msgid "Currently blocked"
+msgstr "Blokkert for øyeblikket"
-#: ../../Zotlabs/Module/Settings/Channel.php:194
-msgid "Your channel address is"
-msgstr "Din kanaladresse er"
+#: ../../extend/addon/hzaddons/superblock/Mod_Superblock.php:88
+msgid "No channels currently blocked"
+msgstr "Ingen kanaler er blokkert i øyeblikket"
-#: ../../Zotlabs/Module/Settings/Channel.php:197
-msgid "Your files/photos are accessible via WebDAV at"
-msgstr "Dine filer og foto er tilgjengelig via WebDAV på"
+#: ../../extend/addon/hzaddons/gallery/gallery.php:43
+#: ../../extend/addon/hzaddons/gallery/Mod_Gallery.php:135
+msgid "Gallery"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:228
-msgid "Channel Settings"
-msgstr "Kanalinnstillinger"
+#: ../../extend/addon/hzaddons/gallery/gallery.php:46
+msgid "Photo Gallery"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:235
-msgid "Basic Settings"
-msgstr "Grunninnstillinger"
+#: ../../extend/addon/hzaddons/randpost/randpost.php:99
+msgid "You're welcome."
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:236
-msgid "Channel timezone:"
-msgstr "Tidssone for kanalen:"
+#: ../../extend/addon/hzaddons/randpost/randpost.php:100
+msgid "Ah shucks..."
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:237
-msgid "Default post location:"
-msgstr "Standard plassering for innlegg:"
+#: ../../extend/addon/hzaddons/randpost/randpost.php:101
+msgid "Don't mention it."
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:237
-msgid "Geographical location to display on your posts"
-msgstr "Geografisk plassering som vises på dine innlegg"
+#: ../../extend/addon/hzaddons/randpost/randpost.php:102
+msgid "&lt;blush&gt;"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:238
-msgid "Use browser location"
+#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:51
+#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:129
+msgid "System defaults:"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:239
-msgid "Adult content"
-msgstr "Voksent innhold"
+#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:55
+msgid "Preferred Clipart IDs"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:239
-msgid "This channel frequently or regularly publishes adult content"
+#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:55
+msgid "List of preferred clipart ids. These will be shown first."
msgstr ""
-"Denne kanalen vil ofte, eller regelmessig poste innlegg med voksent innhold"
-#: ../../Zotlabs/Module/Settings/Channel.php:240
-msgid "Maximum Friend Requests/Day:"
-msgstr "Maksimalt antall venneforespørsler per dag:"
+#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:56
+msgid "Default Search Term"
+msgstr "Standard søkeord"
-#: ../../Zotlabs/Module/Settings/Channel.php:240
-msgid "May reduce spam activity"
-msgstr "Kan redusere søppelpostaktivitet"
+#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:56
+msgid "The default search term. These will be shown second."
+msgstr "Standard søkeord. Disse vil vises som nummer to."
-#: ../../Zotlabs/Module/Settings/Channel.php:241
-#: ../../Zotlabs/Lib/Enotify.php:68
-msgid "Notification Settings"
-msgstr "Varslingsinnstillinger"
+#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:57
+msgid "Return After"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:242
-msgid "By default post a status message when:"
-msgstr "Legg inn en statusmelding når du:"
+#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:57
+msgid "Page to load after image selection."
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:243
-msgid "accepting a friend request"
-msgstr "aksepterer en venneforespørsel"
+#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:60
+msgid "Profile List"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:244
-msgid "joining a forum/community"
-msgstr "blir med i et forum/miljø"
+#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:62
+msgid "Order of Preferred"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:245
-msgid "making an <em>interesting</em> profile change"
-msgstr "gjør en <em>interessant</em> profilendring"
+#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:62
+msgid "Sort order of preferred clipart ids."
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:246
-msgid "Send a notification email when:"
-msgstr "Send en varsel-e-post når:"
+#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:63
+#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:69
+msgid "Newest first"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:247
-msgid "You receive a connection request"
-msgstr "Du har mottatt en forespørsel om forbindelse"
+#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:66
+msgid "As entered"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:248
-msgid "Your connections are confirmed"
-msgstr "Dine forbindelser er bekreftet"
+#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:68
+msgid "Order of other"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:249
-msgid "Someone writes on your profile wall"
-msgstr "Noen skriver på din profilvegg"
+#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:68
+msgid "Sort order of other clipart ids."
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:250
-msgid "Someone writes a followup comment"
-msgstr "Noen skriver en oppfølgende kommentar"
+#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:70
+msgid "Most downloaded first"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:251
-msgid "You receive a private message"
-msgstr "Du mottar en privat melding"
+#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:71
+msgid "Most liked first"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:252
-msgid "You receive a friend suggestion"
-msgstr "Du mottok et venneforslag"
+#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:73
+msgid "Preferred IDs Message"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:253
-msgid "You are tagged in a post"
-msgstr "Du merkes i et innlegg"
+#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:73
+msgid "Message to display above preferred results."
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:254
-msgid "You are poked/prodded/etc. in a post"
-msgstr "Du ble prikket/oppildnet/og så vider i et innlegg"
+#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:79
+msgid "Uploaded by: "
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:255
-msgid "Someone likes your post/comment"
+#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:79
+msgid "Drawn by: "
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:256
-msgid "Show visual notifications including:"
-msgstr "Vis visuelle varslinger om:"
+#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:183
+#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:195
+msgid "Use this image"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:257
-msgid "Unseen stream activity"
+#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:193
+msgid "Or select from a free OpenClipart.org image:"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:258
-msgid "Unseen channel activity"
-msgstr "Usett kanalaktivitet"
+#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:196
+msgid "Search Term"
+msgstr "Søkeord"
-#: ../../Zotlabs/Module/Settings/Channel.php:259
-msgid "Unseen private messages"
-msgstr "Usette private meldinger"
+#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:233
+msgid "Unknown error. Please try again later."
+msgstr ""
-#: ../../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 "Anbefalt"
+#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:309
+msgid "Profile photo updated successfully."
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:260
-msgid "Upcoming events"
-msgstr "Kommende hendelser"
+#: ../../extend/addon/hzaddons/dirstats/dirstats.php:94
+msgid "Hubzilla Directory Stats"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:261
-msgid "Events today"
-msgstr "Hendelser idag"
+#: ../../extend/addon/hzaddons/dirstats/dirstats.php:95
+msgid "Total Hubs"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:262
-msgid "Upcoming birthdays"
-msgstr "Kommende fødselsdager"
+#: ../../extend/addon/hzaddons/dirstats/dirstats.php:97
+msgid "Hubzilla Hubs"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:262
-msgid "Not available in all themes"
-msgstr "Ikke tilgjengelig i alle temaer"
+#: ../../extend/addon/hzaddons/dirstats/dirstats.php:99
+msgid "Friendica Hubs"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:263
-msgid "System (personal) notifications"
-msgstr "System (personlige) varslinger"
+#: ../../extend/addon/hzaddons/dirstats/dirstats.php:101
+msgid "Diaspora Pods"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:264
-msgid "System info messages"
-msgstr "System infomeldinger"
+#: ../../extend/addon/hzaddons/dirstats/dirstats.php:103
+msgid "Hubzilla Channels"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:265
-msgid "System critical alerts"
-msgstr "System kritiske varsel"
+#: ../../extend/addon/hzaddons/dirstats/dirstats.php:105
+msgid "Friendica Channels"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:266
-msgid "New connections"
-msgstr "Nye forbindelser"
+#: ../../extend/addon/hzaddons/dirstats/dirstats.php:107
+msgid "Diaspora Channels"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:267
-msgid "System Registrations"
-msgstr "Systemregistreringer"
+#: ../../extend/addon/hzaddons/dirstats/dirstats.php:109
+msgid "Aged 35 and above"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:268
-msgid "Unseen shared files"
+#: ../../extend/addon/hzaddons/dirstats/dirstats.php:111
+msgid "Aged 34 and under"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:269
-msgid "Unseen public stream activity"
+#: ../../extend/addon/hzaddons/dirstats/dirstats.php:113
+msgid "Average Age"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:270
-msgid "Unseen likes and dislikes"
+#: ../../extend/addon/hzaddons/dirstats/dirstats.php:115
+msgid "Known Chatrooms"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:271
-msgid "Unseen forum posts"
+#: ../../extend/addon/hzaddons/dirstats/dirstats.php:117
+msgid "Known Tags"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:272
-msgid "Email notification hub (hostname)"
+#: ../../extend/addon/hzaddons/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/Settings/Channel.php:272
-#, php-format
+#: ../../extend/addon/hzaddons/statusnet/Mod_Statusnet.php:61
msgid ""
-"If your channel is mirrored to multiple hubs, set this to your preferred "
-"location. This will prevent duplicate email notifications. Example: %s"
+"Please contact your site administrator.<br />The provided API URL is not "
+"valid."
msgstr ""
+"Den oppgitte URLen for APIet er ikke gyldig. Kontakt serverens administrator."
-#: ../../Zotlabs/Module/Settings/Channel.php:273
-msgid "Show new wall posts, private messages and connections under Notices"
+#: ../../extend/addon/hzaddons/statusnet/Mod_Statusnet.php:98
+msgid "We could not contact the GNU social API with the Path you entered."
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:274
-msgid "Mark all notices of the thread read if a notice is clicked"
+#: ../../extend/addon/hzaddons/statusnet/Mod_Statusnet.php:130
+msgid "GNU social settings updated."
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:274
-msgid "If no, only the clicked notice will be marked read"
+#: ../../extend/addon/hzaddons/statusnet/Mod_Statusnet.php:179
+msgid "Globally Available GNU social OAuthKeys"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:275
+#: ../../extend/addon/hzaddons/statusnet/Mod_Statusnet.php:181
msgid ""
-"Desktop notifications are unavailable because the required browser "
-"permission has not been granted"
+"There are preconfigured OAuth key pairs for some GNU social servers "
+"available. If you are using one of them, please use these credentials.<br /"
+">If not feel free to connect to any other GNU social instance (see below)."
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:276
-msgid "Grant permission"
+#: ../../extend/addon/hzaddons/statusnet/Mod_Statusnet.php:196
+msgid "Provide your own OAuth Credentials"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:277
-msgid "Notify me of events this many days in advance"
-msgstr "Varsle meg om hendelser dette antall dager på forhånd"
-
-#: ../../Zotlabs/Module/Settings/Channel.php:277
-msgid "Must be greater than 0"
-msgstr "Må være større enn 0"
-
-#: ../../Zotlabs/Module/Settings/Channel.php:280
-msgid "Default photo upload folder"
-msgstr "Standard mappe for opplasting av bilder"
-
-#: ../../Zotlabs/Module/Settings/Channel.php:280
-#: ../../Zotlabs/Module/Settings/Channel.php:281
-msgid "%Y - current year, %m - current month"
-msgstr "%Y - nåværende år, %m - nåværende måned"
-
-#: ../../Zotlabs/Module/Settings/Channel.php:281
-msgid "Default file upload folder"
-msgstr "Standard mappe for opplasting av filer"
-
-#: ../../Zotlabs/Module/Settings/Channel.php:283
-msgid "Remove this channel."
-msgstr "Fjern denne kanalen."
+#: ../../extend/addon/hzaddons/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.<br />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/Settings/Channel.php:284
-msgid "Expire other channel content after this many days"
-msgstr "Annet kanal innhold utløper etter så mange dager"
+#: ../../extend/addon/hzaddons/statusnet/Mod_Statusnet.php:202
+msgid "OAuth Consumer Key"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:284
-msgid "0 or blank to use the website limit."
-msgstr "0 eller la være tomt for å bruke grensen til nettstedet."
+#: ../../extend/addon/hzaddons/statusnet/Mod_Statusnet.php:206
+msgid "OAuth Consumer Secret"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:284
-#, php-format
-msgid "This website expires after %d days."
+#: ../../extend/addon/hzaddons/statusnet/Mod_Statusnet.php:210
+msgid "Base API Path"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:284
-msgid "This website does not expire imported content."
-msgstr "Dette nettstedet sletter ikke importert innhold."
+#: ../../extend/addon/hzaddons/statusnet/Mod_Statusnet.php:210
+msgid "Remember the trailing /"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:284
-msgid "The website limit takes precedence if lower than your limit."
-msgstr "Nettstedets grense vil gjelde dersom den er lavere enn din grense."
+#: ../../extend/addon/hzaddons/statusnet/Mod_Statusnet.php:214
+msgid "GNU social application name"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:285
-#: ../../Zotlabs/Module/Settings/Channel.php:286
+#: ../../extend/addon/hzaddons/statusnet/Mod_Statusnet.php:237
msgid ""
-"Words one per line or #tags, $categories, /patterns/, lang=xx, lang!=xx - "
-"leave blank to import all posts"
+"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 <strong>public</strong> posts will be "
+"posted to GNU social."
msgstr ""
-"Ett ord per linje eller #emneknagger, $kategorier, /mønster/, lang=xx,"
-" lang!=xx - la være tomt for å importere alle innlegg"
-
-#: ../../Zotlabs/Module/Settings/Account.php:21
-msgid "Not valid email."
-msgstr "Ikke gyldig e-post."
-
-#: ../../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."
-
-#: ../../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."
-
-#: ../../Zotlabs/Module/Settings/Account.php:51
-msgid "Password verification failed."
-msgstr "Passordbekreftelsen mislyktes."
-#: ../../Zotlabs/Module/Settings/Account.php:58
-msgid "Passwords do not match. Password unchanged."
-msgstr "Passordene stemmer ikke overens. Passord uforandret."
+#: ../../extend/addon/hzaddons/statusnet/Mod_Statusnet.php:239
+msgid "Log in with GNU social"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Account.php:62
-msgid "Empty passwords are not allowed. Password unchanged."
-msgstr "Tomme passord er ikke tillatt. Passord uforandret."
+#: ../../extend/addon/hzaddons/statusnet/Mod_Statusnet.php:242
+msgid "Copy the security code from GNU social here"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Account.php:76
-msgid "Password changed."
-msgstr "Passord endret."
+#: ../../extend/addon/hzaddons/statusnet/Mod_Statusnet.php:252
+msgid "Cancel Connection Process"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Account.php:78
-msgid "Password update failed. Please try again."
-msgstr "Passord oppdatering mislyktes. Vennligst prøv igjen."
+#: ../../extend/addon/hzaddons/statusnet/Mod_Statusnet.php:254
+msgid "Current GNU social API is"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Account.php:103
-msgid "Account Settings"
-msgstr "Kontoinnstillinger"
+#: ../../extend/addon/hzaddons/statusnet/Mod_Statusnet.php:258
+msgid "Cancel GNU social Connection"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Account.php:104
-msgid "Current Password"
-msgstr "Nåværende passord"
+#: ../../extend/addon/hzaddons/statusnet/Mod_Statusnet.php:270
+#: ../../extend/addon/hzaddons/twitter/Mod_Twitter.php:145
+msgid "Currently connected to: "
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Account.php:105
-msgid "Enter New Password"
-msgstr "Skriv nytt passord"
+#: ../../extend/addon/hzaddons/statusnet/Mod_Statusnet.php:275
+msgid ""
+"<strong>Note</strong>: Due your privacy settings (<em>Hide your profile "
+"details from unknown viewers?</em>) 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/Settings/Account.php:106
-msgid "Confirm New Password"
-msgstr "Bekreft nytt passord"
+#: ../../extend/addon/hzaddons/statusnet/Mod_Statusnet.php:280
+msgid "Post to GNU social by default"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Account.php:106
-msgid "Leave password fields blank unless changing"
-msgstr "La passordfeltene stå blanke om det ikke skal endres"
+#: ../../extend/addon/hzaddons/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/Settings/Account.php:108
-msgid "Multi-Factor Authentication"
-msgstr "Flerfaktorautentisering"
+#: ../../extend/addon/hzaddons/statusnet/Mod_Statusnet.php:289
+#: ../../extend/addon/hzaddons/twitter/Mod_Twitter.php:169
+msgid "Clear OAuth configuration"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Account.php:109
-msgid "DId2 or Email Address:"
-msgstr "DId2 eller epostadresse:"
+#: ../../extend/addon/hzaddons/statusnet/Mod_Statusnet.php:301
+msgid "GNU-Social Crosspost Connector"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Account.php:112
-msgid "Remove this account including all its channels"
-msgstr "Slett denne kontoen inkludert alle dens kanaler"
+#: ../../extend/addon/hzaddons/statusnet/statusnet.php:145
+msgid "Post to GNU social"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Featured.php:25
-msgid "No feature settings configured"
-msgstr "Ingen funksjonsinnstillinger er konfigurert"
+#: ../../extend/addon/hzaddons/statusnet/statusnet.php:594
+msgid "API URL"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Featured.php:34
-msgid "Addon Settings"
-msgstr "Instillinger for tillegg"
+#: ../../extend/addon/hzaddons/statusnet/statusnet.php:597
+msgid "Application name"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Featured.php:35
-msgid "Please save/submit changes to any panel before opening another."
-msgstr "Husk å lagre endringene i ett panel før du åpner andre."
+#: ../../extend/addon/hzaddons/ljpost/ljpost.php:49
+msgid "Post to Livejournal"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Events.php:40
-msgid "Events Settings"
+#: ../../extend/addon/hzaddons/ljpost/ljpost.php:127
+msgid "Posted by"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Manage.php:41
-msgid "Channel Manager Settings"
+#: ../../extend/addon/hzaddons/ljpost/ljpost.php:134
+#: ../../extend/addon/hzaddons/dwpost/Mod_Dwpost.php:67
+#: ../../extend/addon/hzaddons/dwpost/dwpost.php:134
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:381
+#: ../../extend/addon/hzaddons/wppost/wppost.php:175
+#: ../../extend/addon/hzaddons/wppost/Mod_Wppost.php:96
+msgid "Source"
msgstr ""
-#: ../../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"
+#: ../../extend/addon/hzaddons/ljpost/Mod_Ljpost.php:53
+msgid "Livejournal username"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel_home.php:88
-msgid "Channel Home Settings"
+#: ../../extend/addon/hzaddons/ljpost/Mod_Ljpost.php:57
+msgid "Livejournal password"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Calendar.php:40
-msgid "Calendar Settings"
+#: ../../extend/addon/hzaddons/ljpost/Mod_Ljpost.php:61
+msgid "Post to Livejournal by default"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Multifactor.php:23
-#, fuzzy
-#| msgid "Name is required"
-msgid "Password is required"
-msgstr "Navn er påkrevd"
+#: ../../extend/addon/hzaddons/ljpost/Mod_Ljpost.php:65
+msgid "Send wall-to-wall posts to Livejournal"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Multifactor.php:29
-msgid "The provided password is not correct"
+#: ../../extend/addon/hzaddons/ljpost/Mod_Ljpost.php:69
+#: ../../extend/addon/hzaddons/dwpost/Mod_Dwpost.php:63
+#: ../../extend/addon/hzaddons/wppost/Mod_Wppost.php:92
+msgid "Add link to original post"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Multifactor.php:68
-msgid "Account Multi-Factor Authentication"
-msgstr "Tofaktorautentisering"
+#: ../../extend/addon/hzaddons/ljpost/Mod_Ljpost.php:77
+msgid "Livejournal Crosspost Connector"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Multifactor.php:69
-msgid ""
-"This is your generated secret. It may be used in some cases if the QR image "
-"cannot be read. Please store it in a safe place."
+#: ../../extend/addon/hzaddons/pageheader/Mod_Pageheader.php:22
+msgid "pageheader Settings saved."
msgstr ""
-"Dette er en generert sikkerhetskode. Den kan være nyttig i enkelte tilfeller "
-"hvor QR koden ikke kan leses. Lagre den et sikkert sted."
-#: ../../Zotlabs/Module/Settings/Multifactor.php:70
-msgid "Please enter the code from your authenticator app"
-msgstr "Skriv inn koden fra din autentiseringsapp"
+#: ../../extend/addon/hzaddons/pageheader/Mod_Pageheader.php:41
+msgid "Message to display on every page on this server"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Multifactor.php:71
-msgid "You will only be able to enable MFA if the test passes"
+#: ../../extend/addon/hzaddons/pageheader/Mod_Pageheader.php:49
+msgid "Page Header"
msgstr ""
-"Flerfaktorautentisering vil kun bli slått på dersom denne testen lykkes"
-#: ../../Zotlabs/Module/Settings/Multifactor.php:75
-msgid "Congratulations, the provided code was correct"
+#: ../../extend/addon/hzaddons/rainbowtag/Mod_Rainbowtag.php:22
+msgid "Rainbow Tag App"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Multifactor.php:76
-msgid "Incorrect code"
+#: ../../extend/addon/hzaddons/rainbowtag/Mod_Rainbowtag.php:23
+msgid "Add some colour to tag clouds"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Multifactor.php:79
-#, fuzzy
-#| msgid "Failed authentication"
-msgid "Enable Multi-Factor Authentication"
-msgstr "Mislykket autentisering"
+#: ../../extend/addon/hzaddons/rainbowtag/Mod_Rainbowtag.php:30
+msgid "Rainbow Tag"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Multifactor.php:81
-msgid "Logging in will require you to be in possession of your smartphone"
+#: ../../extend/addon/hzaddons/visage/Mod_Visage.php:23
+msgid "Recent Channel/Profile Viewers"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Multifactor.php:84
-#, fuzzy
-#| msgid "Your new password is"
-msgid "Your account password"
-msgstr "Ditt nye passord er"
+#: ../../extend/addon/hzaddons/visage/Mod_Visage.php:34
+msgid "No entries."
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Display.php:125
+#: ../../extend/addon/hzaddons/testdrive/testdrive.php:104
#, php-format
-msgid "%s - (Experimental)"
-msgstr "%s - (Eksperimentelt)"
-
-#: ../../Zotlabs/Module/Settings/Display.php:181
-msgid "Display Settings"
-msgstr "Visningsinnstillinger"
-
-#: ../../Zotlabs/Module/Settings/Display.php:182
-msgid "Theme Settings"
-msgstr "Temainnstillinger"
-
-#: ../../Zotlabs/Module/Settings/Display.php:183
-msgid "Custom Theme Settings"
-msgstr "Tilpassede temainnstillinger"
+msgid "Your account on %s will expire in a few days."
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Display.php:184
-msgid "Content Settings"
-msgstr "Innholdsinnstillinger"
+#: ../../extend/addon/hzaddons/testdrive/testdrive.php:105
+msgid "Your test account is about to expire."
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Display.php:190
-msgid "Display Theme:"
-msgstr "Visningstema:"
+#: ../../extend/addon/hzaddons/nofed/Mod_Nofed.php:21
+msgid "nofed Settings saved."
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Display.php:191
-msgid "Select scheme"
-msgstr "Velg skjema"
+#: ../../extend/addon/hzaddons/nofed/Mod_Nofed.php:40
+msgid "Federate posts by default"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Display.php:193
-msgid "Preload images before rendering the page"
-msgstr "Last inn bildene før gjengivelsen av siden"
+#: ../../extend/addon/hzaddons/nofed/Mod_Nofed.php:48
+msgid "No Federation"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Display.php:193
-msgid ""
-"The subjective page load time will be longer but the page will be ready when "
-"displayed"
+#: ../../extend/addon/hzaddons/nofed/nofed.php:47
+msgid "Federate"
msgstr ""
-"Den personlige opplevelsen av lastetiden vil være lenger, men siden vil være "
-"klar når den vises"
-#: ../../Zotlabs/Module/Settings/Display.php:194
-msgid "Enable user zoom on mobile devices"
-msgstr "Skru på brukerstyrt zoom på mobile enheter"
+#: ../../extend/addon/hzaddons/likebanner/likebanner.php:51
+msgid "Your Webbie:"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Display.php:195
-msgid "Update browser every xx seconds"
-msgstr "Oppdater nettleser hvert xx sekunder"
+#: ../../extend/addon/hzaddons/likebanner/likebanner.php:54
+msgid "Fontsize (px):"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Display.php:195
-msgid "Minimum of 10 seconds, no maximum"
-msgstr "Minimum 10 sekunder, ikke noe maksimum"
+#: ../../extend/addon/hzaddons/likebanner/likebanner.php:68
+msgid "Link:"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Display.php:196
-msgid "Maximum number of conversations to load at any time:"
-msgstr "Maksimalt antall samtaler å laste samtidig:"
+#: ../../extend/addon/hzaddons/likebanner/likebanner.php:70
+msgid "Like us on Hubzilla"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Display.php:196
-msgid "Maximum of 30 items"
+#: ../../extend/addon/hzaddons/likebanner/likebanner.php:72
+msgid "Embed:"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Display.php:197
-msgid "Show emoticons (smilies) as images"
-msgstr "Vis emoticons (smilefjes) som bilder"
+#: ../../extend/addon/hzaddons/piwik/piwik.php:85
+msgid ""
+"This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> "
+"analytics tool."
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Display.php:198
-msgid "Link post titles to source"
-msgstr "Lenk innleggets tittel til kilden"
+#: ../../extend/addon/hzaddons/piwik/piwik.php:88
+#, php-format
+msgid ""
+"If you do not want that your visits are logged this way you <a href='%s'>can "
+"set a cookie to prevent Piwik from tracking further visits of the site</a> "
+"(opt-out)."
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Display.php:200
-msgid "Display new member quick links menu"
-msgstr "Vis hurtiglenker for nye medlemmer"
+#: ../../extend/addon/hzaddons/piwik/piwik.php:96
+msgid "Piwik Base URL"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Directory.php:40
-msgid "Directory Settings"
+#: ../../extend/addon/hzaddons/piwik/piwik.php:96
+msgid ""
+"Absolute path to your Piwik installation. (without protocol (http/s), with "
+"trailing slash)"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Editor.php:40
-msgid "Editor Settings"
-msgstr "Instillinger for redigering"
+#: ../../extend/addon/hzaddons/piwik/piwik.php:97
+msgid "Site ID"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Connections.php:40
-msgid "Connections Settings"
+#: ../../extend/addon/hzaddons/piwik/piwik.php:98
+msgid "Show opt-out cookie link?"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Photos.php:40
-msgid "Photos Settings"
+#: ../../extend/addon/hzaddons/piwik/piwik.php:99
+msgid "Asynchronous tracking"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Profiles.php:41
-msgid "Default profile for new contacts"
+#: ../../extend/addon/hzaddons/piwik/piwik.php:100
+msgid "Enable frontend JavaScript error tracking"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Profiles.php:49
-msgid "Profiles Settings"
+#: ../../extend/addon/hzaddons/piwik/piwik.php:100
+msgid "This feature requires Piwik >= 2.2.0"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Privacy.php:48
-msgid "Privacy settings updated."
-msgstr "Personverninnstillingene ble oppdatert."
+#: ../../extend/addon/hzaddons/startpage/Mod_Startpage.php:60
+msgid "Page to load after login"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Privacy.php:66
-msgid "Only those you specifically allow"
-msgstr "Bare de du spesifikt tillater"
+#: ../../extend/addon/hzaddons/startpage/Mod_Startpage.php:60
+msgid ""
+"Examples: &quot;apps&quot;, &quot;network?f=&gid=37&quot; (privacy "
+"collection), &quot;channel&quot; or &quot;notifications/system&quot; (leave "
+"blank for default network page (grid)."
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Privacy.php:67
-msgid "Approved connections"
-msgstr "Godkjente forbindelser"
+#: ../../extend/addon/hzaddons/startpage/Mod_Startpage.php:68
+msgid "Startpage"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Privacy.php:68
-msgid "Any connections"
-msgstr "Enhver forbindelse"
+#: ../../extend/addon/hzaddons/twitter/Mod_Twitter.php:65
+msgid "Twitter settings updated."
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Privacy.php:69
-msgid "Anybody on this website"
-msgstr "Enhver ved dette nettstedet"
+#: ../../extend/addon/hzaddons/twitter/Mod_Twitter.php:101
+msgid ""
+"No consumer key pair for Twitter found. Please contact your site "
+"administrator."
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Privacy.php:70
-msgid "Anybody in this network"
-msgstr "Enhver i dette nettverket"
+#: ../../extend/addon/hzaddons/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 <strong>public</strong> posts will "
+"be posted to Twitter."
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Privacy.php:71
-msgid "Anybody authenticated"
-msgstr "Enhver som er autentisert"
+#: ../../extend/addon/hzaddons/twitter/Mod_Twitter.php:125
+msgid "Log in with Twitter"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Privacy.php:72
-msgid "Anybody on the internet"
-msgstr "Enhver på Internett"
+#: ../../extend/addon/hzaddons/twitter/Mod_Twitter.php:128
+msgid "Copy the PIN from Twitter here"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Privacy.php:82
+#: ../../extend/addon/hzaddons/twitter/Mod_Twitter.php:150
msgid ""
-"Advise: set to \"Anybody on the internet\" and use privacy groups to "
-"restrict access"
+"<strong>Note:</strong> Due your privacy settings (<em>Hide your profile "
+"details from unknown viewers?</em>) 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/Settings/Privacy.php:121
-msgid "Privacy Settings"
-msgstr "Personverninnstillinger"
+#: ../../extend/addon/hzaddons/twitter/Mod_Twitter.php:155
+msgid "Twitter post length"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Privacy.php:126
-msgid "Advanced configuration"
+#: ../../extend/addon/hzaddons/twitter/Mod_Twitter.php:155
+msgid "Maximum tweet length"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Privacy.php:128
-msgid "Proceed with caution"
+#: ../../extend/addon/hzaddons/twitter/Mod_Twitter.php:160
+msgid "Send public postings to Twitter by default"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Privacy.php:129
+#: ../../extend/addon/hzaddons/twitter/Mod_Twitter.php:160
msgid ""
-"Changing advanced configuration settings can impact your, and your contacts "
-"channels functionality and security."
+"If enabled your public postings will be posted to the associated Twitter "
+"account by default"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Privacy.php:130
-msgid "Accept the risk and continue"
+#: ../../extend/addon/hzaddons/twitter/Mod_Twitter.php:179
+msgid "Twitter Crosspost Connector"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Privacy.php:132
-msgid "Automatically approve new contacts"
-msgstr "Automatisk godkjenn nye kontakter"
-
-#: ../../Zotlabs/Module/Settings/Privacy.php:133
-msgid "Opt-out of search engine indexing"
-msgstr "Ikke la søkemotorer indeksere denne kanalen"
-
-#: ../../Zotlabs/Module/Settings/Privacy.php:134
-msgid "Group actor"
+#: ../../extend/addon/hzaddons/twitter/twitter.php:109
+msgid "Post to Twitter"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Privacy.php:134
-msgid "Allow this channel to act as a forum"
+#: ../../extend/addon/hzaddons/twitter/twitter.php:502
+#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:95
+msgid "Submit Settings"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Privacy.php:135
-msgid "Accept all messages which mention you"
-msgstr "Godta alle meldinger som nevner deg"
+#: ../../extend/addon/hzaddons/fuzzloc/Mod_Fuzzloc.php:22
+msgid "Fuzzloc Settings updated."
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Privacy.php:135
-msgid "This setting bypasses normal permissions"
-msgstr "Denne instillingen overstyrer vanlig tilgangskontroll"
+#: ../../extend/addon/hzaddons/fuzzloc/Mod_Fuzzloc.php:38
+msgid "Minimum offset in meters"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Privacy.php:136
-msgid "Accept unsolicited comments for moderation"
-msgstr "Godta kommentarer fra fremmede for moderering"
+#: ../../extend/addon/hzaddons/fuzzloc/Mod_Fuzzloc.php:42
+msgid "Maximum offset in meters"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Privacy.php:136
-msgid "Otherwise they will be silently dropped"
-msgstr "Ellers vil de avvises uten varsel"
+#: ../../extend/addon/hzaddons/fuzzloc/Mod_Fuzzloc.php:51
+msgid "Fuzzy Location"
+msgstr ""
-#: ../../Zotlabs/Module/Settings/Privacy.php:137
-msgid "Enable OCAP access"
-msgstr "Slå på OCAP tilgangskontroll"
+#: ../../extend/addon/hzaddons/diaspora/import_diaspora.php:18
+msgid "No username found in import file."
+msgstr "Ingen brukernavn ble funnet i importfilen."
-#: ../../Zotlabs/Module/Settings/Privacy.php:137
-msgid "Grant limited posts the right to access linked private media"
-msgstr "Gi begrensede innlegg tilgang til private media som er lenket fra dem"
+#: ../../extend/addon/hzaddons/diaspora/import_diaspora.php:140
+msgid "Import completed."
+msgstr "Import ferdig."
-#: ../../Zotlabs/Module/Settings/Conversation.php:23
-msgid "Settings saved."
+#: ../../extend/addon/hzaddons/diaspora/Receiver.php:1632
+#, php-format
+msgid "%1$s dislikes %2$s's %3$s"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Conversation.php:25
-msgid "Settings saved. Reload page please."
+#: ../../extend/addon/hzaddons/diaspora/Mod_Diaspora.php:43
+msgid "Diaspora Protocol Settings updated."
msgstr ""
-#: ../../Zotlabs/Module/Settings/Conversation.php:47
-msgid "Conversation Settings"
+#: ../../extend/addon/hzaddons/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/Menu.php:68
-msgid "Unable to update menu."
-msgstr "Ikke i stand til å oppdatere meny."
-
-#: ../../Zotlabs/Module/Menu.php:79
-msgid "Unable to create menu."
-msgstr "Ikke i stand til å lage meny."
-
-#: ../../Zotlabs/Module/Menu.php:161 ../../Zotlabs/Module/Menu.php:174
-msgid "Menu Name"
-msgstr "Menynavn"
+#: ../../extend/addon/hzaddons/diaspora/Mod_Diaspora.php:80
+msgid "Prevent your hashtags from being redirected to other sites"
+msgstr ""
-#: ../../Zotlabs/Module/Menu.php:161
-msgid "Unique name (not visible on webpage) - required"
-msgstr "Unikt navn (ikke synlig på websiden) - påkrevet"
+#: ../../extend/addon/hzaddons/diaspora/Mod_Diaspora.php:84
+msgid "Sign and forward posts and comments with no existing Diaspora signature"
+msgstr ""
-#: ../../Zotlabs/Module/Menu.php:162 ../../Zotlabs/Module/Menu.php:175
-msgid "Menu Title"
-msgstr "Menytittel"
+#: ../../extend/addon/hzaddons/diaspora/Mod_Diaspora.php:89
+msgid "Followed hashtags (comma separated, do not include the #)"
+msgstr ""
-#: ../../Zotlabs/Module/Menu.php:162
-msgid "Visible on webpage - leave empty for no title"
-msgstr "Synlig på websiden - la stå tomt for ingen tittel"
+#: ../../extend/addon/hzaddons/diaspora/Mod_Diaspora.php:98
+msgid "Diaspora Protocol"
+msgstr ""
-#: ../../Zotlabs/Module/Menu.php:163
-msgid "Allow Bookmarks"
-msgstr "Tillat bokmerker"
+#: ../../extend/addon/hzaddons/diaspora/diaspora.php:81
+msgid ""
+"Please install the statistics addon to be able to configure a diaspora relay"
+msgstr ""
-#: ../../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"
+#: ../../extend/addon/hzaddons/diaspora/diaspora.php:91
+msgid "Diaspora Relay Handle"
+msgstr ""
-#: ../../Zotlabs/Module/Menu.php:164 ../../Zotlabs/Module/Menu.php:225
-msgid "Submit and proceed"
-msgstr "Send inn og fortsett"
+#: ../../extend/addon/hzaddons/diaspora/diaspora.php:91
+msgid "Address of a diaspora relay. Example: relay@diasporarelay.tld"
+msgstr ""
-#: ../../Zotlabs/Module/Menu.php:177 ../../Zotlabs/Module/Locs.php:124
-msgid "Drop"
-msgstr "Slett"
+#: ../../extend/addon/hzaddons/diaspora/diaspora.php:111
+msgid "Diaspora relay could not be imported"
+msgstr ""
-#: ../../Zotlabs/Module/Menu.php:181
-msgid "Bookmarks allowed"
-msgstr "Bokmerker tillatt"
+#: ../../extend/addon/hzaddons/diaspora/diaspora.php:1103
+msgid "No subject"
+msgstr ""
-#: ../../Zotlabs/Module/Menu.php:183
-msgid "Delete this menu"
-msgstr "Slett denne menyen"
+#: ../../extend/addon/hzaddons/redphotos/redphotos.php:106
+msgid "Photos imported"
+msgstr ""
-#: ../../Zotlabs/Module/Menu.php:184 ../../Zotlabs/Module/Menu.php:219
-msgid "Edit menu contents"
-msgstr "Endre menyinnholdet"
+#: ../../extend/addon/hzaddons/redphotos/redphotos.php:129
+msgid "Redmatrix Photo Album Import"
+msgstr ""
-#: ../../Zotlabs/Module/Menu.php:185
-msgid "Edit this menu"
-msgstr "Endre denne menyen"
+#: ../../extend/addon/hzaddons/redphotos/redphotos.php:130
+msgid "This will import all your Redmatrix photo albums to this channel."
+msgstr ""
-#: ../../Zotlabs/Module/Menu.php:201
-msgid "Menu could not be deleted."
-msgstr "Menyen kunne ikke bli slettet."
+#: ../../extend/addon/hzaddons/redphotos/redphotos.php:131
+#: ../../extend/addon/hzaddons/redfiles/redfiles.php:121
+msgid "Redmatrix Server base URL"
+msgstr ""
-#: ../../Zotlabs/Module/Menu.php:214
-msgid "Edit Menu"
-msgstr "Endre meny"
+#: ../../extend/addon/hzaddons/redphotos/redphotos.php:132
+#: ../../extend/addon/hzaddons/redfiles/redfiles.php:122
+msgid "Redmatrix Login Username"
+msgstr ""
-#: ../../Zotlabs/Module/Menu.php:218
-msgid "Add or remove entries to this menu"
-msgstr "Legg til eller fjern punkter i denne menyen"
+#: ../../extend/addon/hzaddons/redphotos/redphotos.php:133
+#: ../../extend/addon/hzaddons/redfiles/redfiles.php:123
+msgid "Redmatrix Login Password"
+msgstr ""
-#: ../../Zotlabs/Module/Menu.php:220
-msgid "Menu name"
-msgstr "Menynavn"
+#: ../../extend/addon/hzaddons/redphotos/redphotos.php:134
+msgid "Import just this album"
+msgstr ""
-#: ../../Zotlabs/Module/Menu.php:220
-msgid "Must be unique, only seen by you"
-msgstr "Må være unik, ses bare av deg"
+#: ../../extend/addon/hzaddons/redphotos/redphotos.php:134
+msgid "Leave blank to import all albums"
+msgstr ""
-#: ../../Zotlabs/Module/Menu.php:221
-msgid "Menu title"
-msgstr "Menytittel"
+#: ../../extend/addon/hzaddons/redphotos/redphotos.php:135
+msgid "Maximum count to import"
+msgstr ""
-#: ../../Zotlabs/Module/Menu.php:221
-msgid "Menu title as seen by others"
-msgstr "Menytittelen andre ser"
+#: ../../extend/addon/hzaddons/redphotos/redphotos.php:135
+msgid "0 or blank to import all available"
+msgstr ""
-#: ../../Zotlabs/Module/Menu.php:222
-msgid "Allow bookmarks"
-msgstr "Tillat bokmerker"
+#: ../../extend/addon/hzaddons/skeleton/Mod_Skeleton.php:38
+msgid "Some setting"
+msgstr ""
-#: ../../Zotlabs/Module/Defperms.php:252
-msgid "Connection Default Permissions"
-msgstr "Forbindelsens standard tillatelser"
+#: ../../extend/addon/hzaddons/skeleton/Mod_Skeleton.php:38
+msgid "A setting"
+msgstr ""
-#: ../../Zotlabs/Module/Defperms.php:253
-msgid "Apply these permissions automatically"
-msgstr "Bruk disse tillatelsene automatisk"
+#: ../../extend/addon/hzaddons/skeleton/Mod_Skeleton.php:46
+msgid "Skeleton Settings"
+msgstr ""
-#: ../../Zotlabs/Module/Defperms.php:253
-msgid ""
-"If enabled, connection requests will be approved without your interaction"
+#: ../../extend/addon/hzaddons/qrator/qrator.php:48
+msgid "QR code"
msgstr ""
-#: ../../Zotlabs/Module/Defperms.php:254
-msgid "Permission role"
+#: ../../extend/addon/hzaddons/qrator/qrator.php:63
+msgid "QR Generator"
msgstr ""
-#: ../../Zotlabs/Module/Defperms.php:255
-msgid "Add permission role"
+#: ../../extend/addon/hzaddons/qrator/qrator.php:64
+msgid "Enter some text"
msgstr ""
-#: ../../Zotlabs/Module/Defperms.php:259 ../../Zotlabs/Module/Connedit.php:700
-msgid ""
-"The permissions indicated on this page will be applied to all new "
-"connections."
+#: ../../extend/addon/hzaddons/dwpost/Mod_Dwpost.php:26
+msgid "Dreamwidth Crosspost Connector Settings saved."
msgstr ""
-"Tillatelsene angitt på denne siden gjøres gjeldende for alle nye "
-"forbindelser."
-#: ../../Zotlabs/Module/Defperms.php:260
-msgid "Automatic approval settings"
+#: ../../extend/addon/hzaddons/dwpost/Mod_Dwpost.php:51
+msgid "Dreamwidth username"
msgstr ""
-#: ../../Zotlabs/Module/Defperms.php:263
-msgid "My Settings"
-msgstr "Mine innstillinger"
+#: ../../extend/addon/hzaddons/dwpost/Mod_Dwpost.php:55
+msgid "Dreamwidth password"
+msgstr ""
-#: ../../Zotlabs/Module/Defperms.php:266 ../../Zotlabs/Module/Connedit.php:720
-msgid "Individual Permissions"
-msgstr "Individuelle tillatelser"
+#: ../../extend/addon/hzaddons/dwpost/Mod_Dwpost.php:59
+msgid "Post to Dreamwidth by default"
+msgstr ""
-#: ../../Zotlabs/Module/Defperms.php:267
-msgid ""
-"Some individual permissions may have been preset or locked based on your "
-"channel type and privacy settings."
+#: ../../extend/addon/hzaddons/dwpost/Mod_Dwpost.php:67
+#: ../../extend/addon/hzaddons/wppost/Mod_Wppost.php:96
+msgid "Link description (default:"
msgstr ""
-#: ../../Zotlabs/Module/Pconfig.php:33 ../../Zotlabs/Module/Pconfig.php:69
-msgid "This setting requires special processing and editing has been blocked."
+#: ../../extend/addon/hzaddons/dwpost/Mod_Dwpost.php:75
+msgid "Dreamwidth Crosspost Connector"
msgstr ""
-"Denne innstillingen krever spesiell behandling og redigering har blitt "
-"blokkert."
-#: ../../Zotlabs/Module/Pconfig.php:58
-msgid "Configuration Editor"
-msgstr "Konfigurasjonsbehandler"
+#: ../../extend/addon/hzaddons/dwpost/dwpost.php:49
+msgid "Post to Dreamwidth"
+msgstr ""
-#: ../../Zotlabs/Module/Pconfig.php:59
-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."
+#: ../../extend/addon/hzaddons/upload_limits/upload_limits.php:25
+msgid "Show Upload Limits"
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/Oauth2.php:54
-msgid "Name and Secret are required"
+#: ../../extend/addon/hzaddons/upload_limits/upload_limits.php:27
+msgid "Hubzilla configured maximum size: "
msgstr ""
-#: ../../Zotlabs/Module/Oauth2.php:113
-msgid "Add OAuth2 application"
+#: ../../extend/addon/hzaddons/upload_limits/upload_limits.php:28
+msgid "PHP upload_max_filesize: "
msgstr ""
-#: ../../Zotlabs/Module/Oauth2.php:119 ../../Zotlabs/Module/Oauth2.php:147
-msgid "Grant Types"
+#: ../../extend/addon/hzaddons/upload_limits/upload_limits.php:29
+msgid "PHP post_max_size (must be larger than upload_max_filesize): "
msgstr ""
-#: ../../Zotlabs/Module/Oauth2.php:119 ../../Zotlabs/Module/Oauth2.php:120
-msgid "leave blank unless your application sepcifically requires this"
+#: ../../extend/addon/hzaddons/nsabait/Mod_Nsabait.php:23
+msgid "NSA Bait App"
msgstr ""
-#: ../../Zotlabs/Module/Oauth2.php:120 ../../Zotlabs/Module/Oauth2.php:148
-msgid "Authorization scope"
+#: ../../extend/addon/hzaddons/nsabait/Mod_Nsabait.php:25
+msgid "Make yourself a political target."
msgstr ""
-#: ../../Zotlabs/Module/Oauth2.php:132
-msgid "OAuth2 Application not found."
+#: ../../extend/addon/hzaddons/content_import/Mod_content_import.php:27
+msgid "No server specified"
msgstr ""
-#: ../../Zotlabs/Module/Oauth2.php:147 ../../Zotlabs/Module/Oauth2.php:148
-msgid "leave blank unless your application specifically requires this"
+#: ../../extend/addon/hzaddons/content_import/Mod_content_import.php:72
+msgid "Posts imported"
msgstr ""
-#: ../../Zotlabs/Module/Oauth2.php:190
-msgid "Connected OAuth2 Apps"
+#: ../../extend/addon/hzaddons/content_import/Mod_content_import.php:112
+msgid "Files imported"
msgstr ""
-#: ../../Zotlabs/Module/Dreport.php:38
-msgid "Invalid message"
-msgstr "Ugyldig melding"
+#: ../../extend/addon/hzaddons/content_import/Mod_content_import.php:134
+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/Dreport.php:68
-msgid "no results"
-msgstr "ingen resultater"
+#: ../../extend/addon/hzaddons/content_import/Mod_content_import.php:135
+msgid "Include posts"
+msgstr ""
-#: ../../Zotlabs/Module/Dreport.php:82
-msgid "channel sync processed"
-msgstr "kanalsynkronisering er behandlet"
+#: ../../extend/addon/hzaddons/content_import/Mod_content_import.php:135
+msgid "Conversations, Articles, Cards, and other posted content"
+msgstr ""
-#: ../../Zotlabs/Module/Dreport.php:86
-msgid "queued"
-msgstr "lagt i kø"
+#: ../../extend/addon/hzaddons/content_import/Mod_content_import.php:136
+msgid "Include files"
+msgstr ""
-#: ../../Zotlabs/Module/Dreport.php:90
-msgid "posted"
-msgstr "lagt inn"
+#: ../../extend/addon/hzaddons/content_import/Mod_content_import.php:136
+msgid "Files, Photos and other cloud storage"
+msgstr ""
-#: ../../Zotlabs/Module/Dreport.php:94
-msgid "accepted for delivery"
-msgstr "akseptert for levering"
+#: ../../extend/addon/hzaddons/content_import/Mod_content_import.php:137
+msgid "Original Server base URL"
+msgstr ""
-#: ../../Zotlabs/Module/Dreport.php:98
-msgid "updated"
-msgstr "oppdatert"
+#: ../../extend/addon/hzaddons/rtof/Mod_Rtof.php:24
+msgid "Friendica Crosspost Connector Settings saved."
+msgstr ""
-#: ../../Zotlabs/Module/Dreport.php:102
-msgid "update ignored"
-msgstr "oppdatering ignorert"
+#: ../../extend/addon/hzaddons/rtof/Mod_Rtof.php:47
+msgid "Send public postings to Friendica by default"
+msgstr ""
-#: ../../Zotlabs/Module/Dreport.php:105
-msgid "permission denied"
-msgstr "tillatelse avvist"
+#: ../../extend/addon/hzaddons/rtof/Mod_Rtof.php:51
+msgid "Friendica API Path"
+msgstr ""
-#: ../../Zotlabs/Module/Dreport.php:109
-msgid "recipient not found"
-msgstr "mottaker ble ikke funnet"
+#: ../../extend/addon/hzaddons/rtof/Mod_Rtof.php:51
+#: ../../extend/addon/hzaddons/redred/Mod_Redred.php:65
+msgid "https://{sitename}/api"
+msgstr ""
-#: ../../Zotlabs/Module/Dreport.php:129
-#, php-format
-msgid "Delivery report for %1$s"
-msgstr "Leveringsrapport for %1$s"
+#: ../../extend/addon/hzaddons/rtof/Mod_Rtof.php:55
+msgid "Friendica login name"
+msgstr ""
-#: ../../Zotlabs/Module/Dreport.php:134
-msgid "Redeliver"
+#: ../../extend/addon/hzaddons/rtof/Mod_Rtof.php:59
+msgid "Friendica password"
msgstr ""
-#: ../../Zotlabs/Module/Thing.php:122
-msgid "Thing updated"
-msgstr "Tingen er oppdatert"
+#: ../../extend/addon/hzaddons/rtof/Mod_Rtof.php:67
+msgid "Friendica Crosspost Connector"
+msgstr ""
-#: ../../Zotlabs/Module/Thing.php:174
-msgid "Object store: failed"
-msgstr "Objektlagring: mislyktes"
+#: ../../extend/addon/hzaddons/rtof/rtof.php:51
+msgid "Post to Friendica"
+msgstr ""
-#: ../../Zotlabs/Module/Thing.php:178
-msgid "Thing added"
-msgstr "Ting lagt til"
+#: ../../extend/addon/hzaddons/notifyadmin/notifyadmin.php:34
+msgid "New registration"
+msgstr ""
-#: ../../Zotlabs/Module/Thing.php:204
+#: ../../extend/addon/hzaddons/notifyadmin/notifyadmin.php:42
#, php-format
-msgid "OBJ: %1$s %2$s %3$s"
-msgstr "OBJ: %1$s %2$s %3$s"
-
-#: ../../Zotlabs/Module/Thing.php:267
-msgid "Show Thing"
-msgstr "Vis ting"
-
-#: ../../Zotlabs/Module/Thing.php:274
-msgid "item not found."
-msgstr "element ble ikke funnet."
-
-#: ../../Zotlabs/Module/Thing.php:307
-msgid "Edit Thing"
-msgstr "Endre ting"
-
-#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:366
-msgid "Select a profile"
-msgstr "Velg en profil"
-
-#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:369
-msgid "Post an activity"
-msgstr "Legg inn en aktivitet"
-
-#: ../../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"
+msgid "Message sent to %s. New account registration: %s"
+msgstr ""
-#: ../../Zotlabs/Module/Thing.php:315 ../../Zotlabs/Module/Thing.php:371
-msgid "Name of thing e.g. something"
-msgstr "Navn på ting for eksempel noe"
+#: ../../extend/addon/hzaddons/redfiles/redfiles.php:119
+msgid "Redmatrix File Storage Import"
+msgstr ""
-#: ../../Zotlabs/Module/Thing.php:317 ../../Zotlabs/Module/Thing.php:372
-msgid "URL of thing (optional)"
-msgstr "URL til ting (valgfritt)"
+#: ../../extend/addon/hzaddons/redfiles/redfiles.php:120
+msgid "This will import all your Redmatrix cloud files to this channel."
+msgstr ""
-#: ../../Zotlabs/Module/Thing.php:319 ../../Zotlabs/Module/Thing.php:373
-msgid "URL for photo of thing (optional)"
-msgstr "URL til bilde av ting (valgfritt)"
+#: ../../extend/addon/hzaddons/mailtest/mailtest.php:19
+msgid "Send test email"
+msgstr ""
-#: ../../Zotlabs/Module/Thing.php:364
-msgid "Add Thing to your Profile"
-msgstr "Legg til ting i din profil"
+#: ../../extend/addon/hzaddons/mailtest/mailtest.php:50
+#: ../../extend/addon/hzaddons/hubwall/hubwall.php:50
+msgid "No recipients found."
+msgstr ""
-#: ../../Zotlabs/Module/Rmagic.php:46
-msgid "Authentication failed."
-msgstr "Autentisering mislyktes."
+#: ../../extend/addon/hzaddons/mailtest/mailtest.php:66
+msgid "Mail sent."
+msgstr ""
-#: ../../Zotlabs/Module/Import_progress.php:36
-msgid "Item sync completed!"
+#: ../../extend/addon/hzaddons/mailtest/mailtest.php:68
+msgid "Sending of mail failed."
msgstr ""
-#: ../../Zotlabs/Module/Import_progress.php:51
-msgid "Item sync completed but no items were found!"
+#: ../../extend/addon/hzaddons/mailtest/mailtest.php:77
+msgid "Mail Test"
msgstr ""
-#: ../../Zotlabs/Module/Import_progress.php:68
-msgid "File sync completed!"
+#: ../../extend/addon/hzaddons/mailtest/mailtest.php:96
+#: ../../extend/addon/hzaddons/hubwall/hubwall.php:93
+msgid "Message subject"
msgstr ""
-#: ../../Zotlabs/Module/Import_progress.php:83
-msgid "File sync completed but no files were found!"
+#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:57
+msgid "Errors encountered deleting database table "
msgstr ""
-#: ../../Zotlabs/Module/Import_progress.php:98
-msgid "Channel clone status"
+#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:96
+msgid "Drop tables when uninstalling?"
msgstr ""
-#: ../../Zotlabs/Module/Import_progress.php:99
-msgid "Item sync status"
+#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:96
+msgid ""
+"If checked, the Rendezvous database tables will be deleted when the plugin "
+"is uninstalled."
msgstr ""
-#: ../../Zotlabs/Module/Import_progress.php:100
-msgid "File sync status"
+#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:97
+msgid "Mapbox Access Token"
msgstr ""
-#: ../../Zotlabs/Module/Import_progress.php:107
-msgid "Channel cloning completed!"
+#: ../../extend/addon/hzaddons/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/Import_progress.php:108
-msgid "Resume"
+#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:162
+msgid "Rendezvous"
msgstr ""
-#: ../../Zotlabs/Module/Import_progress.php:109
-msgid "Only resume if sync stalled!"
+#: ../../extend/addon/hzaddons/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/Pdledit.php:27
-msgid "Layout updated."
-msgstr "Layout er oppdatert."
+#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:168
+msgid "Welcome to Rendezvous!"
+msgstr ""
-#: ../../Zotlabs/Module/Pdledit.php:55 ../../Zotlabs/Module/Pdledit.php:129
-msgid "Edit System Page Description"
-msgstr "Endre beskrivelsen av systemsiden"
+#: ../../extend/addon/hzaddons/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/Pdledit.php:76 ../../Zotlabs/Module/Pdledit.php:93
-msgid "(modified)"
-msgstr "(endret)"
+#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:171
+msgid "Let's meet here"
+msgstr ""
-#: ../../Zotlabs/Module/Pdledit.php:124
-msgid "Layout not found."
-msgstr "Layouten ble ikke funnet."
+#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:174
+msgid "New marker"
+msgstr ""
-#: ../../Zotlabs/Module/Pdledit.php:130
-msgid "Module Name:"
-msgstr "Modulnavn:"
+#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:175
+msgid "Edit marker"
+msgstr ""
-#: ../../Zotlabs/Module/Pdledit.php:131
-msgid "Layout Help"
-msgstr "Layout-hjelp"
+#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:176
+msgid "New identity"
+msgstr ""
-#: ../../Zotlabs/Module/Pdledit.php:132
-msgid "Edit another layout"
+#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:177
+msgid "Delete marker"
msgstr ""
-#: ../../Zotlabs/Module/Pdledit.php:133
-msgid "System layout"
+#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:178
+msgid "Delete member"
msgstr ""
-#: ../../Zotlabs/Module/Home.php:104
-#, php-format
-msgid "Welcome to %s"
-msgstr "Velkommen til %s"
+#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:179
+msgid "Edit proximity alert"
+msgstr ""
-#: ../../Zotlabs/Module/Suggest.php:52
+#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:180
msgid ""
-"No suggestions available. If this is a new site, please try again in 24 "
-"hours."
+"A proximity alert will be issued when this member is within a certain radius "
+"of you.<br><br>Enter a radius in meters (0 to disable):"
msgstr ""
-"Ingen forslag tilgjengelige. Hvis dette er et nytt nettsted, vennligst prøv "
-"igjen om 24 timer."
-
-#: ../../Zotlabs/Module/Connedit.php:171
-msgid "Connection updated."
-msgstr "Forbindelsen er oppdatert."
-#: ../../Zotlabs/Module/Connedit.php:173
-msgid "Failed to update connection record."
-msgstr "Mislyktes med å oppdatere forbindelsesinformasjonen."
-
-#: ../../Zotlabs/Module/Connedit.php:320
-msgid "Could not access address book record."
-msgstr "Fikk ikke tilgang til informasjonen i adresseboken."
-
-#: ../../Zotlabs/Module/Connedit.php:368
-msgid "Refresh failed - channel is currently unavailable."
-msgstr "Oppfrisking mislyktes - kanalen er for øyeblikket utilgjengelig."
-
-#: ../../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."
+#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:180
+#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:185
+msgid "distance"
+msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:441
-msgid "Connection has been removed."
-msgstr "Forbindelsen har blitt fjernet."
+#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:181
+msgid "Proximity alert distance (meters)"
+msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:483
-#, php-format
-msgid "View %s's profile"
-msgstr "Vis %s sin profil"
+#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:182
+#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:184
+msgid ""
+"A proximity alert will be issued when you are within a certain radius of the "
+"marker location.<br><br>Enter a radius in meters (0 to disable):"
+msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:504
-msgid "View recent posts and comments"
-msgstr "Vis nylige innlegg og kommentarer"
+#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:183
+msgid "Marker proximity alert"
+msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:550
-msgid "Fetch Vcard"
+#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:186
+msgid "Reminder note"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:553
-msgid "Fetch electronic calling card for this connection"
+#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:187
+msgid ""
+"Enter a note to be displayed when you are within the specified proximity..."
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:575
-msgid "Open Set Affinity section by default"
+#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:199
+msgid "Add new rendezvous"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:612
-msgid "Filter"
+#: ../../extend/addon/hzaddons/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/Connedit.php:615
-msgid "Open Custom Filter section by default"
+#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:232
+msgid "You have no rendezvous. Press the button above to create a rendezvous!"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:626
-msgid "Set Affinity"
-msgstr "Angi nærhet"
+#: ../../extend/addon/hzaddons/redred/Mod_Redred.php:24
+msgid "Channel is required."
+msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:629
-msgid "Set Profile"
-msgstr "Angi profil"
+#: ../../extend/addon/hzaddons/redred/Mod_Redred.php:38
+msgid "Hubzilla Crosspost Connector Settings saved."
+msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:632
-msgid "Set Affinity & Profile"
-msgstr "Angi nærhet og profil"
+#: ../../extend/addon/hzaddons/redred/Mod_Redred.php:61
+msgid "Send public postings to Hubzilla channel by default"
+msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:685
-#, php-format
-msgid "Contact: %s"
+#: ../../extend/addon/hzaddons/redred/Mod_Redred.php:65
+msgid "Hubzilla API Path"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:687
-msgid "Manage contact roles"
+#: ../../extend/addon/hzaddons/redred/Mod_Redred.php:69
+msgid "Hubzilla login name"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:694
-msgid "This contacts's primary address is"
+#: ../../extend/addon/hzaddons/redred/Mod_Redred.php:73
+msgid "Hubzilla channel name"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:695
-msgid "Available locations:"
-msgstr "Tilgjengelige plasseringer:"
+#: ../../extend/addon/hzaddons/redred/Mod_Redred.php:77
+msgid "Hubzilla password"
+msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:710
-msgid "Contact Pending Approval"
+#: ../../extend/addon/hzaddons/redred/Mod_Redred.php:85
+msgid "Hubzilla Crosspost Connector"
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."
+#: ../../extend/addon/hzaddons/redred/redred.php:50
+msgid "Post to Hubzilla"
msgstr ""
-"Vennligst velg profilen du ønsker å vise %s når profilen din ses på en "
-"sikret måte."
-#: ../../Zotlabs/Module/Connedit.php:721
-msgid ""
-"Some permissions may be inherited from your channel's <a "
-"href=\"settings\"><strong>privacy settings</strong></a>, which have higher "
-"priority than individual settings. You can <strong>not</strong> change those "
-"settings here."
+#: ../../extend/addon/hzaddons/workflow/workflow.php:224
+msgid "Workflow user."
msgstr ""
-"Noen tillatelser kan være arvet fra din kanals <a "
-"ref=\"settings\"><strong>personverninnstillinger</strong></a>, som har "
-"høyere prioritet enn individuelle innstillinger. Du kan <strong>ikke</"
-"strong> endre arvede innstillingene her."
-#: ../../Zotlabs/Module/Connedit.php:722
-msgid ""
-"Some permissions may be inherited from your channel's <a "
-"href=\"settings\"><strong>privacy settings</strong></a>, which have higher "
-"priority than individual settings. You can change those settings here but "
-"they wont have any impact unless the inherited setting changes."
+#: ../../extend/addon/hzaddons/workflow/workflow.php:275
+msgid "This channel"
msgstr ""
-"Noen tillatelser kan være arvet fra din kanals <a "
-"ref=\"settings\"><strong>personverninnstillinger</strong></a>, 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."
-#: ../../Zotlabs/Module/Connedit.php:723
-msgid "Last update:"
-msgstr "Siste oppdatering:"
+#: ../../extend/addon/hzaddons/workflow/workflow.php:330
+msgid "Create New Workflow Item"
+msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:731
-msgid "Details"
+#: ../../extend/addon/hzaddons/workflow/workflow.php:564
+#: ../../extend/addon/hzaddons/workflow/workflow.php:1466
+#: ../../extend/addon/hzaddons/workflow/workflow.php:1485
+msgid "Workflow"
msgstr ""
-#: ../../Zotlabs/Module/Notifications.php:106
-#: ../../Zotlabs/Module/Notify.php:85
-msgid "No more system notifications."
-msgstr "Ingen flere systemvarsler."
+#: ../../extend/addon/hzaddons/workflow/workflow.php:1454
+msgid "No Workflows Available"
+msgstr ""
-#: ../../Zotlabs/Module/Notifications.php:110
-#: ../../Zotlabs/Module/Notify.php:89
-msgid "System Notifications"
-msgstr "Systemvarsler"
+#: ../../extend/addon/hzaddons/workflow/workflow.php:1484
+msgid "Add item to which workflow"
+msgstr ""
-#: ../../Zotlabs/Module/Notifications.php:111
-#: ../../Zotlabs/Lib/ThreadItem.php:483
-msgid "Mark all seen"
-msgstr "Merk alle som sett"
+#: ../../extend/addon/hzaddons/workflow/workflow.php:1544
+#: ../../extend/addon/hzaddons/workflow/workflow.php:1663
+msgid "Create Workflow Item"
+msgstr ""
-#: ../../Zotlabs/Module/Layouts.php:184
-msgid "Comanche page description language help"
-msgstr "Hjelp med Comanche sidebeskrivelsesspråk"
+#: ../../extend/addon/hzaddons/workflow/workflow.php:2632
+msgid "Link"
+msgstr ""
-#: ../../Zotlabs/Module/Layouts.php:188
-msgid "Layout Description"
-msgstr "Layout-beskrivelse"
+#: ../../extend/addon/hzaddons/workflow/workflow.php:2634
+msgid "Web link."
+msgstr ""
-#: ../../Zotlabs/Module/Layouts.php:193
-msgid "Download PDL file"
-msgstr "Last ned PDL-fil"
+#: ../../extend/addon/hzaddons/workflow/workflow.php:2655
+#: ../../extend/addon/hzaddons/workflow/workflow.php:2724
+msgid "Brief description or title"
+msgstr ""
-#: ../../Zotlabs/Module/Locs.php:27 ../../Zotlabs/Module/Locs.php:65
-msgid "Location not found."
-msgstr "Plassering er ikke funnet."
+#: ../../extend/addon/hzaddons/workflow/workflow.php:2663
+#: ../../extend/addon/hzaddons/workflow/workflow.php:2732
+msgid "Notes and Info"
+msgstr ""
-#: ../../Zotlabs/Module/Locs.php:74
-msgid "Location lookup failed."
-msgstr "Oppslag på plassering mislyktes."
+#: ../../extend/addon/hzaddons/workflow/workflow.php:2670
+msgid "Used to order links"
+msgstr ""
-#: ../../Zotlabs/Module/Locs.php:78
-msgid ""
-"Please select another location to become primary before removing the primary "
-"location."
+#: ../../extend/addon/hzaddons/workflow/workflow.php:2730
+msgid "Body"
msgstr ""
-"Vennligst velg en annen plassering som primær før du sletter gjeldende "
-"primære plassering."
-#: ../../Zotlabs/Module/Locs.php:106
-msgid "Syncing locations"
-msgstr "Synkroniserer plasseringer"
+#: ../../extend/addon/hzaddons/workflow/Settings/Mod_WorkflowSettings.php:101
+msgid "Workflow Settings"
+msgstr ""
-#: ../../Zotlabs/Module/Locs.php:115
-msgid "No locations found."
-msgstr "Ingen plasseringer ble funnet."
+#: ../../extend/addon/hzaddons/workflow/Settings/WorkflowSettingsUtil.php:145
+#, fuzzy
+#| msgid "Editor Settings"
+msgid "Workflow settings"
+msgstr "Instillinger for redigering"
-#: ../../Zotlabs/Module/Locs.php:120
-msgid "Manage Channel Locations"
-msgstr "Håndter kanalplasseringer"
+#: ../../extend/addon/hzaddons/nsfw/nsfw.php:153
+msgid "Possible adult content"
+msgstr ""
-#: ../../Zotlabs/Module/Locs.php:126
-msgid "Sync Now"
-msgstr "Synkroniser nå"
+#: ../../extend/addon/hzaddons/nsfw/nsfw.php:168
+#, php-format
+msgid "%s - view"
+msgstr ""
-#: ../../Zotlabs/Module/Locs.php:127
-msgid "Please wait several minutes between consecutive operations."
-msgstr "Vennligst vent flere minutter mellom hver etterfølgende operasjon."
+#: ../../extend/addon/hzaddons/nsfw/Mod_Nsfw.php:22
+msgid "NSFW Settings saved."
+msgstr ""
-#: ../../Zotlabs/Module/Locs.php:128
+#: ../../extend/addon/hzaddons/nsfw/Mod_Nsfw.php:42
msgid ""
-"When possible, drop a location by logging into that website/hub and removing "
-"your channel."
+"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 ""
-"Når mulig, fjern en plassering ved å logge inn på det nettstedet eller den "
-"hub-en og fjern din kanal."
-#: ../../Zotlabs/Module/Locs.php:129
-msgid "Use this form to drop the location if the hub is no longer operating."
+#: ../../extend/addon/hzaddons/nsfw/Mod_Nsfw.php:47
+msgid "Comma separated list of keywords to hide"
msgstr ""
-"Bruk dette skjemaet for å fjerne plasseringen hvis huben ikke er i drift "
-"lenger."
-#: ../../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."
+#: ../../extend/addon/hzaddons/nsfw/Mod_Nsfw.php:47
+msgid "Word, /regular-expression/, lang=xx, lang!=xx"
+msgstr ""
-#: ../../Zotlabs/Module/Sources.php:70
-msgid "Source updated."
-msgstr "Kilden er oppdatert."
+#: ../../extend/addon/hzaddons/nsfw/Mod_Nsfw.php:56
+msgid "NSFW"
+msgstr ""
-#: ../../Zotlabs/Module/Sources.php:99
-msgid "*"
-msgstr "*"
+#: ../../extend/addon/hzaddons/tictac/tictac.php:21
+msgid "Three Dimensional Tic-Tac-Toe"
+msgstr ""
-#: ../../Zotlabs/Module/Sources.php:105 ../../Zotlabs/Lib/Apps.php:373
-msgid "Channel Sources"
-msgstr "Kanalkilder"
+#: ../../extend/addon/hzaddons/tictac/tictac.php:54
+msgid "3D Tic-Tac-Toe"
+msgstr ""
-#: ../../Zotlabs/Module/Sources.php:106
-msgid "Manage remote sources of content for your channel."
-msgstr "Håndtere eksterne innholdskilder til din kanal."
+#: ../../extend/addon/hzaddons/tictac/tictac.php:59
+msgid "New game"
+msgstr ""
-#: ../../Zotlabs/Module/Sources.php:107 ../../Zotlabs/Module/Sources.php:117
-msgid "New Source"
-msgstr "Ny kilde"
+#: ../../extend/addon/hzaddons/tictac/tictac.php:60
+msgid "New game with handicap"
+msgstr ""
-#: ../../Zotlabs/Module/Sources.php:118 ../../Zotlabs/Module/Sources.php:152
+#: ../../extend/addon/hzaddons/tictac/tictac.php:61
msgid ""
-"Import all or selected content from the following channel into this channel "
-"and distribute it according to your channel settings."
+"Three dimensional tic-tac-toe is just like the traditional game except that "
+"it is played on multiple levels simultaneously. "
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."
-#: ../../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)"
-
-#: ../../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"
-
-#: ../../Zotlabs/Module/Sources.php:120 ../../Zotlabs/Module/Sources.php:159
-msgid "Channel Name"
-msgstr "Kanalnavn"
-
-#: ../../Zotlabs/Module/Sources.php:121 ../../Zotlabs/Module/Sources.php:156
+#: ../../extend/addon/hzaddons/tictac/tictac.php:62
msgid ""
-"Add the following categories to posts imported from this source (comma "
-"separated)"
+"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/Sources.php:122 ../../Zotlabs/Module/Sources.php:157
-msgid "Resend posts with this channel as author"
+#: ../../extend/addon/hzaddons/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/Sources.php:122 ../../Zotlabs/Module/Sources.php:157
-msgid "Copyrights may apply"
+#: ../../extend/addon/hzaddons/tictac/tictac.php:183
+msgid "You go first..."
msgstr ""
-#: ../../Zotlabs/Module/Sources.php:142 ../../Zotlabs/Module/Sources.php:172
-msgid "Source not found."
-msgstr "Kilden ble ikke funnet."
+#: ../../extend/addon/hzaddons/tictac/tictac.php:188
+msgid "I'm going first this time..."
+msgstr ""
-#: ../../Zotlabs/Module/Sources.php:149
-msgid "Edit Source"
-msgstr "Endre kilde"
+#: ../../extend/addon/hzaddons/tictac/tictac.php:194
+msgid "You won!"
+msgstr ""
-#: ../../Zotlabs/Module/Sources.php:150
-msgid "Delete Source"
-msgstr "Slett kilde"
+#: ../../extend/addon/hzaddons/tictac/tictac.php:200
+#: ../../extend/addon/hzaddons/tictac/tictac.php:225
+msgid "\"Cat\" game!"
+msgstr ""
-#: ../../Zotlabs/Module/Sources.php:180
-msgid "Source removed"
-msgstr "Kilden er fjernet"
+#: ../../extend/addon/hzaddons/tictac/tictac.php:223
+msgid "I won!"
+msgstr ""
-#: ../../Zotlabs/Module/Sources.php:182
-msgid "Unable to remove source."
-msgstr "Ikke i stand til å fjerne kilde."
+#: ../../extend/addon/hzaddons/photocache/Mod_Photocache.php:27
+msgid "Photo Cache settings saved."
+msgstr ""
-#: ../../Zotlabs/Module/Rbmark.php:93
-msgid "Select a bookmark folder"
-msgstr "Velg en bokmerkemappe"
+#: ../../extend/addon/hzaddons/photocache/Mod_Photocache.php:43
+msgid ""
+"Saves a copy of images from external sites locally to increase your "
+"anonymity in the web."
+msgstr ""
-#: ../../Zotlabs/Module/Rbmark.php:98
-msgid "Save Bookmark"
-msgstr "Lagre bokmerke"
+#: ../../extend/addon/hzaddons/photocache/Mod_Photocache.php:49
+msgid "Minimal photo size for caching"
+msgstr ""
-#: ../../Zotlabs/Module/Rbmark.php:99
-msgid "URL of bookmark"
-msgstr "URL-en til bokmerket"
+#: ../../extend/addon/hzaddons/photocache/Mod_Photocache.php:51
+msgid "In pixels. From 1 up to 1024, 0 will be replaced with system default."
+msgstr ""
-#: ../../Zotlabs/Module/Rbmark.php:104
-msgid "Or enter new bookmark folder name"
-msgstr "Eller skriv nytt navn på bokmerkemappe"
+#: ../../extend/addon/hzaddons/photocache/Mod_Photocache.php:60
+msgid "Photo Cache"
+msgstr ""
-#: ../../Zotlabs/Lib/AccessList.php:26
-msgid ""
-"A deleted privacy group with this name was revived. Existing item "
-"permissions <strong>may</strong> 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."
+#: ../../extend/addon/hzaddons/logrot/logrot.php:36
+msgid "Logfile archive directory"
msgstr ""
-#: ../../Zotlabs/Lib/AccessList.php:268
-msgid "Select a privacy group"
+#: ../../extend/addon/hzaddons/logrot/logrot.php:36
+msgid "Directory to store rotated logs"
msgstr ""
-#: ../../Zotlabs/Lib/Permcat.php:83
-msgctxt "permcat"
-msgid "Default"
-msgstr "Standard"
+#: ../../extend/addon/hzaddons/logrot/logrot.php:37
+msgid "Logfile size in bytes before rotating"
+msgstr ""
-#: ../../Zotlabs/Lib/Activity.php:2398
-#, php-format
-msgid "Likes %1$s's %2$s"
+#: ../../extend/addon/hzaddons/logrot/logrot.php:38
+msgid "Number of logfiles to retain"
msgstr ""
-#: ../../Zotlabs/Lib/Activity.php:2401
-#, php-format
-msgid "Doesn't like %1$s's %2$s"
+#: ../../extend/addon/hzaddons/xmpp/Mod_Xmpp.php:23
+msgid "XMPP settings updated."
msgstr ""
-#: ../../Zotlabs/Lib/Activity.php:2407
-#, php-format
-msgid "Will attend %s's event"
+#: ../../extend/addon/hzaddons/xmpp/Mod_Xmpp.php:35
+msgid "XMPP App"
msgstr ""
-#: ../../Zotlabs/Lib/Activity.php:2410
-#, php-format
-msgid "Will not attend %s's event"
+#: ../../extend/addon/hzaddons/xmpp/Mod_Xmpp.php:36
+msgid "Embedded XMPP (Jabber) client"
msgstr ""
-#: ../../Zotlabs/Lib/Activity.php:2413
-#, php-format
-msgid "May attend %s's event"
+#: ../../extend/addon/hzaddons/xmpp/Mod_Xmpp.php:52
+msgid "Individual credentials"
msgstr ""
-#: ../../Zotlabs/Lib/Activity.php:2416
-#, php-format
-msgid "May not attend %s's event"
+#: ../../extend/addon/hzaddons/xmpp/Mod_Xmpp.php:58
+msgid "Jabber BOSH server"
msgstr ""
-#: ../../Zotlabs/Lib/Enotify.php:60
-msgid "$Projectname Notification"
-msgstr "$Projectname varsling"
+#: ../../extend/addon/hzaddons/xmpp/Mod_Xmpp.php:67
+msgid "XMPP Settings"
+msgstr ""
-#: ../../Zotlabs/Lib/Enotify.php:63
-msgid "Thank You,"
-msgstr "Tusen takk,"
+#: ../../extend/addon/hzaddons/xmpp/xmpp.php:44
+msgid "Jabber BOSH host"
+msgstr ""
-#: ../../Zotlabs/Lib/Enotify.php:66
-#, php-format
-msgid "This email was sent by %1$s at %2$s."
+#: ../../extend/addon/hzaddons/xmpp/xmpp.php:45
+msgid "Use central userbase"
msgstr ""
-#: ../../Zotlabs/Lib/Enotify.php:67
-#, php-format
+#: ../../extend/addon/hzaddons/xmpp/xmpp.php:45
msgid ""
-"To stop receiving these messages, please adjust your Notification Settings "
-"at %s"
+"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/Lib/Enotify.php:68
-#, php-format
-msgid "To stop receiving these messages, please adjust your %s."
-msgstr ""
+#: ../../extend/addon/hzaddons/wiki/Lib/NativeWikiPage.php:41
+#: ../../extend/addon/hzaddons/wiki/Lib/NativeWikiPage.php:109
+msgid "(No Title)"
+msgstr "(Ingen tittel)"
-#: ../../Zotlabs/Lib/Enotify.php:123
-#, php-format
-msgid "%s <!item_type!>"
-msgstr "%s <!item_type!>"
+#: ../../extend/addon/hzaddons/wiki/Lib/NativeWikiPage.php:123
+msgid "Wiki page create failed."
+msgstr "Kunne ikke opprette wikiside."
-#: ../../Zotlabs/Lib/Enotify.php:131
-#, php-format
-msgid "[$Projectname:Notify] New direct message received at %s"
-msgstr "[$Projectname:Notify] Ny direktemelding mottatt kl. %s"
+#: ../../extend/addon/hzaddons/wiki/Lib/NativeWikiPage.php:137
+msgid "Wiki not found."
+msgstr "Fant ikke wikien."
-#: ../../Zotlabs/Lib/Enotify.php:133
-#, php-format
-msgid "%1$s sent you a new direct message at %2$s"
-msgstr "%1$s sendte deg en ny direktemelding kl. %2$s"
+#: ../../extend/addon/hzaddons/wiki/Lib/NativeWikiPage.php:148
+msgid "Destination name already exists"
+msgstr "Navnet finnes allerede"
-#: ../../Zotlabs/Lib/Enotify.php:134
-#, php-format
-msgid "%1$s sent you %2$s."
-msgstr "%1$s sendte deg %2$s."
+#: ../../extend/addon/hzaddons/wiki/Lib/NativeWikiPage.php:181
+#: ../../extend/addon/hzaddons/wiki/Lib/NativeWikiPage.php:376
+msgid "Page not found"
+msgstr "Fant ikke siden"
-#: ../../Zotlabs/Lib/Enotify.php:134
-msgid "a direct message"
-msgstr "en direktemelding"
+#: ../../extend/addon/hzaddons/wiki/Lib/NativeWikiPage.php:211
+msgid "Error reading page content"
+msgstr "Det oppstod en feil under lesing av innholder på siden"
-#: ../../Zotlabs/Lib/Enotify.php:135
-#, php-format
-msgid "Please visit %s to view and/or reply to your direct messages."
-msgstr "Gå til %s for å vise og/eller svare på dine direktemeldinger."
+#: ../../extend/addon/hzaddons/wiki/Lib/NativeWikiPage.php:367
+#: ../../extend/addon/hzaddons/wiki/Lib/NativeWikiPage.php:425
+#: ../../extend/addon/hzaddons/wiki/Lib/NativeWikiPage.php:493
+#: ../../extend/addon/hzaddons/wiki/Lib/NativeWikiPage.php:534
+msgid "Error reading wiki"
+msgstr "Det oppstod en feil ved lesing av wikien"
-#: ../../Zotlabs/Lib/Enotify.php:148
-msgid "requested to comment on"
-msgstr ""
+#: ../../extend/addon/hzaddons/wiki/Lib/NativeWikiPage.php:411
+msgid "Page update failed."
+msgstr "Oppdatering av siden mislyktes."
-#: ../../Zotlabs/Lib/Enotify.php:148
-msgid "commented on"
-msgstr ""
+#: ../../extend/addon/hzaddons/wiki/Lib/NativeWikiPage.php:447
+msgid "Nothing deleted"
+msgstr "Ingenting ble slettet"
-#: ../../Zotlabs/Lib/Enotify.php:161 ../../Zotlabs/Lib/Enotify.php:314
-#, fuzzy
-#| msgid "Request date"
-msgid "requested to like"
-msgstr "Dato for forespørsel"
+#: ../../extend/addon/hzaddons/wiki/Lib/NativeWikiPage.php:514
+msgid "Compare: object not found."
+msgstr "Sammanlign: fant ikke objektet."
-#: ../../Zotlabs/Lib/Enotify.php:161 ../../Zotlabs/Lib/Enotify.php:314
-msgid "liked"
-msgstr ""
+#: ../../extend/addon/hzaddons/wiki/Lib/NativeWikiPage.php:521
+msgid "Page updated"
+msgstr "Siden ble oppdatert"
-#: ../../Zotlabs/Lib/Enotify.php:164 ../../Zotlabs/Lib/Enotify.php:317
-msgid "requested to dislike"
-msgstr ""
+#: ../../extend/addon/hzaddons/wiki/Lib/NativeWikiPage.php:529
+msgid "Wiki resource_id required for git commit"
+msgstr "Wiki ressurs_id er nødvendig for å lagre i git"
-#: ../../Zotlabs/Lib/Enotify.php:164 ../../Zotlabs/Lib/Enotify.php:317
-msgid "disliked"
-msgstr ""
+#: ../../extend/addon/hzaddons/wiki/Lib/NativeWikiPage.php:589
+#: ../../extend/addon/hzaddons/wiki/Widget/Wiki_page_history.php:29
+msgctxt "wiki_history"
+msgid "Message"
+msgstr "Melding"
-#: ../../Zotlabs/Lib/Enotify.php:169
-msgid "voted on"
+#: ../../extend/addon/hzaddons/wiki/Lib/NativeWikiPage.php:590
+#: ../../extend/addon/hzaddons/wiki/Widget/Wiki_page_history.php:30
+msgid "Date"
+msgstr "Dato"
+
+#: ../../extend/addon/hzaddons/wiki/Lib/NativeWikiPage.php:591
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:364
+#: ../../extend/addon/hzaddons/wiki/Widget/Wiki_page_history.php:31
+msgid "Revert"
+msgstr "Tilbakestill"
+
+#: ../../extend/addon/hzaddons/wiki/Lib/NativeWikiPage.php:592
+#: ../../extend/addon/hzaddons/wiki/Widget/Wiki_page_history.php:32
+msgid "Compare"
+msgstr "Sammenlign"
+
+#: ../../extend/addon/hzaddons/wiki/Lib/NativeWiki.php:144
+msgid "Wiki updated successfully"
+msgstr "Wikien ble oppdatert"
+
+#: ../../extend/addon/hzaddons/wiki/Lib/NativeWiki.php:204
+msgid "Wiki files deleted successfully"
+msgstr "Wikifiler ble slettet"
+
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:136
+msgid "Error retrieving wiki"
+msgstr "Det oppstod en feil ved henting av wikien"
+
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:143
+msgid "Error creating zip file export folder"
+msgstr "Det oppstod en feil ved eksport av mappe til zip fil"
+
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:194
+msgid "Error downloading wiki: "
msgstr ""
-#: ../../Zotlabs/Lib/Enotify.php:212
-#, php-format
-msgid "%1$s %2$s [zrl=%3$s]a %4$s[/zrl]"
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:209
+#: ../../extend/addon/hzaddons/wiki/wiki.php:45
+#: ../../extend/addon/hzaddons/wiki/wiki.php:98
+#: ../../extend/addon/hzaddons/wiki/Widget/Wiki_list.php:23
+msgid "Wikis"
+msgstr "Wikier"
+
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:219
+msgid "Wiki name"
msgstr ""
-#: ../../Zotlabs/Lib/Enotify.php:220
-#, php-format
-msgid "%1$s %2$s [zrl=%3$s]%4$s's %5$s[/zrl]"
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:220
+msgid "Content type"
msgstr ""
-#: ../../Zotlabs/Lib/Enotify.php:229 ../../Zotlabs/Lib/Enotify.php:321
-#, php-format
-msgid "%1$s %2$s [zrl=%3$s]your %4$s[/zrl]"
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:223
+msgid "Any&nbsp;type"
msgstr ""
-#: ../../Zotlabs/Lib/Enotify.php:241
-#, php-format
-msgid "[$Projectname:Notify] Moderated Comment to conversation #%1$d by %2$s"
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:230
+msgid "Lock content type"
msgstr ""
-#: ../../Zotlabs/Lib/Enotify.php:243
-#, php-format
-msgid "[$Projectname:Notify] Comment to conversation #%1$d by %2$s"
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:231
+msgid "Create a status post for this wiki"
msgstr ""
-#: ../../Zotlabs/Lib/Enotify.php:244
-#, php-format
-msgid "%1$s commented on an item/conversation you have been following"
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:232
+msgid "Edit Wiki Name"
msgstr ""
-#: ../../Zotlabs/Lib/Enotify.php:247 ../../Zotlabs/Lib/Enotify.php:341
-#: ../../Zotlabs/Lib/Enotify.php:357 ../../Zotlabs/Lib/Enotify.php:381
-#: ../../Zotlabs/Lib/Enotify.php:398 ../../Zotlabs/Lib/Enotify.php:411
-#, 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."
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:277
+#, fuzzy
+msgid "Wiki not found"
+msgstr "Fant ikke wikien."
-#: ../../Zotlabs/Lib/Enotify.php:251 ../../Zotlabs/Lib/Enotify.php:252
-#, php-format
-msgid "Please visit %s to approve or reject this comment."
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:303
+msgid "Rename page"
msgstr ""
-#: ../../Zotlabs/Lib/Enotify.php:337
-#, php-format
-msgid "[$Projectname:Notify] Like received to conversation #%1$d by %2$s"
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:318
+msgid "Error retrieving page content"
msgstr ""
-#: ../../Zotlabs/Lib/Enotify.php:338
-#, php-format
-msgid "%1$s liked an item/conversation you created"
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:326
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:328
+msgid "New page"
msgstr ""
-#: ../../Zotlabs/Lib/Enotify.php:349
-#, php-format
-msgid "[$Projectname:Notify] %s posted to your profile wall"
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:363
+msgid "Revision Comparison"
msgstr ""
-#: ../../Zotlabs/Lib/Enotify.php:351
-#, php-format
-msgid "%1$s posted to your profile wall at %2$s"
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:371
+msgid "Short description of your changes (optional)"
msgstr ""
-#: ../../Zotlabs/Lib/Enotify.php:353
-#, php-format
-msgid "%1$s posted to [zrl=%2$s]your wall[/zrl]"
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:391
+msgid "New page name"
msgstr ""
-#: ../../Zotlabs/Lib/Enotify.php:375
-#, php-format
-msgid "[$Projectname:Notify] %s tagged you"
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:396
+msgid "Embed image from photo albums"
msgstr ""
-#: ../../Zotlabs/Lib/Enotify.php:376
-#, php-format
-msgid "%1$s tagged you at %2$s"
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:407
+msgid "History"
msgstr ""
-#: ../../Zotlabs/Lib/Enotify.php:377
-#, php-format
-msgid "%1$s [zrl=%2$s]tagged you[/zrl]."
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:485
+msgid "Error creating wiki. Invalid name."
msgstr ""
-#: ../../Zotlabs/Lib/Enotify.php:388
-#, php-format
-msgid "[$Projectname:Notify] %1$s poked you"
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:492
+msgid "A wiki with this name already exists."
msgstr ""
-#: ../../Zotlabs/Lib/Enotify.php:389
-#, php-format
-msgid "%1$s poked you at %2$s"
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:505
+msgid "Wiki created, but error creating Home page."
msgstr ""
-#: ../../Zotlabs/Lib/Enotify.php:390
-#, php-format
-msgid "%1$s [zrl=%2$s]poked you[/zrl]."
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:512
+msgid "Error creating wiki"
msgstr ""
-#: ../../Zotlabs/Lib/Enotify.php:405
-#, php-format
-msgid "[$Projectname:Notify] %s tagged your post"
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:536
+msgid "Error updating wiki. Invalid name."
msgstr ""
-#: ../../Zotlabs/Lib/Enotify.php:406
-#, php-format
-msgid "%1$s tagged your post at %2$s"
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:555
+msgid "Error updating wiki"
msgstr ""
-#: ../../Zotlabs/Lib/Enotify.php:407
-#, php-format
-msgid "%1$s tagged [zrl=%2$s]your post[/zrl]"
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:570
+msgid "Wiki delete permission denied."
msgstr ""
-#: ../../Zotlabs/Lib/Enotify.php:418
-msgid "[$Projectname:Notify] Introduction received"
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:580
+msgid "Error deleting wiki"
msgstr ""
-#: ../../Zotlabs/Lib/Enotify.php:419
-#, php-format
-msgid "You've received an new connection request from '%1$s' at %2$s"
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:613
+msgid "New page created"
msgstr ""
-#: ../../Zotlabs/Lib/Enotify.php:420
-#, php-format
-msgid "You've received [zrl=%1$s]a new connection request[/zrl] from %2$s."
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:739
+msgid "Cannot delete Home"
msgstr ""
-#: ../../Zotlabs/Lib/Enotify.php:423 ../../Zotlabs/Lib/Enotify.php:441
-#, php-format
-msgid "You may visit their profile at %s"
-msgstr "Du kan besøke profilen deres på %s"
-
-#: ../../Zotlabs/Lib/Enotify.php:425
-#, php-format
-msgid "Please visit %s to approve or reject the connection request."
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:815
+msgid "Current Revision"
msgstr ""
-"Vennligst besøk %s for å godkjenne eller avslå forespørselen om forbindelse."
-#: ../../Zotlabs/Lib/Enotify.php:432
-msgid "[$Projectname:Notify] Friend suggestion received"
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:815
+msgid "Selected Revision"
msgstr ""
-#: ../../Zotlabs/Lib/Enotify.php:433
-#, php-format
-msgid "You've received a friend suggestion from '%1$s' at %2$s"
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:870
+msgid "You must be authenticated."
msgstr ""
-#: ../../Zotlabs/Lib/Enotify.php:434
-#, php-format
-msgid "You've received [zrl=%1$s]a friend suggestion[/zrl] for %2$s from %3$s."
-msgstr ""
+#: ../../extend/addon/hzaddons/wiki/Mod_Wiki.php:899
+#: ../../extend/addon/hzaddons/wiki/Widget/Wiki_pages.php:64
+msgid "Add new page"
+msgstr "Legg til ny side"
-#: ../../Zotlabs/Lib/Enotify.php:439
-msgid "Name:"
-msgstr "Navn:"
+#: ../../extend/addon/hzaddons/wiki/wiki.php:48
+#: ../../extend/addon/hzaddons/cards/cards.php:51
+msgid "View Cards"
+msgstr ""
-#: ../../Zotlabs/Lib/Enotify.php:440
-msgid "Photo:"
-msgstr "Bilde:"
+#: ../../extend/addon/hzaddons/wiki/Widget/Wiki_pages.php:58
+msgid "Wiki Pages"
+msgstr "Wikisider"
-#: ../../Zotlabs/Lib/Enotify.php:443
-#, php-format
-msgid "Please visit %s to approve or reject the suggestion."
-msgstr "Vennligst besøk %s for å godkjenne eller avslå dette forslaget."
+#: ../../extend/addon/hzaddons/wiki/Widget/Wiki_pages.php:69
+msgid "Page name"
+msgstr "Sidenavn"
-#: ../../Zotlabs/Lib/Enotify.php:668
-msgid "[$Projectname:Notify]"
+#: ../../extend/addon/hzaddons/wholikesme/wholikesme.php:30
+msgid "Who likes me?"
msgstr ""
-#: ../../Zotlabs/Lib/Enotify.php:834
-msgid "created a new poll"
-msgstr "opprettet spørreskjema"
+#: ../../extend/addon/hzaddons/cards/Mod_Card_edit.php:129
+msgid "Edit Card"
+msgstr ""
-#: ../../Zotlabs/Lib/Enotify.php:834
-msgid "created a new post"
-msgstr "laget et nytt innlegg"
+#: ../../extend/addon/hzaddons/cards/Mod_Cards.php:115
+msgid "Add Card"
+msgstr ""
-#: ../../Zotlabs/Lib/Enotify.php:835
-#, php-format
-msgid "voted on %s's poll"
-msgstr "stemte på %s sitt spørreskjema"
+#: ../../extend/addon/hzaddons/libertree/Mod_Libertree.php:25
+msgid "Libertree Crosspost Connector Settings saved."
+msgstr ""
-#: ../../Zotlabs/Lib/Enotify.php:835
-#, php-format
-msgid "commented on %s's post"
-msgstr "kommenterte på %s sitt innlegg"
+#: ../../extend/addon/hzaddons/libertree/Mod_Libertree.php:49
+msgid "Libertree API token"
+msgstr ""
-#: ../../Zotlabs/Lib/Enotify.php:839
-#, php-format
-msgid "repeated %s's post"
+#: ../../extend/addon/hzaddons/libertree/Mod_Libertree.php:53
+msgid "Libertree site URL"
msgstr ""
-#: ../../Zotlabs/Lib/Enotify.php:843
-#, php-format
-msgid "liked %s's post"
+#: ../../extend/addon/hzaddons/libertree/Mod_Libertree.php:57
+msgid "Post to Libertree by default"
msgstr ""
-#: ../../Zotlabs/Lib/Enotify.php:847
-#, php-format
-msgid "disliked %s's post"
+#: ../../extend/addon/hzaddons/libertree/Mod_Libertree.php:65
+msgid "Libertree Crosspost Connector"
msgstr ""
-#: ../../Zotlabs/Lib/Enotify.php:851 ../../Zotlabs/Lib/Enotify.php:954
-msgid "shared a file with you"
+#: ../../extend/addon/hzaddons/libertree/libertree.php:43
+msgid "Post to Libertree"
msgstr ""
-#: ../../Zotlabs/Lib/Enotify.php:860
-#, php-format
-msgid "edited a post dated %s"
+#: ../../extend/addon/hzaddons/hubwall/hubwall.php:19
+msgid "Send email to all members"
msgstr ""
-#: ../../Zotlabs/Lib/Enotify.php:863
+#: ../../extend/addon/hzaddons/hubwall/hubwall.php:74
#, php-format
-msgid "edited a comment dated %s"
+msgid "%1$d of %2$d messages sent."
msgstr ""
-#: ../../Zotlabs/Lib/Enotify.php:939
-msgid "added your channel"
-msgstr "la til din kanal"
-
-#: ../../Zotlabs/Lib/Enotify.php:969
-msgid "sent you a direct message"
-msgstr "sendte deg en direktemelding"
-
-#: ../../Zotlabs/Lib/Enotify.php:976
-msgid "g A l F d"
-msgstr "g A l F d"
-
-#: ../../Zotlabs/Lib/Enotify.php:979
-msgid "[today]"
-msgstr "[idag]"
-
-#: ../../Zotlabs/Lib/Enotify.php:989
-msgid "created an event"
+#: ../../extend/addon/hzaddons/hubwall/hubwall.php:82
+msgid "Send email to all hub members."
msgstr ""
-#: ../../Zotlabs/Lib/Enotify.php:1004
-msgid "status verified"
+#: ../../extend/addon/hzaddons/hubwall/hubwall.php:94
+msgid "Sender Email address"
msgstr ""
-#: ../../Zotlabs/Lib/Connect.php:46 ../../Zotlabs/Lib/Connect.php:147
-msgid "Channel is blocked on this site."
-msgstr "Kanalen er blokkert på dette nettstedet."
+#: ../../extend/addon/hzaddons/hubwall/hubwall.php:95
+msgid "Test mode (only send to hub administrator)"
+msgstr ""
-#: ../../Zotlabs/Lib/Connect.php:51
-msgid "Channel location missing."
-msgstr "Kanalplassering mangler."
+#: ../../extend/addon/hzaddons/mdpost/mdpost.php:42
+msgid "Use markdown for editing posts"
+msgstr ""
-#: ../../Zotlabs/Lib/Connect.php:105
-msgid "Remote channel or protocol unavailable."
+#: ../../extend/addon/hzaddons/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/Lib/Connect.php:141
-msgid "Channel discovery failed."
-msgstr "Kanaloppdagelse mislyktes."
+#: ../../extend/addon/hzaddons/openid/openid.php:49
+msgid "The error message was:"
+msgstr "Feilmeldingen var:"
-#: ../../Zotlabs/Lib/Connect.php:159
-msgid "Protocol disabled."
-msgstr "Protokollen er avskrudd."
+#: ../../extend/addon/hzaddons/openid/Mod_Openid.php:32
+msgid "OpenID protocol error. No ID returned."
+msgstr "OpenID protokollfeil. Ingen ID ble returnert."
-#: ../../Zotlabs/Lib/Connect.php:171
-msgid "Cannot connect to yourself."
-msgstr "Kan ikke lage forbindelse med deg selv."
+#: ../../extend/addon/hzaddons/openid/Mod_Openid.php:78
+#: ../../extend/addon/hzaddons/openid/Mod_Openid.php:179
+#, php-format
+msgid "Welcome %s. Remote authentication successful."
+msgstr "Velkommen %s. Ekstern autentisering er vellykket."
-#: ../../Zotlabs/Lib/Connect.php:276
-msgid "error saving data"
-msgstr ""
+#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:52
+msgid "First Name"
+msgstr "Fornavn"
-#: ../../Zotlabs/Lib/Chatroom.php:25
-msgid "Missing room name"
-msgstr "Mangler romnavn"
+#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:53
+msgid "Last Name"
+msgstr "Etternavn"
-#: ../../Zotlabs/Lib/Chatroom.php:34
-msgid "Duplicate room name"
-msgstr "Duplikat romnavn"
+#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:55
+msgid "Full Name"
+msgstr "Fullt navn"
-#: ../../Zotlabs/Lib/Chatroom.php:84 ../../Zotlabs/Lib/Chatroom.php:92
-msgid "Invalid room specifier."
-msgstr "Ugyldig rom-spesifisering."
+#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:61
+msgid "Profile Photo 16px"
+msgstr "Profilbilde 16px"
-#: ../../Zotlabs/Lib/Chatroom.php:124
-msgid "Room not found."
-msgstr "Rommet ble ikke funnet."
+#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:62
+msgid "Profile Photo 32px"
+msgstr "Profilbilde 32px"
-#: ../../Zotlabs/Lib/Chatroom.php:145
-msgid "Room is full"
-msgstr "Rommet er fullt"
+#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:63
+msgid "Profile Photo 48px"
+msgstr "Profilbilde 48px"
-#: ../../Zotlabs/Lib/Apps.php:329
-msgid "Affinity Tool"
-msgstr "Nærhetsverktøy"
+#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:64
+msgid "Profile Photo 64px"
+msgstr "Profilbilde 64px"
-#: ../../Zotlabs/Lib/Apps.php:332
-msgid "Site Admin"
-msgstr "Nettstedsadministrator"
+#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:65
+msgid "Profile Photo 80px"
+msgstr "Profilbilde 80px"
-#: ../../Zotlabs/Lib/Apps.php:336
-msgid "Content Filter"
-msgstr ""
+#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:66
+msgid "Profile Photo 128px"
+msgstr "Profilbilde 128px"
-#: ../../Zotlabs/Lib/Apps.php:339
-msgid "Remote Diagnostics"
-msgstr ""
+#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:70
+msgid "Birth Year"
+msgstr "Fødselsår"
-#: ../../Zotlabs/Lib/Apps.php:340
-msgid "Suggest Channels"
-msgstr "Foreslå kanaler"
+#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:71
+msgid "Birth Month"
+msgstr "Fødselsmåne"
-#: ../../Zotlabs/Lib/Apps.php:342
-msgid "Channel Manager"
-msgstr "Kanalstyring"
+#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:72
+msgid "Birth Day"
+msgstr "Fødselsdag"
-#: ../../Zotlabs/Lib/Apps.php:343
-msgid "Stream"
-msgstr "Tidslinje"
+#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:73
+msgid "Birthdate"
+msgstr "Fødselsdato"
-#: ../../Zotlabs/Lib/Apps.php:354
-msgid "Mail"
-msgstr "Melding"
+#: ../../extend/addon/hzaddons/irc/Mod_Irc.php:23
+#: ../../extend/addon/hzaddons/irc/irc.php:41
+msgid "Popular Channels"
+msgstr ""
-#: ../../Zotlabs/Lib/Apps.php:357
-msgid "Chat"
-msgstr "Chat"
+#: ../../extend/addon/hzaddons/irc/irc.php:37
+msgid "Channels to auto connect"
+msgstr ""
-#: ../../Zotlabs/Lib/Apps.php:359
-msgid "Probe"
-msgstr "Undersøk"
+#: ../../extend/addon/hzaddons/irc/irc.php:37
+#: ../../extend/addon/hzaddons/irc/irc.php:41
+msgid "Comma separated list"
+msgstr ""
-#: ../../Zotlabs/Lib/Apps.php:360
-msgid "Suggest"
-msgstr "Forreslå"
+#: ../../extend/addon/hzaddons/irc/irc.php:45
+msgid "IRC Settings"
+msgstr ""
-#: ../../Zotlabs/Lib/Apps.php:361
-msgid "Random Channel"
-msgstr "Tilfeldig kanal"
+#: ../../extend/addon/hzaddons/irc/irc.php:54
+msgid "IRC settings saved."
+msgstr ""
-#: ../../Zotlabs/Lib/Apps.php:362
-msgid "Invite"
-msgstr "Inviter"
+#: ../../extend/addon/hzaddons/irc/irc.php:58
+msgid "IRC Chatroom"
+msgstr ""
-#: ../../Zotlabs/Lib/Apps.php:365 ../../Zotlabs/Storage/Browser.php:410
-msgid "Post"
-msgstr "Innlegg"
+#: ../../extend/addon/hzaddons/opensearch/opensearch.php:26
+#, php-format
+msgctxt "opensearch"
+msgid "Search %1$s (%2$s)"
+msgstr "Søk %1$s (%2$s)"
-#: ../../Zotlabs/Lib/Apps.php:370
-msgid "Notifications"
-msgstr "Varsler"
+#: ../../extend/addon/hzaddons/opensearch/opensearch.php:28
+msgctxt "opensearch"
+msgid "$Projectname"
+msgstr "$Projectname"
-#: ../../Zotlabs/Lib/Apps.php:371
-msgid "Order Apps"
+#: ../../extend/addon/hzaddons/opensearch/opensearch.php:43
+msgid "Search $Projectname"
msgstr ""
-#: ../../Zotlabs/Lib/Apps.php:372
-msgid "CardDAV"
+#: ../../extend/addon/hzaddons/pubcrawl/Mod_Pubcrawl.php:28
+msgid "ActivityPub Protocol Settings updated."
msgstr ""
-#: ../../Zotlabs/Lib/Apps.php:376
-msgid "OAuth Apps Manager"
+#: ../../extend/addon/hzaddons/pubcrawl/Mod_Pubcrawl.php:44
+msgid ""
+"The activitypub protocol does not support location independence. Connections "
+"you make within that network may be unreachable from alternate channel "
+"locations."
msgstr ""
-#: ../../Zotlabs/Lib/Apps.php:377
-msgid "OAuth2 Apps Manager"
+#: ../../extend/addon/hzaddons/pubcrawl/Mod_Pubcrawl.php:50
+msgid "Send activities of type note instead of article"
msgstr ""
-#: ../../Zotlabs/Lib/Apps.php:378
-msgid "PDL Editor"
+#: ../../extend/addon/hzaddons/pubcrawl/Mod_Pubcrawl.php:50
+msgid "Microblog services such as Mastodon do not properly support articles"
msgstr ""
-#: ../../Zotlabs/Lib/Apps.php:381
-msgid "My Chatrooms"
+#: ../../extend/addon/hzaddons/pubcrawl/Mod_Pubcrawl.php:58
+msgid "Activitypub Protocol"
msgstr ""
-#: ../../Zotlabs/Lib/Apps.php:382
-msgid "Channel Export"
+#: ../../extend/addon/hzaddons/flashcards/Mod_Flashcards.php:225
+msgid "Not allowed."
msgstr ""
-#: ../../Zotlabs/Lib/Apps.php:576 ../../Zotlabs/Lib/Apps.php:598
-msgid "Purchase"
-msgstr "Kjøp"
-
-#: ../../Zotlabs/Lib/Apps.php:603
-msgid "Undelete"
+#: ../../extend/addon/hzaddons/ijpost/Mod_Ijpost.php:23
+msgid "Insane Journal Crosspost Connector Settings saved."
msgstr ""
-#: ../../Zotlabs/Lib/Apps.php:611
-msgid "Add to app-tray"
-msgstr "Legg til i meny"
-
-#: ../../Zotlabs/Lib/Apps.php:612
-msgid "Remove from app-tray"
-msgstr "Fjern fra meny"
-
-#: ../../Zotlabs/Lib/Apps.php:613
-msgid "Pin to navbar"
-msgstr "Fest til navigasjonslinjen"
-
-#: ../../Zotlabs/Lib/Apps.php:614
-msgid "Unpin from navbar"
-msgstr "Fjern fra navigasjonslinjen"
-
-#: ../../Zotlabs/Lib/Techlevels.php:10
-msgid "0. Beginner/Basic"
+#: ../../extend/addon/hzaddons/ijpost/Mod_Ijpost.php:35
+msgid "Insane Journal Crosspost Connector App"
msgstr ""
-#: ../../Zotlabs/Lib/Techlevels.php:11
-msgid "1. Novice - not skilled but willing to learn"
+#: ../../extend/addon/hzaddons/ijpost/Mod_Ijpost.php:36
+msgid "Relay public postings to Insane Journal"
msgstr ""
-#: ../../Zotlabs/Lib/Techlevels.php:12
-msgid "2. Intermediate - somewhat comfortable"
+#: ../../extend/addon/hzaddons/ijpost/Mod_Ijpost.php:53
+msgid "InsaneJournal username"
msgstr ""
-#: ../../Zotlabs/Lib/Techlevels.php:13
-msgid "3. Advanced - very comfortable"
+#: ../../extend/addon/hzaddons/ijpost/Mod_Ijpost.php:57
+msgid "InsaneJournal password"
msgstr ""
-#: ../../Zotlabs/Lib/Techlevels.php:14
-msgid "4. Expert - I can write computer code"
+#: ../../extend/addon/hzaddons/ijpost/Mod_Ijpost.php:61
+msgid "Post to InsaneJournal by default"
msgstr ""
-#: ../../Zotlabs/Lib/Techlevels.php:15
-msgid "5. Wizard - I probably know more than you do"
+#: ../../extend/addon/hzaddons/ijpost/Mod_Ijpost.php:69
+msgid "Insane Journal Crosspost Connector"
msgstr ""
-#: ../../Zotlabs/Lib/Libzotdir.php:163
-msgid "Directory Options"
-msgstr "Kataloginnstillinger"
-
-#: ../../Zotlabs/Lib/Libzotdir.php:165
-msgid "Safe Mode"
-msgstr "Trygt modus"
-
-#: ../../Zotlabs/Lib/Libzotdir.php:166
-msgid "Public Forums Only"
-msgstr "Bare offentlige forum"
+#: ../../extend/addon/hzaddons/ijpost/ijpost.php:44
+msgid "Post to Insane Journal"
+msgstr ""
-#: ../../Zotlabs/Lib/Libzotdir.php:168
-msgid "This Website Only"
-msgstr "Kun dette nettstedet"
+#: ../../extend/addon/hzaddons/planets/Mod_Planets.php:23
+msgid "Random Planet App"
+msgstr ""
-#: ../../Zotlabs/Lib/Libzot.php:686
-msgid "Unable to verify channel signature"
-msgstr "Ikke i stand til å sjekke kanalsignaturen"
+#: ../../extend/addon/hzaddons/planets/Mod_Planets.php:25
+msgid ""
+"Set a random planet from the Star Wars Empire as your location when posting"
+msgstr ""
-#: ../../Zotlabs/Lib/ThreadItem.php:108
-msgid "Restricted message"
-msgstr "Begrenset melding"
+#: ../../extend/addon/hzaddons/donate/donate.php:21
+msgid "Project Servers and Resources"
+msgstr ""
-#: ../../Zotlabs/Lib/ThreadItem.php:115
-msgid "Direct message"
-msgstr "Direktemelding"
+#: ../../extend/addon/hzaddons/donate/donate.php:22
+msgid "Project Creator and Tech Lead"
+msgstr ""
-#: ../../Zotlabs/Lib/ThreadItem.php:120
-msgid "Public Policy"
+#: ../../extend/addon/hzaddons/donate/donate.php:49
+msgid ""
+"And the hundreds of other people and organisations who helped make the "
+"Hubzilla possible."
msgstr ""
-#: ../../Zotlabs/Lib/ThreadItem.php:152
-msgid "Privacy conflict. Discretion advised."
+#: ../../extend/addon/hzaddons/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/Lib/ThreadItem.php:183 ../../Zotlabs/Storage/Browser.php:372
-msgid "Admin Delete"
+#: ../../extend/addon/hzaddons/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 - "
+"<strong>you do</strong>.)"
msgstr ""
-#: ../../Zotlabs/Lib/ThreadItem.php:312
-msgid "Reply on this comment"
+#: ../../extend/addon/hzaddons/donate/donate.php:54
+msgid ""
+"Help support our ground-breaking work in decentralisation, web identity, and "
+"privacy."
msgstr ""
-#: ../../Zotlabs/Lib/ThreadItem.php:312
-msgid "reply"
+#: ../../extend/addon/hzaddons/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/Lib/ThreadItem.php:312
-msgid "Reply to"
+#: ../../extend/addon/hzaddons/donate/donate.php:59
+msgid "Donate"
msgstr ""
-#: ../../Zotlabs/Lib/ThreadItem.php:335
-msgid "Delivery Report"
-msgstr "Leveringsrapport"
+#: ../../extend/addon/hzaddons/donate/donate.php:61
+msgid ""
+"Choose a project, developer, or public hub to support with a one-time "
+"donation"
+msgstr ""
-#: ../../Zotlabs/Lib/ThreadItem.php:355
-#, fuzzy, php-format
-#| msgid "%d comment"
-#| msgid_plural "%d comments"
-msgid "%d Comment"
-msgid_plural "%d Comments"
-msgstr[0] "%d kommentar"
-msgstr[1] "%d kommentarer"
+#: ../../extend/addon/hzaddons/donate/donate.php:62
+msgid "Donate Now"
+msgstr ""
-#: ../../Zotlabs/Lib/ThreadItem.php:356
-#, php-format
-msgid "%d unseen"
+#: ../../extend/addon/hzaddons/donate/donate.php:63
+msgid ""
+"<strong><em>Or</em></strong> become a project sponsor (Hubzilla Project only)"
msgstr ""
-#: ../../Zotlabs/Lib/ThreadItem.php:406
-msgid "Forum"
+#: ../../extend/addon/hzaddons/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/Lib/ThreadItem.php:413
-msgid "to"
-msgstr "til"
+#: ../../extend/addon/hzaddons/donate/donate.php:65
+msgid "Sponsor"
+msgstr ""
-#: ../../Zotlabs/Lib/ThreadItem.php:415
-msgid "Wall-to-Wall"
-msgstr "Vegg-til-vegg"
+#: ../../extend/addon/hzaddons/donate/donate.php:68
+msgid "Special thanks to: "
+msgstr ""
-#: ../../Zotlabs/Lib/ThreadItem.php:416
-msgid "via Wall-To-Wall:"
-msgstr "via vegg-til-vegg:"
+#: ../../extend/addon/hzaddons/fediquest/Mod_Fediquest.php:22
+#, fuzzy
+#| msgid "Edit App"
+msgid "Fediquest App"
+msgstr "Endre app"
-#: ../../Zotlabs/Lib/ThreadItem.php:444
-msgid "Attend"
+#: ../../extend/addon/hzaddons/fediquest/Mod_Fediquest.php:23
+msgid "A distributed quest for a given word (game)."
msgstr ""
-#: ../../Zotlabs/Lib/ThreadItem.php:462
-msgid "Go to previous comment"
+#: ../../extend/addon/hzaddons/fediquest/Mod_Fediquest.php:24
+msgid ""
+"To start a game, enter [fediquest]your_word[/fediquest] somewhere in a "
+"toplevel post."
msgstr ""
-#: ../../Zotlabs/Lib/ThreadItem.php:475
-msgid "Add to Calendar"
-msgstr "Legg til i kalender"
-
-#: ../../Zotlabs/Lib/ThreadItem.php:837
-msgid "Image"
-msgstr "Bilde"
+#: ../../extend/addon/hzaddons/fediquest/Mod_Fediquest.php:25
+msgid "Your contacts can post their guess in the comments."
+msgstr ""
-#: ../../Zotlabs/Lib/ThreadItem.php:839
-msgid "Insert Link"
-msgstr "Sett inn lenke"
+#: ../../extend/addon/hzaddons/fediquest/Mod_Fediquest.php:26
+msgid ""
+"Your channel will evaluate the guess and automatically post the response."
+msgstr ""
-#: ../../Zotlabs/Lib/ThreadItem.php:840
-msgid "Video"
-msgstr "Video"
+#: ../../extend/addon/hzaddons/fediquest/Mod_Fediquest.php:28
+msgid "Correct letters"
+msgstr ""
-#: ../../Zotlabs/Lib/ThreadItem.php:849
-msgid "Your full name (required)"
+#: ../../extend/addon/hzaddons/fediquest/Mod_Fediquest.php:29
+msgid "Letters contained in the word but at the wrong spot"
msgstr ""
-#: ../../Zotlabs/Lib/ThreadItem.php:850
-msgid "Your email address (required)"
+#: ../../extend/addon/hzaddons/fediquest/Mod_Fediquest.php:30
+msgid "Letters not contained in the word"
msgstr ""
-#: ../../Zotlabs/Lib/ThreadItem.php:851
-msgid "Your website URL (optional)"
+#: ../../extend/addon/hzaddons/fediquest/fediquest.php:211
+msgid "ERROR: word length is not correct!"
msgstr ""
-#: ../../Zotlabs/Lib/DB_Upgrade.php:67
-msgid "Source code of failed update: "
+#: ../../extend/addon/hzaddons/wppost/wppost.php:47
+msgid "Post to WordPress"
msgstr ""
-#: ../../Zotlabs/Lib/DB_Upgrade.php:88
-#, php-format
-msgid "Update Error at %s"
-msgstr "Oppdateringsfeil ved %s"
+#: ../../extend/addon/hzaddons/wppost/Mod_Wppost.php:30
+msgid "Wordpress Settings saved."
+msgstr ""
-#: ../../Zotlabs/Lib/DB_Upgrade.php:94
-#, php-format
-msgid "Update %s failed. See error logs."
-msgstr "Oppdatering %s mislyktes. Se feilloggen."
+#: ../../extend/addon/hzaddons/wppost/Mod_Wppost.php:67
+msgid "WordPress username"
+msgstr ""
-#: ../../Zotlabs/Lib/PermissionDescription.php:108
-#: ../../Zotlabs/Access/PermissionRoles.php:384
-msgid "Public"
-msgstr "Offentlig"
+#: ../../extend/addon/hzaddons/wppost/Mod_Wppost.php:71
+msgid "WordPress password"
+msgstr ""
-#: ../../Zotlabs/Lib/PermissionDescription.php:109
-msgid "Anybody in the $Projectname network"
+#: ../../extend/addon/hzaddons/wppost/Mod_Wppost.php:75
+msgid "WordPress API URL"
msgstr ""
-#: ../../Zotlabs/Lib/PermissionDescription.php:110
-#, php-format
-msgid "Any account on %s"
+#: ../../extend/addon/hzaddons/wppost/Mod_Wppost.php:76
+msgid "Typically https://your-blog.tld/xmlrpc.php"
msgstr ""
-#: ../../Zotlabs/Lib/PermissionDescription.php:111
-msgid "Any of my connections"
+#: ../../extend/addon/hzaddons/wppost/Mod_Wppost.php:79
+msgid "WordPress blogid"
msgstr ""
-#: ../../Zotlabs/Lib/PermissionDescription.php:112
-msgid "Only connections I specifically allow"
+#: ../../extend/addon/hzaddons/wppost/Mod_Wppost.php:80
+msgid "For multi-user sites such as wordpress.com, otherwise leave blank"
msgstr ""
-#: ../../Zotlabs/Lib/PermissionDescription.php:113
-msgid "Anybody authenticated (could include visitors from other networks)"
+#: ../../extend/addon/hzaddons/wppost/Mod_Wppost.php:84
+msgid "Post to WordPress by default"
msgstr ""
-#: ../../Zotlabs/Lib/PermissionDescription.php:114
-msgid "Any connections including those who haven't yet been approved"
+#: ../../extend/addon/hzaddons/wppost/Mod_Wppost.php:88
+msgid "Forward comments (requires hubzilla_wp plugin)"
msgstr ""
-#: ../../Zotlabs/Lib/PermissionDescription.php:150
-msgid ""
-"This is your default setting for the audience of your normal stream, and "
-"posts."
+#: ../../extend/addon/hzaddons/wppost/Mod_Wppost.php:104
+msgid "Wordpress Post"
msgstr ""
-#: ../../Zotlabs/Lib/PermissionDescription.php:151
+#: ../../extend/addon/hzaddons/authchoose/Mod_Authchoose.php:30
msgid ""
-"This is your default setting for who can view your default channel profile"
+"Allow magic authentication only to websites of your immediate connections"
msgstr ""
-#: ../../Zotlabs/Lib/PermissionDescription.php:152
-msgid "This is your default setting for who can view your connections"
+#: ../../extend/addon/hzaddons/authchoose/Mod_Authchoose.php:36
+msgid "Authchoose"
msgstr ""
-#: ../../Zotlabs/Lib/PermissionDescription.php:153
-msgid ""
-"This is your default setting for who can view your file storage and photos"
+#: ../../extend/addon/hzaddons/upgrade_info/upgrade_info.php:48
+msgid "Your channel has been upgraded to $Projectname version"
msgstr ""
-#: ../../Zotlabs/Lib/PermissionDescription.php:154
-msgid "This is your default setting for the audience of your webpages"
+#: ../../extend/addon/hzaddons/upgrade_info/upgrade_info.php:50
+msgid "Please have a look at the"
msgstr ""
-#: ../../Zotlabs/Lib/Libsync.php:819
-#, php-format
-msgid "Unable to verify site signature for %s"
-msgstr "Ikke i stand til å bekrefte signaturen til %s"
+#: ../../extend/addon/hzaddons/upgrade_info/upgrade_info.php:52
+msgid "git history"
+msgstr ""
-#: ../../Zotlabs/Access/PermissionRoles.php:337
-msgid "Social Networking"
-msgstr "Sosialt nettverk"
+#: ../../extend/addon/hzaddons/upgrade_info/upgrade_info.php:54
+msgid "change log"
+msgstr ""
-#: ../../Zotlabs/Access/PermissionRoles.php:338
-msgid "Social - Federation"
+#: ../../extend/addon/hzaddons/upgrade_info/upgrade_info.php:55
+msgid "for further info."
msgstr ""
-#: ../../Zotlabs/Access/PermissionRoles.php:339
-msgid "Social - Mostly Public"
-msgstr "Sosial - ganske offentlig"
+#: ../../extend/addon/hzaddons/upgrade_info/upgrade_info.php:60
+#, fuzzy
+#| msgid "$Projectname"
+msgid "$Projectname Upgrade Info"
+msgstr "$Projectname"
-#: ../../Zotlabs/Access/PermissionRoles.php:340
-msgid "Social - Restricted"
-msgstr "Sosial - begrenset"
+#: ../../extend/addon/hzaddons/upgrade_info/upgrade_info.php:64
+msgid "Do not show this again"
+msgstr ""
-#: ../../Zotlabs/Access/PermissionRoles.php:341
-msgid "Social - Private"
-msgstr "Sosial - privat"
+#: ../../extend/addon/hzaddons/hideaside/Mod_Hideaside.php:28
+msgid "Hide Aside App"
+msgstr ""
-#: ../../Zotlabs/Access/PermissionRoles.php:344
-msgid "Community Forum"
-msgstr "Forum for fellesskap"
+#: ../../extend/addon/hzaddons/hideaside/Mod_Hideaside.php:29
+msgid "Fade out aside areas after a while when using endless scroll"
+msgstr ""
-#: ../../Zotlabs/Access/PermissionRoles.php:345
-msgid "Forum - Mostly Public"
-msgstr "Forum - ganske offentlig"
+#: ../../extend/addon/hzaddons/msgfooter/msgfooter.php:47
+msgid "text to include in all outgoing posts from this site"
+msgstr ""
-#: ../../Zotlabs/Access/PermissionRoles.php:346
-msgid "Forum - Restricted"
-msgstr "Forum - begrenset"
+#~ msgid "Link color"
+#~ msgstr "Lenkefarge"
-#: ../../Zotlabs/Access/PermissionRoles.php:347
-msgid "Forum - Private"
-msgstr "Forum - privat"
+#, fuzzy
+#~| msgid "Link color"
+#~ msgid "Dark link color"
+#~ msgstr "Lenkefarge"
-#: ../../Zotlabs/Access/PermissionRoles.php:350
-msgid "Feed Republish"
-msgstr "Republisering av strømmet innhold"
+#~ msgid "Example: 4px"
+#~ msgstr "For eksempel: 4px"
-#: ../../Zotlabs/Access/PermissionRoles.php:351
-msgid "Feed - Mostly Public"
-msgstr "Strøm - ganske offentlig"
+#, fuzzy
+#~ msgid "lonely"
+#~ msgstr "Ensom"
-#: ../../Zotlabs/Access/PermissionRoles.php:352
-msgid "Feed - Restricted"
-msgstr "Strøm - begrenset"
+#~ msgid "poke"
+#~ msgstr "prikk"
-#: ../../Zotlabs/Access/PermissionRoles.php:355
-msgid "Special Purpose"
-msgstr "Spesiell bruk"
+#~ msgid "poked"
+#~ msgstr "prikket"
-#: ../../Zotlabs/Access/PermissionRoles.php:356
-msgid "Special - Celebrity/Soapbox"
-msgstr "Spesiell - kjendis/talerstol"
+#~ msgid "ping"
+#~ msgstr "varsle"
-#: ../../Zotlabs/Access/PermissionRoles.php:357
-msgid "Special - Group Repository"
-msgstr "Spesiell - gruppelager"
+#~ msgid "pinged"
+#~ msgstr "varslet"
-#: ../../Zotlabs/Access/PermissionRoles.php:361
-msgid "Custom/Expert Mode"
-msgstr "Tilpasset/Ekspertmodus"
+#~ msgid "happy"
+#~ msgstr "glad"
-#: ../../Zotlabs/Access/PermissionRoles.php:385
-msgid "Personal"
-msgstr "Personlig"
+#~ msgid "sad"
+#~ msgstr "trist"
-#: ../../Zotlabs/Access/PermissionRoles.php:386
-#, fuzzy
-msgid "Community forum"
-msgstr "Forum for fellesskap"
+#~ msgid "mellow"
+#~ msgstr "dempet"
-#: ../../Zotlabs/Access/PermissionRoles.php:387
-msgid "Custom"
-msgstr ""
+#~ msgid "tired"
+#~ msgstr "trøtt"
-#: ../../Zotlabs/Access/Permissions.php:56
-msgid "Can view my channel stream and posts"
-msgstr ""
+#~ msgid "perky"
+#~ msgstr "oppkvikket"
-#: ../../Zotlabs/Access/Permissions.php:57
-msgid "Can send me their channel stream and posts"
-msgstr "Kan sende meg deres kanalstrøm og innlegg"
+#~ msgid "angry"
+#~ msgstr "sint"
-#: ../../Zotlabs/Access/Permissions.php:58
-msgid "Can view my default channel profile"
-msgstr "Kan se min standard kanalprofil"
+#~ msgid "stupefied"
+#~ msgstr "lamslått"
-#: ../../Zotlabs/Access/Permissions.php:59
-msgid "Can view my connections"
-msgstr "Kan se mine forbindelser"
+#~ msgid "puzzled"
+#~ msgstr "forundret"
-#: ../../Zotlabs/Access/Permissions.php:60
-msgid "Can view my file storage and photos"
-msgstr "Kan se mine filer og bilder"
+#~ msgid "interested"
+#~ msgstr "interessert"
-#: ../../Zotlabs/Access/Permissions.php:61
-msgid "Can upload/modify my file storage and photos"
-msgstr ""
+#~ msgid "bitter"
+#~ msgstr "bitter"
-#: ../../Zotlabs/Access/Permissions.php:62
-msgid "Can view my channel webpages"
-msgstr ""
+#~ msgid "cheerful"
+#~ msgstr "munter"
-#: ../../Zotlabs/Access/Permissions.php:63
-msgid "Can view my wiki pages"
-msgstr ""
+#~ msgid "alive"
+#~ msgstr "levende"
-#: ../../Zotlabs/Access/Permissions.php:64
-msgid "Can create/edit my channel webpages"
-msgstr ""
+#~ msgid "annoyed"
+#~ msgstr "irritert"
-#: ../../Zotlabs/Access/Permissions.php:65
-msgid "Can write to my wiki pages"
-msgstr ""
+#~ msgid "anxious"
+#~ msgstr "nervøs"
-#: ../../Zotlabs/Access/Permissions.php:66
-msgid "Can post on my channel (wall) page"
-msgstr ""
+#~ msgid "cranky"
+#~ msgstr "gretten"
-#: ../../Zotlabs/Access/Permissions.php:67
-msgid "Can comment on or like my posts"
-msgstr "Kan kommentere på eller like mine innlegg"
+#~ msgid "disturbed"
+#~ msgstr "foruroliget"
-#: ../../Zotlabs/Access/Permissions.php:68
-msgid "Can send me direct messages"
-msgstr "Kan sende meg direktemeldinger"
+#~ msgid "frustrated"
+#~ msgstr "frustrert"
-#: ../../Zotlabs/Access/Permissions.php:69
-msgid "Can like/dislike profiles and profile things"
-msgstr ""
+#~ msgid "depressed"
+#~ msgstr "lei seg"
-#: ../../Zotlabs/Access/Permissions.php:70
-msgid "Can chat with me"
-msgstr ""
+#~ msgid "motivated"
+#~ msgstr "motivert"
-#: ../../Zotlabs/Access/Permissions.php:71
-msgid "Can source/mirror my public posts in derived channels"
-msgstr ""
+#~ msgid "relaxed"
+#~ msgstr "avslappet"
-#: ../../Zotlabs/Access/Permissions.php:73
-msgid "Can administer my channel"
-msgstr ""
+#~ msgid "surprised"
+#~ msgstr "overrasket"
-#: ../../Zotlabs/Storage/Browser.php:292
-msgid "Change filename to"
-msgstr ""
+#, php-format
+#~ msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
+#~ msgstr "%1$s endret %2$s til &ldquo;%3$s&rdquo;"
-#: ../../Zotlabs/Storage/Browser.php:309 ../../Zotlabs/Storage/Browser.php:393
-msgid "Select a target location"
-msgstr ""
+#, php-format
+#~ msgid "%1$s is now connected with %2$s"
+#~ msgstr "%1$s er nå forbundet med %2$s"
-#: ../../Zotlabs/Storage/Browser.php:310 ../../Zotlabs/Storage/Browser.php:394
-msgid "Copy to target location"
-msgstr ""
+#, php-format
+#~ msgid "%1$s poked %2$s"
+#~ msgstr "%1$s prikket %2$s"
-#: ../../Zotlabs/Storage/Browser.php:311 ../../Zotlabs/Storage/Browser.php:392
-msgid "Set permissions for all files and sub folders"
-msgstr ""
+#, php-format
+#~ msgctxt "mood"
+#~ msgid "%1$s is %2$s"
+#~ msgstr "%1$s er %2$s"
-#: ../../Zotlabs/Storage/Browser.php:312
-msgid "Notify your contacts about this file"
-msgstr "Varsle dine kontakter om denne filen"
+#~ msgctxt "title"
+#~ msgid "Agree"
+#~ msgstr "Enig"
-#: ../../Zotlabs/Storage/Browser.php:351
-msgid "File category"
-msgstr ""
+#~ msgctxt "title"
+#~ msgid "Disagree"
+#~ msgstr "Uenig"
-#: ../../Zotlabs/Storage/Browser.php:365
-msgid "Total"
-msgstr "Totalt"
+#~ msgctxt "title"
+#~ msgid "Abstain"
+#~ msgstr "Avstår"
-#: ../../Zotlabs/Storage/Browser.php:367
-msgid "Shared"
-msgstr "Delt"
+#~ msgid "Poke"
+#~ msgstr "Prikk"
-#: ../../Zotlabs/Storage/Browser.php:369
-msgid "Add Files"
-msgstr ""
+#~ msgctxt "noun"
+#~ msgid "Agree"
+#~ msgid_plural "Agrees"
+#~ msgstr[0] "Enig"
+#~ msgstr[1] "Enige"
-#: ../../Zotlabs/Storage/Browser.php:384
-msgid "parent"
-msgstr "opp et nivå"
+#~ msgctxt "noun"
+#~ msgid "Disagree"
+#~ msgid_plural "Disagrees"
+#~ msgstr[0] "Uenig"
+#~ msgstr[1] "Uenige"
-#: ../../Zotlabs/Storage/Browser.php:402
-#, fuzzy
-msgid "Select All"
-msgstr "velg alle"
+#~ msgctxt "noun"
+#~ msgid "Abstain"
+#~ msgid_plural "Abstains"
+#~ msgstr[0] "Avstår"
+#~ msgstr[1] "Avstår"
-#: ../../Zotlabs/Storage/Browser.php:403
-msgid "Bulk Actions"
-msgstr ""
+#~ msgid "female"
+#~ msgstr "kvinne"
-#: ../../Zotlabs/Storage/Browser.php:404
-msgid "Adjust Permissions"
-msgstr ""
+#, php-format
+#~ msgid "%1$s updated her %2$s"
+#~ msgstr "%1$s oppdaterte %2$s sitt"
-#: ../../Zotlabs/Storage/Browser.php:405
-msgid "Move or Copy"
-msgstr ""
+#~ msgid "male"
+#~ msgstr "mann"
-#: ../../Zotlabs/Storage/Browser.php:408
-msgid "Info"
-msgstr ""
+#, php-format
+#~ msgid "%1$s updated his %2$s"
+#~ msgstr "%1$s oppdaterte %2$s sitt"
-#: ../../Zotlabs/Storage/Browser.php:409
-msgid "Rename"
-msgstr ""
+#, php-format
+#~ msgid "%1$s updated their %2$s"
+#~ msgstr "%1$s oppdaterte %2$s deres"
-#: ../../Zotlabs/Storage/Browser.php:411
-msgid "Attachment BBcode"
-msgstr ""
+#~ msgid "profile photo"
+#~ msgstr "profilbilde"
-#: ../../Zotlabs/Storage/Browser.php:412
-msgid "Embed BBcode"
-msgstr ""
+#~ msgctxt "edit_activity"
+#~ msgid "Post"
+#~ msgstr "Innlegg"
-#: ../../Zotlabs/Storage/Browser.php:413
-msgid "Link BBcode"
-msgstr ""
+#~ msgctxt "edit_activity"
+#~ msgid "Comment"
+#~ msgstr "Kommentar"
-#: ../../Zotlabs/Storage/Browser.php:486
-#, php-format
-msgid "You are using %1$s of your available file storage."
-msgstr "Du bruker %1$s av din tilgjengelige lagringsplass."
+#~ msgid "Like this channel"
+#~ msgstr "Lik denne kanalen"
-#: ../../Zotlabs/Storage/Browser.php:491
-#, php-format
-msgid "You are using %1$s of %2$s available file storage. (%3$s&#37;)"
-msgstr "Du bruker %1$s av %2$s tilgjengelig lagringsplass (%3$s&#37;)"
+#~ msgid "I agree"
+#~ msgstr "Jeg er enig"
-#: ../../Zotlabs/Storage/Browser.php:502
-msgid "WARNING:"
-msgstr "ADVARSEL:"
+#~ msgid "I disagree"
+#~ msgstr "Jeg er uenig"
-#: ../../Zotlabs/Storage/Browser.php:543
-msgid "Create new folder"
-msgstr "Lag ny mappe"
+#~ msgid "I abstain"
+#~ msgstr "Jeg avstår"
-#: ../../Zotlabs/Storage/Browser.php:545
-msgid "Upload file"
-msgstr "Last opp fil"
+#, php-format
+#~ msgid "%1$s agrees with %2$s's %3$s"
+#~ msgstr "%1$s er enig med %2$s sin %3$s"
-#: ../../Zotlabs/Storage/Browser.php:557
-msgid "Drop files here to immediately upload"
-msgstr ""
+#, 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/Storage/Browser.php:560
-msgid ""
-"You can select files via the upload button or drop them right here or into "
-"an existing folder."
-msgstr ""
+#, 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"
-#: ../../boot.php:1722
-msgid "Create an account to access services and applications"
-msgstr ""
+#~ msgid "Poke somebody"
+#~ msgstr "Dult noen"
-#: ../../boot.php:1740
-msgid "Email or nickname"
-msgstr ""
+#, fuzzy
+#~| msgid "Poke somebody"
+#~ msgid "Poke or ping somebody"
+#~ msgstr "Dult noen"
-#: ../../boot.php:1750
-msgid "Password"
-msgstr "Passord"
+#~ msgid "Recipient"
+#~ msgstr "Mottaker"
-#: ../../boot.php:1751
-msgid "Remember me"
-msgstr "Husk meg"
+#, fuzzy
+#~| msgid "Connections"
+#~ msgid "Choose action"
+#~ msgstr "Forbindelser"
-#: ../../boot.php:1754
-msgid "Forgot your password?"
-msgstr "Glemt passordet ditt?"
+#~ msgid "Make this post private"
+#~ msgstr "Gjør dette innlegget privat"
-#: ../../boot.php:2625
-#, php-format
-msgid "[$Projectname] Website SSL error for %s"
-msgstr ""
+#~ msgid "Mood"
+#~ msgstr "Stemning"
-#: ../../boot.php:2630
-msgid "Website SSL certificate is not valid. Please correct."
-msgstr "Nettstedets SSL-sertifikat er ikke gyldig. Vennligst fiks dette."
+#~ msgid "Set your current mood and tell your friends"
+#~ msgstr "Angi ditt nåværende humør og fortell dine venner"
-#: ../../boot.php:2746
-#, php-format
-msgid "[$Projectname] Cron tasks not running on %s"
-msgstr ""
+#, fuzzy
+#~ msgid "Refresh failed - channel is currently unavailable"
+#~ msgstr "Oppfrisking mislyktes - kanalen er for øyeblikket utilgjengelig."
-#: ../../boot.php:2751
-msgid "Cron/Scheduled tasks not running."
-msgstr "Cron/planlagte oppgaver kjører ikke."
+#~ msgid "Show Thing"
+#~ msgstr "Vis ting"
#~ msgid "Navigation bar icon color "
#~ msgstr "Navigasjonslinjens ikonfarge"
@@ -16051,4 +15953,3 @@ msgstr "Cron/planlagte oppgaver kjører ikke."
#~ msgid "Page owner information could not be retrieved."
#~ msgstr "Informasjon om sideeier kunne ikke hentes."
-
diff --git a/view/nb-no/hstrings.php b/view/nb/hstrings.php
index 7b1bf396d..e1ab75bef 100644
--- a/view/nb-no/hstrings.php
+++ b/view/nb/hstrings.php
@@ -1,951 +1,29 @@
<?php
-if(! function_exists("string_plural_select_nb_no")) {
-function string_plural_select_nb_no($n){
+if(! function_exists("string_plural_select_nb")) {
+function string_plural_select_nb($n){
return ($n != 1 ? 1 : 0);
}}
App::$rtl = 0;
App::$strings["plural_function_code"] = "(n != 1 ? 1 : 0)";
-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["Dark style"] = "";
-App::$strings["Light style"] = "";
-App::$strings["Common settings"] = "";
-App::$strings["Default to dark mode"] = "Standard mappe for opplasting av bilder";
-App::$strings["No"] = "Nei";
-App::$strings["Yes"] = "Ja";
-App::$strings["Always use light icons for navbar"] = "";
-App::$strings["Enable this option if you use a dark navbar color in light mode"] = "";
-App::$strings["Narrow navbar"] = "Smal navigasjonslinje";
-App::$strings["Navigation bar background color"] = "Navigasjonslinjens bakgrunnsfarge";
-App::$strings["Dark navigation bar background color"] = "Navigasjonslinjens bakgrunnsfarge";
-App::$strings["Link color"] = "Lenkefarge";
-App::$strings["Dark link color"] = "Lenkefarge";
-App::$strings["Link hover color"] = "Lenkefarge når musepekeren er over";
-App::$strings["Dark link hover color"] = "Lenkefarge når musepekeren er over";
-App::$strings["Set the background color"] = "Angi bakgrunnsfargen";
-App::$strings["Set the dark background color"] = "Angi bakgrunnsfargen";
-App::$strings["Set the background image"] = "Angi bakgrunnsbilde";
-App::$strings["Set the dark background image"] = "Angi bakgrunnsbilde";
-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 radius of corners"] = "Angi hjørneradius";
-App::$strings["Example: 4px"] = "For eksempel: 4px";
-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["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["Wiki Pages"] = "Wikisider";
-App::$strings["Add new page"] = "Legg til ny side";
-App::$strings["Markdown"] = "Markdown";
-App::$strings["BBcode"] = "BBcode";
-App::$strings["Text"] = "Tekst";
-App::$strings["Page name"] = "Sidenavn";
-App::$strings["Options"] = "Valg";
-App::$strings["Wikis"] = "Wikier";
-App::$strings["Name"] = "Navn";
-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["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["Create New"] = "Opprett nytt";
-App::$strings["Wiki name"] = "";
-App::$strings["Content type"] = "";
-App::$strings["Type"] = "Type";
-App::$strings["Any&nbsp;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"] = "Fant ikke wikien.";
-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"] = "Standard søkeord";
-App::$strings["The default search term. These will be shown second."] = "Standard søkeord. Disse vil vises som nummer to.";
-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"] = "Søkeord";
-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["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"] = "Ensom";
-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."] = "Ugyldig kanal";
-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.<br />The provided API URL is not valid."] = "Den oppgitte URLen for APIet er ikke gyldig. Kontakt serverens administrator.";
-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.<br />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.<br />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 <strong>public</strong> 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["<strong>Note</strong>: Due your privacy settings (<em>Hide your profile details from unknown viewers?</em>) 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"] = "Sett inn (eksisterende) bilde fra fotoalbumene dine";
-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"] = "Last opp fil/vedlegg";
-App::$strings["Toggle voting"] = "Skru av eller på stemming";
-App::$strings["Disable comments"] = "Slå av kommentarer";
-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["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 <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank\">public tile servers</a>"] = "";
-App::$strings["Nominatim (reverse geocoding) Server URL"] = "";
-App::$strings["A list of <a href=\"http://wiki.openstreetmap.org/wiki/Nominatim\" target=\"_blank\">Nominatim servers</a>"] = "";
-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["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"] = "Sjekk koden";
-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["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.<br><br>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.<br><br>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: &quot;apps&quot;, &quot;network?f=&gid=37&quot; (privacy collection), &quot;channel&quot; or &quot;notifications/system&quot; (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 <strong>public</strong> posts will be posted to Twitter."] = "";
-App::$strings["Log in with Twitter"] = "";
-App::$strings["Copy the PIN from Twitter here"] = "";
-App::$strings["<strong>Note:</strong> Due your privacy settings (<em>Hide your profile details from unknown viewers?</em>) 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"] = "tilbake til funksjonsinnstillinger";
-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.<br>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."] = "Ingen tilgang";
-App::$strings["Order Not Found"] = "";
-App::$strings["Access Denied"] = "Ingen tilgang";
-App::$strings["Invalid Item"] = "Ugyldig element.";
-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."] = "Ingen tilgang";
-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["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 <a href='http://www.piwik.org'>Piwik</a> analytics tool."] = "";
-App::$strings["If you do not want that your visits are logged this way you <a href='%s'>can set a cookie to prevent Piwik from tracking further visits of the site</a> (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 - <strong>you do</strong>.)"] = "";
-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["<strong><em>Or</em></strong> 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)"] = "Søk %1\$s (%2\$s)";
-App::$strings["__ctx:opensearch__ \$Projectname"] = "\$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["Save"] = "Lagre";
-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["Set/edit permissions"] = "Angi/endre tillatelser";
-App::$strings["Item not found."] = "Elementet ble ikke funnet.";
-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["&lt;blush&gt;"] = "";
-App::$strings["Report Bug"] = "";
-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 "] = "Skru på";
-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["poke"] = "prikk";
-App::$strings["poked"] = "prikket";
-App::$strings["ping"] = "varsle";
-App::$strings["pinged"] = "varslet";
-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"] = "Spørreskjema har utløpt";
-App::$strings["Poll ends in %s"] = "Spørreskjema utløper om %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["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["post"] = "innlegg";
-App::$strings["comment"] = "kommentar";
-App::$strings["activity"] = "aktivitet";
-App::$strings["poll"] = "spørreskjema";
-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["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"] = "mobil";
-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["%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["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["Off"] = "Av";
App::$strings["On"] = "På";
App::$strings["Calendar"] = "Kalender";
@@ -960,6 +38,7 @@ 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"] = "Bruk blogg/listemodus";
App::$strings["Comments will be displayed separately"] = "Kommentarer blir vist separat fra innlegget";
+App::$strings["Connections"] = "Forbindelser";
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"] = "";
@@ -1023,113 +102,29 @@ 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["%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"] = "Kanalnavn";
-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["about %d hours"] = array(
- 0 => "omtrent %d timer",
- 1 => "omtrent %d timer",
-);
-App::$strings["%d days"] = array(
- 0 => "%d dager",
- 1 => "%d dager",
-);
-App::$strings["%d months"] = array(
- 0 => "%d måneder",
- 1 => "%d måneder",
-);
-App::$strings["%d years"] = array(
- 0 => "%d år",
- 1 => "%d år",
-);
-App::$strings["timeago.prefixAgo"] = "timeago.prefixAgo";
-App::$strings["timeago.prefixFromNow"] = "timeago.prefixFromNow";
-App::$strings["timeago.suffixAgo"] = "siden";
-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["%1\$s's bookmarks"] = "%1\$s sine bokmerker";
+App::$strings["unknown"] = "ukjent";
+App::$strings["Permission denied."] = "Tillatelse avslått.";
+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";
+App::$strings["File exceeds size limit of %d"] = "Filens størrelse overgår grensen på %d";
+App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Du har nådd din lagringsgrense for vedlegg på %1$.0f Mbytes.";
+App::$strings["File upload failed. Possible system limit or action terminated."] = "Mislyktes med å laste opp filen. Mulig systemgrense eller handling avbrutt.";
+App::$strings["Stored file could not be verified. Upload failed."] = "Lagret fil kunne ikke bekreftes. Opplasting mislyktes.";
+App::$strings["Path not available."] = "Stien er ikke tilgjengelig.";
+App::$strings["Empty pathname"] = "Tomt sti-navn";
+App::$strings["duplicate filename or path"] = "duplikat av filnavn eller sti";
+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 an %s with you"] = "Filer: delt med meg";
+App::$strings["%s shared a %s with you"] = "";
+App::$strings["image"] = "Bilde";
+App::$strings["file"] = "";
App::$strings["url: "] = "";
App::$strings["error_code: "] = "";
App::$strings["error_string: "] = "";
@@ -1138,37 +133,20 @@ App::$strings["Friendica"] = "Friendica";
App::$strings["OStatus"] = "OStatus";
App::$strings["GNU-Social"] = "";
App::$strings["RSS/Atom"] = "RSS/Atom";
+App::$strings["ActivityPub"] = "";
+App::$strings["Email"] = "E-post";
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 &ldquo;%3\$s&rdquo;"] = "%1\$s endret %2\$s til &ldquo;%3\$s&rdquo;";
-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["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["Login failed."] = "Innlogging mislyktes.";
+App::$strings["This is the home page of %s."] = "";
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";
@@ -1177,9 +155,11 @@ App::$strings["Settings"] = "Innstillinger";
App::$strings["Account/Channel Settings"] = "Konto-/kanalinnstillinger";
App::$strings["Logout"] = "Logg ut";
App::$strings["End this session"] = "Avslutt denne økten";
+App::$strings["View Profile"] = "Vis profil";
App::$strings["Your profile page"] = "Din profilside";
-App::$strings["Edit Profiles"] = "Endre profiler";
+App::$strings["Edit Profiles"] = "Rediger profiler";
App::$strings["Manage/Edit profiles"] = "Håndter/endre profiler";
+App::$strings["Edit Profile"] = "Rediger profil";
App::$strings["Edit your profile"] = "Rediger profil";
App::$strings["Login"] = "Logg inn";
App::$strings["Sign in"] = "Logg på";
@@ -1187,7 +167,9 @@ App::$strings["Take me home"] = "";
App::$strings["Log me out of this site"] = "";
App::$strings["Register"] = "Registrer";
App::$strings["Create an account"] = "Lag en konto";
+App::$strings["Help"] = "Hjelp";
App::$strings["Help and documentation"] = "Hjelp og dokumentasjon";
+App::$strings["Search"] = "Søk";
App::$strings["Search site @name, !forum, #tag, ?docs, content"] = "Søk etter @navn, !forum, #emne, ?dokumentasjon eller innhold";
App::$strings["Admin"] = "Administrator";
App::$strings["Site Setup and Configuration"] = "Nettstedsoppsett og -konfigurasjon";
@@ -1203,6 +185,7 @@ App::$strings["Channel"] = "Kanal";
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"] = "Filer";
App::$strings["Files and Storage"] = "Filer og lagring";
App::$strings["Chatrooms"] = "Chatrom";
@@ -1210,15 +193,102 @@ App::$strings["Bookmarks"] = "Bokmerker";
App::$strings["Saved Bookmarks"] = "Lagrede bokmerker";
App::$strings["Webpages"] = "Websider";
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["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["Timezone"] = "Tidssone";
+App::$strings["This event has been added to your calendar."] = "Denne hendelsen er lagt til i din kalender.";
+App::$strings["event"] = "hendelse";
+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"] = "mobil";
+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["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["Recent Photos"] = "Nye bilder";
+App::$strings["Upload New Photos"] = "Last opp nye bilder";
+App::$strings["Permission denied"] = "Tillatelse avvist";
+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["&#x1f501; Repeated %1\$s's %2\$s"] = "";
+App::$strings["Item not found."] = "Elementet ble ikke funnet.";
+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["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["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["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[" and "] = " og ";
+App::$strings[", "] = " ";
+App::$strings["Profile Photo"] = "Profilbilde";
+App::$strings["Cover Photo"] = "Forsidebilder";
+App::$strings["public profile"] = "offentlig profil";
+App::$strings["%1\$s %2\$s has been updated to %3\$s."] = "%1\$s har oppdatert %2\$s, endret %3\$s.";
+App::$strings["%1\$s updated the %2\$s. Changed %3\$s."] = "%1\$s har oppdatert %2\$s, endret %3\$s.";
+App::$strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "En slettet gruppe med dette navnet ble gjenopprettet. Eksisterende tillatelser for elementet <strong>kan</strong> 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["default"] = "standard";
+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["Unable to create a unique channel address. Import failed."] = "Klarte ikke å lage en unik kanaladresse. Import mislyktes.";
+App::$strings["Cloned channel not found. Import failed."] = "Klonet kanal ble ikke funnet. Import mislyktes.";
App::$strings["Miscellaneous"] = "Forskjellig";
App::$strings["Birthday"] = "Fødselsdag:";
App::$strings["Age: "] = "Alder: ";
App::$strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD eller MM-DD";
+App::$strings["Required"] = "Påkrevd";
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";
@@ -1252,29 +322,24 @@ App::$strings["__ctx:relative_date__ second"] = array(
);
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: "] = "Sammendrag";
-App::$strings["Unknown"] = "Ukjent";
-App::$strings["Date: "] = "Dato";
-App::$strings["Reason: "] = "";
-App::$strings["INVALID CARD DISMISSED!"] = "";
-App::$strings["Name: "] = "Navn";
+App::$strings["photo"] = "foto";
App::$strings["channel"] = "kanal";
+App::$strings["comment"] = "kommentar";
+App::$strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s liker %2\$s sin %3\$s";
App::$strings["likes %1\$s's %2\$s"] = "";
+App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s liker ikke %2\$s sin %3\$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["%1\$s repeated %2\$s's %3\$s"] = "%1\$s deltar kanskje på %2\$ss %3\$s";
+App::$strings["repeated %1\$s's %2\$s"] = "Besøk %1\$s sitt %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["__ctx:title__ Repeats"] = "";
App::$strings["Select"] = "Velg";
+App::$strings["Delete"] = "Slett";
App::$strings["Toggle Star Status"] = "Skru av og på stjernestatus";
App::$strings["Private Message"] = "Privat melding";
App::$strings["Message signature validated"] = "Innleggets signatur er bekreftet";
@@ -1286,6 +351,7 @@ 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["View in context"] = "Vis i sammenheng";
App::$strings["Please wait"] = "Vennligst vent";
App::$strings["remove"] = "fjern";
App::$strings["Loading..."] = "Laster...";
@@ -1297,7 +363,7 @@ App::$strings["Unfollow Thread"] = "Ikke følg tråd";
App::$strings["Recent Activity"] = "Nylig aktivitet";
App::$strings["Connect"] = "Koble";
App::$strings["Edit Connection"] = "Endre forbindelse";
-App::$strings["Poke"] = "Prikk";
+App::$strings["Unknown"] = "Ukjent";
App::$strings["Approve this item"] = "Fjern denne filen";
App::$strings["Delete this item"] = "Slett dette elementet?";
App::$strings["%s likes this."] = "%s liker dette.";
@@ -1317,6 +383,36 @@ 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["Insert web link"] = "Sett inn web-lenke";
+App::$strings["Embed (existing) photo from your photo albums"] = "Sett inn (eksisterende) bilde fra fotoalbumene dine";
+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 images to embed"] = "Velg bilder";
+App::$strings["Choose an album"] = "Velg et album";
+App::$strings["Choose a different album..."] = "Velg et annet album...";
+App::$strings["Error getting album list"] = "";
+App::$strings["Error getting photo link"] = "";
+App::$strings["Error getting album"] = "";
+App::$strings["Comments enabled"] = "";
+App::$strings["Comments disabled"] = "";
+App::$strings["Confirm delete"] = "Profilen er slettet.";
+App::$strings["Preview"] = "Forhåndsvisning";
+App::$strings["Share"] = "Del";
+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"] = "Last opp fil/vedlegg";
+App::$strings["Embed an image from your albums"] = "";
+App::$strings["Cancel"] = "Avbryt";
+App::$strings["OK"] = "OK";
+App::$strings["Toggle voting"] = "Skru av eller på stemming";
App::$strings["Toggle poll"] = "Spørreskjema (på/av)";
App::$strings["Option"] = "Valg";
App::$strings["Add option"] = "Legg til valg";
@@ -1324,11 +420,26 @@ App::$strings["Minutes"] = "Minutter";
App::$strings["Hours"] = "timer";
App::$strings["Days"] = "dager";
App::$strings["Allow multiple answers"] = "Tillat flere svar";
+App::$strings["No"] = "Nei";
+App::$strings["Yes"] = "Ja";
+App::$strings["Disable comments"] = "Slå av kommentarer";
+App::$strings["Toggle comments"] = "";
+App::$strings["Title (optional)"] = "Tittel (valgfri)";
App::$strings["Summary (optional)"] = "Sammendrag (valgfritt)";
+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["__ctx:noun__ Like"] = array(
0 => "Liker",
1 => "Liker",
);
+App::$strings["__ctx:noun__ Repeat"] = array(
+ 0 => "",
+ 1 => "",
+);
App::$strings["__ctx:noun__ Dislike"] = array(
0 => "Liker ikke",
1 => "Liker ikke",
@@ -1345,183 +456,190 @@ App::$strings["__ctx:noun__ Undecided"] = array(
0 => "Ikke bestemt",
1 => "Ikke bestemt",
);
-App::$strings["__ctx:noun__ Agree"] = array(
- 0 => "Enig",
- 1 => "Enige",
+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["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["Save"] = "Lagre";
+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["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__ Disagree"] = array(
- 0 => "Uenig",
- 1 => "Uenige",
+App::$strings["__ctx:noun__ %d Vote in total"] = array(
+ 0 => "",
+ 1 => "",
);
-App::$strings["__ctx:noun__ Abstain"] = array(
- 0 => "Avstår",
- 1 => "Avstår",
+App::$strings["Poll has ended"] = "Spørreskjema har utløpt";
+App::$strings["Poll ends in %s"] = "Spørreskjema utløper om %s";
+App::$strings["Vote"] = "";
+App::$strings["Link to Source"] = "Lenke til kilde";
+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["BBcode"] = "BBcode";
+App::$strings["HTML"] = "";
+App::$strings["Markdown"] = "Markdown";
+App::$strings["Text"] = "Tekst";
+App::$strings["Comanche Layout"] = "";
+App::$strings["PHP"] = "";
+App::$strings["Page content type"] = "Sidens innholdstype";
+App::$strings["activity"] = "aktivitet";
+App::$strings["poll"] = "spørreskjema";
+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["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["Default"] = "Standard";
+App::$strings["View PDF"] = "";
+App::$strings[" by "] = " av ";
+App::$strings[" on "] = "På";
+App::$strings["Embedded content"] = "Innebygget innhold";
+App::$strings["Embedding disabled"] = "Innbygging avskrudd";
+App::$strings["Delete this item?"] = "Slett dette elementet?";
+App::$strings["Item deleted"] = "";
+App::$strings["Comment"] = "Kommentar";
+App::$strings["show all"] = "Vis alle";
+App::$strings["show less"] = "Vis eldste først";
+App::$strings["expand"] = "";
+App::$strings["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["Submit"] = "Lagre";
+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"] = "Kanalnavn";
+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["Select a profile to assign to this contact"] = "";
-App::$strings["Frequently"] = "Ofte";
-App::$strings["Hourly"] = "Hver time";
-App::$strings["Twice daily"] = "To ganger daglig";
-App::$strings["Daily"] = "Daglig";
-App::$strings["Weekly"] = "Ukentlig";
-App::$strings["Monthly"] = "Månedlig";
-App::$strings["Currently Male"] = "For tiden mann";
-App::$strings["Currently Female"] = "For tiden kvinne";
-App::$strings["Mostly Male"] = "For det meste mann";
-App::$strings["Mostly Female"] = "For det meste kvinne";
-App::$strings["Transgender"] = "Transkjønnet";
-App::$strings["Intersex"] = "interkjønnet";
-App::$strings["Transsexual"] = "Transseksuell";
-App::$strings["Hermaphrodite"] = "Hermafroditt";
-App::$strings["Neuter"] = "Intetkjønn";
-App::$strings["Non-specific"] = "Ubestemt";
-App::$strings["Undecided"] = "Ubestemt";
-App::$strings["Males"] = "Menn";
-App::$strings["Females"] = "Kvinner";
-App::$strings["Gay"] = "Homo";
-App::$strings["Lesbian"] = "Lesbisk";
-App::$strings["No Preference"] = "Ingen preferanse";
-App::$strings["Bisexual"] = "Biseksuell";
-App::$strings["Autosexual"] = "Autoseksuell";
-App::$strings["Abstinent"] = "Avholdende";
-App::$strings["Virgin"] = "Jomfru";
-App::$strings["Deviant"] = "Avviker";
-App::$strings["Fetish"] = "Fetisj";
-App::$strings["Oodles"] = "Masse";
-App::$strings["Nonsexual"] = "Ikke-seksuell";
-App::$strings["Single"] = "Enslig";
-App::$strings["Lonely"] = "Ensom";
-App::$strings["Available"] = "Tilgjengelig";
-App::$strings["Unavailable"] = "Ikke tilgjengelig";
-App::$strings["Has crush"] = "Er forelsket";
-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/Frynsegoder";
-App::$strings["Casual"] = "Tilfeldig";
-App::$strings["Engaged"] = "Forlovet";
-App::$strings["Married"] = "Gift";
-App::$strings["Imaginarily married"] = "Gift i fantasien";
-App::$strings["Partners"] = "Partnere";
-App::$strings["Cohabiting"] = "Samboer";
-App::$strings["Common law"] = "Samboer";
-App::$strings["Happy"] = "Lykkelig";
-App::$strings["Not looking"] = "Ikke på utkikk";
-App::$strings["Swinger"] = "Partnerbytte";
-App::$strings["Betrayed"] = "Bedratt";
-App::$strings["Separated"] = "Separert";
-App::$strings["Unstable"] = "Ustabilt";
-App::$strings["Divorced"] = "Skilt";
-App::$strings["Imaginarily divorced"] = "Skilt i fantasien";
-App::$strings["Widowed"] = "Enke";
-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["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 <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "En slettet gruppe med dette navnet ble gjenopprettet. Eksisterende tillatelser for elementet <strong>kan</strong> 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["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["&#x1f501; 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"] = "Innlegg";
-App::$strings["__ctx:edit_activity__ Comment"] = "Kommentar";
-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["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["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";
-App::$strings["File exceeds size limit of %d"] = "Filens størrelse overgår grensen på %d";
-App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Du har nådd din lagringsgrense for vedlegg på %1$.0f Mbytes.";
-App::$strings["File upload failed. Possible system limit or action terminated."] = "Mislyktes med å laste opp filen. Mulig systemgrense eller handling avbrutt.";
-App::$strings["Stored file could not be verified. Upload failed."] = "Lagret fil kunne ikke bekreftes. Opplasting mislyktes.";
-App::$strings["Path not available."] = "Stien er ikke tilgjengelig.";
-App::$strings["Empty pathname"] = "Tomt sti-navn";
-App::$strings["duplicate filename or path"] = "duplikat av filnavn eller sti";
-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 an %s with you"] = "Filer: delt med meg";
-App::$strings["%s shared a %s with you"] = "";
-App::$strings["image"] = "Bilde";
-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["about %d hours"] = array(
+ 0 => "omtrent %d timer",
+ 1 => "omtrent %d timer",
+);
+App::$strings["%d days"] = array(
+ 0 => "%d dager",
+ 1 => "%d dager",
+);
+App::$strings["%d months"] = array(
+ 0 => "%d måneder",
+ 1 => "%d måneder",
+);
+App::$strings["%d years"] = array(
+ 0 => "%d år",
+ 1 => "%d år",
+);
+App::$strings["timeago.prefixAgo"] = "timeago.prefixAgo";
+App::$strings["timeago.prefixFromNow"] = "timeago.prefixFromNow";
+App::$strings["timeago.suffixAgo"] = "siden";
+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["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";
@@ -1531,9 +649,12 @@ 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["Friends"] = "Venner";
App::$strings["Unable to retrieve modified identity"] = "";
App::$strings["Requested channel is not available"] = "";
+App::$strings["Requested profile is not available."] = "Forespurt profil er ikke tilgjengelig.";
App::$strings["Change profile photo"] = "Endre profilbilde";
+App::$strings["Edit"] = "Endre";
App::$strings["Create New Profile"] = "Lag ny profil";
App::$strings["Profile Image"] = "Profilbilde";
App::$strings["Visible to everybody"] = "";
@@ -1543,11 +664,14 @@ App::$strings["Status:"] = "Status:";
App::$strings["Homepage:"] = "Hjemmeside:";
App::$strings["Hometown:"] = "Hjemby:";
App::$strings["Online Now"] = "Online nå";
-App::$strings["This channel has not added a profile description yet"] = "";
+App::$strings["This channel has not added a profile description yet"] = "Denne kanalen har ikke lagt til en profilbeskrivelse enda";
App::$strings["Change your profile photo"] = "";
+App::$strings["Female"] = "Kvinnelig";
+App::$strings["Male"] = "Mannlig";
App::$strings["Trans"] = "";
+App::$strings["Neuter"] = "Intetkjønn";
+App::$strings["Non-specific"] = "Ubestemt";
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:";
@@ -1578,6 +702,38 @@ 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["%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["Everything"] = "Alt";
+App::$strings["Categories"] = "Kategorier";
+App::$strings["Common Connections"] = "";
+App::$strings["View all %d common connections"] = "";
+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["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["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["Visible to your default audience"] = "Synlig for ditt standard publikum";
App::$strings["Profile-Based Privacy Groups"] = "";
App::$strings["Private Forum"] = "";
@@ -1588,218 +744,454 @@ App::$strings["Custom selection"] = "Tilpasset utvalg";
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["Permissions"] = "Tillatelser";
App::$strings["Close"] = "Lukk";
App::$strings["Post permissions %s cannot be changed %s after a post is shared.</br />These permissions set who is allowed to view the post."] = "Tillatelsene til innlegget %s kan ikke endres %s etter at innlegget er delt.</br />Disse tillatelsene avgjør hvem som kan se innlegget.";
-App::$strings["View PDF"] = "";
-App::$strings[" by "] = " av ";
-App::$strings[" on "] = "På";
-App::$strings["Embedded content"] = "Innebygget innhold";
-App::$strings["Embedding disabled"] = "Innbygging avskrudd";
+App::$strings["INVALID EVENT DISMISSED!"] = "";
+App::$strings["Summary: "] = "Sammendrag";
+App::$strings["Date: "] = "Dato";
+App::$strings["Reason: "] = "";
+App::$strings["INVALID CARD DISMISSED!"] = "";
+App::$strings["Name: "] = "Navn";
+App::$strings["Select a profile to assign to this contact"] = "Velg en profil for denne kontakten";
+App::$strings["Frequently"] = "Ofte";
+App::$strings["Hourly"] = "Hver time";
+App::$strings["Twice daily"] = "To ganger daglig";
+App::$strings["Daily"] = "Daglig";
+App::$strings["Weekly"] = "Ukentlig";
+App::$strings["Monthly"] = "Månedlig";
+App::$strings["Currently Male"] = "For tiden mann";
+App::$strings["Currently Female"] = "For tiden kvinne";
+App::$strings["Mostly Male"] = "For det meste mann";
+App::$strings["Mostly Female"] = "For det meste kvinne";
+App::$strings["Transgender"] = "Transkjønnet";
+App::$strings["Intersex"] = "interkjønnet";
+App::$strings["Transsexual"] = "Transseksuell";
+App::$strings["Hermaphrodite"] = "Hermafroditt";
+App::$strings["Undecided"] = "Ubestemt";
+App::$strings["Males"] = "Menn";
+App::$strings["Females"] = "Kvinner";
+App::$strings["Gay"] = "Homo";
+App::$strings["Lesbian"] = "Lesbisk";
+App::$strings["No Preference"] = "Ingen preferanse";
+App::$strings["Bisexual"] = "Biseksuell";
+App::$strings["Autosexual"] = "Autoseksuell";
+App::$strings["Abstinent"] = "Avholdende";
+App::$strings["Virgin"] = "Jomfru";
+App::$strings["Deviant"] = "Avviker";
+App::$strings["Fetish"] = "Fetisj";
+App::$strings["Oodles"] = "Masse";
+App::$strings["Nonsexual"] = "Ikke-seksuell";
+App::$strings["Single"] = "Enslig";
+App::$strings["Lonely"] = "Ensom";
+App::$strings["Available"] = "Tilgjengelig";
+App::$strings["Unavailable"] = "Ikke tilgjengelig";
+App::$strings["Has crush"] = "Er forelsket";
+App::$strings["Infatuated"] = "Betatt";
+App::$strings["Dating"] = "Sammen med";
+App::$strings["Unfaithful"] = "Utro";
+App::$strings["Sex Addict"] = "Sexavhengig";
+App::$strings["Friends/Benefits"] = "Venner/Frynsegoder";
+App::$strings["Casual"] = "Tilfeldig";
+App::$strings["Engaged"] = "Forlovet";
+App::$strings["Married"] = "Gift";
+App::$strings["Imaginarily married"] = "Gift i fantasien";
+App::$strings["Partners"] = "Partnere";
+App::$strings["Cohabiting"] = "Samboer";
+App::$strings["Common law"] = "Samboer";
+App::$strings["Happy"] = "Lykkelig";
+App::$strings["Not looking"] = "Ikke på utkikk";
+App::$strings["Swinger"] = "Partnerbytte";
+App::$strings["Betrayed"] = "Bedratt";
+App::$strings["Separated"] = "Separert";
+App::$strings["Unstable"] = "Ustabilt";
+App::$strings["Divorced"] = "Skilt";
+App::$strings["Imaginarily divorced"] = "Skilt i fantasien";
+App::$strings["Widowed"] = "Enke";
+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["OpenWebAuth: %1\$s welcomes %2\$s"] = "OpenWebAuth: %1\$s ønsker %2\$s velkommen";
-App::$strings["Commented Date"] = "Sist kommentert";
-App::$strings["Order by last commented date"] = "Sorter etter dato for siste kommentar";
-App::$strings["Posted Date"] = "Innleggsdato";
-App::$strings["Order by last posted date"] = "Sorter etter dato innlegg ble postet";
-App::$strings["Date Unthreaded"] = "Utrådet";
-App::$strings["Order unthreaded by date"] = "Sorter innlegg og kommentarer uavhengig av hverandre etter dato";
-App::$strings["Stream Order"] = "Sortering av innlegg";
-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["Welcome"] = "Velkommen";
-App::$strings["No recent activities"] = "Nylig aktivitet";
-App::$strings["__ctx:noun__ new connection"] = array(
- 0 => "ny forbindelse",
- 1 => "nye forbindelser",
-);
-App::$strings["__ctx:noun__ notice"] = array(
- 0 => "varsel",
- 1 => "varsel",
-);
+App::$strings["Focus (Hubzilla default)"] = "Focus (Hubzilla standard)";
+App::$strings["Theme settings"] = "Instillinger for utseende";
+App::$strings["Dark style"] = "";
+App::$strings["Light style"] = "";
+App::$strings["Common settings"] = "";
+App::$strings["Primary theme color"] = "";
+App::$strings["Current color, leave empty for default"] = "La feltet stå tomt for å bruke standard bredde";
+App::$strings["Success theme color"] = "";
+App::$strings["Info theme color"] = "Lenkefarge når musepekeren er over";
+App::$strings["Warning theme color"] = "Lenkefarge når musepekeren er over";
+App::$strings["Danger theme color"] = "Lenkefarge når musepekeren er over";
+App::$strings["Default to dark mode"] = "Standard mappe for opplasting av bilder";
+App::$strings["Always use light icons for navbar"] = "";
+App::$strings["Enable this option if you use a dark navbar color in light mode"] = "";
+App::$strings["Narrow navbar"] = "Smal navigasjonslinje";
+App::$strings["Navigation bar background color"] = "Navigasjonslinjens bakgrunnsfarge";
+App::$strings["Dark navigation bar background color"] = "Navigasjonslinjens bakgrunnsfarge";
+App::$strings["Set the background color"] = "Angi bakgrunnsfargen";
+App::$strings["Set the dark background color"] = "Angi bakgrunnsfargen";
+App::$strings["Set the background image"] = "Angi bakgrunnsbilde";
+App::$strings["Set the dark background image"] = "Angi bakgrunnsbilde";
+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 radius of corners in rem"] = "Angi hjørneradius";
+App::$strings["Leave empty for default radius"] = "La feltet stå tomt for å bruke standard bredde";
+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["Leave empty for default size"] = "La feltet stå tomt for å bruke standard bredde";
+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["Create an account to access services and applications"] = "";
+App::$strings["Email or nickname"] = "Epost eller brukernavn";
+App::$strings["Nickname"] = "Kallenavn";
+App::$strings["Password"] = "Passord";
+App::$strings["Remember me"] = "Husk meg";
+App::$strings["Forgot your password?"] = "Glemt passordet ditt?";
+App::$strings["Password Reset"] = "Tilbakestill passord";
+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["[\$Projectname] Cron tasks not running on %s"] = "";
+App::$strings["Cron/Scheduled tasks not running."] = "Cron/planlagte oppgaver kjører ikke.";
+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["Affinity Tool"] = "Nærhetsverktøy";
+App::$strings["Articles"] = "";
+App::$strings["Cards"] = "";
+App::$strings["Site Admin"] = "Nettstedsadministrator";
+App::$strings["Report Bug"] = "";
+App::$strings["Content Filter"] = "";
+App::$strings["Content Import"] = "";
+App::$strings["Remote Diagnostics"] = "";
+App::$strings["Suggest Channels"] = "Foreslå kanaler";
+App::$strings["Channel Manager"] = "Kanalstyring";
+App::$strings["Stream"] = "Tidslinje";
+App::$strings["Wiki"] = "";
+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["Language"] = "Språk";
+App::$strings["Post"] = "Innlegg";
+App::$strings["Notifications"] = "Varsler";
+App::$strings["Order Apps"] = "";
+App::$strings["CardDAV"] = "";
+App::$strings["Channel Sources"] = "Kanalkilder";
+App::$strings["Guest Access"] = "";
+App::$strings["Notes"] = "Merknader";
+App::$strings["OAuth Apps Manager"] = "";
+App::$strings["OAuth2 Apps Manager"] = "";
+App::$strings["PDL Editor"] = "";
+App::$strings["Contact Roles"] = "";
+App::$strings["Public Stream"] = "";
+App::$strings["My Chatrooms"] = "";
+App::$strings["Channel Export"] = "";
+App::$strings["Update"] = "Oppdater";
+App::$strings["Install"] = "Installer";
+App::$strings["Purchase"] = "Kjøp";
+App::$strings["Undelete"] = "";
+App::$strings["Add to app-tray"] = "Legg til i meny";
+App::$strings["Remove from app-tray"] = "Fjern fra meny";
+App::$strings["Pin to navbar"] = "Fest til navigasjonslinjen";
+App::$strings["Unpin from navbar"] = "Fjern fra navigasjonslinjen";
+App::$strings["Directory Options"] = "Kataloginnstillinger";
+App::$strings["Safe Mode"] = "Trygg modus";
+App::$strings["Public Forums Only"] = "Bare offentlige forum";
+App::$strings["This Website Only"] = "Kun dette nettstedet";
+App::$strings["A deleted privacy group with this name was revived. Existing item permissions <strong>may</strong> 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["Restricted message"] = "Begrenset melding";
+App::$strings["Direct message"] = "Direktemelding";
+App::$strings["Public Policy"] = "";
+App::$strings["Privacy conflict. Discretion advised."] = "";
+App::$strings["Admin Delete"] = "";
+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["Share This"] = "Del dette";
+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["Reply to this comment"] = "Slett denne menyen";
+App::$strings["reply"] = "";
+App::$strings["Reply to"] = "";
App::$strings["share"] = "del";
-App::$strings["View %s's profile - %s"] = "Vis %s sin profil - %s";
+App::$strings["Repeat"] = "";
+App::$strings["repeat"] = "";
+App::$strings["Delivery Report"] = "Leveringsrapport";
+App::$strings["%d comment"] = array(
+ 0 => "%d kommentar",
+ 1 => "%d kommentarer",
+);
+App::$strings["%d unseen"] = "%d uleste";
+App::$strings["Forum"] = "";
+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["Attend"] = "";
App::$strings["Attendance Options"] = "";
App::$strings["Voting Options"] = "";
+App::$strings["Go to previous comment"] = "";
App::$strings["Pinned post"] = "";
-App::$strings["Don't show"] = "Ikke vis";
-App::$strings["__ctx:widget__ Activity"] = "aktivitet";
-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["Save Bookmarks"] = "Lagre bokmerker";
+App::$strings["Add to Calendar"] = "Legg til i kalender";
+App::$strings["Mark all comments seen"] = "Merk alle hendelser som sett";
+App::$strings["Add yours"] = "Legg til bilder";
+App::$strings["Remove yours"] = "Fjern begrep";
+App::$strings["This is you"] = "Dette er deg";
+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["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["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["This email was sent by %1\$s at %2\$s."] = "";
+App::$strings["\$Projectname"] = "\$Projectname";
+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["Notification Settings"] = "Varslingsinnstillinger";
+App::$strings["%s <!item_type!>"] = "%s <!item_type!>";
+App::$strings["[\$Projectname:Notify] New direct message received at %s"] = "[\$Projectname:Notify] Ny direktemelding mottatt kl. %s";
+App::$strings["%1\$s sent you a new direct message at %2\$s"] = "%1\$s sendte deg en ny direktemelding kl. %2\$s";
+App::$strings["%1\$s sent you %2\$s."] = "%1\$s sendte deg %2\$s.";
+App::$strings["a direct message"] = "en direktemelding";
+App::$strings["Please visit %s to view and/or reply to your direct messages."] = "Gå til %s for å vise og/eller svare på dine direktemeldinger.";
+App::$strings["requested to comment on"] = "";
+App::$strings["commented on"] = "";
+App::$strings["requested to like"] = "Dato for forespørsel";
+App::$strings["liked"] = "";
+App::$strings["requested to dislike"] = "";
+App::$strings["disliked"] = "";
+App::$strings["repeated"] = "Laget";
+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"] = "opprettet spørreskjema";
+App::$strings["created a new post"] = "laget et nytt innlegg";
+App::$strings["voted on %s's poll"] = "stemte på %s sitt spørreskjema";
+App::$strings["commented on %s's post"] = "kommenterte på %s sitt innlegg";
+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"] = "sendte deg en direktemelding";
+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["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["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["Unable to verify channel signature"] = "Ikke i stand til å sjekke kanalsignaturen";
+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["__ctx:permcat__ Default"] = "Standard";
+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";
+App::$strings["Community Forum"] = "Forum for fellesskap";
+App::$strings["Forum - Mostly Public"] = "Forum - ganske offentlig";
+App::$strings["Forum - Restricted"] = "Forum - begrenset";
+App::$strings["Forum - Private"] = "Forum - privat";
+App::$strings["Feed Republish"] = "Republisering av strømmet innhold";
+App::$strings["Feed - Mostly Public"] = "Strøm - ganske offentlig";
+App::$strings["Feed - Restricted"] = "Strøm - begrenset";
+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["Personal"] = "Personlig";
+App::$strings["Community forum"] = "Forum for fellesskap";
+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"] = "Kan sende meg direktemeldinger";
+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["Page not found."] = "Siden ikke funnet.";
+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["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"] = "Personverninnstillinger";
-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"] = "Appkategorier";
-App::$strings["Toggle post editor"] = "Vis redigering av innlegg";
-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["Queueworker"] = "";
-App::$strings["Profile Fields"] = "Profilfelter";
-App::$strings["DB updates"] = "Databaseoppdateringer";
-App::$strings["Logs"] = "Logger";
-App::$strings["Addon Features"] = "";
-App::$strings["Direct Messages"] = "Direktemeldinger";
-App::$strings["Show direct (private) messages"] = "Vis direktemeldinger (private meldinger)";
-App::$strings["Events"] = "Hendelser";
-App::$strings["Show posts that include events"] = "";
-App::$strings["Polls"] = "Spørreskjema";
-App::$strings["Show posts that include polls"] = "Vis innlegg som inneholder spørreskjema";
-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"] = "Filtrer etter navn";
-App::$strings["Remove active filter"] = "";
-App::$strings["Stream Filters"] = "Filtere for tidslinjen";
-App::$strings["App Collections"] = "Appsamlinger";
-App::$strings["Installed apps"] = "Installerte apper";
-App::$strings["Available Apps"] = "Tilgjengelige apper";
-App::$strings["Add new group"] = "";
-App::$strings["Privacy groups"] = "Personverngrupper";
-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"] = "Direktemeldinger";
-App::$strings["Starred messages"] = "";
-App::$strings["Notices"] = "Varsel";
-App::$strings["No messages"] = "Ingen meldinger";
-App::$strings["Unseen"] = "";
-App::$strings["Filter by name or address"] = "Filtrer etter navn eller adresse";
-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["New home activity notifications"] = "";
-App::$strings["Home stream"] = "";
-App::$strings["Mark all notifications seen"] = "";
-App::$strings["New direct messages notifications"] = "Varsel om nye direktemeldinger";
-App::$strings["Direct messages stream"] = "Strøm for direktemeldinger";
-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["Add Files"] = "";
+App::$strings["Name"] = "Navn";
+App::$strings["Type"] = "Type";
+App::$strings["Last Modified"] = "Sist endret";
+App::$strings["parent"] = "opp et nivå";
+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["Select All"] = "velg alle";
+App::$strings["Bulk Actions"] = "";
+App::$strings["Adjust Permissions"] = "";
+App::$strings["Move or Copy"] = "";
+App::$strings["Download"] = "";
+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&#37;)"] = "Du bruker %1\$s av %2\$s tilgjengelig lagringsplass (%3\$s&#37;)";
+App::$strings["WARNING:"] = "ADVARSEL:";
+App::$strings["Create new folder"] = "Lag ny mappe";
+App::$strings["Upload file"] = "Last opp fil";
+App::$strings["Upload"] = "Last opp";
+App::$strings["Drop files here to immediately upload"] = "";
+App::$strings["Show in your contacts shared folder"] = "";
+App::$strings["You can select files via the upload button or drop them right here or into an existing folder."] = "";
+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["Created"] = "Laget";
+App::$strings["Edited"] = "Endret";
+App::$strings["New"] = "Nye";
+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["Documentation Search"] = "Søk i dokumentasjon";
+App::$strings["Not Found"] = "Ikke funnet";
+App::$strings["\$Projectname Documentation"] = "\$Projectname dokumentasjon";
+App::$strings["Contents"] = "";
+App::$strings["Members"] = "Medlemmer";
+App::$strings["Administrators"] = "";
+App::$strings["Developers"] = "";
+App::$strings["Tutorials"] = "";
+App::$strings["Help:"] = "Hjelp:";
+App::$strings["Item not found"] = "Elementet ble ikke funnet.";
+App::$strings["Block Name"] = "Byggeklossens navn";
+App::$strings["Edit Block"] = "Endre byggekloss";
+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["Search Results For:"] = "Søkeresultat for:";
App::$strings["Reset form"] = "Nullstill skjema";
-App::$strings["Privacy group is empty"] = "Personverngruppen er tom";
-App::$strings["Privacy group: "] = "Personverngruppe: ";
+App::$strings["You must enable javascript for your browser to be able to view this content."] = "";
+App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Du har laget %1$.0f av %2$.0f tillatte kanaler.";
+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"] = "Kanalnavn";
+App::$strings["Choose a short nickname"] = "Velg et kort kallenavn";
+App::$strings["Channel role"] = "Kanalrolle";
+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 <a href=\"import\">import an existing channel</a> from another location."] = "eller <a href=\"import\">importer en eksisterende kanal</a> fra et annet sted.";
+App::$strings["Validate"] = "";
+App::$strings["Unable to find your hub."] = "Ikke i stand til å finne hubben din.";
+App::$strings["Post successful."] = "Innlegg vellykket.";
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.";
@@ -1812,66 +1204,14 @@ 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["Edit post"] = "Endre innlegg";
+App::$strings["Invalid item."] = "Ugyldig element.";
+App::$strings["Channel not found."] = "Kanalen ble ikke funnet.";
+App::$strings["Language App"] = "";
+App::$strings["Not Installed"] = "";
+App::$strings["Token verification failed."] = "";
+App::$strings["Email verification resent"] = "";
+App::$strings["Unable to resend email verification message."] = "";
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.";
@@ -1918,6 +1258,10 @@ 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["Error: the sodium encryption library is not installed."] = "";
+App::$strings["Generate ed25519 encryption keys"] = "Lag krypteringsnøkler";
+App::$strings["Error: one of \"bcmath\" or \"gmp\" (bigmath library) extensions are required."] = "";
+App::$strings["Bigmath library (either bcmath or gmp)"] = "";
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";
@@ -1925,6 +1269,7 @@ 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["intl PHP module"] = "xml PHP modul";
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"] = "";
@@ -1939,6 +1284,7 @@ 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["Error: intl PHP module required but not installed."] = "Feil: openssl PHP-modul er påkrevd, men er ikke installert.";
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.";
@@ -1961,30 +1307,271 @@ 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["Errors encountered creating database tables."] = "Feil oppstod under opprettelsen av databasetabeller.";
App::$strings["<h1>What next?</h1>"] = "";
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["Bookmark added"] = "Bokmerke lagt til";
+App::$strings["My Connections Bookmarks"] = "Mine forbindelsers bokmerker";
+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 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["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["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"] = "Lenke til kilde";
+App::$strings["calendar"] = "kalender";
+App::$strings["Failed to remove event"] = "Mislyktes med å slette hendelse";
+App::$strings["Remote privacy information not available"] = "";
+App::$strings["__ctx:acl__ Profile"] = "Profil";
+App::$strings["Privacy group"] = "Personverngruppe:";
+App::$strings["Item"] = "";
+App::$strings["Click to copy link to this ressource for guest %s to clipboard"] = "";
+App::$strings["Link copied"] = "";
+App::$strings["Access"] = "Tilgang";
+App::$strings["Guest access"] = "";
+App::$strings["OCAP access"] = "";
+App::$strings["Layout Name"] = "Layout-navn";
+App::$strings["Layout Description (Optional)"] = "Layoutens beskrivelse (valgfritt)";
+App::$strings["Edit Layout"] = "Endre layout";
+App::$strings["Album not found."] = "Albumet ble ikke funnet.";
+App::$strings["Delete Album"] = "Slett album";
+App::$strings["Delete Photo"] = "Slett bilde";
+App::$strings["Public access denied."] = "Offentlig tilgang avvist.";
+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 photo storage used."] = "%1$.2f MB lagringsplass til bilder er brukt.";
+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["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)"] = "Beskrivelse (valgritt)";
+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["Add Photos"] = "Legg til bilder";
+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["Previous"] = "Forrige";
+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["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["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["Name is required"] = "Navn er påkrevd";
+App::$strings["Key and Secret are required"] = "Nøkkel og hemmelighet er påkrevd";
+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 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["Available Apps"] = "Tilgjengelige apper";
+App::$strings["Installed Apps"] = "Installerte apper";
+App::$strings["Manage Apps"] = "Behandle apper";
+App::$strings["Create Custom App"] = "";
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 <strong>may</strong> 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 <strong>kan</strong> 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["toggle full screen mode"] = "";
+App::$strings["Item is not editable"] = "Elementet kan ikke endres";
+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["No channel."] = "Ingen kanal.";
+App::$strings["No connections in common."] = "Ingen forbindelser felles.";
+App::$strings["View Common Connections"] = "";
+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["Gender"] = "Kjønn";
+App::$strings["Sexual Preference"] = "Seksuelle preferanser";
+App::$strings["Homepage"] = "Hjemmeside";
+App::$strings["Interests"] = "Interesser";
+App::$strings["Address"] = "Adresse";
+App::$strings["Profile updated."] = "Profilen er oppdatert.";
+App::$strings["Hide my connections from viewers of this profile"] = "Skjul mine forbindelser fra besøkende som ser denne profilen";
+App::$strings["Publish my default profile in the network directory"] = "La standardprofilen min vises i nettverkskatalonen";
+App::$strings["Suggest me as a potential contact to new members"] = "Foreslå meg som mulig kontakt til nye medlemmer";
+App::$strings["Reveal my online status"] = "La andre se om jeg er pålogget eller ikke";
+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"] = "Grunnleggende";
+App::$strings["Relationship"] = "Forhold";
+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"] = "Kort tittel/beskrivelse";
+App::$strings["Maximal 190 characters"] = "Maksimum 190 tegn";
+App::$strings["Street address"] = "Gateadresse";
+App::$strings["Locality/City"] = "Sted/by";
+App::$strings["Region/State"] = "Region";
+App::$strings["Postal/Zip code"] = "Postnummer";
+App::$strings["Country"] = "Land";
+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["Homepage URL"] = "Hjemmeside URL";
+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["Create New"] = "Lag ny profil";
+App::$strings["No such group"] = "Gruppen finnes ikke";
+App::$strings["No such channel"] = "Ingen slik kanal";
+App::$strings["Privacy group is empty"] = "Personverngruppen er tom";
+App::$strings["Privacy group: "] = "Personverngruppe: ";
+App::$strings["Invalid channel."] = "Ugyldig kanal";
+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"] = "(%s): Ikke en virkelig epostadresse";
+App::$strings["(%s) : Not allowed email address"] = "(%s): Ikke en tillatt epostadresse";
+App::$strings["(%s) : email address already in use"] = "(%s): epostadressen er allerede i bruk";
+App::$strings["(%s) : Accepted email address"] = "(%s): Godkjent epostadresse";
+App::$strings["%s : Message delivery failed."] = "%s : meldingslevering feilet.";
+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["Minute(s)"] = "";
+App::$strings["Hour(s)"] = "";
+App::$strings["Day(s)"] = "";
+App::$strings["Invitation expires after"] = "";
+App::$strings["duration up from now"] = "";
+App::$strings["Invitation"] = "";
+App::$strings["Send invitations"] = "Send invitasjoner";
+App::$strings["Invitations I am using"] = "Invitasjoner jeg bruker";
+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["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["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["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["%s element installed"] = "%s element installert";
+App::$strings["%s element installation failed"] = "Installasjon av %s-element mislyktes";
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.";
@@ -1999,43 +1586,41 @@ 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["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["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["View"] = "Vis";
+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["item"] = "";
+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["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["Your cover photo may be visible to anybody on the internet"] = "Omslagsbildet ditt vil være synlig for enhver på internett";
+App::$strings["Upload File:"] = "Last opp fil:";
+App::$strings["Select a profile:"] = "Velg en profil:";
+App::$strings["Change Cover Photo"] = "Endre omslagsbilde";
+App::$strings["Use a photo from your albums"] = "";
+App::$strings["Choose a different album"] = "Velg et annet album";
+App::$strings["Select existing photo"] = "Velg eksisterende bilde";
+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"] = "Lagre endringer";
+App::$strings["You must be logged in to see this page."] = "Du må være innloegget for å se denne siden.";
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["I am online"] = "Jeg er pålogget";
App::$strings["Bookmark this room"] = "Bokmerk dette rommet";
App::$strings["New Chatroom"] = "Nytt chatrom";
App::$strings["Chatroom name"] = "Romnavn";
@@ -2045,60 +1630,145 @@ 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"] = "Lenke til kilde";
-App::$strings["calendar"] = "kalender";
-App::$strings["Failed to remove event"] = "Mislyktes med å slette hendelse";
-App::$strings["Account not found."] = "Kontoen ble ikke funnet";
-App::$strings["Multifactor Verification"] = "";
-App::$strings["Please enter the verification key from your authenticator app"] = "";
-App::$strings["Like/Dislike"] = "Liker/Liker ikke";
-App::$strings["This action is restricted to members."] = "Denne handlingen er begrenset til medlemmer.";
-App::$strings["Please <a href=\"rmagic\">login with your \$Projectname ID</a> or <a href=\"register\">register as a new \$Projectname member</a> to continue."] = "Vennligst <a href=\"rmagic\">logg inn med din \$Projectname ID</a> eller <a href=\"register\">registrer deg som et nytt \$Projectname-medlem</a> 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 or ping somebody"] = "Dult noen";
-App::$strings["Recipient"] = "Mottaker";
-App::$strings["Choose action"] = "Forbindelser";
-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:"] = "Tidssone";
-App::$strings["Previous"] = "Forrige";
-App::$strings["Today"] = "Idag";
-App::$strings["Month"] = "måned";
-App::$strings["Week"] = "uke";
-App::$strings["Day"] = "dag";
-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["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["Options"] = "Valg";
+App::$strings["Redeliver"] = "";
+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["Description"] = "Beskrivelse";
+App::$strings["Or enter new bookmark folder name"] = "Eller skriv nytt navn på bokmerkemappe";
+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["Private forum"] = "";
+App::$strings["Public forum"] = "Offentlig forum:";
+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)"] = "Kategorier (valgfri, kommaseparert liste)";
+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["No default suggestions were found."] = "";
+App::$strings["Gender: "] = "Kjønn: ";
+App::$strings["Status: "] = "Status: ";
+App::$strings["Homepage: "] = "Hjemmeside: ";
+App::$strings["Description:"] = "Beskrivelse:";
+App::$strings["Unsafe"] = "";
+App::$strings["Spam"] = "";
+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["No service class restrictions found."] = "Ingen restriksjoner er funnet i tjenesteklasse.";
+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["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["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["Refresh Permissions"] = "Oppfrisk tillatelser";
+App::$strings["Fetch updated permissions"] = "Hent oppdaterte tillatelser";
+App::$strings["Refresh Photo"] = "";
+App::$strings["Fetch updated photo"] = "";
+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["Fetch Vcard"] = "";
+App::$strings["Fetch electronic calling card for this connection"] = "";
+App::$strings["Affinity"] = "";
+App::$strings["Open Set Affinity section by default"] = "";
+App::$strings["Me"] = "Meg";
+App::$strings["Family"] = "Familie";
+App::$strings["Acquaintances"] = "Bekjente";
+App::$strings["All"] = "Alle";
+App::$strings["Filter"] = "";
+App::$strings["Open Custom Filter section by default"] = "";
+App::$strings["Approve this contact"] = "";
+App::$strings["Accept contact to allow communication"] = "";
+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["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["Contact: %s"] = "";
+App::$strings["Contact role"] = "";
+App::$strings["Manage contact roles"] = "";
+App::$strings["This contacts's primary address is"] = "";
+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["Contact Tools"] = "";
+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["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["Contact Pending Approval"] = "";
+App::$strings["inherited"] = "arvet";
+App::$strings["Approve contact"] = "";
+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"] = "";
+App::$strings["My"] = "";
+App::$strings["Individual Permissions"] = "Individuelle tillatelser";
+App::$strings["Some permissions may be inherited from your channel's <a href=\"settings\"><strong>privacy settings</strong></a>, which have higher priority than individual settings. You can <strong>not</strong> change those settings here."] = "Noen tillatelser kan være arvet fra din kanals <a ref=\"settings\"><strong>personverninnstillinger</strong></a>, som har høyere prioritet enn individuelle innstillinger. Du kan <strong>ikke</strong> endre arvede innstillingene her.";
+App::$strings["Some permissions may be inherited from your channel's <a href=\"settings\"><strong>privacy settings</strong></a>, 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 <a ref=\"settings\"><strong>personverninnstillinger</strong></a>, 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["Organisation"] = "";
+App::$strings["Title"] = "Tittel";
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"] = "";
@@ -2108,68 +1778,151 @@ 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"] = "Profil";
-App::$strings["Privacy group"] = "Personverngruppe:";
-App::$strings["Item"] = "";
-App::$strings["Click to copy link to this ressource for guest %s to clipboard"] = "";
-App::$strings["Link copied"] = "";
-App::$strings["Access"] = "Tilgang";
-App::$strings["OCAP 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["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["Channel exists but has been marked removed on this hub. Import failed."] = "";
+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["Page link"] = "Sidelenke";
+App::$strings["Edit Webpage"] = "Endre webside";
+App::$strings["Enter a folder name"] = "";
+App::$strings["or select an existing folder (doubleclick)"] = "";
+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["Permissions denied."] = "Tillatelse avvist.";
+App::$strings["Today"] = "Idag";
+App::$strings["Entry censored"] = "";
+App::$strings["Entry OK"] = "";
+App::$strings["network"] = "nettverk";
+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["Xchan Lookup"] = "Xchan oppslag";
+App::$strings["Lookup xchan beginning with (or webbie): "] = "Slå opp xchan som begynner med (eller webbie): ";
+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["Why do you want to join this hub?"] = "";
+App::$strings["This will help to review your registration"] = "";
+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"] = "Jeg er mer enn %s år gammel, og godtar %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["Your name"] = "Navn";
+App::$strings["Real name is preferred"] = "";
+App::$strings["Your nickname will be used to create an easy to remember channel address"] = "";
+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 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 <strong>may</strong> 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 <strong>kan</strong> 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["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["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["Welcome to %s"] = "Velkommen til %s";
+App::$strings["Block Title"] = "Byggeklossens tittel";
+App::$strings["Settings updated."] = "Innstillinger oppdatert.";
+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["Automatic approval settings"] = "";
+App::$strings["My Settings"] = "Mine innstillinger";
+App::$strings["Some individual permissions may have been preset or locked based on your channel type and privacy settings."] = "";
+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["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 <em>Settings</em> page after successful login."] = "Ditt passord kan endres på siden <em>Innstillinger</em> 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["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["Primary"] = "Primær";
+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["Account not found."] = "Kontoen ble ikke funnet";
+App::$strings["Multifactor Verification"] = "";
+App::$strings["Please enter the verification key from your authenticator app"] = "";
+App::$strings["Verify"] = "";
+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["Poll not found."] = "Fant ikke spørreskjema.";
+App::$strings["Invalid response."] = "";
+App::$strings["Response submitted. Updates may not appear instantly."] = "";
+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["This profile photo will be visible to anybody on the internet and may be distributed to other websites."] = "Dette profilbildet vil være synlig for enhver besøkende, og kan bli gjort tilgjengelig på andre nettsteder.";
+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"] = "Endre profilbilde";
+App::$strings["Reset to default"] = "Sett tilbake til standard";
+App::$strings["Select existing"] = "Velg eksisterende bilde";
+App::$strings["Done editing"] = "Lagre endringer";
App::$strings["Import Webpage Elements"] = "";
App::$strings["Import selected"] = "";
App::$strings["Export Webpage Elements"] = "";
@@ -2177,26 +1930,43 @@ 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["Active"] = "Aktiv";
+App::$strings["Blocked"] = "Blokkert";
+App::$strings["Ignored"] = "Ignorert";
+App::$strings["Hidden"] = "Skjult";
+App::$strings["Archived/Unreachable"] = "Arkivert/utilgjengelig";
+App::$strings["Active Connections"] = "Aktive forbindelser";
+App::$strings["Show active connections"] = "";
+App::$strings["New Connections"] = "Nye forbindelser";
+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["Approve connection"] = "Godkjenn forbindelse";
+App::$strings["Ignore connection"] = "Ignorer forbindelse";
+App::$strings["Recent activity"] = "Nylig aktivitet";
+App::$strings["Connect at this location"] = "";
+App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Du har %1$.0f av %2$.0f tillate forbindelser.";
+App::$strings["Search your connections"] = "Søk blant dine forbindelser";
+App::$strings["Contact search"] = "";
+App::$strings["This is a group/forum channel"] = "";
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";
@@ -2206,112 +1976,71 @@ App::$strings["Potential connections will then see the following text before pro
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["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["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["Automatically adjust pause before starting next task"] = "";
-App::$strings["Queueworker Settings"] = "";
-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/<br />https://www.youtube.com/<br />https://youtu.be/<br />https://vimeo.com/<br />https://soundcloud.com/<br />"] = "https://youtube.com/<br />https://www.youtube.com/<br />https://youtu.be/<br />https://vimeo.com/<br />https://soundcloud.com/<br />";
-App::$strings["All other embedded content will be filtered, <strong>unless</strong> embedded content from that site is explicitly blocked."] = "Alt annet innebygget innhold vil bli filtrert, <strong>med mindre</strong> 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["Additional trusted directory server URLs"] = "Standard katalogtjener";
-App::$strings["Accept directory flags (spam, nsfw) from those servers. One per line like https://example.tld"] = "";
-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["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"] = "Standard";
+App::$strings["Default minimum affinity level"] = "";
+App::$strings["0-99 - default 0"] = "Standard";
+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["About this site"] = "Om dette nettstedet ";
+App::$strings["Site Name"] = "Nettstedets navn";
+App::$strings["Site Information"] = "Nettstedsinformasjon";
+App::$strings["Administrator"] = "Administrator";
+App::$strings["Software and Project information"] = "Program- og prosjektinformasjon";
+App::$strings["This site is powered by \$Projectname"] = "Dette nettstedet drives av \$Projectname";
+App::$strings["Federated and decentralised networking and identity services provided by"] = "Fødererte og desentraliserte nettverks- og identitetstjenester via Zot";
+App::$strings["Additional federated transport protocols:"] = "Øvrige fødererte transportprotokoller:";
+App::$strings["Version %s"] = "Versjon %s";
+App::$strings["Project homepage"] = "Prosjektets hjemmeside";
+App::$strings["Developer homepage"] = "Utviklers hjemmeside";
+App::$strings["Active addons"] = "Aktive tillegg";
+App::$strings["Blocked sites"] = "Byggeklossens tittel";
+App::$strings["Item sync completed!"] = "";
+App::$strings["Import host does not seem to be online or compatible"] = "";
+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["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["Deprecated!"] = "";
+App::$strings["File not found."] = "Filen ble ikke funnet.";
+App::$strings["Permission Denied."] = "Tillatelse avvist.";
+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["Share this file"] = "Del denne filen";
+App::$strings["Show URL to this file"] = "Vis URLen til denne filen";
+App::$strings["Layout not found"] = "Layouten ble ikke funnet.";
+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["Layout updated."] = "Layout er oppdatert.";
+App::$strings["Edit System Page Description"] = "Endre beskrivelsen av systemsiden";
+App::$strings["(modified)"] = "(endret)";
+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["Item approved"] = "Konto godkjent.";
+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 Account"] = "Slett konto";
+App::$strings["Please login."] = "Vennligst logg inn.";
App::$strings["Invalid input"] = "";
App::$strings["Errors"] = "";
App::$strings["Site settings updated."] = "Nettstedsinnstillinger er oppdatert.";
@@ -2326,24 +2055,22 @@ App::$strings["My site has free access only"] = "Mitt nettsted har kun gratis ti
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["Administration"] = "Administrasjon";
+App::$strings["Site"] = "Nettsted";
App::$strings["File upload"] = "Last opp fil";
App::$strings["Policies"] = "Retningslinjer";
+App::$strings["Site name"] = "Nettstedets navn";
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"] = "Nettstedsinformasjon";
App::$strings["Publicly visible description of this site. Displayed on siteinfo page. BBCode can be used here"] = "";
App::$strings["System theme"] = "Systemtema";
App::$strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "Standard systemtema - kan overstyres av brukerprofiler - <a href='#' id='cnftheme'>endre temainnstillinger</a>";
@@ -2393,7 +2120,6 @@ App::$strings["Restrict the public stream to content originating at this site"]
App::$strings["Allow anybody on the internet to access the public streams"] = "";
App::$strings["Disable to require authentication before viewing"] = "";
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.";
@@ -2430,12 +2156,102 @@ 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["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["%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["Accounts"] = "Kontoer";
+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["Deny"] = "Avslå";
+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["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["Automatically adjust pause before starting next task"] = "";
+App::$strings["Queueworker Settings"] = "";
+App::$strings["Password changed for account %d."] = "";
+App::$strings["Account settings updated."] = "";
+App::$strings["Account Edit"] = "";
+App::$strings["New Password"] = "";
+App::$strings["New Password again"] = "";
+App::$strings["Account language (for emails)"] = "";
+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/<br />https://www.youtube.com/<br />https://youtu.be/<br />https://vimeo.com/<br />https://soundcloud.com/<br />"] = "https://youtube.com/<br />https://www.youtube.com/<br />https://youtu.be/<br />https://vimeo.com/<br />https://soundcloud.com/<br />";
+App::$strings["All other embedded content will be filtered, <strong>unless</strong> embedded content from that site is explicitly blocked."] = "Alt annet innebygget innhold vil bli filtrert, <strong>med mindre</strong> innebygget innhold fra den aktuelle siden eksplisitt er blokkert.";
+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["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["Additional trusted directory server URLs"] = "Standard katalogtjener";
+App::$strings["Accept directory flags (spam, nsfw) from those servers. One per line like https://example.tld"] = "";
+App::$strings["Channel not found"] = "Kanalen ble ikke funnet";
App::$strings["%s channel censored/uncensored"] = array(
0 => "%s kanal er sensurert/ikke sensurert lenger",
1 => "%s kanaler er sensurert/ikke sensurert lenger",
@@ -2448,7 +2264,6 @@ 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";
@@ -2462,43 +2277,16 @@ 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 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["Lock feature %s"] = "Lås funksjon %s";
+App::$strings["Manage Additional Features"] = "Håndter tilleggsfunksjoner";
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["Addons"] = "Tillegg";
+App::$strings["Toggle"] = "Skru av og på";
+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: ";
@@ -2511,100 +2299,102 @@ App::$strings["Custom repo name"] = "";
App::$strings["(optional)"] = "Valgfritt";
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"] = "Installerte apper";
-App::$strings["Manage Apps"] = "Behandle apper";
-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["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["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"] = "Profilfelter";
+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["Theme settings updated."] = "Temainnstillinger er oppdatert.";
+App::$strings["No themes found."] = "Ingen temaer er funnet.";
+App::$strings["Screenshot"] = "Skjermbilde";
+App::$strings["Themes"] = "Utseende";
+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["Can not copy folder into itself."] = "";
+App::$strings["Can not move folder \"%s\" into itself."] = "";
+App::$strings["Unable to locate original post."] = "Ikke i stand til å finne opprinnelig innlegg.";
+App::$strings["status"] = "status";
+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["Item not available."] = "Elementet er ikke tilgjengelig.";
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"] = "Layouten ble ikke funnet.";
-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 <a href=\"settings\">channel role</a>, 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["Item approved"] = "Konto godkjent.";
-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["Authentication failed."] = "Autentisering mislyktes.";
+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["Article"] = "";
+App::$strings["Item has been removed."] = "";
+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["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."] = "En verifikasjonskode ble sendt til epostadressen din [%s]. Skriv inn koden du mottok her for å fullføre kontoverifikasjonen. Det kan ta noen minutter før du mottar koden. Sjekk også at eposten ikke har havnet i mappen for søppelpost om du ikke ser den etter en stund.";
+App::$strings["Resend Email"] = "";
+App::$strings["Validation token"] = "";
App::$strings["No content available for year"] = "";
App::$strings["Export Channel"] = "Eksporter kanal";
App::$strings["Export channel"] = "Eksporter kanal";
@@ -2620,396 +2410,35 @@ App::$strings["This will export your channel calendar events and associated item
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 <a href=\"%1\$s\">%2\$s</a> 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"] = "Kanalnavn";
-App::$strings["Channel role"] = "Kanalrolle";
-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 <a href=\"import\">import an existing channel</a> from another location."] = "eller <a href=\"import\">importer en eksisterende kanal</a> fra et annet sted.";
-App::$strings["Validate"] = "";
-App::$strings["Entry censored"] = "";
-App::$strings["Entry OK"] = "";
-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"] = "Om dette nettstedet ";
-App::$strings["Site Name"] = "Nettstedets navn";
-App::$strings["Administrator"] = "Administrator";
-App::$strings["Software and Project information"] = "Program- og prosjektinformasjon";
-App::$strings["This site is powered by \$Projectname"] = "Dette nettstedet drives av \$Projectname";
-App::$strings["Federated and decentralised networking and identity services provided by Zot"] = "Fødererte og desentraliserte nettverks- og identitetstjenester via Zot";
-App::$strings["Additional federated transport protocols:"] = "Øvrige fødererte transportprotokoller:";
-App::$strings["Version %s"] = "Versjon %s";
-App::$strings["Project homepage"] = "Prosjektets hjemmeside";
-App::$strings["Developer homepage"] = "Utviklers hjemmeside";
-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)"] = "Kategorier (valgfri, kommaseparert liste)";
-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"] = "Vis profil";
-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"] = "Oppfrisking mislyktes - kanalen er for øyeblikket utilgjengelig.";
-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["Gender: "] = "Kjønn: ";
-App::$strings["Status: "] = "Status: ";
-App::$strings["Homepage: "] = "Hjemmeside: ";
-App::$strings["Description:"] = "Beskrivelse:";
-App::$strings["Unsafe"] = "";
-App::$strings["Spam"] = "";
-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."] = "En verifikasjonskode ble sendt til epostadressen din [%s]. Skriv inn koden du mottok her for å fullføre kontoverifikasjonen. Det kan ta noen minutter før du mottar koden. Sjekk også at eposten ikke har havnet i mappen for søppelpost om du ikke ser den etter en stund.";
-App::$strings["Resend Email"] = "";
-App::$strings["Validation token"] = "";
-App::$strings["Item not available."] = "Elementet er ikke tilgjengelig.";
-App::$strings["Poll not found."] = "Fant ikke spørreskjema.";
-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"] = "Endre profilbilde";
-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"] = "Avslutt redigering";
-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"] = "Endre omslagsbilde";
-App::$strings["Select existing photo"] = "";
-App::$strings["Done Editing"] = "Avslutt redigering";
-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 photo storage used."] = "%1$.2f MB lagringsplass til bilder er brukt.";
-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["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 <em>Settings</em> page after successful login."] = "Ditt passord kan endres på siden <em>Innstillinger</em> 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"] = "(%s): Ikke en virkelig epostadresse";
-App::$strings["(%s) : Not allowed email address"] = "(%s): Ikke en tillatt epostadresse";
-App::$strings["(%s) : email address already in use"] = "(%s): epostadressen er allerede i bruk";
-App::$strings["(%s) : Accepted email address"] = "(%s): Godkjent epostadresse";
-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"] = "Offentlig 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"] = "Standard";
-App::$strings["Default minimum affinity level"] = "";
-App::$strings["0-99 - default 0"] = "Standard";
-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)"] = "Maks høyde for innhold (i piksler)";
-App::$strings["Click to expand content exceeding this height"] = "Klikk for å vise hele innlegg som overskrider denne grensen";
-App::$strings["Stream Settings"] = "Instillinger for tidslinjen";
-App::$strings["Additional Features"] = "Ekstra funksjoner";
+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["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["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["Login Name"] = "";
+App::$strings["Login Password"] = "";
+App::$strings["Expires (yyyy-mm-dd)"] = "";
+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["Role name"] = "";
+App::$strings["System role - not editable"] = "";
+App::$strings["Deleting"] = "";
+App::$strings["Role Permissions"] = "";
+App::$strings["Some permissions may be inherited from your <a href=\"settings\">channel role</a>, which have higher priority than contact role settings."] = "";
App::$strings["Please select a channel role"] = "Velg en kanalrolle";
App::$strings["Your channel address is"] = "Din kanaladresse er";
App::$strings["Your files/photos are accessible via WebDAV at"] = "Dine filer og foto er tilgjengelig via WebDAV på";
@@ -3018,12 +2447,11 @@ App::$strings["Basic Settings"] = "Grunninnstillinger";
App::$strings["Channel timezone:"] = "Tidssone for kanalen:";
App::$strings["Default post location:"] = "Standard plassering for innlegg:";
App::$strings["Geographical location to display on your posts"] = "Geografisk plassering som vises på dine innlegg";
-App::$strings["Use browser location"] = "";
+App::$strings["Use browser location"] = "Bruk nettleserplassering";
App::$strings["Adult content"] = "Voksent innhold";
App::$strings["This channel frequently or regularly publishes adult content"] = "Denne kanalen vil ofte, eller regelmessig poste innlegg med voksent innhold";
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ø";
@@ -3039,9 +2467,9 @@ 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["Unseen stream activity"] = "Ny aktivitet i nettverksstrømmen";
+App::$strings["Unseen channel activity"] = "Ny kanalaktivitet";
+App::$strings["Unseen private messages"] = "Nye private meldinger";
App::$strings["Recommended"] = "Anbefalt";
App::$strings["Upcoming events"] = "Kommende hendelser";
App::$strings["Events today"] = "Hendelser idag";
@@ -3052,17 +2480,17 @@ 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["Unseen shared files"] = "Nye delte filer";
+App::$strings["Unseen public stream activity"] = "Ny aktivitet i den offentlige strømmen";
+App::$strings["Unseen likes and dislikes"] = "Nye liker/ikke liker";
+App::$strings["Unseen forum posts"] = "Ny forumpost";
+App::$strings["Email notification hub (hostname)"] = "Hub for epostvarsler (tjenernavn)";
+App::$strings["If your channel is mirrored to multiple hubs, set this to your preferred location. This will prevent duplicate email notifications. Example: %s"] = "Hvis kanalen din er klonet til flere tjenere kan du sette dette til den du vil skal sende deg epostvarsler. Dette vil forhindre duplikate epostvarsler. Eksempel: %s";
+App::$strings["Show new wall posts, private messages and connections under Notices"] = "Vis nye veggposter, private meldinger og forbindelser under varsler";
+App::$strings["Mark all notices of the thread read if a notice is clicked"] = "Merk alle varsler for en tråd som lest når du klikker på ett varsel";
+App::$strings["If no, only the clicked notice will be marked read"] = "Om du velger \"Nei\", blir kun det varslet du klikker på merket som lest";
+App::$strings["Desktop notifications are unavailable because the required browser permission has not been granted"] = "Skriverbordsvarsler er ikke tilgjengelig fordi nettstedet ikke har de nødvendige nettlesertillatelsene";
+App::$strings["Grant permission"] = "Gi tilgang";
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";
@@ -3075,30 +2503,23 @@ App::$strings["This website expires after %d days."] = "";
App::$strings["This website does not expire imported content."] = "Dette nettstedet sletter ikke importert innhold.";
App::$strings["The website limit takes precedence if lower than your limit."] = "Nettstedets grense vil gjelde dersom den er lavere enn din grense.";
App::$strings["Words one per line or #tags, \$categories, /patterns/, lang=xx, lang!=xx - leave blank to import all posts"] = "Ett ord per linje eller #emneknagger, \$kategorier, /mønster/, lang=xx, lang!=xx - la være tomt for å importere alle innlegg";
-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["Multi-Factor Authentication"] = "Flerfaktorautentisering";
-App::$strings["DId2 or Email Address:"] = "DId2 eller epostadresse:";
-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"] = "Instillinger for tillegg";
App::$strings["Please save/submit changes to any panel before opening another."] = "Husk å lagre endringene i ett panel før du åpner andre.";
-App::$strings["Events Settings"] = "";
-App::$strings["Channel Manager Settings"] = "";
+App::$strings["Editor Settings"] = "Instillinger for redigering";
+App::$strings["Photos Settings"] = "";
+App::$strings["Default profile for new contacts"] = "";
+App::$strings["Profiles Settings"] = "";
+App::$strings["Max height of content (in pixels)"] = "Maks høyde for innhold (i piksler)";
+App::$strings["Click to expand content exceeding this height"] = "Klikk for å vise hele innlegg som overskrider denne grensen";
+App::$strings["Stream Settings"] = "Instillinger for tidslinjen";
+App::$strings["Directory 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["Conversation Settings"] = "";
+App::$strings["Additional Features"] = "Ekstra funksjoner";
+App::$strings["Connections Settings"] = "";
App::$strings["Password is required"] = "Navn er påkrevd";
App::$strings["The provided password is not correct"] = "";
App::$strings["Account Multi-Factor Authentication"] = "Tofaktorautentisering";
@@ -3110,29 +2531,24 @@ App::$strings["Incorrect code"] = "";
App::$strings["Enable Multi-Factor Authentication"] = "Mislykket autentisering";
App::$strings["Logging in will require you to be in possession of your smartphone"] = "";
App::$strings["Your account password"] = "Ditt nye passord er";
-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"] = "Vis hurtiglenker for nye medlemmer";
-App::$strings["Directory Settings"] = "";
-App::$strings["Editor Settings"] = "Instillinger for redigering";
-App::$strings["Connections Settings"] = "";
-App::$strings["Photos Settings"] = "";
-App::$strings["Default profile for new contacts"] = "";
-App::$strings["Profiles Settings"] = "";
+App::$strings["Test"] = "Sjekk koden";
+App::$strings["Events Settings"] = "";
+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["Multi-Factor Authentication"] = "Flerfaktorautentisering";
+App::$strings["DId2 or Email Address:"] = "DId2 eller epostadresse:";
+App::$strings["Remove this account including all its channels"] = "Slett denne kontoen inkludert alle dens kanaler";
App::$strings["Privacy settings updated."] = "Personverninnstillingene ble oppdatert.";
App::$strings["Only those you specifically allow"] = "Bare de du spesifikt tillater";
App::$strings["Approved connections"] = "Godkjente forbindelser";
@@ -3157,403 +2573,863 @@ App::$strings["Accept unsolicited comments for moderation"] = "Godta kommentarer
App::$strings["Otherwise they will be silently dropped"] = "Ellers vil de avvises uten varsel";
App::$strings["Enable OCAP access"] = "Slå på OCAP tilgangskontroll";
App::$strings["Grant limited posts the right to access linked private media"] = "Gi begrensede innlegg tilgang til private media som er lenket fra dem";
-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)"] = "(endret)";
-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 <a href=\"settings\"><strong>privacy settings</strong></a>, which have higher priority than individual settings. You can <strong>not</strong> change those settings here."] = "Noen tillatelser kan være arvet fra din kanals <a ref=\"settings\"><strong>personverninnstillinger</strong></a>, som har høyere prioritet enn individuelle innstillinger. Du kan <strong>ikke</strong> endre arvede innstillingene her.";
-App::$strings["Some permissions may be inherited from your channel's <a href=\"settings\"><strong>privacy settings</strong></a>, 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 <a ref=\"settings\"><strong>personverninnstillinger</strong></a>, 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 <strong>may</strong> 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"] = "Standard";
-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 <!item_type!>"] = "%s <!item_type!>";
-App::$strings["[\$Projectname:Notify] New direct message received at %s"] = "[\$Projectname:Notify] Ny direktemelding mottatt kl. %s";
-App::$strings["%1\$s sent you a new direct message at %2\$s"] = "%1\$s sendte deg en ny direktemelding kl. %2\$s";
-App::$strings["%1\$s sent you %2\$s."] = "%1\$s sendte deg %2\$s.";
-App::$strings["a direct message"] = "en direktemelding";
-App::$strings["Please visit %s to view and/or reply to your direct messages."] = "Gå til %s for å vise og/eller svare på dine direktemeldinger.";
-App::$strings["requested to comment on"] = "";
-App::$strings["commented on"] = "";
-App::$strings["requested to like"] = "Dato for forespørsel";
-App::$strings["liked"] = "";
-App::$strings["requested to dislike"] = "";
-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"] = "opprettet spørreskjema";
-App::$strings["created a new post"] = "laget et nytt innlegg";
-App::$strings["voted on %s's poll"] = "stemte på %s sitt spørreskjema";
-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"] = "sendte deg en direktemelding";
-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["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"] = "Tidslinje";
-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"] = "Legg til i meny";
-App::$strings["Remove from app-tray"] = "Fjern fra meny";
-App::$strings["Pin to navbar"] = "Fest til navigasjonslinjen";
-App::$strings["Unpin from navbar"] = "Fjern fra navigasjonslinjen";
-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"] = "Begrenset melding";
-App::$strings["Direct message"] = "Direktemelding";
-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["%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["New Member Links"] = "Lenker for nye medlemmer";
+App::$strings["Display new member quick links menu"] = "Vis hurtiglenker for nye medlemmer";
+App::$strings["Channel Manager Settings"] = "";
+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["Like/Dislike"] = "Liker/Liker ikke";
+App::$strings["This action is restricted to members."] = "Denne handlingen er begrenset til medlemmer.";
+App::$strings["Please <a href=\"rmagic\">login with your \$Projectname ID</a> or <a href=\"register\">register as a new \$Projectname member</a> to continue."] = "Vennligst <a href=\"rmagic\">logg inn med din \$Projectname ID</a> eller <a href=\"register\">registrer deg som et nytt \$Projectname-medlem</a> 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["profile"] = "Profil";
+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["Connection added."] = "";
+App::$strings["Away"] = "Borte";
+App::$strings["Online"] = "Online";
+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["Version"] = "Versjon";
+App::$strings["Repository version (master)"] = "";
+App::$strings["Repository version (dev)"] = "";
+App::$strings["Unknown App"] = "";
+App::$strings["Authorize"] = "";
+App::$strings["Do you authorize the app %s to access your channel data?"] = "";
+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 friend suggestions"] = "Vis venneforslag";
+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["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["Items tagged with: %s"] = "Elementer merket med: %s";
+App::$strings["Search results for: %s"] = "Søkeresultater for: %s";
+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["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:"] = "Tidssone";
+App::$strings["Month"] = "måned";
+App::$strings["Week"] = "uke";
+App::$strings["Day"] = "dag";
+App::$strings["List month"] = "";
+App::$strings["List week"] = "";
+App::$strings["List day"] = "";
+App::$strings["More"] = "";
+App::$strings["Less"] = "";
+App::$strings["Select calendar"] = "";
+App::$strings["Channel Calendars"] = "";
+App::$strings["CalDAV Calendars"] = "";
+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["Default Calendar"] = "";
+App::$strings["Default Addressbook"] = "";
+App::$strings["Invalid abook_id"] = "";
+App::$strings["View profile"] = "Vis profil";
+App::$strings["Select a role for this contact"] = "";
+App::$strings["Contact roles"] = "";
+App::$strings["Roles"] = "";
+App::$strings["Compare permissions"] = "";
+App::$strings["Permission"] = "";
+App::$strings["Privacy groups"] = "Personverngrupper";
+App::$strings["Content filter"] = "";
+App::$strings["Contact updated"] = "";
+App::$strings["Contact update failed"] = "";
+App::$strings["Refresh succeeded"] = "";
+App::$strings["Refresh failed"] = "Forny";
+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"] = "Forny";
+App::$strings["Refetch contact info"] = "";
+App::$strings["vcard"] = "";
+App::$strings["Suggestions"] = "Forslag";
+App::$strings["See more..."] = "Se mer...";
+App::$strings["Share This"] = "Del dette";
+App::$strings["View %s's profile - %s"] = "Vis %s sin profil - %s";
+App::$strings["Don't show"] = "Ikke vis";
+App::$strings["Add new group"] = "";
+App::$strings["Remove term"] = "Fjern begrep";
+App::$strings["photo/image"] = "foto/bilde";
+App::$strings["Read mode"] = "";
+App::$strings["Edit mode"] = "";
+App::$strings["Editing"] = "";
+App::$strings["Saving"] = "";
+App::$strings["Saved"] = "";
+App::$strings["Suggested Chatrooms"] = "Foreslåtte chatrom";
+App::$strings["Bookmarked Chatrooms"] = "Bokmerkede chatrom";
+App::$strings["Tasks"] = "Oppgaver";
+App::$strings["Public and restricted messages"] = "";
+App::$strings["Direct messages"] = "Direktemeldinger";
+App::$strings["Starred messages"] = "";
+App::$strings["Notices"] = "Varsel";
+App::$strings["No messages"] = "Ingen meldinger";
+App::$strings["Unseen"] = "Ulest";
+App::$strings["Filter by name or address"] = "Filtrer etter navn eller adresse";
+App::$strings["Click to show more"] = "";
+App::$strings["__ctx:widget__ Activity"] = "aktivitet";
+App::$strings["App Collections"] = "Appsamlinger";
+App::$strings["Installed apps"] = "Installerte apper";
+App::$strings["Toggle post editor"] = "Vis redigering av innlegg";
+App::$strings["Toggle personal notes"] = "";
+App::$strings["Channel activities"] = "";
+App::$strings["Archives"] = "Arkiv";
+App::$strings["No recent activities"] = "Nylig aktivitet";
+App::$strings["__ctx:noun__ new connection"] = array(
+ 0 => "ny forbindelse",
+ 1 => "nye forbindelser",
);
-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["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";
-App::$strings["Community Forum"] = "Forum for fellesskap";
-App::$strings["Forum - Mostly Public"] = "Forum - ganske offentlig";
-App::$strings["Forum - Restricted"] = "Forum - begrenset";
-App::$strings["Forum - Private"] = "Forum - privat";
-App::$strings["Feed Republish"] = "Republisering av strømmet innhold";
-App::$strings["Feed - Mostly Public"] = "Strøm - ganske offentlig";
-App::$strings["Feed - Restricted"] = "Strøm - begrenset";
-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["Personal"] = "Personlig";
-App::$strings["Community forum"] = "Forum for fellesskap";
-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"] = "Kan sende meg direktemeldinger";
-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"] = "velg alle";
-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&#37;)"] = "Du bruker %1\$s av %2\$s tilgjengelig lagringsplass (%3\$s&#37;)";
-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["[\$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["[\$Projectname] Cron tasks not running on %s"] = "";
-App::$strings["Cron/Scheduled tasks not running."] = "Cron/planlagte oppgaver kjører ikke.";
+App::$strings["__ctx:noun__ notice"] = array(
+ 0 => "varsel",
+ 1 => "varsel",
+);
+App::$strings["Account settings"] = "Kontoinnstillinger";
+App::$strings["Channel settings"] = "Kanalinnstillinger";
+App::$strings["Privacy settings"] = "Personverninnstillinger";
+App::$strings["Display settings"] = "Visningsinnstillinger";
+App::$strings["Manage locations"] = "";
+App::$strings["Rating Tools"] = "Vurderingsverktøy";
+App::$strings["Rate Me"] = "Vurder meg";
+App::$strings["View Ratings"] = "Vis vurderinger";
+App::$strings["App Categories"] = "Appkategorier";
+App::$strings["Direct Messages"] = "Direktemeldinger";
+App::$strings["Show direct (private) messages"] = "Vis direktemeldinger (private meldinger)";
+App::$strings["Events"] = "Hendelser";
+App::$strings["Show posts that include events"] = "";
+App::$strings["Polls"] = "Spørreskjema";
+App::$strings["Show posts that include polls"] = "Vis innlegg som inneholder spørreskjema";
+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"] = "Filtrer etter navn";
+App::$strings["Remove active filter"] = "";
+App::$strings["Stream Filters"] = "Filtere for tidslinjen";
+App::$strings["New network activity notifications"] = "";
+App::$strings["Network stream"] = "";
+App::$strings["Mark all notifications read"] = "";
+App::$strings["Show new posts only"] = "";
+App::$strings["New home activity notifications"] = "";
+App::$strings["Home stream"] = "";
+App::$strings["Mark all notifications seen"] = "";
+App::$strings["New direct messages notifications"] = "Varsel om nye direktemeldinger";
+App::$strings["Direct messages stream"] = "Strøm for direktemeldinger";
+App::$strings["New events notifications"] = "";
+App::$strings["View events"] = "";
+App::$strings["Mark all events seen"] = "Merk alle hendelser som sett";
+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["New public stream notifications"] = "";
+App::$strings["Public stream"] = "";
+App::$strings["Sorry, you have got no notifications at the moment"] = "";
+App::$strings["Add new guest"] = "";
+App::$strings["Add new role"] = "";
+App::$strings["Role members"] = "";
+App::$strings["Profile Creation"] = "Oppretting av profil";
+App::$strings["Upload profile photo"] = "Last opp profilbilde";
+App::$strings["Upload cover photo"] = "Last opp omslagsbilde";
+App::$strings["Find and Connect with others"] = "Finn andre";
+App::$strings["View the directory"] = "Se i katalogen";
+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["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["Member registrations waiting for confirmation"] = "";
+App::$strings["Inspect queue"] = "Inspiser kø";
+App::$strings["Queueworker"] = "";
+App::$strings["DB updates"] = "Databaseoppdateringer";
+App::$strings["Addon Features"] = "";
+App::$strings["Overview"] = "";
+App::$strings["Select Channel"] = "";
+App::$strings["Read-write"] = "";
+App::$strings["Read-only"] = "";
+App::$strings["Channel Calendar"] = "";
+App::$strings["Shared CalDAV Calendars"] = "";
+App::$strings["Share this calendar"] = "";
+App::$strings["Calendar name and color"] = "";
+App::$strings["Create new CalDAV calendar"] = "";
+App::$strings["Calendar Name"] = "";
+App::$strings["Calendar Tools"] = "";
+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["Commented Date"] = "Sist kommentert";
+App::$strings["Order by last commented date"] = "Sorter etter dato for siste kommentar";
+App::$strings["Posted Date"] = "Innleggsdato";
+App::$strings["Order by last posted date"] = "Sorter etter dato innlegg ble postet";
+App::$strings["Date Unthreaded"] = "Utrådet";
+App::$strings["Order unthreaded by date"] = "Sorter innlegg og kommentarer uavhengig av hverandre etter dato";
+App::$strings["Stream Order"] = "Sortering av innlegg";
+App::$strings["Chat Members"] = "";
+App::$strings["Source channel not found."] = "Fant ikke kildekanalen.";
+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.<br>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["Send your identity to all websites"] = "";
+App::$strings["Send ZID"] = "";
+App::$strings["An account has been created for you."] = "";
+App::$strings["Authentication successful but rejected: account creation is disabled."] = "";
+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["Cart Settings"] = "";
+App::$strings["Shop"] = "";
+App::$strings["Profile Unavailable."] = "Profilen er ikke tilgjengelig.";
+App::$strings["Order Not Found"] = "";
+App::$strings["You must be logged into the Grid to shop."] = "";
+App::$strings["Invalid channel"] = "Ugyldig kanal";
+App::$strings["Order not found."] = "";
+App::$strings["Access denied."] = "Ingen tilgang";
+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["Enable Order/Item Options"] = "";
+App::$strings["Label"] = "";
+App::$strings["Instructions"] = "";
+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 Manual Cart Module"] = "";
+App::$strings["New Sku"] = "";
+App::$strings["Cannot save edits to locked item."] = "";
+App::$strings["Changes Locked"] = "";
+App::$strings["Item available for purchase."] = "";
+App::$strings["Price"] = "";
+App::$strings["Photo URL"] = "";
+App::$strings["Enable Paypal Button Module (API-v2)"] = "";
+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"] = "";
+App::$strings["Enable Hubzilla Services Module"] = "";
+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["Add buyer to privacy group"] = "";
+App::$strings["Add buyer as connection"] = "";
+App::$strings["Set Service Class"] = "";
+App::$strings["Access Denied."] = "Ingen tilgang";
+App::$strings["Access Denied"] = "Ingen tilgang";
+App::$strings["Invalid Item"] = "Ugyldig element.";
+App::$strings["Error: order mismatch. Please try again."] = "";
+App::$strings["Manual payments are not enabled."] = "";
+App::$strings["Finished"] = "";
+App::$strings["Enable Test Catalog"] = "";
+App::$strings["Enable Manual Payments"] = "";
+App::$strings["Base Merchant Currency"] = "";
+App::$strings["Edit Article"] = "";
+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["Since modified date yyyy-mm-dd"] = "";
+App::$strings["Until modified date yyyy-mm-dd"] = "";
+App::$strings["View Larger"] = "";
+App::$strings["Tile Server URL"] = "";
+App::$strings["A list of <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank\">public tile servers</a>"] = "";
+App::$strings["Nominatim (reverse geocoding) Server URL"] = "";
+App::$strings["A list of <a href=\"http://wiki.openstreetmap.org/wiki/Nominatim\" target=\"_blank\">Nominatim servers</a>"] = "";
+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["WYSIWYG status editor"] = "";
+App::$strings["WYSIWYG Status App"] = "";
+App::$strings["WYSIWYG Status"] = "";
+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 "] = "Skru på";
+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["You are now authenticated to pumpio."] = "";
+App::$strings["return to the featured settings page"] = "tilbake til funksjonsinnstillinger";
+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["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["Gallery"] = "";
+App::$strings["Photo Gallery"] = "";
+App::$strings["You're welcome."] = "";
+App::$strings["Ah shucks..."] = "";
+App::$strings["Don't mention it."] = "";
+App::$strings["&lt;blush&gt;"] = "";
+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"] = "Standard søkeord";
+App::$strings["The default search term. These will be shown second."] = "Standard søkeord. Disse vil vises som nummer to.";
+App::$strings["Return After"] = "";
+App::$strings["Page to load after image selection."] = "";
+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"] = "Søkeord";
+App::$strings["Unknown error. Please try again later."] = "";
+App::$strings["Profile photo updated successfully."] = "";
+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["Please contact your site administrator.<br />The provided API URL is not valid."] = "Den oppgitte URLen for APIet er ikke gyldig. Kontakt serverens administrator.";
+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.<br />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.<br />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 <strong>public</strong> 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["<strong>Note</strong>: Due your privacy settings (<em>Hide your profile details from unknown viewers?</em>) 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["API URL"] = "";
+App::$strings["Application name"] = "";
+App::$strings["Post to Livejournal"] = "";
+App::$strings["Posted by"] = "";
+App::$strings["Source"] = "";
+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["Add link to original post"] = "";
+App::$strings["Livejournal Crosspost Connector"] = "";
+App::$strings["pageheader Settings saved."] = "";
+App::$strings["Message to display on every page on this server"] = "";
+App::$strings["Page Header"] = "";
+App::$strings["Rainbow Tag App"] = "";
+App::$strings["Add some colour to tag clouds"] = "";
+App::$strings["Rainbow Tag"] = "";
+App::$strings["Recent Channel/Profile Viewers"] = "";
+App::$strings["No entries."] = "";
+App::$strings["Your account on %s will expire in a few days."] = "";
+App::$strings["Your test account is about to expire."] = "";
+App::$strings["nofed Settings saved."] = "";
+App::$strings["Federate posts by default"] = "";
+App::$strings["No Federation"] = "";
+App::$strings["Federate"] = "";
+App::$strings["Your Webbie:"] = "";
+App::$strings["Fontsize (px):"] = "";
+App::$strings["Link:"] = "";
+App::$strings["Like us on Hubzilla"] = "";
+App::$strings["Embed:"] = "";
+App::$strings["This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> analytics tool."] = "";
+App::$strings["If you do not want that your visits are logged this way you <a href='%s'>can set a cookie to prevent Piwik from tracking further visits of the site</a> (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["Page to load after login"] = "";
+App::$strings["Examples: &quot;apps&quot;, &quot;network?f=&gid=37&quot; (privacy collection), &quot;channel&quot; or &quot;notifications/system&quot; (leave blank for default network page (grid)."] = "";
+App::$strings["Startpage"] = "";
+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 <strong>public</strong> posts will be posted to Twitter."] = "";
+App::$strings["Log in with Twitter"] = "";
+App::$strings["Copy the PIN from Twitter here"] = "";
+App::$strings["<strong>Note:</strong> Due your privacy settings (<em>Hide your profile details from unknown viewers?</em>) 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["Submit Settings"] = "";
+App::$strings["Fuzzloc Settings updated."] = "";
+App::$strings["Minimum offset in meters"] = "";
+App::$strings["Maximum offset in meters"] = "";
+App::$strings["Fuzzy Location"] = "";
+App::$strings["No username found in import file."] = "Ingen brukernavn ble funnet i importfilen.";
+App::$strings["Import completed."] = "Import ferdig.";
+App::$strings["%1\$s dislikes %2\$s's %3\$s"] = "";
+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["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["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["Photos imported"] = "";
+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["Some setting"] = "";
+App::$strings["A setting"] = "";
+App::$strings["Skeleton Settings"] = "";
+App::$strings["QR code"] = "";
+App::$strings["QR Generator"] = "";
+App::$strings["Enter some text"] = "";
+App::$strings["Dreamwidth Crosspost Connector Settings saved."] = "";
+App::$strings["Dreamwidth username"] = "";
+App::$strings["Dreamwidth password"] = "";
+App::$strings["Post to Dreamwidth by default"] = "";
+App::$strings["Link description (default:"] = "";
+App::$strings["Dreamwidth Crosspost Connector"] = "";
+App::$strings["Post to Dreamwidth"] = "";
+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["NSA Bait App"] = "";
+App::$strings["Make yourself a political target."] = "";
+App::$strings["No server specified"] = "";
+App::$strings["Posts imported"] = "";
+App::$strings["Files imported"] = "";
+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["Friendica Crosspost Connector Settings saved."] = "";
+App::$strings["Send public postings to Friendica by default"] = "";
+App::$strings["Friendica API Path"] = "";
+App::$strings["https://{sitename}/api"] = "";
+App::$strings["Friendica login name"] = "";
+App::$strings["Friendica password"] = "";
+App::$strings["Friendica Crosspost Connector"] = "";
+App::$strings["Post to Friendica"] = "";
+App::$strings["New registration"] = "";
+App::$strings["Message sent to %s. New account registration: %s"] = "";
+App::$strings["Redmatrix File Storage Import"] = "";
+App::$strings["This will import all your Redmatrix cloud files to this channel."] = "";
+App::$strings["Send test email"] = "";
+App::$strings["No recipients found."] = "";
+App::$strings["Mail sent."] = "";
+App::$strings["Sending of mail failed."] = "";
+App::$strings["Mail Test"] = "";
+App::$strings["Message subject"] = "";
+App::$strings["Errors encountered deleting database table "] = "";
+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["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.<br><br>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.<br><br>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["Channel is required."] = "";
+App::$strings["Hubzilla Crosspost Connector Settings saved."] = "";
+App::$strings["Send public postings to Hubzilla channel by default"] = "";
+App::$strings["Hubzilla API Path"] = "";
+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["Workflow user."] = "";
+App::$strings["This channel"] = "";
+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["Brief description or title"] = "";
+App::$strings["Notes and Info"] = "";
+App::$strings["Used to order links"] = "";
+App::$strings["Body"] = "";
+App::$strings["Workflow Settings"] = "";
+App::$strings["Workflow settings"] = "Instillinger for redigering";
+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["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["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["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["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["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["(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["__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["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["Wikis"] = "Wikier";
+App::$strings["Wiki name"] = "";
+App::$strings["Content type"] = "";
+App::$strings["Any&nbsp;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"] = "Fant ikke wikien.";
+App::$strings["Rename page"] = "";
+App::$strings["Error retrieving page content"] = "";
+App::$strings["New page"] = "";
+App::$strings["Revision Comparison"] = "";
+App::$strings["Short description of your changes (optional)"] = "";
+App::$strings["New page name"] = "";
+App::$strings["Embed image from photo albums"] = "";
+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["Add new page"] = "Legg til ny side";
+App::$strings["View Cards"] = "";
+App::$strings["Wiki Pages"] = "Wikisider";
+App::$strings["Page name"] = "Sidenavn";
+App::$strings["Who likes me?"] = "";
+App::$strings["Edit Card"] = "";
+App::$strings["Add Card"] = "";
+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["Post to Libertree"] = "";
+App::$strings["Send email to all members"] = "";
+App::$strings["%1\$d of %2\$d messages sent."] = "";
+App::$strings["Send email to all hub members."] = "";
+App::$strings["Sender Email address"] = "";
+App::$strings["Test mode (only send to hub administrator)"] = "";
+App::$strings["Use markdown for editing posts"] = "";
+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["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["First Name"] = "Fornavn";
+App::$strings["Last Name"] = "Etternavn";
+App::$strings["Full Name"] = "Fullt navn";
+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["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["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["__ctx:opensearch__ Search %1\$s (%2\$s)"] = "Søk %1\$s (%2\$s)";
+App::$strings["__ctx:opensearch__ \$Projectname"] = "\$Projectname";
+App::$strings["Search \$Projectname"] = "";
+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["Send activities of type note instead of article"] = "";
+App::$strings["Microblog services such as Mastodon do not properly support articles"] = "";
+App::$strings["Activitypub Protocol"] = "";
+App::$strings["Not allowed."] = "";
+App::$strings["Insane Journal Crosspost Connector Settings saved."] = "";
+App::$strings["Insane Journal Crosspost Connector App"] = "";
+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["Random Planet App"] = "";
+App::$strings["Set a random planet from the Star Wars Empire as your location when posting"] = "";
+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 - <strong>you do</strong>.)"] = "";
+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["<strong><em>Or</em></strong> 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["Fediquest App"] = "Endre app";
+App::$strings["A distributed quest for a given word (game)."] = "";
+App::$strings["To start a game, enter [fediquest]your_word[/fediquest] 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["ERROR: word length is not correct!"] = "";
+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["Wordpress Post"] = "";
+App::$strings["Allow magic authentication only to websites of your immediate connections"] = "";
+App::$strings["Authchoose"] = "";
+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["\$Projectname Upgrade Info"] = "\$Projectname";
+App::$strings["Do not show this again"] = "";
+App::$strings["Hide Aside App"] = "";
+App::$strings["Fade out aside areas after a while when using endless scroll"] = "";
+App::$strings["text to include in all outgoing posts from this site"] = "";
diff --git a/view/nb-no/lostpass_eml.tpl b/view/nb/lostpass_eml.tpl
index 3b79d2791..3b79d2791 100644
--- a/view/nb-no/lostpass_eml.tpl
+++ b/view/nb/lostpass_eml.tpl
diff --git a/view/nb-no/messages.po b/view/nb/messages.po
index 152120b15..152120b15 100644
--- a/view/nb-no/messages.po
+++ b/view/nb/messages.po
diff --git a/view/nb-no/passchanged_eml.tpl b/view/nb/passchanged_eml.tpl
index 0d94be3c2..0d94be3c2 100644
--- a/view/nb-no/passchanged_eml.tpl
+++ b/view/nb/passchanged_eml.tpl
diff --git a/view/nb-no/register_open_eml.tpl b/view/nb/register_open_eml.tpl
index 4b397201c..4b397201c 100644
--- a/view/nb-no/register_open_eml.tpl
+++ b/view/nb/register_open_eml.tpl
diff --git a/view/nb-no/register_verify_eml.tpl b/view/nb/register_verify_eml.tpl
index 85d9a12d3..85d9a12d3 100644
--- a/view/nb-no/register_verify_eml.tpl
+++ b/view/nb/register_verify_eml.tpl
diff --git a/view/nb-no/strings.php b/view/nb/strings.php
index 01a95a5a3..01a95a5a3 100644
--- a/view/nb-no/strings.php
+++ b/view/nb/strings.php
diff --git a/view/nb-no/update_fail_eml.tpl b/view/nb/update_fail_eml.tpl
index 61f44b1e6..61f44b1e6 100644
--- a/view/nb-no/update_fail_eml.tpl
+++ b/view/nb/update_fail_eml.tpl
diff --git a/view/tpl/cdav_calendar.tpl b/view/tpl/cdav_calendar.tpl
index cd2e45b8c..7399a2b59 100644
--- a/view/tpl/cdav_calendar.tpl
+++ b/view/tpl/cdav_calendar.tpl
@@ -102,6 +102,8 @@ $(document).ready(function() {
var dtstart = new Date(info.event._instance.range.start);
var dtend = new Date(info.event._instance.range.end);
+ allday = event.allDay;
+
if(event.extendedProps.plink) {
if(! $('#l2s').length)
$('#id_title_wrapper').prepend('<span id="l2s" class="float-end"></span>');
@@ -112,7 +114,7 @@ $(document).ready(function() {
$('#l2s').remove();
}
- if(event.allDay) {
+ if (allday) {
$('#id_dtstart_wrapper, #id_dtend_wrapper, #id_timezone_select_wrapper').hide();
}
else {
@@ -355,6 +357,12 @@ $(document).ready(function() {
event_uri = resource.event_hash;
event_xchan = resource.event_xchan;
+ allday = resource.adjust ? 0 : 1;
+
+ if (allday) {
+ $('#id_dtstart_wrapper, #id_dtend_wrapper, #id_timezone_select_wrapper').hide();
+ }
+
$('#calendar_select').val('channel_calendar').attr('disabled', true);
$('#id_title').val(resource.summary);