aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-x.openshift/action_hooks/deploy1
-rw-r--r--Zotlabs/Web/HttpMeta.php66
-rwxr-xr-xboot.php12
-rw-r--r--doc/DerivedTheme1.md26
-rw-r--r--doc/cloud.bb2
-rw-r--r--doc/faq_members.bb2
-rw-r--r--doc/git_for_non_developers.bb2
-rw-r--r--include/BaseObject.php1
-rw-r--r--include/ConversationObject.php23
-rw-r--r--include/ItemObject.php4
-rw-r--r--include/bbcode.php5
-rw-r--r--include/conversation.php5
-rw-r--r--include/datetime.php2
-rwxr-xr-xinclude/dba/dba_driver.php8
-rwxr-xr-xinclude/dba/dba_mysqli.php8
-rw-r--r--include/hubloc.php15
-rwxr-xr-xinclude/items.php6
-rw-r--r--include/permissions.php18
-rw-r--r--include/profile_selectors.php12
-rw-r--r--include/widgets.php3
-rw-r--r--include/zot.php54
-rw-r--r--mod/display.php52
-rw-r--r--mod/import.php20
-rw-r--r--mod/network.php2
-rw-r--r--mod/profiles.php56
-rw-r--r--version.inc2
-rw-r--r--view/css/mod_profiles.css10
-rw-r--r--view/en/lostpass_eml.tpl3
-rw-r--r--view/en/passchanged_eml.tpl5
-rw-r--r--view/en/register_verify_member.tpl5
l---------view/es1
-rw-r--r--view/es-es/hmessages.po1013
-rw-r--r--view/es-es/hstrings.php80
-rw-r--r--view/it/hmessages.po3055
-rw-r--r--view/it/hstrings.php574
-rw-r--r--view/nb-no/hmessages.po11476
-rw-r--r--view/nb-no/hstrings.php2708
-rw-r--r--view/nl/hmessages.po1003
-rw-r--r--view/nl/hstrings.php74
-rw-r--r--view/php/choklet.php2
-rw-r--r--view/php/default.php2
-rw-r--r--view/php/full.php2
-rw-r--r--view/php/minimal.php2
-rw-r--r--view/php/redable.php2
-rw-r--r--view/php/zen.php2
-rw-r--r--view/theme/redbasic/php/config.php1
-rw-r--r--view/theme/redbasic/php/style.php5
-rw-r--r--view/theme/redbasic/tpl/theme_settings.tpl2
-rwxr-xr-xview/tpl/cover_photo_widget.tpl4
-rwxr-xr-xview/tpl/head.tpl3
-rwxr-xr-xview/tpl/profile_edit.tpl138
51 files changed, 10560 insertions, 10019 deletions
diff --git a/.openshift/action_hooks/deploy b/.openshift/action_hooks/deploy
index 06a2440a0..c3bdf575a 100755
--- a/.openshift/action_hooks/deploy
+++ b/.openshift/action_hooks/deploy
@@ -181,6 +181,7 @@ echo "chmod done, permissions set to 777 on poller script."
# to make Hubzilla on OpenShift a more pleasant experience
echo "Changing default configuration to conserve space and autocreate a social private channel upon account registration"
cd ${OPENSHIFT_REPO_DIR}
+util/config system auto_channel_create
util/config system default_permissions_role social_private
util/config system workflow_channel_next channel
util/config system expire_delivery_reports 3
diff --git a/Zotlabs/Web/HttpMeta.php b/Zotlabs/Web/HttpMeta.php
new file mode 100644
index 000000000..469a9ed8b
--- /dev/null
+++ b/Zotlabs/Web/HttpMeta.php
@@ -0,0 +1,66 @@
+<?php
+
+namespace Zotlabs\Web;
+
+
+class HttpMeta {
+
+ private $vars = null;
+ private $og = null;
+
+ function __construct() {
+
+ $this->vars = array();
+ $this->og = array();
+
+ }
+
+ function set($property,$value) {
+ if(strpos($property,'og:') === 0)
+ $this->og[$property] = $value;
+ else
+ $this->vars[$property] = $value;
+ }
+
+ function check_required() {
+ if(
+ ($this->og)
+ && array_key_exists('og:title',$this->og)
+ && array_key_exists('og:type', $this->og)
+ && array_key_exists('og:image',$this->og)
+ && array_key_exists('og:url', $this->og)
+ )
+ return true;
+ return false;
+ }
+
+ function get_field($field) {
+ if(strpos($field,'og:') === 0)
+ $arr = $this->og;
+ else
+ $arr = $this->vars;
+
+ if($arr && array_key_exists($field,$arr) && $arr[$field])
+ return $arr[$field];
+ return false;
+ }
+
+
+ function get() {
+ $o = '';
+ if($this->vars) {
+ foreach($this->vars as $k => $v) {
+ $o .= '<meta property="' . $k . '" content="' . urlencode($v) . '" />' . "\r\n" ;
+ }
+ }
+ if($this->check_required()) {
+ foreach($this->og as $k => $v) {
+ $o .= '<meta property="' . $k . '" content="' . urlencode($v) . '" />' . "\r\n" ;
+ }
+ }
+ if($o)
+ return "\r\n" . $o;
+ return $o;
+ }
+
+} \ No newline at end of file
diff --git a/boot.php b/boot.php
index 2a3a3d062..1b593402b 100755
--- a/boot.php
+++ b/boot.php
@@ -47,7 +47,7 @@ require_once('include/account.php');
define ( 'PLATFORM_NAME', 'hubzilla' );
define ( 'RED_VERSION', trim(file_get_contents('version.inc')));
-define ( 'STD_VERSION', '1.2.5' );
+define ( 'STD_VERSION', '1.3.0' );
define ( 'ZOT_REVISION', 1 );
define ( 'DB_UPDATE_VERSION', 1165 );
@@ -753,6 +753,7 @@ class App {
private $baseurl;
+ private $meta;
/**
* App constructor.
@@ -767,6 +768,7 @@ class App {
$this->query_string = '';
+
startup();
set_include_path(
@@ -871,6 +873,7 @@ class App {
spl_autoload_register('ZotlabsAutoloader::loader');
+ $this->meta= new Zotlabs\Web\HttpMeta();
}
function get_baseurl($ssl = false) {
@@ -1020,6 +1023,11 @@ class App {
if(! x($this->page,'title'))
$this->page['title'] = $this->config['system']['sitename'];
+ if(! $this->meta->get_field('og:title'))
+ $this->meta->set('og:title',$this->page['title']);
+
+ $this->meta->set('generator', Zotlabs\Project\System::get_platform_name());
+
/* put the head template at the beginning of page['htmlhead']
* since the code added by the modules frequently depends on it
* being first
@@ -1030,7 +1038,7 @@ class App {
'$user_scalable' => $user_scalable,
'$baseurl' => $this->get_baseurl(),
'$local_channel' => local_channel(),
- '$generator' => Zotlabs\Project\System::get_platform_name() . ((Zotlabs\Project\System::get_project_version()) ? ' ' . Zotlabs\Project\System::get_project_version() : ''),
+ '$metas' => $this->meta->get(),
'$update_interval' => $interval,
'$icon' => head_get_icon(),
'$head_css' => head_get_css(),
diff --git a/doc/DerivedTheme1.md b/doc/DerivedTheme1.md
index 805d6b614..3db86b6e7 100644
--- a/doc/DerivedTheme1.md
+++ b/doc/DerivedTheme1.md
@@ -63,7 +63,6 @@ In it, put the following:
That's it. This tells the software to read the PCSS information for the redbasic theme first, and then read our CSS file which will just consist of changes we want to make from our parent theme (redbasic).
-
Now create the actual CSS file for your theme. Put it in view/theme/mytheme/css/style.css (where we just told the software to look for it). For our example, we'll just change the body background color so you can see that it works. You can use any CSS you'd like.
@@ -74,4 +73,29 @@ Now create the actual CSS file for your theme. Put it in view/theme/mytheme/css
You've just successfully created a derived theme. This needs to be enabled in the admin "themes" panel, and then anybody on the site can use it by selecting it in Settings->Display Settings as their default theme.
+**Lesson 2**
+
+If you want to use the redbasic schemas for your derived theme, you have to do a bit more.
+
+Do everything as above, but don't create view/theme/mytheme/php/style.php, but copy instead view/theme/redbasic/php/style.php to view/theme/mytheme/php/style.php. Modify that file and remove (or comment out) these two lines:
+
+ if(local_channel() && $a->channel && $a->channel['channel_theme'] != 'redbasic')
+ set_pconfig(local_channel(), 'redbasic', 'schema', '---');
+
+Also add this line at the bottom:
+
+ echo @file_get_contents('view/theme/mytheme/css/style.css');
+
+To show the schema selector you have to copy view/theme/redbasic/tpl/theme_settings.tpl to view/theme/mytheme/tpl/theme_settings.tpl. Modify that file and replace the lines:
+
+ {{if $theme == redbasic}}
+ {{include file="field_select.tpl" field=$schema}}
+ {{/if}}
+
+with:
+
+ {{include file="field_select.tpl" field=$schema}}
+
+
+
#include doc/macros/main_footer.bb;
diff --git a/doc/cloud.bb b/doc/cloud.bb
index d5195c0f5..3e0ac1fd3 100644
--- a/doc/cloud.bb
+++ b/doc/cloud.bb
@@ -10,7 +10,7 @@ On many public servers there may be limits on disk usage.
The quickest and easiest way to share files is through file attachments. In the row of icons below the status post editor is a tool to upload attachments. Click the tool, select a file and submit. After the file is uploaded, you will see an attachment code placed inside the text region. Do not edit this line or it may break the ability for your friends to see the attachment. You can use the post permissions dialogue box or privacy hashtags to restrict the visibility of the file - which will be set to match the permissions of the post your are sending.
-To delete attachments or change the permissions on the stored files, visit [observer.baseurl]/filestorage/{{username}}&quot; replacing {{username}} with the nickname you provided during channel creation.
+To delete attachments or change the permissions on the stored files, visit [observer.baseurl]/cloud/{{username}}&quot; replacing {{username}} with the nickname you provided during channel creation.
[b]Web Access[/b]
diff --git a/doc/faq_members.bb b/doc/faq_members.bb
index 9d42d97ad..7af61df9b 100644
--- a/doc/faq_members.bb
+++ b/doc/faq_members.bb
@@ -8,7 +8,7 @@ Short anser: No, there isn't. There are reasons. You are able to change permisso
If a posting is public this is even harder, as the $Projectname is a global network and there is no way to follow a post, let alone reclaim it reliably. Other networks that may receive your post have no reliable way to delete or reclaim the post.
[h3]I downloaded my channel and imported it (cloned my identity) to another site but there is no content, no posts, no photos. What is wrong???[/h3]
-To be honest: Nothing. That's the way it is right now. Technically it is surely possible to take at least your own posts and maybe even files with you, but this has simply put not implemented yet. When creating this feature we thought that keeping all your contacts was more important. Your friends have already seen your old content. Once we find someone willing to implement this, it will be done. :)
+Posts and photos/files are provided separately from the channel basic information. This is due to memory limitations dealing with years of conversations and photo archives. Posts and conversations can be synced separately from the basic channel information. Photos and file archives can be transferred using a plugin tool such as 'redfiles', which is currently listed as "experimental". When creating this feature we thought that keeping all your contacts was the most important task. Your friends have already seen your old content. Posts/conversations were next in priority and these may now be synced. Files and photos are the last bit to get completely working. Once we find someone willing to finish implementing this, it will be done. :)
[h3]I can't see private resources[/h3]
You have probably disabled third party cookies. You need to enable them for remote authentication to work.
[h3]There are a lot of foreign language posts. Let's auto-translate them.[/h3]
diff --git a/doc/git_for_non_developers.bb b/doc/git_for_non_developers.bb
index b0a623104..80c11024b 100644
--- a/doc/git_for_non_developers.bb
+++ b/doc/git_for_non_developers.bb
@@ -14,7 +14,7 @@ Once you've done that, cd into the directory, and add an upstream.
[code]
cd red
-git remote add upstream https://github.com/redmatrix/redmatrix
+git remote add upstream https://github.com/redmatrix/hubzilla
[/code]
From now on, you can pull upstream changes with the command
diff --git a/include/BaseObject.php b/include/BaseObject.php
index 4bfac5fa0..a88978a83 100644
--- a/include/BaseObject.php
+++ b/include/BaseObject.php
@@ -1,4 +1,5 @@
<?php /** @file */
+
if(class_exists('BaseObject'))
return;
diff --git a/include/ConversationObject.php b/include/ConversationObject.php
index 7e0d67c10..66f6cca0e 100644
--- a/include/ConversationObject.php
+++ b/include/ConversationObject.php
@@ -15,6 +15,7 @@ require_once('include/items.php');
*/
class Conversation extends BaseObject {
+
private $threads = array();
private $mode = null;
private $observer = null;
@@ -52,14 +53,8 @@ class Conversation extends BaseObject {
switch($mode) {
case 'network':
-// if(array_key_exists('firehose',$a->data) && intval($a->data['firehose'])) {
-// $this->profile_owner = intval($a->data['firehose']);
-// $this->writable = false;
-// }
-// else {
- $this->profile_owner = local_channel();
- $this->writable = true;
-// }
+ $this->profile_owner = local_channel();
+ $this->writable = true;
break;
case 'channel':
$this->profile_owner = $a->profile['profile_uid'];
@@ -69,7 +64,6 @@ class Conversation extends BaseObject {
// in this mode we set profile_owner after initialisation (from conversation()) and then
// pull some trickery which allows us to re-invoke this function afterward
// it's an ugly hack so FIXME
-// $this->profile_owner = $a->profile['uid'];
$this->writable = perm_is_allowed($this->profile_owner,$ob_hash,'post_comments');
break;
case 'page':
@@ -142,11 +136,11 @@ class Conversation extends BaseObject {
public function add_thread($item) {
$item_id = $item->get_id();
if(!$item_id) {
- logger('[ERROR] Conversation::add_thread : Item has no ID!!', LOGGER_DEBUG);
+ logger('Item has no ID!!', LOGGER_DEBUG, LOG_ERR);
return false;
}
if($this->get_thread($item->get_id())) {
- logger('[WARN] Conversation::add_thread : Thread already exists ('. $item->get_id() .').', LOGGER_DEBUG);
+ logger('Thread already exists ('. $item->get_id() .').', LOGGER_DEBUG, LOG_WARNING);
return false;
}
@@ -177,11 +171,6 @@ class Conversation extends BaseObject {
}
}
require_once('include/identity.php');
-// $sys = get_sys_channel();
-
-// if($sys && $item->get_data_value('uid') == $sys['channel_id']) {
-// $item->set_commentable(false);
-// }
$item->set_conversation($this);
$this->threads[] = $item;
@@ -209,7 +198,7 @@ class Conversation extends BaseObject {
$item_data = $item->get_template_data($conv_responses);
}
if(!$item_data) {
- logger('[ERROR] Conversation::get_template_data : Failed to get item template data ('. $item->get_id() .').', LOGGER_DEBUG);
+ logger('Failed to get item template data ('. $item->get_id() .').', LOGGER_DEBUG, LOG_ERR);
return false;
}
$result[] = $item_data;
diff --git a/include/ItemObject.php b/include/ItemObject.php
index 2be7e3ac9..d42e993e6 100644
--- a/include/ItemObject.php
+++ b/include/ItemObject.php
@@ -241,7 +241,7 @@ class Item extends BaseObject {
$has_bookmarks = false;
if(is_array($item['term'])) {
foreach($item['term'] as $t) {
- if($t['type'] == TERM_BOOKMARK)
+ if(!UNO && $t['type'] == TERM_BOOKMARK)
$has_bookmarks = true;
}
}
@@ -689,7 +689,7 @@ class Item extends BaseObject {
$comment_box = replace_macros($template,array(
'$return_path' => '',
'$threaded' => $this->is_threaded(),
- '$jsreload' => (($conv->get_mode() === 'display') ? $_SESSION['return_url'] : ''),
+ '$jsreload' => '', //(($conv->get_mode() === 'display') ? $_SESSION['return_url'] : ''),
'$type' => (($conv->get_mode() === 'channel') ? 'wall-comment' : 'net-comment'),
'$id' => $this->get_id(),
'$parent' => $this->get_id(),
diff --git a/include/bbcode.php b/include/bbcode.php
index 477436475..eefe7fe98 100644
--- a/include/bbcode.php
+++ b/include/bbcode.php
@@ -593,6 +593,11 @@ function bbcode($Text, $preserve_nl = false, $tryoembed = true, $cache = false)
$Text = preg_replace("/\[zrl\]([$URLSearchString]*)\[\/zrl\]/ism", '<a class="zrl" href="$1" target="_blank" >$1</a>', $Text);
$Text = preg_replace("/\[zrl\=([$URLSearchString]*)\](.*?)\[\/zrl\]/ism", '<a class="zrl" href="$1" target="_blank" >$2</a>', $Text);
}
+
+ // Remove bookmarks from UNO
+ if (UNO)
+ $Text = str_replace('<span class="bookmark-identifier">#^</span>', '', $Text);
+
// Perform MAIL Search
if (strpos($Text,'[/mail]') !== false) {
$Text = preg_replace("/\[mail\]([$MAILSearchString]*)\[\/mail\]/", '<a href="mailto:$1" target="_blank" >$1</a>', $Text);
diff --git a/include/conversation.php b/include/conversation.php
index 39119b2bb..676067f86 100644
--- a/include/conversation.php
+++ b/include/conversation.php
@@ -1110,6 +1110,11 @@ function status_editor($a, $x, $popup = false) {
$o = '';
+ require_once('include/Contact.php');
+ $c = channelx_by_n($x['profile_uid']);
+ if($c && $c['channel_moved'])
+ return $o;
+
$geotag = (($x['allow_location']) ? replace_macros(get_markup_template('jot_geotag.tpl'), array()) : '');
$plaintext = true;
diff --git a/include/datetime.php b/include/datetime.php
index ace1ad14f..57b2b6d37 100644
--- a/include/datetime.php
+++ b/include/datetime.php
@@ -129,7 +129,7 @@ function dob($dob) {
else
$value = (($year) ? datetime_convert('UTC','UTC',$dob,'Y-m-d') : datetime_convert('UTC','UTC',$dob,'m-d'));
- $o = '<input type="text" name="dob" value="' . $value . '" placeholder="' . t('YYYY-MM-DD or MM-DD') . '" />';
+ $o = '<input class="form-control" type="text" name="dob" value="' . $value . '" placeholder="' . t('YYYY-MM-DD or MM-DD') . '" />';
// if ($dob && $dob != '0000-00-00')
// $o = datesel($f,mktime(0,0,0,0,0,1900),mktime(),mktime(0,0,0,$month,$day,$year),'dob');
diff --git a/include/dba/dba_driver.php b/include/dba/dba_driver.php
index 2219b43cb..3c5b0b67e 100755
--- a/include/dba/dba_driver.php
+++ b/include/dba/dba_driver.php
@@ -303,9 +303,9 @@ function q($sql) {
if($stmt === false) {
if(version_compare(PHP_VERSION, '5.4.0') >= 0)
logger('dba: vsprintf error: ' .
- print_r(debug_backtrace(DEBUG_BACKTRACE_PROVIDE_OBJECT, 1), true));
+ print_r(debug_backtrace(DEBUG_BACKTRACE_PROVIDE_OBJECT, 1), true),LOGGER_NORMAL,LOG_CRIT);
else
- logger('dba: vsprintf error: ' . print_r(debug_backtrace(), true));
+ logger('dba: vsprintf error: ' . print_r(debug_backtrace(), true),LOGGER_NORMAL,LOG_CRIT);
}
return $db->q($stmt);
}
@@ -314,7 +314,7 @@ function q($sql) {
* This will happen occasionally trying to store the
* session data after abnormal program termination
*/
- logger('dba: no database: ' . print_r($args,true));
+ logger('dba: no database: ' . print_r($args,true),LOGGER_NORMAL,LOG_CRIT);
return false;
}
@@ -385,7 +385,7 @@ function db_getfunc($f) {
if(isset($lookup[$f]) && isset($lookup[$f][ACTIVE_DBTYPE]))
return $lookup[$f][ACTIVE_DBTYPE];
- logger('Unable to abstract DB function "'. $f . '" for dbtype ' . ACTIVE_DBTYPE, LOGGER_DEBUG);
+ logger('Unable to abstract DB function "'. $f . '" for dbtype ' . ACTIVE_DBTYPE, LOGGER_DEBUG, LOG_ERR);
return $f;
}
diff --git a/include/dba/dba_mysqli.php b/include/dba/dba_mysqli.php
index 74a999974..6986d4586 100755
--- a/include/dba/dba_mysqli.php
+++ b/include/dba/dba_mysqli.php
@@ -32,7 +32,7 @@ class dba_mysqli extends dba_driver {
if($this->error) {
- logger('dba_mysqli: ERROR: ' . printable($sql) . "\n" . $this->error);
+ logger('dba_mysqli: ERROR: ' . printable($sql) . "\n" . $this->error, LOGGER_NORMAL, LOG_ERR);
if(file_exists('dbfail.out')) {
file_put_contents('dbfail.out', datetime_convert() . "\n" . printable($sql) . "\n" . $this->error . "\n", FILE_APPEND);
}
@@ -40,13 +40,13 @@ class dba_mysqli extends dba_driver {
if(($result === true) || ($result === false)) {
if($this->debug) {
- logger('dba_mysqli: DEBUG: ' . printable($sql) . ' returns ' . (($result) ? 'true' : 'false'));
+ logger('dba_mysqli: DEBUG: ' . printable($sql) . ' returns ' . (($result) ? 'true' : 'false'), LOGGER_NORMAL,(($result) ? LOG_INFO : LOG_ERR));
}
return $result;
}
if($this->debug) {
- logger('dba_mysqli: DEBUG: ' . printable($sql) . ' returned ' . $result->num_rows . ' results.');
+ logger('dba_mysqli: DEBUG: ' . printable($sql) . ' returned ' . $result->num_rows . ' results.', LOGGER_NORMAL, LOG_INFO);
}
$r = array();
@@ -55,7 +55,7 @@ class dba_mysqli extends dba_driver {
$r[] = $x;
$result->free_result();
if($this->debug) {
- logger('dba_mysqli: ' . printable(print_r($r,true)));
+ logger('dba_mysqli: ' . printable(print_r($r,true)), LOGGER_NORMAL, LOG_INFO);
}
}
return $r;
diff --git a/include/hubloc.php b/include/hubloc.php
index a1171b0e2..695cada3c 100644
--- a/include/hubloc.php
+++ b/include/hubloc.php
@@ -134,10 +134,17 @@ function hubloc_change_primary($hubloc) {
$r = q("select channel_id, channel_primary from channel where channel_hash = '%s' limit 1",
dbesc($hubloc['hubloc_hash'])
);
- if(($r) && (! $r[0]['channel_primary'])) {
- q("update channel set channel_primary = 1 where channel_id = %d",
- intval($r[0]['channel_id'])
- );
+ if($r) {
+ if(! $r[0]['channel_primary']) {
+ q("update channel set channel_primary = 1 where channel_id = %d",
+ intval($r[0]['channel_id'])
+ );
+ }
+ else {
+ q("update channel set channel_primary = 0 where channel_id = %d",
+ intval($r[0]['channel_id'])
+ );
+ }
}
// do we even have an xchan for this hubloc and if so is it already set as primary?
diff --git a/include/items.php b/include/items.php
index bb4d1108e..9163016e1 100755
--- a/include/items.php
+++ b/include/items.php
@@ -1144,9 +1144,8 @@ function import_author_rss($x) {
$photos = import_xchan_photo($x['photo']['src'],$x['url']);
if($photos) {
- /** @bug $arr is undefined in this SQL query */
$r = q("update xchan set xchan_photo_date = '%s', xchan_photo_l = '%s', xchan_photo_m = '%s', xchan_photo_s = '%s', xchan_photo_mimetype = '%s' where xchan_url = '%s' and xchan_network = 'rss'",
- dbesc(datetime_convert('UTC', 'UTC', $arr['photo_updated'])),
+ dbesc(datetime_convert()),
dbesc($photos[0]),
dbesc($photos[1]),
dbesc($photos[2]),
@@ -1189,9 +1188,8 @@ function import_author_unknown($x) {
$photos = import_xchan_photo($x['photo']['src'],$x['url']);
if($photos) {
- /** @bug $arr is undefined in this SQL query */
$r = q("update xchan set xchan_photo_date = '%s', xchan_photo_l = '%s', xchan_photo_m = '%s', xchan_photo_s = '%s', xchan_photo_mimetype = '%s' where xchan_url = '%s' and xchan_network = 'unknown'",
- dbesc(datetime_convert('UTC','UTC',$arr['photo_updated'])),
+ dbesc(datetime_convert()),
dbesc($photos[0]),
dbesc($photos[1]),
dbesc($photos[2]),
diff --git a/include/permissions.php b/include/permissions.php
index e4cd9ddda..8f593640c 100644
--- a/include/permissions.php
+++ b/include/permissions.php
@@ -151,9 +151,13 @@ function get_all_perms($uid, $observer_xchan, $internal_use = true) {
// Check if this $uid is actually the $observer_xchan - if it's your content
// you always have permission to do anything
+ // if you've moved elsewhere, you will only have read only access
if(($observer_xchan) && ($r[0]['channel_hash'] === $observer_xchan)) {
- $ret[$perm_name] = true;
+ if($r[0]['channel_moved'] && (! $permission[2]))
+ $ret[$perm_name] = false;
+ else
+ $ret[$perm_name] = true;
continue;
}
@@ -286,7 +290,7 @@ function perm_is_allowed($uid, $observer_xchan, $permission) {
$channel_perm = $global_perms[$permission][0];
- $r = q("select %s, channel_pageflags, channel_hash from channel where channel_id = %d limit 1",
+ $r = q("select %s, channel_pageflags, channel_moved, channel_hash from channel where channel_id = %d limit 1",
dbesc($channel_perm),
intval($uid)
);
@@ -325,9 +329,15 @@ function perm_is_allowed($uid, $observer_xchan, $permission) {
return false;
// Check if this $uid is actually the $observer_xchan
+ // you will have full access unless the channel was moved -
+ // in which case you will have read_only access
- if($r[0]['channel_hash'] === $observer_xchan)
- return true;
+ if($r[0]['channel_hash'] === $observer_xchan) {
+ if($r[0]['channel_moved'] && (! $global_perms[$permission][2]))
+ return false;
+ else
+ return true;
+ }
if($r[0][$channel_perm] & PERMS_PUBLIC)
return true;
diff --git a/include/profile_selectors.php b/include/profile_selectors.php
index a80677cb3..9f993f803 100644
--- a/include/profile_selectors.php
+++ b/include/profile_selectors.php
@@ -7,7 +7,7 @@ function gender_selector($current="",$suffix="") {
call_hooks('gender_selector', $select);
- $o .= "<select name=\"gender$suffix\" id=\"gender-select$suffix\" size=\"1\" >";
+ $o .= "<select class=\"form-control\" name=\"gender$suffix\" id=\"gender-select$suffix\" size=\"1\" >";
foreach($select as $selection) {
if($selection !== 'NOTRANSLATION') {
$selected = (($selection == $current) ? ' selected="selected" ' : '');
@@ -24,7 +24,7 @@ function gender_selector_min($current="",$suffix="") {
call_hooks('gender_selector_min', $select);
- $o .= "<select name=\"gender$suffix\" id=\"gender-select$suffix\" size=\"1\" >";
+ $o .= "<select class=\"form-control\" name=\"gender$suffix\" id=\"gender-select$suffix\" size=\"1\" >";
foreach($select as $selection) {
if($selection !== 'NOTRANSLATION') {
$selected = (($selection == $current) ? ' selected="selected" ' : '');
@@ -44,7 +44,7 @@ function sexpref_selector($current="",$suffix="") {
call_hooks('sexpref_selector', $select);
- $o .= "<select name=\"sexual$suffix\" id=\"sexual-select$suffix\" size=\"1\" >";
+ $o .= "<select class=\"form-control\" name=\"sexual$suffix\" id=\"sexual-select$suffix\" size=\"1\" >";
foreach($select as $selection) {
if($selection !== 'NOTRANSLATION') {
$selected = (($selection == $current) ? ' selected="selected" ' : '');
@@ -62,7 +62,7 @@ function sexpref_selector_min($current="",$suffix="") {
call_hooks('sexpref_selector_min', $select);
- $o .= "<select name=\"sexual$suffix\" id=\"sexual-select$suffix\" size=\"1\" >";
+ $o .= "<select class=\"form-control\" name=\"sexual$suffix\" id=\"sexual-select$suffix\" size=\"1\" >";
foreach($select as $selection) {
if($selection !== 'NOTRANSLATION') {
$selected = (($selection == $current) ? ' selected="selected" ' : '');
@@ -81,7 +81,7 @@ function marital_selector($current="",$suffix="") {
call_hooks('marital_selector', $select);
- $o .= "<select name=\"marital\" id=\"marital-select\" size=\"1\" >";
+ $o .= "<select class=\"form-control\" name=\"marital\" id=\"marital-select\" size=\"1\" >";
foreach($select as $selection) {
if($selection !== 'NOTRANSLATION') {
$selected = (($selection == $current) ? ' selected="selected" ' : '');
@@ -98,7 +98,7 @@ function marital_selector_min($current="",$suffix="") {
call_hooks('marital_selector_min', $select);
- $o .= "<select name=\"marital\" id=\"marital-select\" size=\"1\" >";
+ $o .= "<select class=\"form-control\" name=\"marital\" id=\"marital-select\" size=\"1\" >";
foreach($select as $selection) {
if($selection !== 'NOTRANSLATION') {
$selected = (($selection == $current) ? ' selected="selected" ' : '');
diff --git a/include/widgets.php b/include/widgets.php
index 0d31133e7..65c745a05 100644
--- a/include/widgets.php
+++ b/include/widgets.php
@@ -983,6 +983,9 @@ function widget_cover_photo($arr) {
$o = '';
$a = get_app();
+
+ if($a->module == 'channel' && $_REQUEST['mid'])
+ return '';
$channel_id = 0;
if(array_key_exists('channel_id', $arr) && intval($arr['channel_id']))
diff --git a/include/zot.php b/include/zot.php
index a60a50d8f..cff9e1810 100644
--- a/include/zot.php
+++ b/include/zot.php
@@ -2234,6 +2234,56 @@ function process_location_delivery($sender,$arr,$deliveries) {
}
/**
+ * @brief checks for a moved UNO channel and sets the channel_moved flag
+ *
+ * Currently the effect of this flag is to turn the channel into 'read-only' mode.
+ * New content will not be processed (there was still an issue with blocking the
+ * ability to post comments as of 10-Mar-2016).
+ * We do not physically remove the channel at this time. The hub admin may choose
+ * to do so, but is encouraged to allow a grace period of several days in case there
+ * are any issues migrating content. This packet will generally be received by the
+ * original site when the basic channel import has been processed.
+ *
+ * This will only be executed on the UNO system which is the old location
+ * if a new location is reported and there is only one location record.
+ * The rest of the hubloc syncronisation will be handled within
+ * sync_locations
+ */
+
+
+
+function check_location_move($sender_hash,$locations) {
+
+ if(! $locations)
+ return;
+
+ if(! UNO)
+ return;
+
+ if(count($locations) != 1)
+ return;
+
+ $loc = $locations[0];
+
+ $r = q("select * from channel where channel_hash = '%s' limit 1",
+ dbesc($sender_hash)
+ );
+
+ if(! $r)
+ return;
+
+ if($loc['url'] !== z_root()) {
+ $x = q("update channel set channel_moved = '%s' where channel_hash = '%s' limit 1",
+ dbesc($loc['url']),
+ dbesc($sender_hash)
+ );
+
+ }
+
+}
+
+
+/**
* @brief Synchronises locations.
*
* @param array $sender
@@ -2247,6 +2297,10 @@ function sync_locations($sender, $arr, $absolute = false) {
if($arr['locations']) {
+ if($absolute)
+ check_location_move($sender['hash'],$arr['locations']);
+
+
$xisting = q("select hubloc_id, hubloc_url, hubloc_sitekey from hubloc where hubloc_hash = '%s'",
dbesc($sender['hash'])
);
diff --git a/mod/display.php b/mod/display.php
index b2d9ba34b..40427846b 100644
--- a/mod/display.php
+++ b/mod/display.php
@@ -116,7 +116,7 @@ function display_content(&$a, $update = 0, $load = false) {
$simple_update = (($update) ? " AND item_unseen = 1 " : '');
if($update && $_SESSION['loadtime'])
- $simple_update .= " and item.changed > '" . datetime_convert('UTC','UTC',$_SESSION['loadtime']) . "' ";
+ $simple_update = " AND (( item_unseen = 1 AND item.changed > '" . datetime_convert('UTC','UTC',$_SESSION['loadtime']) . "' ) OR item.changed > '" . datetime_convert('UTC','UTC',$_SESSION['loadtime']) . "' ) ";
if($load)
$simple_update = '';
@@ -217,9 +217,54 @@ function display_content(&$a, $update = 0, $load = false) {
}
}
- else {
- $r = array();
+ }
+
+ elseif($update && !$load) {
+ $r = null;
+
+ require_once('include/identity.php');
+ $sys = get_sys_channel();
+ $sysid = $sys['channel_id'];
+
+ if(local_channel()) {
+ $r = q("SELECT * from item
+ WHERE uid = %d
+ and mid = '%s'
+ $item_normal
+ $simple_update
+ limit 1",
+ intval(local_channel()),
+ dbesc($target_item['parent_mid'])
+ );
+ if($r) {
+ $updateable = true;
+ }
}
+ if($r === null) {
+ // in case somebody turned off public access to sys channel content using permissions
+ // make that content unsearchable by ensuring the owner_xchan can't match
+ if(! perm_is_allowed($sysid,$observer_hash,'view_stream'))
+ $sysid = 0;
+
+ $r = q("SELECT * from item
+ WHERE mid = '%s'
+ AND (((( `item`.`allow_cid` = '' AND `item`.`allow_gid` = '' AND `item`.`deny_cid` = ''
+ AND `item`.`deny_gid` = '' AND item_private = 0 )
+ and owner_xchan in ( " . stream_perms_xchans(($observer_hash) ? (PERMS_NETWORK|PERMS_PUBLIC) : PERMS_PUBLIC) . " ))
+ OR uid = %d )
+ $sql_extra )
+ $item_normal
+ $simple_update
+ limit 1",
+ dbesc($target_item['parent_mid']),
+ intval($sysid)
+ );
+ }
+ $_SESSION['loadtime'] = datetime_convert();
+ }
+
+ else {
+ $r = array();
}
if($r) {
@@ -284,6 +329,5 @@ function display_content(&$a, $update = 0, $load = false) {
}
*/
- return $o;
}
diff --git a/mod/import.php b/mod/import.php
index 0b239d822..f91f261a5 100644
--- a/mod/import.php
+++ b/mod/import.php
@@ -108,10 +108,9 @@ function import_account(&$a, $account_id) {
import_diaspora($data);
return;
}
-
- if(UNO)
- return;
-
+
+ $moving = false;
+
if(array_key_exists('compatibility',$data) && array_key_exists('database',$data['compatibility'])) {
$v1 = substr($data['compatibility']['database'],-4);
$v2 = substr(DB_UPDATE_VERSION,-4);
@@ -119,14 +118,13 @@ function import_account(&$a, $account_id) {
$t = sprintf( t('Warning: Database versions differ by %1$d updates.'), $v2 - $v1 );
notice($t);
}
- if(array_key_exists('server_role',$data['compatibility'])
- && $data['compatibility']['server_role'] != Zotlabs\Project\System::get_server_role()) {
- notice( t('Server platform is not compatible. Operation not permitted.') . EOL);
- return;
- }
-
+ if(array_key_exists('server_role',$data['compatibility']) && $data['compatibility']['server_role'] == 'basic')
+ $moving = true;
}
+ if($moving)
+ $seize = 1;
+
// import channel
if(array_key_exists('channel',$data)) {
@@ -189,7 +187,7 @@ function import_account(&$a, $account_id) {
if($completed < 4) {
- if(is_array($data['hubloc'])) {
+ if(is_array($data['hubloc']) && (! $moving)) {
import_hublocs($channel,$data['hubloc'],$seize);
}
diff --git a/mod/network.php b/mod/network.php
index 17f57f498..134a4081d 100644
--- a/mod/network.php
+++ b/mod/network.php
@@ -174,8 +174,10 @@ function network_content(&$a, $update = 0, $load = false) {
if($deftag)
$x['pretext'] = $deftag;
+
$status_editor = status_editor($a,$x);
$o .= $status_editor;
+
}
diff --git a/mod/profiles.php b/mod/profiles.php
index 3ae1390df..57d3561b1 100644
--- a/mod/profiles.php
+++ b/mod/profiles.php
@@ -272,9 +272,17 @@ function profiles_post(&$a) {
$name = escape_tags(trim($_POST['name']));
- if($orig[0]['name'] != $name)
+ if($orig[0]['name'] != $name) {
$namechanged = true;
+ $v = validate_channelname($name);
+ if($v) {
+ $notice($v);
+ $namechanged = false;
+ $name = $orig[0]['name'];
+ }
+ }
+
$pdesc = escape_tags(trim($_POST['pdesc']));
$gender = escape_tags(trim($_POST['gender']));
$address = escape_tags(trim($_POST['address']));
@@ -563,6 +571,10 @@ function profiles_post(&$a) {
dbesc(datetime_convert()),
dbesc($channel['xchan_hash'])
);
+ $r = q("UPDATE channel SET channel_name = '%s' WHERE channel_hash = '%s'",
+ dbesc($name),
+ dbesc($channel['xchan_hash'])
+ );
}
if($is_default) {
@@ -683,28 +695,28 @@ function profiles_content(&$a) {
'$exportable' => feature_enabled(local_channel(),'profile_export'),
'$lbl_import' => t('Import profile from file'),
'$lbl_export' => t('Export profile to file'),
- '$lbl_profname' => t('Profile Name:'),
- '$lbl_fullname' => t('Your Full Name:'),
- '$lbl_title' => t('Title/Description:'),
- '$lbl_gender' => t('Your Gender:'),
- '$lbl_bd' => t("Birthday :"),
- '$lbl_address' => t('Street Address:'),
- '$lbl_city' => t('Locality/City:'),
- '$lbl_zip' => t('Postal/Zip Code:'),
- '$lbl_country' => t('Country:'),
- '$lbl_region' => t('Region/State:'),
- '$lbl_marital' => t('<span class="heart">&hearts;</span> Marital Status:'),
- '$lbl_with' => t("Who: \x28if applicable\x29"),
+ '$lbl_profname' => t('Profile Name'),
+ '$lbl_fullname' => t('Your Full Name'),
+ '$lbl_title' => t('Title/Description'),
+ '$lbl_gender' => t('Your Gender'),
+ '$lbl_bd' => t("Birthday"),
+ '$lbl_address' => t('Street Address'),
+ '$lbl_city' => t('Locality/City'),
+ '$lbl_zip' => t('Postal/Zip Code'),
+ '$lbl_country' => t('Country'),
+ '$lbl_region' => t('Region/State'),
+ '$lbl_marital' => t('<span class="heart">&hearts;</span> Marital Status'),
+ '$lbl_with' => t("Who (if applicable)"),
'$lbl_ex1' => t('Examples: cathy123, Cathy Williams, cathy@example.com'),
- '$lbl_howlong' => t('Since [date]:'),
- '$lbl_sexual' => t('Sexual Preference:'),
- '$lbl_homepage' => t('Homepage URL:'),
- '$lbl_hometown' => t('Hometown:'),
- '$lbl_politic' => t('Political Views:'),
- '$lbl_religion' => t('Religious Views:'),
- '$lbl_pubkey' => t('Keywords:'),
- '$lbl_likes' => t('Likes:'),
- '$lbl_dislikes' => t('Dislikes:'),
+ '$lbl_howlong' => t('Since [date]'),
+ '$lbl_sexual' => t('Sexual Preference'),
+ '$lbl_homepage' => t('Homepage URL'),
+ '$lbl_hometown' => t('Hometown'),
+ '$lbl_politic' => t('Political Views'),
+ '$lbl_religion' => t('Religious Views'),
+ '$lbl_pubkey' => t('Keywords'),
+ '$lbl_likes' => t('Likes'),
+ '$lbl_dislikes' => t('Dislikes'),
'$lbl_ex2' => t('Example: fishing photography software'),
'$lbl_pubdsc' => t("Used in directory listings"),
'$lbl_about' => t('Tell us about yourself...'),
diff --git a/version.inc b/version.inc
index ca28cf2da..3d66d0abe 100644
--- a/version.inc
+++ b/version.inc
@@ -1 +1 @@
-2016-03-04.1326H
+2016-03-08.1330H
diff --git a/view/css/mod_profiles.css b/view/css/mod_profiles.css
index 35ef73cec..ea063c64e 100644
--- a/view/css/mod_profiles.css
+++ b/view/css/mod_profiles.css
@@ -19,7 +19,7 @@
#profile-edit-links-end {
clear: both;
- margin-bottom: 15px;
+/* margin-bottom: 15px; */
}
.profile-listing-photo {
@@ -43,9 +43,11 @@
width: 175px;
margin-left: 50px;
- margin-bottom: 20px;
+/* margin-bottom: 20px; */
}
+/*
+
#profile-edit-profile-name-label,
#profile-edit-name-label,
#profile-edit-pdesc-label,
@@ -138,11 +140,13 @@
#hide-friends-end {
clear: both;
}
+*/
-
+/*
#gender-select, #marital-select, #sexual-select {
width: 220px;
}
+*/
#profile-edit-profile-name-wrapper .required {
color: #FF0000;
diff --git a/view/en/lostpass_eml.tpl b/view/en/lostpass_eml.tpl
index 3b79d2791..285a65ade 100644
--- a/view/en/lostpass_eml.tpl
+++ b/view/en/lostpass_eml.tpl
@@ -29,4 +29,7 @@ Login Name: {{$email}}
Sincerely,
{{$sitename}} Administrator
+--
+Terms Of Service:
+{{$siteurl}}/help/TermsOfService
diff --git a/view/en/passchanged_eml.tpl b/view/en/passchanged_eml.tpl
index 0d94be3c2..61bf27943 100644
--- a/view/en/passchanged_eml.tpl
+++ b/view/en/passchanged_eml.tpl
@@ -18,3 +18,8 @@ Sincerely,
{{$sitename}} Administrator
+
+--
+Terms Of Service:
+{{$siteurl}}/help/TermsOfService
+
diff --git a/view/en/register_verify_member.tpl b/view/en/register_verify_member.tpl
index d1e34be67..71f0964d4 100644
--- a/view/en/register_verify_member.tpl
+++ b/view/en/register_verify_member.tpl
@@ -23,3 +23,8 @@ To deny the request and remove the account, please visit:
Thank you.
+
+--
+Terms Of Service:
+{{$siteurl}}/help/TermsOfService
+
diff --git a/view/es b/view/es
new file mode 120000
index 000000000..55914a5c4
--- /dev/null
+++ b/view/es
@@ -0,0 +1 @@
+es-es/ \ No newline at end of file
diff --git a/view/es-es/hmessages.po b/view/es-es/hmessages.po
index e42fe0a5d..e536ef723 100644
--- a/view/es-es/hmessages.po
+++ b/view/es-es/hmessages.po
@@ -4,6 +4,8 @@
#
# Translators:
# Alfonso <alfonsomthd@tutanota.com>, 2015
+# JACOB MALDONADO <axetransit@gmail.com>, 2015
+# jeroenpraat <jeroenpraat@xs4all.nl>, 2015
# Manuel JimƩnez Friaza <mjfriaza@openmailbox.org>, 2015-2016
# Rafael, 2015
# tony baldwin <tonybaldwin@gmx.com>, 2014
@@ -11,8 +13,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Redmatrix\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-02-26 00:03-0800\n"
-"PO-Revision-Date: 2016-02-28 17:12+0000\n"
+"POT-Creation-Date: 2016-03-04 00:03-0800\n"
+"PO-Revision-Date: 2016-03-07 12:43+0000\n"
"Last-Translator: Manuel JimƩnez Friaza <mjfriaza@openmailbox.org>\n"
"Language-Team: Spanish (Spain) (http://www.transifex.com/Friendica/red-matrix/language/es_ES/)\n"
"MIME-Version: 1.0\n"
@@ -62,7 +64,7 @@ msgid "Schedule Outbox"
msgstr "Programar bandeja de salida"
#: ../../Zotlabs/Storage/Browser.php:164 ../../include/apps.php:360
-#: ../../include/apps.php:415 ../../include/widgets.php:1410
+#: ../../include/apps.php:415 ../../include/widgets.php:1430
#: ../../include/conversation.php:1037 ../../mod/photos.php:766
#: ../../mod/photos.php:1209
msgid "Unknown"
@@ -89,7 +91,7 @@ msgid "Create"
msgstr "Crear"
#: ../../Zotlabs/Storage/Browser.php:231 ../../Zotlabs/Storage/Browser.php:305
-#: ../../include/widgets.php:1423 ../../mod/photos.php:793
+#: ../../include/widgets.php:1443 ../../mod/photos.php:793
#: ../../mod/photos.php:1333 ../../mod/profile_photo.php:401
#: ../../mod/cover_photo.php:353
msgid "Upload"
@@ -116,12 +118,13 @@ msgstr "ƚltima modificaciĆ³n"
#: ../../Zotlabs/Storage/Browser.php:240 ../../include/apps.php:259
#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36
-#: ../../include/menu.php:108 ../../include/identity.php:1352
-#: ../../include/ItemObject.php:100 ../../mod/blocks.php:153
-#: ../../mod/connections.php:286 ../../mod/connections.php:306
-#: ../../mod/editblock.php:135 ../../mod/editlayout.php:134
-#: ../../mod/editpost.php:112 ../../mod/editwebpage.php:176
-#: ../../mod/layouts.php:183 ../../mod/menu.php:108 ../../mod/settings.php:659
+#: ../../include/menu.php:108 ../../include/identity.php:924
+#: ../../include/identity.php:928 ../../include/ItemObject.php:100
+#: ../../mod/blocks.php:153 ../../mod/connections.php:286
+#: ../../mod/connections.php:306 ../../mod/editblock.php:135
+#: ../../mod/editlayout.php:134 ../../mod/editpost.php:112
+#: ../../mod/editwebpage.php:176 ../../mod/layouts.php:183
+#: ../../mod/menu.php:108 ../../mod/admin.php:1767 ../../mod/settings.php:659
#: ../../mod/thing.php:256 ../../mod/webpages.php:183
msgid "Edit"
msgstr "Editar"
@@ -129,10 +132,11 @@ msgstr "Editar"
#: ../../Zotlabs/Storage/Browser.php:241 ../../include/apps.php:260
#: ../../include/conversation.php:657 ../../include/ItemObject.php:120
#: ../../mod/blocks.php:155 ../../mod/connections.php:259
-#: ../../mod/connedit.php:562 ../../mod/editblock.php:181
+#: ../../mod/connedit.php:569 ../../mod/editblock.php:181
#: ../../mod/editlayout.php:179 ../../mod/editwebpage.php:223
#: ../../mod/group.php:173 ../../mod/photos.php:1140 ../../mod/admin.php:993
-#: ../../mod/admin.php:1152 ../../mod/settings.php:660 ../../mod/thing.php:257
+#: ../../mod/admin.php:1152 ../../mod/admin.php:1768
+#: ../../mod/settings.php:660 ../../mod/thing.php:257
#: ../../mod/webpages.php:185
msgid "Delete"
msgstr "Eliminar"
@@ -159,13 +163,13 @@ msgstr "Crear nueva carpeta"
msgid "Upload file"
msgstr "Subir fichero"
-#: ../../Zotlabs/Web/Router.php:45 ../../include/attach.php:140
-#: ../../include/attach.php:188 ../../include/attach.php:251
-#: ../../include/attach.php:265 ../../include/attach.php:272
-#: ../../include/attach.php:337 ../../include/attach.php:351
-#: ../../include/attach.php:358 ../../include/attach.php:436
-#: ../../include/attach.php:888 ../../include/attach.php:959
-#: ../../include/attach.php:1111 ../../include/chat.php:133
+#: ../../Zotlabs/Web/Router.php:45 ../../include/chat.php:133
+#: ../../include/attach.php:141 ../../include/attach.php:189
+#: ../../include/attach.php:252 ../../include/attach.php:266
+#: ../../include/attach.php:273 ../../include/attach.php:338
+#: ../../include/attach.php:352 ../../include/attach.php:359
+#: ../../include/attach.php:437 ../../include/attach.php:889
+#: ../../include/attach.php:960 ../../include/attach.php:1112
#: ../../include/photos.php:29 ../../include/items.php:4575
#: ../../index.php:180 ../../mod/achievements.php:30 ../../mod/api.php:26
#: ../../mod/api.php:31 ../../mod/appman.php:66 ../../mod/authtest.php:13
@@ -174,7 +178,7 @@ msgstr "Subir fichero"
#: ../../mod/channel.php:100 ../../mod/channel.php:217
#: ../../mod/channel.php:257 ../../mod/chat.php:94 ../../mod/chat.php:99
#: ../../mod/common.php:35 ../../mod/connections.php:29
-#: ../../mod/connedit.php:355 ../../mod/editblock.php:65
+#: ../../mod/connedit.php:362 ../../mod/editblock.php:65
#: ../../mod/editlayout.php:63 ../../mod/editlayout.php:87
#: ../../mod/editpost.php:13 ../../mod/editwebpage.php:64
#: ../../mod/editwebpage.php:86 ../../mod/editwebpage.php:101
@@ -183,7 +187,7 @@ msgstr "Subir fichero"
#: ../../mod/filestorage.php:88 ../../mod/filestorage.php:115
#: ../../mod/fsuggest.php:78 ../../mod/group.php:9 ../../mod/id.php:71
#: ../../mod/invite.php:13 ../../mod/invite.php:87 ../../mod/item.php:206
-#: ../../mod/item.php:214 ../../mod/item.php:1056 ../../mod/layouts.php:69
+#: ../../mod/item.php:214 ../../mod/item.php:1069 ../../mod/layouts.php:69
#: ../../mod/layouts.php:76 ../../mod/layouts.php:87 ../../mod/like.php:177
#: ../../mod/locs.php:83 ../../mod/mail.php:126 ../../mod/manage.php:6
#: ../../mod/menu.php:74 ../../mod/message.php:16 ../../mod/mitem.php:111
@@ -196,7 +200,7 @@ msgstr "Subir fichero"
#: ../../mod/profiles.php:198 ../../mod/profiles.php:584
#: ../../mod/rate.php:111 ../../mod/register.php:73 ../../mod/regmod.php:17
#: ../../mod/service_limits.php:7 ../../mod/settings.php:579
-#: ../../mod/setup.php:230 ../../mod/sharedwithme.php:7
+#: ../../mod/setup.php:233 ../../mod/sharedwithme.php:7
#: ../../mod/sources.php:66 ../../mod/suggest.php:26 ../../mod/thing.php:270
#: ../../mod/thing.php:290 ../../mod/thing.php:327
#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27
@@ -215,7 +219,7 @@ msgid "Page not found."
msgstr "PƔgina no encontrada."
#: ../../include/Contact.php:101 ../../include/widgets.php:147
-#: ../../include/widgets.php:185 ../../include/identity.php:954
+#: ../../include/widgets.php:185 ../../include/identity.php:1003
#: ../../include/conversation.php:961 ../../mod/directory.php:321
#: ../../mod/match.php:64 ../../mod/suggest.php:52
msgid "Connect"
@@ -242,7 +246,7 @@ msgstr "No se ha encontrado el nombre de usuario en el fichero importado."
msgid "Unable to create a unique channel address. Import failed."
msgstr "No se ha podido crear una direcciĆ³n de canal Ćŗnica. Ha fallado la importaciĆ³n."
-#: ../../include/Import/import_diaspora.php:143 ../../mod/import.php:496
+#: ../../include/Import/import_diaspora.php:143 ../../mod/import.php:511
msgid "Import completed."
msgstr "ImportaciĆ³n completada."
@@ -352,11 +356,11 @@ msgstr "Cerrar"
#: ../../include/activities.php:42
msgid " and "
-msgstr "y"
+msgstr " y "
#: ../../include/activities.php:50
msgid "public profile"
-msgstr "perfil pĆŗblico"
+msgstr "el perfil pĆŗblico"
#: ../../include/activities.php:59
#, php-format
@@ -371,7 +375,7 @@ msgstr "Visitar %2$s de %1$s"
#: ../../include/activities.php:63
#, php-format
msgid "%1$s has an updated %2$s, changing %3$s."
-msgstr "%1$s ha actualizado %2$s cambiando %3$s."
+msgstr "%1$s ha actualizado %2$s, cambiando %3$s."
#: ../../include/api.php:1336
msgid "Public Timeline"
@@ -418,7 +422,7 @@ msgstr "PƔginas web"
msgid "Channel Home"
msgstr "Mi canal"
-#: ../../include/apps.php:138 ../../include/identity.php:1359
+#: ../../include/apps.php:138 ../../include/identity.php:1387
#: ../../mod/profperm.php:112
msgid "Profile"
msgstr "Perfil"
@@ -481,7 +485,7 @@ msgstr "Canal aleatorio"
msgid "Invite"
msgstr "Invitar"
-#: ../../include/apps.php:152 ../../include/widgets.php:1296
+#: ../../include/apps.php:152 ../../include/widgets.php:1316
msgid "Features"
msgstr "Funcionalidades"
@@ -511,68 +515,6 @@ msgstr "Instalar"
msgid "Purchase"
msgstr "Comprar"
-#: ../../include/attach.php:246 ../../include/attach.php:332
-msgid "Item was not found."
-msgstr "Elemento no encontrado."
-
-#: ../../include/attach.php:496
-msgid "No source file."
-msgstr "NingĆŗn fichero de origen"
-
-#: ../../include/attach.php:518
-msgid "Cannot locate file to replace"
-msgstr "No se puede localizar el fichero que va a ser sustituido."
-
-#: ../../include/attach.php:536
-msgid "Cannot locate file to revise/update"
-msgstr "No se puede localizar el fichero para revisar/actualizar"
-
-#: ../../include/attach.php:671
-#, php-format
-msgid "File exceeds size limit of %d"
-msgstr "El fichero supera el limite de tamaƱo de %d"
-
-#: ../../include/attach.php:685
-#, php-format
-msgid "You have reached your limit of %1$.0f Mbytes attachment storage."
-msgstr "Ha alcanzado su lĆ­mite de %1$.0f Mbytes de almacenamiento de adjuntos."
-
-#: ../../include/attach.php:841
-msgid "File upload failed. Possible system limit or action terminated."
-msgstr "Error de carga, posiblemente por limite del sistema o porque la acciĆ³n ha finalizado."
-
-#: ../../include/attach.php:854
-msgid "Stored file could not be verified. Upload failed."
-msgstr "El fichero almacenado no ha podido ser verificado. El envĆ­o ha fallado."
-
-#: ../../include/attach.php:902 ../../include/attach.php:918
-msgid "Path not available."
-msgstr "Ruta no disponible."
-
-#: ../../include/attach.php:964 ../../include/attach.php:1116
-msgid "Empty pathname"
-msgstr "Ruta vacĆ­a"
-
-#: ../../include/attach.php:990
-msgid "duplicate filename or path"
-msgstr "Nombre duplicado de ruta o fichero"
-
-#: ../../include/attach.php:1012
-msgid "Path not found."
-msgstr "Ruta no encontrada"
-
-#: ../../include/attach.php:1070
-msgid "mkdir failed."
-msgstr "mkdir ha fallado."
-
-#: ../../include/attach.php:1074
-msgid "database storage failed."
-msgstr "el almacenamiento en la base de datos ha fallado."
-
-#: ../../include/attach.php:1122
-msgid "Empty path"
-msgstr "Ruta vacĆ­a"
-
#: ../../include/auth.php:132
msgid "Logged out."
msgstr "Desconectado/a."
@@ -609,74 +551,11 @@ msgid "Finishes:"
msgstr "Finaliza:"
#: ../../include/bb2diaspora.php:487 ../../include/event.php:52
-#: ../../include/text.php:1433 ../../include/identity.php:1005
+#: ../../include/text.php:1433 ../../include/identity.php:1018
#: ../../mod/directory.php:307
msgid "Location:"
msgstr "UbicaciĆ³n:"
-#: ../../include/bbcode.php:123 ../../include/bbcode.php:794
-#: ../../include/bbcode.php:797 ../../include/bbcode.php:802
-#: ../../include/bbcode.php:805 ../../include/bbcode.php:808
-#: ../../include/bbcode.php:811 ../../include/bbcode.php:816
-#: ../../include/bbcode.php:819 ../../include/bbcode.php:824
-#: ../../include/bbcode.php:827 ../../include/bbcode.php:830
-#: ../../include/bbcode.php:833
-msgid "Image/photo"
-msgstr "Imagen/foto"
-
-#: ../../include/bbcode.php:162 ../../include/bbcode.php:844
-msgid "Encrypted content"
-msgstr "Contenido cifrado"
-
-#: ../../include/bbcode.php:179
-#, php-format
-msgid "Install %s element: "
-msgstr "Instalar el elemento %s:"
-
-#: ../../include/bbcode.php:183
-#, php-format
-msgid ""
-"This post contains an installable %s element, however you lack permissions "
-"to install it on this site."
-msgstr "Esta entrada contiene el elemento instalable %s, sin embargo le faltan permisos para instalarlo en este sitio."
-
-#: ../../include/bbcode.php:193 ../../mod/impel.php:37
-msgid "webpage"
-msgstr "pƔgina web"
-
-#: ../../include/bbcode.php:196 ../../mod/impel.php:47
-msgid "layout"
-msgstr "disposiciĆ³n"
-
-#: ../../include/bbcode.php:199 ../../mod/impel.php:42
-msgid "block"
-msgstr "bloque"
-
-#: ../../include/bbcode.php:202 ../../mod/impel.php:54
-msgid "menu"
-msgstr "menĆŗ"
-
-#: ../../include/bbcode.php:257
-#, php-format
-msgid "%1$s wrote the following %2$s %3$s"
-msgstr "%1$s escribiĆ³ %2$s siguiente %3$s"
-
-#: ../../include/bbcode.php:259 ../../mod/tagger.php:51
-msgid "post"
-msgstr "la entrada"
-
-#: ../../include/bbcode.php:547
-msgid "Different viewers will see this text differently"
-msgstr "Visitantes diferentes verƔn este texto de forma distinta"
-
-#: ../../include/bbcode.php:755
-msgid "$1 spoiler"
-msgstr "$1 spoiler"
-
-#: ../../include/bbcode.php:782
-msgid "$1 wrote:"
-msgstr "$1 escribiĆ³:"
-
#: ../../include/bookmarks.php:35
#, php-format
msgid "%1$s's bookmarks"
@@ -755,7 +634,7 @@ msgstr "Invitar a amigos"
msgid "Advanced example: name=fred and country=iceland"
msgstr "Ejemplo avanzado: nombre=juan y paƭs=espaƱa"
-#: ../../include/contact_widgets.php:57 ../../include/features.php:96
+#: ../../include/contact_widgets.php:57 ../../include/features.php:97
#: ../../include/widgets.php:314
msgid "Saved Folders"
msgstr "Carpetas guardadas"
@@ -796,7 +675,7 @@ msgstr "Modo seguro"
#: ../../include/dir_fns.php:141 ../../include/dir_fns.php:142
#: ../../include/dir_fns.php:143 ../../mod/api.php:102
-#: ../../mod/connedit.php:368 ../../mod/connedit.php:646
+#: ../../mod/connedit.php:375 ../../mod/connedit.php:653
#: ../../mod/events.php:454 ../../mod/events.php:455 ../../mod/events.php:464
#: ../../mod/filestorage.php:151 ../../mod/filestorage.php:159
#: ../../mod/menu.php:96 ../../mod/menu.php:153 ../../mod/mitem.php:154
@@ -809,7 +688,7 @@ msgstr "No"
#: ../../include/dir_fns.php:141 ../../include/dir_fns.php:142
#: ../../include/dir_fns.php:143 ../../mod/api.php:101
-#: ../../mod/connedit.php:368 ../../mod/events.php:454
+#: ../../mod/connedit.php:375 ../../mod/events.php:454
#: ../../mod/events.php:455 ../../mod/events.php:464
#: ../../mod/filestorage.php:151 ../../mod/filestorage.php:159
#: ../../mod/menu.php:96 ../../mod/menu.php:153 ../../mod/mitem.php:154
@@ -965,7 +844,7 @@ msgstr "Nada nuevo por aquĆ­"
msgid "Rate This Channel (this is public)"
msgstr "Valorar este canal (esto es pĆŗblico)"
-#: ../../include/js_strings.php:20 ../../mod/connedit.php:705
+#: ../../include/js_strings.php:20 ../../mod/connedit.php:712
#: ../../mod/rate.php:157
msgid "Rating"
msgstr "ValoraciĆ³n"
@@ -977,10 +856,10 @@ msgstr "Describir (opcional)"
#: ../../include/js_strings.php:22 ../../include/widgets.php:702
#: ../../include/widgets.php:714 ../../include/ItemObject.php:703
#: ../../mod/appman.php:99 ../../mod/chat.php:184 ../../mod/chat.php:213
-#: ../../mod/connect.php:93 ../../mod/connedit.php:722
+#: ../../mod/connect.php:93 ../../mod/connedit.php:729
#: ../../mod/events.php:468 ../../mod/events.php:665
#: ../../mod/filestorage.php:156 ../../mod/fsuggest.php:108
-#: ../../mod/group.php:81 ../../mod/import.php:536
+#: ../../mod/group.php:81 ../../mod/import.php:551
#: ../../mod/import_items.php:116 ../../mod/invite.php:142
#: ../../mod/locs.php:116 ../../mod/mail.php:380 ../../mod/mitem.php:231
#: ../../mod/mood.php:135 ../../mod/pconfig.php:108 ../../mod/pdledit.php:62
@@ -988,13 +867,14 @@ msgstr "Describir (opcional)"
#: ../../mod/photos.php:1059 ../../mod/photos.php:1177 ../../mod/admin.php:457
#: ../../mod/admin.php:646 ../../mod/admin.php:721 ../../mod/admin.php:986
#: ../../mod/admin.php:1150 ../../mod/admin.php:1326 ../../mod/admin.php:1521
-#: ../../mod/admin.php:1606 ../../mod/poke.php:182 ../../mod/profiles.php:675
-#: ../../mod/rate.php:168 ../../mod/settings.php:597
-#: ../../mod/settings.php:710 ../../mod/settings.php:738
-#: ../../mod/settings.php:761 ../../mod/settings.php:849
-#: ../../mod/settings.php:1041 ../../mod/setup.php:333 ../../mod/setup.php:374
-#: ../../mod/sources.php:104 ../../mod/sources.php:138 ../../mod/thing.php:312
-#: ../../mod/thing.php:358 ../../mod/xchan.php:11 ../../mod/cal.php:332
+#: ../../mod/admin.php:1606 ../../mod/admin.php:1770 ../../mod/poke.php:182
+#: ../../mod/profiles.php:675 ../../mod/rate.php:168
+#: ../../mod/settings.php:597 ../../mod/settings.php:710
+#: ../../mod/settings.php:738 ../../mod/settings.php:761
+#: ../../mod/settings.php:849 ../../mod/settings.php:1041
+#: ../../mod/setup.php:336 ../../mod/setup.php:377 ../../mod/sources.php:104
+#: ../../mod/sources.php:138 ../../mod/thing.php:312 ../../mod/thing.php:358
+#: ../../mod/xchan.php:11 ../../mod/cal.php:332
#: ../../view/theme/redbasic/php/config.php:99
msgid "Submit"
msgstr "Enviar"
@@ -1297,7 +1177,7 @@ msgid "Your posts and conversations"
msgstr "Sus publicaciones y conversaciones"
#: ../../include/nav.php:86 ../../include/conversation.php:959
-#: ../../mod/connedit.php:509
+#: ../../mod/connedit.php:516
msgid "View Profile"
msgstr "Ver el perfil"
@@ -1305,7 +1185,7 @@ msgstr "Ver el perfil"
msgid "Your profile page"
msgstr "Su pƔgina del perfil"
-#: ../../include/nav.php:88
+#: ../../include/nav.php:88 ../../include/identity.php:924
msgid "Edit Profiles"
msgstr "Editar perfiles"
@@ -1313,7 +1193,7 @@ msgstr "Editar perfiles"
msgid "Manage/Edit profiles"
msgstr "Administrar/editar perfiles"
-#: ../../include/nav.php:90 ../../include/identity.php:977
+#: ../../include/nav.php:90 ../../include/identity.php:928
msgid "Edit Profile"
msgstr "Editar el perfil"
@@ -1472,7 +1352,7 @@ msgstr "Gestionar sus canales"
msgid "Account/Channel Settings"
msgstr "Ajustes de cuenta/canales"
-#: ../../include/nav.php:213 ../../include/widgets.php:1323
+#: ../../include/nav.php:213 ../../include/widgets.php:1343
msgid "Admin"
msgstr "Administrador"
@@ -1547,6 +1427,69 @@ msgstr "Editado"
msgid "Profile Photos"
msgstr "Fotos del perfil"
+#: ../../include/bbcode.php:123 ../../include/bbcode.php:798
+#: ../../include/bbcode.php:801 ../../include/bbcode.php:806
+#: ../../include/bbcode.php:809 ../../include/bbcode.php:812
+#: ../../include/bbcode.php:815 ../../include/bbcode.php:820
+#: ../../include/bbcode.php:823 ../../include/bbcode.php:828
+#: ../../include/bbcode.php:831 ../../include/bbcode.php:834
+#: ../../include/bbcode.php:837
+msgid "Image/photo"
+msgstr "Imagen/foto"
+
+#: ../../include/bbcode.php:162 ../../include/bbcode.php:848
+msgid "Encrypted content"
+msgstr "Contenido cifrado"
+
+#: ../../include/bbcode.php:179
+#, php-format
+msgid "Install %s element: "
+msgstr "Instalar el elemento %s:"
+
+#: ../../include/bbcode.php:183
+#, php-format
+msgid ""
+"This post contains an installable %s element, however you lack permissions "
+"to install it on this site."
+msgstr "Esta entrada contiene el elemento instalable %s, sin embargo le faltan permisos para instalarlo en este sitio."
+
+#: ../../include/bbcode.php:193 ../../mod/impel.php:37
+msgid "webpage"
+msgstr "pƔgina web"
+
+#: ../../include/bbcode.php:196 ../../mod/impel.php:47
+msgid "layout"
+msgstr "disposiciĆ³n"
+
+#: ../../include/bbcode.php:199 ../../mod/impel.php:42
+msgid "block"
+msgstr "bloque"
+
+#: ../../include/bbcode.php:202 ../../mod/impel.php:54
+msgid "menu"
+msgstr "menĆŗ"
+
+#: ../../include/bbcode.php:257
+#, php-format
+msgid "%1$s wrote the following %2$s %3$s"
+msgstr "%1$s escribiĆ³ %2$s siguiente %3$s"
+
+#: ../../include/bbcode.php:259 ../../mod/tagger.php:51
+msgid "post"
+msgstr "la entrada"
+
+#: ../../include/bbcode.php:547
+msgid "Different viewers will see this text differently"
+msgstr "Visitantes diferentes verƔn este texto de forma distinta"
+
+#: ../../include/bbcode.php:759
+msgid "$1 spoiler"
+msgstr "$1 spoiler"
+
+#: ../../include/bbcode.php:786
+msgid "$1 wrote:"
+msgstr "$1 escribiĆ³:"
+
#: ../../include/profile_selectors.php:6
#: ../../include/profile_selectors.php:23 ../../mod/id.php:103
msgid "Male"
@@ -1702,7 +1645,7 @@ msgstr "Con adicciĆ³n al sexo"
#: ../../include/profile_selectors.php:80 ../../include/widgets.php:451
#: ../../include/identity.php:390 ../../include/identity.php:391
-#: ../../include/identity.php:398 ../../mod/connedit.php:584
+#: ../../include/identity.php:398 ../../mod/connedit.php:591
#: ../../mod/settings.php:349 ../../mod/settings.php:353
#: ../../mod/settings.php:354 ../../mod/settings.php:357
#: ../../mod/settings.php:368
@@ -1845,7 +1788,7 @@ msgstr "no me gusta"
msgid "dislikes"
msgstr "no gusta de"
-#: ../../include/taxonomy.php:415 ../../include/identity.php:1264
+#: ../../include/taxonomy.php:415 ../../include/identity.php:1296
#: ../../include/conversation.php:1751 ../../include/ItemObject.php:179
#: ../../mod/photos.php:1097
msgctxt "noun"
@@ -1940,23 +1883,85 @@ msgstr "CumpleaƱos de %1$s"
msgid "Happy Birthday %1$s"
msgstr "Feliz cumpleaƱos %1$s"
-#: ../../include/zot.php:675
+#: ../../include/zot.php:680
msgid "Invalid data packet"
msgstr "Paquete de datos no vƔlido"
-#: ../../include/zot.php:691
+#: ../../include/zot.php:696
msgid "Unable to verify channel signature"
msgstr "No ha sido posible de verificar la firma del canal"
-#: ../../include/zot.php:2267
+#: ../../include/zot.php:2272
#, php-format
msgid "Unable to verify site signature for %s"
msgstr "No ha sido posible de verificar la firma del sitio para %s"
-#: ../../include/zot.php:3588
+#: ../../include/zot.php:3607
msgid "invalid target signature"
msgstr "La firma recibida no es vƔlida"
+#: ../../include/attach.php:247 ../../include/attach.php:333
+msgid "Item was not found."
+msgstr "Elemento no encontrado."
+
+#: ../../include/attach.php:497
+msgid "No source file."
+msgstr "NingĆŗn fichero de origen"
+
+#: ../../include/attach.php:519
+msgid "Cannot locate file to replace"
+msgstr "No se puede localizar el fichero que va a ser sustituido."
+
+#: ../../include/attach.php:537
+msgid "Cannot locate file to revise/update"
+msgstr "No se puede localizar el fichero para revisar/actualizar"
+
+#: ../../include/attach.php:672
+#, php-format
+msgid "File exceeds size limit of %d"
+msgstr "El fichero supera el limite de tamaƱo de %d"
+
+#: ../../include/attach.php:686
+#, php-format
+msgid "You have reached your limit of %1$.0f Mbytes attachment storage."
+msgstr "Ha alcanzado su lĆ­mite de %1$.0f Mbytes de almacenamiento de adjuntos."
+
+#: ../../include/attach.php:842
+msgid "File upload failed. Possible system limit or action terminated."
+msgstr "Error de carga, posiblemente por limite del sistema o porque la acciĆ³n ha finalizado."
+
+#: ../../include/attach.php:855
+msgid "Stored file could not be verified. Upload failed."
+msgstr "El fichero almacenado no ha podido ser verificado. El envĆ­o ha fallado."
+
+#: ../../include/attach.php:903 ../../include/attach.php:919
+msgid "Path not available."
+msgstr "Ruta no disponible."
+
+#: ../../include/attach.php:965 ../../include/attach.php:1117
+msgid "Empty pathname"
+msgstr "Ruta vacĆ­a"
+
+#: ../../include/attach.php:991
+msgid "duplicate filename or path"
+msgstr "Nombre duplicado de ruta o fichero"
+
+#: ../../include/attach.php:1013
+msgid "Path not found."
+msgstr "Ruta no encontrada"
+
+#: ../../include/attach.php:1071
+msgid "mkdir failed."
+msgstr "mkdir ha fallado."
+
+#: ../../include/attach.php:1075
+msgid "database storage failed."
+msgstr "el almacenamiento en la base de datos ha fallado."
+
+#: ../../include/attach.php:1123
+msgid "Empty path"
+msgstr "Ruta vacĆ­a"
+
#: ../../include/contact_selectors.php:56
msgid "Frequently"
msgstr "Frecuentemente"
@@ -2163,202 +2168,204 @@ msgid "If location data is available on uploaded photos, link this to a map."
msgstr "Si los datos de ubicaciĆ³n estĆ”n disponibles en las fotos subidas, enlazar estas a un mapa."
#: ../../include/features.php:60
+msgid "Smart Birthdays"
+msgstr "CumpleaƱos inteligentes"
+
+#: ../../include/features.php:60
+msgid ""
+"Make birthday events timezone aware in case your friends are scattered "
+"across the planet."
+msgstr "Enlazar los eventos de cumpleaƱos con la zona horaria en el caso de que sus amigos estƩn dispersos por el mundo."
+
+#: ../../include/features.php:61
msgid "Expert Mode"
msgstr "Modo de experto"
-#: ../../include/features.php:60
+#: ../../include/features.php:61
msgid "Enable Expert Mode to provide advanced configuration options"
msgstr "Habilitar el modo de experto para acceder a opciones avanzadas de configuraciĆ³n"
-#: ../../include/features.php:61
+#: ../../include/features.php:62
msgid "Premium Channel"
msgstr "Canal premium"
-#: ../../include/features.php:61
+#: ../../include/features.php:62
msgid ""
"Allows you to set restrictions and terms on those that connect with your "
"channel"
msgstr "Le permite configurar restricciones y normas de uso a aquellos que conectan con su canal"
-#: ../../include/features.php:66
+#: ../../include/features.php:67
msgid "Post Composition Features"
msgstr "Opciones para la redacciĆ³n de entradas"
-#: ../../include/features.php:68
-msgid "Use Markdown"
-msgstr "Usar Markdown"
-
-#: ../../include/features.php:68
-msgid "Allow use of \"Markdown\" to format posts"
-msgstr "Permitir el uso de \"Markdown\" para formatear publicaciones"
-
-#: ../../include/features.php:69
+#: ../../include/features.php:70
msgid "Large Photos"
msgstr "Fotos de gran tamaƱo"
-#: ../../include/features.php:69
+#: ../../include/features.php:70
msgid ""
"Include large (1024px) photo thumbnails in posts. If not enabled, use small "
"(640px) photo thumbnails"
msgstr "Incluir miniaturas de fotos grandes (1024px) en publicaciones. Si no estƔ habilitado, usar miniaturas pequeƱas (640px)"
-#: ../../include/features.php:70 ../../include/widgets.php:572
+#: ../../include/features.php:71 ../../include/widgets.php:572
#: ../../mod/sources.php:88
msgid "Channel Sources"
msgstr "OrĆ­genes de los contenidos del canal"
-#: ../../include/features.php:70
+#: ../../include/features.php:71
msgid "Automatically import channel content from other channels or feeds"
msgstr "Importar automƔticamente contenido de otros canales o \"feeds\""
-#: ../../include/features.php:71
+#: ../../include/features.php:72
msgid "Even More Encryption"
msgstr "MƔs cifrado todavƭa"
-#: ../../include/features.php:71
+#: ../../include/features.php:72
msgid ""
"Allow optional encryption of content end-to-end with a shared secret key"
msgstr "Permitir cifrado adicional de contenido \"punto-a-punto\" con una clave secreta compartida."
-#: ../../include/features.php:72
+#: ../../include/features.php:73
msgid "Enable Voting Tools"
msgstr "Permitir entradas con votaciĆ³n"
-#: ../../include/features.php:72
+#: ../../include/features.php:73
msgid "Provide a class of post which others can vote on"
msgstr "Proveer una clase de publicaciĆ³n en la que otros puedan votar"
-#: ../../include/features.php:73
+#: ../../include/features.php:74
msgid "Delayed Posting"
msgstr "PublicaciĆ³n aplazada"
-#: ../../include/features.php:73
+#: ../../include/features.php:74
msgid "Allow posts to be published at a later date"
msgstr "Permitir mensajes que se publicarƔn en una fecha posterior"
-#: ../../include/features.php:74
+#: ../../include/features.php:75
msgid "Suppress Duplicate Posts/Comments"
msgstr "Prevenir entradas o comentarios duplicados"
-#: ../../include/features.php:74
+#: ../../include/features.php:75
msgid ""
"Prevent posts with identical content to be published with less than two "
"minutes in between submissions."
msgstr "Prevenir que entradas con contenido idƩntico se publiquen con menos de dos minutos de intervalo."
-#: ../../include/features.php:80
+#: ../../include/features.php:81
msgid "Network and Stream Filtering"
msgstr "Filtrado del contenido"
-#: ../../include/features.php:81
+#: ../../include/features.php:82
msgid "Search by Date"
msgstr "Buscar por fecha"
-#: ../../include/features.php:81
+#: ../../include/features.php:82
msgid "Ability to select posts by date ranges"
msgstr "Capacidad de seleccionar entradas por rango de fechas"
-#: ../../include/features.php:82 ../../include/group.php:295
+#: ../../include/features.php:83 ../../include/group.php:295
msgid "Privacy Groups"
msgstr "Grupos de canales"
-#: ../../include/features.php:82
+#: ../../include/features.php:83
msgid "Enable management and selection of privacy groups"
msgstr "Activar la gestiĆ³n y selecciĆ³n de grupos de canales"
-#: ../../include/features.php:83 ../../include/widgets.php:284
+#: ../../include/features.php:84 ../../include/widgets.php:284
msgid "Saved Searches"
msgstr "BĆŗsquedas guardadas"
-#: ../../include/features.php:83
+#: ../../include/features.php:84
msgid "Save search terms for re-use"
msgstr "Guardar tĆ©rminos de bĆŗsqueda para su reutilizaciĆ³n"
-#: ../../include/features.php:84
+#: ../../include/features.php:85
msgid "Network Personal Tab"
msgstr "Actividad personal"
-#: ../../include/features.php:84
+#: ../../include/features.php:85
msgid "Enable tab to display only Network posts that you've interacted on"
msgstr "Habilitar una pestaƱa en la cual se muestren solo las entradas en las que ha participado."
-#: ../../include/features.php:85
+#: ../../include/features.php:86
msgid "Network New Tab"
msgstr "Contenido nuevo"
-#: ../../include/features.php:85
+#: ../../include/features.php:86
msgid "Enable tab to display all new Network activity"
msgstr "Habilitar una pestaƱa en la que se muestre solo el contenido nuevo"
-#: ../../include/features.php:86
+#: ../../include/features.php:87
msgid "Affinity Tool"
msgstr "Herramienta de afinidad"
-#: ../../include/features.php:86
+#: ../../include/features.php:87
msgid "Filter stream activity by depth of relationships"
msgstr "Filtrar el contenido segĆŗn la profundidad de las relaciones"
-#: ../../include/features.php:87
+#: ../../include/features.php:88
msgid "Connection Filtering"
msgstr "Filtrado de conexiones"
-#: ../../include/features.php:87
+#: ../../include/features.php:88
msgid "Filter incoming posts from connections based on keywords/content"
msgstr "Filtrar publicaciones entrantes de conexiones por palabras clave o contenido"
-#: ../../include/features.php:88
+#: ../../include/features.php:89
msgid "Suggest Channels"
msgstr "Sugerir canales"
-#: ../../include/features.php:88
+#: ../../include/features.php:89
msgid "Show channel suggestions"
msgstr "Mostrar sugerencias de canales"
-#: ../../include/features.php:93
+#: ../../include/features.php:94
msgid "Post/Comment Tools"
msgstr "GestiĆ³n de entradas y comentarios"
-#: ../../include/features.php:94
+#: ../../include/features.php:95
msgid "Community Tagging"
msgstr "Etiquetas de la comunidad"
-#: ../../include/features.php:94
+#: ../../include/features.php:95
msgid "Ability to tag existing posts"
msgstr "Capacidad de etiquetar entradas existentes"
-#: ../../include/features.php:95
+#: ../../include/features.php:96
msgid "Post Categories"
msgstr "CategorĆ­as de entradas"
-#: ../../include/features.php:95
+#: ../../include/features.php:96
msgid "Add categories to your posts"
msgstr "AƱadir categorƭas a sus publicaciones"
-#: ../../include/features.php:96
+#: ../../include/features.php:97
msgid "Ability to file posts under folders"
msgstr "Capacidad de archivar entradas en carpetas"
-#: ../../include/features.php:97
+#: ../../include/features.php:98
msgid "Dislike Posts"
msgstr "Desagrado de publicaciones"
-#: ../../include/features.php:97
+#: ../../include/features.php:98
msgid "Ability to dislike posts/comments"
msgstr "Capacidad de mostrar desacuerdo con el contenido de entradas y comentarios"
-#: ../../include/features.php:98
+#: ../../include/features.php:99
msgid "Star Posts"
msgstr "Entradas destacadas"
-#: ../../include/features.php:98
+#: ../../include/features.php:99
msgid "Ability to mark special posts with a star indicator"
msgstr "Capacidad de marcar entradas destacadas con un indicador de estrella"
-#: ../../include/features.php:99
+#: ../../include/features.php:100
msgid "Tag Cloud"
msgstr "Nube de etiquetas"
-#: ../../include/features.php:99
+#: ../../include/features.php:100
msgid "Provide a personal tag cloud on your channel page"
msgstr "Proveer nube de etiquetas personal en su pƔgina de canal"
@@ -2412,8 +2419,8 @@ msgid "Notes"
msgstr "Notas"
#: ../../include/widgets.php:202 ../../include/text.php:886
-#: ../../include/text.php:898 ../../mod/filer.php:49 ../../mod/admin.php:1666
-#: ../../mod/admin.php:1686 ../../mod/rbmark.php:28 ../../mod/rbmark.php:100
+#: ../../include/text.php:898 ../../mod/filer.php:49 ../../mod/admin.php:1687
+#: ../../mod/admin.php:1707 ../../mod/rbmark.php:28 ../../mod/rbmark.php:100
msgid "Save"
msgstr "Guardar"
@@ -2429,20 +2436,20 @@ msgstr "aƱadir"
msgid "Archives"
msgstr "Hemeroteca"
-#: ../../include/widgets.php:449 ../../mod/connedit.php:582
+#: ../../include/widgets.php:449 ../../mod/connedit.php:589
msgid "Me"
msgstr "Yo"
-#: ../../include/widgets.php:450 ../../mod/connedit.php:583
+#: ../../include/widgets.php:450 ../../mod/connedit.php:590
msgid "Family"
msgstr "Familia"
-#: ../../include/widgets.php:452 ../../mod/connedit.php:585
+#: ../../include/widgets.php:452 ../../mod/connedit.php:592
msgid "Acquaintances"
msgstr "Conocidos/as"
#: ../../include/widgets.php:453 ../../mod/connections.php:88
-#: ../../mod/connections.php:103 ../../mod/connedit.php:586
+#: ../../mod/connections.php:103 ../../mod/connedit.php:593
msgid "All"
msgstr "Todos/as"
@@ -2478,7 +2485,7 @@ msgstr "Aplicaciones conectadas"
msgid "Export channel"
msgstr "Exportar canal"
-#: ../../include/widgets.php:556 ../../mod/connedit.php:694
+#: ../../include/widgets.php:556 ../../mod/connedit.php:701
msgid "Connection Default Permissions"
msgstr "Permisos predeterminados de conexiĆ³n"
@@ -2564,111 +2571,111 @@ msgstr "Salas de chat preferidas"
msgid "Suggested Chatrooms"
msgstr "Salas de chat sugeridas"
-#: ../../include/widgets.php:972 ../../include/widgets.php:1062
+#: ../../include/widgets.php:972 ../../include/widgets.php:1082
msgid "photo/image"
msgstr "foto/imagen"
-#: ../../include/widgets.php:1156
+#: ../../include/widgets.php:1176
msgid "Rating Tools"
msgstr "Valoraciones"
-#: ../../include/widgets.php:1160 ../../include/widgets.php:1162
+#: ../../include/widgets.php:1180 ../../include/widgets.php:1182
msgid "Rate Me"
msgstr "Valorar este canal"
-#: ../../include/widgets.php:1165
+#: ../../include/widgets.php:1185
msgid "View Ratings"
msgstr "Mostrar las valoraciones"
-#: ../../include/widgets.php:1176 ../../mod/pubsites.php:18
+#: ../../include/widgets.php:1196 ../../mod/pubsites.php:18
msgid "Public Hubs"
msgstr "Servidores pĆŗblicos"
-#: ../../include/widgets.php:1224
+#: ../../include/widgets.php:1244
msgid "Forums"
msgstr "Foros"
-#: ../../include/widgets.php:1253
+#: ../../include/widgets.php:1273
msgid "Tasks"
msgstr "Tareas"
-#: ../../include/widgets.php:1262
+#: ../../include/widgets.php:1282
msgid "Documentation"
msgstr "DocumentaciĆ³n"
-#: ../../include/widgets.php:1264
+#: ../../include/widgets.php:1284
msgid "Project/Site Information"
msgstr "InformaciĆ³n sobre el proyecto o sitio"
-#: ../../include/widgets.php:1265
+#: ../../include/widgets.php:1285
msgid "For Members"
msgstr "Para los usuarios"
-#: ../../include/widgets.php:1266
+#: ../../include/widgets.php:1286
msgid "For Administrators"
msgstr "Para los administradores"
-#: ../../include/widgets.php:1267
+#: ../../include/widgets.php:1287
msgid "For Developers"
msgstr "Para los desarrolladores"
-#: ../../include/widgets.php:1292 ../../mod/admin.php:456
+#: ../../include/widgets.php:1312 ../../mod/admin.php:456
msgid "Site"
msgstr "Sitio"
-#: ../../include/widgets.php:1293
+#: ../../include/widgets.php:1313
msgid "Accounts"
msgstr "Cuentas"
-#: ../../include/widgets.php:1294 ../../mod/admin.php:1149
+#: ../../include/widgets.php:1314 ../../mod/admin.php:1149
msgid "Channels"
msgstr "Canales"
-#: ../../include/widgets.php:1295 ../../mod/admin.php:710
+#: ../../include/widgets.php:1315 ../../mod/admin.php:710
msgid "Security"
msgstr "Seguridad"
-#: ../../include/widgets.php:1297 ../../mod/admin.php:1264
+#: ../../include/widgets.php:1317 ../../mod/admin.php:1264
#: ../../mod/admin.php:1325
msgid "Plugins"
msgstr "Extensiones"
-#: ../../include/widgets.php:1298 ../../mod/admin.php:1486
+#: ../../include/widgets.php:1318 ../../mod/admin.php:1486
#: ../../mod/admin.php:1520
msgid "Themes"
msgstr "Temas"
-#: ../../include/widgets.php:1299
+#: ../../include/widgets.php:1319
msgid "Inspect queue"
msgstr "Examinar la cola"
-#: ../../include/widgets.php:1300
-msgid "Profile Config"
-msgstr "Ajustes del perfil"
+#: ../../include/widgets.php:1320 ../../mod/admin.php:1760
+msgid "Profile Fields"
+msgstr "Campos del perfil"
-#: ../../include/widgets.php:1301
+#: ../../include/widgets.php:1321
msgid "DB updates"
msgstr "Actualizaciones de la base de datos"
-#: ../../include/widgets.php:1319 ../../include/widgets.php:1325
+#: ../../include/widgets.php:1339 ../../include/widgets.php:1345
#: ../../mod/admin.php:1605
msgid "Logs"
msgstr "Informes"
-#: ../../include/widgets.php:1324
+#: ../../include/widgets.php:1344
msgid "Plugin Features"
msgstr "Extensiones"
-#: ../../include/widgets.php:1326
+#: ../../include/widgets.php:1346
msgid "User registrations waiting for confirmation"
msgstr "Registros de usuarios pendientes de confirmaciĆ³n"
-#: ../../include/widgets.php:1404 ../../mod/photos.php:760
+#: ../../include/widgets.php:1424 ../../mod/photos.php:760
#: ../../mod/photos.php:1300
msgid "View Photo"
msgstr "Ver foto"
-#: ../../include/widgets.php:1421 ../../mod/photos.php:791
+#: ../../include/widgets.php:1441 ../../mod/photos.php:791
msgid "Edit Album"
msgstr "Editar Ɣlbum"
@@ -3172,11 +3179,11 @@ msgstr "No ha sido posible recuperar la identidad creada"
msgid "Default Profile"
msgstr "Perfil principal"
-#: ../../include/identity.php:772
+#: ../../include/identity.php:776
msgid "Requested channel is not available."
msgstr "El canal solicitado no estĆ” disponible."
-#: ../../include/identity.php:818 ../../mod/achievements.php:11
+#: ../../include/identity.php:822 ../../mod/achievements.php:11
#: ../../mod/blocks.php:29 ../../mod/connect.php:13 ../../mod/editblock.php:29
#: ../../mod/editlayout.php:27 ../../mod/editwebpage.php:28
#: ../../mod/filestorage.php:54 ../../mod/hcard.php:8 ../../mod/layouts.php:29
@@ -3184,192 +3191,184 @@ msgstr "El canal solicitado no estĆ” disponible."
msgid "Requested profile is not available."
msgstr "El perfil solicitado no estĆ” disponible."
-#: ../../include/identity.php:967 ../../mod/profiles.php:782
+#: ../../include/identity.php:917 ../../mod/profiles.php:782
msgid "Change profile photo"
msgstr "Cambiar la foto del perfil"
-#: ../../include/identity.php:973
-msgid "Profiles"
-msgstr "Perfiles"
-
-#: ../../include/identity.php:973
-msgid "Manage/edit profiles"
-msgstr "Administrar/editar perfiles"
-
-#: ../../include/identity.php:974 ../../mod/profiles.php:783
+#: ../../include/identity.php:925 ../../mod/profiles.php:783
msgid "Create New Profile"
msgstr "Crear un nuevo perfil"
-#: ../../include/identity.php:989 ../../mod/profiles.php:794
+#: ../../include/identity.php:942 ../../mod/profiles.php:794
msgid "Profile Image"
msgstr "Imagen del perfil"
-#: ../../include/identity.php:992
-msgid "visible to everybody"
-msgstr "visible para cualquiera"
+#: ../../include/identity.php:945
+msgid "Visible to everybody"
+msgstr "Visible para todos"
-#: ../../include/identity.php:993 ../../mod/profiles.php:677
+#: ../../include/identity.php:946 ../../mod/profiles.php:677
#: ../../mod/profiles.php:798
msgid "Edit visibility"
msgstr "Editar visibilidad"
-#: ../../include/identity.php:1009 ../../include/identity.php:1248
+#: ../../include/identity.php:1022 ../../include/identity.php:1280
msgid "Gender:"
msgstr "GĆ©nero:"
-#: ../../include/identity.php:1010 ../../include/identity.php:1292
+#: ../../include/identity.php:1023 ../../include/identity.php:1324
msgid "Status:"
msgstr "Estado:"
-#: ../../include/identity.php:1011 ../../include/identity.php:1303
+#: ../../include/identity.php:1024 ../../include/identity.php:1335
msgid "Homepage:"
msgstr "PƔgina personal:"
-#: ../../include/identity.php:1012
+#: ../../include/identity.php:1025
msgid "Online Now"
msgstr "Ahora en lĆ­nea"
-#: ../../include/identity.php:1099 ../../include/identity.php:1177
+#: ../../include/identity.php:1113 ../../include/identity.php:1191
#: ../../mod/ping.php:318
msgid "g A l F d"
msgstr "g A l d F"
-#: ../../include/identity.php:1100 ../../include/identity.php:1178
+#: ../../include/identity.php:1114 ../../include/identity.php:1192
msgid "F d"
msgstr "d F"
-#: ../../include/identity.php:1145 ../../include/identity.php:1217
+#: ../../include/identity.php:1159 ../../include/identity.php:1231
#: ../../mod/ping.php:341
msgid "[today]"
msgstr "[hoy]"
-#: ../../include/identity.php:1156
+#: ../../include/identity.php:1170
msgid "Birthday Reminders"
msgstr "Recordatorios de cumpleaƱos"
-#: ../../include/identity.php:1157
+#: ../../include/identity.php:1171
msgid "Birthdays this week:"
msgstr "CumpleaƱos de esta semana:"
-#: ../../include/identity.php:1210
+#: ../../include/identity.php:1224
msgid "[No description]"
msgstr "[Sin descripciĆ³n]"
-#: ../../include/identity.php:1228
+#: ../../include/identity.php:1242
msgid "Event Reminders"
msgstr "Recordatorios de eventos"
-#: ../../include/identity.php:1229
+#: ../../include/identity.php:1243
msgid "Events this week:"
msgstr "Eventos de esta semana:"
-#: ../../include/identity.php:1246 ../../mod/settings.php:1047
+#: ../../include/identity.php:1278 ../../mod/settings.php:1047
msgid "Full Name:"
msgstr "Nombre completo:"
-#: ../../include/identity.php:1253
+#: ../../include/identity.php:1285
msgid "Like this channel"
msgstr "Me gusta este canal"
-#: ../../include/identity.php:1277
+#: ../../include/identity.php:1309
msgid "j F, Y"
msgstr "j F Y"
-#: ../../include/identity.php:1278
+#: ../../include/identity.php:1310
msgid "j F"
msgstr "j F"
-#: ../../include/identity.php:1285
+#: ../../include/identity.php:1317
msgid "Birthday:"
msgstr "CumpleaƱos:"
-#: ../../include/identity.php:1289 ../../mod/directory.php:302
+#: ../../include/identity.php:1321 ../../mod/directory.php:302
msgid "Age:"
msgstr "Edad:"
-#: ../../include/identity.php:1298
+#: ../../include/identity.php:1330
#, php-format
msgid "for %1$d %2$s"
msgstr "por %1$d %2$s"
-#: ../../include/identity.php:1301 ../../mod/profiles.php:699
+#: ../../include/identity.php:1333 ../../mod/profiles.php:699
msgid "Sexual Preference:"
msgstr "OrientaciĆ³n sexual:"
-#: ../../include/identity.php:1305 ../../mod/directory.php:318
+#: ../../include/identity.php:1337 ../../mod/directory.php:318
#: ../../mod/profiles.php:701
msgid "Hometown:"
msgstr "Ciudad de origen:"
-#: ../../include/identity.php:1307
+#: ../../include/identity.php:1339
msgid "Tags:"
msgstr "Etiquetas:"
-#: ../../include/identity.php:1309 ../../mod/profiles.php:702
+#: ../../include/identity.php:1341 ../../mod/profiles.php:702
msgid "Political Views:"
msgstr "PosiciĆ³n polĆ­tica:"
-#: ../../include/identity.php:1311
+#: ../../include/identity.php:1343
msgid "Religion:"
msgstr "ReligiĆ³n:"
-#: ../../include/identity.php:1313 ../../mod/directory.php:320
+#: ../../include/identity.php:1345 ../../mod/directory.php:320
msgid "About:"
msgstr "Sobre mĆ­:"
-#: ../../include/identity.php:1315
+#: ../../include/identity.php:1347
msgid "Hobbies/Interests:"
msgstr "Aficciones/Intereses:"
-#: ../../include/identity.php:1317 ../../mod/profiles.php:705
+#: ../../include/identity.php:1349 ../../mod/profiles.php:705
msgid "Likes:"
msgstr "Me gusta:"
-#: ../../include/identity.php:1319 ../../mod/profiles.php:706
+#: ../../include/identity.php:1351 ../../mod/profiles.php:706
msgid "Dislikes:"
msgstr "No me gusta:"
-#: ../../include/identity.php:1321
+#: ../../include/identity.php:1353
msgid "Contact information and Social Networks:"
msgstr "InformaciĆ³n de contacto y redes sociales:"
-#: ../../include/identity.php:1323
+#: ../../include/identity.php:1355
msgid "My other channels:"
msgstr "Mis otros canales:"
-#: ../../include/identity.php:1325
+#: ../../include/identity.php:1357
msgid "Musical interests:"
msgstr "Intereses musicales:"
-#: ../../include/identity.php:1327
+#: ../../include/identity.php:1359
msgid "Books, literature:"
msgstr "Libros, literatura:"
-#: ../../include/identity.php:1329
+#: ../../include/identity.php:1361
msgid "Television:"
msgstr "TelevisiĆ³n:"
-#: ../../include/identity.php:1331
+#: ../../include/identity.php:1363
msgid "Film/dance/culture/entertainment:"
msgstr "Cine/danza/cultura/entretenimiento:"
-#: ../../include/identity.php:1333
+#: ../../include/identity.php:1365
msgid "Love/Romance:"
msgstr "Vida sentimental/amorosa:"
-#: ../../include/identity.php:1335
+#: ../../include/identity.php:1367
msgid "Work/employment:"
msgstr "Trabajo:"
-#: ../../include/identity.php:1337
+#: ../../include/identity.php:1369
msgid "School/education:"
msgstr "Estudios:"
-#: ../../include/identity.php:1361
+#: ../../include/identity.php:1389
msgid "Like this thing"
msgstr "Me gusta esto"
-#: ../../include/identity.php:1770 ../../mod/cover_photo.php:236
+#: ../../include/identity.php:1799 ../../mod/cover_photo.php:236
msgid "cover photo"
msgstr "Imagen de portada del perfil"
@@ -4276,7 +4275,7 @@ msgstr "El grupo de canales estĆ” vacĆ­o."
msgid "Privacy group: %s"
msgstr "Grupo de canales: %s"
-#: ../../include/items.php:5065 ../../mod/connedit.php:694
+#: ../../include/items.php:5065 ../../mod/connedit.php:701
#, php-format
msgid "Connection: %s"
msgstr "ConexiĆ³n: %s"
@@ -4640,7 +4639,7 @@ msgstr "Aprobar"
msgid "Ignore connection"
msgstr "Ignorar esta conexiĆ³n"
-#: ../../mod/connections.php:273 ../../mod/connedit.php:538
+#: ../../mod/connections.php:273 ../../mod/connedit.php:545
#: ../../mod/notifications.php:51
msgid "Ignore"
msgstr "Ignorar"
@@ -4677,218 +4676,218 @@ msgstr "Error al actualizar el registro de la conexiĆ³n."
msgid "is now connected to"
msgstr "ahora estĆ” conectado/a"
-#: ../../mod/connedit.php:400
+#: ../../mod/connedit.php:407
msgid "Could not access address book record."
msgstr "No se pudo acceder al registro en su libreta de direcciones."
-#: ../../mod/connedit.php:414
+#: ../../mod/connedit.php:421
msgid "Refresh failed - channel is currently unavailable."
msgstr "Recarga fallida - no se puede encontrar el canal en este momento."
-#: ../../mod/connedit.php:429 ../../mod/connedit.php:438
-#: ../../mod/connedit.php:447 ../../mod/connedit.php:456
-#: ../../mod/connedit.php:469
+#: ../../mod/connedit.php:436 ../../mod/connedit.php:445
+#: ../../mod/connedit.php:454 ../../mod/connedit.php:463
+#: ../../mod/connedit.php:476
msgid "Unable to set address book parameters."
msgstr "No ha sido posible establecer los parƔmetros de la libreta de direcciones."
-#: ../../mod/connedit.php:493
+#: ../../mod/connedit.php:500
msgid "Connection has been removed."
msgstr "La conexiĆ³n ha sido eliminada."
-#: ../../mod/connedit.php:512
+#: ../../mod/connedit.php:519
#, php-format
msgid "View %s's profile"
msgstr "Ver el perfil de %s"
-#: ../../mod/connedit.php:516
+#: ../../mod/connedit.php:523
msgid "Refresh Permissions"
msgstr "Recargar los permisos"
-#: ../../mod/connedit.php:519
+#: ../../mod/connedit.php:526
msgid "Fetch updated permissions"
msgstr "Obtener los permisos actualizados"
-#: ../../mod/connedit.php:523
+#: ../../mod/connedit.php:530
msgid "Recent Activity"
msgstr "Actividad reciente"
-#: ../../mod/connedit.php:526
+#: ../../mod/connedit.php:533
msgid "View recent posts and comments"
msgstr "Ver publicaciones y comentarios recientes"
-#: ../../mod/connedit.php:530 ../../mod/admin.php:995
+#: ../../mod/connedit.php:537 ../../mod/admin.php:995
msgid "Unblock"
msgstr "Desbloquear"
-#: ../../mod/connedit.php:530 ../../mod/admin.php:994
+#: ../../mod/connedit.php:537 ../../mod/admin.php:994
msgid "Block"
msgstr "Bloquear"
-#: ../../mod/connedit.php:533
+#: ../../mod/connedit.php:540
msgid "Block (or Unblock) all communications with this connection"
msgstr "Bloquear (o desbloquear) todas las comunicaciones con esta conexiĆ³n"
-#: ../../mod/connedit.php:534
+#: ../../mod/connedit.php:541
msgid "This connection is blocked!"
msgstr "Ā”Esta conexiĆ³n estĆ” bloqueada!"
-#: ../../mod/connedit.php:538
+#: ../../mod/connedit.php:545
msgid "Unignore"
msgstr "Dejar de ignorar"
-#: ../../mod/connedit.php:541
+#: ../../mod/connedit.php:548
msgid "Ignore (or Unignore) all inbound communications from this connection"
msgstr "Ignorar (o dejar de ignorar) todas las comunicaciones entrantes de esta conexiĆ³n"
-#: ../../mod/connedit.php:542
+#: ../../mod/connedit.php:549
msgid "This connection is ignored!"
msgstr "Ā”Esta conexiĆ³n es ignorada!"
-#: ../../mod/connedit.php:546
+#: ../../mod/connedit.php:553
msgid "Unarchive"
msgstr "Desarchivar"
-#: ../../mod/connedit.php:546
+#: ../../mod/connedit.php:553
msgid "Archive"
msgstr "Archivar"
-#: ../../mod/connedit.php:549
+#: ../../mod/connedit.php:556
msgid ""
"Archive (or Unarchive) this connection - mark channel dead but keep content"
msgstr "Archiva (o desarchiva) esta conexiĆ³n - marca el canal como muerto aunque mantiene sus contenidos"
-#: ../../mod/connedit.php:550
+#: ../../mod/connedit.php:557
msgid "This connection is archived!"
msgstr "Ā”Esta conexiĆ³n esta archivada!"
-#: ../../mod/connedit.php:554
+#: ../../mod/connedit.php:561
msgid "Unhide"
msgstr "Mostrar"
-#: ../../mod/connedit.php:554
+#: ../../mod/connedit.php:561
msgid "Hide"
msgstr "Ocultar"
-#: ../../mod/connedit.php:557
+#: ../../mod/connedit.php:564
msgid "Hide or Unhide this connection from your other connections"
msgstr "Ocultar o mostrar esta conexiĆ³n a sus otras conexiones"
-#: ../../mod/connedit.php:558
+#: ../../mod/connedit.php:565
msgid "This connection is hidden!"
msgstr "Ā”Esta conexiĆ³n estĆ” oculta!"
-#: ../../mod/connedit.php:565
+#: ../../mod/connedit.php:572
msgid "Delete this connection"
msgstr "Eliminar esta conexiĆ³n"
-#: ../../mod/connedit.php:646
+#: ../../mod/connedit.php:653
msgid "Approve this connection"
msgstr "Aprobar esta conexiĆ³n"
-#: ../../mod/connedit.php:646
+#: ../../mod/connedit.php:653
msgid "Accept connection to allow communication"
msgstr "Aceptar la conexiĆ³n para permitir la comunicaciĆ³n"
-#: ../../mod/connedit.php:651
+#: ../../mod/connedit.php:658
msgid "Set Affinity"
msgstr "Ajustar la afinidad"
-#: ../../mod/connedit.php:654
+#: ../../mod/connedit.php:661
msgid "Set Profile"
msgstr "Ajustar el perfil"
-#: ../../mod/connedit.php:657
+#: ../../mod/connedit.php:664
msgid "Set Affinity & Profile"
msgstr "Ajustar la afinidad y el perfil"
-#: ../../mod/connedit.php:690
+#: ../../mod/connedit.php:697
msgid "none"
msgstr "-"
-#: ../../mod/connedit.php:695
+#: ../../mod/connedit.php:702
msgid "Apply these permissions automatically"
msgstr "Aplicar estos permisos automaticamente"
-#: ../../mod/connedit.php:695
+#: ../../mod/connedit.php:702
msgid "Connection requests will be approved without your interaction"
msgstr "Las solicitudes de conexiĆ³n serĆ”n aprobadas sin su intervenciĆ³n"
-#: ../../mod/connedit.php:697
+#: ../../mod/connedit.php:704
msgid "This connection's primary address is"
msgstr "La direcciĆ³n primaria de esta conexiĆ³n es"
-#: ../../mod/connedit.php:698
+#: ../../mod/connedit.php:705
msgid "Available locations:"
msgstr "Ubicaciones disponibles:"
-#: ../../mod/connedit.php:702
+#: ../../mod/connedit.php:709
msgid ""
"The permissions indicated on this page will be applied to all new "
"connections."
msgstr "Los permisos indicados en esta pƔgina serƔn aplicados en todas las nuevas conexiones."
-#: ../../mod/connedit.php:704
+#: ../../mod/connedit.php:711
msgid "Slide to adjust your degree of friendship"
msgstr "Deslizar para ajustar el grado de amistad"
-#: ../../mod/connedit.php:706
+#: ../../mod/connedit.php:713
msgid "Slide to adjust your rating"
msgstr "Deslizar para ajustar su valoraciĆ³n"
-#: ../../mod/connedit.php:707 ../../mod/connedit.php:712
+#: ../../mod/connedit.php:714 ../../mod/connedit.php:719
msgid "Optionally explain your rating"
msgstr "Opcionalmente, puede explicar su valoraciĆ³n"
-#: ../../mod/connedit.php:709
+#: ../../mod/connedit.php:716
msgid "Custom Filter"
msgstr "Filtro personalizado"
-#: ../../mod/connedit.php:710
+#: ../../mod/connedit.php:717
msgid "Only import posts with this text"
msgstr "Importar solo entradas que contengan este texto"
-#: ../../mod/connedit.php:710 ../../mod/connedit.php:711
+#: ../../mod/connedit.php:717 ../../mod/connedit.php:718
msgid ""
"words one per line or #tags or /patterns/ or lang=xx, leave blank to import "
"all posts"
msgstr "Una sola opciĆ³n por lĆ­nea: palabras, #etiquetas, /patrones/ o lang=xx. Dejar en blanco para importarlo todo"
-#: ../../mod/connedit.php:711
+#: ../../mod/connedit.php:718
msgid "Do not import posts with this text"
msgstr "No importar entradas que contengan este texto"
-#: ../../mod/connedit.php:713
+#: ../../mod/connedit.php:720
msgid "This information is public!"
msgstr "Ā”Esta informaciĆ³n es pĆŗblica!"
-#: ../../mod/connedit.php:718
+#: ../../mod/connedit.php:725
msgid "Connection Pending Approval"
msgstr "ConexiĆ³n pendiente de aprobaciĆ³n"
-#: ../../mod/connedit.php:721
+#: ../../mod/connedit.php:728
msgid "inherited"
msgstr "heredado"
-#: ../../mod/connedit.php:723
+#: ../../mod/connedit.php:730
#, php-format
msgid ""
"Please choose the profile you would like to display to %s when viewing your "
"profile securely."
msgstr "Por favor, escoja el perfil que quiere mostrar a %s cuando estƩ viendo su perfil de forma segura."
-#: ../../mod/connedit.php:725
+#: ../../mod/connedit.php:732
msgid "Their Settings"
msgstr "Sus ajustes"
-#: ../../mod/connedit.php:726
+#: ../../mod/connedit.php:733
msgid "My Settings"
msgstr "Mis ajustes"
-#: ../../mod/connedit.php:728
+#: ../../mod/connedit.php:735
msgid "Individual Permissions"
msgstr "Permisos individuales"
-#: ../../mod/connedit.php:729
+#: ../../mod/connedit.php:736
msgid ""
"Some permissions may be inherited from your channel's <a "
"href=\"settings\"><strong>privacy settings</strong></a>, which have higher "
@@ -4896,7 +4895,7 @@ msgid ""
" settings here."
msgstr "Algunos permisos pueden ser heredados de los <a href=\"settings\"><strong>ajustes de privacidad</strong></a> de sus canales, los cuales tienen una prioridad mƔs alta que los ajustes individuales. <strong>No</strong> puede cambiar estos ajustes aquƭ."
-#: ../../mod/connedit.php:730
+#: ../../mod/connedit.php:737
msgid ""
"Some permissions may be inherited from your channel's <a "
"href=\"settings\"><strong>privacy settings</strong></a>, which have higher "
@@ -4904,7 +4903,7 @@ msgid ""
"they wont have any impact unless the inherited setting changes."
msgstr "Algunos permisos pueden ser heredados de los <a href=\"settings\"><strong>ajustes de privacidad</strong></a> de sus canales, los cuales tienen una prioridad mĆ”s alta que los ajustes individuales. Puede cambiar estos ajustes aquĆ­, pero no tendrĆ”n ningĆŗn consecuencia hasta que cambie los ajustes heredados."
-#: ../../mod/connedit.php:731
+#: ../../mod/connedit.php:738
msgid "Last update:"
msgstr "ƚltima actualizaciĆ³n:"
@@ -5256,7 +5255,7 @@ msgid "Previous"
msgstr "Anterior"
#: ../../mod/events.php:660 ../../mod/events.php:667 ../../mod/photos.php:925
-#: ../../mod/setup.php:288 ../../mod/cal.php:327 ../../mod/cal.php:334
+#: ../../mod/setup.php:291 ../../mod/cal.php:327 ../../mod/cal.php:334
msgid "Next"
msgstr "Siguiente"
@@ -5328,7 +5327,7 @@ msgstr "Mostrar la direcciĆ³n de este fichero"
msgid "Notify your contacts about this file"
msgstr "Avisar a sus contactos sobre este fichero"
-#: ../../mod/follow.php:25
+#: ../../mod/follow.php:27
msgid "Channel added."
msgstr "Canal aƱadido."
@@ -5526,42 +5525,42 @@ msgstr "La plataforma del servidor no es compatible. OperaciĆ³n no permitida."
msgid "No channel. Import failed."
msgstr "No hay canal. La importaciĆ³n ha fallado"
-#: ../../mod/import.php:518
+#: ../../mod/import.php:533
msgid "You must be logged in to use this feature."
msgstr "Debe estar registrado para poder usar esta funcionalidad."
-#: ../../mod/import.php:523
+#: ../../mod/import.php:538
msgid "Import Channel"
msgstr "Importar canal"
-#: ../../mod/import.php:524
+#: ../../mod/import.php:539
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 "Emplee este formulario para importar un canal desde un servidor/hub diferente. Puede recuperar el canal desde el antiguo servidor/hub a travĆ©s de la red o proporcionando un fichero de exportaciĆ³n."
-#: ../../mod/import.php:525 ../../mod/import_items.php:115
+#: ../../mod/import.php:540 ../../mod/import_items.php:115
msgid "File to Upload"
msgstr "Fichero para subir"
-#: ../../mod/import.php:526
+#: ../../mod/import.php:541
msgid "Or provide the old server/hub details"
msgstr "O proporcione los detalles de su antiguo servidor/hub"
-#: ../../mod/import.php:527
+#: ../../mod/import.php:542
msgid "Your old identity address (xyz@example.com)"
msgstr "Su identidad en el antiguo servidor (canal@ejemplo.com)"
-#: ../../mod/import.php:528
+#: ../../mod/import.php:543
msgid "Your old login email address"
msgstr "Su antigua direcciĆ³n de correo electrĆ³nico"
-#: ../../mod/import.php:529
+#: ../../mod/import.php:544
msgid "Your old login password"
msgstr "Su antigua contraseƱa"
-#: ../../mod/import.php:530
+#: ../../mod/import.php:545
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"
@@ -5569,17 +5568,17 @@ msgid ""
"primary location for files, photos, and media."
msgstr "Para cualquiera de las opciones, elija si hacer de este servidor su nueva direcciĆ³n primaria, o si su antigua ubicaciĆ³n debe continuar con este papel. Usted podrĆ” publicar desde cualquier ubicaciĆ³n, pero sĆ³lo una puede estar marcada como la ubicaciĆ³n principal para los ficheros, fotos y otras imĆ”genes o vĆ­deos."
-#: ../../mod/import.php:531
+#: ../../mod/import.php:546
msgid "Make this hub my primary location"
msgstr "Convertir este servidor en mi ubicaciĆ³n primaria"
-#: ../../mod/import.php:532
+#: ../../mod/import.php:547
msgid ""
"Import existing posts if possible (experimental - limited by available "
"memory"
msgstr "Importar el contenido publicado si es posible (experimental - limitado por la memoria disponible"
-#: ../../mod/import.php:533
+#: ../../mod/import.php:548
msgid ""
"This process may take several minutes to complete. Please submit the form "
"only once and leave this page open until finished."
@@ -5680,24 +5679,24 @@ msgstr "La entrada vacĆ­a ha sido desechada."
msgid "Executable content type not permitted to this channel."
msgstr "Contenido de tipo ejecutable no permitido en este canal."
-#: ../../mod/item.php:830
+#: ../../mod/item.php:843
msgid "Duplicate post suppressed."
msgstr "Se ha suprimido la entrada duplicada."
-#: ../../mod/item.php:960
+#: ../../mod/item.php:973
msgid "System error. Post not saved."
msgstr "Error del sistema. La entrada no se ha podido salvar."
-#: ../../mod/item.php:1227
+#: ../../mod/item.php:1240
msgid "Unable to obtain post information from database."
msgstr "No ha sido posible obtener informaciĆ³n de la entrada en la base de datos."
-#: ../../mod/item.php:1234
+#: ../../mod/item.php:1247
#, php-format
msgid "You have reached your limit of %1$.0f top level posts."
msgstr "Ha alcanzado su lƭmite de %1$.0f entradas en la pƔgina principal."
-#: ../../mod/item.php:1241
+#: ../../mod/item.php:1254
#, php-format
msgid "You have reached your limit of %1$.0f webpages."
msgstr "Ha alcanzado su lƭmite de %1$.0f pƔginas web."
@@ -7313,46 +7312,70 @@ msgstr "Debe tener permisos de escritura por el servidor web. La ruta es relativ
msgid "Log level"
msgstr "Nivel de depuraciĆ³n"
-#: ../../mod/admin.php:1661
+#: ../../mod/admin.php:1682
msgid "New Profile Field"
msgstr "Nuevo campo en el perfil"
-#: ../../mod/admin.php:1662 ../../mod/admin.php:1682
+#: ../../mod/admin.php:1683 ../../mod/admin.php:1703
msgid "Field nickname"
msgstr "Alias del campo"
-#: ../../mod/admin.php:1662 ../../mod/admin.php:1682
+#: ../../mod/admin.php:1683 ../../mod/admin.php:1703
msgid "System name of field"
msgstr "Nombre del campo en el sistema"
-#: ../../mod/admin.php:1663 ../../mod/admin.php:1683
+#: ../../mod/admin.php:1684 ../../mod/admin.php:1704
msgid "Input type"
msgstr "Tipo de entrada"
-#: ../../mod/admin.php:1664 ../../mod/admin.php:1684
+#: ../../mod/admin.php:1685 ../../mod/admin.php:1705
msgid "Field Name"
msgstr "Nombre del campo"
-#: ../../mod/admin.php:1664 ../../mod/admin.php:1684
+#: ../../mod/admin.php:1685 ../../mod/admin.php:1705
msgid "Label on profile pages"
msgstr "Etiqueta a mostrar en la pƔgina del perfil"
-#: ../../mod/admin.php:1665 ../../mod/admin.php:1685
+#: ../../mod/admin.php:1686 ../../mod/admin.php:1706
msgid "Help text"
msgstr "Texto de ayuda"
-#: ../../mod/admin.php:1665 ../../mod/admin.php:1685
+#: ../../mod/admin.php:1686 ../../mod/admin.php:1706
msgid "Additional info (optional)"
msgstr "InformaciĆ³n adicional (opcional)"
-#: ../../mod/admin.php:1675
+#: ../../mod/admin.php:1696
msgid "Field definition not found"
msgstr "DefiniciĆ³n del campo no encontrada"
-#: ../../mod/admin.php:1681
+#: ../../mod/admin.php:1702
msgid "Edit Profile Field"
msgstr "Modificar el campo del perfil"
+#: ../../mod/admin.php:1761
+msgid "Basic Profile Fields"
+msgstr "Campos bƔsicos del perfil"
+
+#: ../../mod/admin.php:1762
+msgid "Advanced Profile Fields"
+msgstr "Campos avanzados del perfil"
+
+#: ../../mod/admin.php:1762
+msgid "(In addition to basic fields)"
+msgstr "(AdemƔs de los campos bƔsicos)"
+
+#: ../../mod/admin.php:1764
+msgid "All available fields"
+msgstr "Todos los campos disponibles"
+
+#: ../../mod/admin.php:1765
+msgid "Custom Fields"
+msgstr "Campos personalizados"
+
+#: ../../mod/admin.php:1769
+msgid "Create Custom Field"
+msgstr "Crear un campo personalizado"
+
#: ../../mod/poke.php:165
msgid "Poke somebody"
msgstr "Dar un toque a alguien"
@@ -8121,7 +8144,7 @@ msgstr "Confirmar la nueva contraseƱa"
#: ../../mod/settings.php:709
msgid "Leave password fields blank unless changing"
-msgstr "Dejar en blanco los campos de contraseƱa a menos que cambie"
+msgstr "Dejar en blanco la contraseƱa a menos que desee cambiarla."
#: ../../mod/settings.php:711 ../../mod/settings.php:1048
msgid "Email Address:"
@@ -8574,419 +8597,419 @@ msgstr "Servicio de comparticiĆ³n de Firefox: proveedor $Projectname"
msgid "Start calendar week on monday"
msgstr "Comenzar el calendario semanal por el lunes"
-#: ../../mod/setup.php:194
+#: ../../mod/setup.php:197
msgid "$Projectname Server - Setup"
msgstr "Servidor $Projectname - InstalaciĆ³n"
-#: ../../mod/setup.php:198
+#: ../../mod/setup.php:201
msgid "Could not connect to database."
msgstr "No se ha podido conectar a la base de datos."
-#: ../../mod/setup.php:202
+#: ../../mod/setup.php:205
msgid ""
"Could not connect to specified site URL. Possible SSL certificate or DNS "
"issue."
msgstr "No se puede conectar con la direcciĆ³n del sitio indicada. PodrĆ­a tratarse de un problema de SSL o DNS."
-#: ../../mod/setup.php:209
+#: ../../mod/setup.php:212
msgid "Could not create table."
msgstr "No se puede crear la tabla."
-#: ../../mod/setup.php:214
+#: ../../mod/setup.php:217
msgid "Your site database has been installed."
msgstr "La base de datos del sitio ha sido instalada."
-#: ../../mod/setup.php:218
+#: ../../mod/setup.php:221
msgid ""
"You may need to import the file \"install/schema_xxx.sql\" manually using a "
"database client."
msgstr "PodrĆ­a tener que importar manualmente el fichero \"install/schema_xxx.sql\" usando un cliente de base de datos."
-#: ../../mod/setup.php:219 ../../mod/setup.php:287 ../../mod/setup.php:737
+#: ../../mod/setup.php:222 ../../mod/setup.php:290 ../../mod/setup.php:740
msgid "Please see the file \"install/INSTALL.txt\"."
msgstr "Por favor, lea el fichero \"install/INSTALL.txt\"."
-#: ../../mod/setup.php:284
+#: ../../mod/setup.php:287
msgid "System check"
msgstr "VerificaciĆ³n del sistema"
-#: ../../mod/setup.php:289
+#: ../../mod/setup.php:292
msgid "Check again"
msgstr "Verificar de nuevo"
-#: ../../mod/setup.php:311
+#: ../../mod/setup.php:314
msgid "Database connection"
msgstr "ConexiĆ³n a la base de datos"
-#: ../../mod/setup.php:312
+#: ../../mod/setup.php:315
msgid ""
"In order to install $Projectname we need to know how to connect to your "
"database."
msgstr "Para instalar $Projectname es necesario saber cĆ³mo conectar con su base de datos."
-#: ../../mod/setup.php:313
+#: ../../mod/setup.php:316
msgid ""
"Please contact your hosting provider or site administrator if you have "
"questions about these settings."
msgstr "Por favor, contacte con el proveedor de servicios o el administrador del sitio si tiene dudas sobre estos ajustes."
-#: ../../mod/setup.php:314
+#: ../../mod/setup.php:317
msgid ""
"The database you specify below should already exist. If it does not, please "
"create it before continuing."
msgstr "La base de datos que especifique a continuaciĆ³n debe existir ya. Si no es asĆ­, por favor, crĆ©ela antes de seguir."
-#: ../../mod/setup.php:318
+#: ../../mod/setup.php:321
msgid "Database Server Name"
msgstr "Nombre del servidor de base de datos"
-#: ../../mod/setup.php:318
+#: ../../mod/setup.php:321
msgid "Default is 127.0.0.1"
msgstr "De forma predeterminada es 127.0.0.1"
-#: ../../mod/setup.php:319
+#: ../../mod/setup.php:322
msgid "Database Port"
msgstr "Puerto de la base de datos"
-#: ../../mod/setup.php:319
+#: ../../mod/setup.php:322
msgid "Communication port number - use 0 for default"
msgstr "NĆŗmero del puerto de comunicaciones - use 0 como valor por defecto"
-#: ../../mod/setup.php:320
+#: ../../mod/setup.php:323
msgid "Database Login Name"
msgstr "Usuario de la base de datos"
-#: ../../mod/setup.php:321
+#: ../../mod/setup.php:324
msgid "Database Login Password"
msgstr "ContraseƱa de acceso a la base de datos"
-#: ../../mod/setup.php:322
+#: ../../mod/setup.php:325
msgid "Database Name"
msgstr "Nombre de la base de datos"
-#: ../../mod/setup.php:323
+#: ../../mod/setup.php:326
msgid "Database Type"
msgstr "Tipo de base de datos"
-#: ../../mod/setup.php:325 ../../mod/setup.php:365
+#: ../../mod/setup.php:328 ../../mod/setup.php:368
msgid "Site administrator email address"
msgstr "DirecciĆ³n de correo electrĆ³nico del administrador del sitio"
-#: ../../mod/setup.php:325 ../../mod/setup.php:365
+#: ../../mod/setup.php:328 ../../mod/setup.php:368
msgid ""
"Your account email address must match this in order to use the web admin "
"panel."
msgstr "Su cuenta deberĆ” usar la misma direcciĆ³n de correo electrĆ³nico para poder utilizar el panel de administraciĆ³n web."
-#: ../../mod/setup.php:326 ../../mod/setup.php:367
+#: ../../mod/setup.php:329 ../../mod/setup.php:370
msgid "Website URL"
msgstr "DirecciĆ³n del sitio web"
-#: ../../mod/setup.php:326 ../../mod/setup.php:367
+#: ../../mod/setup.php:329 ../../mod/setup.php:370
msgid "Please use SSL (https) URL if available."
msgstr "Por favor, use SSL (https) si estĆ” disponible."
-#: ../../mod/setup.php:327 ../../mod/setup.php:370
+#: ../../mod/setup.php:330 ../../mod/setup.php:373
msgid "Please select a default timezone for your website"
msgstr "Por favor, selecciones la zona horaria por defecto de su sitio web"
-#: ../../mod/setup.php:354
+#: ../../mod/setup.php:357
msgid "Site settings"
msgstr "Ajustes del sitio"
-#: ../../mod/setup.php:368
+#: ../../mod/setup.php:371
msgid "Enable $Projectname <strong>advanced</strong> features?"
msgstr "ĀæHabilitar las funcionalidades <strong>avanzadas</strong> de $Projectname ?"
-#: ../../mod/setup.php:368
+#: ../../mod/setup.php:371
msgid ""
"Some advanced features, while useful - may be best suited for technically "
"proficient audiences"
msgstr "Algunas funcionalidades avanzadas, si bien son Ćŗtiles, pueden ser mĆ”s adecuadas para un pĆŗblico tĆ©cnicamente competente"
-#: ../../mod/setup.php:420
+#: ../../mod/setup.php:423
msgid "Could not find a command line version of PHP in the web server PATH."
msgstr "No se puede encontrar una versiĆ³n en lĆ­nea de comandos de PHP en la ruta del servidor web."
-#: ../../mod/setup.php:421
+#: ../../mod/setup.php:424
msgid ""
"If you don't have a command line version of PHP installed on server, you "
"will not be able to run background polling via cron."
msgstr "Si no tiene instalada la versiĆ³n de lĆ­nea de comandos de PHP en su servidor, no podrĆ” realizar envĆ­os en segundo plano mediante cron."
-#: ../../mod/setup.php:425
+#: ../../mod/setup.php:428
msgid "PHP executable path"
msgstr "Ruta del ejecutable PHP"
-#: ../../mod/setup.php:425
+#: ../../mod/setup.php:428
msgid ""
"Enter full path to php executable. You can leave this blank to continue the "
"installation."
msgstr "Introducir la ruta completa del ejecutable PHP. Puede dejar la lĆ­nea en blanco para continuar la instalaciĆ³n."
-#: ../../mod/setup.php:430
+#: ../../mod/setup.php:433
msgid "Command line PHP"
msgstr "PHP en lĆ­nea de comandos"
-#: ../../mod/setup.php:439
+#: ../../mod/setup.php:442
msgid ""
"The command line version of PHP on your system does not have "
"\"register_argc_argv\" enabled."
msgstr "La lĆ­nea de comandos PHP de su sistema no tiene activado \"register_argc_argv\"."
-#: ../../mod/setup.php:440
+#: ../../mod/setup.php:443
msgid "This is required for message delivery to work."
msgstr "Esto es necesario para que funcione la transmisiĆ³n de mensajes."
-#: ../../mod/setup.php:443
+#: ../../mod/setup.php:446
msgid "PHP register_argc_argv"
msgstr "PHP register_argc_argv"
-#: ../../mod/setup.php:461
+#: ../../mod/setup.php:464
#, php-format
msgid ""
"Your max allowed total upload size is set to %s. Maximum size of one file to"
" upload is set to %s. You are allowed to upload up to %d files at once."
msgstr "La carga mƔxima que se le permite subir estƔ establecida en %s. El tamaƱo mƔximo de un fichero estƔ establecido en %s. EstƔ permitido subir hasta un mƔximo de %d ficheros de una sola vez."
-#: ../../mod/setup.php:466
+#: ../../mod/setup.php:469
msgid "You can adjust these settings in the servers php.ini."
msgstr "Puede ajustar estos valores en el fichero php.ini de su servidor."
-#: ../../mod/setup.php:468
+#: ../../mod/setup.php:471
msgid "PHP upload limits"
msgstr "LĆ­mites PHP de subida"
-#: ../../mod/setup.php:491
+#: ../../mod/setup.php:494
msgid ""
"Error: the \"openssl_pkey_new\" function on this system is not able to "
"generate encryption keys"
msgstr "Error: La funciĆ³n \"openssl_pkey_new\" en este sistema no es capaz de general claves de cifrado."
-#: ../../mod/setup.php:492
+#: ../../mod/setup.php:495
msgid ""
"If running under Windows, please see "
"\"http://www.php.net/manual/en/openssl.installation.php\"."
msgstr "Si estĆ” en un servidor Windows, por favor, lea \"http://www.php.net/manual/en/openssl.installation.php\"."
-#: ../../mod/setup.php:495
+#: ../../mod/setup.php:498
msgid "Generate encryption keys"
msgstr "Generar claves de cifrado"
-#: ../../mod/setup.php:507
+#: ../../mod/setup.php:510
msgid "libCurl PHP module"
msgstr "mĆ³dulo libCurl PHP"
-#: ../../mod/setup.php:508
+#: ../../mod/setup.php:511
msgid "GD graphics PHP module"
msgstr "mĆ³dulo PHP GD graphics"
-#: ../../mod/setup.php:509
+#: ../../mod/setup.php:512
msgid "OpenSSL PHP module"
msgstr "mĆ³dulo PHP OpenSSL"
-#: ../../mod/setup.php:510
+#: ../../mod/setup.php:513
msgid "mysqli or postgres PHP module"
msgstr "mĆ³dulo PHP mysqli o postgres"
-#: ../../mod/setup.php:511
+#: ../../mod/setup.php:514
msgid "mb_string PHP module"
msgstr "mĆ³dulo PHP mb_string"
-#: ../../mod/setup.php:512
+#: ../../mod/setup.php:515
msgid "mcrypt PHP module"
msgstr "mĆ³dulo PHP mcrypt "
-#: ../../mod/setup.php:513
+#: ../../mod/setup.php:516
msgid "xml PHP module"
msgstr "mĆ³dulo PHP xml"
-#: ../../mod/setup.php:517 ../../mod/setup.php:519
+#: ../../mod/setup.php:520 ../../mod/setup.php:522
msgid "Apache mod_rewrite module"
msgstr "mĆ³dulo Apache mod_rewrite "
-#: ../../mod/setup.php:517
+#: ../../mod/setup.php:520
msgid ""
"Error: Apache webserver mod-rewrite module is required but not installed."
msgstr "Error: se necesita el mĆ³dulo del servidor web Apache mod-rewrite pero no estĆ” instalado."
-#: ../../mod/setup.php:523 ../../mod/setup.php:526
+#: ../../mod/setup.php:526 ../../mod/setup.php:529
msgid "proc_open"
msgstr "proc_open"
-#: ../../mod/setup.php:523
+#: ../../mod/setup.php:526
msgid ""
"Error: proc_open is required but is either not installed or has been "
"disabled in php.ini"
msgstr "Error: se necesita proc_open pero o no estĆ” instalado o ha sido desactivado en el fichero php.ini"
-#: ../../mod/setup.php:531
+#: ../../mod/setup.php:534
msgid "Error: libCURL PHP module required but not installed."
msgstr "Error: se necesita el mĆ³dulo PHP libCURL pero no estĆ” instalado."
-#: ../../mod/setup.php:535
+#: ../../mod/setup.php:538
msgid ""
"Error: GD graphics PHP module with JPEG support required but not installed."
msgstr "Error: el mĆ³dulo PHP GD graphics es necesario, pero no estĆ” instalado."
-#: ../../mod/setup.php:539
+#: ../../mod/setup.php:542
msgid "Error: openssl PHP module required but not installed."
msgstr "Error: el mĆ³dulo PHP openssl es necesario, pero no estĆ” instalado."
-#: ../../mod/setup.php:543
+#: ../../mod/setup.php:546
msgid ""
"Error: mysqli or postgres PHP module required but neither are installed."
msgstr "Error: el mĆ³dulo PHP mysqli o postgres es necesario pero ninguno de los dos estĆ” instalado."
-#: ../../mod/setup.php:547
+#: ../../mod/setup.php:550
msgid "Error: mb_string PHP module required but not installed."
msgstr "Error: el mĆ³dulo PHP mb_string es necesario, pero no estĆ” instalado."
-#: ../../mod/setup.php:551
+#: ../../mod/setup.php:554
msgid "Error: mcrypt PHP module required but not installed."
msgstr "Error: el mĆ³dulo PHP mcrypt es necesario, pero no estĆ” instalado."
-#: ../../mod/setup.php:555
+#: ../../mod/setup.php:558
msgid "Error: xml PHP module required for DAV but not installed."
msgstr "Error: el mĆ³dulo PHP xml es necesario para DAV, pero no estĆ” instalado."
-#: ../../mod/setup.php:573
+#: ../../mod/setup.php:576
msgid ""
"The web installer needs to be able to create a file called \".htconfig.php\""
" in the top folder of your web server and it is unable to do so."
msgstr "El instalador web no ha podido crear un fichero llamado ā€œ.htconfig.phpā€ en la carpeta base de su servidor."
-#: ../../mod/setup.php:574
+#: ../../mod/setup.php:577
msgid ""
"This is most often a permission setting, as the web server may not be able "
"to write files in your folder - even if you can."
msgstr "Esto estĆ” generalmente ligado a un problema de permisos, a causa del cual el servidor web tiene prohibido modificar ficheros en su carpeta - incluso si usted mismo tiene esos permisos."
-#: ../../mod/setup.php:575
+#: ../../mod/setup.php:578
msgid ""
"At the end of this procedure, we will give you a text to save in a file "
"named .htconfig.php in your Red top folder."
msgstr "Al tĆ©rmino de este procedimiento, podemos crear un fichero de texto para guardar con el nombre .htconfig.php en el directorio raĆ­z de su instalaciĆ³n de Hubzilla."
-#: ../../mod/setup.php:576
+#: ../../mod/setup.php:579
msgid ""
"You can alternatively skip this procedure and perform a manual installation."
" Please see the file \"install/INSTALL.txt\" for instructions."
msgstr "Como alternativa, puede dejar este procedimiento e intentar realizar una instalaciĆ³n manual. Lea, por favor, el fichero\"install/INSTALL.txt\" para las instrucciones."
-#: ../../mod/setup.php:579
+#: ../../mod/setup.php:582
msgid ".htconfig.php is writable"
msgstr ".htconfig.php tiene permisos de escritura"
-#: ../../mod/setup.php:593
+#: ../../mod/setup.php:596
msgid ""
"Red uses the Smarty3 template engine to render its web views. Smarty3 "
"compiles templates to PHP to speed up rendering."
msgstr "Hubzilla hace uso del motor de plantillas Smarty3 para diseƱar sus plantillas grƔficas. Smarty3 es mƔs rƔpido porque compila las plantillas de pƔginas directamente en PHP."
-#: ../../mod/setup.php:594
+#: ../../mod/setup.php:597
#, php-format
msgid ""
"In order to store these compiled templates, the web server needs to have "
"write access to the directory %s under the Red top level folder."
msgstr "Para poder guardar las plantillas compiladas, el servidor web necesita permisos para acceder al subdirectorio %s en el directorio de instalaciĆ³n de Hubzilla."
-#: ../../mod/setup.php:595 ../../mod/setup.php:616
+#: ../../mod/setup.php:598 ../../mod/setup.php:619
msgid ""
"Please ensure that the user that your web server runs as (e.g. www-data) has"
" write access to this folder."
msgstr "Por favor, asegĆŗrese de que el servidor web estĆ” siendo ejecutado por un usuario que tenga permisos de escritura sobre esta carpeta (por ejemplo, www-data)."
-#: ../../mod/setup.php:596
+#: ../../mod/setup.php:599
#, php-format
msgid ""
"Note: as a security measure, you should give the web server write access to "
"%s only--not the template files (.tpl) that it contains."
msgstr "Nota: como medida de seguridad, debe dar al servidor web permisos de escritura solo sobre %s - no sobre el fichero de plantilla (.tpl) que contiene."
-#: ../../mod/setup.php:599
+#: ../../mod/setup.php:602
#, php-format
msgid "%s is writable"
msgstr "%s tiene permisos de escritura"
-#: ../../mod/setup.php:615
+#: ../../mod/setup.php:618
msgid ""
"Red uses the store directory to save uploaded files. The web server needs to"
" have write access to the store directory under the Red top level folder"
msgstr "Hubzilla guarda los ficheros descargados en la carpeta \"store\". El servidor web necesita tener permisos de escritura sobre esa carpeta, en el directorio de instalaciĆ³n."
-#: ../../mod/setup.php:619
+#: ../../mod/setup.php:622
msgid "store is writable"
msgstr "\"store\" tiene permisos de escritura"
-#: ../../mod/setup.php:652
+#: ../../mod/setup.php:655
msgid ""
"SSL certificate cannot be validated. Fix certificate or disable https access"
" to this site."
msgstr "El certificado SSL no ha podido ser validado. Corrija este problema o desactive el acceso https a este sitio."
-#: ../../mod/setup.php:653
+#: ../../mod/setup.php:656
msgid ""
"If you have https access to your website or allow connections to TCP port "
"443 (the https: port), you MUST use a browser-valid certificate. You MUST "
"NOT use self-signed certificates!"
msgstr "Si su servidor soporta conexiones cifradas SSL o si permite conexiones al puerto TCP 443 (el puerto usado por el protocolo https), debe utilizar un certificado vƔlido. No debe usar un certificado firmado por usted mismo."
-#: ../../mod/setup.php:654
+#: ../../mod/setup.php:657
msgid ""
"This restriction is incorporated because public posts from you may for "
"example contain references to images on your own hub."
msgstr "Se ha incorporado esta restricciĆ³n para evitar que sus publicaciones pĆŗblicas hagan referencia a imĆ”genes en su propio servidor."
-#: ../../mod/setup.php:655
+#: ../../mod/setup.php:658
msgid ""
"If your certificate is not recognized, members of other sites (who may "
"themselves have valid certificates) will get a warning message on their own "
"site complaining about security issues."
msgstr "Si su certificado no ha sido reconocido, los miembros de otros sitios (con certificados vƔlidos) recibirƔn mensajes de aviso en sus propios sitios web."
-#: ../../mod/setup.php:656
+#: ../../mod/setup.php:659
msgid ""
"This can cause usability issues elsewhere (not just on your own site) so we "
"must insist on this requirement."
msgstr "Por razones de compatibilidad (sobre el conjunto de la red, no solo sobre su propio sitio), debemos insistir en estos requisitos."
-#: ../../mod/setup.php:657
+#: ../../mod/setup.php:660
msgid ""
"Providers are available that issue free certificates which are browser-"
"valid."
msgstr "Existen varias Autoridades de CertificaciĆ³n que le pueden proporcionar certificados vĆ”lidos."
-#: ../../mod/setup.php:659
+#: ../../mod/setup.php:662
msgid "SSL certificate validation"
msgstr "validaciĆ³n del certificado SSL"
-#: ../../mod/setup.php:665
+#: ../../mod/setup.php:668
msgid ""
"Url rewrite in .htaccess is not working. Check your server "
"configuration.Test: "
msgstr "No se pueden reescribir las direcciones web en .htaccess. Compruebe la configuraciĆ³n de su servidor:"
-#: ../../mod/setup.php:668
+#: ../../mod/setup.php:671
msgid "Url rewrite is working"
msgstr "La reescritura de las direcciones funciona correctamente"
-#: ../../mod/setup.php:677
+#: ../../mod/setup.php:680
msgid ""
"The database configuration file \".htconfig.php\" could not be written. "
"Please use the enclosed text to create a configuration file in your web "
"server root."
msgstr "El fichero de configuraciĆ³n de la base de datos .htconfig.php no se ha podido modificar. Por favor, copie el texto generado en un fichero con ese nombre en el directorio raĆ­z de su servidor."
-#: ../../mod/setup.php:701
+#: ../../mod/setup.php:704
msgid "Errors encountered creating database tables."
msgstr "Se han encontrado errores al crear las tablas de la base de datos."
-#: ../../mod/setup.php:735
+#: ../../mod/setup.php:738
msgid "<h1>What next</h1>"
msgstr "<h1>Siguiente paso</h1>"
-#: ../../mod/setup.php:736
+#: ../../mod/setup.php:739
msgid ""
"IMPORTANT: You will need to [manually] setup a scheduled task for the "
"poller."
diff --git a/view/es-es/hstrings.php b/view/es-es/hstrings.php
index 865263944..c39a66c2f 100644
--- a/view/es-es/hstrings.php
+++ b/view/es-es/hstrings.php
@@ -65,11 +65,11 @@ $a->strings["Don't show"] = "No mostrar";
$a->strings["Other networks and post services"] = "Otras redes y servicios de publicaciĆ³n";
$a->strings["Permissions"] = "Permisos";
$a->strings["Close"] = "Cerrar";
-$a->strings[" and "] = "y";
-$a->strings["public profile"] = "perfil pĆŗblico";
+$a->strings[" and "] = " y ";
+$a->strings["public profile"] = "el perfil pĆŗblico";
$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s ha cambiado %2\$s a &ldquo;%3\$s&rdquo;";
$a->strings["Visit %1\$s's %2\$s"] = "Visitar %2\$s de %1\$s";
-$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha actualizado %2\$s cambiando %3\$s.";
+$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha actualizado %2\$s, cambiando %3\$s.";
$a->strings["Public Timeline"] = "CronologĆ­a pĆŗblica";
$a->strings["Site Admin"] = "Administrador del sitio";
$a->strings["Bookmarks"] = "Marcadores";
@@ -101,21 +101,6 @@ $a->strings["Profile Photo"] = "Foto del perfil";
$a->strings["Update"] = "Actualizar";
$a->strings["Install"] = "Instalar";
$a->strings["Purchase"] = "Comprar";
-$a->strings["Item was not found."] = "Elemento no encontrado.";
-$a->strings["No source file."] = "NingĆŗn fichero de origen";
-$a->strings["Cannot locate file to replace"] = "No se puede localizar el fichero que va a ser sustituido.";
-$a->strings["Cannot locate file to revise/update"] = "No se puede localizar el fichero para revisar/actualizar";
-$a->strings["File exceeds size limit of %d"] = "El fichero supera el limite de tamaƱo de %d";
-$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Ha alcanzado su lĆ­mite de %1$.0f Mbytes de almacenamiento de adjuntos.";
-$a->strings["File upload failed. Possible system limit or action terminated."] = "Error de carga, posiblemente por limite del sistema o porque la acciĆ³n ha finalizado.";
-$a->strings["Stored file could not be verified. Upload failed."] = "El fichero almacenado no ha podido ser verificado. El envĆ­o ha fallado.";
-$a->strings["Path not available."] = "Ruta no disponible.";
-$a->strings["Empty pathname"] = "Ruta vacĆ­a";
-$a->strings["duplicate filename or path"] = "Nombre duplicado de ruta o fichero";
-$a->strings["Path not found."] = "Ruta no encontrada";
-$a->strings["mkdir failed."] = "mkdir ha fallado.";
-$a->strings["database storage failed."] = "el almacenamiento en la base de datos ha fallado.";
-$a->strings["Empty path"] = "Ruta vacĆ­a";
$a->strings["Logged out."] = "Desconectado/a.";
$a->strings["Failed authentication"] = "AutenticaciĆ³n fallida.";
$a->strings["Login failed."] = "El acceso ha fallado.";
@@ -125,19 +110,6 @@ $a->strings["\$Projectname event notification:"] = "NotificaciĆ³n de eventos de
$a->strings["Starts:"] = "Comienza:";
$a->strings["Finishes:"] = "Finaliza:";
$a->strings["Location:"] = "UbicaciĆ³n:";
-$a->strings["Image/photo"] = "Imagen/foto";
-$a->strings["Encrypted content"] = "Contenido cifrado";
-$a->strings["Install %s element: "] = "Instalar el elemento %s:";
-$a->strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Esta entrada contiene el elemento instalable %s, sin embargo le faltan permisos para instalarlo en este sitio.";
-$a->strings["webpage"] = "pƔgina web";
-$a->strings["layout"] = "disposiciĆ³n";
-$a->strings["block"] = "bloque";
-$a->strings["menu"] = "menĆŗ";
-$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s escribiĆ³ %2\$s siguiente %3\$s";
-$a->strings["post"] = "la entrada";
-$a->strings["Different viewers will see this text differently"] = "Visitantes diferentes verƔn este texto de forma distinta";
-$a->strings["$1 spoiler"] = "$1 spoiler";
-$a->strings["$1 wrote:"] = "$1 escribiĆ³:";
$a->strings["%1\$s's bookmarks"] = "Marcadores de %1\$s";
$a->strings["Missing room name"] = "Sala de chat sin nombre";
$a->strings["Duplicate room name"] = "Nombre de sala duplicado.";
@@ -340,6 +312,19 @@ $a->strings["Title"] = "TĆ­tulo";
$a->strings["Created"] = "Creado";
$a->strings["Edited"] = "Editado";
$a->strings["Profile Photos"] = "Fotos del perfil";
+$a->strings["Image/photo"] = "Imagen/foto";
+$a->strings["Encrypted content"] = "Contenido cifrado";
+$a->strings["Install %s element: "] = "Instalar el elemento %s:";
+$a->strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Esta entrada contiene el elemento instalable %s, sin embargo le faltan permisos para instalarlo en este sitio.";
+$a->strings["webpage"] = "pƔgina web";
+$a->strings["layout"] = "disposiciĆ³n";
+$a->strings["block"] = "bloque";
+$a->strings["menu"] = "menĆŗ";
+$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s escribiĆ³ %2\$s siguiente %3\$s";
+$a->strings["post"] = "la entrada";
+$a->strings["Different viewers will see this text differently"] = "Visitantes diferentes verƔn este texto de forma distinta";
+$a->strings["$1 spoiler"] = "$1 spoiler";
+$a->strings["$1 wrote:"] = "$1 escribiĆ³:";
$a->strings["Male"] = "Hombre";
$a->strings["Female"] = "Mujer";
$a->strings["Currently Male"] = "Actualmente hombre";
@@ -453,6 +438,21 @@ $a->strings["Invalid data packet"] = "Paquete de datos no vƔlido";
$a->strings["Unable to verify channel signature"] = "No ha sido posible de verificar la firma del canal";
$a->strings["Unable to verify site signature for %s"] = "No ha sido posible de verificar la firma del sitio para %s";
$a->strings["invalid target signature"] = "La firma recibida no es vƔlida";
+$a->strings["Item was not found."] = "Elemento no encontrado.";
+$a->strings["No source file."] = "NingĆŗn fichero de origen";
+$a->strings["Cannot locate file to replace"] = "No se puede localizar el fichero que va a ser sustituido.";
+$a->strings["Cannot locate file to revise/update"] = "No se puede localizar el fichero para revisar/actualizar";
+$a->strings["File exceeds size limit of %d"] = "El fichero supera el limite de tamaƱo de %d";
+$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Ha alcanzado su lĆ­mite de %1$.0f Mbytes de almacenamiento de adjuntos.";
+$a->strings["File upload failed. Possible system limit or action terminated."] = "Error de carga, posiblemente por limite del sistema o porque la acciĆ³n ha finalizado.";
+$a->strings["Stored file could not be verified. Upload failed."] = "El fichero almacenado no ha podido ser verificado. El envĆ­o ha fallado.";
+$a->strings["Path not available."] = "Ruta no disponible.";
+$a->strings["Empty pathname"] = "Ruta vacĆ­a";
+$a->strings["duplicate filename or path"] = "Nombre duplicado de ruta o fichero";
+$a->strings["Path not found."] = "Ruta no encontrada";
+$a->strings["mkdir failed."] = "mkdir ha fallado.";
+$a->strings["database storage failed."] = "el almacenamiento en la base de datos ha fallado.";
+$a->strings["Empty path"] = "Ruta vacĆ­a";
$a->strings["Frequently"] = "Frecuentemente";
$a->strings["Hourly"] = "Cada hora";
$a->strings["Twice daily"] = "Dos veces al dĆ­a";
@@ -502,13 +502,13 @@ $a->strings["Navigation Channel Select"] = "NavegaciĆ³n por el selector de canal
$a->strings["Change channels directly from within the navigation dropdown menu"] = "Cambiar de canales directamente desde el menĆŗ de navegaciĆ³n desplegable";
$a->strings["Photo Location"] = "UbicaciĆ³n de las fotos";
$a->strings["If location data is available on uploaded photos, link this to a map."] = "Si los datos de ubicaciĆ³n estĆ”n disponibles en las fotos subidas, enlazar estas a un mapa.";
+$a->strings["Smart Birthdays"] = "CumpleaƱos inteligentes";
+$a->strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = "Enlazar los eventos de cumpleaƱos con la zona horaria en el caso de que sus amigos estƩn dispersos por el mundo.";
$a->strings["Expert Mode"] = "Modo de experto";
$a->strings["Enable Expert Mode to provide advanced configuration options"] = "Habilitar el modo de experto para acceder a opciones avanzadas de configuraciĆ³n";
$a->strings["Premium Channel"] = "Canal premium";
$a->strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Le permite configurar restricciones y normas de uso a aquellos que conectan con su canal";
$a->strings["Post Composition Features"] = "Opciones para la redacciĆ³n de entradas";
-$a->strings["Use Markdown"] = "Usar Markdown";
-$a->strings["Allow use of \"Markdown\" to format posts"] = "Permitir el uso de \"Markdown\" para formatear publicaciones";
$a->strings["Large Photos"] = "Fotos de gran tamaƱo";
$a->strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Incluir miniaturas de fotos grandes (1024px) en publicaciones. Si no estƔ habilitado, usar miniaturas pequeƱas (640px)";
$a->strings["Channel Sources"] = "OrĆ­genes de los contenidos del canal";
@@ -618,7 +618,7 @@ $a->strings["Security"] = "Seguridad";
$a->strings["Plugins"] = "Extensiones";
$a->strings["Themes"] = "Temas";
$a->strings["Inspect queue"] = "Examinar la cola";
-$a->strings["Profile Config"] = "Ajustes del perfil";
+$a->strings["Profile Fields"] = "Campos del perfil";
$a->strings["DB updates"] = "Actualizaciones de la base de datos";
$a->strings["Logs"] = "Informes";
$a->strings["Plugin Features"] = "Extensiones";
@@ -742,11 +742,9 @@ $a->strings["Default Profile"] = "Perfil principal";
$a->strings["Requested channel is not available."] = "El canal solicitado no estĆ” disponible.";
$a->strings["Requested profile is not available."] = "El perfil solicitado no estĆ” disponible.";
$a->strings["Change profile photo"] = "Cambiar la foto del perfil";
-$a->strings["Profiles"] = "Perfiles";
-$a->strings["Manage/edit profiles"] = "Administrar/editar perfiles";
$a->strings["Create New Profile"] = "Crear un nuevo perfil";
$a->strings["Profile Image"] = "Imagen del perfil";
-$a->strings["visible to everybody"] = "visible para cualquiera";
+$a->strings["Visible to everybody"] = "Visible para todos";
$a->strings["Edit visibility"] = "Editar visibilidad";
$a->strings["Gender:"] = "GĆ©nero:";
$a->strings["Status:"] = "Estado:";
@@ -1756,6 +1754,12 @@ $a->strings["Help text"] = "Texto de ayuda";
$a->strings["Additional info (optional)"] = "InformaciĆ³n adicional (opcional)";
$a->strings["Field definition not found"] = "DefiniciĆ³n del campo no encontrada";
$a->strings["Edit Profile Field"] = "Modificar el campo del perfil";
+$a->strings["Basic Profile Fields"] = "Campos bƔsicos del perfil";
+$a->strings["Advanced Profile Fields"] = "Campos avanzados del perfil";
+$a->strings["(In addition to basic fields)"] = "(AdemƔs de los campos bƔsicos)";
+$a->strings["All available fields"] = "Todos los campos disponibles";
+$a->strings["Custom Fields"] = "Campos personalizados";
+$a->strings["Create Custom Field"] = "Crear un campo personalizado";
$a->strings["Poke somebody"] = "Dar un toque a alguien";
$a->strings["Poke/Prod"] = "Toque/IncitaciĆ³n";
$a->strings["Poke, prod or do other things to somebody"] = "Dar un toque, incitar o hacer otras cosas a alguien";
@@ -1938,7 +1942,7 @@ $a->strings["Account Settings"] = "ConfiguraciĆ³n de la cuenta";
$a->strings["Current Password"] = "ContraseƱa actual";
$a->strings["Enter New Password"] = "Escribir una nueva contraseƱa";
$a->strings["Confirm New Password"] = "Confirmar la nueva contraseƱa";
-$a->strings["Leave password fields blank unless changing"] = "Dejar en blanco los campos de contraseƱa a menos que cambie";
+$a->strings["Leave password fields blank unless changing"] = "Dejar en blanco la contraseƱa a menos que desee cambiarla.";
$a->strings["Email Address:"] = "DirecciĆ³n de correo electrĆ³nico:";
$a->strings["Remove this account including all its channels"] = "Eliminar esta cuenta incluyendo todos sus canales";
$a->strings["Additional Features"] = "Funcionalidades";
diff --git a/view/it/hmessages.po b/view/it/hmessages.po
index 07adc96d9..eacb53e6e 100644
--- a/view/it/hmessages.po
+++ b/view/it/hmessages.po
@@ -3,15 +3,15 @@
# This file is distributed under the same license as the Red package.
#
# Translators:
-# Davide Pesenti <mrjive@mrjive.it>, 2015
+# Davide Pesenti <mrjive@mrjive.it>, 2015-2016
# Paolo Wave <pynolo@tarine.net>, 2015-2016
# Paolo Wave <pynolo@tarine.net>, 2015
msgid ""
msgstr ""
"Project-Id-Version: Redmatrix\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-02-19 19:12-0800\n"
-"PO-Revision-Date: 2016-02-23 10:50+0000\n"
+"POT-Creation-Date: 2016-03-04 00:03-0800\n"
+"PO-Revision-Date: 2016-03-08 14:43+0000\n"
"Last-Translator: Paolo Wave <pynolo@tarine.net>\n"
"Language-Team: Italian (http://www.transifex.com/Friendica/red-matrix/language/it/)\n"
"MIME-Version: 1.0\n"
@@ -61,14 +61,14 @@ msgid "Schedule Outbox"
msgstr "Appuntamenti inviati"
#: ../../Zotlabs/Storage/Browser.php:164 ../../include/apps.php:360
-#: ../../include/apps.php:415 ../../include/conversation.php:1037
-#: ../../include/widgets.php:1410 ../../mod/photos.php:766
+#: ../../include/apps.php:415 ../../include/widgets.php:1430
+#: ../../include/conversation.php:1037 ../../mod/photos.php:766
#: ../../mod/photos.php:1209
msgid "Unknown"
msgstr "Sconosciuto"
#: ../../Zotlabs/Storage/Browser.php:226 ../../include/apps.php:135
-#: ../../include/conversation.php:1639 ../../include/nav.php:93
+#: ../../include/nav.php:93 ../../include/conversation.php:1648
#: ../../mod/fbrowser.php:109
msgid "Files"
msgstr "Archivio file"
@@ -83,21 +83,20 @@ msgstr "Condiviso"
#: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:303
#: ../../mod/blocks.php:152 ../../mod/layouts.php:175 ../../mod/menu.php:114
-#: ../../mod/new_channel.php:146 ../../mod/register.php:257
-#: ../../mod/webpages.php:180
+#: ../../mod/new_channel.php:138 ../../mod/webpages.php:182
msgid "Create"
msgstr "Crea"
#: ../../Zotlabs/Storage/Browser.php:231 ../../Zotlabs/Storage/Browser.php:305
-#: ../../include/widgets.php:1423 ../../mod/photos.php:793
+#: ../../include/widgets.php:1443 ../../mod/photos.php:793
#: ../../mod/photos.php:1333 ../../mod/profile_photo.php:401
#: ../../mod/cover_photo.php:353
msgid "Upload"
msgstr "Carica"
#: ../../Zotlabs/Storage/Browser.php:235 ../../mod/admin.php:1158
-#: ../../mod/register.php:247 ../../mod/settings.php:599
-#: ../../mod/settings.php:625 ../../mod/sharedwithme.php:95
+#: ../../mod/settings.php:599 ../../mod/settings.php:625
+#: ../../mod/sharedwithme.php:95
msgid "Name"
msgstr "Nome"
@@ -115,25 +114,27 @@ msgid "Last Modified"
msgstr "Ultima modifica"
#: ../../Zotlabs/Storage/Browser.php:240 ../../include/apps.php:259
-#: ../../include/menu.php:108 ../../include/page_widgets.php:8
-#: ../../include/page_widgets.php:36 ../../include/ItemObject.php:100
+#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36
+#: ../../include/menu.php:108 ../../include/identity.php:924
+#: ../../include/identity.php:928 ../../include/ItemObject.php:100
#: ../../mod/blocks.php:153 ../../mod/connections.php:286
#: ../../mod/connections.php:306 ../../mod/editblock.php:135
#: ../../mod/editlayout.php:134 ../../mod/editpost.php:112
#: ../../mod/editwebpage.php:176 ../../mod/layouts.php:183
-#: ../../mod/menu.php:108 ../../mod/settings.php:659 ../../mod/thing.php:256
-#: ../../mod/webpages.php:181
+#: ../../mod/menu.php:108 ../../mod/admin.php:1767 ../../mod/settings.php:659
+#: ../../mod/thing.php:256 ../../mod/webpages.php:183
msgid "Edit"
msgstr "Modifica"
#: ../../Zotlabs/Storage/Browser.php:241 ../../include/apps.php:260
#: ../../include/conversation.php:657 ../../include/ItemObject.php:120
#: ../../mod/blocks.php:155 ../../mod/connections.php:259
-#: ../../mod/connedit.php:562 ../../mod/editblock.php:181
+#: ../../mod/connedit.php:569 ../../mod/editblock.php:181
#: ../../mod/editlayout.php:179 ../../mod/editwebpage.php:223
#: ../../mod/group.php:173 ../../mod/photos.php:1140 ../../mod/admin.php:993
-#: ../../mod/admin.php:1152 ../../mod/settings.php:660 ../../mod/thing.php:257
-#: ../../mod/webpages.php:183
+#: ../../mod/admin.php:1152 ../../mod/admin.php:1768
+#: ../../mod/settings.php:660 ../../mod/thing.php:257
+#: ../../mod/webpages.php:185
msgid "Delete"
msgstr "Elimina"
@@ -159,22 +160,22 @@ msgstr "Nuova cartella"
msgid "Upload file"
msgstr "Carica un file"
-#: ../../Zotlabs/Web/Router.php:45 ../../include/attach.php:140
-#: ../../include/attach.php:188 ../../include/attach.php:251
-#: ../../include/attach.php:265 ../../include/attach.php:272
-#: ../../include/attach.php:337 ../../include/attach.php:351
-#: ../../include/attach.php:358 ../../include/attach.php:436
-#: ../../include/attach.php:888 ../../include/attach.php:959
-#: ../../include/attach.php:1111 ../../include/chat.php:133
-#: ../../include/photos.php:29 ../../include/items.php:4512
-#: ../../index.php:194 ../../mod/achievements.php:30 ../../mod/api.php:26
+#: ../../Zotlabs/Web/Router.php:45 ../../include/chat.php:133
+#: ../../include/attach.php:141 ../../include/attach.php:189
+#: ../../include/attach.php:252 ../../include/attach.php:266
+#: ../../include/attach.php:273 ../../include/attach.php:338
+#: ../../include/attach.php:352 ../../include/attach.php:359
+#: ../../include/attach.php:437 ../../include/attach.php:889
+#: ../../include/attach.php:960 ../../include/attach.php:1112
+#: ../../include/photos.php:29 ../../include/items.php:4575
+#: ../../index.php:180 ../../mod/achievements.php:30 ../../mod/api.php:26
#: ../../mod/api.php:31 ../../mod/appman.php:66 ../../mod/authtest.php:13
#: ../../mod/block.php:22 ../../mod/block.php:72 ../../mod/blocks.php:69
#: ../../mod/blocks.php:76 ../../mod/bookmarks.php:48
#: ../../mod/channel.php:100 ../../mod/channel.php:217
#: ../../mod/channel.php:257 ../../mod/chat.php:94 ../../mod/chat.php:99
#: ../../mod/common.php:35 ../../mod/connections.php:29
-#: ../../mod/connedit.php:355 ../../mod/editblock.php:65
+#: ../../mod/connedit.php:362 ../../mod/editblock.php:65
#: ../../mod/editlayout.php:63 ../../mod/editlayout.php:87
#: ../../mod/editpost.php:13 ../../mod/editwebpage.php:64
#: ../../mod/editwebpage.php:86 ../../mod/editwebpage.php:101
@@ -183,12 +184,12 @@ msgstr "Carica un file"
#: ../../mod/filestorage.php:88 ../../mod/filestorage.php:115
#: ../../mod/fsuggest.php:78 ../../mod/group.php:9 ../../mod/id.php:71
#: ../../mod/invite.php:13 ../../mod/invite.php:87 ../../mod/item.php:206
-#: ../../mod/item.php:214 ../../mod/item.php:1056 ../../mod/layouts.php:69
+#: ../../mod/item.php:214 ../../mod/item.php:1069 ../../mod/layouts.php:69
#: ../../mod/layouts.php:76 ../../mod/layouts.php:87 ../../mod/like.php:177
#: ../../mod/locs.php:83 ../../mod/mail.php:126 ../../mod/manage.php:6
#: ../../mod/menu.php:74 ../../mod/message.php:16 ../../mod/mitem.php:111
#: ../../mod/mood.php:112 ../../mod/network.php:12
-#: ../../mod/new_channel.php:75 ../../mod/new_channel.php:108
+#: ../../mod/new_channel.php:73 ../../mod/new_channel.php:100
#: ../../mod/notifications.php:66 ../../mod/page.php:31 ../../mod/page.php:86
#: ../../mod/pdledit.php:22 ../../mod/photos.php:70 ../../mod/poke.php:133
#: ../../mod/profile.php:64 ../../mod/profile.php:72
@@ -196,7 +197,7 @@ msgstr "Carica un file"
#: ../../mod/profiles.php:198 ../../mod/profiles.php:584
#: ../../mod/rate.php:111 ../../mod/register.php:73 ../../mod/regmod.php:17
#: ../../mod/service_limits.php:7 ../../mod/settings.php:579
-#: ../../mod/setup.php:230 ../../mod/sharedwithme.php:7
+#: ../../mod/setup.php:233 ../../mod/sharedwithme.php:7
#: ../../mod/sources.php:66 ../../mod/suggest.php:26 ../../mod/thing.php:270
#: ../../mod/thing.php:290 ../../mod/thing.php:327
#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27
@@ -214,9 +215,9 @@ msgstr "Non disponibile"
msgid "Page not found."
msgstr "Pagina non trovata."
-#: ../../include/Contact.php:101 ../../include/conversation.php:961
-#: ../../include/widgets.php:147 ../../include/widgets.php:185
-#: ../../include/identity.php:954 ../../mod/directory.php:321
+#: ../../include/Contact.php:101 ../../include/widgets.php:147
+#: ../../include/widgets.php:185 ../../include/identity.php:1003
+#: ../../include/conversation.php:961 ../../mod/directory.php:321
#: ../../mod/match.php:64 ../../mod/suggest.php:52
msgid "Connect"
msgstr "Aggiungi"
@@ -242,7 +243,7 @@ msgstr "Impossibile trovare il nome utente nel file da importare."
msgid "Unable to create a unique channel address. Import failed."
msgstr "Impossibile creare un indirizzo univoco per il canale. L'import ĆØ fallito."
-#: ../../include/Import/import_diaspora.php:143 ../../mod/import.php:496
+#: ../../include/Import/import_diaspora.php:143 ../../mod/import.php:511
msgid "Import completed."
msgstr "L'importazione ĆØ terminata con successo."
@@ -381,8 +382,8 @@ msgstr "Diario pubblico"
msgid "Site Admin"
msgstr "Amministrazione sito"
-#: ../../include/apps.php:129 ../../include/conversation.php:1665
-#: ../../include/nav.php:104
+#: ../../include/apps.php:129 ../../include/nav.php:104
+#: ../../include/conversation.php:1685
msgid "Bookmarks"
msgstr "Segnalibri"
@@ -390,7 +391,7 @@ msgstr "Segnalibri"
msgid "Address Book"
msgstr "Rubrica"
-#: ../../include/apps.php:131 ../../include/nav.php:112 ../../boot.php:1544
+#: ../../include/apps.php:131 ../../include/nav.php:112 ../../boot.php:1543
msgid "Login"
msgstr "Accedi"
@@ -409,8 +410,8 @@ msgstr "Rete"
msgid "Settings"
msgstr "Impostazioni"
-#: ../../include/apps.php:136 ../../include/conversation.php:1675
-#: ../../include/nav.php:108 ../../mod/webpages.php:178
+#: ../../include/apps.php:136 ../../include/nav.php:108
+#: ../../include/conversation.php:1695 ../../mod/webpages.php:180
msgid "Webpages"
msgstr "Pagine web"
@@ -418,17 +419,18 @@ msgstr "Pagine web"
msgid "Channel Home"
msgstr "Bacheca del canale"
-#: ../../include/apps.php:138 ../../include/identity.php:1242
-#: ../../include/identity.php:1359 ../../mod/profperm.php:112
+#: ../../include/apps.php:138 ../../include/identity.php:1387
+#: ../../mod/profperm.php:112
msgid "Profile"
msgstr "Profilo"
-#: ../../include/apps.php:139 ../../include/conversation.php:1632
-#: ../../include/nav.php:92 ../../mod/fbrowser.php:25
+#: ../../include/apps.php:139 ../../include/nav.php:92
+#: ../../include/conversation.php:1641 ../../mod/fbrowser.php:25
msgid "Photos"
msgstr "Foto"
#: ../../include/apps.php:140 ../../include/nav.php:198
+#: ../../include/conversation.php:1658 ../../include/conversation.php:1661
msgid "Events"
msgstr "Eventi"
@@ -480,7 +482,7 @@ msgstr "Canale casuale"
msgid "Invite"
msgstr "Invita"
-#: ../../include/apps.php:152 ../../include/widgets.php:1296
+#: ../../include/apps.php:152 ../../include/widgets.php:1316
msgid "Features"
msgstr "FunzionalitĆ "
@@ -510,68 +512,6 @@ msgstr "Installa"
msgid "Purchase"
msgstr "Acquista"
-#: ../../include/attach.php:246 ../../include/attach.php:332
-msgid "Item was not found."
-msgstr "Elemento non trovato."
-
-#: ../../include/attach.php:496
-msgid "No source file."
-msgstr "Nessun file di origine."
-
-#: ../../include/attach.php:518
-msgid "Cannot locate file to replace"
-msgstr "Il file da sostituire non ĆØ stato trovato"
-
-#: ../../include/attach.php:536
-msgid "Cannot locate file to revise/update"
-msgstr "Il file da aggiornare non ĆØ stato trovato"
-
-#: ../../include/attach.php:671
-#, php-format
-msgid "File exceeds size limit of %d"
-msgstr "Il file supera la dimensione massima di %d"
-
-#: ../../include/attach.php:685
-#, php-format
-msgid "You have reached your limit of %1$.0f Mbytes attachment storage."
-msgstr "Hai raggiunto il limite complessivo di %1$.0f Mbytes per gli allegati."
-
-#: ../../include/attach.php:841
-msgid "File upload failed. Possible system limit or action terminated."
-msgstr "Caricamento file fallito, potrebbe essere stato interrotto o potrebbe aver superato lo spazio assegnato."
-
-#: ../../include/attach.php:854
-msgid "Stored file could not be verified. Upload failed."
-msgstr "Il file non puĆ² essere verificato. Caricamento fallito."
-
-#: ../../include/attach.php:902 ../../include/attach.php:918
-msgid "Path not available."
-msgstr "Percorso non disponibile."
-
-#: ../../include/attach.php:964 ../../include/attach.php:1116
-msgid "Empty pathname"
-msgstr "Il percorso del file ĆØ vuoto"
-
-#: ../../include/attach.php:990
-msgid "duplicate filename or path"
-msgstr "il file o il percorso del file ĆØ duplicato"
-
-#: ../../include/attach.php:1012
-msgid "Path not found."
-msgstr "Percorso del file non trovato."
-
-#: ../../include/attach.php:1070
-msgid "mkdir failed."
-msgstr "mkdir fallito."
-
-#: ../../include/attach.php:1074
-msgid "database storage failed."
-msgstr "scrittura su database fallita."
-
-#: ../../include/attach.php:1122
-msgid "Empty path"
-msgstr "La posizione ĆØ vuota"
-
#: ../../include/auth.php:132
msgid "Logged out."
msgstr "Uscita effettuata."
@@ -608,74 +548,11 @@ msgid "Finishes:"
msgstr "Fine:"
#: ../../include/bb2diaspora.php:487 ../../include/event.php:52
-#: ../../include/text.php:1433 ../../include/identity.php:1005
+#: ../../include/text.php:1433 ../../include/identity.php:1018
#: ../../mod/directory.php:307
msgid "Location:"
msgstr "Luogo:"
-#: ../../include/bbcode.php:123 ../../include/bbcode.php:794
-#: ../../include/bbcode.php:797 ../../include/bbcode.php:802
-#: ../../include/bbcode.php:805 ../../include/bbcode.php:808
-#: ../../include/bbcode.php:811 ../../include/bbcode.php:816
-#: ../../include/bbcode.php:819 ../../include/bbcode.php:824
-#: ../../include/bbcode.php:827 ../../include/bbcode.php:830
-#: ../../include/bbcode.php:833
-msgid "Image/photo"
-msgstr "Immagine"
-
-#: ../../include/bbcode.php:162 ../../include/bbcode.php:844
-msgid "Encrypted content"
-msgstr "Contenuto cifrato"
-
-#: ../../include/bbcode.php:179
-#, php-format
-msgid "Install %s element: "
-msgstr "Installa l'elemento %s:"
-
-#: ../../include/bbcode.php:183
-#, php-format
-msgid ""
-"This post contains an installable %s element, however you lack permissions "
-"to install it on this site."
-msgstr "Questo post contiene un elemento %s installabile, tuttavia non hai i permessi necessari per l'installazione."
-
-#: ../../include/bbcode.php:193 ../../mod/impel.php:37
-msgid "webpage"
-msgstr "pagina web"
-
-#: ../../include/bbcode.php:196 ../../mod/impel.php:47
-msgid "layout"
-msgstr "layout"
-
-#: ../../include/bbcode.php:199 ../../mod/impel.php:42
-msgid "block"
-msgstr "block"
-
-#: ../../include/bbcode.php:202 ../../mod/impel.php:54
-msgid "menu"
-msgstr "menu"
-
-#: ../../include/bbcode.php:257
-#, php-format
-msgid "%1$s wrote the following %2$s %3$s"
-msgstr "%1$s ha scritto %2$s %3$s"
-
-#: ../../include/bbcode.php:259 ../../mod/tagger.php:51
-msgid "post"
-msgstr "il post"
-
-#: ../../include/bbcode.php:547
-msgid "Different viewers will see this text differently"
-msgstr "Ad altri questo testo potrebbe apparire in modo differente"
-
-#: ../../include/bbcode.php:755
-msgid "$1 spoiler"
-msgstr "$1 spoiler"
-
-#: ../../include/bbcode.php:782
-msgid "$1 wrote:"
-msgstr "$1 ha scritto:"
-
#: ../../include/bookmarks.php:35
#, php-format
msgid "%1$s's bookmarks"
@@ -754,7 +631,7 @@ msgstr "Invita amici"
msgid "Advanced example: name=fred and country=iceland"
msgstr "Per esempio: name=mario e country=italy"
-#: ../../include/contact_widgets.php:57 ../../include/features.php:96
+#: ../../include/contact_widgets.php:57 ../../include/features.php:97
#: ../../include/widgets.php:314
msgid "Saved Folders"
msgstr "Cartelle salvate"
@@ -780,706 +657,6 @@ msgstr[1] "%d contatti in comune"
msgid "show more"
msgstr "mostra tutto"
-#: ../../include/conversation.php:120 ../../include/text.php:1948
-#: ../../mod/like.php:361 ../../mod/subthread.php:83 ../../mod/tagger.php:43
-msgid "photo"
-msgstr "la foto"
-
-#: ../../include/conversation.php:123 ../../include/event.php:904
-#: ../../include/text.php:1951 ../../mod/events.php:249 ../../mod/like.php:363
-#: ../../mod/tagger.php:47
-msgid "event"
-msgstr "l'evento"
-
-#: ../../include/conversation.php:126 ../../mod/like.php:113
-msgid "channel"
-msgstr "il canale"
-
-#: ../../include/conversation.php:148 ../../include/text.php:1954
-#: ../../mod/like.php:361 ../../mod/subthread.php:83
-msgid "status"
-msgstr "il messaggio di stato"
-
-#: ../../include/conversation.php:150 ../../include/text.php:1956
-#: ../../mod/tagger.php:53
-msgid "comment"
-msgstr "il commento"
-
-#: ../../include/conversation.php:164 ../../mod/like.php:410
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "A %1$s piace %3$s di %2$s"
-
-#: ../../include/conversation.php:167 ../../mod/like.php:412
-#, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
-msgstr "A %1$s non piace %3$s di %2$s"
-
-#: ../../include/conversation.php:204
-#, php-format
-msgid "%1$s is now connected with %2$s"
-msgstr "%1$s adesso ĆØ connesso con %2$s"
-
-#: ../../include/conversation.php:239
-#, php-format
-msgid "%1$s poked %2$s"
-msgstr "%1$s ha mandato un poke a %2$s"
-
-#: ../../include/conversation.php:243 ../../include/text.php:973
-#: ../../include/text.php:978
-msgid "poked"
-msgstr "ha ricevuto un poke"
-
-#: ../../include/conversation.php:260 ../../mod/mood.php:63
-#, php-format
-msgctxt "mood"
-msgid "%1$s is %2$s"
-msgstr "%1$s ĆØ %2$s"
-
-#: ../../include/conversation.php:574 ../../mod/photos.php:1074
-msgctxt "title"
-msgid "Likes"
-msgstr "Mi piace"
-
-#: ../../include/conversation.php:574 ../../mod/photos.php:1074
-msgctxt "title"
-msgid "Dislikes"
-msgstr "Non mi piace"
-
-#: ../../include/conversation.php:575 ../../mod/photos.php:1075
-msgctxt "title"
-msgid "Agree"
-msgstr "D'accordo"
-
-#: ../../include/conversation.php:575 ../../mod/photos.php:1075
-msgctxt "title"
-msgid "Disagree"
-msgstr "Non d'accordo"
-
-#: ../../include/conversation.php:575 ../../mod/photos.php:1075
-msgctxt "title"
-msgid "Abstain"
-msgstr "Astenuti"
-
-#: ../../include/conversation.php:576 ../../mod/photos.php:1076
-msgctxt "title"
-msgid "Attending"
-msgstr "Partecipano"
-
-#: ../../include/conversation.php:576 ../../mod/photos.php:1076
-msgctxt "title"
-msgid "Not attending"
-msgstr "Non partecipano"
-
-#: ../../include/conversation.php:576 ../../mod/photos.php:1076
-msgctxt "title"
-msgid "Might attend"
-msgstr "Forse partecipano"
-
-#: ../../include/conversation.php:656 ../../include/ItemObject.php:126
-msgid "Select"
-msgstr "Scegli"
-
-#: ../../include/conversation.php:664 ../../include/ItemObject.php:89
-msgid "Private Message"
-msgstr "Messaggio privato"
-
-#: ../../include/conversation.php:671 ../../include/ItemObject.php:227
-msgid "Message signature validated"
-msgstr "Messaggio con firma verificata"
-
-#: ../../include/conversation.php:672 ../../include/ItemObject.php:228
-msgid "Message signature incorrect"
-msgstr "Massaggio con firma non corretta"
-
-#: ../../include/conversation.php:691
-#, php-format
-msgid "View %s's profile @ %s"
-msgstr "Vedi il profilo di %s @ %s"
-
-#: ../../include/conversation.php:710
-msgid "Categories:"
-msgstr "Categorie:"
-
-#: ../../include/conversation.php:711
-msgid "Filed under:"
-msgstr "Classificato come:"
-
-#: ../../include/conversation.php:719 ../../include/ItemObject.php:334
-#, php-format
-msgid "from %s"
-msgstr "da %s"
-
-#: ../../include/conversation.php:722 ../../include/ItemObject.php:337
-#, php-format
-msgid "last edited: %s"
-msgstr "ultima modifica: %s"
-
-#: ../../include/conversation.php:723 ../../include/ItemObject.php:338
-#, php-format
-msgid "Expires: %s"
-msgstr "Scadenza: %s"
-
-#: ../../include/conversation.php:738
-msgid "View in context"
-msgstr "Vedi nel contesto"
-
-#: ../../include/conversation.php:740 ../../include/conversation.php:1237
-#: ../../include/ItemObject.php:389 ../../mod/editblock.php:150
-#: ../../mod/editlayout.php:148 ../../mod/editpost.php:129
-#: ../../mod/editwebpage.php:190 ../../mod/photos.php:1040
-msgid "Please wait"
-msgstr "Attendere"
-
-#: ../../include/conversation.php:850
-msgid "remove"
-msgstr "rimuovi"
-
-#: ../../include/conversation.php:854 ../../include/nav.php:244
-msgid "Loading..."
-msgstr "Caricamento in corso..."
-
-#: ../../include/conversation.php:855
-msgid "Delete Selected Items"
-msgstr "Elimina gli oggetti selezionati"
-
-#: ../../include/conversation.php:953
-msgid "View Source"
-msgstr "Vedi il sorgente"
-
-#: ../../include/conversation.php:954
-msgid "Follow Thread"
-msgstr "Segui la discussione"
-
-#: ../../include/conversation.php:955
-msgid "Unfollow Thread"
-msgstr "Non seguire la discussione"
-
-#: ../../include/conversation.php:959 ../../include/nav.php:86
-#: ../../mod/connedit.php:509
-msgid "View Profile"
-msgstr "Profilo"
-
-#: ../../include/conversation.php:960
-msgid "Activity/Posts"
-msgstr "AttivitĆ  e Post"
-
-#: ../../include/conversation.php:962
-msgid "Edit Connection"
-msgstr "Modifica il contatto"
-
-#: ../../include/conversation.php:963
-msgid "Message"
-msgstr "Messaggio"
-
-#: ../../include/conversation.php:964 ../../mod/ratings.php:99
-msgid "Ratings"
-msgstr "Valutazioni"
-
-#: ../../include/conversation.php:1080
-#, php-format
-msgid "%s likes this."
-msgstr "Piace a %s."
-
-#: ../../include/conversation.php:1080
-#, php-format
-msgid "%s doesn't like this."
-msgstr "Non piace a %s."
-
-#: ../../include/conversation.php:1084
-#, 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] ""
-msgstr[1] "Piace a <span %1$s>%2$d persone</span>."
-
-#: ../../include/conversation.php:1086
-#, 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] ""
-msgstr[1] "Non piace a <span %1$s>%2$d persone</span>."
-
-#: ../../include/conversation.php:1092
-msgid "and"
-msgstr "e"
-
-#: ../../include/conversation.php:1095
-#, php-format
-msgid ", and %d other people"
-msgid_plural ", and %d other people"
-msgstr[0] ""
-msgstr[1] "e altre %d persone"
-
-#: ../../include/conversation.php:1096
-#, php-format
-msgid "%s like this."
-msgstr "Piace a %s."
-
-#: ../../include/conversation.php:1096
-#, php-format
-msgid "%s don't like this."
-msgstr "Non piace a %s."
-
-#: ../../include/conversation.php:1164
-msgid "Visible to <strong>everybody</strong>"
-msgstr "Visibile a <strong>tutti</strong>"
-
-#: ../../include/conversation.php:1165 ../../mod/mail.php:202
-#: ../../mod/mail.php:316
-msgid "Please enter a link URL:"
-msgstr "Inserisci l'indirizzo del link:"
-
-#: ../../include/conversation.php:1166
-msgid "Please enter a video link/URL:"
-msgstr "Inserisci l'indirizzo del video:"
-
-#: ../../include/conversation.php:1167
-msgid "Please enter an audio link/URL:"
-msgstr "Inserisci l'indirizzo dell'audio:"
-
-#: ../../include/conversation.php:1168
-msgid "Tag term:"
-msgstr "Tag:"
-
-#: ../../include/conversation.php:1169 ../../mod/filer.php:48
-msgid "Save to Folder:"
-msgstr "Salva nella cartella:"
-
-#: ../../include/conversation.php:1170
-msgid "Where are you right now?"
-msgstr "Dove sei ora?"
-
-#: ../../include/conversation.php:1171 ../../mod/editpost.php:56
-#: ../../mod/mail.php:203 ../../mod/mail.php:317
-msgid "Expires YYYY-MM-DD HH:MM"
-msgstr "Scade il YYYY-MM-DD HH:MM"
-
-#: ../../include/conversation.php:1179 ../../include/page_widgets.php:40
-#: ../../include/ItemObject.php:712 ../../mod/editblock.php:171
-#: ../../mod/editpost.php:149 ../../mod/editwebpage.php:212
-#: ../../mod/events.php:458 ../../mod/photos.php:1060
-#: ../../mod/webpages.php:188
-msgid "Preview"
-msgstr "Anteprima"
-
-#: ../../include/conversation.php:1202 ../../mod/blocks.php:154
-#: ../../mod/layouts.php:184 ../../mod/photos.php:1039
-#: ../../mod/webpages.php:182
-msgid "Share"
-msgstr "Condividi"
-
-#: ../../include/conversation.php:1204
-msgid "Page link name"
-msgstr "Nome del link alla pagina"
-
-#: ../../include/conversation.php:1207
-msgid "Post as"
-msgstr "Pubblica come "
-
-#: ../../include/conversation.php:1209 ../../include/ItemObject.php:704
-#: ../../mod/editblock.php:136 ../../mod/editlayout.php:135
-#: ../../mod/editpost.php:113 ../../mod/editwebpage.php:177
-msgid "Bold"
-msgstr "Grassetto"
-
-#: ../../include/conversation.php:1210 ../../include/ItemObject.php:705
-#: ../../mod/editblock.php:137 ../../mod/editlayout.php:136
-#: ../../mod/editpost.php:114 ../../mod/editwebpage.php:178
-msgid "Italic"
-msgstr "Corsivo"
-
-#: ../../include/conversation.php:1211 ../../include/ItemObject.php:706
-#: ../../mod/editblock.php:138 ../../mod/editlayout.php:137
-#: ../../mod/editpost.php:115 ../../mod/editwebpage.php:179
-msgid "Underline"
-msgstr "Sottolineato"
-
-#: ../../include/conversation.php:1212 ../../include/ItemObject.php:707
-#: ../../mod/editblock.php:139 ../../mod/editlayout.php:138
-#: ../../mod/editpost.php:116 ../../mod/editwebpage.php:180
-msgid "Quote"
-msgstr "Citazione"
-
-#: ../../include/conversation.php:1213 ../../include/ItemObject.php:708
-#: ../../mod/editblock.php:140 ../../mod/editlayout.php:139
-#: ../../mod/editpost.php:117 ../../mod/editwebpage.php:181
-msgid "Code"
-msgstr "Codice"
-
-#: ../../include/conversation.php:1214 ../../mod/editblock.php:142
-#: ../../mod/editlayout.php:140 ../../mod/editpost.php:118
-#: ../../mod/editwebpage.php:182
-msgid "Upload photo"
-msgstr "Carica foto"
-
-#: ../../include/conversation.php:1215
-msgid "upload photo"
-msgstr "carica foto"
-
-#: ../../include/conversation.php:1216 ../../mod/editblock.php:143
-#: ../../mod/editlayout.php:141 ../../mod/editpost.php:119
-#: ../../mod/editwebpage.php:183 ../../mod/mail.php:248 ../../mod/mail.php:378
-msgid "Attach file"
-msgstr "Allega file"
-
-#: ../../include/conversation.php:1217
-msgid "attach file"
-msgstr "allega file"
-
-#: ../../include/conversation.php:1218 ../../mod/editblock.php:144
-#: ../../mod/editlayout.php:142 ../../mod/editpost.php:120
-#: ../../mod/editwebpage.php:184 ../../mod/mail.php:249 ../../mod/mail.php:379
-msgid "Insert web link"
-msgstr "Inserisci un indirizzo web"
-
-#: ../../include/conversation.php:1219
-msgid "web link"
-msgstr "link web"
-
-#: ../../include/conversation.php:1220
-msgid "Insert video link"
-msgstr "Inserisci l'indirizzo del video"
-
-#: ../../include/conversation.php:1221
-msgid "video link"
-msgstr "link video"
-
-#: ../../include/conversation.php:1222
-msgid "Insert audio link"
-msgstr "Inserisci l'indirizzo dell'audio"
-
-#: ../../include/conversation.php:1223
-msgid "audio link"
-msgstr "link audio"
-
-#: ../../include/conversation.php:1224 ../../mod/editblock.php:148
-#: ../../mod/editlayout.php:146 ../../mod/editpost.php:124
-#: ../../mod/editwebpage.php:188
-msgid "Set your location"
-msgstr "La tua localitĆ "
-
-#: ../../include/conversation.php:1225
-msgid "set location"
-msgstr "la tua localitĆ "
-
-#: ../../include/conversation.php:1226 ../../mod/editpost.php:126
-msgid "Toggle voting"
-msgstr "Abilita/disabilita il voto"
-
-#: ../../include/conversation.php:1229 ../../mod/editblock.php:149
-#: ../../mod/editlayout.php:147 ../../mod/editpost.php:125
-#: ../../mod/editwebpage.php:189
-msgid "Clear browser location"
-msgstr "Rimuovi la localitĆ  data dal browser"
-
-#: ../../include/conversation.php:1230
-msgid "clear location"
-msgstr "rimuovi la localitĆ "
-
-#: ../../include/conversation.php:1232 ../../mod/editblock.php:162
-#: ../../mod/editpost.php:141 ../../mod/editwebpage.php:205
-msgid "Title (optional)"
-msgstr "Titolo (facoltativo)"
-
-#: ../../include/conversation.php:1236 ../../mod/editblock.php:165
-#: ../../mod/editlayout.php:163 ../../mod/editpost.php:143
-#: ../../mod/editwebpage.php:207
-msgid "Categories (optional, comma-separated list)"
-msgstr "Categorie (facoltative, lista separata da virgole)"
-
-#: ../../include/conversation.php:1238 ../../mod/editblock.php:151
-#: ../../mod/editlayout.php:149 ../../mod/editpost.php:130
-#: ../../mod/editwebpage.php:191 ../../mod/events.php:459
-msgid "Permission settings"
-msgstr "Permessi dei tuoi contatti"
-
-#: ../../include/conversation.php:1239
-msgid "permissions"
-msgstr "permessi"
-
-#: ../../include/conversation.php:1247 ../../mod/editblock.php:159
-#: ../../mod/editlayout.php:156 ../../mod/editpost.php:138
-#: ../../mod/editwebpage.php:200
-msgid "Public post"
-msgstr "Post pubblico"
-
-#: ../../include/conversation.php:1249 ../../mod/editblock.php:166
-#: ../../mod/editlayout.php:164 ../../mod/editpost.php:144
-#: ../../mod/editwebpage.php:208
-msgid "Example: bob@example.com, mary@example.com"
-msgstr "Per esempio: mario@esempio.com, simona@esempio.com"
-
-#: ../../include/conversation.php:1262 ../../mod/editblock.php:176
-#: ../../mod/editlayout.php:173 ../../mod/editpost.php:155
-#: ../../mod/editwebpage.php:217 ../../mod/mail.php:253 ../../mod/mail.php:383
-msgid "Set expiration date"
-msgstr "Data di scadenza"
-
-#: ../../include/conversation.php:1265
-msgid "Set publish date"
-msgstr "Data di uscita programmata"
-
-#: ../../include/conversation.php:1267 ../../include/ItemObject.php:715
-#: ../../mod/editpost.php:157 ../../mod/mail.php:255 ../../mod/mail.php:385
-msgid "Encrypt text"
-msgstr "Cifratura del messaggio"
-
-#: ../../include/conversation.php:1269 ../../mod/editpost.php:159
-msgid "OK"
-msgstr "OK"
-
-#: ../../include/conversation.php:1270 ../../mod/editpost.php:160
-#: ../../mod/fbrowser.php:77 ../../mod/fbrowser.php:112
-#: ../../mod/settings.php:598 ../../mod/settings.php:624
-#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:134
-msgid "Cancel"
-msgstr "Annulla"
-
-#: ../../include/conversation.php:1513
-msgid "Discover"
-msgstr "Scopri"
-
-#: ../../include/conversation.php:1516
-msgid "Imported public streams"
-msgstr "Contenuti pubblici importati"
-
-#: ../../include/conversation.php:1521
-msgid "Commented Order"
-msgstr "Commenti recenti"
-
-#: ../../include/conversation.php:1524
-msgid "Sort by Comment Date"
-msgstr "Per data del commento"
-
-#: ../../include/conversation.php:1528
-msgid "Posted Order"
-msgstr "Post recenti"
-
-#: ../../include/conversation.php:1531
-msgid "Sort by Post Date"
-msgstr "Per data di creazione"
-
-#: ../../include/conversation.php:1536 ../../include/widgets.php:105
-msgid "Personal"
-msgstr "Personali"
-
-#: ../../include/conversation.php:1539
-msgid "Posts that mention or involve you"
-msgstr "Post che ti riguardano"
-
-#: ../../include/conversation.php:1545 ../../mod/connections.php:72
-#: ../../mod/connections.php:82 ../../mod/menu.php:112
-msgid "New"
-msgstr "NovitĆ "
-
-#: ../../include/conversation.php:1548
-msgid "Activity Stream - by date"
-msgstr "Elenco attivitĆ  - per data"
-
-#: ../../include/conversation.php:1554
-msgid "Starred"
-msgstr "Preferiti"
-
-#: ../../include/conversation.php:1557
-msgid "Favourite Posts"
-msgstr "Post preferiti"
-
-#: ../../include/conversation.php:1564
-msgid "Spam"
-msgstr "Spam"
-
-#: ../../include/conversation.php:1567
-msgid "Posts flagged as SPAM"
-msgstr "Post marcati come spam"
-
-#: ../../include/conversation.php:1611 ../../mod/admin.php:1157
-msgid "Channel"
-msgstr "Canale"
-
-#: ../../include/conversation.php:1614
-msgid "Status Messages and Posts"
-msgstr "Post e messaggi di stato"
-
-#: ../../include/conversation.php:1623
-msgid "About"
-msgstr "Informazioni"
-
-#: ../../include/conversation.php:1626
-msgid "Profile Details"
-msgstr "Dettagli del profilo"
-
-#: ../../include/conversation.php:1635 ../../include/photos.php:506
-msgid "Photo Albums"
-msgstr "Album foto"
-
-#: ../../include/conversation.php:1642
-msgid "Files and Storage"
-msgstr "Archivio file"
-
-#: ../../include/conversation.php:1652 ../../include/conversation.php:1655
-msgid "Chatrooms"
-msgstr "Chat"
-
-#: ../../include/conversation.php:1668
-msgid "Saved Bookmarks"
-msgstr "Segnalibri salvati"
-
-#: ../../include/conversation.php:1678
-msgid "Manage Webpages"
-msgstr "Gestisci le pagine web"
-
-#: ../../include/conversation.php:1707 ../../include/ItemObject.php:175
-#: ../../include/ItemObject.php:187 ../../mod/photos.php:1093
-#: ../../mod/photos.php:1105
-msgid "View all"
-msgstr "Vedi tutto"
-
-#: ../../include/conversation.php:1731 ../../include/taxonomy.php:415
-#: ../../include/identity.php:1268 ../../include/ItemObject.php:179
-#: ../../mod/photos.php:1097
-msgctxt "noun"
-msgid "Like"
-msgid_plural "Likes"
-msgstr[0] "Mi piace"
-msgstr[1] "Mi piace"
-
-#: ../../include/conversation.php:1734 ../../include/ItemObject.php:184
-#: ../../mod/photos.php:1102
-msgctxt "noun"
-msgid "Dislike"
-msgid_plural "Dislikes"
-msgstr[0] "Non mi piace"
-msgstr[1] "Non mi piace"
-
-#: ../../include/conversation.php:1737
-msgctxt "noun"
-msgid "Attending"
-msgid_plural "Attending"
-msgstr[0] "Partecipa"
-msgstr[1] "Partecipano"
-
-#: ../../include/conversation.php:1740
-msgctxt "noun"
-msgid "Not Attending"
-msgid_plural "Not Attending"
-msgstr[0] "Non partecipa"
-msgstr[1] "Non partecipano"
-
-#: ../../include/conversation.php:1743
-msgctxt "noun"
-msgid "Undecided"
-msgid_plural "Undecided"
-msgstr[0] "Indeciso"
-msgstr[1] "Indecisi"
-
-#: ../../include/conversation.php:1746
-msgctxt "noun"
-msgid "Agree"
-msgid_plural "Agrees"
-msgstr[0] "D'accordo"
-msgstr[1] "D'accordo"
-
-#: ../../include/conversation.php:1749
-msgctxt "noun"
-msgid "Disagree"
-msgid_plural "Disagrees"
-msgstr[0] "Non d'accordo"
-msgstr[1] "Non d'accordo"
-
-#: ../../include/conversation.php:1752
-msgctxt "noun"
-msgid "Abstain"
-msgid_plural "Abstains"
-msgstr[0] "Astenuto"
-msgstr[1] "Astenuti"
-
-#: ../../include/datetime.php:48
-msgid "Miscellaneous"
-msgstr "Altro"
-
-#: ../../include/datetime.php:132
-msgid "YYYY-MM-DD or MM-DD"
-msgstr "AAAA-MM-GG oppure MM-GG"
-
-#: ../../include/datetime.php:236 ../../mod/appman.php:91
-#: ../../mod/appman.php:92 ../../mod/events.php:437 ../../mod/events.php:442
-msgid "Required"
-msgstr "Obbligatorio"
-
-#: ../../include/datetime.php:263 ../../boot.php:2375
-msgid "never"
-msgstr "mai"
-
-#: ../../include/datetime.php:269
-msgid "less than a second ago"
-msgstr "meno di un secondo fa"
-
-#: ../../include/datetime.php:287
-#, php-format
-msgctxt "e.g. 22 hours ago, 1 minute ago"
-msgid "%1$d %2$s ago"
-msgstr "%1$d %2$s fa"
-
-#: ../../include/datetime.php:298
-msgctxt "relative_date"
-msgid "year"
-msgid_plural "years"
-msgstr[0] "anno"
-msgstr[1] "anni"
-
-#: ../../include/datetime.php:301
-msgctxt "relative_date"
-msgid "month"
-msgid_plural "months"
-msgstr[0] "mese"
-msgstr[1] "mesi"
-
-#: ../../include/datetime.php:304
-msgctxt "relative_date"
-msgid "week"
-msgid_plural "weeks"
-msgstr[0] "settimana"
-msgstr[1] "settimane"
-
-#: ../../include/datetime.php:307
-msgctxt "relative_date"
-msgid "day"
-msgid_plural "days"
-msgstr[0] "giorno"
-msgstr[1] "giorni"
-
-#: ../../include/datetime.php:310
-msgctxt "relative_date"
-msgid "hour"
-msgid_plural "hours"
-msgstr[0] "ora"
-msgstr[1] "ore"
-
-#: ../../include/datetime.php:313
-msgctxt "relative_date"
-msgid "minute"
-msgid_plural "minutes"
-msgstr[0] "minuto"
-msgstr[1] "minuti"
-
-#: ../../include/datetime.php:316
-msgctxt "relative_date"
-msgid "second"
-msgid_plural "seconds"
-msgstr[0] "secondo"
-msgstr[1] "secondi"
-
-#: ../../include/datetime.php:553
-#, php-format
-msgid "%1$s's birthday"
-msgstr "Compleanno di %1$s"
-
-#: ../../include/datetime.php:554
-#, php-format
-msgid "Happy Birthday %1$s"
-msgstr "Buon compleanno %1$s"
-
#: ../../include/dba/dba_driver.php:141
#, php-format
msgid "Cannot locate DNS info for database server '%s'"
@@ -1495,27 +672,27 @@ msgstr "ModalitĆ  SafeSearch"
#: ../../include/dir_fns.php:141 ../../include/dir_fns.php:142
#: ../../include/dir_fns.php:143 ../../mod/api.php:102
-#: ../../mod/connedit.php:368 ../../mod/connedit.php:646
-#: ../../mod/events.php:447 ../../mod/events.php:448 ../../mod/events.php:457
+#: ../../mod/connedit.php:375 ../../mod/connedit.php:653
+#: ../../mod/events.php:454 ../../mod/events.php:455 ../../mod/events.php:464
#: ../../mod/filestorage.php:151 ../../mod/filestorage.php:159
#: ../../mod/menu.php:96 ../../mod/menu.php:153 ../../mod/mitem.php:154
#: ../../mod/mitem.php:155 ../../mod/mitem.php:228 ../../mod/mitem.php:229
#: ../../mod/photos.php:634 ../../mod/admin.php:425 ../../mod/removeme.php:60
#: ../../mod/settings.php:588 ../../view/theme/redbasic/php/config.php:104
-#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1548
+#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1547
msgid "No"
msgstr "No"
#: ../../include/dir_fns.php:141 ../../include/dir_fns.php:142
#: ../../include/dir_fns.php:143 ../../mod/api.php:101
-#: ../../mod/connedit.php:368 ../../mod/events.php:447
-#: ../../mod/events.php:448 ../../mod/events.php:457
+#: ../../mod/connedit.php:375 ../../mod/events.php:454
+#: ../../mod/events.php:455 ../../mod/events.php:464
#: ../../mod/filestorage.php:151 ../../mod/filestorage.php:159
#: ../../mod/menu.php:96 ../../mod/menu.php:153 ../../mod/mitem.php:154
#: ../../mod/mitem.php:155 ../../mod/mitem.php:228 ../../mod/mitem.php:229
#: ../../mod/photos.php:634 ../../mod/admin.php:427 ../../mod/removeme.php:60
#: ../../mod/settings.php:588 ../../view/theme/redbasic/php/config.php:104
-#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1548
+#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1547
msgid "Yes"
msgstr "SƬ"
@@ -1527,27 +704,33 @@ msgstr "Solo forum pubblici"
msgid "This Website Only"
msgstr "Solo in questo sito"
-#: ../../include/event.php:768
+#: ../../include/event.php:779
msgid "This event has been added to your calendar."
msgstr "Questo evento ĆØ stato aggiunto al tuo calendario"
-#: ../../include/event.php:967
+#: ../../include/event.php:915 ../../include/text.php:1951
+#: ../../include/conversation.php:123 ../../mod/events.php:249
+#: ../../mod/like.php:363 ../../mod/tagger.php:47
+msgid "event"
+msgstr "l'evento"
+
+#: ../../include/event.php:978
msgid "Not specified"
msgstr "Non specificato"
-#: ../../include/event.php:968
+#: ../../include/event.php:979
msgid "Needs Action"
msgstr "Necessita di un intervento"
-#: ../../include/event.php:969
+#: ../../include/event.php:980
msgid "Completed"
msgstr "Completato"
-#: ../../include/event.php:970
+#: ../../include/event.php:981
msgid "In Process"
msgstr "In corso"
-#: ../../include/event.php:971
+#: ../../include/event.php:982
msgid "Cancelled"
msgstr "Annullato"
@@ -1583,45 +766,6 @@ msgstr "l'account locale non ĆØ stato trovato."
msgid "Cannot connect to yourself."
msgstr "Non puoi connetterti a te stesso."
-#: ../../include/group.php:26
-msgid ""
-"A deleted group with this name was revived. Existing item permissions "
-"<strong>may</strong> apply to this group and any future members. If this is "
-"not what you intended, please create another group with a different name."
-msgstr "Un gruppo di canali con lo stesso nome esisteva in precedenza ed ĆØ stato ripristinato. I vecchi permessi saranno applicati ai nuovi canali. Se non vuoi che ciĆ² accada, devi creare un gruppo con un nome diverso."
-
-#: ../../include/group.php:232
-msgid "Add new connections to this privacy group"
-msgstr "Aggiungi nuovi contatti a questo gruppo di canali"
-
-#: ../../include/group.php:251 ../../mod/admin.php:998
-msgid "All Channels"
-msgstr "Tutti i canali"
-
-#: ../../include/group.php:273
-msgid "edit"
-msgstr "modifica"
-
-#: ../../include/group.php:295 ../../include/features.php:82
-msgid "Privacy Groups"
-msgstr "Gruppi di canali"
-
-#: ../../include/group.php:296
-msgid "Edit group"
-msgstr "Modifica il gruppo"
-
-#: ../../include/group.php:297
-msgid "Add privacy group"
-msgstr "Crea un gruppo di canali"
-
-#: ../../include/group.php:298
-msgid "Channels not in any privacy group"
-msgstr "Canali che non sono in nessun gruppo"
-
-#: ../../include/group.php:300 ../../include/widgets.php:285
-msgid "add"
-msgstr "aggiungi"
-
#: ../../include/import.php:23
msgid ""
"Cannot create a duplicate channel identifier on this system. Import failed."
@@ -1669,6 +813,7 @@ msgid "Passwords do not match"
msgstr "Le password non corrispondono"
#: ../../include/js_strings.php:13 ../../mod/photos.php:41
+#: ../../mod/cal.php:37
msgid "everybody"
msgstr "tutti"
@@ -1696,7 +841,7 @@ msgstr "Niente di nuovo qui"
msgid "Rate This Channel (this is public)"
msgstr "Valuta questo canale (visibile a tutti)"
-#: ../../include/js_strings.php:20 ../../mod/connedit.php:705
+#: ../../include/js_strings.php:20 ../../mod/connedit.php:712
#: ../../mod/rate.php:157
msgid "Rating"
msgstr "Valutazioni"
@@ -1708,10 +853,10 @@ msgstr "Descrizione (facoltativa)"
#: ../../include/js_strings.php:22 ../../include/widgets.php:702
#: ../../include/widgets.php:714 ../../include/ItemObject.php:703
#: ../../mod/appman.php:99 ../../mod/chat.php:184 ../../mod/chat.php:213
-#: ../../mod/connect.php:93 ../../mod/connedit.php:722
-#: ../../mod/events.php:461 ../../mod/events.php:658
+#: ../../mod/connect.php:93 ../../mod/connedit.php:729
+#: ../../mod/events.php:468 ../../mod/events.php:665
#: ../../mod/filestorage.php:156 ../../mod/fsuggest.php:108
-#: ../../mod/group.php:81 ../../mod/import.php:536
+#: ../../mod/group.php:81 ../../mod/import.php:551
#: ../../mod/import_items.php:116 ../../mod/invite.php:142
#: ../../mod/locs.php:116 ../../mod/mail.php:380 ../../mod/mitem.php:231
#: ../../mod/mood.php:135 ../../mod/pconfig.php:108 ../../mod/pdledit.php:62
@@ -1719,13 +864,14 @@ msgstr "Descrizione (facoltativa)"
#: ../../mod/photos.php:1059 ../../mod/photos.php:1177 ../../mod/admin.php:457
#: ../../mod/admin.php:646 ../../mod/admin.php:721 ../../mod/admin.php:986
#: ../../mod/admin.php:1150 ../../mod/admin.php:1326 ../../mod/admin.php:1521
-#: ../../mod/admin.php:1606 ../../mod/poke.php:182 ../../mod/profiles.php:675
-#: ../../mod/rate.php:168 ../../mod/settings.php:597
-#: ../../mod/settings.php:710 ../../mod/settings.php:738
-#: ../../mod/settings.php:761 ../../mod/settings.php:849
-#: ../../mod/settings.php:1041 ../../mod/setup.php:333 ../../mod/setup.php:374
-#: ../../mod/sources.php:104 ../../mod/sources.php:138 ../../mod/thing.php:312
-#: ../../mod/thing.php:358 ../../mod/xchan.php:11
+#: ../../mod/admin.php:1606 ../../mod/admin.php:1770 ../../mod/poke.php:182
+#: ../../mod/profiles.php:675 ../../mod/rate.php:168
+#: ../../mod/settings.php:597 ../../mod/settings.php:710
+#: ../../mod/settings.php:738 ../../mod/settings.php:761
+#: ../../mod/settings.php:849 ../../mod/settings.php:1041
+#: ../../mod/setup.php:336 ../../mod/setup.php:377 ../../mod/sources.php:104
+#: ../../mod/sources.php:138 ../../mod/thing.php:312 ../../mod/thing.php:358
+#: ../../mod/xchan.php:11 ../../mod/cal.php:332
#: ../../view/theme/redbasic/php/config.php:99
msgid "Submit"
msgstr "Salva"
@@ -1738,8 +884,8 @@ msgstr "Inserisci l'URL di un link"
msgid "Unsaved changes. Are you sure you wish to leave this page?"
msgstr "Non hai salvato i cambiamenti. Vuoi davvero lasciare questa pagina?"
-#: ../../include/js_strings.php:25 ../../mod/events.php:452
-#: ../../mod/profiles.php:464 ../../mod/pubsites.php:28
+#: ../../include/js_strings.php:25 ../../mod/events.php:459
+#: ../../mod/profiles.php:464 ../../mod/pubsites.php:36
msgid "Location"
msgstr "Posizione geografica"
@@ -2011,7 +1157,7 @@ msgstr "Impossibile determinare il mittente."
msgid "Stored post could not be verified."
msgstr "Non ĆØ stato possibile verificare il post."
-#: ../../include/nav.php:82 ../../include/nav.php:115 ../../boot.php:1543
+#: ../../include/nav.php:82 ../../include/nav.php:115 ../../boot.php:1542
msgid "Logout"
msgstr "Esci"
@@ -2027,11 +1173,16 @@ msgstr "Bacheca"
msgid "Your posts and conversations"
msgstr "I tuoi post e conversazioni"
+#: ../../include/nav.php:86 ../../include/conversation.php:959
+#: ../../mod/connedit.php:516
+msgid "View Profile"
+msgstr "Profilo"
+
#: ../../include/nav.php:86
msgid "Your profile page"
msgstr "Il tuo profilo"
-#: ../../include/nav.php:88
+#: ../../include/nav.php:88 ../../include/identity.php:924
msgid "Edit Profiles"
msgstr "Modifica i tuoi profili"
@@ -2039,7 +1190,7 @@ msgstr "Modifica i tuoi profili"
msgid "Manage/Edit profiles"
msgstr "Gestisci i tuoi profili"
-#: ../../include/nav.php:90 ../../include/identity.php:977
+#: ../../include/nav.php:90 ../../include/identity.php:928
msgid "Edit Profile"
msgstr "Modifica il profilo"
@@ -2088,7 +1239,7 @@ msgstr "Clicca per farti riconoscere dal tuo hub principale"
msgid "Home Page"
msgstr "Bacheca"
-#: ../../include/nav.php:150 ../../mod/register.php:266 ../../boot.php:1526
+#: ../../include/nav.php:150 ../../mod/register.php:258 ../../boot.php:1525
msgid "Register"
msgstr "Registrati"
@@ -2198,7 +1349,7 @@ msgstr "Gestisci i tuoi canali"
msgid "Account/Channel Settings"
msgstr "Impostazioni dell'account e del canale"
-#: ../../include/nav.php:213 ../../include/widgets.php:1323
+#: ../../include/nav.php:213 ../../include/widgets.php:1343
msgid "Admin"
msgstr "Amministrazione"
@@ -2206,6 +1357,10 @@ msgstr "Amministrazione"
msgid "Site Setup and Configuration"
msgstr "Installazione e configurazione del sito"
+#: ../../include/nav.php:244 ../../include/conversation.php:854
+msgid "Loading..."
+msgstr "Caricamento in corso..."
+
#: ../../include/nav.php:249
msgid "@name, #tag, ?doc, content"
msgstr "@nome, #tag, ?guida, contenuto"
@@ -2228,15 +1383,24 @@ msgid "New Page"
msgstr "Nuova pagina web"
#: ../../include/page_widgets.php:39 ../../mod/blocks.php:159
-#: ../../mod/layouts.php:188 ../../mod/webpages.php:187
+#: ../../mod/layouts.php:188 ../../mod/pubsites.php:42
+#: ../../mod/webpages.php:189
msgid "View"
msgstr "Guarda"
-#: ../../include/page_widgets.php:41 ../../mod/webpages.php:189
+#: ../../include/page_widgets.php:40 ../../include/conversation.php:1179
+#: ../../include/ItemObject.php:712 ../../mod/editblock.php:171
+#: ../../mod/editpost.php:149 ../../mod/editwebpage.php:212
+#: ../../mod/events.php:465 ../../mod/photos.php:1060
+#: ../../mod/webpages.php:190
+msgid "Preview"
+msgstr "Anteprima"
+
+#: ../../include/page_widgets.php:41 ../../mod/webpages.php:191
msgid "Actions"
msgstr "Azioni"
-#: ../../include/page_widgets.php:42 ../../mod/webpages.php:190
+#: ../../include/page_widgets.php:42 ../../mod/webpages.php:192
msgid "Page Link"
msgstr "Link alla pagina"
@@ -2245,12 +1409,12 @@ msgid "Title"
msgstr "Titolo"
#: ../../include/page_widgets.php:44 ../../mod/blocks.php:150
-#: ../../mod/layouts.php:181 ../../mod/menu.php:110 ../../mod/webpages.php:192
+#: ../../mod/layouts.php:181 ../../mod/menu.php:110 ../../mod/webpages.php:194
msgid "Created"
msgstr "Creato"
#: ../../include/page_widgets.php:45 ../../mod/blocks.php:151
-#: ../../mod/layouts.php:182 ../../mod/menu.php:111 ../../mod/webpages.php:193
+#: ../../mod/layouts.php:182 ../../mod/menu.php:111 ../../mod/webpages.php:195
msgid "Edited"
msgstr "Modificato"
@@ -2260,37 +1424,68 @@ msgstr "Modificato"
msgid "Profile Photos"
msgstr "Foto del profilo"
-#: ../../include/photos.php:112
+#: ../../include/bbcode.php:123 ../../include/bbcode.php:798
+#: ../../include/bbcode.php:801 ../../include/bbcode.php:806
+#: ../../include/bbcode.php:809 ../../include/bbcode.php:812
+#: ../../include/bbcode.php:815 ../../include/bbcode.php:820
+#: ../../include/bbcode.php:823 ../../include/bbcode.php:828
+#: ../../include/bbcode.php:831 ../../include/bbcode.php:834
+#: ../../include/bbcode.php:837
+msgid "Image/photo"
+msgstr "Immagine"
+
+#: ../../include/bbcode.php:162 ../../include/bbcode.php:848
+msgid "Encrypted content"
+msgstr "Contenuto cifrato"
+
+#: ../../include/bbcode.php:179
#, php-format
-msgid "Image exceeds website size limit of %lu bytes"
-msgstr "L'immagine supera il limite massimo di %lu bytes"
+msgid "Install %s element: "
+msgstr "Installa l'elemento %s:"
-#: ../../include/photos.php:119
-msgid "Image file is empty."
-msgstr "Il file dell'immagine ĆØ vuoto."
+#: ../../include/bbcode.php:183
+#, php-format
+msgid ""
+"This post contains an installable %s element, however you lack permissions "
+"to install it on this site."
+msgstr "Questo post contiene un elemento %s installabile, tuttavia non hai i permessi necessari per l'installazione."
-#: ../../include/photos.php:146 ../../mod/profile_photo.php:225
-#: ../../mod/cover_photo.php:164
-msgid "Unable to process image"
-msgstr "Impossibile elaborare l'immagine"
+#: ../../include/bbcode.php:193 ../../mod/impel.php:37
+msgid "webpage"
+msgstr "pagina web"
-#: ../../include/photos.php:257
-msgid "Photo storage failed."
-msgstr "Impossibile salvare la foto."
+#: ../../include/bbcode.php:196 ../../mod/impel.php:47
+msgid "layout"
+msgstr "layout"
-#: ../../include/photos.php:297
-msgid "a new photo"
-msgstr "una nuova foto"
+#: ../../include/bbcode.php:199 ../../mod/impel.php:42
+msgid "block"
+msgstr "block"
-#: ../../include/photos.php:301
+#: ../../include/bbcode.php:202 ../../mod/impel.php:54
+msgid "menu"
+msgstr "menu"
+
+#: ../../include/bbcode.php:257
#, php-format
-msgctxt "photo_upload"
-msgid "%1$s posted %2$s to %3$s"
-msgstr "%1$s ha pubblicato %2$s su %3$s"
+msgid "%1$s wrote the following %2$s %3$s"
+msgstr "%1$s ha scritto %2$s %3$s"
-#: ../../include/photos.php:510
-msgid "Upload New Photos"
-msgstr "Carica nuove foto"
+#: ../../include/bbcode.php:259 ../../mod/tagger.php:51
+msgid "post"
+msgstr "il post"
+
+#: ../../include/bbcode.php:547
+msgid "Different viewers will see this text differently"
+msgstr "Ad altri questo testo potrebbe apparire in modo differente"
+
+#: ../../include/bbcode.php:759
+msgid "$1 spoiler"
+msgstr "$1 spoiler"
+
+#: ../../include/bbcode.php:786
+msgid "$1 wrote:"
+msgstr "$1 ha scritto:"
#: ../../include/profile_selectors.php:6
#: ../../include/profile_selectors.php:23 ../../mod/id.php:103
@@ -2447,7 +1642,7 @@ msgstr "Sesso-dipendente"
#: ../../include/profile_selectors.php:80 ../../include/widgets.php:451
#: ../../include/identity.php:390 ../../include/identity.php:391
-#: ../../include/identity.php:398 ../../mod/connedit.php:584
+#: ../../include/identity.php:398 ../../mod/connedit.php:591
#: ../../mod/settings.php:349 ../../mod/settings.php:353
#: ../../mod/settings.php:354 ../../mod/settings.php:357
#: ../../mod/settings.php:368
@@ -2544,7 +1739,7 @@ msgstr "Chi se ne frega"
msgid "Ask me"
msgstr "Chiedimelo"
-#: ../../include/security.php:384
+#: ../../include/security.php:388
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."
@@ -2590,23 +1785,180 @@ msgstr "non mi piace"
msgid "dislikes"
msgstr "non gli piace"
-#: ../../include/zot.php:675
+#: ../../include/taxonomy.php:415 ../../include/identity.php:1296
+#: ../../include/conversation.php:1751 ../../include/ItemObject.php:179
+#: ../../mod/photos.php:1097
+msgctxt "noun"
+msgid "Like"
+msgid_plural "Likes"
+msgstr[0] "Mi piace"
+msgstr[1] "Mi piace"
+
+#: ../../include/datetime.php:48
+msgid "Miscellaneous"
+msgstr "Altro"
+
+#: ../../include/datetime.php:132
+msgid "YYYY-MM-DD or MM-DD"
+msgstr "AAAA-MM-GG oppure MM-GG"
+
+#: ../../include/datetime.php:236 ../../mod/appman.php:91
+#: ../../mod/appman.php:92 ../../mod/events.php:444 ../../mod/events.php:449
+msgid "Required"
+msgstr "Obbligatorio"
+
+#: ../../include/datetime.php:263 ../../boot.php:2374
+msgid "never"
+msgstr "mai"
+
+#: ../../include/datetime.php:269
+msgid "less than a second ago"
+msgstr "meno di un secondo fa"
+
+#: ../../include/datetime.php:287
+#, php-format
+msgctxt "e.g. 22 hours ago, 1 minute ago"
+msgid "%1$d %2$s ago"
+msgstr "%1$d %2$s fa"
+
+#: ../../include/datetime.php:298
+msgctxt "relative_date"
+msgid "year"
+msgid_plural "years"
+msgstr[0] "anno"
+msgstr[1] "anni"
+
+#: ../../include/datetime.php:301
+msgctxt "relative_date"
+msgid "month"
+msgid_plural "months"
+msgstr[0] "mese"
+msgstr[1] "mesi"
+
+#: ../../include/datetime.php:304
+msgctxt "relative_date"
+msgid "week"
+msgid_plural "weeks"
+msgstr[0] "settimana"
+msgstr[1] "settimane"
+
+#: ../../include/datetime.php:307
+msgctxt "relative_date"
+msgid "day"
+msgid_plural "days"
+msgstr[0] "giorno"
+msgstr[1] "giorni"
+
+#: ../../include/datetime.php:310
+msgctxt "relative_date"
+msgid "hour"
+msgid_plural "hours"
+msgstr[0] "ora"
+msgstr[1] "ore"
+
+#: ../../include/datetime.php:313
+msgctxt "relative_date"
+msgid "minute"
+msgid_plural "minutes"
+msgstr[0] "minuto"
+msgstr[1] "minuti"
+
+#: ../../include/datetime.php:316
+msgctxt "relative_date"
+msgid "second"
+msgid_plural "seconds"
+msgstr[0] "secondo"
+msgstr[1] "secondi"
+
+#: ../../include/datetime.php:553
+#, php-format
+msgid "%1$s's birthday"
+msgstr "Compleanno di %1$s"
+
+#: ../../include/datetime.php:554
+#, php-format
+msgid "Happy Birthday %1$s"
+msgstr "Buon compleanno %1$s"
+
+#: ../../include/zot.php:680
msgid "Invalid data packet"
msgstr "Dati ricevuti non validi"
-#: ../../include/zot.php:691
+#: ../../include/zot.php:696
msgid "Unable to verify channel signature"
msgstr "Impossibile verificare la firma elettronica del canale"
-#: ../../include/zot.php:2267
+#: ../../include/zot.php:2272
#, php-format
msgid "Unable to verify site signature for %s"
msgstr "Impossibile verificare la firma elettronica del sito %s"
-#: ../../include/zot.php:3588
+#: ../../include/zot.php:3607
msgid "invalid target signature"
msgstr "la firma ricevuta non ĆØ valida"
+#: ../../include/attach.php:247 ../../include/attach.php:333
+msgid "Item was not found."
+msgstr "Elemento non trovato."
+
+#: ../../include/attach.php:497
+msgid "No source file."
+msgstr "Nessun file di origine."
+
+#: ../../include/attach.php:519
+msgid "Cannot locate file to replace"
+msgstr "Il file da sostituire non ĆØ stato trovato"
+
+#: ../../include/attach.php:537
+msgid "Cannot locate file to revise/update"
+msgstr "Il file da aggiornare non ĆØ stato trovato"
+
+#: ../../include/attach.php:672
+#, php-format
+msgid "File exceeds size limit of %d"
+msgstr "Il file supera la dimensione massima di %d"
+
+#: ../../include/attach.php:686
+#, php-format
+msgid "You have reached your limit of %1$.0f Mbytes attachment storage."
+msgstr "Hai raggiunto il limite complessivo di %1$.0f Mbytes per gli allegati."
+
+#: ../../include/attach.php:842
+msgid "File upload failed. Possible system limit or action terminated."
+msgstr "Caricamento file fallito, potrebbe essere stato interrotto o potrebbe aver superato lo spazio assegnato."
+
+#: ../../include/attach.php:855
+msgid "Stored file could not be verified. Upload failed."
+msgstr "Il file non puĆ² essere verificato. Caricamento fallito."
+
+#: ../../include/attach.php:903 ../../include/attach.php:919
+msgid "Path not available."
+msgstr "Percorso non disponibile."
+
+#: ../../include/attach.php:965 ../../include/attach.php:1117
+msgid "Empty pathname"
+msgstr "Il percorso del file ĆØ vuoto"
+
+#: ../../include/attach.php:991
+msgid "duplicate filename or path"
+msgstr "il file o il percorso del file ĆØ duplicato"
+
+#: ../../include/attach.php:1013
+msgid "Path not found."
+msgstr "Percorso del file non trovato."
+
+#: ../../include/attach.php:1071
+msgid "mkdir failed."
+msgstr "mkdir fallito."
+
+#: ../../include/attach.php:1075
+msgid "database storage failed."
+msgstr "scrittura su database fallita."
+
+#: ../../include/attach.php:1123
+msgid "Empty path"
+msgstr "La posizione ĆØ vuota"
+
#: ../../include/contact_selectors.php:56
msgid "Frequently"
msgstr "Frequentemente"
@@ -2645,7 +1997,7 @@ msgstr "RSS/Atom"
#: ../../include/contact_selectors.php:79 ../../mod/id.php:15
#: ../../mod/id.php:16 ../../mod/admin.php:989 ../../mod/admin.php:998
-#: ../../boot.php:1546
+#: ../../boot.php:1545
msgid "Email"
msgstr "Email"
@@ -2698,6 +2050,42 @@ msgstr "L'amministratore di %s"
msgid "No Subject"
msgstr "Nessun titolo"
+#: ../../include/photos.php:112
+#, php-format
+msgid "Image exceeds website size limit of %lu bytes"
+msgstr "L'immagine supera il limite massimo di %lu bytes"
+
+#: ../../include/photos.php:119
+msgid "Image file is empty."
+msgstr "Il file dell'immagine ĆØ vuoto."
+
+#: ../../include/photos.php:146 ../../mod/profile_photo.php:225
+#: ../../mod/cover_photo.php:164
+msgid "Unable to process image"
+msgstr "Impossibile elaborare l'immagine"
+
+#: ../../include/photos.php:257
+msgid "Photo storage failed."
+msgstr "Impossibile salvare la foto."
+
+#: ../../include/photos.php:297
+msgid "a new photo"
+msgstr "una nuova foto"
+
+#: ../../include/photos.php:301
+#, php-format
+msgctxt "photo_upload"
+msgid "%1$s posted %2$s to %3$s"
+msgstr "%1$s ha pubblicato %2$s su %3$s"
+
+#: ../../include/photos.php:506 ../../include/conversation.php:1644
+msgid "Photo Albums"
+msgstr "Album foto"
+
+#: ../../include/photos.php:510
+msgid "Upload New Photos"
+msgstr "Carica nuove foto"
+
#: ../../include/features.php:48
msgid "General Features"
msgstr "FunzionalitĆ  di base"
@@ -2777,305 +2165,215 @@ msgid "If location data is available on uploaded photos, link this to a map."
msgstr "Collega la foto a una mappa quando contiene indicazioni geografiche."
#: ../../include/features.php:60
+msgid "Smart Birthdays"
+msgstr "Compleanni intelligenti"
+
+#: ../../include/features.php:60
+msgid ""
+"Make birthday events timezone aware in case your friends are scattered "
+"across the planet."
+msgstr "Fa in modo che i compleanni siano segnalati in base al fuso orario, se hai amici sparsi per il mondo."
+
+#: ../../include/features.php:61
msgid "Expert Mode"
msgstr "ModalitĆ  esperto"
-#: ../../include/features.php:60
+#: ../../include/features.php:61
msgid "Enable Expert Mode to provide advanced configuration options"
msgstr "Abilita la modalitĆ  esperto per vedere le opzioni di configurazione avanzate"
-#: ../../include/features.php:61
+#: ../../include/features.php:62
msgid "Premium Channel"
msgstr "Canale premium"
-#: ../../include/features.php:61
+#: ../../include/features.php:62
msgid ""
"Allows you to set restrictions and terms on those that connect with your "
"channel"
msgstr "Ti permette di impostare restrizioni e termini d'uso per il canale"
-#: ../../include/features.php:66
+#: ../../include/features.php:67
msgid "Post Composition Features"
msgstr "ModalitĆ  di scrittura post"
-#: ../../include/features.php:68
-msgid "Use Markdown"
-msgstr "Usa il markdown"
-
-#: ../../include/features.php:68
-msgid "Allow use of \"Markdown\" to format posts"
-msgstr "Consenti l'uso del markdown per formattare i post"
-
-#: ../../include/features.php:69
+#: ../../include/features.php:70
msgid "Large Photos"
msgstr "Foto grandi"
-#: ../../include/features.php:69
+#: ../../include/features.php:70
msgid ""
"Include large (1024px) photo thumbnails in posts. If not enabled, use small "
"(640px) photo thumbnails"
msgstr "Includi anteprime grandi per le foto dei tuoi post (1024px). Altrimenti saranno mostrate anteprime piĆ¹ piccole (640px)"
-#: ../../include/features.php:70 ../../include/widgets.php:572
+#: ../../include/features.php:71 ../../include/widgets.php:572
#: ../../mod/sources.php:88
msgid "Channel Sources"
msgstr "Sorgenti del canale"
-#: ../../include/features.php:70
+#: ../../include/features.php:71
msgid "Automatically import channel content from other channels or feeds"
msgstr "Importa automaticamente il contenuto del canale da altri canali o feed"
-#: ../../include/features.php:71
+#: ../../include/features.php:72
msgid "Even More Encryption"
msgstr "Cifratura addizionale"
-#: ../../include/features.php:71
+#: ../../include/features.php:72
msgid ""
"Allow optional encryption of content end-to-end with a shared secret key"
msgstr "Rendi possibile la crifratura aggiuntiva tra mittente e destinatario usando una parola chiave conosciuta a entrambi"
-#: ../../include/features.php:72
+#: ../../include/features.php:73
msgid "Enable Voting Tools"
msgstr "Permetti i post con votazione"
-#: ../../include/features.php:72
+#: ../../include/features.php:73
msgid "Provide a class of post which others can vote on"
msgstr "Rende possibile la creazione di post in cui sarĆ  possibile votare"
-#: ../../include/features.php:73
+#: ../../include/features.php:74
msgid "Delayed Posting"
msgstr "Pubblicazione ritardata"
-#: ../../include/features.php:73
+#: ../../include/features.php:74
msgid "Allow posts to be published at a later date"
msgstr "Per scegliere una data e un'ora a cui far uscire i post"
-#: ../../include/features.php:74
+#: ../../include/features.php:75
msgid "Suppress Duplicate Posts/Comments"
msgstr "Impedisci post e commenti duplicati"
-#: ../../include/features.php:74
+#: ../../include/features.php:75
msgid ""
"Prevent posts with identical content to be published with less than two "
"minutes in between submissions."
msgstr "Scarta post e commenti se sono identici ad altri inviati meno di due minuti prima."
-#: ../../include/features.php:80
+#: ../../include/features.php:81
msgid "Network and Stream Filtering"
msgstr "Filtraggio dei contenuti"
-#: ../../include/features.php:81
+#: ../../include/features.php:82
msgid "Search by Date"
msgstr "Ricerca per data"
-#: ../../include/features.php:81
+#: ../../include/features.php:82
msgid "Ability to select posts by date ranges"
msgstr "Per selezionare i post in un intervallo tra date"
-#: ../../include/features.php:82
+#: ../../include/features.php:83 ../../include/group.php:295
+msgid "Privacy Groups"
+msgstr "Gruppi di canali"
+
+#: ../../include/features.php:83
msgid "Enable management and selection of privacy groups"
msgstr "Abilita i gruppi di canali"
-#: ../../include/features.php:83 ../../include/widgets.php:284
+#: ../../include/features.php:84 ../../include/widgets.php:284
msgid "Saved Searches"
msgstr "Ricerche salvate"
-#: ../../include/features.php:83
+#: ../../include/features.php:84
msgid "Save search terms for re-use"
msgstr "Salva i termini delle ricerche per poterle ripetere"
-#: ../../include/features.php:84
+#: ../../include/features.php:85
msgid "Network Personal Tab"
msgstr "AttivitĆ  personale"
-#: ../../include/features.php:84
+#: ../../include/features.php:85
msgid "Enable tab to display only Network posts that you've interacted on"
msgstr "Abilita il link per mostrare solamente i contenuti con cui hai interagito"
-#: ../../include/features.php:85
+#: ../../include/features.php:86
msgid "Network New Tab"
msgstr "Contenuti nuovi"
-#: ../../include/features.php:85
+#: ../../include/features.php:86
msgid "Enable tab to display all new Network activity"
msgstr "Abilita il link per visualizzare solo i nuovi contenuti"
-#: ../../include/features.php:86
+#: ../../include/features.php:87
msgid "Affinity Tool"
msgstr "Filtro per affinitĆ "
-#: ../../include/features.php:86
+#: ../../include/features.php:87
msgid "Filter stream activity by depth of relationships"
msgstr "Permette di selezionare i contenuti in base al livello di amicizia"
-#: ../../include/features.php:87
+#: ../../include/features.php:88
msgid "Connection Filtering"
msgstr "Filtro sui contatti"
-#: ../../include/features.php:87
+#: ../../include/features.php:88
msgid "Filter incoming posts from connections based on keywords/content"
msgstr "Filtra i post che ricevi con parole chiave"
-#: ../../include/features.php:88
+#: ../../include/features.php:89
msgid "Suggest Channels"
msgstr "Suggerisci canali"
-#: ../../include/features.php:88
+#: ../../include/features.php:89
msgid "Show channel suggestions"
msgstr "Mostra alcuni canali che potrebbero interessarti"
-#: ../../include/features.php:93
+#: ../../include/features.php:94
msgid "Post/Comment Tools"
msgstr "Gestione post e commenti"
-#: ../../include/features.php:94
+#: ../../include/features.php:95
msgid "Community Tagging"
msgstr "Tag della comunitĆ "
-#: ../../include/features.php:94
+#: ../../include/features.php:95
msgid "Ability to tag existing posts"
msgstr "Permetti l'aggiunta di tag su post giĆ  esistenti"
-#: ../../include/features.php:95
+#: ../../include/features.php:96
msgid "Post Categories"
msgstr "Categorie dei post"
-#: ../../include/features.php:95
+#: ../../include/features.php:96
msgid "Add categories to your posts"
msgstr "Abilita le categorie per i tuoi post"
-#: ../../include/features.php:96
+#: ../../include/features.php:97
msgid "Ability to file posts under folders"
msgstr "Abilita la raccolta dei tuoi articoli in cartelle"
-#: ../../include/features.php:97
+#: ../../include/features.php:98
msgid "Dislike Posts"
msgstr "Non mi piace"
-#: ../../include/features.php:97
+#: ../../include/features.php:98
msgid "Ability to dislike posts/comments"
msgstr "AbilitĆ  la funzionalitĆ  \"non mi piace\" per i tuoi post"
-#: ../../include/features.php:98
+#: ../../include/features.php:99
msgid "Star Posts"
msgstr "Post con stella"
-#: ../../include/features.php:98
+#: ../../include/features.php:99
msgid "Ability to mark special posts with a star indicator"
msgstr "Mostra la stella per segnare i post preferiti"
-#: ../../include/features.php:99
+#: ../../include/features.php:100
msgid "Tag Cloud"
msgstr "Nuvola di tag"
-#: ../../include/features.php:99
+#: ../../include/features.php:100
msgid "Provide a personal tag cloud on your channel page"
msgstr "Mostra la nuvola dei tag che usi di piĆ¹ sulla pagina del tuo canale"
-#: ../../include/items.php:423 ../../index.php:193 ../../mod/dreport.php:6
-#: ../../mod/dreport.php:45 ../../mod/group.php:68
-#: ../../mod/import_items.php:108 ../../mod/like.php:280
-#: ../../mod/profperm.php:23 ../../mod/subthread.php:58
-msgid "Permission denied"
-msgstr "Permesso negato"
-
-#: ../../include/items.php:1138 ../../include/items.php:1184
-msgid "(Unknown)"
-msgstr "(Sconosciuto)"
-
-#: ../../include/items.php:1384
-msgid "Visible to anybody on the internet."
-msgstr "Visibile a chiunque su internet."
-
-#: ../../include/items.php:1386
-msgid "Visible to you only."
-msgstr "Visibile solo a te."
-
-#: ../../include/items.php:1388
-msgid "Visible to anybody in this network."
-msgstr "Visibile a tutti su questa rete."
-
-#: ../../include/items.php:1390
-msgid "Visible to anybody authenticated."
-msgstr "Visibile a chiunque sia autenticato."
-
-#: ../../include/items.php:1392
-#, php-format
-msgid "Visible to anybody on %s."
-msgstr "Visibile a tutti su %s."
-
-#: ../../include/items.php:1394
-msgid "Visible to all connections."
-msgstr "Visibile a tutti coloro che ti seguono."
-
-#: ../../include/items.php:1396
-msgid "Visible to approved connections."
-msgstr "Visibile ai contatti approvati."
-
-#: ../../include/items.php:1398
-msgid "Visible to specific connections."
-msgstr "Visibile ad alcuni contatti scelti."
-
-#: ../../include/items.php:4433 ../../mod/display.php:36
-#: ../../mod/filestorage.php:27 ../../mod/admin.php:141
-#: ../../mod/admin.php:1189 ../../mod/admin.php:1434 ../../mod/thing.php:85
-#: ../../mod/viewsrc.php:20
-msgid "Item not found."
-msgstr "Elemento non trovato."
-
-#: ../../include/items.php:4969 ../../mod/group.php:38 ../../mod/group.php:137
-msgid "Privacy group not found."
-msgstr "Gruppo di canali non trovato."
-
-#: ../../include/items.php:4985
-msgid "Privacy group is empty."
-msgstr "Gruppo di canali vuoto."
-
-#: ../../include/items.php:4992
-#, php-format
-msgid "Privacy group: %s"
-msgstr "Gruppo di canali: %s"
-
-#: ../../include/items.php:5002 ../../mod/connedit.php:694
-#, php-format
-msgid "Connection: %s"
-msgstr "Contatto: %s"
-
-#: ../../include/items.php:5004
-msgid "Connection not found."
-msgstr "Contatto non trovato."
-
-#: ../../include/items.php:5430 ../../mod/cover_photo.php:229
-msgid "female"
-msgstr "femmina"
-
-#: ../../include/items.php:5431 ../../mod/cover_photo.php:230
-#, php-format
-msgid "%1$s updated her %2$s"
-msgstr "Aggiornamento: %2$s di %1$s"
-
-#: ../../include/items.php:5432 ../../mod/cover_photo.php:231
-msgid "male"
-msgstr "maschio"
-
-#: ../../include/items.php:5433 ../../mod/cover_photo.php:232
-#, php-format
-msgid "%1$s updated his %2$s"
-msgstr "Aggiornamento: %2$s di %1$s"
-
-#: ../../include/items.php:5435 ../../mod/cover_photo.php:234
-#, php-format
-msgid "%1$s updated their %2$s"
-msgstr "Aggiornamento: %2$s di %1$s"
-
-#: ../../include/items.php:5437
-msgid "profile photo"
-msgstr "foto del profilo"
-
#: ../../include/widgets.php:103
msgid "System"
msgstr "Sistema"
+#: ../../include/widgets.php:105 ../../include/conversation.php:1536
+msgid "Personal"
+msgstr "Personali"
+
#: ../../include/widgets.php:106
msgid "Create Personal App"
msgstr "Crea app personale"
@@ -3118,8 +2416,8 @@ msgid "Notes"
msgstr "Note"
#: ../../include/widgets.php:202 ../../include/text.php:886
-#: ../../include/text.php:898 ../../mod/filer.php:49 ../../mod/admin.php:1666
-#: ../../mod/admin.php:1686 ../../mod/rbmark.php:28 ../../mod/rbmark.php:100
+#: ../../include/text.php:898 ../../mod/filer.php:49 ../../mod/admin.php:1687
+#: ../../mod/admin.php:1707 ../../mod/rbmark.php:28 ../../mod/rbmark.php:100
msgid "Save"
msgstr "Salva"
@@ -3127,24 +2425,28 @@ msgstr "Salva"
msgid "Remove term"
msgstr "Rimuovi termine"
+#: ../../include/widgets.php:285 ../../include/group.php:300
+msgid "add"
+msgstr "aggiungi"
+
#: ../../include/widgets.php:359
msgid "Archives"
msgstr "Archivi"
-#: ../../include/widgets.php:449 ../../mod/connedit.php:582
+#: ../../include/widgets.php:449 ../../mod/connedit.php:589
msgid "Me"
msgstr "Me"
-#: ../../include/widgets.php:450 ../../mod/connedit.php:583
+#: ../../include/widgets.php:450 ../../mod/connedit.php:590
msgid "Family"
msgstr "Famiglia"
-#: ../../include/widgets.php:452 ../../mod/connedit.php:585
+#: ../../include/widgets.php:452 ../../mod/connedit.php:592
msgid "Acquaintances"
msgstr "Conoscenti"
#: ../../include/widgets.php:453 ../../mod/connections.php:88
-#: ../../mod/connections.php:103 ../../mod/connedit.php:586
+#: ../../mod/connections.php:103 ../../mod/connedit.php:593
msgid "All"
msgstr "Tutti"
@@ -3180,7 +2482,7 @@ msgstr "App connesse"
msgid "Export channel"
msgstr "Esporta il canale"
-#: ../../include/widgets.php:556 ../../mod/connedit.php:694
+#: ../../include/widgets.php:556 ../../mod/connedit.php:701
msgid "Connection Default Permissions"
msgstr "Permessi predefiniti dei nuovi contatti"
@@ -3232,11 +2534,13 @@ msgstr "Eventi della settimana"
msgid "Month View"
msgstr "Eventi del mese"
-#: ../../include/widgets.php:700 ../../mod/events.php:654
+#: ../../include/widgets.php:700 ../../mod/events.php:661
+#: ../../mod/cal.php:328
msgid "Export"
msgstr "Esporta"
-#: ../../include/widgets.php:701 ../../mod/events.php:657
+#: ../../include/widgets.php:701 ../../mod/events.php:664
+#: ../../mod/cal.php:331
msgid "Import"
msgstr "Importa"
@@ -3264,111 +2568,111 @@ msgstr "Chat nei segnalibri"
msgid "Suggested Chatrooms"
msgstr "Chat suggerite"
-#: ../../include/widgets.php:972 ../../include/widgets.php:1062
+#: ../../include/widgets.php:972 ../../include/widgets.php:1082
msgid "photo/image"
msgstr "foto/immagine"
-#: ../../include/widgets.php:1156
+#: ../../include/widgets.php:1176
msgid "Rating Tools"
msgstr "Valutazione"
-#: ../../include/widgets.php:1160 ../../include/widgets.php:1162
+#: ../../include/widgets.php:1180 ../../include/widgets.php:1182
msgid "Rate Me"
msgstr "Valutami"
-#: ../../include/widgets.php:1165
+#: ../../include/widgets.php:1185
msgid "View Ratings"
msgstr "Vedi le valutazioni ricevute"
-#: ../../include/widgets.php:1176
+#: ../../include/widgets.php:1196 ../../mod/pubsites.php:18
msgid "Public Hubs"
msgstr "Hub pubblici"
-#: ../../include/widgets.php:1224
+#: ../../include/widgets.php:1244
msgid "Forums"
msgstr "Forum"
-#: ../../include/widgets.php:1253
+#: ../../include/widgets.php:1273
msgid "Tasks"
msgstr "AttivitĆ "
-#: ../../include/widgets.php:1262
+#: ../../include/widgets.php:1282
msgid "Documentation"
msgstr "Guida"
-#: ../../include/widgets.php:1264
+#: ../../include/widgets.php:1284
msgid "Project/Site Information"
msgstr "Informazioni sul sito/progetto"
-#: ../../include/widgets.php:1265
+#: ../../include/widgets.php:1285
msgid "For Members"
msgstr "Per gli utenti"
-#: ../../include/widgets.php:1266
+#: ../../include/widgets.php:1286
msgid "For Administrators"
msgstr "Per gli amministratori"
-#: ../../include/widgets.php:1267
+#: ../../include/widgets.php:1287
msgid "For Developers"
msgstr "Per sviluppatori"
-#: ../../include/widgets.php:1292 ../../mod/admin.php:456
+#: ../../include/widgets.php:1312 ../../mod/admin.php:456
msgid "Site"
msgstr "Sito"
-#: ../../include/widgets.php:1293
+#: ../../include/widgets.php:1313
msgid "Accounts"
msgstr "Account"
-#: ../../include/widgets.php:1294 ../../mod/admin.php:1149
+#: ../../include/widgets.php:1314 ../../mod/admin.php:1149
msgid "Channels"
msgstr "Canali"
-#: ../../include/widgets.php:1295 ../../mod/admin.php:710
+#: ../../include/widgets.php:1315 ../../mod/admin.php:710
msgid "Security"
msgstr "Sicurezza"
-#: ../../include/widgets.php:1297 ../../mod/admin.php:1264
+#: ../../include/widgets.php:1317 ../../mod/admin.php:1264
#: ../../mod/admin.php:1325
msgid "Plugins"
msgstr "Plugin"
-#: ../../include/widgets.php:1298 ../../mod/admin.php:1486
+#: ../../include/widgets.php:1318 ../../mod/admin.php:1486
#: ../../mod/admin.php:1520
msgid "Themes"
msgstr "Temi"
-#: ../../include/widgets.php:1299
+#: ../../include/widgets.php:1319
msgid "Inspect queue"
msgstr "Coda di attesa"
-#: ../../include/widgets.php:1300
-msgid "Profile Config"
-msgstr "Configurazione del profilo"
+#: ../../include/widgets.php:1320 ../../mod/admin.php:1760
+msgid "Profile Fields"
+msgstr "Campi del profilo"
-#: ../../include/widgets.php:1301
+#: ../../include/widgets.php:1321
msgid "DB updates"
msgstr "Aggiornamenti al DB"
-#: ../../include/widgets.php:1319 ../../include/widgets.php:1325
+#: ../../include/widgets.php:1339 ../../include/widgets.php:1345
#: ../../mod/admin.php:1605
msgid "Logs"
msgstr "Log"
-#: ../../include/widgets.php:1324
+#: ../../include/widgets.php:1344
msgid "Plugin Features"
msgstr "Plugin"
-#: ../../include/widgets.php:1326
+#: ../../include/widgets.php:1346
msgid "User registrations waiting for confirmation"
msgstr "Registrazioni in attesa"
-#: ../../include/widgets.php:1404 ../../mod/photos.php:760
+#: ../../include/widgets.php:1424 ../../mod/photos.php:760
#: ../../mod/photos.php:1300
msgid "View Photo"
msgstr "Guarda la foto"
-#: ../../include/widgets.php:1421 ../../mod/photos.php:791
+#: ../../include/widgets.php:1441 ../../mod/photos.php:791
msgid "Edit Album"
msgstr "Modifica album"
@@ -3409,13 +2713,18 @@ msgstr "Mostra tutti i %s contatti"
msgid "poke"
msgstr "poke"
+#: ../../include/text.php:973 ../../include/text.php:978
+#: ../../include/conversation.php:243
+msgid "poked"
+msgstr "ha ricevuto un poke"
+
#: ../../include/text.php:979
msgid "ping"
msgstr "ping"
#: ../../include/text.php:979
msgid "pinged"
-msgstr "ha ricevuto un ping"
+msgstr "ha effettuato un ping"
#: ../../include/text.php:980
msgid "prod"
@@ -3557,7 +2866,7 @@ msgstr "rimuovi dal file"
msgid "Click to open/close"
msgstr "Clicca per aprire/chiudere"
-#: ../../include/text.php:1724 ../../mod/events.php:623
+#: ../../include/text.php:1724 ../../mod/events.php:630 ../../mod/cal.php:302
msgid "Link to Source"
msgstr "Link al sito d'origine"
@@ -3581,6 +2890,21 @@ msgstr "Tipo di contenuto della pagina"
msgid "Select an alternate language"
msgstr "Seleziona una lingua diversa"
+#: ../../include/text.php:1948 ../../include/conversation.php:120
+#: ../../mod/like.php:361 ../../mod/subthread.php:83 ../../mod/tagger.php:43
+msgid "photo"
+msgstr "la foto"
+
+#: ../../include/text.php:1954 ../../include/conversation.php:148
+#: ../../mod/like.php:361 ../../mod/subthread.php:83
+msgid "status"
+msgstr "il messaggio di stato"
+
+#: ../../include/text.php:1956 ../../include/conversation.php:150
+#: ../../mod/tagger.php:53
+msgid "comment"
+msgstr "il commento"
+
#: ../../include/text.php:1961
msgid "activity"
msgstr "l'attivitĆ "
@@ -3605,6 +2929,37 @@ msgstr "Layout"
msgid "Pages"
msgstr "Pagine"
+#: ../../include/group.php:26
+msgid ""
+"A deleted group with this name was revived. Existing item permissions "
+"<strong>may</strong> apply to this group and any future members. If this is "
+"not what you intended, please create another group with a different name."
+msgstr "Un gruppo di canali con lo stesso nome esisteva in precedenza ed ĆØ stato ripristinato. I vecchi permessi saranno applicati ai nuovi canali. Se non vuoi che ciĆ² accada, devi creare un gruppo con un nome diverso."
+
+#: ../../include/group.php:232
+msgid "Add new connections to this privacy group"
+msgstr "Aggiungi nuovi contatti a questo gruppo di canali"
+
+#: ../../include/group.php:251 ../../mod/admin.php:998
+msgid "All Channels"
+msgstr "Tutti i canali"
+
+#: ../../include/group.php:273
+msgid "edit"
+msgstr "modifica"
+
+#: ../../include/group.php:296
+msgid "Edit group"
+msgstr "Modifica il gruppo"
+
+#: ../../include/group.php:297
+msgid "Add privacy group"
+msgstr "Crea un gruppo di canali"
+
+#: ../../include/group.php:298
+msgid "Channels not in any privacy group"
+msgstr "Canali che non sono in nessun gruppo"
+
#: ../../include/enotify.php:96
#, php-format
msgid "%s <!item_type!>"
@@ -3821,11 +3176,11 @@ msgstr "Impossibile caricare l'identitĆ  creata"
msgid "Default Profile"
msgstr "Profilo predefinito"
-#: ../../include/identity.php:772
+#: ../../include/identity.php:776
msgid "Requested channel is not available."
msgstr "Il canale che cerchi non ĆØ disponibile."
-#: ../../include/identity.php:818 ../../mod/achievements.php:11
+#: ../../include/identity.php:822 ../../mod/achievements.php:11
#: ../../mod/blocks.php:29 ../../mod/connect.php:13 ../../mod/editblock.php:29
#: ../../mod/editlayout.php:27 ../../mod/editwebpage.php:28
#: ../../mod/filestorage.php:54 ../../mod/hcard.php:8 ../../mod/layouts.php:29
@@ -3833,192 +3188,184 @@ msgstr "Il canale che cerchi non ĆØ disponibile."
msgid "Requested profile is not available."
msgstr "Il profilo richiesto non ĆØ disponibile."
-#: ../../include/identity.php:967 ../../mod/profiles.php:782
+#: ../../include/identity.php:917 ../../mod/profiles.php:782
msgid "Change profile photo"
msgstr "Cambia la foto del profilo"
-#: ../../include/identity.php:973
-msgid "Profiles"
-msgstr "Profili"
-
-#: ../../include/identity.php:973
-msgid "Manage/edit profiles"
-msgstr "Gestisci/modifica i profili"
-
-#: ../../include/identity.php:974 ../../mod/profiles.php:783
+#: ../../include/identity.php:925 ../../mod/profiles.php:783
msgid "Create New Profile"
msgstr "Crea un nuovo profilo"
-#: ../../include/identity.php:989 ../../mod/profiles.php:794
+#: ../../include/identity.php:942 ../../mod/profiles.php:794
msgid "Profile Image"
msgstr "Immagine del profilo"
-#: ../../include/identity.php:992
-msgid "visible to everybody"
-msgstr "visibile a tutti"
+#: ../../include/identity.php:945
+msgid "Visible to everybody"
+msgstr "Visibile a tutti"
-#: ../../include/identity.php:993 ../../mod/profiles.php:677
+#: ../../include/identity.php:946 ../../mod/profiles.php:677
#: ../../mod/profiles.php:798
msgid "Edit visibility"
msgstr "Cambia la visibilitĆ "
-#: ../../include/identity.php:1009 ../../include/identity.php:1252
+#: ../../include/identity.php:1022 ../../include/identity.php:1280
msgid "Gender:"
msgstr "Sesso:"
-#: ../../include/identity.php:1010 ../../include/identity.php:1296
+#: ../../include/identity.php:1023 ../../include/identity.php:1324
msgid "Status:"
msgstr "Stato:"
-#: ../../include/identity.php:1011 ../../include/identity.php:1307
+#: ../../include/identity.php:1024 ../../include/identity.php:1335
msgid "Homepage:"
msgstr "Home page:"
-#: ../../include/identity.php:1012
+#: ../../include/identity.php:1025
msgid "Online Now"
msgstr "Online adesso"
-#: ../../include/identity.php:1099 ../../include/identity.php:1177
+#: ../../include/identity.php:1113 ../../include/identity.php:1191
#: ../../mod/ping.php:318
msgid "g A l F d"
msgstr "g A l d F"
-#: ../../include/identity.php:1100 ../../include/identity.php:1178
+#: ../../include/identity.php:1114 ../../include/identity.php:1192
msgid "F d"
msgstr "d F"
-#: ../../include/identity.php:1145 ../../include/identity.php:1217
+#: ../../include/identity.php:1159 ../../include/identity.php:1231
#: ../../mod/ping.php:341
msgid "[today]"
msgstr "[oggi]"
-#: ../../include/identity.php:1156
+#: ../../include/identity.php:1170
msgid "Birthday Reminders"
msgstr "Promemoria compleanni"
-#: ../../include/identity.php:1157
+#: ../../include/identity.php:1171
msgid "Birthdays this week:"
msgstr "Compleanni questa settimana:"
-#: ../../include/identity.php:1210
+#: ../../include/identity.php:1224
msgid "[No description]"
msgstr "[Nessuna descrizione]"
-#: ../../include/identity.php:1228
+#: ../../include/identity.php:1242
msgid "Event Reminders"
msgstr "Promemoria"
-#: ../../include/identity.php:1229
+#: ../../include/identity.php:1243
msgid "Events this week:"
msgstr "Eventi della settimana:"
-#: ../../include/identity.php:1250 ../../mod/settings.php:1047
+#: ../../include/identity.php:1278 ../../mod/settings.php:1047
msgid "Full Name:"
msgstr "Nome completo:"
-#: ../../include/identity.php:1257
+#: ../../include/identity.php:1285
msgid "Like this channel"
msgstr "Mi piace questo canale"
-#: ../../include/identity.php:1281
+#: ../../include/identity.php:1309
msgid "j F, Y"
msgstr "j F Y"
-#: ../../include/identity.php:1282
+#: ../../include/identity.php:1310
msgid "j F"
msgstr "j F"
-#: ../../include/identity.php:1289
+#: ../../include/identity.php:1317
msgid "Birthday:"
msgstr "Compleanno:"
-#: ../../include/identity.php:1293 ../../mod/directory.php:302
+#: ../../include/identity.php:1321 ../../mod/directory.php:302
msgid "Age:"
msgstr "EtĆ :"
-#: ../../include/identity.php:1302
+#: ../../include/identity.php:1330
#, php-format
msgid "for %1$d %2$s"
msgstr "per %1$d %2$s"
-#: ../../include/identity.php:1305 ../../mod/profiles.php:699
+#: ../../include/identity.php:1333 ../../mod/profiles.php:699
msgid "Sexual Preference:"
msgstr "Preferenze sessuali:"
-#: ../../include/identity.php:1309 ../../mod/directory.php:318
+#: ../../include/identity.php:1337 ../../mod/directory.php:318
#: ../../mod/profiles.php:701
msgid "Hometown:"
msgstr "CittĆ  dove vivo:"
-#: ../../include/identity.php:1311
+#: ../../include/identity.php:1339
msgid "Tags:"
msgstr "Tag:"
-#: ../../include/identity.php:1313 ../../mod/profiles.php:702
+#: ../../include/identity.php:1341 ../../mod/profiles.php:702
msgid "Political Views:"
msgstr "Orientamento politico:"
-#: ../../include/identity.php:1315
+#: ../../include/identity.php:1343
msgid "Religion:"
msgstr "Religione:"
-#: ../../include/identity.php:1317 ../../mod/directory.php:320
+#: ../../include/identity.php:1345 ../../mod/directory.php:320
msgid "About:"
msgstr "Informazioni:"
-#: ../../include/identity.php:1319
+#: ../../include/identity.php:1347
msgid "Hobbies/Interests:"
msgstr "Interessi e hobby:"
-#: ../../include/identity.php:1321 ../../mod/profiles.php:705
+#: ../../include/identity.php:1349 ../../mod/profiles.php:705
msgid "Likes:"
msgstr "Mi piace:"
-#: ../../include/identity.php:1323 ../../mod/profiles.php:706
+#: ../../include/identity.php:1351 ../../mod/profiles.php:706
msgid "Dislikes:"
msgstr "Non mi piace:"
-#: ../../include/identity.php:1325
+#: ../../include/identity.php:1353
msgid "Contact information and Social Networks:"
msgstr "Contatti e social network:"
-#: ../../include/identity.php:1327
+#: ../../include/identity.php:1355
msgid "My other channels:"
msgstr "I miei altri canali:"
-#: ../../include/identity.php:1329
+#: ../../include/identity.php:1357
msgid "Musical interests:"
msgstr "Gusti musicali:"
-#: ../../include/identity.php:1331
+#: ../../include/identity.php:1359
msgid "Books, literature:"
msgstr "Libri, letteratura:"
-#: ../../include/identity.php:1333
+#: ../../include/identity.php:1361
msgid "Television:"
msgstr "Televisione:"
-#: ../../include/identity.php:1335
+#: ../../include/identity.php:1363
msgid "Film/dance/culture/entertainment:"
msgstr "Film, danza, cultura, intrattenimento:"
-#: ../../include/identity.php:1337
+#: ../../include/identity.php:1365
msgid "Love/Romance:"
msgstr "Amore:"
-#: ../../include/identity.php:1339
+#: ../../include/identity.php:1367
msgid "Work/employment:"
msgstr "Lavoro:"
-#: ../../include/identity.php:1341
+#: ../../include/identity.php:1369
msgid "School/education:"
msgstr "Scuola:"
-#: ../../include/identity.php:1361
+#: ../../include/identity.php:1389
msgid "Like this thing"
msgstr "Mi piace"
-#: ../../include/identity.php:1769 ../../mod/cover_photo.php:236
+#: ../../include/identity.php:1799 ../../mod/cover_photo.php:236
msgid "cover photo"
msgstr "Copertina del canale"
@@ -4030,6 +3377,561 @@ msgstr "Contenuti incorporati"
msgid "Embedding disabled"
msgstr "Disabilita la creazione di contenuti incorporati"
+#: ../../include/conversation.php:126 ../../mod/like.php:113
+msgid "channel"
+msgstr "il canale"
+
+#: ../../include/conversation.php:164 ../../mod/like.php:410
+#, php-format
+msgid "%1$s likes %2$s's %3$s"
+msgstr "A %1$s piace %3$s di %2$s"
+
+#: ../../include/conversation.php:167 ../../mod/like.php:412
+#, php-format
+msgid "%1$s doesn't like %2$s's %3$s"
+msgstr "A %1$s non piace %3$s di %2$s"
+
+#: ../../include/conversation.php:204
+#, php-format
+msgid "%1$s is now connected with %2$s"
+msgstr "%1$s adesso ĆØ connesso con %2$s"
+
+#: ../../include/conversation.php:239
+#, php-format
+msgid "%1$s poked %2$s"
+msgstr "%1$s ha mandato un poke a %2$s"
+
+#: ../../include/conversation.php:260 ../../mod/mood.php:63
+#, php-format
+msgctxt "mood"
+msgid "%1$s is %2$s"
+msgstr "%1$s ĆØ %2$s"
+
+#: ../../include/conversation.php:574 ../../mod/photos.php:1074
+msgctxt "title"
+msgid "Likes"
+msgstr "Mi piace"
+
+#: ../../include/conversation.php:574 ../../mod/photos.php:1074
+msgctxt "title"
+msgid "Dislikes"
+msgstr "Non mi piace"
+
+#: ../../include/conversation.php:575 ../../mod/photos.php:1075
+msgctxt "title"
+msgid "Agree"
+msgstr "D'accordo"
+
+#: ../../include/conversation.php:575 ../../mod/photos.php:1075
+msgctxt "title"
+msgid "Disagree"
+msgstr "Non d'accordo"
+
+#: ../../include/conversation.php:575 ../../mod/photos.php:1075
+msgctxt "title"
+msgid "Abstain"
+msgstr "Astenuti"
+
+#: ../../include/conversation.php:576 ../../mod/photos.php:1076
+msgctxt "title"
+msgid "Attending"
+msgstr "Partecipano"
+
+#: ../../include/conversation.php:576 ../../mod/photos.php:1076
+msgctxt "title"
+msgid "Not attending"
+msgstr "Non partecipano"
+
+#: ../../include/conversation.php:576 ../../mod/photos.php:1076
+msgctxt "title"
+msgid "Might attend"
+msgstr "Forse partecipano"
+
+#: ../../include/conversation.php:656 ../../include/ItemObject.php:126
+msgid "Select"
+msgstr "Scegli"
+
+#: ../../include/conversation.php:664 ../../include/ItemObject.php:89
+msgid "Private Message"
+msgstr "Messaggio privato"
+
+#: ../../include/conversation.php:671 ../../include/ItemObject.php:227
+msgid "Message signature validated"
+msgstr "Messaggio con firma verificata"
+
+#: ../../include/conversation.php:672 ../../include/ItemObject.php:228
+msgid "Message signature incorrect"
+msgstr "Massaggio con firma non corretta"
+
+#: ../../include/conversation.php:691
+#, php-format
+msgid "View %s's profile @ %s"
+msgstr "Vedi il profilo di %s @ %s"
+
+#: ../../include/conversation.php:710
+msgid "Categories:"
+msgstr "Categorie:"
+
+#: ../../include/conversation.php:711
+msgid "Filed under:"
+msgstr "Classificato come:"
+
+#: ../../include/conversation.php:719 ../../include/ItemObject.php:334
+#, php-format
+msgid "from %s"
+msgstr "da %s"
+
+#: ../../include/conversation.php:722 ../../include/ItemObject.php:337
+#, php-format
+msgid "last edited: %s"
+msgstr "ultima modifica: %s"
+
+#: ../../include/conversation.php:723 ../../include/ItemObject.php:338
+#, php-format
+msgid "Expires: %s"
+msgstr "Scadenza: %s"
+
+#: ../../include/conversation.php:738
+msgid "View in context"
+msgstr "Vedi nel contesto"
+
+#: ../../include/conversation.php:740 ../../include/conversation.php:1237
+#: ../../include/ItemObject.php:389 ../../mod/editblock.php:150
+#: ../../mod/editlayout.php:148 ../../mod/editpost.php:129
+#: ../../mod/editwebpage.php:190 ../../mod/photos.php:1040
+msgid "Please wait"
+msgstr "Attendere"
+
+#: ../../include/conversation.php:850
+msgid "remove"
+msgstr "rimuovi"
+
+#: ../../include/conversation.php:855
+msgid "Delete Selected Items"
+msgstr "Elimina gli oggetti selezionati"
+
+#: ../../include/conversation.php:953
+msgid "View Source"
+msgstr "Vedi il sorgente"
+
+#: ../../include/conversation.php:954
+msgid "Follow Thread"
+msgstr "Segui la discussione"
+
+#: ../../include/conversation.php:955
+msgid "Unfollow Thread"
+msgstr "Non seguire la discussione"
+
+#: ../../include/conversation.php:960
+msgid "Activity/Posts"
+msgstr "AttivitĆ  e Post"
+
+#: ../../include/conversation.php:962
+msgid "Edit Connection"
+msgstr "Modifica il contatto"
+
+#: ../../include/conversation.php:963
+msgid "Message"
+msgstr "Messaggio"
+
+#: ../../include/conversation.php:964 ../../mod/pubsites.php:27
+#: ../../mod/ratings.php:99
+msgid "Ratings"
+msgstr "Valutazioni"
+
+#: ../../include/conversation.php:1080
+#, php-format
+msgid "%s likes this."
+msgstr "Piace a %s."
+
+#: ../../include/conversation.php:1080
+#, php-format
+msgid "%s doesn't like this."
+msgstr "Non piace a %s."
+
+#: ../../include/conversation.php:1084
+#, 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] ""
+msgstr[1] "Piace a <span %1$s>%2$d persone</span>."
+
+#: ../../include/conversation.php:1086
+#, 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] ""
+msgstr[1] "Non piace a <span %1$s>%2$d persone</span>."
+
+#: ../../include/conversation.php:1092
+msgid "and"
+msgstr "e"
+
+#: ../../include/conversation.php:1095
+#, php-format
+msgid ", and %d other people"
+msgid_plural ", and %d other people"
+msgstr[0] ""
+msgstr[1] "e altre %d persone"
+
+#: ../../include/conversation.php:1096
+#, php-format
+msgid "%s like this."
+msgstr "Piace a %s."
+
+#: ../../include/conversation.php:1096
+#, php-format
+msgid "%s don't like this."
+msgstr "Non piace a %s."
+
+#: ../../include/conversation.php:1164
+msgid "Visible to <strong>everybody</strong>"
+msgstr "Visibile a <strong>tutti</strong>"
+
+#: ../../include/conversation.php:1165 ../../mod/mail.php:202
+#: ../../mod/mail.php:316
+msgid "Please enter a link URL:"
+msgstr "Inserisci l'indirizzo del link:"
+
+#: ../../include/conversation.php:1166
+msgid "Please enter a video link/URL:"
+msgstr "Inserisci l'indirizzo del video:"
+
+#: ../../include/conversation.php:1167
+msgid "Please enter an audio link/URL:"
+msgstr "Inserisci l'indirizzo dell'audio:"
+
+#: ../../include/conversation.php:1168
+msgid "Tag term:"
+msgstr "Tag:"
+
+#: ../../include/conversation.php:1169 ../../mod/filer.php:48
+msgid "Save to Folder:"
+msgstr "Salva nella cartella:"
+
+#: ../../include/conversation.php:1170
+msgid "Where are you right now?"
+msgstr "Dove sei ora?"
+
+#: ../../include/conversation.php:1171 ../../mod/editpost.php:56
+#: ../../mod/mail.php:203 ../../mod/mail.php:317
+msgid "Expires YYYY-MM-DD HH:MM"
+msgstr "Scade il YYYY-MM-DD HH:MM"
+
+#: ../../include/conversation.php:1202 ../../mod/blocks.php:154
+#: ../../mod/layouts.php:184 ../../mod/photos.php:1039
+#: ../../mod/webpages.php:184
+msgid "Share"
+msgstr "Condividi"
+
+#: ../../include/conversation.php:1204
+msgid "Page link name"
+msgstr "Nome del link alla pagina"
+
+#: ../../include/conversation.php:1207
+msgid "Post as"
+msgstr "Pubblica come "
+
+#: ../../include/conversation.php:1209 ../../include/ItemObject.php:704
+#: ../../mod/editblock.php:136 ../../mod/editlayout.php:135
+#: ../../mod/editpost.php:113 ../../mod/editwebpage.php:177
+msgid "Bold"
+msgstr "Grassetto"
+
+#: ../../include/conversation.php:1210 ../../include/ItemObject.php:705
+#: ../../mod/editblock.php:137 ../../mod/editlayout.php:136
+#: ../../mod/editpost.php:114 ../../mod/editwebpage.php:178
+msgid "Italic"
+msgstr "Corsivo"
+
+#: ../../include/conversation.php:1211 ../../include/ItemObject.php:706
+#: ../../mod/editblock.php:138 ../../mod/editlayout.php:137
+#: ../../mod/editpost.php:115 ../../mod/editwebpage.php:179
+msgid "Underline"
+msgstr "Sottolineato"
+
+#: ../../include/conversation.php:1212 ../../include/ItemObject.php:707
+#: ../../mod/editblock.php:139 ../../mod/editlayout.php:138
+#: ../../mod/editpost.php:116 ../../mod/editwebpage.php:180
+msgid "Quote"
+msgstr "Citazione"
+
+#: ../../include/conversation.php:1213 ../../include/ItemObject.php:708
+#: ../../mod/editblock.php:140 ../../mod/editlayout.php:139
+#: ../../mod/editpost.php:117 ../../mod/editwebpage.php:181
+msgid "Code"
+msgstr "Codice"
+
+#: ../../include/conversation.php:1214 ../../mod/editblock.php:142
+#: ../../mod/editlayout.php:140 ../../mod/editpost.php:118
+#: ../../mod/editwebpage.php:182
+msgid "Upload photo"
+msgstr "Carica foto"
+
+#: ../../include/conversation.php:1215
+msgid "upload photo"
+msgstr "carica foto"
+
+#: ../../include/conversation.php:1216 ../../mod/editblock.php:143
+#: ../../mod/editlayout.php:141 ../../mod/editpost.php:119
+#: ../../mod/editwebpage.php:183 ../../mod/mail.php:248 ../../mod/mail.php:378
+msgid "Attach file"
+msgstr "Allega file"
+
+#: ../../include/conversation.php:1217
+msgid "attach file"
+msgstr "allega file"
+
+#: ../../include/conversation.php:1218 ../../mod/editblock.php:144
+#: ../../mod/editlayout.php:142 ../../mod/editpost.php:120
+#: ../../mod/editwebpage.php:184 ../../mod/mail.php:249 ../../mod/mail.php:379
+msgid "Insert web link"
+msgstr "Inserisci un indirizzo web"
+
+#: ../../include/conversation.php:1219
+msgid "web link"
+msgstr "link web"
+
+#: ../../include/conversation.php:1220
+msgid "Insert video link"
+msgstr "Inserisci l'indirizzo del video"
+
+#: ../../include/conversation.php:1221
+msgid "video link"
+msgstr "link video"
+
+#: ../../include/conversation.php:1222
+msgid "Insert audio link"
+msgstr "Inserisci l'indirizzo dell'audio"
+
+#: ../../include/conversation.php:1223
+msgid "audio link"
+msgstr "link audio"
+
+#: ../../include/conversation.php:1224 ../../mod/editblock.php:148
+#: ../../mod/editlayout.php:146 ../../mod/editpost.php:124
+#: ../../mod/editwebpage.php:188
+msgid "Set your location"
+msgstr "La tua localitĆ "
+
+#: ../../include/conversation.php:1225
+msgid "set location"
+msgstr "la tua localitĆ "
+
+#: ../../include/conversation.php:1226 ../../mod/editpost.php:126
+msgid "Toggle voting"
+msgstr "Abilita/disabilita il voto"
+
+#: ../../include/conversation.php:1229 ../../mod/editblock.php:149
+#: ../../mod/editlayout.php:147 ../../mod/editpost.php:125
+#: ../../mod/editwebpage.php:189
+msgid "Clear browser location"
+msgstr "Rimuovi la localitĆ  data dal browser"
+
+#: ../../include/conversation.php:1230
+msgid "clear location"
+msgstr "rimuovi la localitĆ "
+
+#: ../../include/conversation.php:1232 ../../mod/editblock.php:162
+#: ../../mod/editpost.php:141 ../../mod/editwebpage.php:205
+msgid "Title (optional)"
+msgstr "Titolo (facoltativo)"
+
+#: ../../include/conversation.php:1236 ../../mod/editblock.php:165
+#: ../../mod/editlayout.php:163 ../../mod/editpost.php:143
+#: ../../mod/editwebpage.php:207
+msgid "Categories (optional, comma-separated list)"
+msgstr "Categorie (facoltative, lista separata da virgole)"
+
+#: ../../include/conversation.php:1238 ../../mod/editblock.php:151
+#: ../../mod/editlayout.php:149 ../../mod/editpost.php:130
+#: ../../mod/editwebpage.php:191 ../../mod/events.php:466
+msgid "Permission settings"
+msgstr "Permessi dei tuoi contatti"
+
+#: ../../include/conversation.php:1239
+msgid "permissions"
+msgstr "permessi"
+
+#: ../../include/conversation.php:1247 ../../mod/editblock.php:159
+#: ../../mod/editlayout.php:156 ../../mod/editpost.php:138
+#: ../../mod/editwebpage.php:200
+msgid "Public post"
+msgstr "Post pubblico"
+
+#: ../../include/conversation.php:1249 ../../mod/editblock.php:166
+#: ../../mod/editlayout.php:164 ../../mod/editpost.php:144
+#: ../../mod/editwebpage.php:208
+msgid "Example: bob@example.com, mary@example.com"
+msgstr "Per esempio: mario@esempio.com, simona@esempio.com"
+
+#: ../../include/conversation.php:1262 ../../mod/editblock.php:176
+#: ../../mod/editlayout.php:173 ../../mod/editpost.php:155
+#: ../../mod/editwebpage.php:217 ../../mod/mail.php:253 ../../mod/mail.php:383
+msgid "Set expiration date"
+msgstr "Data di scadenza"
+
+#: ../../include/conversation.php:1265
+msgid "Set publish date"
+msgstr "Data di uscita programmata"
+
+#: ../../include/conversation.php:1267 ../../include/ItemObject.php:715
+#: ../../mod/editpost.php:157 ../../mod/mail.php:255 ../../mod/mail.php:385
+msgid "Encrypt text"
+msgstr "Cifratura del messaggio"
+
+#: ../../include/conversation.php:1269 ../../mod/editpost.php:159
+msgid "OK"
+msgstr "OK"
+
+#: ../../include/conversation.php:1270 ../../mod/editpost.php:160
+#: ../../mod/fbrowser.php:77 ../../mod/fbrowser.php:112
+#: ../../mod/settings.php:598 ../../mod/settings.php:624
+#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:134
+msgid "Cancel"
+msgstr "Annulla"
+
+#: ../../include/conversation.php:1513
+msgid "Discover"
+msgstr "Scopri"
+
+#: ../../include/conversation.php:1516
+msgid "Imported public streams"
+msgstr "Contenuti pubblici importati"
+
+#: ../../include/conversation.php:1521
+msgid "Commented Order"
+msgstr "Commenti recenti"
+
+#: ../../include/conversation.php:1524
+msgid "Sort by Comment Date"
+msgstr "Per data del commento"
+
+#: ../../include/conversation.php:1528
+msgid "Posted Order"
+msgstr "Post recenti"
+
+#: ../../include/conversation.php:1531
+msgid "Sort by Post Date"
+msgstr "Per data di creazione"
+
+#: ../../include/conversation.php:1539
+msgid "Posts that mention or involve you"
+msgstr "Post che ti riguardano"
+
+#: ../../include/conversation.php:1545 ../../mod/connections.php:72
+#: ../../mod/connections.php:82 ../../mod/menu.php:112
+msgid "New"
+msgstr "NovitĆ "
+
+#: ../../include/conversation.php:1548
+msgid "Activity Stream - by date"
+msgstr "Elenco attivitĆ  - per data"
+
+#: ../../include/conversation.php:1554
+msgid "Starred"
+msgstr "Preferiti"
+
+#: ../../include/conversation.php:1557
+msgid "Favourite Posts"
+msgstr "Post preferiti"
+
+#: ../../include/conversation.php:1564
+msgid "Spam"
+msgstr "Spam"
+
+#: ../../include/conversation.php:1567
+msgid "Posts flagged as SPAM"
+msgstr "Post marcati come spam"
+
+#: ../../include/conversation.php:1620 ../../mod/admin.php:1157
+msgid "Channel"
+msgstr "Canale"
+
+#: ../../include/conversation.php:1623
+msgid "Status Messages and Posts"
+msgstr "Post e messaggi di stato"
+
+#: ../../include/conversation.php:1632
+msgid "About"
+msgstr "Informazioni"
+
+#: ../../include/conversation.php:1635
+msgid "Profile Details"
+msgstr "Dettagli del profilo"
+
+#: ../../include/conversation.php:1651
+msgid "Files and Storage"
+msgstr "Archivio file"
+
+#: ../../include/conversation.php:1672 ../../include/conversation.php:1675
+msgid "Chatrooms"
+msgstr "Chat"
+
+#: ../../include/conversation.php:1688
+msgid "Saved Bookmarks"
+msgstr "Segnalibri salvati"
+
+#: ../../include/conversation.php:1698
+msgid "Manage Webpages"
+msgstr "Gestisci le pagine web"
+
+#: ../../include/conversation.php:1727 ../../include/ItemObject.php:175
+#: ../../include/ItemObject.php:187 ../../mod/photos.php:1093
+#: ../../mod/photos.php:1105
+msgid "View all"
+msgstr "Vedi tutto"
+
+#: ../../include/conversation.php:1754 ../../include/ItemObject.php:184
+#: ../../mod/photos.php:1102
+msgctxt "noun"
+msgid "Dislike"
+msgid_plural "Dislikes"
+msgstr[0] "Non mi piace"
+msgstr[1] "Non mi piace"
+
+#: ../../include/conversation.php:1757
+msgctxt "noun"
+msgid "Attending"
+msgid_plural "Attending"
+msgstr[0] "Partecipa"
+msgstr[1] "Partecipano"
+
+#: ../../include/conversation.php:1760
+msgctxt "noun"
+msgid "Not Attending"
+msgid_plural "Not Attending"
+msgstr[0] "Non partecipa"
+msgstr[1] "Non partecipano"
+
+#: ../../include/conversation.php:1763
+msgctxt "noun"
+msgid "Undecided"
+msgid_plural "Undecided"
+msgstr[0] "Indeciso"
+msgstr[1] "Indecisi"
+
+#: ../../include/conversation.php:1766
+msgctxt "noun"
+msgid "Agree"
+msgid_plural "Agrees"
+msgstr[0] "D'accordo"
+msgstr[1] "D'accordo"
+
+#: ../../include/conversation.php:1769
+msgctxt "noun"
+msgid "Disagree"
+msgid_plural "Disagrees"
+msgstr[0] "Non d'accordo"
+msgstr[1] "Non d'accordo"
+
+#: ../../include/conversation.php:1772
+msgctxt "noun"
+msgid "Abstain"
+msgid_plural "Abstains"
+msgstr[0] "Astenuto"
+msgstr[1] "Astenuti"
+
#: ../../include/ItemObject.php:130
msgid "Save to Folder"
msgstr "Salva nella cartella"
@@ -4306,6 +4208,106 @@ msgstr "Speciale - Repository di gruppo"
msgid "Custom/Expert Mode"
msgstr "Personalizzazione per esperti"
+#: ../../include/items.php:423 ../../index.php:179 ../../mod/dreport.php:6
+#: ../../mod/dreport.php:45 ../../mod/group.php:68
+#: ../../mod/import_items.php:108 ../../mod/like.php:280
+#: ../../mod/profperm.php:23 ../../mod/subthread.php:58
+msgid "Permission denied"
+msgstr "Permesso negato"
+
+#: ../../include/items.php:1138 ../../include/items.php:1184
+msgid "(Unknown)"
+msgstr "(Sconosciuto)"
+
+#: ../../include/items.php:1384
+msgid "Visible to anybody on the internet."
+msgstr "Visibile a chiunque su internet."
+
+#: ../../include/items.php:1386
+msgid "Visible to you only."
+msgstr "Visibile solo a te."
+
+#: ../../include/items.php:1388
+msgid "Visible to anybody in this network."
+msgstr "Visibile a tutti su questa rete."
+
+#: ../../include/items.php:1390
+msgid "Visible to anybody authenticated."
+msgstr "Visibile a chiunque sia autenticato."
+
+#: ../../include/items.php:1392
+#, php-format
+msgid "Visible to anybody on %s."
+msgstr "Visibile a tutti su %s."
+
+#: ../../include/items.php:1394
+msgid "Visible to all connections."
+msgstr "Visibile a tutti coloro che ti seguono."
+
+#: ../../include/items.php:1396
+msgid "Visible to approved connections."
+msgstr "Visibile ai contatti approvati."
+
+#: ../../include/items.php:1398
+msgid "Visible to specific connections."
+msgstr "Visibile ad alcuni contatti scelti."
+
+#: ../../include/items.php:4496 ../../mod/display.php:36
+#: ../../mod/filestorage.php:27 ../../mod/admin.php:141
+#: ../../mod/admin.php:1189 ../../mod/admin.php:1434 ../../mod/thing.php:85
+#: ../../mod/viewsrc.php:20
+msgid "Item not found."
+msgstr "Elemento non trovato."
+
+#: ../../include/items.php:5032 ../../mod/group.php:38 ../../mod/group.php:137
+msgid "Privacy group not found."
+msgstr "Gruppo di canali non trovato."
+
+#: ../../include/items.php:5048
+msgid "Privacy group is empty."
+msgstr "Gruppo di canali vuoto."
+
+#: ../../include/items.php:5055
+#, php-format
+msgid "Privacy group: %s"
+msgstr "Gruppo di canali: %s"
+
+#: ../../include/items.php:5065 ../../mod/connedit.php:701
+#, php-format
+msgid "Connection: %s"
+msgstr "Contatto: %s"
+
+#: ../../include/items.php:5067
+msgid "Connection not found."
+msgstr "Contatto non trovato."
+
+#: ../../include/items.php:5493 ../../mod/cover_photo.php:229
+msgid "female"
+msgstr "femmina"
+
+#: ../../include/items.php:5494 ../../mod/cover_photo.php:230
+#, php-format
+msgid "%1$s updated her %2$s"
+msgstr "Aggiornamento: %2$s di %1$s"
+
+#: ../../include/items.php:5495 ../../mod/cover_photo.php:231
+msgid "male"
+msgstr "maschio"
+
+#: ../../include/items.php:5496 ../../mod/cover_photo.php:232
+#, php-format
+msgid "%1$s updated his %2$s"
+msgstr "Aggiornamento: %2$s di %1$s"
+
+#: ../../include/items.php:5498 ../../mod/cover_photo.php:234
+#, php-format
+msgid "%1$s updated their %2$s"
+msgstr "Aggiornamento: %2$s di %1$s"
+
+#: ../../include/items.php:5500
+msgid "profile photo"
+msgstr "foto del profilo"
+
#: ../../mod/achievements.php:34
msgid "Some blurb about what to do when you're new here"
msgstr "Qualche suggerimento per i nuovi utenti su cosa fare"
@@ -4364,7 +4366,7 @@ msgstr "Nome app"
msgid "Location (URL) of app"
msgstr "Indirizzo (URL) della app"
-#: ../../mod/appman.php:93 ../../mod/events.php:450 ../../mod/rbmark.php:97
+#: ../../mod/appman.php:93 ../../mod/events.php:457 ../../mod/rbmark.php:97
msgid "Description"
msgstr "Descrizione"
@@ -4397,6 +4399,7 @@ msgid "Invalid item."
msgstr "Elemento non valido."
#: ../../mod/block.php:39 ../../mod/page.php:52 ../../mod/wall_upload.php:29
+#: ../../mod/cal.php:56
msgid "Channel not found."
msgstr "Canale non trovato."
@@ -4633,7 +4636,7 @@ msgstr "Approva"
msgid "Ignore connection"
msgstr "Ignora il contatto"
-#: ../../mod/connections.php:273 ../../mod/connedit.php:538
+#: ../../mod/connections.php:273 ../../mod/connedit.php:545
#: ../../mod/notifications.php:51
msgid "Ignore"
msgstr "Ignora"
@@ -4670,218 +4673,218 @@ msgstr "Impossibile aggiornare le informazioni del contatto."
msgid "is now connected to"
msgstr "ha come nuovo contatto"
-#: ../../mod/connedit.php:400
+#: ../../mod/connedit.php:407
msgid "Could not access address book record."
msgstr "Impossibile accedere alle informazioni della rubrica."
-#: ../../mod/connedit.php:414
+#: ../../mod/connedit.php:421
msgid "Refresh failed - channel is currently unavailable."
msgstr "Il canale non ĆØ disponibile - impossibile aggiornare."
-#: ../../mod/connedit.php:429 ../../mod/connedit.php:438
-#: ../../mod/connedit.php:447 ../../mod/connedit.php:456
-#: ../../mod/connedit.php:469
+#: ../../mod/connedit.php:436 ../../mod/connedit.php:445
+#: ../../mod/connedit.php:454 ../../mod/connedit.php:463
+#: ../../mod/connedit.php:476
msgid "Unable to set address book parameters."
msgstr "Impossibile impostare i parametri della rubrica."
-#: ../../mod/connedit.php:493
+#: ../../mod/connedit.php:500
msgid "Connection has been removed."
msgstr "Il contatto ĆØ stato rimosso."
-#: ../../mod/connedit.php:512
+#: ../../mod/connedit.php:519
#, php-format
msgid "View %s's profile"
msgstr "Guarda il profilo di %s"
-#: ../../mod/connedit.php:516
+#: ../../mod/connedit.php:523
msgid "Refresh Permissions"
msgstr "Modifica i permessi"
-#: ../../mod/connedit.php:519
+#: ../../mod/connedit.php:526
msgid "Fetch updated permissions"
msgstr "Guarda e modifica i permessi assegnati"
-#: ../../mod/connedit.php:523
+#: ../../mod/connedit.php:530
msgid "Recent Activity"
msgstr "AttivitĆ  recenti"
-#: ../../mod/connedit.php:526
+#: ../../mod/connedit.php:533
msgid "View recent posts and comments"
msgstr "Leggi i post recenti e i commenti"
-#: ../../mod/connedit.php:530 ../../mod/admin.php:995
+#: ../../mod/connedit.php:537 ../../mod/admin.php:995
msgid "Unblock"
msgstr "Sblocca"
-#: ../../mod/connedit.php:530 ../../mod/admin.php:994
+#: ../../mod/connedit.php:537 ../../mod/admin.php:994
msgid "Block"
msgstr "Blocca"
-#: ../../mod/connedit.php:533
+#: ../../mod/connedit.php:540
msgid "Block (or Unblock) all communications with this connection"
msgstr "Blocca ogni interazione con questo contatto (abilita/disabilita)"
-#: ../../mod/connedit.php:534
+#: ../../mod/connedit.php:541
msgid "This connection is blocked!"
msgstr "Questa connessione ĆØ tra quelle bloccate!"
-#: ../../mod/connedit.php:538
+#: ../../mod/connedit.php:545
msgid "Unignore"
msgstr "Non ignorare"
-#: ../../mod/connedit.php:541
+#: ../../mod/connedit.php:548
msgid "Ignore (or Unignore) all inbound communications from this connection"
msgstr "Ignora tutte le comunicazioni in arrivo da questo contatto (abilita/disabilita)"
-#: ../../mod/connedit.php:542
+#: ../../mod/connedit.php:549
msgid "This connection is ignored!"
msgstr "Questa connessione ĆØ tra quelle ignorate!"
-#: ../../mod/connedit.php:546
+#: ../../mod/connedit.php:553
msgid "Unarchive"
msgstr "Non archiviare"
-#: ../../mod/connedit.php:546
+#: ../../mod/connedit.php:553
msgid "Archive"
msgstr "Archivia"
-#: ../../mod/connedit.php:549
+#: ../../mod/connedit.php:556
msgid ""
"Archive (or Unarchive) this connection - mark channel dead but keep content"
msgstr "Archivia questo contatto (abilita/disabilita) - segna il canale come non piĆ¹ attivo ma ne conserva i contenuti"
-#: ../../mod/connedit.php:550
+#: ../../mod/connedit.php:557
msgid "This connection is archived!"
msgstr "Questa connessione ĆØ tra quelle archiviate!"
-#: ../../mod/connedit.php:554
+#: ../../mod/connedit.php:561
msgid "Unhide"
msgstr "Non nascondere"
-#: ../../mod/connedit.php:554
+#: ../../mod/connedit.php:561
msgid "Hide"
msgstr "Nascondi"
-#: ../../mod/connedit.php:557
+#: ../../mod/connedit.php:564
msgid "Hide or Unhide this connection from your other connections"
msgstr "Nascondi questo contatto a tutti gli altri (abilita/disabilita)"
-#: ../../mod/connedit.php:558
+#: ../../mod/connedit.php:565
msgid "This connection is hidden!"
msgstr "Questa connessione ĆØ tra quelle nascoste!"
-#: ../../mod/connedit.php:565
+#: ../../mod/connedit.php:572
msgid "Delete this connection"
msgstr "Elimina questo contatto"
-#: ../../mod/connedit.php:646
+#: ../../mod/connedit.php:653
msgid "Approve this connection"
msgstr "Approva questo contatto"
-#: ../../mod/connedit.php:646
+#: ../../mod/connedit.php:653
msgid "Accept connection to allow communication"
msgstr "Entra in contatto per poter comunicare"
-#: ../../mod/connedit.php:651
+#: ../../mod/connedit.php:658
msgid "Set Affinity"
msgstr "Scegli l'affinitĆ "
-#: ../../mod/connedit.php:654
+#: ../../mod/connedit.php:661
msgid "Set Profile"
msgstr "Scegli il profilo da mostrare"
-#: ../../mod/connedit.php:657
+#: ../../mod/connedit.php:664
msgid "Set Affinity & Profile"
msgstr "AffinitĆ  e profilo"
-#: ../../mod/connedit.php:690
+#: ../../mod/connedit.php:697
msgid "none"
msgstr "--"
-#: ../../mod/connedit.php:695
+#: ../../mod/connedit.php:702
msgid "Apply these permissions automatically"
msgstr "Applica automaticamente questi permessi"
-#: ../../mod/connedit.php:695
+#: ../../mod/connedit.php:702
msgid "Connection requests will be approved without your interaction"
msgstr "Le richieste di entrare in contatto saranno approvate in automatico"
-#: ../../mod/connedit.php:697
+#: ../../mod/connedit.php:704
msgid "This connection's primary address is"
msgstr "Indirizzo primario di questo canale"
-#: ../../mod/connedit.php:698
+#: ../../mod/connedit.php:705
msgid "Available locations:"
msgstr "Indirizzi disponibili"
-#: ../../mod/connedit.php:702
+#: ../../mod/connedit.php:709
msgid ""
"The permissions indicated on this page will be applied to all new "
"connections."
msgstr "I permessi indicati su questa pagina saranno applicati a tutti i nuovi contatti da ora in poi."
-#: ../../mod/connedit.php:704
+#: ../../mod/connedit.php:711
msgid "Slide to adjust your degree of friendship"
msgstr "Trascina per restringere il grado di amicizia da mostrare"
-#: ../../mod/connedit.php:706
+#: ../../mod/connedit.php:713
msgid "Slide to adjust your rating"
msgstr "Trascina per cambiare la tua valutazione"
-#: ../../mod/connedit.php:707 ../../mod/connedit.php:712
+#: ../../mod/connedit.php:714 ../../mod/connedit.php:719
msgid "Optionally explain your rating"
msgstr "Commento facoltativo"
-#: ../../mod/connedit.php:709
+#: ../../mod/connedit.php:716
msgid "Custom Filter"
msgstr "Filtro personalizzato"
-#: ../../mod/connedit.php:710
+#: ../../mod/connedit.php:717
msgid "Only import posts with this text"
msgstr "Importa solo i post che contengono queste parole chiave"
-#: ../../mod/connedit.php:710 ../../mod/connedit.php:711
+#: ../../mod/connedit.php:717 ../../mod/connedit.php:718
msgid ""
"words one per line or #tags or /patterns/ or lang=xx, leave blank to import "
"all posts"
msgstr "per ogni riga: parole, #tag, /pattern/ o lang=xx , lascia vuoto per importare tutto"
-#: ../../mod/connedit.php:711
+#: ../../mod/connedit.php:718
msgid "Do not import posts with this text"
msgstr "Non importare i post con queste parole chiave"
-#: ../../mod/connedit.php:713
+#: ../../mod/connedit.php:720
msgid "This information is public!"
msgstr "Questa informazione ĆØ pubblica!"
-#: ../../mod/connedit.php:718
+#: ../../mod/connedit.php:725
msgid "Connection Pending Approval"
msgstr "Contatti in attesa di approvazione"
-#: ../../mod/connedit.php:721
+#: ../../mod/connedit.php:728
msgid "inherited"
msgstr "derivato"
-#: ../../mod/connedit.php:723
+#: ../../mod/connedit.php:730
#, php-format
msgid ""
"Please choose the profile you would like to display to %s when viewing your "
"profile securely."
msgstr "Seleziona il profilo che vuoi mostrare a %s dopo che ha effettuato l'accesso."
-#: ../../mod/connedit.php:725
+#: ../../mod/connedit.php:732
msgid "Their Settings"
msgstr "Permessi concessi a te"
-#: ../../mod/connedit.php:726
+#: ../../mod/connedit.php:733
msgid "My Settings"
msgstr "Permessi che concedo"
-#: ../../mod/connedit.php:728
+#: ../../mod/connedit.php:735
msgid "Individual Permissions"
msgstr "Permessi individuali"
-#: ../../mod/connedit.php:729
+#: ../../mod/connedit.php:736
msgid ""
"Some permissions may be inherited from your channel's <a "
"href=\"settings\"><strong>privacy settings</strong></a>, which have higher "
@@ -4889,7 +4892,7 @@ msgid ""
" settings here."
msgstr "Alcuni permessi derivano dalle <a href=\"settings\"><strong>impostazioni di privacy</strong></a> del tuo canale, che hanno prioritĆ  assoluta su qualsiasi altra impostazione scelta per i singoli contatti. Da questa pagina <strong>non</strong> puoi cambiarle."
-#: ../../mod/connedit.php:730
+#: ../../mod/connedit.php:737
msgid ""
"Some permissions may be inherited from your channel's <a "
"href=\"settings\"><strong>privacy settings</strong></a>, which have higher "
@@ -4897,7 +4900,7 @@ msgid ""
"they wont have any impact unless the inherited setting changes."
msgstr "Alcuni permessi derivano dalle <a href=\"settings\"><strong>impostazioni di privacy</strong></a> del tuo canale, che hanno prioritĆ  assoluta su qualsiasi altra impostazione scelta per i singoli contatti. Le personalizzazioni che effettuerai qui potrebbero non essere effettive a meno che tu non cambi le impostazioni generali."
-#: ../../mod/connedit.php:731
+#: ../../mod/connedit.php:738
msgid "Last update:"
msgstr "Ultimo aggiornamento:"
@@ -5153,114 +5156,115 @@ msgstr "Sono necessari il titolo e l'ora d'inizio dell'evento."
msgid "Event not found."
msgstr "Evento non trovato."
-#: ../../mod/events.php:437
+#: ../../mod/events.php:444
msgid "Edit event title"
msgstr "Modifica il titolo dell'evento"
-#: ../../mod/events.php:437
+#: ../../mod/events.php:444
msgid "Event title"
msgstr "Titolo dell'evento"
-#: ../../mod/events.php:439
+#: ../../mod/events.php:446
msgid "Categories (comma-separated list)"
msgstr "Categorie (separate da virgola)"
-#: ../../mod/events.php:440
+#: ../../mod/events.php:447
msgid "Edit Category"
msgstr "Modifica la categoria"
-#: ../../mod/events.php:440
+#: ../../mod/events.php:447
msgid "Category"
msgstr "Categoria"
-#: ../../mod/events.php:443
+#: ../../mod/events.php:450
msgid "Edit start date and time"
msgstr "Modifica data/ora di inizio"
-#: ../../mod/events.php:443
+#: ../../mod/events.php:450
msgid "Start date and time"
msgstr "Data e ora di inizio"
-#: ../../mod/events.php:444 ../../mod/events.php:447
+#: ../../mod/events.php:451 ../../mod/events.php:454
msgid "Finish date and time are not known or not relevant"
msgstr "La data e l'ora di fine non sono necessarie"
-#: ../../mod/events.php:446
+#: ../../mod/events.php:453
msgid "Edit finish date and time"
msgstr "Modifica data/ora di fine"
-#: ../../mod/events.php:446
+#: ../../mod/events.php:453
msgid "Finish date and time"
msgstr "Data e ora di fine"
-#: ../../mod/events.php:448 ../../mod/events.php:449
+#: ../../mod/events.php:455 ../../mod/events.php:456
msgid "Adjust for viewer timezone"
msgstr "Adatta al fuso orario di chi legge"
-#: ../../mod/events.php:448
+#: ../../mod/events.php:455
msgid ""
"Important for events that happen in a particular place. Not practical for "
"global holidays."
msgstr "Importante per eventi che avvengono online ma con un certo fuso orario."
-#: ../../mod/events.php:450
+#: ../../mod/events.php:457
msgid "Edit Description"
msgstr "Modifica la descrizione"
-#: ../../mod/events.php:452
+#: ../../mod/events.php:459
msgid "Edit Location"
msgstr "Modifica il luogo"
-#: ../../mod/events.php:455 ../../mod/events.php:457
+#: ../../mod/events.php:462 ../../mod/events.php:464
msgid "Share this event"
msgstr "Condividi questo evento"
-#: ../../mod/events.php:462
+#: ../../mod/events.php:469
msgid "Advanced Options"
msgstr "Opzioni avanzate"
-#: ../../mod/events.php:574
+#: ../../mod/events.php:581 ../../mod/cal.php:253
msgid "l, F j"
msgstr "l j F"
-#: ../../mod/events.php:596
+#: ../../mod/events.php:603
msgid "Edit event"
msgstr "Modifica l'evento"
-#: ../../mod/events.php:598
+#: ../../mod/events.php:605
msgid "Delete event"
msgstr "Elimina l'evento"
-#: ../../mod/events.php:632
+#: ../../mod/events.php:639
msgid "calendar"
msgstr "calendario"
-#: ../../mod/events.php:651
+#: ../../mod/events.php:658 ../../mod/cal.php:325
msgid "Edit Event"
msgstr "Modifica l'evento"
-#: ../../mod/events.php:651
+#: ../../mod/events.php:658 ../../mod/cal.php:325
msgid "Create Event"
msgstr "Crea un evento"
-#: ../../mod/events.php:652 ../../mod/events.php:659 ../../mod/photos.php:916
+#: ../../mod/events.php:659 ../../mod/events.php:666 ../../mod/photos.php:916
+#: ../../mod/cal.php:326 ../../mod/cal.php:333
msgid "Previous"
msgstr "Precendente"
-#: ../../mod/events.php:653 ../../mod/events.php:660 ../../mod/photos.php:925
-#: ../../mod/setup.php:288
+#: ../../mod/events.php:660 ../../mod/events.php:667 ../../mod/photos.php:925
+#: ../../mod/setup.php:291 ../../mod/cal.php:327 ../../mod/cal.php:334
msgid "Next"
msgstr "Successivo"
-#: ../../mod/events.php:661
+#: ../../mod/events.php:668 ../../mod/cal.php:335
msgid "Today"
msgstr "Oggi"
-#: ../../mod/events.php:692
+#: ../../mod/events.php:699
msgid "Event removed"
msgstr "Evento eliminato"
-#: ../../mod/events.php:695
+#: ../../mod/events.php:702
msgid "Failed to remove event"
msgstr "Impossibile eliminare l'evento"
@@ -5320,7 +5324,7 @@ msgstr "Mostra l'URL del file"
msgid "Notify your contacts about this file"
msgstr "Notifica ai contatti che hai caricato questo file"
-#: ../../mod/follow.php:25
+#: ../../mod/follow.php:27
msgid "Channel added."
msgstr "Canale aggiunto."
@@ -5518,42 +5522,42 @@ msgstr "La tecnologia del server non ĆØ compatibile. Operazione non permessa."
msgid "No channel. Import failed."
msgstr "Nessun canale. Import fallito."
-#: ../../mod/import.php:518
+#: ../../mod/import.php:533
msgid "You must be logged in to use this feature."
msgstr "Per questa funzionalitĆ  devi aver effettuato l'accesso."
-#: ../../mod/import.php:523
+#: ../../mod/import.php:538
msgid "Import Channel"
msgstr "Importa un canale"
-#: ../../mod/import.php:524
+#: ../../mod/import.php:539
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 "Usa questo modulo per importare un tuo canale da un altro hub. Puoi ottenere i dati identificativi del canale direttamente dall'altro hub oppure tramite un file esportato in precedenza."
-#: ../../mod/import.php:525 ../../mod/import_items.php:115
+#: ../../mod/import.php:540 ../../mod/import_items.php:115
msgid "File to Upload"
msgstr "File da caricare"
-#: ../../mod/import.php:526
+#: ../../mod/import.php:541
msgid "Or provide the old server/hub details"
msgstr "Oppure fornisci i dettagli del vecchio hub"
-#: ../../mod/import.php:527
+#: ../../mod/import.php:542
msgid "Your old identity address (xyz@example.com)"
msgstr "Il tuo vecchio identificativo (per esempio pippo@esempio.com)"
-#: ../../mod/import.php:528
+#: ../../mod/import.php:543
msgid "Your old login email address"
msgstr "L'email che usavi per accedere sul vecchio hub"
-#: ../../mod/import.php:529
+#: ../../mod/import.php:544
msgid "Your old login password"
msgstr "La password per il vecchio hub"
-#: ../../mod/import.php:530
+#: ../../mod/import.php:545
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"
@@ -5561,17 +5565,17 @@ msgid ""
"primary location for files, photos, and media."
msgstr "Scegli se vuoi spostare il tuo indirizzo primario su questo hub, oppure se preferisci che quello vecchio resti tale. Potrai pubblicare da entrambi i hub, ma solamente uno sarĆ  indicato come la posizione su cui risiedono i tuoi file, foto, ecc."
-#: ../../mod/import.php:531
+#: ../../mod/import.php:546
msgid "Make this hub my primary location"
msgstr "Rendi questo hub il mio indirizzo primario"
-#: ../../mod/import.php:532
+#: ../../mod/import.php:547
msgid ""
"Import existing posts if possible (experimental - limited by available "
"memory"
msgstr "Importa i contenuti pubblicati, se possibile (sperimentale)"
-#: ../../mod/import.php:533
+#: ../../mod/import.php:548
msgid ""
"This process may take several minutes to complete. Please submit the form "
"only once and leave this page open until finished."
@@ -5672,24 +5676,24 @@ msgstr "Il post vuoto ĆØ stato ignorato."
msgid "Executable content type not permitted to this channel."
msgstr "I contenuti eseguibili non sono permessi su questo canale."
-#: ../../mod/item.php:830
+#: ../../mod/item.php:843
msgid "Duplicate post suppressed."
msgstr "I post duplicati sono scartati."
-#: ../../mod/item.php:960
+#: ../../mod/item.php:973
msgid "System error. Post not saved."
msgstr "Errore di sistema. Post non salvato."
-#: ../../mod/item.php:1227
+#: ../../mod/item.php:1240
msgid "Unable to obtain post information from database."
msgstr "Impossibile caricare il post dal database."
-#: ../../mod/item.php:1234
+#: ../../mod/item.php:1247
#, php-format
msgid "You have reached your limit of %1$.0f top level posts."
msgstr "Hai raggiunto il limite massimo di %1$.0f post sulla pagina principale."
-#: ../../mod/item.php:1241
+#: ../../mod/item.php:1254
#, php-format
msgid "You have reached your limit of %1$.0f webpages."
msgstr "Hai raggiunto il limite massimo di %1$.0f pagine web."
@@ -5766,11 +5770,11 @@ msgstr "%3$s di %2$s: %1$s non partecipa"
msgid "%1$s may attend %2$s's %3$s"
msgstr "%3$s di %2$s: %1$s forse partecipa"
-#: ../../mod/like.php:520
+#: ../../mod/like.php:527
msgid "Action completed."
msgstr "Comando completato."
-#: ../../mod/like.php:521
+#: ../../mod/like.php:528
msgid "Thank you."
msgstr "Grazie."
@@ -5937,7 +5941,7 @@ msgstr "Invia la risposta"
msgid "Your message for %s (%s):"
msgstr "Il tuo messaggio per %s (%s):"
-#: ../../mod/manage.php:130 ../../mod/new_channel.php:125
+#: ../../mod/manage.php:130 ../../mod/new_channel.php:117
#, php-format
msgid "You have created %1$.0f of %2$.0f allowed channels."
msgstr "Hai creato %1$.0f dei %2$.0f canali permessi."
@@ -6236,51 +6240,52 @@ msgstr "Gruppo di canali:"
msgid "Invalid connection."
msgstr "Contatto non valido."
-#: ../../mod/new_channel.php:132
+#: ../../mod/new_channel.php:124 ../../mod/register.php:227
msgid "Name or caption"
msgstr "Nome o titolo"
-#: ../../mod/new_channel.php:132
+#: ../../mod/new_channel.php:124 ../../mod/register.php:227
msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""
msgstr "Per esempio: \"Mario Rossi\", \"Lisa e le sue ricette\", \"Il campionato\", \"Il gruppo di escursionismo\""
-#: ../../mod/new_channel.php:134 ../../mod/register.php:249
+#: ../../mod/new_channel.php:126 ../../mod/register.php:229
msgid "Choose a short nickname"
msgstr "Scegli un nome breve"
-#: ../../mod/new_channel.php:134
+#: ../../mod/new_channel.php:126 ../../mod/register.php:229
#, php-format
msgid ""
"Your nickname will be used to create an easy to remember channel address "
"e.g. nickname%s"
msgstr "Il nome breve sarĆ  usato per creare un indirizzo facile da ricordare per il tuo canale, per esempio nickname%s"
-#: ../../mod/new_channel.php:136
+#: ../../mod/new_channel.php:128 ../../mod/register.php:231
msgid "Channel role and privacy"
msgstr "Tipo di canale e privacy"
-#: ../../mod/new_channel.php:136
+#: ../../mod/new_channel.php:128 ../../mod/register.php:231
msgid "Select a channel role with your privacy requirements."
msgstr "Scegli il tipo di canale che vuoi e la privacy da applicare."
-#: ../../mod/new_channel.php:136 ../../mod/register.php:254
+#: ../../mod/new_channel.php:128 ../../mod/register.php:231
msgid "Read more about roles"
msgstr "Maggiori informazioni sui ruoli"
-#: ../../mod/new_channel.php:139
-msgid "Create a Channel"
+#: ../../mod/new_channel.php:131
+msgid "Create Channel"
msgstr "Crea un canale"
-#: ../../mod/new_channel.php:140
+#: ../../mod/new_channel.php:132
msgid ""
-"A channel is your identity on the grid. It can represent a person, a blog, "
-"or a forum to name a few. Channels can make connections with other channels "
-"to share information with highly detailed permissions."
-msgstr "Un canale ĆØ la tua identitĆ  sulla rete. PuĆ² rappresentare una persona, un blog o un forum, per esempio. I canali possono essere in contatto con altri canali per condividere i loro contenuti con permessi anche molto dettagliati."
+"A channel is your identity on this network. It can represent a person, a "
+"blog, or a forum to name a few. Channels can make connections with other "
+"channels to share information with highly detailed permissions."
+msgstr "Un canale ĆØ la tua identitĆ  su questa rete. PuĆ² rappresentare una persona, un blog o un forum, per esempio. I canali possono essere in contatto con altri canali per condividere i loro contenuti con permessi anche molto dettagliati."
-#: ../../mod/new_channel.php:141
-msgid "Or <a href=\"import\">import an existing channel</a> from another location"
-msgstr "Oppure <a href=\"import\">importa un tuo canale esistente</a> da un altro hub"
+#: ../../mod/new_channel.php:133
+msgid ""
+"or <a href=\"import\">import an existing channel</a> from another location."
+msgstr "oppure <a href=\"import\">importa un canale esistente</a> da un altro server/hub."
#: ../../mod/notifications.php:26
msgid "Invalid request identifier."
@@ -6610,7 +6615,7 @@ msgstr "ƈ un servizio gratuito"
msgid "My site offers free accounts with optional paid upgrades"
msgstr "ƈ un servizio gratuito con opzioni aggiuntive a pagamento"
-#: ../../mod/admin.php:458 ../../mod/register.php:238
+#: ../../mod/admin.php:458 ../../mod/register.php:241
msgid "Registration"
msgstr "Registrazione"
@@ -7255,6 +7260,10 @@ msgstr "Massima versione hubzilla"
msgid "Minimum PHP version: "
msgstr "Minima versione PHP:"
+#: ../../mod/admin.php:1278
+msgid "Requires: "
+msgstr "Necessita di:"
+
#: ../../mod/admin.php:1279 ../../mod/admin.php:1330
msgid "Disabled - version incompatibility"
msgstr "Disabilitato - incompatibilitĆ  di versione"
@@ -7300,46 +7309,70 @@ msgstr "Deve essere scrivibile dal web server. La posizione ĆØ relativa alla car
msgid "Log level"
msgstr "Livello di log"
-#: ../../mod/admin.php:1661
+#: ../../mod/admin.php:1682
msgid "New Profile Field"
msgstr "Nuovo campo del profilo"
-#: ../../mod/admin.php:1662 ../../mod/admin.php:1682
+#: ../../mod/admin.php:1683 ../../mod/admin.php:1703
msgid "Field nickname"
msgstr "Nome breve del campo"
-#: ../../mod/admin.php:1662 ../../mod/admin.php:1682
+#: ../../mod/admin.php:1683 ../../mod/admin.php:1703
msgid "System name of field"
msgstr "Nome di sistema del campo"
-#: ../../mod/admin.php:1663 ../../mod/admin.php:1683
+#: ../../mod/admin.php:1684 ../../mod/admin.php:1704
msgid "Input type"
msgstr "Tipo di dati"
-#: ../../mod/admin.php:1664 ../../mod/admin.php:1684
+#: ../../mod/admin.php:1685 ../../mod/admin.php:1705
msgid "Field Name"
msgstr "Nome del campo"
-#: ../../mod/admin.php:1664 ../../mod/admin.php:1684
+#: ../../mod/admin.php:1685 ../../mod/admin.php:1705
msgid "Label on profile pages"
msgstr "Etichetta da mostrare sulla pagina del profilo"
-#: ../../mod/admin.php:1665 ../../mod/admin.php:1685
+#: ../../mod/admin.php:1686 ../../mod/admin.php:1706
msgid "Help text"
msgstr "Testo di aiuto"
-#: ../../mod/admin.php:1665 ../../mod/admin.php:1685
+#: ../../mod/admin.php:1686 ../../mod/admin.php:1706
msgid "Additional info (optional)"
msgstr "Informazioni aggiuntive (facoltative)"
-#: ../../mod/admin.php:1675
+#: ../../mod/admin.php:1696
msgid "Field definition not found"
msgstr "Impossibile trovare la definizione del campo"
-#: ../../mod/admin.php:1681
+#: ../../mod/admin.php:1702
msgid "Edit Profile Field"
msgstr "Modifica campo del profilo"
+#: ../../mod/admin.php:1761
+msgid "Basic Profile Fields"
+msgstr "Campi base del profilo"
+
+#: ../../mod/admin.php:1762
+msgid "Advanced Profile Fields"
+msgstr "Campi avanzati del profilo"
+
+#: ../../mod/admin.php:1762
+msgid "(In addition to basic fields)"
+msgstr "(In aggiunta ai campi di base)"
+
+#: ../../mod/admin.php:1764
+msgid "All available fields"
+msgstr "Tutti i campi disponibili"
+
+#: ../../mod/admin.php:1765
+msgid "Custom Fields"
+msgstr "Campi Personalizzati"
+
+#: ../../mod/admin.php:1769
+msgid "Create Custom Field"
+msgstr "Aggiungi Campi Personalizzati"
+
#: ../../mod/poke.php:165
msgid "Poke somebody"
msgstr "Manda un poke"
@@ -7381,7 +7414,7 @@ msgstr "Il ridimensionamento dell'immagine ĆØ fallito."
msgid ""
"Shift-reload the page or clear browser cache if the new photo does not "
"display immediately."
-msgstr "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente."
+msgstr "Forza l'aggiornamento della pagina o cancella la cache del browser se la nuova foto non viene visualizzata immediatamente."
#: ../../mod/profile_photo.php:250 ../../mod/cover_photo.php:188
msgid "Image upload failed."
@@ -7698,51 +7731,31 @@ msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo."
msgid "Visible To"
msgstr "Visibile a"
-#: ../../mod/pubsites.php:18
-msgid "Public Sites"
-msgstr "Siti pubblici"
-
#: ../../mod/pubsites.php:21
msgid ""
-"The listed sites allow public registration for the $Projectname network. All"
-" sites in the network are interlinked so membership on any of them conveys "
-"membership in the network as a whole. Some sites may require subscription or"
-" provide tiered service plans. The provider links <strong>may</strong> "
-"provide additional details."
+"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 "I siti elencati permettono la registrazione libera sulla rete $Projectname. Tutti questi hub sono interconnessi, quindi essere iscritti su uno equivale a una registrazione su tutta la rete. Alcuni siti potrebbero richiedere un abbonamento o dei servizi a pagamento. Per maggiori dettagli visita gli indirizzi nell'elenco."
#: ../../mod/pubsites.php:27
-msgid "Rate this hub"
-msgstr "Valuta questo hub"
-
-#: ../../mod/pubsites.php:28
-msgid "Site URL"
-msgstr "URL del sito"
+msgid "Hub URL"
+msgstr "URL del hub"
-#: ../../mod/pubsites.php:28
+#: ../../mod/pubsites.php:27
msgid "Access Type"
msgstr "Tipo di accesso"
-#: ../../mod/pubsites.php:28
+#: ../../mod/pubsites.php:27
msgid "Registration Policy"
msgstr "Politica di registrazione"
-#: ../../mod/pubsites.php:28
-msgid "Project"
-msgstr "Progetto"
-
-#: ../../mod/pubsites.php:28
-msgid "View hub ratings"
-msgstr "Vedi le valutazioni del hub"
-
-#: ../../mod/pubsites.php:32
+#: ../../mod/pubsites.php:33
msgid "Rate"
msgstr "Valuta"
-#: ../../mod/pubsites.php:33
-msgid "View ratings"
-msgstr "Vedi le valutazioni"
-
#: ../../mod/rate.php:158
msgid "Website:"
msgstr "Sito web:"
@@ -7820,16 +7833,16 @@ msgid "Your registration can not be processed."
msgstr "La tua registrazione non puo' essere processata."
#: ../../mod/register.php:180
-msgid "Registration on this site is disabled."
-msgstr "Su questo sito la registrazione non ĆØ permessa"
+msgid "Registration on this hub is disabled."
+msgstr "Su questo hub la registrazione non ĆØ permessa."
#: ../../mod/register.php:189
-msgid "Registration on this site/hub is by approval only."
+msgid "Registration on this hub is by approval only."
msgstr "La registrazione su questo hub ĆØ soggetta ad approvazione."
#: ../../mod/register.php:190
-msgid "<a href=\"pubsites\">Register at another affiliated site/hub</a>"
-msgstr "<a href=\"pubsites\">Registrati su un altro hub affiliato</a>"
+msgid "<a href=\"pubsites\">Register at another affiliated hub.</a>"
+msgstr "<a href=\"pubsites\">Registrati su un altro server hubzilla.</a>"
#: ../../mod/register.php:200
msgid ""
@@ -7851,46 +7864,38 @@ msgstr "Accetto le %s di questo sito"
msgid "I am over 13 years of age and accept the %s for this website"
msgstr "Ho piĆ¹ di 13 anni e accetto le %s di questo sito"
-#: ../../mod/register.php:243
-msgid "Membership on this site is by invitation only."
-msgstr "Per registrarsi su questo hub ĆØ necessario un invito."
-
-#: ../../mod/register.php:244
-msgid "Please enter your invitation code"
-msgstr "Inserisci il codice dell'invito"
-
-#: ../../mod/register.php:248
-msgid "Enter your name"
-msgstr "Il tuo nome"
-
-#: ../../mod/register.php:251
-msgid ""
-"Your nickname will be used to create an easily remembered channel address "
-"(like an email address) which you can share with others."
-msgstr "Il nome breve sarƠ usato per creare un indirizzo facile da ricordare per il tuo canale (simile a una email). CosƬ potrai condividerlo e gli altri potranno trovarti."
-
-#: ../../mod/register.php:253
-msgid ""
-"Please choose a channel type (such as social networking or community forum) "
-"and privacy requirements so we can select the best permissions for you"
-msgstr "Descrivi il tipo di canale che vorresti creare (per esempio se ti interessa piĆ¹ usarlo come social network, come un forum di discussione...) e il tipo di privacy che preferisci. Hubzilla sceglierĆ  per te i permessi piĆ¹ adatti."
-
-#: ../../mod/register.php:254
-msgid "Channel Type"
-msgstr "Tipo di canale"
-
-#: ../../mod/register.php:258
+#: ../../mod/register.php:223
msgid "Your email address"
msgstr "Il tuo indirizzo email"
-#: ../../mod/register.php:259
+#: ../../mod/register.php:224
msgid "Choose a password"
msgstr "Scegli una password"
-#: ../../mod/register.php:260
+#: ../../mod/register.php:225
msgid "Please re-enter your password"
msgstr "Ripeti la password per verifica"
+#: ../../mod/register.php:226
+msgid "Please enter your invitation code"
+msgstr "Inserisci il codice dell'invito"
+
+#: ../../mod/register.php:232
+msgid "no"
+msgstr "no"
+
+#: ../../mod/register.php:232
+msgid "yes"
+msgstr "sƬ"
+
+#: ../../mod/register.php:246
+msgid "Membership on this site is by invitation only."
+msgstr "Per registrarsi su questo hub ĆØ necessario un invito."
+
+#: ../../mod/register.php:258
+msgid "Proceed to create your first channel"
+msgstr "Continua e crea il tuo primo canale"
+
#: ../../mod/regmod.php:11
msgid "Please login."
msgstr "Effettua l'accesso."
@@ -8589,419 +8594,419 @@ msgstr "Attiva Firefox Share per $Projectname"
msgid "Start calendar week on monday"
msgstr "La settimana inizia il lunedƬ"
-#: ../../mod/setup.php:194
+#: ../../mod/setup.php:197
msgid "$Projectname Server - Setup"
msgstr "Server $Projectname - Installazione"
-#: ../../mod/setup.php:198
+#: ../../mod/setup.php:201
msgid "Could not connect to database."
msgstr " Impossibile connettersi al database."
-#: ../../mod/setup.php:202
+#: ../../mod/setup.php:205
msgid ""
"Could not connect to specified site URL. Possible SSL certificate or DNS "
"issue."
msgstr "Non ĆØ possibile raggiungere l'indirizzo del sito specificato. Potrebbe essere un problema di SSL o DNS."
-#: ../../mod/setup.php:209
+#: ../../mod/setup.php:212
msgid "Could not create table."
msgstr "Impossibile creare le tabelle."
-#: ../../mod/setup.php:214
+#: ../../mod/setup.php:217
msgid "Your site database has been installed."
msgstr "Il database del sito ĆØ stato installato."
-#: ../../mod/setup.php:218
+#: ../../mod/setup.php:221
msgid ""
"You may need to import the file \"install/schema_xxx.sql\" manually using a "
"database client."
msgstr "Potresti dover importare il file 'install/schema_xxx.sql' manualmente usando un client per collegarti al db."
-#: ../../mod/setup.php:219 ../../mod/setup.php:287 ../../mod/setup.php:737
+#: ../../mod/setup.php:222 ../../mod/setup.php:290 ../../mod/setup.php:740
msgid "Please see the file \"install/INSTALL.txt\"."
msgstr "Leggi il file 'install/INSTALL.txt'."
-#: ../../mod/setup.php:284
+#: ../../mod/setup.php:287
msgid "System check"
msgstr "Verifica del sistema"
-#: ../../mod/setup.php:289
+#: ../../mod/setup.php:292
msgid "Check again"
msgstr "Verifica di nuovo"
-#: ../../mod/setup.php:311
+#: ../../mod/setup.php:314
msgid "Database connection"
msgstr "Connessione al database"
-#: ../../mod/setup.php:312
+#: ../../mod/setup.php:315
msgid ""
"In order to install $Projectname we need to know how to connect to your "
"database."
msgstr "Per poter installare $Projectname ĆØ necessario fornire i parametri di connessione al tuo database."
-#: ../../mod/setup.php:313
+#: ../../mod/setup.php:316
msgid ""
"Please contact your hosting provider or site administrator if you have "
"questions about these settings."
msgstr "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni."
-#: ../../mod/setup.php:314
+#: ../../mod/setup.php:317
msgid ""
"The database you specify below should already exist. If it does not, please "
"create it before continuing."
msgstr "Il database deve giĆ  esistere. Se non esiste, crealo prima di continuare."
-#: ../../mod/setup.php:318
+#: ../../mod/setup.php:321
msgid "Database Server Name"
msgstr "Server del database"
-#: ../../mod/setup.php:318
+#: ../../mod/setup.php:321
msgid "Default is 127.0.0.1"
msgstr "Il valore predefinito ĆØ 127.0.0.1"
-#: ../../mod/setup.php:319
+#: ../../mod/setup.php:322
msgid "Database Port"
msgstr "Port del database"
-#: ../../mod/setup.php:319
+#: ../../mod/setup.php:322
msgid "Communication port number - use 0 for default"
msgstr "Scrivi 0 per usare il valore standard"
-#: ../../mod/setup.php:320
+#: ../../mod/setup.php:323
msgid "Database Login Name"
msgstr "Utente database"
-#: ../../mod/setup.php:321
+#: ../../mod/setup.php:324
msgid "Database Login Password"
msgstr "Password database"
-#: ../../mod/setup.php:322
+#: ../../mod/setup.php:325
msgid "Database Name"
msgstr "Nome database"
-#: ../../mod/setup.php:323
+#: ../../mod/setup.php:326
msgid "Database Type"
msgstr "Tipo database"
-#: ../../mod/setup.php:325 ../../mod/setup.php:365
+#: ../../mod/setup.php:328 ../../mod/setup.php:368
msgid "Site administrator email address"
msgstr "Indirizzo email dell'amministratore del hub"
-#: ../../mod/setup.php:325 ../../mod/setup.php:365
+#: ../../mod/setup.php:328 ../../mod/setup.php:368
msgid ""
"Your account email address must match this in order to use the web admin "
"panel."
msgstr "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione di Hubzilla."
-#: ../../mod/setup.php:326 ../../mod/setup.php:367
+#: ../../mod/setup.php:329 ../../mod/setup.php:370
msgid "Website URL"
msgstr "URL completo del sito"
-#: ../../mod/setup.php:326 ../../mod/setup.php:367
+#: ../../mod/setup.php:329 ../../mod/setup.php:370
msgid "Please use SSL (https) URL if available."
msgstr "Se disponibile, usa l'indirizzo SSL (https)."
-#: ../../mod/setup.php:327 ../../mod/setup.php:370
+#: ../../mod/setup.php:330 ../../mod/setup.php:373
msgid "Please select a default timezone for your website"
msgstr "Seleziona il fuso orario predefinito per il tuo hub"
-#: ../../mod/setup.php:354
+#: ../../mod/setup.php:357
msgid "Site settings"
msgstr "Impostazioni del hub"
-#: ../../mod/setup.php:368
+#: ../../mod/setup.php:371
msgid "Enable $Projectname <strong>advanced</strong> features?"
msgstr "Vuoi attivare le funzionalitĆ  <strong>avanzate</strong> di $Projectname?"
-#: ../../mod/setup.php:368
+#: ../../mod/setup.php:371
msgid ""
"Some advanced features, while useful - may be best suited for technically "
"proficient audiences"
msgstr "Alcune funzionalitĆ  avanzate, per quanto utili, potrebbero essere adatte solo a un pubblico tecnicamente preparato."
-#: ../../mod/setup.php:420
+#: ../../mod/setup.php:423
msgid "Could not find a command line version of PHP in the web server PATH."
msgstr "Non ĆØ possibile trovare la versione di PHP da riga di comando nel PATH del server web"
-#: ../../mod/setup.php:421
+#: ../../mod/setup.php:424
msgid ""
"If you don't have a command line version of PHP installed on server, you "
"will not be able to run background polling via cron."
msgstr "Se non hai installata la versione di PHP da riga di comando non potrai attivare il polling in background tramite cron."
-#: ../../mod/setup.php:425
+#: ../../mod/setup.php:428
msgid "PHP executable path"
msgstr "Path del comando PHP"
-#: ../../mod/setup.php:425
+#: ../../mod/setup.php:428
msgid ""
"Enter full path to php executable. You can leave this blank to continue the "
"installation."
msgstr "Inserisci il percorso dell'eseguibile PHP. Puoi lasciarlo vuoto per continuare l'installazione."
-#: ../../mod/setup.php:430
+#: ../../mod/setup.php:433
msgid "Command line PHP"
msgstr "PHP da riga di comando"
-#: ../../mod/setup.php:439
+#: ../../mod/setup.php:442
msgid ""
"The command line version of PHP on your system does not have "
"\"register_argc_argv\" enabled."
msgstr "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"."
-#: ../../mod/setup.php:440
+#: ../../mod/setup.php:443
msgid "This is required for message delivery to work."
msgstr "E' necessario perchƩ funzioni la consegna dei messaggi."
-#: ../../mod/setup.php:443
+#: ../../mod/setup.php:446
msgid "PHP register_argc_argv"
msgstr "PHP register_argc_argv"
-#: ../../mod/setup.php:461
+#: ../../mod/setup.php:464
#, php-format
msgid ""
"Your max allowed total upload size is set to %s. Maximum size of one file to"
" upload is set to %s. You are allowed to upload up to %d files at once."
msgstr "La dimensione massima di un caricamento ĆØ impostata a %s. Il singolo file non puĆ² superare %s. Ti ĆØ permesso caricare max %d file per volta."
-#: ../../mod/setup.php:466
+#: ../../mod/setup.php:469
msgid "You can adjust these settings in the servers php.ini."
msgstr "Puoi regolare queste impostazioni sul server in php.ini"
-#: ../../mod/setup.php:468
+#: ../../mod/setup.php:471
msgid "PHP upload limits"
msgstr "Limiti PHP in upload"
-#: ../../mod/setup.php:491
+#: ../../mod/setup.php:494
msgid ""
"Error: the \"openssl_pkey_new\" function on this system is not able to "
"generate encryption keys"
msgstr "Errore: la funzione \"openssl_pkey_new\" su questo sistema non ĆØ in grado di generare le chiavi di cifratura"
-#: ../../mod/setup.php:492
+#: ../../mod/setup.php:495
msgid ""
"If running under Windows, please see "
"\"http://www.php.net/manual/en/openssl.installation.php\"."
msgstr "Se stai usando un server windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"."
-#: ../../mod/setup.php:495
+#: ../../mod/setup.php:498
msgid "Generate encryption keys"
msgstr "Genera chiavi di cifratura"
-#: ../../mod/setup.php:507
+#: ../../mod/setup.php:510
msgid "libCurl PHP module"
msgstr "modulo PHP libCurl"
-#: ../../mod/setup.php:508
+#: ../../mod/setup.php:511
msgid "GD graphics PHP module"
msgstr "modulo PHP GD graphics"
-#: ../../mod/setup.php:509
+#: ../../mod/setup.php:512
msgid "OpenSSL PHP module"
msgstr "modulo PHP OpenSSL"
-#: ../../mod/setup.php:510
+#: ../../mod/setup.php:513
msgid "mysqli or postgres PHP module"
msgstr "modulo PHP per mysqli oppure prostgres"
-#: ../../mod/setup.php:511
+#: ../../mod/setup.php:514
msgid "mb_string PHP module"
msgstr "modulo PHP mb_string"
-#: ../../mod/setup.php:512
+#: ../../mod/setup.php:515
msgid "mcrypt PHP module"
msgstr "modulo PHP mcrypt"
-#: ../../mod/setup.php:513
+#: ../../mod/setup.php:516
msgid "xml PHP module"
msgstr "modulo xml PHP"
-#: ../../mod/setup.php:517 ../../mod/setup.php:519
+#: ../../mod/setup.php:520 ../../mod/setup.php:522
msgid "Apache mod_rewrite module"
msgstr "modulo Apache mod_rewrite"
-#: ../../mod/setup.php:517
+#: ../../mod/setup.php:520
msgid ""
"Error: Apache webserver mod-rewrite module is required but not installed."
msgstr "Errore: il modulo mod-rewrite di Apache ĆØ richiesto ma non installato"
-#: ../../mod/setup.php:523 ../../mod/setup.php:526
+#: ../../mod/setup.php:526 ../../mod/setup.php:529
msgid "proc_open"
msgstr "proc_open"
-#: ../../mod/setup.php:523
+#: ../../mod/setup.php:526
msgid ""
"Error: proc_open is required but is either not installed or has been "
"disabled in php.ini"
msgstr "Errore: proc_open ĆØ richiesto ma non ĆØ installato o ĆØ disabilitato in php.ini"
-#: ../../mod/setup.php:531
+#: ../../mod/setup.php:534
msgid "Error: libCURL PHP module required but not installed."
msgstr "Errore: il modulo libCURL di PHP ĆØ richiesto ma non installato."
-#: ../../mod/setup.php:535
+#: ../../mod/setup.php:538
msgid ""
"Error: GD graphics PHP module with JPEG support required but not installed."
msgstr "Errore: Il modulo GD graphics di PHP con supporto a JPEG ĆØ richiesto ma non installato."
-#: ../../mod/setup.php:539
+#: ../../mod/setup.php:542
msgid "Error: openssl PHP module required but not installed."
msgstr "Errore: il modulo openssl di PHP ĆØ richiesto ma non installato."
-#: ../../mod/setup.php:543
+#: ../../mod/setup.php:546
msgid ""
"Error: mysqli or postgres PHP module required but neither are installed."
msgstr "Errore: il modulo PHP per mysqli o postgres ĆØ richiesto ma non installato"
-#: ../../mod/setup.php:547
+#: ../../mod/setup.php:550
msgid "Error: mb_string PHP module required but not installed."
msgstr "Errore: il modulo PHP mb_string ĆØ richiesto ma non installato."
-#: ../../mod/setup.php:551
+#: ../../mod/setup.php:554
msgid "Error: mcrypt PHP module required but not installed."
msgstr "Errore: il modulo PHP mcrypt ĆØ richiesto ma non installato."
-#: ../../mod/setup.php:555
+#: ../../mod/setup.php:558
msgid "Error: xml PHP module required for DAV but not installed."
msgstr "Errore: il modulo xml PHP ĆØ richiesto per DAV ma non ĆØ installato."
-#: ../../mod/setup.php:573
+#: ../../mod/setup.php:576
msgid ""
"The web installer needs to be able to create a file called \".htconfig.php\""
" in the top folder of your web server and it is unable to do so."
msgstr "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella di Hubzilla ma non ĆØ in grado di farlo."
-#: ../../mod/setup.php:574
+#: ../../mod/setup.php:577
msgid ""
"This is most often a permission setting, as the web server may not be able "
"to write files in your folder - even if you can."
msgstr "Spesso ciĆ² ĆØ dovuto ai permessi di accesso al disco: il web server potrebbe non aver diritto di scrivere il file nella cartella, anche se tu puoi."
-#: ../../mod/setup.php:575
+#: ../../mod/setup.php:578
msgid ""
"At the end of this procedure, we will give you a text to save in a file "
"named .htconfig.php in your Red top folder."
msgstr "Alla fine di questa procedura ti sarĆ  dato il testo da salvare in un file di nome .htconfig.php dentro la cartella principale di Hubzilla."
-#: ../../mod/setup.php:576
+#: ../../mod/setup.php:579
msgid ""
"You can alternatively skip this procedure and perform a manual installation."
" Please see the file \"install/INSTALL.txt\" for instructions."
msgstr "Puoi anche saltare questa procedura ed effettuare un'installazione manuale. Guarda il file 'install/INSTALL.txt' per le istruzioni."
-#: ../../mod/setup.php:579
+#: ../../mod/setup.php:582
msgid ".htconfig.php is writable"
msgstr ".htconfig.php ĆØ scrivibile"
-#: ../../mod/setup.php:593
+#: ../../mod/setup.php:596
msgid ""
"Red uses the Smarty3 template engine to render its web views. Smarty3 "
"compiles templates to PHP to speed up rendering."
msgstr "Hubzilla usa il sistema Smarty3 per costruire i suoi template grafici. Smarty3 ĆØ molto veloce perchĆ© compila i template delle pagine direttamente in PHP."
-#: ../../mod/setup.php:594
+#: ../../mod/setup.php:597
#, php-format
msgid ""
"In order to store these compiled templates, the web server needs to have "
"write access to the directory %s under the Red top level folder."
msgstr "Per poter memorizzare i template compilati, il web server deve avere accesso in scrittura a %s sotto la cartella di installazione di Hubzilla."
-#: ../../mod/setup.php:595 ../../mod/setup.php:616
+#: ../../mod/setup.php:598 ../../mod/setup.php:619
msgid ""
"Please ensure that the user that your web server runs as (e.g. www-data) has"
" write access to this folder."
msgstr "Assicurati che il tuo web server sia in esecuzione con un utente che ha diritto di scrittura su quella cartella (ad esempio www-data)."
-#: ../../mod/setup.php:596
+#: ../../mod/setup.php:599
#, php-format
msgid ""
"Note: as a security measure, you should give the web server write access to "
"%s only--not the template files (.tpl) that it contains."
msgstr "Nota bene: come precauzione, dovresti dare i diritti di scrittura solamente su %s e non sui file template (.tpl) che contiene."
-#: ../../mod/setup.php:599
+#: ../../mod/setup.php:602
#, php-format
msgid "%s is writable"
msgstr "%s ĆØ scrivibile"
-#: ../../mod/setup.php:615
+#: ../../mod/setup.php:618
msgid ""
"Red uses the store directory to save uploaded files. The web server needs to"
" have write access to the store directory under the Red top level folder"
msgstr "Hubzilla salva i file caricati nella cartella \"store\" sul server. Il server deve avere i diritti di scrittura su quella cartella che si trova dentro l'installazione di RedMatrix"
-#: ../../mod/setup.php:619
+#: ../../mod/setup.php:622
msgid "store is writable"
msgstr "l'archivio ĆØ scrivibile"
-#: ../../mod/setup.php:652
+#: ../../mod/setup.php:655
msgid ""
"SSL certificate cannot be validated. Fix certificate or disable https access"
" to this site."
msgstr "Il certificato SSL non puĆ² essere validato. Correggi l'errore o disabilita l'accesso https al sito."
-#: ../../mod/setup.php:653
+#: ../../mod/setup.php:656
msgid ""
"If you have https access to your website or allow connections to TCP port "
"443 (the https: port), you MUST use a browser-valid certificate. You MUST "
"NOT use self-signed certificates!"
msgstr "Se abiliti https per il tuo sito o permetti connessioni TCP su port 443 (quella di https), DEVI usare un certificato riconosciuto dai browser internet. NON DEVI usare certificati self-signed generati da te!"
-#: ../../mod/setup.php:654
+#: ../../mod/setup.php:657
msgid ""
"This restriction is incorporated because public posts from you may for "
"example contain references to images on your own hub."
msgstr "Questa restrizione ĆØ necessaria perchĆ© i tuoi post pubblici potrebbero contenere riferimenti a immagini sul tuo server."
-#: ../../mod/setup.php:655
+#: ../../mod/setup.php:658
msgid ""
"If your certificate is not recognized, members of other sites (who may "
"themselves have valid certificates) will get a warning message on their own "
"site complaining about security issues."
msgstr "Se il tuo certificato non ĆØ riconosciuto, gli utenti che ti seguono da altri siti (che avranno certificati validi) riceveranno gravi avvisi di sicurezza dal browser."
-#: ../../mod/setup.php:656
+#: ../../mod/setup.php:659
msgid ""
"This can cause usability issues elsewhere (not just on your own site) so we "
"must insist on this requirement."
msgstr "CiĆ² puĆ² creare seri problemi di usabilitĆ  (non solo sul tuo sito), quindi dobbiamo insistere su questo punto."
-#: ../../mod/setup.php:657
+#: ../../mod/setup.php:660
msgid ""
"Providers are available that issue free certificates which are browser-"
"valid."
msgstr "Eventualmente, considera che esistono provider che rilasciano certificati gratuiti riconosciuti dai browser."
-#: ../../mod/setup.php:659
+#: ../../mod/setup.php:662
msgid "SSL certificate validation"
msgstr "Validazione del certificato SSL"
-#: ../../mod/setup.php:665
+#: ../../mod/setup.php:668
msgid ""
"Url rewrite in .htaccess is not working. Check your server "
"configuration.Test: "
msgstr "In .htaccess la funzionalitĆ  url rewrite non funziona. Controlla la configurazione del server. Test:"
-#: ../../mod/setup.php:668
+#: ../../mod/setup.php:671
msgid "Url rewrite is working"
msgstr "Url rewrite funziona correttamente"
-#: ../../mod/setup.php:677
+#: ../../mod/setup.php:680
msgid ""
"The database configuration file \".htconfig.php\" could not be written. "
"Please use the enclosed text to create a configuration file in your web "
"server root."
msgstr "Il file di configurazione del database \".htconfig.php\" non puo' essere scritto. Usa il testo qui di seguito per creare questo file di configurazione nella cartella principale del tuo sito."
-#: ../../mod/setup.php:701
+#: ../../mod/setup.php:704
msgid "Errors encountered creating database tables."
msgstr "La creazione delle tabelle del database ha generato errori."
-#: ../../mod/setup.php:735
+#: ../../mod/setup.php:738
msgid "<h1>What next</h1>"
msgstr "<h1>I prossimi passi</h1>"
-#: ../../mod/setup.php:736
+#: ../../mod/setup.php:739
msgid ""
"IMPORTANT: You will need to [manually] setup a scheduled task for the "
"poller."
@@ -9031,7 +9036,7 @@ msgid ""
"Password reset failed."
msgstr "La richiesta non puĆ² essere verificata (potresti averla giĆ  usata precedentemente). La password non sarĆ  reimpostata."
-#: ../../mod/lostpass.php:86 ../../boot.php:1552
+#: ../../mod/lostpass.php:86 ../../boot.php:1551
msgid "Password Reset"
msgstr "Reimposta la password"
@@ -9382,7 +9387,7 @@ msgstr "Elenco contatti"
msgid "Source of Item"
msgstr "Sorgente"
-#: ../../mod/webpages.php:191
+#: ../../mod/webpages.php:193
msgid "Page Title"
msgstr "Titolo della pagina"
@@ -9402,6 +9407,10 @@ msgstr "Copertine del canale"
msgid "Upload Cover Photo"
msgstr "Carica una copertina"
+#: ../../mod/cal.php:63
+msgid "Permissions denied."
+msgstr "Permesso negato."
+
#: ../../view/theme/redbasic/php/config.php:82
msgid "Focus (Hubzilla default)"
msgstr "Focus (predefinito)"
@@ -9538,51 +9547,51 @@ msgstr "Dimensione foto dell'autore della conversazione"
msgid "Set size of followup author photos"
msgstr "Dimensione foto dei partecipanti alla conversazione"
-#: ../../boot.php:1352
+#: ../../boot.php:1351
#, php-format
msgid "Update %s failed. See error logs."
msgstr "%s: aggiornamento fallito. Controlla i log di errore."
-#: ../../boot.php:1355
+#: ../../boot.php:1354
#, php-format
msgid "Update Error at %s"
msgstr "Errore di aggiornamento su %s"
-#: ../../boot.php:1525
+#: ../../boot.php:1524
msgid ""
"Create an account to access services and applications within the Hubzilla"
msgstr "Registrati per accedere ai servizi e alle applicazioni di Hubzilla"
-#: ../../boot.php:1547
+#: ../../boot.php:1546
msgid "Password"
msgstr "Password"
-#: ../../boot.php:1548
+#: ../../boot.php:1547
msgid "Remember me"
msgstr "Resta connesso"
-#: ../../boot.php:1551
+#: ../../boot.php:1550
msgid "Forgot your password?"
msgstr "Hai dimenticato la password?"
-#: ../../boot.php:2181
+#: ../../boot.php:2180
msgid "toggle mobile"
msgstr "attiva/disattiva versione mobile"
-#: ../../boot.php:2334
+#: ../../boot.php:2333
msgid "Website SSL certificate is not valid. Please correct."
msgstr "Il certificato SSL del sito non ĆØ valido. Si prega di intervenire."
-#: ../../boot.php:2337
+#: ../../boot.php:2336
#, php-format
msgid "[hubzilla] Website SSL error for %s"
msgstr "[hubzilla] Errore SSL su %s"
-#: ../../boot.php:2374
+#: ../../boot.php:2373
msgid "Cron/Scheduled tasks not running."
msgstr "Processi cron non avviati."
-#: ../../boot.php:2378
+#: ../../boot.php:2377
#, php-format
msgid "[hubzilla] Cron tasks not running on %s"
msgstr "[hubzilla] Cron non ĆØ stato eseguito %s"
diff --git a/view/it/hstrings.php b/view/it/hstrings.php
index ba1e01185..e3283f4d1 100644
--- a/view/it/hstrings.php
+++ b/view/it/hstrings.php
@@ -101,21 +101,6 @@ $a->strings["Profile Photo"] = "Foto del profilo";
$a->strings["Update"] = "Aggiorna";
$a->strings["Install"] = "Installa";
$a->strings["Purchase"] = "Acquista";
-$a->strings["Item was not found."] = "Elemento non trovato.";
-$a->strings["No source file."] = "Nessun file di origine.";
-$a->strings["Cannot locate file to replace"] = "Il file da sostituire non ĆØ stato trovato";
-$a->strings["Cannot locate file to revise/update"] = "Il file da aggiornare non ĆØ stato trovato";
-$a->strings["File exceeds size limit of %d"] = "Il file supera la dimensione massima di %d";
-$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Hai raggiunto il limite complessivo di %1$.0f Mbytes per gli allegati.";
-$a->strings["File upload failed. Possible system limit or action terminated."] = "Caricamento file fallito, potrebbe essere stato interrotto o potrebbe aver superato lo spazio assegnato.";
-$a->strings["Stored file could not be verified. Upload failed."] = "Il file non puĆ² essere verificato. Caricamento fallito.";
-$a->strings["Path not available."] = "Percorso non disponibile.";
-$a->strings["Empty pathname"] = "Il percorso del file ĆØ vuoto";
-$a->strings["duplicate filename or path"] = "il file o il percorso del file ĆØ duplicato";
-$a->strings["Path not found."] = "Percorso del file non trovato.";
-$a->strings["mkdir failed."] = "mkdir fallito.";
-$a->strings["database storage failed."] = "scrittura su database fallita.";
-$a->strings["Empty path"] = "La posizione ĆØ vuota";
$a->strings["Logged out."] = "Uscita effettuata.";
$a->strings["Failed authentication"] = "Autenticazione fallita";
$a->strings["Login failed."] = "Accesso fallito.";
@@ -125,19 +110,6 @@ $a->strings["\$Projectname event notification:"] = "Notifica evento \$Projectnam
$a->strings["Starts:"] = "Inizio:";
$a->strings["Finishes:"] = "Fine:";
$a->strings["Location:"] = "Luogo:";
-$a->strings["Image/photo"] = "Immagine";
-$a->strings["Encrypted content"] = "Contenuto cifrato";
-$a->strings["Install %s element: "] = "Installa l'elemento %s:";
-$a->strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Questo post contiene un elemento %s installabile, tuttavia non hai i permessi necessari per l'installazione.";
-$a->strings["webpage"] = "pagina web";
-$a->strings["layout"] = "layout";
-$a->strings["block"] = "block";
-$a->strings["menu"] = "menu";
-$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s ha scritto %2\$s %3\$s";
-$a->strings["post"] = "il post";
-$a->strings["Different viewers will see this text differently"] = "Ad altri questo testo potrebbe apparire in modo differente";
-$a->strings["$1 spoiler"] = "$1 spoiler";
-$a->strings["$1 wrote:"] = "$1 ha scritto:";
$a->strings["%1\$s's bookmarks"] = "I segnalibri di %1\$s";
$a->strings["Missing room name"] = "Chat senza nome";
$a->strings["Duplicate room name"] = "Il nome della chat ĆØ duplicato";
@@ -167,200 +139,6 @@ $a->strings["%d connection in common"] = array(
1 => "%d contatti in comune",
);
$a->strings["show more"] = "mostra tutto";
-$a->strings["photo"] = "la foto";
-$a->strings["event"] = "l'evento";
-$a->strings["channel"] = "il canale";
-$a->strings["status"] = "il messaggio di stato";
-$a->strings["comment"] = "il commento";
-$a->strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s piace %3\$s di %2\$s";
-$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s non piace %3\$s di %2\$s";
-$a->strings["%1\$s is now connected with %2\$s"] = "%1\$s adesso ĆØ connesso con %2\$s";
-$a->strings["%1\$s poked %2\$s"] = "%1\$s ha mandato un poke a %2\$s";
-$a->strings["poked"] = "ha ricevuto un poke";
-$a->strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s ĆØ %2\$s";
-$a->strings["__ctx:title__ Likes"] = "Mi piace";
-$a->strings["__ctx:title__ Dislikes"] = "Non mi piace";
-$a->strings["__ctx:title__ Agree"] = "D'accordo";
-$a->strings["__ctx:title__ Disagree"] = "Non d'accordo";
-$a->strings["__ctx:title__ Abstain"] = "Astenuti";
-$a->strings["__ctx:title__ Attending"] = "Partecipano";
-$a->strings["__ctx:title__ Not attending"] = "Non partecipano";
-$a->strings["__ctx:title__ Might attend"] = "Forse partecipano";
-$a->strings["Select"] = "Scegli";
-$a->strings["Private Message"] = "Messaggio privato";
-$a->strings["Message signature validated"] = "Messaggio con firma verificata";
-$a->strings["Message signature incorrect"] = "Massaggio con firma non corretta";
-$a->strings["View %s's profile @ %s"] = "Vedi il profilo di %s @ %s";
-$a->strings["Categories:"] = "Categorie:";
-$a->strings["Filed under:"] = "Classificato come:";
-$a->strings["from %s"] = "da %s";
-$a->strings["last edited: %s"] = "ultima modifica: %s";
-$a->strings["Expires: %s"] = "Scadenza: %s";
-$a->strings["View in context"] = "Vedi nel contesto";
-$a->strings["Please wait"] = "Attendere";
-$a->strings["remove"] = "rimuovi";
-$a->strings["Loading..."] = "Caricamento in corso...";
-$a->strings["Delete Selected Items"] = "Elimina gli oggetti selezionati";
-$a->strings["View Source"] = "Vedi il sorgente";
-$a->strings["Follow Thread"] = "Segui la discussione";
-$a->strings["Unfollow Thread"] = "Non seguire la discussione";
-$a->strings["View Profile"] = "Profilo";
-$a->strings["Activity/Posts"] = "AttivitĆ  e Post";
-$a->strings["Edit Connection"] = "Modifica il contatto";
-$a->strings["Message"] = "Messaggio";
-$a->strings["Ratings"] = "Valutazioni";
-$a->strings["%s likes this."] = "Piace a %s.";
-$a->strings["%s doesn't like this."] = "Non piace a %s.";
-$a->strings["<span %1\$s>%2\$d people</span> like this."] = array(
- 0 => "",
- 1 => "Piace a <span %1\$s>%2\$d persone</span>.",
-);
-$a->strings["<span %1\$s>%2\$d people</span> don't like this."] = array(
- 0 => "",
- 1 => "Non piace a <span %1\$s>%2\$d persone</span>.",
-);
-$a->strings["and"] = "e";
-$a->strings[", and %d other people"] = array(
- 0 => "",
- 1 => "e altre %d persone",
-);
-$a->strings["%s like this."] = "Piace a %s.";
-$a->strings["%s don't like this."] = "Non piace a %s.";
-$a->strings["Visible to <strong>everybody</strong>"] = "Visibile a <strong>tutti</strong>";
-$a->strings["Please enter a link URL:"] = "Inserisci l'indirizzo del link:";
-$a->strings["Please enter a video link/URL:"] = "Inserisci l'indirizzo del video:";
-$a->strings["Please enter an audio link/URL:"] = "Inserisci l'indirizzo dell'audio:";
-$a->strings["Tag term:"] = "Tag:";
-$a->strings["Save to Folder:"] = "Salva nella cartella:";
-$a->strings["Where are you right now?"] = "Dove sei ora?";
-$a->strings["Expires YYYY-MM-DD HH:MM"] = "Scade il YYYY-MM-DD HH:MM";
-$a->strings["Preview"] = "Anteprima";
-$a->strings["Share"] = "Condividi";
-$a->strings["Page link name"] = "Nome del link alla pagina";
-$a->strings["Post as"] = "Pubblica come ";
-$a->strings["Bold"] = "Grassetto";
-$a->strings["Italic"] = "Corsivo";
-$a->strings["Underline"] = "Sottolineato";
-$a->strings["Quote"] = "Citazione";
-$a->strings["Code"] = "Codice";
-$a->strings["Upload photo"] = "Carica foto";
-$a->strings["upload photo"] = "carica foto";
-$a->strings["Attach file"] = "Allega file";
-$a->strings["attach file"] = "allega file";
-$a->strings["Insert web link"] = "Inserisci un indirizzo web";
-$a->strings["web link"] = "link web";
-$a->strings["Insert video link"] = "Inserisci l'indirizzo del video";
-$a->strings["video link"] = "link video";
-$a->strings["Insert audio link"] = "Inserisci l'indirizzo dell'audio";
-$a->strings["audio link"] = "link audio";
-$a->strings["Set your location"] = "La tua localitĆ ";
-$a->strings["set location"] = "la tua localitĆ ";
-$a->strings["Toggle voting"] = "Abilita/disabilita il voto";
-$a->strings["Clear browser location"] = "Rimuovi la localitĆ  data dal browser";
-$a->strings["clear location"] = "rimuovi la localitĆ ";
-$a->strings["Title (optional)"] = "Titolo (facoltativo)";
-$a->strings["Categories (optional, comma-separated list)"] = "Categorie (facoltative, lista separata da virgole)";
-$a->strings["Permission settings"] = "Permessi dei tuoi contatti";
-$a->strings["permissions"] = "permessi";
-$a->strings["Public post"] = "Post pubblico";
-$a->strings["Example: bob@example.com, mary@example.com"] = "Per esempio: mario@esempio.com, simona@esempio.com";
-$a->strings["Set expiration date"] = "Data di scadenza";
-$a->strings["Set publish date"] = "Data di uscita programmata";
-$a->strings["Encrypt text"] = "Cifratura del messaggio";
-$a->strings["OK"] = "OK";
-$a->strings["Cancel"] = "Annulla";
-$a->strings["Discover"] = "Scopri";
-$a->strings["Imported public streams"] = "Contenuti pubblici importati";
-$a->strings["Commented Order"] = "Commenti recenti";
-$a->strings["Sort by Comment Date"] = "Per data del commento";
-$a->strings["Posted Order"] = "Post recenti";
-$a->strings["Sort by Post Date"] = "Per data di creazione";
-$a->strings["Personal"] = "Personali";
-$a->strings["Posts that mention or involve you"] = "Post che ti riguardano";
-$a->strings["New"] = "NovitĆ ";
-$a->strings["Activity Stream - by date"] = "Elenco attivitĆ  - per data";
-$a->strings["Starred"] = "Preferiti";
-$a->strings["Favourite Posts"] = "Post preferiti";
-$a->strings["Spam"] = "Spam";
-$a->strings["Posts flagged as SPAM"] = "Post marcati come spam";
-$a->strings["Channel"] = "Canale";
-$a->strings["Status Messages and Posts"] = "Post e messaggi di stato";
-$a->strings["About"] = "Informazioni";
-$a->strings["Profile Details"] = "Dettagli del profilo";
-$a->strings["Photo Albums"] = "Album foto";
-$a->strings["Files and Storage"] = "Archivio file";
-$a->strings["Chatrooms"] = "Chat";
-$a->strings["Saved Bookmarks"] = "Segnalibri salvati";
-$a->strings["Manage Webpages"] = "Gestisci le pagine web";
-$a->strings["View all"] = "Vedi tutto";
-$a->strings["__ctx:noun__ Like"] = array(
- 0 => "Mi piace",
- 1 => "Mi piace",
-);
-$a->strings["__ctx:noun__ Dislike"] = array(
- 0 => "Non mi piace",
- 1 => "Non mi piace",
-);
-$a->strings["__ctx:noun__ Attending"] = array(
- 0 => "Partecipa",
- 1 => "Partecipano",
-);
-$a->strings["__ctx:noun__ Not Attending"] = array(
- 0 => "Non partecipa",
- 1 => "Non partecipano",
-);
-$a->strings["__ctx:noun__ Undecided"] = array(
- 0 => "Indeciso",
- 1 => "Indecisi",
-);
-$a->strings["__ctx:noun__ Agree"] = array(
- 0 => "D'accordo",
- 1 => "D'accordo",
-);
-$a->strings["__ctx:noun__ Disagree"] = array(
- 0 => "Non d'accordo",
- 1 => "Non d'accordo",
-);
-$a->strings["__ctx:noun__ Abstain"] = array(
- 0 => "Astenuto",
- 1 => "Astenuti",
-);
-$a->strings["Miscellaneous"] = "Altro";
-$a->strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-GG oppure MM-GG";
-$a->strings["Required"] = "Obbligatorio";
-$a->strings["never"] = "mai";
-$a->strings["less than a second ago"] = "meno di un secondo fa";
-$a->strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "%1\$d %2\$s fa";
-$a->strings["__ctx:relative_date__ year"] = array(
- 0 => "anno",
- 1 => "anni",
-);
-$a->strings["__ctx:relative_date__ month"] = array(
- 0 => "mese",
- 1 => "mesi",
-);
-$a->strings["__ctx:relative_date__ week"] = array(
- 0 => "settimana",
- 1 => "settimane",
-);
-$a->strings["__ctx:relative_date__ day"] = array(
- 0 => "giorno",
- 1 => "giorni",
-);
-$a->strings["__ctx:relative_date__ hour"] = array(
- 0 => "ora",
- 1 => "ore",
-);
-$a->strings["__ctx:relative_date__ minute"] = array(
- 0 => "minuto",
- 1 => "minuti",
-);
-$a->strings["__ctx:relative_date__ second"] = array(
- 0 => "secondo",
- 1 => "secondi",
-);
-$a->strings["%1\$s's birthday"] = "Compleanno di %1\$s";
-$a->strings["Happy Birthday %1\$s"] = "Buon compleanno %1\$s";
$a->strings["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'";
$a->strings["Directory Options"] = "VisibilitĆ  negli elenchi pubblici";
$a->strings["Safe Mode"] = "ModalitĆ  SafeSearch";
@@ -369,6 +147,7 @@ $a->strings["Yes"] = "SƬ";
$a->strings["Public Forums Only"] = "Solo forum pubblici";
$a->strings["This Website Only"] = "Solo in questo sito";
$a->strings["This event has been added to your calendar."] = "Questo evento ĆØ stato aggiunto al tuo calendario";
+$a->strings["event"] = "l'evento";
$a->strings["Not specified"] = "Non specificato";
$a->strings["Needs Action"] = "Necessita di un intervento";
$a->strings["Completed"] = "Completato";
@@ -382,15 +161,6 @@ $a->strings["Protocol disabled."] = "Protocollo disabilitato.";
$a->strings["Channel discovery failed."] = "La ricerca del canale non ha avuto successo.";
$a->strings["local account not found."] = "l'account locale non ĆØ stato trovato.";
$a->strings["Cannot connect to yourself."] = "Non puoi connetterti a te stesso.";
-$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un gruppo di canali con lo stesso nome esisteva in precedenza ed ĆØ stato ripristinato. I vecchi permessi saranno applicati ai nuovi canali. Se non vuoi che ciĆ² accada, devi creare un gruppo con un nome diverso.";
-$a->strings["Add new connections to this privacy group"] = "Aggiungi nuovi contatti a questo gruppo di canali";
-$a->strings["All Channels"] = "Tutti i canali";
-$a->strings["edit"] = "modifica";
-$a->strings["Privacy Groups"] = "Gruppi di canali";
-$a->strings["Edit group"] = "Modifica il gruppo";
-$a->strings["Add privacy group"] = "Crea un gruppo di canali";
-$a->strings["Channels not in any privacy group"] = "Canali che non sono in nessun gruppo";
-$a->strings["add"] = "aggiungi";
$a->strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Non posso creare un canale con un identificativo che giĆ  esiste su questo sistema. L'importazione ĆØ fallita.";
$a->strings["Channel clone failed. Import failed."] = "Impossibile clonare il canale. L'importazione ĆØ fallita.";
$a->strings["Cloned channel not found. Import failed."] = "Impossibile trovare il canale clonato. L'importazione ĆØ fallita.";
@@ -483,6 +253,7 @@ $a->strings["Logout"] = "Esci";
$a->strings["End this session"] = "Chiudi questa sessione";
$a->strings["Home"] = "Bacheca";
$a->strings["Your posts and conversations"] = "I tuoi post e conversazioni";
+$a->strings["View Profile"] = "Profilo";
$a->strings["Your profile page"] = "Il tuo profilo";
$a->strings["Edit Profiles"] = "Modifica i tuoi profili";
$a->strings["Manage/Edit profiles"] = "Gestisci i tuoi profili";
@@ -527,25 +298,33 @@ $a->strings["Manage Your Channels"] = "Gestisci i tuoi canali";
$a->strings["Account/Channel Settings"] = "Impostazioni dell'account e del canale";
$a->strings["Admin"] = "Amministrazione";
$a->strings["Site Setup and Configuration"] = "Installazione e configurazione del sito";
+$a->strings["Loading..."] = "Caricamento in corso...";
$a->strings["@name, #tag, ?doc, content"] = "@nome, #tag, ?guida, contenuto";
$a->strings["Please wait..."] = "Attendere...";
$a->strings["created a new post"] = "Ha creato un nuovo post";
$a->strings["commented on %s's post"] = "ha commentato il post di %s";
$a->strings["New Page"] = "Nuova pagina web";
$a->strings["View"] = "Guarda";
+$a->strings["Preview"] = "Anteprima";
$a->strings["Actions"] = "Azioni";
$a->strings["Page Link"] = "Link alla pagina";
$a->strings["Title"] = "Titolo";
$a->strings["Created"] = "Creato";
$a->strings["Edited"] = "Modificato";
$a->strings["Profile Photos"] = "Foto del profilo";
-$a->strings["Image exceeds website size limit of %lu bytes"] = "L'immagine supera il limite massimo di %lu bytes";
-$a->strings["Image file is empty."] = "Il file dell'immagine ĆØ vuoto.";
-$a->strings["Unable to process image"] = "Impossibile elaborare l'immagine";
-$a->strings["Photo storage failed."] = "Impossibile salvare la foto.";
-$a->strings["a new photo"] = "una nuova foto";
-$a->strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s ha pubblicato %2\$s su %3\$s";
-$a->strings["Upload New Photos"] = "Carica nuove foto";
+$a->strings["Image/photo"] = "Immagine";
+$a->strings["Encrypted content"] = "Contenuto cifrato";
+$a->strings["Install %s element: "] = "Installa l'elemento %s:";
+$a->strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Questo post contiene un elemento %s installabile, tuttavia non hai i permessi necessari per l'installazione.";
+$a->strings["webpage"] = "pagina web";
+$a->strings["layout"] = "layout";
+$a->strings["block"] = "block";
+$a->strings["menu"] = "menu";
+$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s ha scritto %2\$s %3\$s";
+$a->strings["post"] = "il post";
+$a->strings["Different viewers will see this text differently"] = "Ad altri questo testo potrebbe apparire in modo differente";
+$a->strings["$1 spoiler"] = "$1 spoiler";
+$a->strings["$1 wrote:"] = "$1 ha scritto:";
$a->strings["Male"] = "Maschio";
$a->strings["Female"] = "Femmina";
$a->strings["Currently Male"] = "Al momento maschio";
@@ -615,10 +394,65 @@ $a->strings["like"] = "mi piace";
$a->strings["likes"] = "gli piace";
$a->strings["dislike"] = "non mi piace";
$a->strings["dislikes"] = "non gli piace";
+$a->strings["__ctx:noun__ Like"] = array(
+ 0 => "Mi piace",
+ 1 => "Mi piace",
+);
+$a->strings["Miscellaneous"] = "Altro";
+$a->strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-GG oppure MM-GG";
+$a->strings["Required"] = "Obbligatorio";
+$a->strings["never"] = "mai";
+$a->strings["less than a second ago"] = "meno di un secondo fa";
+$a->strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "%1\$d %2\$s fa";
+$a->strings["__ctx:relative_date__ year"] = array(
+ 0 => "anno",
+ 1 => "anni",
+);
+$a->strings["__ctx:relative_date__ month"] = array(
+ 0 => "mese",
+ 1 => "mesi",
+);
+$a->strings["__ctx:relative_date__ week"] = array(
+ 0 => "settimana",
+ 1 => "settimane",
+);
+$a->strings["__ctx:relative_date__ day"] = array(
+ 0 => "giorno",
+ 1 => "giorni",
+);
+$a->strings["__ctx:relative_date__ hour"] = array(
+ 0 => "ora",
+ 1 => "ore",
+);
+$a->strings["__ctx:relative_date__ minute"] = array(
+ 0 => "minuto",
+ 1 => "minuti",
+);
+$a->strings["__ctx:relative_date__ second"] = array(
+ 0 => "secondo",
+ 1 => "secondi",
+);
+$a->strings["%1\$s's birthday"] = "Compleanno di %1\$s";
+$a->strings["Happy Birthday %1\$s"] = "Buon compleanno %1\$s";
$a->strings["Invalid data packet"] = "Dati ricevuti non validi";
$a->strings["Unable to verify channel signature"] = "Impossibile verificare la firma elettronica del canale";
$a->strings["Unable to verify site signature for %s"] = "Impossibile verificare la firma elettronica del sito %s";
$a->strings["invalid target signature"] = "la firma ricevuta non ĆØ valida";
+$a->strings["Item was not found."] = "Elemento non trovato.";
+$a->strings["No source file."] = "Nessun file di origine.";
+$a->strings["Cannot locate file to replace"] = "Il file da sostituire non ĆØ stato trovato";
+$a->strings["Cannot locate file to revise/update"] = "Il file da aggiornare non ĆØ stato trovato";
+$a->strings["File exceeds size limit of %d"] = "Il file supera la dimensione massima di %d";
+$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Hai raggiunto il limite complessivo di %1$.0f Mbytes per gli allegati.";
+$a->strings["File upload failed. Possible system limit or action terminated."] = "Caricamento file fallito, potrebbe essere stato interrotto o potrebbe aver superato lo spazio assegnato.";
+$a->strings["Stored file could not be verified. Upload failed."] = "Il file non puĆ² essere verificato. Caricamento fallito.";
+$a->strings["Path not available."] = "Percorso non disponibile.";
+$a->strings["Empty pathname"] = "Il percorso del file ĆØ vuoto";
+$a->strings["duplicate filename or path"] = "il file o il percorso del file ĆØ duplicato";
+$a->strings["Path not found."] = "Percorso del file non trovato.";
+$a->strings["mkdir failed."] = "mkdir fallito.";
+$a->strings["database storage failed."] = "scrittura su database fallita.";
+$a->strings["Empty path"] = "La posizione ĆØ vuota";
$a->strings["Frequently"] = "Frequentemente";
$a->strings["Hourly"] = "Ogni ora";
$a->strings["Twice daily"] = "Due volte al giorno";
@@ -641,6 +475,14 @@ $a->strings["\$projectname"] = "\$projectname";
$a->strings["Thank You,"] = "Grazie,";
$a->strings["%s Administrator"] = "L'amministratore di %s";
$a->strings["No Subject"] = "Nessun titolo";
+$a->strings["Image exceeds website size limit of %lu bytes"] = "L'immagine supera il limite massimo di %lu bytes";
+$a->strings["Image file is empty."] = "Il file dell'immagine ĆØ vuoto.";
+$a->strings["Unable to process image"] = "Impossibile elaborare l'immagine";
+$a->strings["Photo storage failed."] = "Impossibile salvare la foto.";
+$a->strings["a new photo"] = "una nuova foto";
+$a->strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s ha pubblicato %2\$s su %3\$s";
+$a->strings["Photo Albums"] = "Album foto";
+$a->strings["Upload New Photos"] = "Carica nuove foto";
$a->strings["General Features"] = "FunzionalitĆ  di base";
$a->strings["Content Expiration"] = "Scadenza";
$a->strings["Remove posts/comments and/or private messages at a future time"] = "Elimina i post, i commenti o i messaggi privati dopo un lasso di tempo";
@@ -660,13 +502,13 @@ $a->strings["Navigation Channel Select"] = "Scegli il canale attivo dal menu";
$a->strings["Change channels directly from within the navigation dropdown menu"] = "Scegli il canale attivo direttamente dal menu di navigazione";
$a->strings["Photo Location"] = "Posizione geografica";
$a->strings["If location data is available on uploaded photos, link this to a map."] = "Collega la foto a una mappa quando contiene indicazioni geografiche.";
+$a->strings["Smart Birthdays"] = "Compleanni intelligenti";
+$a->strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = "Fa in modo che i compleanni siano segnalati in base al fuso orario, se hai amici sparsi per il mondo.";
$a->strings["Expert Mode"] = "ModalitĆ  esperto";
$a->strings["Enable Expert Mode to provide advanced configuration options"] = "Abilita la modalitĆ  esperto per vedere le opzioni di configurazione avanzate";
$a->strings["Premium Channel"] = "Canale premium";
$a->strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Ti permette di impostare restrizioni e termini d'uso per il canale";
$a->strings["Post Composition Features"] = "ModalitĆ  di scrittura post";
-$a->strings["Use Markdown"] = "Usa il markdown";
-$a->strings["Allow use of \"Markdown\" to format posts"] = "Consenti l'uso del markdown per formattare i post";
$a->strings["Large Photos"] = "Foto grandi";
$a->strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Includi anteprime grandi per le foto dei tuoi post (1024px). Altrimenti saranno mostrate anteprime piĆ¹ piccole (640px)";
$a->strings["Channel Sources"] = "Sorgenti del canale";
@@ -682,6 +524,7 @@ $a->strings["Prevent posts with identical content to be published with less than
$a->strings["Network and Stream Filtering"] = "Filtraggio dei contenuti";
$a->strings["Search by Date"] = "Ricerca per data";
$a->strings["Ability to select posts by date ranges"] = "Per selezionare i post in un intervallo tra date";
+$a->strings["Privacy Groups"] = "Gruppi di canali";
$a->strings["Enable management and selection of privacy groups"] = "Abilita i gruppi di canali";
$a->strings["Saved Searches"] = "Ricerche salvate";
$a->strings["Save search terms for re-use"] = "Salva i termini delle ricerche per poterle ripetere";
@@ -707,29 +550,8 @@ $a->strings["Star Posts"] = "Post con stella";
$a->strings["Ability to mark special posts with a star indicator"] = "Mostra la stella per segnare i post preferiti";
$a->strings["Tag Cloud"] = "Nuvola di tag";
$a->strings["Provide a personal tag cloud on your channel page"] = "Mostra la nuvola dei tag che usi di piĆ¹ sulla pagina del tuo canale";
-$a->strings["Permission denied"] = "Permesso negato";
-$a->strings["(Unknown)"] = "(Sconosciuto)";
-$a->strings["Visible to anybody on the internet."] = "Visibile a chiunque su internet.";
-$a->strings["Visible to you only."] = "Visibile solo a te.";
-$a->strings["Visible to anybody in this network."] = "Visibile a tutti su questa rete.";
-$a->strings["Visible to anybody authenticated."] = "Visibile a chiunque sia autenticato.";
-$a->strings["Visible to anybody on %s."] = "Visibile a tutti su %s.";
-$a->strings["Visible to all connections."] = "Visibile a tutti coloro che ti seguono.";
-$a->strings["Visible to approved connections."] = "Visibile ai contatti approvati.";
-$a->strings["Visible to specific connections."] = "Visibile ad alcuni contatti scelti.";
-$a->strings["Item not found."] = "Elemento non trovato.";
-$a->strings["Privacy group not found."] = "Gruppo di canali non trovato.";
-$a->strings["Privacy group is empty."] = "Gruppo di canali vuoto.";
-$a->strings["Privacy group: %s"] = "Gruppo di canali: %s";
-$a->strings["Connection: %s"] = "Contatto: %s";
-$a->strings["Connection not found."] = "Contatto non trovato.";
-$a->strings["female"] = "femmina";
-$a->strings["%1\$s updated her %2\$s"] = "Aggiornamento: %2\$s di %1\$s";
-$a->strings["male"] = "maschio";
-$a->strings["%1\$s updated his %2\$s"] = "Aggiornamento: %2\$s di %1\$s";
-$a->strings["%1\$s updated their %2\$s"] = "Aggiornamento: %2\$s di %1\$s";
-$a->strings["profile photo"] = "foto del profilo";
$a->strings["System"] = "Sistema";
+$a->strings["Personal"] = "Personali";
$a->strings["Create Personal App"] = "Crea app personale";
$a->strings["Edit Personal App"] = "Modifica app personale";
$a->strings["Ignore/Hide"] = "Ignora/nascondi";
@@ -742,6 +564,7 @@ $a->strings["Examples: bob@example.com, https://example.com/barbara"] = "Per ese
$a->strings["Notes"] = "Note";
$a->strings["Save"] = "Salva";
$a->strings["Remove term"] = "Rimuovi termine";
+$a->strings["add"] = "aggiungi";
$a->strings["Archives"] = "Archivi";
$a->strings["Me"] = "Me";
$a->strings["Family"] = "Famiglia";
@@ -795,7 +618,7 @@ $a->strings["Security"] = "Sicurezza";
$a->strings["Plugins"] = "Plugin";
$a->strings["Themes"] = "Temi";
$a->strings["Inspect queue"] = "Coda di attesa";
-$a->strings["Profile Config"] = "Configurazione del profilo";
+$a->strings["Profile Fields"] = "Campi del profilo";
$a->strings["DB updates"] = "Aggiornamenti al DB";
$a->strings["Logs"] = "Log";
$a->strings["Plugin Features"] = "Plugin";
@@ -811,8 +634,9 @@ $a->strings["newer"] = "piĆ¹ nuovi";
$a->strings["No connections"] = "Nessun contatto";
$a->strings["View all %s connections"] = "Mostra tutti i %s contatti";
$a->strings["poke"] = "poke";
+$a->strings["poked"] = "ha ricevuto un poke";
$a->strings["ping"] = "ping";
-$a->strings["pinged"] = "ha ricevuto un ping";
+$a->strings["pinged"] = "ha effettuato un ping";
$a->strings["prod"] = "spintone";
$a->strings["prodded"] = "ha ricevuto uno spintone";
$a->strings["slap"] = "schiaffo";
@@ -854,12 +678,22 @@ $a->strings["Page layout"] = "Layout della pagina";
$a->strings["You can create your own with the layouts tool"] = "Puoi creare un tuo layout dalla configurazione delle pagine web";
$a->strings["Page content type"] = "Tipo di contenuto della pagina";
$a->strings["Select an alternate language"] = "Seleziona una lingua diversa";
+$a->strings["photo"] = "la foto";
+$a->strings["status"] = "il messaggio di stato";
+$a->strings["comment"] = "il commento";
$a->strings["activity"] = "l'attivitĆ ";
$a->strings["Design Tools"] = "Strumenti di design";
$a->strings["Blocks"] = "Block";
$a->strings["Menus"] = "MenĆ¹";
$a->strings["Layouts"] = "Layout";
$a->strings["Pages"] = "Pagine";
+$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un gruppo di canali con lo stesso nome esisteva in precedenza ed ĆØ stato ripristinato. I vecchi permessi saranno applicati ai nuovi canali. Se non vuoi che ciĆ² accada, devi creare un gruppo con un nome diverso.";
+$a->strings["Add new connections to this privacy group"] = "Aggiungi nuovi contatti a questo gruppo di canali";
+$a->strings["All Channels"] = "Tutti i canali";
+$a->strings["edit"] = "modifica";
+$a->strings["Edit group"] = "Modifica il gruppo";
+$a->strings["Add privacy group"] = "Crea un gruppo di canali";
+$a->strings["Channels not in any privacy group"] = "Canali che non sono in nessun gruppo";
$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
$a->strings["[Hubzilla:Notify] New mail received at %s"] = "[Hubzilla] Nuovo messaggio su %s";
$a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s ti ha mandato un messaggio privato su %3\$s.";
@@ -908,11 +742,9 @@ $a->strings["Default Profile"] = "Profilo predefinito";
$a->strings["Requested channel is not available."] = "Il canale che cerchi non ĆØ disponibile.";
$a->strings["Requested profile is not available."] = "Il profilo richiesto non ĆØ disponibile.";
$a->strings["Change profile photo"] = "Cambia la foto del profilo";
-$a->strings["Profiles"] = "Profili";
-$a->strings["Manage/edit profiles"] = "Gestisci/modifica i profili";
$a->strings["Create New Profile"] = "Crea un nuovo profilo";
$a->strings["Profile Image"] = "Immagine del profilo";
-$a->strings["visible to everybody"] = "visibile a tutti";
+$a->strings["Visible to everybody"] = "Visibile a tutti";
$a->strings["Edit visibility"] = "Cambia la visibilitĆ ";
$a->strings["Gender:"] = "Sesso:";
$a->strings["Status:"] = "Stato:";
@@ -955,6 +787,150 @@ $a->strings["Like this thing"] = "Mi piace";
$a->strings["cover photo"] = "Copertina del canale";
$a->strings["Embedded content"] = "Contenuti incorporati";
$a->strings["Embedding disabled"] = "Disabilita la creazione di contenuti incorporati";
+$a->strings["channel"] = "il canale";
+$a->strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s piace %3\$s di %2\$s";
+$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s non piace %3\$s di %2\$s";
+$a->strings["%1\$s is now connected with %2\$s"] = "%1\$s adesso ĆØ connesso con %2\$s";
+$a->strings["%1\$s poked %2\$s"] = "%1\$s ha mandato un poke a %2\$s";
+$a->strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s ĆØ %2\$s";
+$a->strings["__ctx:title__ Likes"] = "Mi piace";
+$a->strings["__ctx:title__ Dislikes"] = "Non mi piace";
+$a->strings["__ctx:title__ Agree"] = "D'accordo";
+$a->strings["__ctx:title__ Disagree"] = "Non d'accordo";
+$a->strings["__ctx:title__ Abstain"] = "Astenuti";
+$a->strings["__ctx:title__ Attending"] = "Partecipano";
+$a->strings["__ctx:title__ Not attending"] = "Non partecipano";
+$a->strings["__ctx:title__ Might attend"] = "Forse partecipano";
+$a->strings["Select"] = "Scegli";
+$a->strings["Private Message"] = "Messaggio privato";
+$a->strings["Message signature validated"] = "Messaggio con firma verificata";
+$a->strings["Message signature incorrect"] = "Massaggio con firma non corretta";
+$a->strings["View %s's profile @ %s"] = "Vedi il profilo di %s @ %s";
+$a->strings["Categories:"] = "Categorie:";
+$a->strings["Filed under:"] = "Classificato come:";
+$a->strings["from %s"] = "da %s";
+$a->strings["last edited: %s"] = "ultima modifica: %s";
+$a->strings["Expires: %s"] = "Scadenza: %s";
+$a->strings["View in context"] = "Vedi nel contesto";
+$a->strings["Please wait"] = "Attendere";
+$a->strings["remove"] = "rimuovi";
+$a->strings["Delete Selected Items"] = "Elimina gli oggetti selezionati";
+$a->strings["View Source"] = "Vedi il sorgente";
+$a->strings["Follow Thread"] = "Segui la discussione";
+$a->strings["Unfollow Thread"] = "Non seguire la discussione";
+$a->strings["Activity/Posts"] = "AttivitĆ  e Post";
+$a->strings["Edit Connection"] = "Modifica il contatto";
+$a->strings["Message"] = "Messaggio";
+$a->strings["Ratings"] = "Valutazioni";
+$a->strings["%s likes this."] = "Piace a %s.";
+$a->strings["%s doesn't like this."] = "Non piace a %s.";
+$a->strings["<span %1\$s>%2\$d people</span> like this."] = array(
+ 0 => "",
+ 1 => "Piace a <span %1\$s>%2\$d persone</span>.",
+);
+$a->strings["<span %1\$s>%2\$d people</span> don't like this."] = array(
+ 0 => "",
+ 1 => "Non piace a <span %1\$s>%2\$d persone</span>.",
+);
+$a->strings["and"] = "e";
+$a->strings[", and %d other people"] = array(
+ 0 => "",
+ 1 => "e altre %d persone",
+);
+$a->strings["%s like this."] = "Piace a %s.";
+$a->strings["%s don't like this."] = "Non piace a %s.";
+$a->strings["Visible to <strong>everybody</strong>"] = "Visibile a <strong>tutti</strong>";
+$a->strings["Please enter a link URL:"] = "Inserisci l'indirizzo del link:";
+$a->strings["Please enter a video link/URL:"] = "Inserisci l'indirizzo del video:";
+$a->strings["Please enter an audio link/URL:"] = "Inserisci l'indirizzo dell'audio:";
+$a->strings["Tag term:"] = "Tag:";
+$a->strings["Save to Folder:"] = "Salva nella cartella:";
+$a->strings["Where are you right now?"] = "Dove sei ora?";
+$a->strings["Expires YYYY-MM-DD HH:MM"] = "Scade il YYYY-MM-DD HH:MM";
+$a->strings["Share"] = "Condividi";
+$a->strings["Page link name"] = "Nome del link alla pagina";
+$a->strings["Post as"] = "Pubblica come ";
+$a->strings["Bold"] = "Grassetto";
+$a->strings["Italic"] = "Corsivo";
+$a->strings["Underline"] = "Sottolineato";
+$a->strings["Quote"] = "Citazione";
+$a->strings["Code"] = "Codice";
+$a->strings["Upload photo"] = "Carica foto";
+$a->strings["upload photo"] = "carica foto";
+$a->strings["Attach file"] = "Allega file";
+$a->strings["attach file"] = "allega file";
+$a->strings["Insert web link"] = "Inserisci un indirizzo web";
+$a->strings["web link"] = "link web";
+$a->strings["Insert video link"] = "Inserisci l'indirizzo del video";
+$a->strings["video link"] = "link video";
+$a->strings["Insert audio link"] = "Inserisci l'indirizzo dell'audio";
+$a->strings["audio link"] = "link audio";
+$a->strings["Set your location"] = "La tua localitĆ ";
+$a->strings["set location"] = "la tua localitĆ ";
+$a->strings["Toggle voting"] = "Abilita/disabilita il voto";
+$a->strings["Clear browser location"] = "Rimuovi la localitĆ  data dal browser";
+$a->strings["clear location"] = "rimuovi la localitĆ ";
+$a->strings["Title (optional)"] = "Titolo (facoltativo)";
+$a->strings["Categories (optional, comma-separated list)"] = "Categorie (facoltative, lista separata da virgole)";
+$a->strings["Permission settings"] = "Permessi dei tuoi contatti";
+$a->strings["permissions"] = "permessi";
+$a->strings["Public post"] = "Post pubblico";
+$a->strings["Example: bob@example.com, mary@example.com"] = "Per esempio: mario@esempio.com, simona@esempio.com";
+$a->strings["Set expiration date"] = "Data di scadenza";
+$a->strings["Set publish date"] = "Data di uscita programmata";
+$a->strings["Encrypt text"] = "Cifratura del messaggio";
+$a->strings["OK"] = "OK";
+$a->strings["Cancel"] = "Annulla";
+$a->strings["Discover"] = "Scopri";
+$a->strings["Imported public streams"] = "Contenuti pubblici importati";
+$a->strings["Commented Order"] = "Commenti recenti";
+$a->strings["Sort by Comment Date"] = "Per data del commento";
+$a->strings["Posted Order"] = "Post recenti";
+$a->strings["Sort by Post Date"] = "Per data di creazione";
+$a->strings["Posts that mention or involve you"] = "Post che ti riguardano";
+$a->strings["New"] = "NovitĆ ";
+$a->strings["Activity Stream - by date"] = "Elenco attivitĆ  - per data";
+$a->strings["Starred"] = "Preferiti";
+$a->strings["Favourite Posts"] = "Post preferiti";
+$a->strings["Spam"] = "Spam";
+$a->strings["Posts flagged as SPAM"] = "Post marcati come spam";
+$a->strings["Channel"] = "Canale";
+$a->strings["Status Messages and Posts"] = "Post e messaggi di stato";
+$a->strings["About"] = "Informazioni";
+$a->strings["Profile Details"] = "Dettagli del profilo";
+$a->strings["Files and Storage"] = "Archivio file";
+$a->strings["Chatrooms"] = "Chat";
+$a->strings["Saved Bookmarks"] = "Segnalibri salvati";
+$a->strings["Manage Webpages"] = "Gestisci le pagine web";
+$a->strings["View all"] = "Vedi tutto";
+$a->strings["__ctx:noun__ Dislike"] = array(
+ 0 => "Non mi piace",
+ 1 => "Non mi piace",
+);
+$a->strings["__ctx:noun__ Attending"] = array(
+ 0 => "Partecipa",
+ 1 => "Partecipano",
+);
+$a->strings["__ctx:noun__ Not Attending"] = array(
+ 0 => "Non partecipa",
+ 1 => "Non partecipano",
+);
+$a->strings["__ctx:noun__ Undecided"] = array(
+ 0 => "Indeciso",
+ 1 => "Indecisi",
+);
+$a->strings["__ctx:noun__ Agree"] = array(
+ 0 => "D'accordo",
+ 1 => "D'accordo",
+);
+$a->strings["__ctx:noun__ Disagree"] = array(
+ 0 => "Non d'accordo",
+ 1 => "Non d'accordo",
+);
+$a->strings["__ctx:noun__ Abstain"] = array(
+ 0 => "Astenuto",
+ 1 => "Astenuti",
+);
$a->strings["Save to Folder"] = "Salva nella cartella";
$a->strings["I will attend"] = "ParteciperĆ²";
$a->strings["I will not attend"] = "Non parteciperĆ²";
@@ -1025,6 +1001,28 @@ $a->strings["Special Purpose"] = "Per finalitĆ  speciali";
$a->strings["Special - Celebrity/Soapbox"] = "Speciale - Pagina per fan";
$a->strings["Special - Group Repository"] = "Speciale - Repository di gruppo";
$a->strings["Custom/Expert Mode"] = "Personalizzazione per esperti";
+$a->strings["Permission denied"] = "Permesso negato";
+$a->strings["(Unknown)"] = "(Sconosciuto)";
+$a->strings["Visible to anybody on the internet."] = "Visibile a chiunque su internet.";
+$a->strings["Visible to you only."] = "Visibile solo a te.";
+$a->strings["Visible to anybody in this network."] = "Visibile a tutti su questa rete.";
+$a->strings["Visible to anybody authenticated."] = "Visibile a chiunque sia autenticato.";
+$a->strings["Visible to anybody on %s."] = "Visibile a tutti su %s.";
+$a->strings["Visible to all connections."] = "Visibile a tutti coloro che ti seguono.";
+$a->strings["Visible to approved connections."] = "Visibile ai contatti approvati.";
+$a->strings["Visible to specific connections."] = "Visibile ad alcuni contatti scelti.";
+$a->strings["Item not found."] = "Elemento non trovato.";
+$a->strings["Privacy group not found."] = "Gruppo di canali non trovato.";
+$a->strings["Privacy group is empty."] = "Gruppo di canali vuoto.";
+$a->strings["Privacy group: %s"] = "Gruppo di canali: %s";
+$a->strings["Connection: %s"] = "Contatto: %s";
+$a->strings["Connection not found."] = "Contatto non trovato.";
+$a->strings["female"] = "femmina";
+$a->strings["%1\$s updated her %2\$s"] = "Aggiornamento: %2\$s di %1\$s";
+$a->strings["male"] = "maschio";
+$a->strings["%1\$s updated his %2\$s"] = "Aggiornamento: %2\$s di %1\$s";
+$a->strings["%1\$s updated their %2\$s"] = "Aggiornamento: %2\$s di %1\$s";
+$a->strings["profile photo"] = "foto del profilo";
$a->strings["Some blurb about what to do when you're new here"] = "Qualche suggerimento per i nuovi utenti su cosa fare";
$a->strings["network"] = "rete";
$a->strings["RSS"] = "RSS";
@@ -1497,9 +1495,9 @@ $a->strings["Your nickname will be used to create an easy to remember channel ad
$a->strings["Channel role and privacy"] = "Tipo di canale e privacy";
$a->strings["Select a channel role with your privacy requirements."] = "Scegli il tipo di canale che vuoi e la privacy da applicare.";
$a->strings["Read more about roles"] = "Maggiori informazioni sui ruoli";
-$a->strings["Create a Channel"] = "Crea un canale";
-$a->strings["A channel is your identity on the grid. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "Un canale ĆØ la tua identitĆ  sulla rete. PuĆ² rappresentare una persona, un blog o un forum, per esempio. I canali possono essere in contatto con altri canali per condividere i loro contenuti con permessi anche molto dettagliati.";
-$a->strings["Or <a href=\"import\">import an existing channel</a> from another location"] = "Oppure <a href=\"import\">importa un tuo canale esistente</a> da un altro hub";
+$a->strings["Create Channel"] = "Crea un canale";
+$a->strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "Un canale ĆØ la tua identitĆ  su questa rete. PuĆ² rappresentare una persona, un blog o un forum, per esempio. I canali possono essere in contatto con altri canali per condividere i loro contenuti con permessi anche molto dettagliati.";
+$a->strings["or <a href=\"import\">import an existing channel</a> from another location."] = "oppure <a href=\"import\">importa un canale esistente</a> da un altro server/hub.";
$a->strings["Invalid request identifier."] = "L'identificativo della richiesta non ĆØ valido.";
$a->strings["Discard"] = "Rifiuta";
$a->strings["No more system notifications."] = "Non ci sono nuove notifiche di sistema.";
@@ -1734,6 +1732,7 @@ $a->strings["Maintainer: "] = "Gestore:";
$a->strings["Minimum project version: "] = "Minima versione hubzilla";
$a->strings["Maximum project version: "] = "Massima versione hubzilla";
$a->strings["Minimum PHP version: "] = "Minima versione PHP:";
+$a->strings["Requires: "] = "Necessita di:";
$a->strings["Disabled - version incompatibility"] = "Disabilitato - incompatibilitĆ  di versione";
$a->strings["No themes found."] = "Nessun tema trovato.";
$a->strings["Screenshot"] = "Istantanea dello schermo";
@@ -1755,6 +1754,12 @@ $a->strings["Help text"] = "Testo di aiuto";
$a->strings["Additional info (optional)"] = "Informazioni aggiuntive (facoltative)";
$a->strings["Field definition not found"] = "Impossibile trovare la definizione del campo";
$a->strings["Edit Profile Field"] = "Modifica campo del profilo";
+$a->strings["Basic Profile Fields"] = "Campi base del profilo";
+$a->strings["Advanced Profile Fields"] = "Campi avanzati del profilo";
+$a->strings["(In addition to basic fields)"] = "(In aggiunta ai campi di base)";
+$a->strings["All available fields"] = "Tutti i campi disponibili";
+$a->strings["Custom Fields"] = "Campi Personalizzati";
+$a->strings["Create Custom Field"] = "Aggiungi Campi Personalizzati";
$a->strings["Poke somebody"] = "Manda un poke";
$a->strings["Poke/Prod"] = "Poke/Prod";
$a->strings["Poke, prod or do other things to somebody"] = "Manda un poke o altro a qualcuno";
@@ -1764,7 +1769,7 @@ $a->strings["Make this post private"] = "Rendi privato questo post";
$a->strings["Fetching URL returns error: %1\$s"] = "La chiamata all'URL restituisce questo errore: %1\$s";
$a->strings["Image uploaded but image cropping failed."] = "L'immagine ĆØ stata caricata, ma il non ĆØ stato possibile ritagliarla.";
$a->strings["Image resize failed."] = "Il ridimensionamento dell'immagine ĆØ fallito.";
-$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente.";
+$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Forza l'aggiornamento della pagina o cancella la cache del browser se la nuova foto non viene visualizzata immediatamente.";
$a->strings["Image upload failed."] = "Il caricamento dell'immagine ĆØ fallito.";
$a->strings["Unable to process image."] = "Impossibile elaborare l'immagine.";
$a->strings["Photo not available."] = "Foto non disponibile.";
@@ -1843,16 +1848,11 @@ $a->strings["Invalid profile identifier."] = "Indentificativo del profilo non va
$a->strings["Profile Visibility Editor"] = "Modifica la visibilitĆ  del profilo";
$a->strings["Click on a contact to add or remove."] = "Clicca su un contatto per aggiungerlo o rimuoverlo.";
$a->strings["Visible To"] = "Visibile a";
-$a->strings["Public Sites"] = "Siti pubblici";
-$a->strings["The listed sites allow public registration for the \$Projectname network. All sites in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some sites may require subscription or provide tiered service plans. The provider links <strong>may</strong> provide additional details."] = "I siti elencati permettono la registrazione libera sulla rete \$Projectname. Tutti questi hub sono interconnessi, quindi essere iscritti su uno equivale a una registrazione su tutta la rete. Alcuni siti potrebbero richiedere un abbonamento o dei servizi a pagamento. Per maggiori dettagli visita gli indirizzi nell'elenco.";
-$a->strings["Rate this hub"] = "Valuta questo hub";
-$a->strings["Site URL"] = "URL del sito";
+$a->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."] = "I siti elencati permettono la registrazione libera sulla rete \$Projectname. Tutti questi hub sono interconnessi, quindi essere iscritti su uno equivale a una registrazione su tutta la rete. Alcuni siti potrebbero richiedere un abbonamento o dei servizi a pagamento. Per maggiori dettagli visita gli indirizzi nell'elenco.";
+$a->strings["Hub URL"] = "URL del hub";
$a->strings["Access Type"] = "Tipo di accesso";
$a->strings["Registration Policy"] = "Politica di registrazione";
-$a->strings["Project"] = "Progetto";
-$a->strings["View hub ratings"] = "Vedi le valutazioni del hub";
$a->strings["Rate"] = "Valuta";
-$a->strings["View ratings"] = "Vedi le valutazioni";
$a->strings["Website:"] = "Sito web:";
$a->strings["Remote Channel [%s] (not yet known on this site)"] = "Canale remoto [%s] (non ancora conosciuto da questo sito)";
$a->strings["Rating (this information is public)"] = "Valutazione (visibile a tutti)";
@@ -1871,22 +1871,21 @@ $a->strings["Passwords do not match."] = "Le password non corrispondono.";
$a->strings["Registration successful. Please check your email for validation instructions."] = "La registrazione ĆØ terminata correttamente. Per continuare controlla l'email che ti ĆØ stata inviata.";
$a->strings["Your registration is pending approval by the site owner."] = "La tua richiesta ĆØ in attesa di approvazione da parte dell'amministratore di questo hub.";
$a->strings["Your registration can not be processed."] = "La tua registrazione non puo' essere processata.";
-$a->strings["Registration on this site is disabled."] = "Su questo sito la registrazione non ĆØ permessa";
-$a->strings["Registration on this site/hub is by approval only."] = "La registrazione su questo hub ĆØ soggetta ad approvazione.";
-$a->strings["<a href=\"pubsites\">Register at another affiliated site/hub</a>"] = "<a href=\"pubsites\">Registrati su un altro hub affiliato</a>";
+$a->strings["Registration on this hub is disabled."] = "Su questo hub la registrazione non ĆØ permessa.";
+$a->strings["Registration on this hub is by approval only."] = "La registrazione su questo hub ĆØ soggetta ad approvazione.";
+$a->strings["<a href=\"pubsites\">Register at another affiliated hub.</a>"] = "<a href=\"pubsites\">Registrati su un altro server hubzilla.</a>";
$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Questo hub ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani.";
$a->strings["Terms of Service"] = "Condizioni d'Uso";
$a->strings["I accept the %s for this website"] = "Accetto le %s di questo sito";
$a->strings["I am over 13 years of age and accept the %s for this website"] = "Ho piĆ¹ di 13 anni e accetto le %s di questo sito";
-$a->strings["Membership on this site is by invitation only."] = "Per registrarsi su questo hub ĆØ necessario un invito.";
-$a->strings["Please enter your invitation code"] = "Inserisci il codice dell'invito";
-$a->strings["Enter your name"] = "Il tuo nome";
-$a->strings["Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others."] = "Il nome breve sarƠ usato per creare un indirizzo facile da ricordare per il tuo canale (simile a una email). CosƬ potrai condividerlo e gli altri potranno trovarti.";
-$a->strings["Please choose a channel type (such as social networking or community forum) and privacy requirements so we can select the best permissions for you"] = "Descrivi il tipo di canale che vorresti creare (per esempio se ti interessa piĆ¹ usarlo come social network, come un forum di discussione...) e il tipo di privacy che preferisci. Hubzilla sceglierĆ  per te i permessi piĆ¹ adatti.";
-$a->strings["Channel Type"] = "Tipo di canale";
$a->strings["Your email address"] = "Il tuo indirizzo email";
$a->strings["Choose a password"] = "Scegli una password";
$a->strings["Please re-enter your password"] = "Ripeti la password per verifica";
+$a->strings["Please enter your invitation code"] = "Inserisci il codice dell'invito";
+$a->strings["no"] = "no";
+$a->strings["yes"] = "sƬ";
+$a->strings["Membership on this site is by invitation only."] = "Per registrarsi su questo hub ĆØ necessario un invito.";
+$a->strings["Proceed to create your first channel"] = "Continua e crea il tuo primo canale";
$a->strings["Please login."] = "Effettua l'accesso.";
$a->strings["Account removals are not allowed within 48 hours of changing the account password."] = "Non ĆØ possibile eliminare il tuo account prima di 48 ore dall'ultimo cambio password.";
$a->strings["Remove This Account"] = "Elimina questo account";
@@ -2226,6 +2225,7 @@ $a->strings["Xchan Lookup"] = "Ricerca canale";
$a->strings["Lookup xchan beginning with (or webbie): "] = "Cerca un canale (o un webbie) che inizia per:";
$a->strings["Cover Photos"] = "Copertine del canale";
$a->strings["Upload Cover Photo"] = "Carica una copertina";
+$a->strings["Permissions denied."] = "Permesso negato.";
$a->strings["Focus (Hubzilla default)"] = "Focus (predefinito)";
$a->strings["Theme settings"] = "Impostazioni del tema";
$a->strings["Select scheme"] = "Scegli uno schema";
diff --git a/view/nb-no/hmessages.po b/view/nb-no/hmessages.po
index e8a631eb6..e4a6f6127 100644
--- a/view/nb-no/hmessages.po
+++ b/view/nb-no/hmessages.po
@@ -3,13 +3,13 @@
# This file is distributed under the same license as the Red package.
#
# Translators:
-# Haakon Meland Eriksen <haakon.eriksen@far.no>, 2015
+# Haakon Meland Eriksen <haakon.eriksen@far.no>, 2015-2016
msgid ""
msgstr ""
"Project-Id-Version: Redmatrix\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-12-18 00:03-0800\n"
-"PO-Revision-Date: 2015-12-20 13:37+0000\n"
+"POT-Creation-Date: 2016-02-26 00:03-0800\n"
+"PO-Revision-Date: 2016-03-05 13:01+0000\n"
"Last-Translator: Haakon Meland Eriksen <haakon.eriksen@far.no>\n"
"Language-Team: Norwegian BokmƄl (Norway) (http://www.transifex.com/Friendica/red-matrix/language/nb_NO/)\n"
"MIME-Version: 1.0\n"
@@ -18,612 +18,894 @@ msgstr ""
"Language: nb_NO\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: ../../include/Contact.php:101 ../../include/identity.php:947
-#: ../../include/widgets.php:137 ../../include/widgets.php:175
-#: ../../include/conversation.php:953 ../../mod/match.php:64
-#: ../../mod/directory.php:318 ../../mod/suggest.php:52
-msgid "Connect"
-msgstr "Koble"
+#: ../../Zotlabs/Zot/Auth.php:140
+msgid ""
+"Remote authentication blocked. You are logged into this site locally. Please"
+" logout and retry."
+msgstr "Fjernautentisering blokkert. Du er logget inn pĆ„ dette nettstedet lokalt. Vennligst logg ut og prĆøv pĆ„ nytt."
-#: ../../include/Contact.php:118
-msgid "New window"
-msgstr "Nytt vindu"
+#: ../../Zotlabs/Zot/Auth.php:248 ../../mod/openid.php:72
+#: ../../mod/openid.php:179
+#, php-format
+msgid "Welcome %s. Remote authentication successful."
+msgstr "Velkommen %s. Ekstern autentisering er vellykket."
-#: ../../include/Contact.php:119
-msgid "Open the selected location in a different window or browser tab"
-msgstr "ƅpne det valgte stedet i et annet vindu eller nettleser-fane"
+#: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:239
+msgid "parent"
+msgstr "opp et nivƄ"
-#: ../../include/Contact.php:237
+#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2614
+msgid "Collection"
+msgstr "Samling"
+
+#: ../../Zotlabs/Storage/Browser.php:134
+msgid "Principal"
+msgstr "Viktigste"
+
+#: ../../Zotlabs/Storage/Browser.php:137
+msgid "Addressbook"
+msgstr "Adressebok"
+
+#: ../../Zotlabs/Storage/Browser.php:140
+msgid "Calendar"
+msgstr "Kalender"
+
+#: ../../Zotlabs/Storage/Browser.php:143
+msgid "Schedule Inbox"
+msgstr "Tidsplan innboks"
+
+#: ../../Zotlabs/Storage/Browser.php:146
+msgid "Schedule Outbox"
+msgstr "Tidsplan utboks"
+
+#: ../../Zotlabs/Storage/Browser.php:164 ../../include/apps.php:360
+#: ../../include/apps.php:415 ../../include/widgets.php:1410
+#: ../../include/conversation.php:1037 ../../mod/photos.php:766
+#: ../../mod/photos.php:1209
+msgid "Unknown"
+msgstr "Ukjent"
+
+#: ../../Zotlabs/Storage/Browser.php:226 ../../include/apps.php:135
+#: ../../include/nav.php:93 ../../include/conversation.php:1648
+#: ../../mod/fbrowser.php:109
+msgid "Files"
+msgstr "Filer"
+
+#: ../../Zotlabs/Storage/Browser.php:227
+msgid "Total"
+msgstr "Totalt"
+
+#: ../../Zotlabs/Storage/Browser.php:229
+msgid "Shared"
+msgstr "Delt"
+
+#: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:303
+#: ../../mod/blocks.php:152 ../../mod/layouts.php:175 ../../mod/menu.php:114
+#: ../../mod/new_channel.php:138 ../../mod/webpages.php:182
+msgid "Create"
+msgstr "Lag"
+
+#: ../../Zotlabs/Storage/Browser.php:231 ../../Zotlabs/Storage/Browser.php:305
+#: ../../include/widgets.php:1423 ../../mod/photos.php:793
+#: ../../mod/photos.php:1333 ../../mod/profile_photo.php:401
+#: ../../mod/cover_photo.php:353
+msgid "Upload"
+msgstr "Last opp"
+
+#: ../../Zotlabs/Storage/Browser.php:235 ../../mod/admin.php:1158
+#: ../../mod/settings.php:599 ../../mod/settings.php:625
+#: ../../mod/sharedwithme.php:95
+msgid "Name"
+msgstr "Navn"
+
+#: ../../Zotlabs/Storage/Browser.php:236
+msgid "Type"
+msgstr "Type"
+
+#: ../../Zotlabs/Storage/Browser.php:237 ../../include/text.php:1274
+#: ../../mod/sharedwithme.php:97
+msgid "Size"
+msgstr "StĆørrelse"
+
+#: ../../Zotlabs/Storage/Browser.php:238 ../../mod/sharedwithme.php:98
+msgid "Last Modified"
+msgstr "Sist endret"
+
+#: ../../Zotlabs/Storage/Browser.php:240 ../../include/apps.php:259
+#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36
+#: ../../include/menu.php:108 ../../include/identity.php:1352
+#: ../../include/ItemObject.php:100 ../../mod/blocks.php:153
+#: ../../mod/connections.php:286 ../../mod/connections.php:306
+#: ../../mod/editblock.php:135 ../../mod/editlayout.php:134
+#: ../../mod/editpost.php:112 ../../mod/editwebpage.php:176
+#: ../../mod/layouts.php:183 ../../mod/menu.php:108 ../../mod/settings.php:659
+#: ../../mod/thing.php:256 ../../mod/webpages.php:183
+msgid "Edit"
+msgstr "Endre"
+
+#: ../../Zotlabs/Storage/Browser.php:241 ../../include/apps.php:260
+#: ../../include/conversation.php:657 ../../include/ItemObject.php:120
+#: ../../mod/blocks.php:155 ../../mod/connections.php:259
+#: ../../mod/connedit.php:562 ../../mod/editblock.php:181
+#: ../../mod/editlayout.php:179 ../../mod/editwebpage.php:223
+#: ../../mod/group.php:173 ../../mod/photos.php:1140 ../../mod/admin.php:993
+#: ../../mod/admin.php:1152 ../../mod/settings.php:660 ../../mod/thing.php:257
+#: ../../mod/webpages.php:185
+msgid "Delete"
+msgstr "Slett"
+
+#: ../../Zotlabs/Storage/Browser.php:282
#, php-format
-msgid "User '%s' deleted"
-msgstr "Brukeren '%s' er slettet"
+msgid "You are using %1$s of your available file storage."
+msgstr "Du bruker %1$s av din tilgjengelige lagringsplass."
-#: ../../include/chat.php:23
-msgid "Missing room name"
-msgstr "Mangler romnavn"
+#: ../../Zotlabs/Storage/Browser.php:287
+#, 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;)"
-#: ../../include/chat.php:32
-msgid "Duplicate room name"
-msgstr "Duplikat romnavn"
+#: ../../Zotlabs/Storage/Browser.php:299
+msgid "WARNING:"
+msgstr "ADVARSEL:"
-#: ../../include/chat.php:82 ../../include/chat.php:90
-msgid "Invalid room specifier."
-msgstr "Ugyldig rom-spesifisering"
+#: ../../Zotlabs/Storage/Browser.php:302
+msgid "Create new folder"
+msgstr "Lag ny mappe"
-#: ../../include/chat.php:122
-msgid "Room not found."
-msgstr "Rommet ble ikke funnet."
+#: ../../Zotlabs/Storage/Browser.php:304
+msgid "Upload file"
+msgstr "Last opp fil"
-#: ../../include/chat.php:133 ../../include/items.php:4405
-#: ../../include/photos.php:29 ../../include/attach.php:140
+#: ../../Zotlabs/Web/Router.php:45 ../../include/attach.php:140
#: ../../include/attach.php:188 ../../include/attach.php:251
#: ../../include/attach.php:265 ../../include/attach.php:272
#: ../../include/attach.php:337 ../../include/attach.php:351
#: ../../include/attach.php:358 ../../include/attach.php:436
#: ../../include/attach.php:888 ../../include/attach.php:959
-#: ../../include/attach.php:1111 ../../mod/filestorage.php:18
-#: ../../mod/filestorage.php:73 ../../mod/filestorage.php:88
-#: ../../mod/filestorage.php:115 ../../mod/group.php:9 ../../mod/item.php:206
-#: ../../mod/item.php:214 ../../mod/item.php:1050 ../../mod/common.php:35
-#: ../../mod/achievements.php:30 ../../mod/rate.php:111
-#: ../../mod/blocks.php:69 ../../mod/blocks.php:76 ../../mod/id.php:71
-#: ../../mod/like.php:177 ../../mod/page.php:31 ../../mod/page.php:86
-#: ../../mod/mood.php:112 ../../mod/new_channel.php:68
-#: ../../mod/new_channel.php:99 ../../mod/setup.php:227
-#: ../../mod/bookmarks.php:48 ../../mod/poke.php:133
-#: ../../mod/profiles.php:198 ../../mod/profiles.php:584
-#: ../../mod/connedit.php:352 ../../mod/editwebpage.php:64
-#: ../../mod/editwebpage.php:86 ../../mod/editwebpage.php:101
-#: ../../mod/editwebpage.php:125 ../../mod/profile.php:64
-#: ../../mod/profile.php:72 ../../mod/api.php:26 ../../mod/api.php:31
-#: ../../mod/fsuggest.php:78 ../../mod/sources.php:66
-#: ../../mod/notifications.php:66 ../../mod/invite.php:13
-#: ../../mod/invite.php:87 ../../mod/profile_photo.php:341
-#: ../../mod/profile_photo.php:354 ../../mod/thing.php:271
-#: ../../mod/thing.php:291 ../../mod/thing.php:328 ../../mod/editblock.php:65
-#: ../../mod/network.php:12 ../../mod/pdledit.php:21 ../../mod/register.php:72
+#: ../../include/attach.php:1111 ../../include/chat.php:133
+#: ../../include/photos.php:29 ../../include/items.php:4575
+#: ../../index.php:180 ../../mod/achievements.php:30 ../../mod/api.php:26
+#: ../../mod/api.php:31 ../../mod/appman.php:66 ../../mod/authtest.php:13
+#: ../../mod/block.php:22 ../../mod/block.php:72 ../../mod/blocks.php:69
+#: ../../mod/blocks.php:76 ../../mod/bookmarks.php:48
+#: ../../mod/channel.php:100 ../../mod/channel.php:217
+#: ../../mod/channel.php:257 ../../mod/chat.php:94 ../../mod/chat.php:99
+#: ../../mod/common.php:35 ../../mod/connections.php:29
+#: ../../mod/connedit.php:355 ../../mod/editblock.php:65
#: ../../mod/editlayout.php:63 ../../mod/editlayout.php:87
-#: ../../mod/settings.php:568 ../../mod/webpages.php:69
-#: ../../mod/appman.php:66 ../../mod/layouts.php:69 ../../mod/layouts.php:76
-#: ../../mod/layouts.php:87 ../../mod/locs.php:83 ../../mod/regmod.php:17
-#: ../../mod/channel.php:100 ../../mod/channel.php:214
-#: ../../mod/channel.php:254 ../../mod/photos.php:70 ../../mod/editpost.php:13
-#: ../../mod/chat.php:94 ../../mod/chat.php:99 ../../mod/viewsrc.php:14
-#: ../../mod/authtest.php:13 ../../mod/connections.php:29
-#: ../../mod/manage.php:6 ../../mod/menu.php:74 ../../mod/mail.php:126
-#: ../../mod/service_limits.php:7 ../../mod/suggest.php:26
-#: ../../mod/events.php:260 ../../mod/message.php:16 ../../mod/block.php:22
-#: ../../mod/block.php:72 ../../mod/mitem.php:111 ../../mod/sharedwithme.php:7
+#: ../../mod/editpost.php:13 ../../mod/editwebpage.php:64
+#: ../../mod/editwebpage.php:86 ../../mod/editwebpage.php:101
+#: ../../mod/editwebpage.php:125 ../../mod/events.php:260
+#: ../../mod/filestorage.php:18 ../../mod/filestorage.php:73
+#: ../../mod/filestorage.php:88 ../../mod/filestorage.php:115
+#: ../../mod/fsuggest.php:78 ../../mod/group.php:9 ../../mod/id.php:71
+#: ../../mod/invite.php:13 ../../mod/invite.php:87 ../../mod/item.php:206
+#: ../../mod/item.php:214 ../../mod/item.php:1056 ../../mod/layouts.php:69
+#: ../../mod/layouts.php:76 ../../mod/layouts.php:87 ../../mod/like.php:177
+#: ../../mod/locs.php:83 ../../mod/mail.php:126 ../../mod/manage.php:6
+#: ../../mod/menu.php:74 ../../mod/message.php:16 ../../mod/mitem.php:111
+#: ../../mod/mood.php:112 ../../mod/network.php:12
+#: ../../mod/new_channel.php:73 ../../mod/new_channel.php:100
+#: ../../mod/notifications.php:66 ../../mod/page.php:31 ../../mod/page.php:86
+#: ../../mod/pdledit.php:22 ../../mod/photos.php:70 ../../mod/poke.php:133
+#: ../../mod/profile.php:64 ../../mod/profile.php:72
+#: ../../mod/profile_photo.php:289 ../../mod/profile_photo.php:302
+#: ../../mod/profiles.php:198 ../../mod/profiles.php:584
+#: ../../mod/rate.php:111 ../../mod/register.php:73 ../../mod/regmod.php:17
+#: ../../mod/service_limits.php:7 ../../mod/settings.php:579
+#: ../../mod/setup.php:230 ../../mod/sharedwithme.php:7
+#: ../../mod/sources.php:66 ../../mod/suggest.php:26 ../../mod/thing.php:270
+#: ../../mod/thing.php:290 ../../mod/thing.php:327
#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27
-#: ../../index.php:182 ../../index.php:365
+#: ../../mod/viewsrc.php:14 ../../mod/webpages.php:69
+#: ../../mod/cover_photo.php:273 ../../mod/cover_photo.php:286
msgid "Permission denied."
msgstr "Tillatelse avslƄtt."
-#: ../../include/chat.php:143
-msgid "Room is full"
-msgstr "Rommet er fullt"
+#: ../../Zotlabs/Web/Router.php:101 ../../mod/help.php:217
+msgid "Not Found"
+msgstr "Ikke funnet"
-#: ../../include/import.php:23
-msgid ""
-"Cannot create a duplicate channel identifier on this system. Import failed."
-msgstr "Kan ikke lage en kopi av kanal-identifikatoren pƄ dette systemet. Import mislyktes."
+#: ../../Zotlabs/Web/Router.php:104 ../../mod/block.php:75
+#: ../../mod/display.php:110 ../../mod/help.php:220 ../../mod/page.php:89
+msgid "Page not found."
+msgstr "Siden ikke funnet."
+
+#: ../../include/Contact.php:101 ../../include/widgets.php:147
+#: ../../include/widgets.php:185 ../../include/identity.php:954
+#: ../../include/conversation.php:961 ../../mod/directory.php:321
+#: ../../mod/match.php:64 ../../mod/suggest.php:52
+msgid "Connect"
+msgstr "Koble"
+
+#: ../../include/Contact.php:118
+msgid "New window"
+msgstr "Nytt vindu"
+
+#: ../../include/Contact.php:119
+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/Contact.php:237
+#, php-format
+msgid "User '%s' deleted"
+msgstr "Brukeren '%s' er slettet"
-#: ../../include/import.php:44 ../../include/Import/import_diaspora.php:42
+#: ../../include/Import/import_diaspora.php:17
+msgid "No username found in import file."
+msgstr "Ingen brukernavn ble funnet i importfilen."
+
+#: ../../include/Import/import_diaspora.php:42 ../../include/import.php:44
msgid "Unable to create a unique channel address. Import failed."
msgstr "Klarte ikke Ć„ lage en unik kanaladresse. Import mislyktes."
-#: ../../include/import.php:70
-msgid "Channel clone failed. Import failed."
-msgstr "Kanalkloning mislyktes. Import mislyktes."
+#: ../../include/Import/import_diaspora.php:143 ../../mod/import.php:496
+msgid "Import completed."
+msgstr "Import ferdig."
-#: ../../include/import.php:80 ../../mod/import.php:139
-msgid "Cloned channel not found. Import failed."
-msgstr "Klonet kanal ble ikke funnet. Import mislyktes."
+#: ../../include/account.php:28
+msgid "Not a valid email address"
+msgstr "Ikke en gyldig e-postadresse"
-#: ../../include/text.php:394
-msgid "prev"
-msgstr "forrige"
+#: ../../include/account.php:30
+msgid "Your email domain is not among those allowed on this site"
+msgstr "Ditt e-postdomene er ikke blant de som er tillatt pƄ dette stedet"
-#: ../../include/text.php:396
-msgid "first"
-msgstr "fĆørste"
+#: ../../include/account.php:36
+msgid "Your email address is already registered at this site."
+msgstr "Din e-postadresse er allerede registrert pƄ dette nettstedet."
-#: ../../include/text.php:425
-msgid "last"
-msgstr "siste"
+#: ../../include/account.php:68
+msgid "An invitation is required."
+msgstr "En invitasjon er pƄkrevd."
-#: ../../include/text.php:428
-msgid "next"
-msgstr "neste"
+#: ../../include/account.php:72
+msgid "Invitation could not be verified."
+msgstr "Invitasjon kunne ikke bekreftes."
-#: ../../include/text.php:438
-msgid "older"
-msgstr "eldre"
+#: ../../include/account.php:122
+msgid "Please enter the required information."
+msgstr "Vennligst skriv inn nĆødvendig informasjon."
-#: ../../include/text.php:440
-msgid "newer"
-msgstr "nyere"
+#: ../../include/account.php:189
+msgid "Failed to store account information."
+msgstr "Mislyktes med Ć„ lagre kontoinformasjon."
-#: ../../include/text.php:785
-msgid "No connections"
-msgstr "Ingen forbindelser"
+#: ../../include/account.php:249
+#, php-format
+msgid "Registration confirmation for %s"
+msgstr "Registreringsbekreftelse for %s"
-#: ../../include/text.php:797
+#: ../../include/account.php:315
#, php-format
-msgid "%d Connection"
-msgid_plural "%d Connections"
-msgstr[0] "%d forbindelse"
-msgstr[1] "%d forbindelser"
+msgid "Registration request at %s"
+msgstr "RegistreringsforespĆørsel hos %s"
-#: ../../include/text.php:810 ../../mod/viewconnections.php:101
-msgid "View Connections"
-msgstr "Vis forbindelser"
+#: ../../include/account.php:317 ../../include/account.php:344
+#: ../../include/account.php:404 ../../include/network.php:1660
+msgid "Administrator"
+msgstr "Administrator"
-#: ../../include/text.php:867 ../../include/text.php:879
-#: ../../include/nav.php:159 ../../include/apps.php:147
-#: ../../mod/search.php:40
-msgid "Search"
-msgstr "SĆøk"
+#: ../../include/account.php:339
+msgid "your registration password"
+msgstr "ditt registreringspassord"
-#: ../../include/text.php:868 ../../include/text.php:880
-#: ../../include/widgets.php:192 ../../mod/rbmark.php:28
-#: ../../mod/rbmark.php:100 ../../mod/admin.php:1454 ../../mod/admin.php:1474
-#: ../../mod/filer.php:49
-msgid "Save"
-msgstr "Lagre"
+#: ../../include/account.php:342 ../../include/account.php:402
+#, php-format
+msgid "Registration details for %s"
+msgstr "Registreringsdetaljer for %s"
-#: ../../include/text.php:954
-msgid "poke"
-msgstr "prikk"
+#: ../../include/account.php:414
+msgid "Account approved."
+msgstr "Konto godkjent."
-#: ../../include/text.php:954 ../../include/conversation.php:243
-msgid "poked"
-msgstr "prikket"
+#: ../../include/account.php:454
+#, php-format
+msgid "Registration revoked for %s"
+msgstr "Registrering trukket tilbake for %s"
-#: ../../include/text.php:955
-msgid "ping"
-msgstr "varsle"
+#: ../../include/account.php:506
+msgid "Account verified. Please login."
+msgstr "Konto bekreftet. Vennligst logg inn."
-#: ../../include/text.php:955
-msgid "pinged"
-msgstr "varslet"
+#: ../../include/account.php:719 ../../include/account.php:721
+msgid "Click here to upgrade."
+msgstr "Klikk her for Ć„ oppgradere."
-#: ../../include/text.php:956
-msgid "prod"
-msgstr "oppildne"
+#: ../../include/account.php:727
+msgid "This action exceeds the limits set by your subscription plan."
+msgstr "Denne handlingen gƄr utenfor grensene satt i din abonnementsplan."
-#: ../../include/text.php:956
-msgid "prodded"
-msgstr "oppildnet"
+#: ../../include/account.php:732
+msgid "This action is not available under your subscription plan."
+msgstr "Denne handlingen er ikke tilgjengelig i din abonnementsplan."
-#: ../../include/text.php:957
-msgid "slap"
-msgstr "daske"
+#: ../../include/acl_selectors.php:218
+msgid "Visible to your default audience"
+msgstr "Synlig for ditt standard publikum"
-#: ../../include/text.php:957
-msgid "slapped"
-msgstr "dasket"
+#: ../../include/acl_selectors.php:243
+msgid "Show"
+msgstr "Vis"
-#: ../../include/text.php:958
-msgid "finger"
-msgstr "fingre"
+#: ../../include/acl_selectors.php:244
+msgid "Don't show"
+msgstr "Ikke vis"
-#: ../../include/text.php:958
-msgid "fingered"
-msgstr "fingret"
+#: ../../include/acl_selectors.php:249
+msgid "Other networks and post services"
+msgstr "Andre nettverk og innleggstjenester"
-#: ../../include/text.php:959
-msgid "rebuff"
-msgstr "tilbakevise"
+#: ../../include/acl_selectors.php:251 ../../mod/chat.php:211
+#: ../../mod/filestorage.php:147 ../../mod/photos.php:639
+#: ../../mod/photos.php:1012 ../../mod/thing.php:309 ../../mod/thing.php:355
+msgid "Permissions"
+msgstr "Tillatelser"
-#: ../../include/text.php:959
-msgid "rebuffed"
-msgstr "tilbakeviste"
+#: ../../include/acl_selectors.php:252 ../../include/ItemObject.php:384
+#: ../../mod/photos.php:1229
+msgid "Close"
+msgstr "Lukk"
-#: ../../include/text.php:969
-msgid "happy"
-msgstr "glad"
+#: ../../include/activities.php:42
+msgid " and "
+msgstr "og"
-#: ../../include/text.php:970
-msgid "sad"
-msgstr "trist"
+#: ../../include/activities.php:50
+msgid "public profile"
+msgstr "offentlig profil"
-#: ../../include/text.php:971
-msgid "mellow"
-msgstr "dempet"
+#: ../../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/text.php:972
-msgid "tired"
-msgstr "trĆøtt"
+#: ../../include/activities.php:60
+#, php-format
+msgid "Visit %1$s's %2$s"
+msgstr "BesĆøk %1$s sitt %2$s"
-#: ../../include/text.php:973
-msgid "perky"
-msgstr "oppkvikket"
+#: ../../include/activities.php:63
+#, php-format
+msgid "%1$s has an updated %2$s, changing %3$s."
+msgstr "%1$s har oppdatert %2$s, endret %3$s."
-#: ../../include/text.php:974
-msgid "angry"
-msgstr "sint"
+#: ../../include/api.php:1336
+msgid "Public Timeline"
+msgstr "Offentlig tidslinje"
-#: ../../include/text.php:975
-msgid "stupified"
-msgstr "slĆøvet"
+#: ../../include/apps.php:128
+msgid "Site Admin"
+msgstr "Nettstedsadministrator"
-#: ../../include/text.php:976
-msgid "puzzled"
-msgstr "forundret"
+#: ../../include/apps.php:129 ../../include/nav.php:104
+#: ../../include/conversation.php:1685
+msgid "Bookmarks"
+msgstr "Bokmerker"
-#: ../../include/text.php:977
-msgid "interested"
-msgstr "interessert"
+#: ../../include/apps.php:130
+msgid "Address Book"
+msgstr "Adressebok"
-#: ../../include/text.php:978
-msgid "bitter"
-msgstr "bitter"
+#: ../../include/apps.php:131 ../../include/nav.php:112 ../../boot.php:1543
+msgid "Login"
+msgstr "Logg inn"
-#: ../../include/text.php:979
-msgid "cheerful"
-msgstr "munter"
+#: ../../include/apps.php:132 ../../include/nav.php:203
+#: ../../mod/manage.php:162
+msgid "Channel Manager"
+msgstr "Kanalstyring"
-#: ../../include/text.php:980
-msgid "alive"
-msgstr "levende"
+#: ../../include/apps.php:133 ../../include/nav.php:176
+msgid "Grid"
+msgstr "Nett"
-#: ../../include/text.php:981
-msgid "annoyed"
-msgstr "irritert"
+#: ../../include/apps.php:134 ../../include/nav.php:205
+#: ../../include/widgets.php:580 ../../mod/admin.php:1266
+#: ../../mod/admin.php:1488
+msgid "Settings"
+msgstr "Innstillinger"
-#: ../../include/text.php:982
-msgid "anxious"
-msgstr "nervĆøs"
+#: ../../include/apps.php:136 ../../include/nav.php:108
+#: ../../include/conversation.php:1695 ../../mod/webpages.php:180
+msgid "Webpages"
+msgstr "Websider"
-#: ../../include/text.php:983
-msgid "cranky"
-msgstr "gretten"
+#: ../../include/apps.php:137 ../../include/nav.php:179
+msgid "Channel Home"
+msgstr "Kanalhjem"
-#: ../../include/text.php:984
-msgid "disturbed"
-msgstr "foruroliget"
+#: ../../include/apps.php:138 ../../include/identity.php:1359
+#: ../../mod/profperm.php:112
+msgid "Profile"
+msgstr "Profil"
-#: ../../include/text.php:985
-msgid "frustrated"
-msgstr "frustrert"
+#: ../../include/apps.php:139 ../../include/nav.php:92
+#: ../../include/conversation.php:1641 ../../mod/fbrowser.php:25
+msgid "Photos"
+msgstr "Bilder"
-#: ../../include/text.php:986
-msgid "depressed"
-msgstr "lei seg"
+#: ../../include/apps.php:140 ../../include/nav.php:198
+#: ../../include/conversation.php:1658 ../../include/conversation.php:1661
+msgid "Events"
+msgstr "Hendelser"
-#: ../../include/text.php:987
-msgid "motivated"
-msgstr "motivert"
+#: ../../include/apps.php:141 ../../include/nav.php:164
+msgid "Directory"
+msgstr "Katalog"
-#: ../../include/text.php:988
-msgid "relaxed"
-msgstr "avslappet"
+#: ../../include/apps.php:142 ../../include/nav.php:155 ../../mod/help.php:208
+#: ../../mod/help.php:213 ../../mod/layouts.php:176
+msgid "Help"
+msgstr "Hjelp"
-#: ../../include/text.php:989
-msgid "surprised"
-msgstr "overrasket"
+#: ../../include/apps.php:143 ../../include/nav.php:190
+msgid "Mail"
+msgstr "Melding"
-#: ../../include/text.php:1161 ../../include/js_strings.php:70
-msgid "Monday"
-msgstr "mandag"
+#: ../../include/apps.php:144 ../../mod/mood.php:131
+msgid "Mood"
+msgstr "Stemning"
-#: ../../include/text.php:1161 ../../include/js_strings.php:71
-msgid "Tuesday"
-msgstr "tirsdag"
+#: ../../include/apps.php:145 ../../include/conversation.php:965
+#: ../../mod/poke.php:164
+msgid "Poke"
+msgstr "Prikk"
-#: ../../include/text.php:1161 ../../include/js_strings.php:72
-msgid "Wednesday"
-msgstr "onsdag"
+#: ../../include/apps.php:146 ../../include/nav.php:98
+msgid "Chat"
+msgstr "Chat"
-#: ../../include/text.php:1161 ../../include/js_strings.php:73
-msgid "Thursday"
-msgstr "torsdag"
+#: ../../include/apps.php:147 ../../include/nav.php:161
+#: ../../include/text.php:885 ../../include/text.php:897
+#: ../../mod/connections.php:302 ../../mod/search.php:40
+msgid "Search"
+msgstr "SĆøk"
-#: ../../include/text.php:1161 ../../include/js_strings.php:74
-msgid "Friday"
-msgstr "fredag"
+#: ../../include/apps.php:148
+msgid "Probe"
+msgstr "UndersĆøk"
-#: ../../include/text.php:1161 ../../include/js_strings.php:75
-msgid "Saturday"
-msgstr "lĆørdag"
+#: ../../include/apps.php:149
+msgid "Suggest"
+msgstr "ForreslƄ"
-#: ../../include/text.php:1161 ../../include/js_strings.php:69
-msgid "Sunday"
-msgstr "sĆøndag"
+#: ../../include/apps.php:150
+msgid "Random Channel"
+msgstr "Tilfeldig kanal"
-#: ../../include/text.php:1165 ../../include/js_strings.php:45
-msgid "January"
-msgstr "januar"
+#: ../../include/apps.php:151
+msgid "Invite"
+msgstr "Inviter"
-#: ../../include/text.php:1165 ../../include/js_strings.php:46
-msgid "February"
-msgstr "februar"
+#: ../../include/apps.php:152 ../../include/widgets.php:1296
+msgid "Features"
+msgstr "Funksjoner"
-#: ../../include/text.php:1165 ../../include/js_strings.php:47
-msgid "March"
-msgstr "mars"
+#: ../../include/apps.php:153 ../../mod/id.php:28
+msgid "Language"
+msgstr "SprƄk"
-#: ../../include/text.php:1165 ../../include/js_strings.php:48
-msgid "April"
-msgstr "april"
+#: ../../include/apps.php:154
+msgid "Post"
+msgstr "Innlegg"
-#: ../../include/text.php:1165
-msgid "May"
-msgstr "mai"
+#: ../../include/apps.php:155 ../../mod/id.php:17 ../../mod/id.php:18
+#: ../../mod/id.php:19
+msgid "Profile Photo"
+msgstr "Profilbilde"
-#: ../../include/text.php:1165 ../../include/js_strings.php:50
-msgid "June"
-msgstr "juni"
+#: ../../include/apps.php:252 ../../mod/settings.php:84
+#: ../../mod/settings.php:623
+msgid "Update"
+msgstr "Oppdater"
-#: ../../include/text.php:1165 ../../include/js_strings.php:51
-msgid "July"
-msgstr "juli"
+#: ../../include/apps.php:252
+msgid "Install"
+msgstr "Installer"
-#: ../../include/text.php:1165 ../../include/js_strings.php:52
-msgid "August"
-msgstr "august"
+#: ../../include/apps.php:257
+msgid "Purchase"
+msgstr "KjĆøp"
-#: ../../include/text.php:1165 ../../include/js_strings.php:53
-msgid "September"
-msgstr "september"
+#: ../../include/attach.php:246 ../../include/attach.php:332
+msgid "Item was not found."
+msgstr "Elementet ble ikke funnet."
-#: ../../include/text.php:1165 ../../include/js_strings.php:54
-msgid "October"
-msgstr "oktober"
+#: ../../include/attach.php:496
+msgid "No source file."
+msgstr "Ingen kildefil."
-#: ../../include/text.php:1165 ../../include/js_strings.php:55
-msgid "November"
-msgstr "november"
+#: ../../include/attach.php:518
+msgid "Cannot locate file to replace"
+msgstr "Kan ikke finne filen som skal byttes ut"
-#: ../../include/text.php:1165 ../../include/js_strings.php:56
-msgid "December"
-msgstr "desember"
+#: ../../include/attach.php:536
+msgid "Cannot locate file to revise/update"
+msgstr "Finner ikke filen som skal revideres/oppdateres"
-#: ../../include/text.php:1242 ../../include/text.php:1246
-msgid "Unknown Attachment"
-msgstr "Ukjent vedlegg"
+#: ../../include/attach.php:671
+#, php-format
+msgid "File exceeds size limit of %d"
+msgstr "Filens stĆørrelse overgĆ„r grensen pĆ„ %d"
-#: ../../include/text.php:1248 ../../include/RedDAV/RedBrowser.php:237
-#: ../../mod/sharedwithme.php:97
-msgid "Size"
-msgstr "StĆørrelse"
+#: ../../include/attach.php:685
+#, php-format
+msgid "You have reached your limit of %1$.0f Mbytes attachment storage."
+msgstr "Du har nƄdd din lagringsgrense for vedlegg pƄ %1$.0f Mbytes."
-#: ../../include/text.php:1248
-msgid "unknown"
-msgstr "ukjent"
+#: ../../include/attach.php:841
+msgid "File upload failed. Possible system limit or action terminated."
+msgstr "Mislyktes med Ć„ laste opp filen. Mulig systemgrense eller handling avbrutt."
-#: ../../include/text.php:1284
-msgid "remove category"
-msgstr "fjern kategori"
+#: ../../include/attach.php:854
+msgid "Stored file could not be verified. Upload failed."
+msgstr "Lagret fil kunne ikke bekreftes. Opplasting mislyktes."
-#: ../../include/text.php:1361
-msgid "remove from file"
-msgstr "fjern fra fil"
+#: ../../include/attach.php:902 ../../include/attach.php:918
+msgid "Path not available."
+msgstr "Stien er ikke tilgjengelig."
-#: ../../include/text.php:1392 ../../include/event.php:22
-#: ../../include/bb2diaspora.php:465
+#: ../../include/attach.php:964 ../../include/attach.php:1116
+msgid "Empty pathname"
+msgstr "Tomt sti-navn"
+
+#: ../../include/attach.php:990
+msgid "duplicate filename or path"
+msgstr "duplikat av filnavn eller sti"
+
+#: ../../include/attach.php:1012
+msgid "Path not found."
+msgstr "Stien ble ikke funnet."
+
+#: ../../include/attach.php:1070
+msgid "mkdir failed."
+msgstr "mkdir mislyktes."
+
+#: ../../include/attach.php:1074
+msgid "database storage failed."
+msgstr "databaselagring mislyktes."
+
+#: ../../include/attach.php:1122
+msgid "Empty path"
+msgstr "Tom sti"
+
+#: ../../include/auth.php:132
+msgid "Logged out."
+msgstr "Logget ut."
+
+#: ../../include/auth.php:273
+msgid "Failed authentication"
+msgstr "Mislykket autentisering"
+
+#: ../../include/auth.php:287 ../../mod/openid.php:189
+msgid "Login failed."
+msgstr "Innlogging mislyktes."
+
+#: ../../include/bb2diaspora.php:376
+msgid "Attachments:"
+msgstr "Vedlegg:"
+
+#: ../../include/bb2diaspora.php:465 ../../include/event.php:22
+#: ../../include/text.php:1418
msgid "l F d, Y \\@ g:i A"
msgstr "l F d, Y \\@ g:i A"
-#: ../../include/text.php:1396 ../../include/event.php:30
-#: ../../include/bb2diaspora.php:471
+#: ../../include/bb2diaspora.php:467
+msgid "$Projectname event notification:"
+msgstr "$Projectname hendelsesvarsling:"
+
+#: ../../include/bb2diaspora.php:471 ../../include/event.php:30
+#: ../../include/text.php:1422
msgid "Starts:"
msgstr "Starter:"
-#: ../../include/text.php:1400 ../../include/event.php:40
-#: ../../include/bb2diaspora.php:479
+#: ../../include/bb2diaspora.php:479 ../../include/event.php:40
+#: ../../include/text.php:1426
msgid "Finishes:"
msgstr "Slutter:"
-#: ../../include/text.php:1407 ../../include/event.php:52
-#: ../../include/identity.php:998 ../../include/bb2diaspora.php:487
-#: ../../mod/directory.php:304
+#: ../../include/bb2diaspora.php:487 ../../include/event.php:52
+#: ../../include/text.php:1433 ../../include/identity.php:1005
+#: ../../mod/directory.php:307
msgid "Location:"
msgstr "Plassering:"
-#: ../../include/text.php:1503 ../../include/text.php:1514
-msgid "Click to open/close"
-msgstr "Klikk for Ć„ Ć„pne/lukke"
-
-#: ../../include/text.php:1698 ../../mod/events.php:623
-msgid "Link to Source"
-msgstr "Lenke til kilde"
+#: ../../include/bbcode.php:123 ../../include/bbcode.php:794
+#: ../../include/bbcode.php:797 ../../include/bbcode.php:802
+#: ../../include/bbcode.php:805 ../../include/bbcode.php:808
+#: ../../include/bbcode.php:811 ../../include/bbcode.php:816
+#: ../../include/bbcode.php:819 ../../include/bbcode.php:824
+#: ../../include/bbcode.php:827 ../../include/bbcode.php:830
+#: ../../include/bbcode.php:833
+msgid "Image/photo"
+msgstr "Bilde/fotografi"
-#: ../../include/text.php:1719 ../../include/text.php:1791
-msgid "default"
-msgstr "standard"
+#: ../../include/bbcode.php:162 ../../include/bbcode.php:844
+msgid "Encrypted content"
+msgstr "Kryptert innhold"
-#: ../../include/text.php:1727
-msgid "Page layout"
-msgstr "Sidens layout"
+#: ../../include/bbcode.php:179
+#, php-format
+msgid "Install %s element: "
+msgstr "Installer %s element:"
-#: ../../include/text.php:1727
-msgid "You can create your own with the layouts tool"
-msgstr "Du kan lage din egen med layout-verktĆøyet"
+#: ../../include/bbcode.php:183
+#, php-format
+msgid ""
+"This post contains an installable %s element, however you lack permissions "
+"to install it on this site."
+msgstr "Dette innlegget inneholder det installerbare elementet %s, men du mangler tillatelse til Ƅ installere det pƄ dette nettstedet."
-#: ../../include/text.php:1769
-msgid "Page content type"
-msgstr "Sidens innholdstype"
+#: ../../include/bbcode.php:193 ../../mod/impel.php:37
+msgid "webpage"
+msgstr "nettside"
-#: ../../include/text.php:1803
-msgid "Select an alternate language"
-msgstr "Velg et annet sprƄk"
+#: ../../include/bbcode.php:196 ../../mod/impel.php:47
+msgid "layout"
+msgstr "layout"
-#: ../../include/text.php:1922 ../../include/conversation.php:120
-#: ../../mod/tagger.php:43 ../../mod/like.php:361 ../../mod/subthread.php:83
-msgid "photo"
-msgstr "foto"
+#: ../../include/bbcode.php:199 ../../mod/impel.php:42
+msgid "block"
+msgstr "byggekloss"
-#: ../../include/text.php:1925 ../../include/event.php:904
-#: ../../include/conversation.php:123 ../../mod/tagger.php:47
-#: ../../mod/like.php:363 ../../mod/events.php:249
-msgid "event"
-msgstr "hendelse"
+#: ../../include/bbcode.php:202 ../../mod/impel.php:54
+msgid "menu"
+msgstr "meny"
-#: ../../include/text.php:1928 ../../include/conversation.php:148
-#: ../../mod/like.php:361 ../../mod/subthread.php:83
-msgid "status"
-msgstr "status"
+#: ../../include/bbcode.php:257
+#, php-format
+msgid "%1$s wrote the following %2$s %3$s"
+msgstr "%1$s skrev fĆølgende %2$s %3$s"
-#: ../../include/text.php:1930 ../../include/conversation.php:150
-#: ../../mod/tagger.php:53
-msgid "comment"
-msgstr "kommentar"
+#: ../../include/bbcode.php:259 ../../mod/tagger.php:51
+msgid "post"
+msgstr "innlegg"
-#: ../../include/text.php:1935
-msgid "activity"
-msgstr "aktivitet"
+#: ../../include/bbcode.php:547
+msgid "Different viewers will see this text differently"
+msgstr "Denne teksten vil se forskjellig ut for ulike besĆøkende"
-#: ../../include/text.php:2230
-msgid "Design Tools"
-msgstr "DesignverktĆøy"
+#: ../../include/bbcode.php:755
+msgid "$1 spoiler"
+msgstr "$1 avslĆøring"
-#: ../../include/text.php:2233 ../../mod/blocks.php:147
-msgid "Blocks"
-msgstr "Byggeklosser"
+#: ../../include/bbcode.php:782
+msgid "$1 wrote:"
+msgstr "$1 skrev:"
-#: ../../include/text.php:2234 ../../mod/menu.php:103
-msgid "Menus"
-msgstr "Menyer"
+#: ../../include/bookmarks.php:35
+#, php-format
+msgid "%1$s's bookmarks"
+msgstr "%1$s sine bokmerker"
-#: ../../include/text.php:2235 ../../mod/layouts.php:174
-msgid "Layouts"
-msgstr "Layout"
+#: ../../include/chat.php:23
+msgid "Missing room name"
+msgstr "Mangler romnavn"
-#: ../../include/text.php:2236
-msgid "Pages"
-msgstr "Sider"
+#: ../../include/chat.php:32
+msgid "Duplicate room name"
+msgstr "Duplikat romnavn"
-#: ../../include/text.php:2588 ../../include/RedDAV/RedBrowser.php:131
-msgid "Collection"
-msgstr "Samling"
+#: ../../include/chat.php:82 ../../include/chat.php:90
+msgid "Invalid room specifier."
+msgstr "Ugyldig rom-spesifisering"
-#: ../../include/RedDAV/RedBrowser.php:107
-#: ../../include/RedDAV/RedBrowser.php:239
-msgid "parent"
-msgstr "opp et nivƄ"
+#: ../../include/chat.php:122
+msgid "Room not found."
+msgstr "Rommet ble ikke funnet."
-#: ../../include/RedDAV/RedBrowser.php:134
-msgid "Principal"
-msgstr "Viktigste"
+#: ../../include/chat.php:143
+msgid "Room is full"
+msgstr "Rommet er fullt"
-#: ../../include/RedDAV/RedBrowser.php:137
-msgid "Addressbook"
-msgstr "Adressebok"
+#: ../../include/comanche.php:34 ../../mod/admin.php:366
+msgid "Default"
+msgstr "Standard"
-#: ../../include/RedDAV/RedBrowser.php:140
-msgid "Calendar"
-msgstr "Kalender"
+#: ../../include/contact_widgets.php:14
+#, php-format
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] "%d invitasjon tilgjengelig"
+msgstr[1] "%d invitasjoner tilgjengelig"
-#: ../../include/RedDAV/RedBrowser.php:143
-msgid "Schedule Inbox"
-msgstr "Tidsplan innboks"
+#: ../../include/contact_widgets.php:19 ../../mod/admin.php:461
+msgid "Advanced"
+msgstr "Avansert"
-#: ../../include/RedDAV/RedBrowser.php:146
-msgid "Schedule Outbox"
-msgstr "Tidsplan utboks"
+#: ../../include/contact_widgets.php:22
+msgid "Find Channels"
+msgstr "Finn kanaler"
-#: ../../include/RedDAV/RedBrowser.php:164 ../../include/widgets.php:1330
-#: ../../include/conversation.php:1027 ../../include/apps.php:360
-#: ../../include/apps.php:415 ../../mod/photos.php:754
-#: ../../mod/photos.php:1195
-msgid "Unknown"
-msgstr "Ukjent"
+#: ../../include/contact_widgets.php:23
+msgid "Enter name or interest"
+msgstr "Skriv navn eller interesse"
-#: ../../include/RedDAV/RedBrowser.php:226 ../../include/conversation.php:1629
-#: ../../include/nav.php:93 ../../include/apps.php:135
-#: ../../mod/fbrowser.php:109
-msgid "Files"
-msgstr "Filer"
+#: ../../include/contact_widgets.php:24
+msgid "Connect/Follow"
+msgstr "Forbindelse/FĆølg"
-#: ../../include/RedDAV/RedBrowser.php:227
-msgid "Total"
-msgstr "Totalt"
+#: ../../include/contact_widgets.php:25
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr "Eksempler: Ola Nordmann, fisking"
-#: ../../include/RedDAV/RedBrowser.php:229
-msgid "Shared"
-msgstr "Delt"
+#: ../../include/contact_widgets.php:26 ../../mod/connections.php:305
+#: ../../mod/directory.php:384 ../../mod/directory.php:389
+msgid "Find"
+msgstr "Finn"
-#: ../../include/RedDAV/RedBrowser.php:230
-#: ../../include/RedDAV/RedBrowser.php:303 ../../mod/blocks.php:152
-#: ../../mod/new_channel.php:121 ../../mod/webpages.php:180
-#: ../../mod/layouts.php:175 ../../mod/menu.php:114
-msgid "Create"
-msgstr "Lag"
+#: ../../include/contact_widgets.php:27 ../../mod/directory.php:388
+#: ../../mod/suggest.php:60
+msgid "Channel Suggestions"
+msgstr "Kanalforslag"
-#: ../../include/RedDAV/RedBrowser.php:231
-#: ../../include/RedDAV/RedBrowser.php:305 ../../include/widgets.php:1343
-#: ../../mod/profile_photo.php:453 ../../mod/photos.php:781
-#: ../../mod/photos.php:1316
-msgid "Upload"
-msgstr "Last opp"
+#: ../../include/contact_widgets.php:29
+msgid "Random Profile"
+msgstr "Tilfeldig profil"
-#: ../../include/RedDAV/RedBrowser.php:235 ../../mod/admin.php:986
-#: ../../mod/settings.php:588 ../../mod/settings.php:614
-#: ../../mod/sharedwithme.php:95
-msgid "Name"
-msgstr "Navn"
+#: ../../include/contact_widgets.php:30
+msgid "Invite Friends"
+msgstr "Inviter venner"
-#: ../../include/RedDAV/RedBrowser.php:236
-msgid "Type"
-msgstr "Type"
+#: ../../include/contact_widgets.php:32
+msgid "Advanced example: name=fred and country=iceland"
+msgstr "Avansert eksempel: navn=fred og land=island"
-#: ../../include/RedDAV/RedBrowser.php:238 ../../mod/sharedwithme.php:98
-msgid "Last Modified"
-msgstr "Sist endret"
+#: ../../include/contact_widgets.php:57 ../../include/features.php:96
+#: ../../include/widgets.php:314
+msgid "Saved Folders"
+msgstr "Lagrede mapper"
-#: ../../include/RedDAV/RedBrowser.php:240 ../../include/menu.php:108
-#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36
-#: ../../include/ItemObject.php:100 ../../include/apps.php:259
-#: ../../mod/blocks.php:153 ../../mod/editwebpage.php:176
-#: ../../mod/thing.php:257 ../../mod/editblock.php:135
-#: ../../mod/editlayout.php:134 ../../mod/settings.php:648
-#: ../../mod/webpages.php:181 ../../mod/layouts.php:183
-#: ../../mod/editpost.php:112 ../../mod/connections.php:235
-#: ../../mod/connections.php:248 ../../mod/connections.php:267
-#: ../../mod/menu.php:108
-msgid "Edit"
-msgstr "Endre"
+#: ../../include/contact_widgets.php:60 ../../include/contact_widgets.php:98
+#: ../../include/widgets.php:317
+msgid "Everything"
+msgstr "Alt"
-#: ../../include/RedDAV/RedBrowser.php:241 ../../include/conversation.php:657
-#: ../../include/ItemObject.php:120 ../../include/apps.php:260
-#: ../../mod/group.php:173 ../../mod/blocks.php:155 ../../mod/connedit.php:551
-#: ../../mod/editwebpage.php:223 ../../mod/thing.php:258
-#: ../../mod/editblock.php:181 ../../mod/admin.php:821 ../../mod/admin.php:980
-#: ../../mod/editlayout.php:179 ../../mod/settings.php:649
-#: ../../mod/webpages.php:183 ../../mod/photos.php:1126
-msgid "Delete"
-msgstr "Slett"
+#: ../../include/contact_widgets.php:95 ../../include/taxonomy.php:282
+#: ../../include/widgets.php:46
+msgid "Categories"
+msgstr "Kategorier"
-#: ../../include/RedDAV/RedBrowser.php:282
+#: ../../include/contact_widgets.php:128
#, php-format
-msgid "You are using %1$s of your available file storage."
-msgstr "Du bruker %1$s av din tilgjengelige lagringsplass."
+msgid "%d connection in common"
+msgid_plural "%d connections in common"
+msgstr[0] "%d forbindelse felles"
+msgstr[1] "%d forbindelser felles"
-#: ../../include/RedDAV/RedBrowser.php:287
+#: ../../include/contact_widgets.php:133
+msgid "show more"
+msgstr "vis mer"
+
+#: ../../include/dba/dba_driver.php:141
#, 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 "Cannot locate DNS info for database server '%s'"
+msgstr "Kan ikke finne DNS-informasjon om databasetjener '%s'"
-#: ../../include/RedDAV/RedBrowser.php:299
-msgid "WARNING:"
-msgstr "ADVARSEL:"
+#: ../../include/dir_fns.php:139
+msgid "Directory Options"
+msgstr "Kataloginnstillinger"
-#: ../../include/RedDAV/RedBrowser.php:302
-msgid "Create new folder"
-msgstr "Lag ny mappe"
+#: ../../include/dir_fns.php:141
+msgid "Safe Mode"
+msgstr "Trygt modus"
-#: ../../include/RedDAV/RedBrowser.php:304
-msgid "Upload file"
-msgstr "Last opp fil"
+#: ../../include/dir_fns.php:141 ../../include/dir_fns.php:142
+#: ../../include/dir_fns.php:143 ../../mod/api.php:102
+#: ../../mod/connedit.php:368 ../../mod/connedit.php:646
+#: ../../mod/events.php:454 ../../mod/events.php:455 ../../mod/events.php:464
+#: ../../mod/filestorage.php:151 ../../mod/filestorage.php:159
+#: ../../mod/menu.php:96 ../../mod/menu.php:153 ../../mod/mitem.php:154
+#: ../../mod/mitem.php:155 ../../mod/mitem.php:228 ../../mod/mitem.php:229
+#: ../../mod/photos.php:634 ../../mod/admin.php:425 ../../mod/removeme.php:60
+#: ../../mod/settings.php:588 ../../view/theme/redbasic/php/config.php:104
+#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1547
+msgid "No"
+msgstr "Nei"
+
+#: ../../include/dir_fns.php:141 ../../include/dir_fns.php:142
+#: ../../include/dir_fns.php:143 ../../mod/api.php:101
+#: ../../mod/connedit.php:368 ../../mod/events.php:454
+#: ../../mod/events.php:455 ../../mod/events.php:464
+#: ../../mod/filestorage.php:151 ../../mod/filestorage.php:159
+#: ../../mod/menu.php:96 ../../mod/menu.php:153 ../../mod/mitem.php:154
+#: ../../mod/mitem.php:155 ../../mod/mitem.php:228 ../../mod/mitem.php:229
+#: ../../mod/photos.php:634 ../../mod/admin.php:427 ../../mod/removeme.php:60
+#: ../../mod/settings.php:588 ../../view/theme/redbasic/php/config.php:104
+#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1547
+msgid "Yes"
+msgstr "Ja"
+
+#: ../../include/dir_fns.php:142
+msgid "Public Forums Only"
+msgstr "Bare offentlige forum"
+
+#: ../../include/dir_fns.php:143
+msgid "This Website Only"
+msgstr "Kun dette nettstedet"
+
+#: ../../include/event.php:779
+msgid "This event has been added to your calendar."
+msgstr "Denne hendelsen er lagt til i din kalender."
+
+#: ../../include/event.php:915 ../../include/text.php:1951
+#: ../../include/conversation.php:123 ../../mod/events.php:249
+#: ../../mod/like.php:363 ../../mod/tagger.php:47
+msgid "event"
+msgstr "hendelse"
+
+#: ../../include/event.php:978
+msgid "Not specified"
+msgstr "Ikke spesifisert"
+
+#: ../../include/event.php:979
+msgid "Needs Action"
+msgstr "Trenger handling"
+
+#: ../../include/event.php:980
+msgid "Completed"
+msgstr "Ferdig"
+
+#: ../../include/event.php:981
+msgid "In Process"
+msgstr "Igang"
+
+#: ../../include/event.php:982
+msgid "Cancelled"
+msgstr "Avbrutt"
+
+#: ../../include/follow.php:28
+msgid "Channel is blocked on this site."
+msgstr "Kanalen er blokkert pƄ dette nettstedet."
+
+#: ../../include/follow.php:33
+msgid "Channel location missing."
+msgstr "Kanalplassering mangler."
+
+#: ../../include/follow.php:82
+msgid "Response from remote channel was incomplete."
+msgstr "Svaret fra den andre kanalen var ikke komplett."
+
+#: ../../include/follow.php:99
+msgid "Channel was deleted and no longer exists."
+msgstr "Kanalen er slettet og finnes ikke lenger."
+
+#: ../../include/follow.php:153 ../../include/follow.php:183
+msgid "Protocol disabled."
+msgstr "Protokollen er avskrudd."
+
+#: ../../include/follow.php:173
+msgid "Channel discovery failed."
+msgstr "Kanaloppdagelse mislyktes."
+
+#: ../../include/follow.php:199
+msgid "local account not found."
+msgstr "lokal konto ble ikke funnet."
+
+#: ../../include/follow.php:224
+msgid "Cannot connect to yourself."
+msgstr "Kan ikke lage forbindelse med deg selv."
+
+#: ../../include/import.php:23
+msgid ""
+"Cannot create a duplicate channel identifier on this system. Import failed."
+msgstr "Kan ikke lage en kopi av kanal-identifikatoren pƄ dette systemet. Import mislyktes."
+
+#: ../../include/import.php:70
+msgid "Channel clone failed. Import failed."
+msgstr "Kanalkloning mislyktes. Import mislyktes."
+
+#: ../../include/import.php:80 ../../mod/import.php:148
+msgid "Cloned channel not found. Import failed."
+msgstr "Klonet kanal ble ikke funnet. Import mislyktes."
#: ../../include/js_strings.php:5
msgid "Delete this item?"
msgstr "Slett dette elementet?"
-#: ../../include/js_strings.php:6 ../../include/ItemObject.php:696
-#: ../../mod/photos.php:1044 ../../mod/photos.php:1162
+#: ../../include/js_strings.php:6 ../../include/ItemObject.php:702
+#: ../../mod/photos.php:1058 ../../mod/photos.php:1176
msgid "Comment"
msgstr "Kommentar"
@@ -652,6 +934,7 @@ msgid "Passwords do not match"
msgstr "Passordene er ikke like"
#: ../../include/js_strings.php:13 ../../mod/photos.php:41
+#: ../../mod/cal.php:37
msgid "everybody"
msgstr "alle"
@@ -679,8 +962,8 @@ msgstr "Ikke noe nytt her"
msgid "Rate This Channel (this is public)"
msgstr "Vurder denne kanalen (dette er offentlig)"
-#: ../../include/js_strings.php:20 ../../mod/rate.php:157
-#: ../../mod/connedit.php:694
+#: ../../include/js_strings.php:20 ../../mod/connedit.php:705
+#: ../../mod/rate.php:157
msgid "Rating"
msgstr "Vurdering"
@@ -688,26 +971,27 @@ msgstr "Vurdering"
msgid "Describe (optional)"
msgstr "Beskriv (valgfritt)"
-#: ../../include/js_strings.php:22 ../../include/widgets.php:676
-#: ../../include/widgets.php:688 ../../include/ItemObject.php:697
-#: ../../mod/filestorage.php:156 ../../mod/group.php:81
-#: ../../mod/connect.php:93 ../../mod/rate.php:168 ../../mod/mood.php:135
-#: ../../mod/setup.php:331 ../../mod/setup.php:371 ../../mod/pconfig.php:108
-#: ../../mod/poke.php:171 ../../mod/profiles.php:675
-#: ../../mod/connedit.php:715 ../../mod/fsuggest.php:108
-#: ../../mod/sources.php:104 ../../mod/sources.php:138
-#: ../../mod/import.php:527 ../../mod/invite.php:142 ../../mod/thing.php:313
-#: ../../mod/thing.php:359 ../../mod/import_items.php:122
-#: ../../mod/pdledit.php:58 ../../mod/admin.php:447 ../../mod/admin.php:814
-#: ../../mod/admin.php:978 ../../mod/admin.php:1115 ../../mod/admin.php:1309
-#: ../../mod/admin.php:1394 ../../mod/settings.php:586
-#: ../../mod/settings.php:698 ../../mod/settings.php:726
-#: ../../mod/settings.php:749 ../../mod/settings.php:834
-#: ../../mod/settings.php:1023 ../../mod/appman.php:99 ../../mod/locs.php:116
-#: ../../mod/xchan.php:11 ../../mod/photos.php:637 ../../mod/photos.php:1005
-#: ../../mod/photos.php:1045 ../../mod/photos.php:1163 ../../mod/chat.php:184
-#: ../../mod/chat.php:213 ../../mod/mail.php:380 ../../mod/events.php:461
-#: ../../mod/events.php:658 ../../mod/mitem.php:231
+#: ../../include/js_strings.php:22 ../../include/widgets.php:702
+#: ../../include/widgets.php:714 ../../include/ItemObject.php:703
+#: ../../mod/appman.php:99 ../../mod/chat.php:184 ../../mod/chat.php:213
+#: ../../mod/connect.php:93 ../../mod/connedit.php:722
+#: ../../mod/events.php:468 ../../mod/events.php:665
+#: ../../mod/filestorage.php:156 ../../mod/fsuggest.php:108
+#: ../../mod/group.php:81 ../../mod/import.php:536
+#: ../../mod/import_items.php:116 ../../mod/invite.php:142
+#: ../../mod/locs.php:116 ../../mod/mail.php:380 ../../mod/mitem.php:231
+#: ../../mod/mood.php:135 ../../mod/pconfig.php:108 ../../mod/pdledit.php:62
+#: ../../mod/photos.php:645 ../../mod/photos.php:1019
+#: ../../mod/photos.php:1059 ../../mod/photos.php:1177 ../../mod/admin.php:457
+#: ../../mod/admin.php:646 ../../mod/admin.php:721 ../../mod/admin.php:986
+#: ../../mod/admin.php:1150 ../../mod/admin.php:1326 ../../mod/admin.php:1521
+#: ../../mod/admin.php:1606 ../../mod/poke.php:182 ../../mod/profiles.php:675
+#: ../../mod/rate.php:168 ../../mod/settings.php:597
+#: ../../mod/settings.php:710 ../../mod/settings.php:738
+#: ../../mod/settings.php:761 ../../mod/settings.php:849
+#: ../../mod/settings.php:1041 ../../mod/setup.php:333 ../../mod/setup.php:374
+#: ../../mod/sources.php:104 ../../mod/sources.php:138 ../../mod/thing.php:312
+#: ../../mod/thing.php:358 ../../mod/xchan.php:11 ../../mod/cal.php:332
#: ../../view/theme/redbasic/php/config.php:99
msgid "Submit"
msgstr "Send"
@@ -720,8 +1004,8 @@ msgstr "Vennligst skriv inn en lenke URL:"
msgid "Unsaved changes. Are you sure you wish to leave this page?"
msgstr "Endringene er ikke lagret. Er du sikker pĆ„ at du Ćønsker Ć„ forlate denne siden?"
-#: ../../include/js_strings.php:25 ../../mod/pubsites.php:28
-#: ../../mod/profiles.php:464 ../../mod/events.php:452
+#: ../../include/js_strings.php:25 ../../mod/events.php:459
+#: ../../mod/profiles.php:464 ../../mod/pubsites.php:36
msgid "Location"
msgstr "Plassering"
@@ -798,11 +1082,55 @@ msgstr " "
msgid "timeago.numbers"
msgstr "timeago.numbers"
+#: ../../include/js_strings.php:45 ../../include/text.php:1191
+msgid "January"
+msgstr "januar"
+
+#: ../../include/js_strings.php:46 ../../include/text.php:1191
+msgid "February"
+msgstr "februar"
+
+#: ../../include/js_strings.php:47 ../../include/text.php:1191
+msgid "March"
+msgstr "mars"
+
+#: ../../include/js_strings.php:48 ../../include/text.php:1191
+msgid "April"
+msgstr "april"
+
#: ../../include/js_strings.php:49
msgctxt "long"
msgid "May"
msgstr "mai"
+#: ../../include/js_strings.php:50 ../../include/text.php:1191
+msgid "June"
+msgstr "juni"
+
+#: ../../include/js_strings.php:51 ../../include/text.php:1191
+msgid "July"
+msgstr "juli"
+
+#: ../../include/js_strings.php:52 ../../include/text.php:1191
+msgid "August"
+msgstr "august"
+
+#: ../../include/js_strings.php:53 ../../include/text.php:1191
+msgid "September"
+msgstr "september"
+
+#: ../../include/js_strings.php:54 ../../include/text.php:1191
+msgid "October"
+msgstr "oktober"
+
+#: ../../include/js_strings.php:55 ../../include/text.php:1191
+msgid "November"
+msgstr "november"
+
+#: ../../include/js_strings.php:56 ../../include/text.php:1191
+msgid "December"
+msgstr "desember"
+
#: ../../include/js_strings.php:57
msgid "Jan"
msgstr "Jan"
@@ -852,6 +1180,34 @@ msgstr "Nov"
msgid "Dec"
msgstr "Des"
+#: ../../include/js_strings.php:69 ../../include/text.php:1187
+msgid "Sunday"
+msgstr "sĆøndag"
+
+#: ../../include/js_strings.php:70 ../../include/text.php:1187
+msgid "Monday"
+msgstr "mandag"
+
+#: ../../include/js_strings.php:71 ../../include/text.php:1187
+msgid "Tuesday"
+msgstr "tirsdag"
+
+#: ../../include/js_strings.php:72 ../../include/text.php:1187
+msgid "Wednesday"
+msgstr "onsdag"
+
+#: ../../include/js_strings.php:73 ../../include/text.php:1187
+msgid "Thursday"
+msgstr "torsdag"
+
+#: ../../include/js_strings.php:74 ../../include/text.php:1187
+msgid "Friday"
+msgstr "fredag"
+
+#: ../../include/js_strings.php:75 ../../include/text.php:1187
+msgid "Saturday"
+msgstr "lĆørdag"
+
#: ../../include/js_strings.php:76
msgid "Sun"
msgstr "SĆøn"
@@ -905,385 +1261,551 @@ msgctxt "calendar"
msgid "All day"
msgstr "Hele dagen"
-#: ../../include/Import/import_diaspora.php:17
-msgid "No username found in import file."
-msgstr "Ingen brukernavn ble funnet i importfilen."
+#: ../../include/message.php:20
+msgid "No recipient provided."
+msgstr "Ingen mottaker angitt."
-#: ../../include/Import/import_diaspora.php:143 ../../mod/import.php:487
-msgid "Import completed."
-msgstr "Import ferdig."
+#: ../../include/message.php:25
+msgid "[no subject]"
+msgstr "[ikke noe emne]"
-#: ../../include/comanche.php:34 ../../mod/admin.php:356
-msgid "Default"
-msgstr "Standard"
+#: ../../include/message.php:45
+msgid "Unable to determine sender."
+msgstr "Kan ikke avgjĆøre avsender."
-#: ../../include/items.php:423 ../../mod/group.php:68 ../../mod/like.php:280
-#: ../../mod/dreport.php:6 ../../mod/dreport.php:45 ../../mod/subthread.php:58
-#: ../../mod/import_items.php:114 ../../mod/profperm.php:23
-#: ../../index.php:364
-msgid "Permission denied"
-msgstr "Tillatelse avvist"
+#: ../../include/message.php:222
+msgid "Stored post could not be verified."
+msgstr "Lagret innlegg kunne ikke bekreftes."
-#: ../../include/items.php:1130 ../../include/items.php:1176
-msgid "(Unknown)"
-msgstr "(Ukjent)"
+#: ../../include/nav.php:82 ../../include/nav.php:115 ../../boot.php:1542
+msgid "Logout"
+msgstr "Logg ut"
-#: ../../include/items.php:1373
-msgid "Visible to anybody on the internet."
-msgstr "Synlig for enhver pƄ Internett."
+#: ../../include/nav.php:82 ../../include/nav.php:115
+msgid "End this session"
+msgstr "Avslutt denne Ćøkten"
-#: ../../include/items.php:1375
-msgid "Visible to you only."
-msgstr "Synlig bare for deg."
+#: ../../include/nav.php:85 ../../include/nav.php:146
+msgid "Home"
+msgstr "Hjem"
-#: ../../include/items.php:1377
-msgid "Visible to anybody in this network."
-msgstr "Synlig for enhver i dette nettverket."
+#: ../../include/nav.php:85
+msgid "Your posts and conversations"
+msgstr "Dine innlegg og samtaler"
-#: ../../include/items.php:1379
-msgid "Visible to anybody authenticated."
-msgstr "Synlig for enhver som er autentisert."
+#: ../../include/nav.php:86 ../../include/conversation.php:959
+#: ../../mod/connedit.php:509
+msgid "View Profile"
+msgstr "Vis profil"
-#: ../../include/items.php:1381
-#, php-format
-msgid "Visible to anybody on %s."
-msgstr "Synlig for alle pƄ %s."
+#: ../../include/nav.php:86
+msgid "Your profile page"
+msgstr "Din profilside"
-#: ../../include/items.php:1383
-msgid "Visible to all connections."
-msgstr "Synlig for alle forbindelser."
+#: ../../include/nav.php:88
+msgid "Edit Profiles"
+msgstr "Endre profiler"
-#: ../../include/items.php:1385
-msgid "Visible to approved connections."
-msgstr "Synlig for godkjente forbindelser."
+#: ../../include/nav.php:88
+msgid "Manage/Edit profiles"
+msgstr "HĆ„ndter/endre profiler"
-#: ../../include/items.php:1387
-msgid "Visible to specific connections."
-msgstr "Synlig for spesifikke forbindelser."
+#: ../../include/nav.php:90 ../../include/identity.php:977
+msgid "Edit Profile"
+msgstr "Endre profil"
-#: ../../include/items.php:4326 ../../mod/filestorage.php:27
-#: ../../mod/display.php:36 ../../mod/thing.php:86 ../../mod/admin.php:129
-#: ../../mod/admin.php:1017 ../../mod/admin.php:1222 ../../mod/viewsrc.php:20
-msgid "Item not found."
-msgstr "Elementet ble ikke funnet."
+#: ../../include/nav.php:90
+msgid "Edit your profile"
+msgstr "Endre din profil"
+
+#: ../../include/nav.php:92
+msgid "Your photos"
+msgstr "Dine bilder"
+
+#: ../../include/nav.php:93
+msgid "Your files"
+msgstr "Dine filer"
+
+#: ../../include/nav.php:98
+msgid "Your chatrooms"
+msgstr "Dine chatterom"
-#: ../../include/items.php:4838 ../../mod/group.php:38 ../../mod/group.php:137
-msgid "Collection not found."
-msgstr "Samlingen ble ikke funnet."
+#: ../../include/nav.php:104
+msgid "Your bookmarks"
+msgstr "Dine bokmerker"
-#: ../../include/items.php:4854
-msgid "Collection is empty."
-msgstr "Samlingen er tom."
+#: ../../include/nav.php:108
+msgid "Your webpages"
+msgstr "Dine websider"
+
+#: ../../include/nav.php:112
+msgid "Sign in"
+msgstr "Logg pƄ"
-#: ../../include/items.php:4861
+#: ../../include/nav.php:129
#, php-format
-msgid "Collection: %s"
-msgstr "Samling: %s"
+msgid "%s - click to logout"
+msgstr "%s - klikk for Ć„ logge ut"
+
+#: ../../include/nav.php:132
+msgid "Remote authentication"
+msgstr "Fjernautentisering"
+
+#: ../../include/nav.php:132
+msgid "Click to authenticate to your home hub"
+msgstr "Klikk for Ć„ godkjennes mot din hjemme-hub"
+
+#: ../../include/nav.php:146
+msgid "Home Page"
+msgstr "Hjemmeside"
+
+#: ../../include/nav.php:150 ../../mod/register.php:258 ../../boot.php:1525
+msgid "Register"
+msgstr "Registrer"
+
+#: ../../include/nav.php:150
+msgid "Create an account"
+msgstr "Lag en konto"
+
+#: ../../include/nav.php:155
+msgid "Help and documentation"
+msgstr "Hjelp og dokumentasjon"
+
+#: ../../include/nav.php:159 ../../include/widgets.php:102
+#: ../../mod/apps.php:36
+msgid "Apps"
+msgstr "Apper"
+
+#: ../../include/nav.php:159
+msgid "Applications, utilities, links, games"
+msgstr "Programmer, verktĆøy, lenker, spill"
+
+#: ../../include/nav.php:161
+msgid "Search site @name, #tag, ?docs, content"
+msgstr "SĆøk nettstedet for @navn, #merkelapp, ?dokumentasjon, innhold"
+
+#: ../../include/nav.php:164
+msgid "Channel Directory"
+msgstr "Kanalkatalog"
+
+#: ../../include/nav.php:176
+msgid "Your grid"
+msgstr "Ditt nett"
+
+#: ../../include/nav.php:177
+msgid "Mark all grid notifications seen"
+msgstr "Marker alle nettvarsler som sett"
+
+#: ../../include/nav.php:179
+msgid "Channel home"
+msgstr "Kanalhjem"
+
+#: ../../include/nav.php:180
+msgid "Mark all channel notifications seen"
+msgstr "Merk alle kanalvarsler som sett"
+
+#: ../../include/nav.php:183 ../../include/text.php:815
+#: ../../mod/connections.php:298
+msgid "Connections"
+msgstr "Forbindelser"
+
+#: ../../include/nav.php:186
+msgid "Notices"
+msgstr "Varsel"
+
+#: ../../include/nav.php:186
+msgid "Notifications"
+msgstr "Varsler"
+
+#: ../../include/nav.php:187
+msgid "See all notifications"
+msgstr "Se alle varsler"
+
+#: ../../include/nav.php:188 ../../mod/notifications.php:99
+msgid "Mark all system notifications seen"
+msgstr "Merk alle systemvarsler som sett"
+
+#: ../../include/nav.php:190
+msgid "Private mail"
+msgstr "Privat post"
+
+#: ../../include/nav.php:191
+msgid "See all private messages"
+msgstr "Se alle private meldinger"
+
+#: ../../include/nav.php:192
+msgid "Mark all private messages seen"
+msgstr "Merk alle private meldinger som sett"
+
+#: ../../include/nav.php:193 ../../include/widgets.php:601
+msgid "Inbox"
+msgstr "Innboks"
+
+#: ../../include/nav.php:194 ../../include/widgets.php:606
+msgid "Outbox"
+msgstr "Utboks"
+
+#: ../../include/nav.php:195 ../../include/widgets.php:611
+msgid "New Message"
+msgstr "Ny melding"
+
+#: ../../include/nav.php:198
+msgid "Event Calendar"
+msgstr "Kalender"
+
+#: ../../include/nav.php:199
+msgid "See all events"
+msgstr "Se alle hendelser"
+
+#: ../../include/nav.php:200
+msgid "Mark all events seen"
+msgstr "Merk alle hendelser som sett"
+
+#: ../../include/nav.php:203
+msgid "Manage Your Channels"
+msgstr "HĆ„ndter dine kanaler"
+
+#: ../../include/nav.php:205
+msgid "Account/Channel Settings"
+msgstr "Konto-/kanal-innstillinger"
+
+#: ../../include/nav.php:213 ../../include/widgets.php:1323
+msgid "Admin"
+msgstr "Administrator"
+
+#: ../../include/nav.php:213
+msgid "Site Setup and Configuration"
+msgstr "Nettstedsoppsett og -konfigurasjon"
+
+#: ../../include/nav.php:244 ../../include/conversation.php:854
+msgid "Loading..."
+msgstr "Laster..."
-#: ../../include/items.php:4871 ../../mod/connedit.php:683
+#: ../../include/nav.php:249
+msgid "@name, #tag, ?doc, content"
+msgstr "@navn, #merkelapp, ?dokumentasjon, innhold"
+
+#: ../../include/nav.php:250
+msgid "Please wait..."
+msgstr "Vennligst vent..."
+
+#: ../../include/notify.php:20
+msgid "created a new post"
+msgstr "laget et nytt innlegg"
+
+#: ../../include/notify.php:21
#, php-format
-msgid "Connection: %s"
-msgstr "Forbindelse: %s"
+msgid "commented on %s's post"
+msgstr "kommenterte pƄ %s sitt innlegg"
-#: ../../include/items.php:4873
-msgid "Connection not found."
-msgstr "Forbindelsen ble ikke funnet."
+#: ../../include/page_widgets.php:6
+msgid "New Page"
+msgstr "Ny side"
-#: ../../include/event.php:768
-msgid "This event has been added to your calendar."
-msgstr "Denne hendelsen er lagt til i din kalender."
+#: ../../include/page_widgets.php:39 ../../mod/blocks.php:159
+#: ../../mod/layouts.php:188 ../../mod/pubsites.php:42
+#: ../../mod/webpages.php:189
+msgid "View"
+msgstr "Vis"
-#: ../../include/event.php:967
-msgid "Not specified"
-msgstr "Ikke spesifisert"
+#: ../../include/page_widgets.php:40 ../../include/conversation.php:1179
+#: ../../include/ItemObject.php:712 ../../mod/editblock.php:171
+#: ../../mod/editpost.php:149 ../../mod/editwebpage.php:212
+#: ../../mod/events.php:465 ../../mod/photos.php:1060
+#: ../../mod/webpages.php:190
+msgid "Preview"
+msgstr "ForhƄndsvisning"
-#: ../../include/event.php:968
-msgid "Needs Action"
-msgstr "Trenger handling"
+#: ../../include/page_widgets.php:41 ../../mod/webpages.php:191
+msgid "Actions"
+msgstr "Handlinger"
-#: ../../include/event.php:969
-msgid "Completed"
-msgstr "Ferdig"
+#: ../../include/page_widgets.php:42 ../../mod/webpages.php:192
+msgid "Page Link"
+msgstr "Sidelenke"
-#: ../../include/event.php:970
-msgid "In Process"
-msgstr "Igang"
+#: ../../include/page_widgets.php:43
+msgid "Title"
+msgstr "Tittel"
-#: ../../include/event.php:971
-msgid "Cancelled"
-msgstr "Avbrutt"
+#: ../../include/page_widgets.php:44 ../../mod/blocks.php:150
+#: ../../mod/layouts.php:181 ../../mod/menu.php:110 ../../mod/webpages.php:194
+msgid "Created"
+msgstr "Laget"
-#: ../../include/identity.php:32
-msgid "Unable to obtain identity information from database"
-msgstr "Klarer ikke Ƅ fƄ tak i identitetsinformasjon fra databasen"
+#: ../../include/page_widgets.php:45 ../../mod/blocks.php:151
+#: ../../mod/layouts.php:182 ../../mod/menu.php:111 ../../mod/webpages.php:195
+msgid "Edited"
+msgstr "Endret"
-#: ../../include/identity.php:66
-msgid "Empty name"
-msgstr "Mangler navn"
+#: ../../include/photo/photo_driver.php:722 ../../mod/photos.php:94
+#: ../../mod/photos.php:711 ../../mod/profile_photo.php:147
+#: ../../mod/profile_photo.php:239 ../../mod/profile_photo.php:327
+msgid "Profile Photos"
+msgstr "Profilbilder"
-#: ../../include/identity.php:69
-msgid "Name too long"
-msgstr "Navnet er for langt"
+#: ../../include/profile_selectors.php:6
+#: ../../include/profile_selectors.php:23 ../../mod/id.php:103
+msgid "Male"
+msgstr "Mannlig"
-#: ../../include/identity.php:181
-msgid "No account identifier"
-msgstr "Ingen kontoidentifikator"
+#: ../../include/profile_selectors.php:6
+#: ../../include/profile_selectors.php:23 ../../mod/id.php:105
+msgid "Female"
+msgstr "Kvinnelig"
-#: ../../include/identity.php:193
-msgid "Nickname is required."
-msgstr "Kallenavn er pƄkrevd."
+#: ../../include/profile_selectors.php:6
+msgid "Currently Male"
+msgstr "For tiden mann"
-#: ../../include/identity.php:207
-msgid "Reserved nickname. Please choose another."
-msgstr "Reservert kallenavn. Vennligst velg et annet."
+#: ../../include/profile_selectors.php:6
+msgid "Currently Female"
+msgstr "For tiden kvinne"
-#: ../../include/identity.php:212
-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/profile_selectors.php:6
+msgid "Mostly Male"
+msgstr "For det meste mann"
-#: ../../include/identity.php:288
-msgid "Unable to retrieve created identity"
-msgstr "Klarer ikke Ć„ hente den lagede identiteten"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Female"
+msgstr "For det meste kvinne"
-#: ../../include/identity.php:346
-msgid "Default Profile"
-msgstr "Standardprofil"
+#: ../../include/profile_selectors.php:6
+msgid "Transgender"
+msgstr "TranskjĆønnet"
-#: ../../include/identity.php:390 ../../include/identity.php:391
-#: ../../include/identity.php:398 ../../include/widgets.php:430
-#: ../../include/profile_selectors.php:80 ../../mod/connedit.php:573
-#: ../../mod/settings.php:338 ../../mod/settings.php:342
-#: ../../mod/settings.php:343 ../../mod/settings.php:346
-#: ../../mod/settings.php:357
-msgid "Friends"
-msgstr "Venner"
+#: ../../include/profile_selectors.php:6
+msgid "Intersex"
+msgstr "interkjĆønnet"
-#: ../../include/identity.php:770
-msgid "Requested channel is not available."
-msgstr "Forespurt kanal er ikke tilgjengelig."
+#: ../../include/profile_selectors.php:6
+msgid "Transsexual"
+msgstr "Transseksuell"
-#: ../../include/identity.php:816 ../../mod/filestorage.php:54
-#: ../../mod/connect.php:13 ../../mod/achievements.php:11
-#: ../../mod/blocks.php:29 ../../mod/hcard.php:8 ../../mod/editwebpage.php:28
-#: ../../mod/profile.php:16 ../../mod/editblock.php:29
-#: ../../mod/editlayout.php:27 ../../mod/webpages.php:29
-#: ../../mod/layouts.php:29
-msgid "Requested profile is not available."
-msgstr "Forespurt profil er ikke tilgjengelig."
+#: ../../include/profile_selectors.php:6
+msgid "Hermaphrodite"
+msgstr "Hermafroditt"
-#: ../../include/identity.php:960 ../../mod/profiles.php:782
-msgid "Change profile photo"
-msgstr "Endre profilbilde"
+#: ../../include/profile_selectors.php:6
+msgid "Neuter"
+msgstr "IntetkjĆønn"
-#: ../../include/identity.php:966
-msgid "Profiles"
-msgstr "Profiler"
+#: ../../include/profile_selectors.php:6
+msgid "Non-specific"
+msgstr "Ubestemt"
-#: ../../include/identity.php:966
-msgid "Manage/edit profiles"
-msgstr "HĆ„ndtere/endre profiler"
+#: ../../include/profile_selectors.php:6
+#: ../../include/profile_selectors.php:23
+#: ../../include/profile_selectors.php:61
+#: ../../include/profile_selectors.php:97 ../../include/permissions.php:871
+msgid "Other"
+msgstr "Annen"
-#: ../../include/identity.php:967 ../../mod/profiles.php:783
-msgid "Create New Profile"
-msgstr "Lag ny profil"
+#: ../../include/profile_selectors.php:6
+msgid "Undecided"
+msgstr "Ubestemt"
-#: ../../include/identity.php:970 ../../include/nav.php:90
-msgid "Edit Profile"
-msgstr "Endre profil"
+#: ../../include/profile_selectors.php:42
+#: ../../include/profile_selectors.php:61
+msgid "Males"
+msgstr "Menn"
-#: ../../include/identity.php:982 ../../mod/profiles.php:794
-msgid "Profile Image"
-msgstr "Profilbilde"
+#: ../../include/profile_selectors.php:42
+#: ../../include/profile_selectors.php:61
+msgid "Females"
+msgstr "Kvinner"
-#: ../../include/identity.php:985
-msgid "visible to everybody"
-msgstr "synlig for alle"
+#: ../../include/profile_selectors.php:42
+msgid "Gay"
+msgstr "Homo"
-#: ../../include/identity.php:986 ../../mod/profiles.php:677
-#: ../../mod/profiles.php:798
-msgid "Edit visibility"
-msgstr "Endre synlighet"
+#: ../../include/profile_selectors.php:42
+msgid "Lesbian"
+msgstr "Lesbisk"
-#: ../../include/identity.php:1002 ../../include/identity.php:1242
-msgid "Gender:"
-msgstr "KjĆønn:"
+#: ../../include/profile_selectors.php:42
+msgid "No Preference"
+msgstr "Ingen preferanse"
-#: ../../include/identity.php:1003 ../../include/identity.php:1286
-msgid "Status:"
-msgstr "Status:"
+#: ../../include/profile_selectors.php:42
+msgid "Bisexual"
+msgstr "Biseksuell"
-#: ../../include/identity.php:1004 ../../include/identity.php:1297
-msgid "Homepage:"
-msgstr "Hjemmeside:"
+#: ../../include/profile_selectors.php:42
+msgid "Autosexual"
+msgstr "Autoseksuell"
-#: ../../include/identity.php:1005
-msgid "Online Now"
-msgstr "Online nƄ"
+#: ../../include/profile_selectors.php:42
+msgid "Abstinent"
+msgstr "Avholdende"
-#: ../../include/identity.php:1089 ../../include/identity.php:1167
-#: ../../mod/ping.php:318
-msgid "g A l F d"
-msgstr "g A l F d"
+#: ../../include/profile_selectors.php:42
+msgid "Virgin"
+msgstr "Jomfru"
-#: ../../include/identity.php:1090 ../../include/identity.php:1168
-msgid "F d"
-msgstr "F d"
+#: ../../include/profile_selectors.php:42
+msgid "Deviant"
+msgstr "Avviker"
-#: ../../include/identity.php:1135 ../../include/identity.php:1207
-#: ../../mod/ping.php:341
-msgid "[today]"
-msgstr "[idag]"
+#: ../../include/profile_selectors.php:42
+msgid "Fetish"
+msgstr "Fetisj"
-#: ../../include/identity.php:1146
-msgid "Birthday Reminders"
-msgstr "FĆødselsdagspĆ„minnnelser"
+#: ../../include/profile_selectors.php:42
+msgid "Oodles"
+msgstr "Masse"
-#: ../../include/identity.php:1147
-msgid "Birthdays this week:"
-msgstr "FĆødselsdager denne uken:"
+#: ../../include/profile_selectors.php:42
+msgid "Nonsexual"
+msgstr "Ikke-seksuell"
-#: ../../include/identity.php:1200
-msgid "[No description]"
-msgstr "[Ingen beskrivelse]"
+#: ../../include/profile_selectors.php:80
+#: ../../include/profile_selectors.php:97
+msgid "Single"
+msgstr "Enslig"
-#: ../../include/identity.php:1218
-msgid "Event Reminders"
-msgstr "HendelsespƄminnelser"
+#: ../../include/profile_selectors.php:80
+msgid "Lonely"
+msgstr "Ensom"
-#: ../../include/identity.php:1219
-msgid "Events this week:"
-msgstr "Hendelser denne uken:"
+#: ../../include/profile_selectors.php:80
+msgid "Available"
+msgstr "Tilgjengelig"
-#: ../../include/identity.php:1232 ../../include/identity.php:1349
-#: ../../include/apps.php:138 ../../mod/profperm.php:112
-msgid "Profile"
-msgstr "Profil"
+#: ../../include/profile_selectors.php:80
+msgid "Unavailable"
+msgstr "Ikke tilgjengelig"
-#: ../../include/identity.php:1240 ../../mod/settings.php:1029
-msgid "Full Name:"
-msgstr "Fullt navn:"
+#: ../../include/profile_selectors.php:80
+msgid "Has crush"
+msgstr "Er forelsket"
-#: ../../include/identity.php:1247
-msgid "Like this channel"
-msgstr "Lik denne kanalen"
+#: ../../include/profile_selectors.php:80
+msgid "Infatuated"
+msgstr "Betatt"
-#: ../../include/identity.php:1258 ../../include/taxonomy.php:414
-#: ../../include/conversation.php:1721 ../../include/ItemObject.php:179
-#: ../../mod/photos.php:1083
-msgctxt "noun"
-msgid "Like"
-msgid_plural "Likes"
-msgstr[0] "Liker"
-msgstr[1] "Liker"
+#: ../../include/profile_selectors.php:80
+#: ../../include/profile_selectors.php:97
+msgid "Dating"
+msgstr "Sammen med"
-#: ../../include/identity.php:1271
-msgid "j F, Y"
-msgstr "j F, Y"
+#: ../../include/profile_selectors.php:80
+msgid "Unfaithful"
+msgstr "Utro"
-#: ../../include/identity.php:1272
-msgid "j F"
-msgstr "j F"
+#: ../../include/profile_selectors.php:80
+msgid "Sex Addict"
+msgstr "Sexavhengig"
-#: ../../include/identity.php:1279
-msgid "Birthday:"
-msgstr "FĆødselsdag:"
+#: ../../include/profile_selectors.php:80 ../../include/widgets.php:451
+#: ../../include/identity.php:390 ../../include/identity.php:391
+#: ../../include/identity.php:398 ../../mod/connedit.php:584
+#: ../../mod/settings.php:349 ../../mod/settings.php:353
+#: ../../mod/settings.php:354 ../../mod/settings.php:357
+#: ../../mod/settings.php:368
+msgid "Friends"
+msgstr "Venner"
-#: ../../include/identity.php:1283 ../../mod/directory.php:299
-msgid "Age:"
-msgstr "Alder:"
+#: ../../include/profile_selectors.php:80
+msgid "Friends/Benefits"
+msgstr "Venner med frynsegoder"
-#: ../../include/identity.php:1292
-#, php-format
-msgid "for %1$d %2$s"
-msgstr "for %1$d %2$s"
+#: ../../include/profile_selectors.php:80
+msgid "Casual"
+msgstr "Tilfeldig"
-#: ../../include/identity.php:1295 ../../mod/profiles.php:699
-msgid "Sexual Preference:"
-msgstr "Seksuell preferanse:"
+#: ../../include/profile_selectors.php:80
+msgid "Engaged"
+msgstr "Forlovet"
-#: ../../include/identity.php:1299 ../../mod/profiles.php:701
-#: ../../mod/directory.php:315
-msgid "Hometown:"
-msgstr "Hjemby:"
+#: ../../include/profile_selectors.php:80
+#: ../../include/profile_selectors.php:97
+msgid "Married"
+msgstr "Gift"
-#: ../../include/identity.php:1301
-msgid "Tags:"
-msgstr "Merkelapper:"
+#: ../../include/profile_selectors.php:80
+msgid "Imaginarily married"
+msgstr "Gift i fantasien"
-#: ../../include/identity.php:1303 ../../mod/profiles.php:702
-msgid "Political Views:"
-msgstr "Politiske synspunkter:"
+#: ../../include/profile_selectors.php:80
+msgid "Partners"
+msgstr "Partnere"
-#: ../../include/identity.php:1305
-msgid "Religion:"
-msgstr "Religion:"
+#: ../../include/profile_selectors.php:80
+#: ../../include/profile_selectors.php:97
+msgid "Cohabiting"
+msgstr "Samboer"
-#: ../../include/identity.php:1307 ../../mod/directory.php:317
-msgid "About:"
-msgstr "Om:"
+#: ../../include/profile_selectors.php:80
+msgid "Common law"
+msgstr "Samboer"
-#: ../../include/identity.php:1309
-msgid "Hobbies/Interests:"
-msgstr "Hobbyer/interesser:"
+#: ../../include/profile_selectors.php:80
+msgid "Happy"
+msgstr "Lykkelig"
-#: ../../include/identity.php:1311 ../../mod/profiles.php:705
-msgid "Likes:"
-msgstr "Liker:"
+#: ../../include/profile_selectors.php:80
+msgid "Not looking"
+msgstr "Ikke pƄ utkikk"
-#: ../../include/identity.php:1313 ../../mod/profiles.php:706
-msgid "Dislikes:"
-msgstr "Misliker:"
+#: ../../include/profile_selectors.php:80
+msgid "Swinger"
+msgstr "Partnerbytte"
-#: ../../include/identity.php:1315
-msgid "Contact information and Social Networks:"
-msgstr "Kontaktinformasjon og sosiale nettverk:"
+#: ../../include/profile_selectors.php:80
+msgid "Betrayed"
+msgstr "Bedratt"
-#: ../../include/identity.php:1317
-msgid "My other channels:"
-msgstr "Mine andre kanaler:"
+#: ../../include/profile_selectors.php:80
+#: ../../include/profile_selectors.php:97
+msgid "Separated"
+msgstr "Separert"
-#: ../../include/identity.php:1319
-msgid "Musical interests:"
-msgstr "Musikkinteresse:"
+#: ../../include/profile_selectors.php:80
+msgid "Unstable"
+msgstr "Ustabilt"
-#: ../../include/identity.php:1321
-msgid "Books, literature:"
-msgstr "BĆøker, litteratur:"
+#: ../../include/profile_selectors.php:80
+#: ../../include/profile_selectors.php:97
+msgid "Divorced"
+msgstr "Skilt"
-#: ../../include/identity.php:1323
-msgid "Television:"
-msgstr "TV:"
+#: ../../include/profile_selectors.php:80
+msgid "Imaginarily divorced"
+msgstr "Skilt i fantasien"
-#: ../../include/identity.php:1325
-msgid "Film/dance/culture/entertainment:"
-msgstr "Film/dans/kultur/underholdning:"
+#: ../../include/profile_selectors.php:80
+#: ../../include/profile_selectors.php:97
+msgid "Widowed"
+msgstr "Enke"
-#: ../../include/identity.php:1327
-msgid "Love/Romance:"
-msgstr "KjƦrlighet/romantikk:"
+#: ../../include/profile_selectors.php:80
+msgid "Uncertain"
+msgstr "Usikkert"
-#: ../../include/identity.php:1329
-msgid "Work/employment:"
-msgstr "Arbeid/sysselsetting:"
+#: ../../include/profile_selectors.php:80
+#: ../../include/profile_selectors.php:97
+msgid "It's complicated"
+msgstr "Det er komplisert"
-#: ../../include/identity.php:1331
-msgid "School/education:"
-msgstr "Skole/utdannelse:"
+#: ../../include/profile_selectors.php:80
+msgid "Don't care"
+msgstr "Bryr meg ikke"
-#: ../../include/identity.php:1351
-msgid "Like this thing"
-msgstr "Lik denne tingen"
+#: ../../include/profile_selectors.php:80
+msgid "Ask me"
+msgstr "SpĆør meg"
+
+#: ../../include/security.php:388
+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/taxonomy.php:240 ../../include/taxonomy.php:261
msgid "Tags"
msgstr "Merkelapper"
-#: ../../include/taxonomy.php:282 ../../include/widgets.php:36
-#: ../../include/contact_widgets.php:95
-msgid "Categories"
-msgstr "Kategorier"
-
#: ../../include/taxonomy.php:305
msgid "Keywords"
msgstr "NĆøkkelord"
@@ -1320,6 +1842,209 @@ msgstr "misliker"
msgid "dislikes"
msgstr "misliker"
+#: ../../include/taxonomy.php:415 ../../include/identity.php:1264
+#: ../../include/conversation.php:1751 ../../include/ItemObject.php:179
+#: ../../mod/photos.php:1097
+msgctxt "noun"
+msgid "Like"
+msgid_plural "Likes"
+msgstr[0] "Liker"
+msgstr[1] "Liker"
+
+#: ../../include/datetime.php:48
+msgid "Miscellaneous"
+msgstr "Forskjellig"
+
+#: ../../include/datetime.php:132
+msgid "YYYY-MM-DD or MM-DD"
+msgstr "YYYY-MM-DD eller MM-DD"
+
+#: ../../include/datetime.php:236 ../../mod/appman.php:91
+#: ../../mod/appman.php:92 ../../mod/events.php:444 ../../mod/events.php:449
+msgid "Required"
+msgstr "PĆ„krevd"
+
+#: ../../include/datetime.php:263 ../../boot.php:2374
+msgid "never"
+msgstr "aldri"
+
+#: ../../include/datetime.php:269
+msgid "less than a second ago"
+msgstr "for mindre enn ett sekund siden"
+
+#: ../../include/datetime.php:287
+#, 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:298
+msgctxt "relative_date"
+msgid "year"
+msgid_plural "years"
+msgstr[0] "Ć„r"
+msgstr[1] "Ć„r"
+
+#: ../../include/datetime.php:301
+msgctxt "relative_date"
+msgid "month"
+msgid_plural "months"
+msgstr[0] "mƄned"
+msgstr[1] "mƄneder"
+
+#: ../../include/datetime.php:304
+msgctxt "relative_date"
+msgid "week"
+msgid_plural "weeks"
+msgstr[0] "uke"
+msgstr[1] "uker"
+
+#: ../../include/datetime.php:307
+msgctxt "relative_date"
+msgid "day"
+msgid_plural "days"
+msgstr[0] "dag"
+msgstr[1] "dager"
+
+#: ../../include/datetime.php:310
+msgctxt "relative_date"
+msgid "hour"
+msgid_plural "hours"
+msgstr[0] "time"
+msgstr[1] "timer"
+
+#: ../../include/datetime.php:313
+msgctxt "relative_date"
+msgid "minute"
+msgid_plural "minutes"
+msgstr[0] "minutt"
+msgstr[1] "minutter"
+
+#: ../../include/datetime.php:316
+msgctxt "relative_date"
+msgid "second"
+msgid_plural "seconds"
+msgstr[0] "sekund"
+msgstr[1] "sekunder"
+
+#: ../../include/datetime.php:553
+#, php-format
+msgid "%1$s's birthday"
+msgstr "%1$s sin fĆødselsdag"
+
+#: ../../include/datetime.php:554
+#, php-format
+msgid "Happy Birthday %1$s"
+msgstr "Gratulerer med dagen, %1$s !"
+
+#: ../../include/zot.php:675
+msgid "Invalid data packet"
+msgstr "Ugyldig datapakke"
+
+#: ../../include/zot.php:691
+msgid "Unable to verify channel signature"
+msgstr "Ikke i stand til Ć„ sjekke kanalsignaturen"
+
+#: ../../include/zot.php:2267
+#, php-format
+msgid "Unable to verify site signature for %s"
+msgstr "Ikke i stand til Ć„ bekrefte signaturen til %s"
+
+#: ../../include/zot.php:3588
+msgid "invalid target signature"
+msgstr "MĆ„lets signatur er ugyldig"
+
+#: ../../include/contact_selectors.php:56
+msgid "Frequently"
+msgstr "Ofte"
+
+#: ../../include/contact_selectors.php:57
+msgid "Hourly"
+msgstr "Hver time"
+
+#: ../../include/contact_selectors.php:58
+msgid "Twice daily"
+msgstr "To ganger daglig"
+
+#: ../../include/contact_selectors.php:59
+msgid "Daily"
+msgstr "Daglig"
+
+#: ../../include/contact_selectors.php:60
+msgid "Weekly"
+msgstr "Ukentlig"
+
+#: ../../include/contact_selectors.php:61
+msgid "Monthly"
+msgstr "MĆ„nedlig"
+
+#: ../../include/contact_selectors.php:76
+msgid "Friendica"
+msgstr "Friendica"
+
+#: ../../include/contact_selectors.php:77
+msgid "OStatus"
+msgstr "OStatus"
+
+#: ../../include/contact_selectors.php:78
+msgid "RSS/Atom"
+msgstr "RSS/Atom"
+
+#: ../../include/contact_selectors.php:79 ../../mod/id.php:15
+#: ../../mod/id.php:16 ../../mod/admin.php:989 ../../mod/admin.php:998
+#: ../../boot.php:1545
+msgid "Email"
+msgstr "E-post"
+
+#: ../../include/contact_selectors.php:80
+msgid "Diaspora"
+msgstr "Diaspora"
+
+#: ../../include/contact_selectors.php:81
+msgid "Facebook"
+msgstr "Facebook"
+
+#: ../../include/contact_selectors.php:82
+msgid "Zot"
+msgstr "Zot"
+
+#: ../../include/contact_selectors.php:83
+msgid "LinkedIn"
+msgstr "LinkedIn"
+
+#: ../../include/contact_selectors.php:84
+msgid "XMPP/IM"
+msgstr "XMPP/IM"
+
+#: ../../include/contact_selectors.php:85
+msgid "MySpace"
+msgstr "MySpace"
+
+#: ../../include/network.php:630
+msgid "view full size"
+msgstr "vis full stĆørrelse"
+
+#: ../../include/network.php:1612 ../../include/enotify.php:57
+msgid "$Projectname Notification"
+msgstr "$Projectname varsling"
+
+#: ../../include/network.php:1613 ../../include/enotify.php:58
+msgid "$projectname"
+msgstr "$projectname"
+
+#: ../../include/network.php:1615 ../../include/enotify.php:60
+msgid "Thank You,"
+msgstr "Tusen takk,"
+
+#: ../../include/network.php:1617 ../../include/enotify.php:62
+#, php-format
+msgid "%s Administrator"
+msgstr "%s administrator"
+
+#: ../../include/network.php:1674
+msgid "No Subject"
+msgstr "Uten emne"
+
#: ../../include/photos.php:112
#, php-format
msgid "Image exceeds website size limit of %lu bytes"
@@ -1330,6 +2055,7 @@ msgid "Image file is empty."
msgstr "Bildefilen er tom."
#: ../../include/photos.php:146 ../../mod/profile_photo.php:225
+#: ../../mod/cover_photo.php:164
msgid "Unable to process image"
msgstr "Kan ikke behandle bildet"
@@ -1347,7 +2073,7 @@ msgctxt "photo_upload"
msgid "%1$s posted %2$s to %3$s"
msgstr "%1$s la inn %2$s til %3$s"
-#: ../../include/photos.php:506 ../../include/conversation.php:1625
+#: ../../include/photos.php:506 ../../include/conversation.php:1644
msgid "Photo Albums"
msgstr "Fotoalbum"
@@ -1355,1078 +2081,1302 @@ msgstr "Fotoalbum"
msgid "Upload New Photos"
msgstr "Last opp nye bilder"
-#: ../../include/acl_selectors.php:240
-msgid "Visible to your default audience"
-msgstr "Synlig for ditt standard publikum"
+#: ../../include/features.php:48
+msgid "General Features"
+msgstr "Generelle funksjoner"
-#: ../../include/acl_selectors.php:241
-msgid "Show"
-msgstr "Vis"
+#: ../../include/features.php:50
+msgid "Content Expiration"
+msgstr "Innholdet utlĆøper"
-#: ../../include/acl_selectors.php:242
-msgid "Don't show"
-msgstr "Ikke vis"
+#: ../../include/features.php:50
+msgid "Remove posts/comments and/or private messages at a future time"
+msgstr "Fjern innlegg/kommentarer og/eller private meldinger pƄ et angitt tidspunkt i fremtiden"
-#: ../../include/acl_selectors.php:247
-msgid "Other networks and post services"
-msgstr "Andre nettverk og innleggstjenester"
+#: ../../include/features.php:51
+msgid "Multiple Profiles"
+msgstr "Flere profiler"
-#: ../../include/acl_selectors.php:249 ../../mod/filestorage.php:147
-#: ../../mod/thing.php:310 ../../mod/thing.php:356 ../../mod/photos.php:631
-#: ../../mod/photos.php:998 ../../mod/chat.php:211
-msgid "Permissions"
-msgstr "Tillatelser"
+#: ../../include/features.php:51
+msgid "Ability to create multiple profiles"
+msgstr "Mulig Ć„ lage flere profiler"
-#: ../../include/acl_selectors.php:250 ../../include/ItemObject.php:384
-#: ../../mod/photos.php:1215
-msgid "Close"
-msgstr "Lukk"
+#: ../../include/features.php:52
+msgid "Advanced Profiles"
+msgstr "Avanserte profiler"
-#: ../../include/activities.php:42
-msgid " and "
-msgstr "og"
+#: ../../include/features.php:52
+msgid "Additional profile sections and selections"
+msgstr "Ytterlige seksjoner og utvalg til profilen"
-#: ../../include/activities.php:50
-msgid "public profile"
-msgstr "offentlig profil"
+#: ../../include/features.php:53
+msgid "Profile Import/Export"
+msgstr "Profil-import/-eksport"
-#: ../../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/features.php:53
+msgid "Save and load profile details across sites/channels"
+msgstr "Lagre og Ƅpne profildetaljer pƄ tvers av nettsteder/kanaler"
-#: ../../include/activities.php:60
-#, php-format
-msgid "Visit %1$s's %2$s"
-msgstr "BesĆøk %1$s sitt %2$s"
+#: ../../include/features.php:54
+msgid "Web Pages"
+msgstr "Web-sider"
-#: ../../include/activities.php:63
-#, php-format
-msgid "%1$s has an updated %2$s, changing %3$s."
-msgstr "%1$s har oppdatert %2$s, endret %3$s."
+#: ../../include/features.php:54
+msgid "Provide managed web pages on your channel"
+msgstr "Tilby kontrollerte web-sider pƄ din kanal"
-#: ../../include/attach.php:246 ../../include/attach.php:332
-msgid "Item was not found."
-msgstr "Elementet ble ikke funnet."
+#: ../../include/features.php:55
+msgid "Hide Rating"
+msgstr "Skjul vurdering"
-#: ../../include/attach.php:496
-msgid "No source file."
-msgstr "Ingen kildefil."
+#: ../../include/features.php:55
+msgid ""
+"Hide the rating buttons on your channel and profile pages. Note: People can "
+"still rate you somewhere else."
+msgstr "Skjul vurderingsknappene for din kanal og profilsider. Merknad: folk kan fortsatt vurdere deg et annet sted."
-#: ../../include/attach.php:518
-msgid "Cannot locate file to replace"
-msgstr "Kan ikke finne filen som skal byttes ut"
+#: ../../include/features.php:56
+msgid "Private Notes"
+msgstr "Private merknader"
-#: ../../include/attach.php:536
-msgid "Cannot locate file to revise/update"
-msgstr "Finner ikke filen som skal revideres/oppdateres"
+#: ../../include/features.php:56
+msgid "Enables a tool to store notes and reminders (note: not encrypted)"
+msgstr "Skru pĆ„ et verktĆøy for Ć„ lagre notater og pĆ„minnelser (merknad: ikke kryptert)"
-#: ../../include/attach.php:671
-#, php-format
-msgid "File exceeds size limit of %d"
-msgstr "Filens stĆørrelse overgĆ„r grensen pĆ„ %d"
+#: ../../include/features.php:57
+msgid "Navigation Channel Select"
+msgstr "Navigasjon kanalvalg"
-#: ../../include/attach.php:685
-#, php-format
-msgid "You have reached your limit of %1$.0f Mbytes attachment storage."
-msgstr "Du har nƄdd din lagringsgrense for vedlegg pƄ %1$.0f Mbytes."
+#: ../../include/features.php:57
+msgid "Change channels directly from within the navigation dropdown menu"
+msgstr "Endre kanaler direkte fra navigasjonsmenyen"
-#: ../../include/attach.php:841
-msgid "File upload failed. Possible system limit or action terminated."
-msgstr "Mislyktes med Ć„ laste opp filen. Mulig systemgrense eller handling avbrutt."
+#: ../../include/features.php:58
+msgid "Photo Location"
+msgstr "Bildeplassering"
-#: ../../include/attach.php:854
-msgid "Stored file could not be verified. Upload failed."
-msgstr "Lagret fil kunne ikke bekreftes. Opplasting mislyktes."
+#: ../../include/features.php:58
+msgid "If location data is available on uploaded photos, link this to a map."
+msgstr "Hvis plasseringsdata er tilgjengelige i opplastede bilder, plasser dette pƄ et kart."
-#: ../../include/attach.php:902 ../../include/attach.php:918
-msgid "Path not available."
-msgstr "Stien er ikke tilgjengelig."
+#: ../../include/features.php:60
+msgid "Expert Mode"
+msgstr "Ekspertmodus"
-#: ../../include/attach.php:964 ../../include/attach.php:1116
-msgid "Empty pathname"
-msgstr "Tomt sti-navn"
+#: ../../include/features.php:60
+msgid "Enable Expert Mode to provide advanced configuration options"
+msgstr "Skru pƄ Ekspertmodus for Ƅ tilby avanserte konfigurasjonsvalg"
-#: ../../include/attach.php:990
-msgid "duplicate filename or path"
-msgstr "duplikat av filnavn eller sti"
+#: ../../include/features.php:61
+msgid "Premium Channel"
+msgstr "Premiumkanal"
-#: ../../include/attach.php:1012
-msgid "Path not found."
-msgstr "Stien ble ikke funnet."
+#: ../../include/features.php:61
+msgid ""
+"Allows you to set restrictions and terms on those that connect with your "
+"channel"
+msgstr "Lar deg angi restriksjoner og betingelser for de som kobler seg til din kanal"
-#: ../../include/attach.php:1070
-msgid "mkdir failed."
-msgstr "mkdir mislyktes."
+#: ../../include/features.php:66
+msgid "Post Composition Features"
+msgstr "Funksjoner for Ć„ lage innlegg"
-#: ../../include/attach.php:1074
-msgid "database storage failed."
-msgstr "databaselagring mislyktes."
+#: ../../include/features.php:68
+msgid "Use Markdown"
+msgstr "Bruk Markdown"
-#: ../../include/attach.php:1122
-msgid "Empty path"
-msgstr "Tom sti"
+#: ../../include/features.php:68
+msgid "Allow use of \"Markdown\" to format posts"
+msgstr "Tillat bruk av \"Markdown\" til formatering av innlegg"
-#: ../../include/notify.php:20
-msgid "created a new post"
-msgstr "laget et nytt innlegg"
+#: ../../include/features.php:69
+msgid "Large Photos"
+msgstr "Store bilder"
-#: ../../include/notify.php:21
-#, php-format
-msgid "commented on %s's post"
-msgstr "kommenterte pƄ %s sitt innlegg"
+#: ../../include/features.php:69
+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/widgets.php:92 ../../include/nav.php:157
-#: ../../mod/apps.php:36
-msgid "Apps"
-msgstr "Apper"
+#: ../../include/features.php:70 ../../include/widgets.php:572
+#: ../../mod/sources.php:88
+msgid "Channel Sources"
+msgstr "Kanalkilder"
+
+#: ../../include/features.php:70
+msgid "Automatically import channel content from other channels or feeds"
+msgstr "Automatisk import av kanalinnhold fra andre kanaler eller strĆømmer"
+
+#: ../../include/features.php:71
+msgid "Even More Encryption"
+msgstr "Enda mer kryptering"
+
+#: ../../include/features.php:71
+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:72
+msgid "Enable Voting Tools"
+msgstr "Skru pĆ„ verktĆøy for Ć„ stemme"
+
+#: ../../include/features.php:72
+msgid "Provide a class of post which others can vote on"
+msgstr "Tilby en type innlegg som andre kan stemme pƄ"
+
+#: ../../include/features.php:73
+msgid "Delayed Posting"
+msgstr "Tidfest publisering"
+
+#: ../../include/features.php:73
+msgid "Allow posts to be published at a later date"
+msgstr "Tillat innlegg Ƅ bli publisert pƄ et senere tidspunkt"
+
+#: ../../include/features.php:74
+msgid "Suppress Duplicate Posts/Comments"
+msgstr "Forhindre duplikat av innlegg/kommentarer"
+
+#: ../../include/features.php:74
+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:80
+msgid "Network and Stream Filtering"
+msgstr "Nettverk- og strĆømfiltrering"
+
+#: ../../include/features.php:81
+msgid "Search by Date"
+msgstr "SĆøk etter dato"
+
+#: ../../include/features.php:81
+msgid "Ability to select posts by date ranges"
+msgstr "Mulighet for Ƅ velge innlegg etter datoomrƄde"
+
+#: ../../include/features.php:82 ../../include/group.php:295
+msgid "Privacy Groups"
+msgstr "Personverngrupper"
+
+#: ../../include/features.php:82
+msgid "Enable management and selection of privacy groups"
+msgstr "Skru pƄ hƄndtering og valg av personverngrupper"
+
+#: ../../include/features.php:83 ../../include/widgets.php:284
+msgid "Saved Searches"
+msgstr "Lagrede sĆøk"
+
+#: ../../include/features.php:83
+msgid "Save search terms for re-use"
+msgstr "Lagre sĆøkeuttrykk for senere bruk"
+
+#: ../../include/features.php:84
+msgid "Network Personal Tab"
+msgstr "Nettverk personlig fane"
+
+#: ../../include/features.php:84
+msgid "Enable tab to display only Network posts that you've interacted on"
+msgstr "Skru pƄ fane for Ƅ bare vise Nettverksinnlegg som du har deltatt i"
+
+#: ../../include/features.php:85
+msgid "Network New Tab"
+msgstr "Nettverk Ny fane"
+
+#: ../../include/features.php:85
+msgid "Enable tab to display all new Network activity"
+msgstr "Skru pƄ fane for Ƅ vise all ny nettverksaktivitet"
+
+#: ../../include/features.php:86
+msgid "Affinity Tool"
+msgstr "NƦrhetsverktĆøy"
+
+#: ../../include/features.php:86
+msgid "Filter stream activity by depth of relationships"
+msgstr "Filtrer strĆømaktiviteten etter releasjonsdybde"
+
+#: ../../include/features.php:87
+msgid "Connection Filtering"
+msgstr "Filtrer forbindelser"
+
+#: ../../include/features.php:87
+msgid "Filter incoming posts from connections based on keywords/content"
+msgstr "Filtrer innkommende innlegg fra forbindelser basert pĆ„ nĆøkkelord/innhold"
+
+#: ../../include/features.php:88
+msgid "Suggest Channels"
+msgstr "ForeslƄ kanaler"
-#: ../../include/widgets.php:93
+#: ../../include/features.php:88
+msgid "Show channel suggestions"
+msgstr "Vis kanalforslag"
+
+#: ../../include/features.php:93
+msgid "Post/Comment Tools"
+msgstr "Innlegg-/Kommentar-verktĆøy"
+
+#: ../../include/features.php:94
+msgid "Community Tagging"
+msgstr "Felleskapsmerkelapper"
+
+#: ../../include/features.php:94
+msgid "Ability to tag existing posts"
+msgstr "Mulighet til Ć„ merke eksisterende meldinger"
+
+#: ../../include/features.php:95
+msgid "Post Categories"
+msgstr "Innleggskategorier"
+
+#: ../../include/features.php:95
+msgid "Add categories to your posts"
+msgstr "Legg kategorier til dine innlegg"
+
+#: ../../include/features.php:96
+msgid "Ability to file posts under folders"
+msgstr "Mulighet til Ć„ sortere innlegg i mapper"
+
+#: ../../include/features.php:97
+msgid "Dislike Posts"
+msgstr "Mislik innlegg"
+
+#: ../../include/features.php:97
+msgid "Ability to dislike posts/comments"
+msgstr "Mulighet til Ć„ mislike innlegg/kommentarer"
+
+#: ../../include/features.php:98
+msgid "Star Posts"
+msgstr "Stjerneinnlegg"
+
+#: ../../include/features.php:98
+msgid "Ability to mark special posts with a star indicator"
+msgstr "Mulighet til Ć„ merke spesielle innlegg med en stjerne"
+
+#: ../../include/features.php:99
+msgid "Tag Cloud"
+msgstr "Merkelappsky"
+
+#: ../../include/features.php:99
+msgid "Provide a personal tag cloud on your channel page"
+msgstr "Tilby en personlig merkelappsky pƄ din kanalside"
+
+#: ../../include/widgets.php:103
msgid "System"
msgstr "System"
-#: ../../include/widgets.php:95 ../../include/conversation.php:1526
+#: ../../include/widgets.php:105 ../../include/conversation.php:1536
msgid "Personal"
msgstr "Personlig"
-#: ../../include/widgets.php:96
+#: ../../include/widgets.php:106
msgid "Create Personal App"
msgstr "Lag personlig app"
-#: ../../include/widgets.php:97
+#: ../../include/widgets.php:107
msgid "Edit Personal App"
msgstr "Endre personlig app"
-#: ../../include/widgets.php:139 ../../mod/suggest.php:54
+#: ../../include/widgets.php:149 ../../mod/suggest.php:54
msgid "Ignore/Hide"
msgstr "Ignorer/Skjul"
-#: ../../include/widgets.php:144 ../../mod/connections.php:125
+#: ../../include/widgets.php:154
msgid "Suggestions"
msgstr "Forslag"
-#: ../../include/widgets.php:145
+#: ../../include/widgets.php:155
msgid "See more..."
msgstr "Se mer..."
-#: ../../include/widgets.php:166
+#: ../../include/widgets.php:176
#, php-format
msgid "You have %1$.0f of %2$.0f allowed connections."
msgstr "Du har %1$.0f av %2$.0f tillate forbindelser."
-#: ../../include/widgets.php:172
+#: ../../include/widgets.php:182
msgid "Add New Connection"
msgstr "Legg til ny forbindelse"
-#: ../../include/widgets.php:173
-msgid "Enter the channel address"
-msgstr "Skriv kanal-adressen"
+#: ../../include/widgets.php:183
+msgid "Enter channel address"
+msgstr "Skriv kanaladressen"
-#: ../../include/widgets.php:174
-msgid "Example: bob@example.com, http://example.com/barbara"
-msgstr "Eksempel: ola.nordmann@eksempel.no, http://eksempel.no/karinordmann"
+#: ../../include/widgets.php:184
+msgid "Examples: bob@example.com, https://example.com/barbara"
+msgstr "Eksempel: ola@eksempel.no, https://eksempel.no/kari"
-#: ../../include/widgets.php:190
+#: ../../include/widgets.php:200
msgid "Notes"
msgstr "Merknader"
-#: ../../include/widgets.php:266
+#: ../../include/widgets.php:202 ../../include/text.php:886
+#: ../../include/text.php:898 ../../mod/filer.php:49 ../../mod/admin.php:1666
+#: ../../mod/admin.php:1686 ../../mod/rbmark.php:28 ../../mod/rbmark.php:100
+msgid "Save"
+msgstr "Lagre"
+
+#: ../../include/widgets.php:276
msgid "Remove term"
msgstr "Fjern begrep"
-#: ../../include/widgets.php:274 ../../include/features.php:72
-msgid "Saved Searches"
-msgstr "Lagrede sĆøk"
-
-#: ../../include/widgets.php:275 ../../include/group.php:300
+#: ../../include/widgets.php:285 ../../include/group.php:300
msgid "add"
msgstr "legg til"
-#: ../../include/widgets.php:304 ../../include/features.php:85
-#: ../../include/contact_widgets.php:57
-msgid "Saved Folders"
-msgstr "Lagrede mapper"
-
-#: ../../include/widgets.php:307 ../../include/contact_widgets.php:60
-#: ../../include/contact_widgets.php:98
-msgid "Everything"
-msgstr "Alt"
-
-#: ../../include/widgets.php:349
+#: ../../include/widgets.php:359
msgid "Archives"
msgstr "Arkiv"
-#: ../../include/widgets.php:428 ../../mod/connedit.php:571
+#: ../../include/widgets.php:449 ../../mod/connedit.php:582
msgid "Me"
msgstr "Meg"
-#: ../../include/widgets.php:429 ../../mod/connedit.php:572
+#: ../../include/widgets.php:450 ../../mod/connedit.php:583
msgid "Family"
msgstr "Familie"
-#: ../../include/widgets.php:431 ../../mod/connedit.php:574
+#: ../../include/widgets.php:452 ../../mod/connedit.php:585
msgid "Acquaintances"
msgstr "Bekjente"
-#: ../../include/widgets.php:432 ../../mod/connedit.php:575
-#: ../../mod/connections.php:88 ../../mod/connections.php:103
+#: ../../include/widgets.php:453 ../../mod/connections.php:88
+#: ../../mod/connections.php:103 ../../mod/connedit.php:586
msgid "All"
msgstr "Alle"
-#: ../../include/widgets.php:451
+#: ../../include/widgets.php:472
msgid "Refresh"
msgstr "Forny"
-#: ../../include/widgets.php:485
+#: ../../include/widgets.php:506
msgid "Account settings"
msgstr "Kontoinnstillinger"
-#: ../../include/widgets.php:491
+#: ../../include/widgets.php:512
msgid "Channel settings"
msgstr "Kanalinnstillinger"
-#: ../../include/widgets.php:497
+#: ../../include/widgets.php:521
msgid "Additional features"
msgstr "Tilleggsfunksjoner"
-#: ../../include/widgets.php:503
+#: ../../include/widgets.php:528
msgid "Feature/Addon settings"
msgstr "Funksjons-/Tilleggsinnstillinger"
-#: ../../include/widgets.php:509
+#: ../../include/widgets.php:534
msgid "Display settings"
msgstr "Visningsinnstillinger"
-#: ../../include/widgets.php:515
+#: ../../include/widgets.php:540
msgid "Connected apps"
msgstr "Tilkoblede app-er"
-#: ../../include/widgets.php:521
+#: ../../include/widgets.php:548
msgid "Export channel"
msgstr "Eksporter kanal"
-#: ../../include/widgets.php:530 ../../mod/connedit.php:683
+#: ../../include/widgets.php:556 ../../mod/connedit.php:694
msgid "Connection Default Permissions"
msgstr "Forbindelsens standard tillatelser"
-#: ../../include/widgets.php:538
+#: ../../include/widgets.php:564
msgid "Premium Channel Settings"
msgstr "Premiumkanal-innstillinger"
-#: ../../include/widgets.php:546 ../../include/features.php:59
-#: ../../mod/sources.php:88
-msgid "Channel Sources"
-msgstr "Kanalkilder"
-
-#: ../../include/widgets.php:554 ../../include/nav.php:202
-#: ../../include/apps.php:134 ../../mod/admin.php:1076
-#: ../../mod/admin.php:1276
-msgid "Settings"
-msgstr "Innstillinger"
-
-#: ../../include/widgets.php:568
+#: ../../include/widgets.php:594
msgid "Private Mail Menu"
msgstr "Meny for privat post"
-#: ../../include/widgets.php:570
+#: ../../include/widgets.php:596
msgid "Combined View"
msgstr "Kombinert visning"
-#: ../../include/widgets.php:575 ../../include/nav.php:191
-msgid "Inbox"
-msgstr "Innboks"
-
-#: ../../include/widgets.php:580 ../../include/nav.php:192
-msgid "Outbox"
-msgstr "Utboks"
-
-#: ../../include/widgets.php:585 ../../include/nav.php:193
-msgid "New Message"
-msgstr "Ny melding"
-
-#: ../../include/widgets.php:604 ../../include/widgets.php:616
+#: ../../include/widgets.php:630 ../../include/widgets.php:642
msgid "Conversations"
msgstr "Samtaler"
-#: ../../include/widgets.php:608
+#: ../../include/widgets.php:634
msgid "Received Messages"
msgstr "Mottatte meldinger"
-#: ../../include/widgets.php:612
+#: ../../include/widgets.php:638
msgid "Sent Messages"
msgstr "Sendte meldinger"
-#: ../../include/widgets.php:626
+#: ../../include/widgets.php:652
msgid "No messages."
msgstr "Ingen meldinger."
-#: ../../include/widgets.php:644
+#: ../../include/widgets.php:670
msgid "Delete conversation"
msgstr "Slett samtale"
-#: ../../include/widgets.php:670
+#: ../../include/widgets.php:696
msgid "Events Menu"
msgstr "Meny for hendelser"
-#: ../../include/widgets.php:671
+#: ../../include/widgets.php:697
msgid "Day View"
msgstr "Dag"
-#: ../../include/widgets.php:672
+#: ../../include/widgets.php:698
msgid "Week View"
msgstr "Uke"
-#: ../../include/widgets.php:673
+#: ../../include/widgets.php:699
msgid "Month View"
msgstr "MĆ„ned"
-#: ../../include/widgets.php:674 ../../mod/events.php:654
+#: ../../include/widgets.php:700 ../../mod/events.php:661
+#: ../../mod/cal.php:328
msgid "Export"
msgstr "Eksport"
-#: ../../include/widgets.php:675 ../../mod/events.php:657
+#: ../../include/widgets.php:701 ../../mod/events.php:664
+#: ../../mod/cal.php:331
msgid "Import"
msgstr "Importer"
-#: ../../include/widgets.php:685
+#: ../../include/widgets.php:711
msgid "Events Tools"
msgstr "KalenderverktĆøy"
-#: ../../include/widgets.php:686
+#: ../../include/widgets.php:712
msgid "Export Calendar"
msgstr "Eksporter kalender"
-#: ../../include/widgets.php:687
+#: ../../include/widgets.php:713
msgid "Import Calendar"
msgstr "Importer kalender"
-#: ../../include/widgets.php:761
+#: ../../include/widgets.php:787
msgid "Chat Rooms"
msgstr "Chatrom"
-#: ../../include/widgets.php:781
+#: ../../include/widgets.php:807
msgid "Bookmarked Chatrooms"
msgstr "Bokmerkede chatrom"
-#: ../../include/widgets.php:801
+#: ../../include/widgets.php:827
msgid "Suggested Chatrooms"
msgstr "ForeslƄtte chatrom"
-#: ../../include/widgets.php:928 ../../include/widgets.php:986
+#: ../../include/widgets.php:972 ../../include/widgets.php:1062
msgid "photo/image"
msgstr "foto/bilde"
-#: ../../include/widgets.php:1081 ../../include/widgets.php:1083
+#: ../../include/widgets.php:1156
+msgid "Rating Tools"
+msgstr "VurderingsverktĆøy"
+
+#: ../../include/widgets.php:1160 ../../include/widgets.php:1162
msgid "Rate Me"
msgstr "Vurder meg"
-#: ../../include/widgets.php:1087
+#: ../../include/widgets.php:1165
msgid "View Ratings"
msgstr "Vis vurderinger"
-#: ../../include/widgets.php:1098
+#: ../../include/widgets.php:1176 ../../mod/pubsites.php:18
msgid "Public Hubs"
msgstr "Offentlige huber"
-#: ../../include/widgets.php:1146
+#: ../../include/widgets.php:1224
msgid "Forums"
msgstr "Forum"
-#: ../../include/widgets.php:1175
+#: ../../include/widgets.php:1253
msgid "Tasks"
msgstr "Oppgaver"
-#: ../../include/widgets.php:1184
+#: ../../include/widgets.php:1262
msgid "Documentation"
msgstr "Dokumentasjon"
-#: ../../include/widgets.php:1186
+#: ../../include/widgets.php:1264
msgid "Project/Site Information"
msgstr "Prosjekt-/Nettstedsinformasjon"
-#: ../../include/widgets.php:1187
+#: ../../include/widgets.php:1265
msgid "For Members"
msgstr "For medlemmer"
-#: ../../include/widgets.php:1188
+#: ../../include/widgets.php:1266
msgid "For Administrators"
msgstr "For administratorer"
-#: ../../include/widgets.php:1189
+#: ../../include/widgets.php:1267
msgid "For Developers"
msgstr "For utviklere"
-#: ../../include/widgets.php:1214 ../../mod/admin.php:446
+#: ../../include/widgets.php:1292 ../../mod/admin.php:456
msgid "Site"
msgstr "Nettsted"
-#: ../../include/widgets.php:1215
+#: ../../include/widgets.php:1293
msgid "Accounts"
msgstr "Kontoer"
-#: ../../include/widgets.php:1216 ../../mod/admin.php:977
+#: ../../include/widgets.php:1294 ../../mod/admin.php:1149
msgid "Channels"
msgstr "Kanaler"
-#: ../../include/widgets.php:1217 ../../mod/admin.php:1074
-#: ../../mod/admin.php:1114
+#: ../../include/widgets.php:1295 ../../mod/admin.php:710
+msgid "Security"
+msgstr "Sikkerhet"
+
+#: ../../include/widgets.php:1297 ../../mod/admin.php:1264
+#: ../../mod/admin.php:1325
msgid "Plugins"
msgstr "Tilleggsfunksjoner"
-#: ../../include/widgets.php:1218 ../../mod/admin.php:1274
-#: ../../mod/admin.php:1308
+#: ../../include/widgets.php:1298 ../../mod/admin.php:1486
+#: ../../mod/admin.php:1520
msgid "Themes"
msgstr "Temaer"
-#: ../../include/widgets.php:1219
+#: ../../include/widgets.php:1299
msgid "Inspect queue"
msgstr "Inspiser kĆø"
-#: ../../include/widgets.php:1220
+#: ../../include/widgets.php:1300
msgid "Profile Config"
msgstr "Profilinnstillinger"
-#: ../../include/widgets.php:1221
+#: ../../include/widgets.php:1301
msgid "DB updates"
msgstr "Databaseoppdateringer"
-#: ../../include/widgets.php:1239 ../../include/widgets.php:1245
-#: ../../mod/admin.php:1393
+#: ../../include/widgets.php:1319 ../../include/widgets.php:1325
+#: ../../mod/admin.php:1605
msgid "Logs"
msgstr "Logger"
-#: ../../include/widgets.php:1243 ../../include/nav.php:210
-msgid "Admin"
-msgstr "Administrator"
-
-#: ../../include/widgets.php:1244
+#: ../../include/widgets.php:1324
msgid "Plugin Features"
msgstr "Tilleggsfunksjoner"
-#: ../../include/widgets.php:1246
+#: ../../include/widgets.php:1326
msgid "User registrations waiting for confirmation"
msgstr "Brukerregistreringer som venter pƄ bekreftelse"
-#: ../../include/widgets.php:1324 ../../mod/photos.php:748
-#: ../../mod/photos.php:1283
+#: ../../include/widgets.php:1404 ../../mod/photos.php:760
+#: ../../mod/photos.php:1300
msgid "View Photo"
msgstr "Vis foto"
-#: ../../include/widgets.php:1341 ../../mod/photos.php:779
+#: ../../include/widgets.php:1421 ../../mod/photos.php:791
msgid "Edit Album"
msgstr "Endre album"
-#: ../../include/bb2diaspora.php:376
-msgid "Attachments:"
-msgstr "Vedlegg:"
+#: ../../include/text.php:394
+msgid "prev"
+msgstr "forrige"
-#: ../../include/bb2diaspora.php:467
-msgid "$Projectname event notification:"
-msgstr "$Projectname hendelsesvarsling:"
+#: ../../include/text.php:396
+msgid "first"
+msgstr "fĆørste"
-#: ../../include/bookmarks.php:35
+#: ../../include/text.php:425
+msgid "last"
+msgstr "siste"
+
+#: ../../include/text.php:428
+msgid "next"
+msgstr "neste"
+
+#: ../../include/text.php:438
+msgid "older"
+msgstr "eldre"
+
+#: ../../include/text.php:440
+msgid "newer"
+msgstr "nyere"
+
+#: ../../include/text.php:803
+msgid "No connections"
+msgstr "Ingen forbindelser"
+
+#: ../../include/text.php:828
#, php-format
-msgid "%1$s's bookmarks"
-msgstr "%1$s sine bokmerker"
+msgid "View all %s connections"
+msgstr "Vis alle %s forbindelser"
-#: ../../include/features.php:38
-msgid "General Features"
-msgstr "Generelle funksjoner"
+#: ../../include/text.php:973 ../../include/text.php:978
+msgid "poke"
+msgstr "prikk"
-#: ../../include/features.php:40
-msgid "Content Expiration"
-msgstr "Innholdet utlĆøper"
+#: ../../include/text.php:973 ../../include/text.php:978
+#: ../../include/conversation.php:243
+msgid "poked"
+msgstr "prikket"
-#: ../../include/features.php:40
-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/text.php:979
+msgid "ping"
+msgstr "varsle"
-#: ../../include/features.php:41
-msgid "Multiple Profiles"
-msgstr "Flere profiler"
+#: ../../include/text.php:979
+msgid "pinged"
+msgstr "varslet"
-#: ../../include/features.php:41
-msgid "Ability to create multiple profiles"
-msgstr "Mulig Ć„ lage flere profiler"
+#: ../../include/text.php:980
+msgid "prod"
+msgstr "oppildne"
-#: ../../include/features.php:42
-msgid "Advanced Profiles"
-msgstr "Avanserte profiler"
+#: ../../include/text.php:980
+msgid "prodded"
+msgstr "oppildnet"
-#: ../../include/features.php:42
-msgid "Additional profile sections and selections"
-msgstr "Ytterlige seksjoner og utvalg til profilen"
+#: ../../include/text.php:981
+msgid "slap"
+msgstr "daske"
-#: ../../include/features.php:43
-msgid "Profile Import/Export"
-msgstr "Profil-import/-eksport"
+#: ../../include/text.php:981
+msgid "slapped"
+msgstr "dasket"
-#: ../../include/features.php:43
-msgid "Save and load profile details across sites/channels"
-msgstr "Lagre og Ƅpne profildetaljer pƄ tvers av nettsteder/kanaler"
+#: ../../include/text.php:982
+msgid "finger"
+msgstr "fingre"
-#: ../../include/features.php:44
-msgid "Web Pages"
-msgstr "Web-sider"
+#: ../../include/text.php:982
+msgid "fingered"
+msgstr "fingret"
-#: ../../include/features.php:44
-msgid "Provide managed web pages on your channel"
-msgstr "Tilby kontrollerte web-sider pƄ din kanal"
+#: ../../include/text.php:983
+msgid "rebuff"
+msgstr "tilbakevise"
-#: ../../include/features.php:45
-msgid "Private Notes"
-msgstr "Private merknader"
+#: ../../include/text.php:983
+msgid "rebuffed"
+msgstr "tilbakeviste"
-#: ../../include/features.php:45
-msgid "Enables a tool to store notes and reminders"
-msgstr "Skrur pĆ„ et verktĆøy for lagre merknader og pĆ„minnelser"
+#: ../../include/text.php:995
+msgid "happy"
+msgstr "glad"
-#: ../../include/features.php:46
-msgid "Navigation Channel Select"
-msgstr "Navigasjon kanalvalg"
+#: ../../include/text.php:996
+msgid "sad"
+msgstr "trist"
-#: ../../include/features.php:46
-msgid "Change channels directly from within the navigation dropdown menu"
-msgstr "Endre kanaler direkte fra navigasjonsmenyen"
+#: ../../include/text.php:997
+msgid "mellow"
+msgstr "dempet"
-#: ../../include/features.php:47
-msgid "Photo Location"
-msgstr "Bildeplassering"
+#: ../../include/text.php:998
+msgid "tired"
+msgstr "trĆøtt"
-#: ../../include/features.php:47
-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/text.php:999
+msgid "perky"
+msgstr "oppkvikket"
-#: ../../include/features.php:49
-msgid "Expert Mode"
-msgstr "Ekspertmodus"
+#: ../../include/text.php:1000
+msgid "angry"
+msgstr "sint"
-#: ../../include/features.php:49
-msgid "Enable Expert Mode to provide advanced configuration options"
-msgstr "Skru pƄ Ekspertmodus for Ƅ tilby avanserte konfigurasjonsvalg"
+#: ../../include/text.php:1001
+msgid "stupefied"
+msgstr "lamslƄtt"
-#: ../../include/features.php:50
-msgid "Premium Channel"
-msgstr "Premiumkanal"
+#: ../../include/text.php:1002
+msgid "puzzled"
+msgstr "forundret"
-#: ../../include/features.php:50
-msgid ""
-"Allows you to set restrictions and terms on those that connect with your "
-"channel"
-msgstr "Lar deg angi restriksjoner og betingelser for de som kobler seg til din kanal"
+#: ../../include/text.php:1003
+msgid "interested"
+msgstr "interessert"
-#: ../../include/features.php:55
-msgid "Post Composition Features"
-msgstr "Funksjoner for Ć„ lage innlegg"
+#: ../../include/text.php:1004
+msgid "bitter"
+msgstr "bitter"
-#: ../../include/features.php:57
-msgid "Use Markdown"
-msgstr "Bruk Markdown"
+#: ../../include/text.php:1005
+msgid "cheerful"
+msgstr "munter"
-#: ../../include/features.php:57
-msgid "Allow use of \"Markdown\" to format posts"
-msgstr "Tillat bruk av \"Markdown\" til formatering av innlegg"
+#: ../../include/text.php:1006
+msgid "alive"
+msgstr "levende"
-#: ../../include/features.php:58
-msgid "Large Photos"
-msgstr "Store bilder"
+#: ../../include/text.php:1007
+msgid "annoyed"
+msgstr "irritert"
-#: ../../include/features.php:58
-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/text.php:1008
+msgid "anxious"
+msgstr "nervĆøs"
-#: ../../include/features.php:59
-msgid "Automatically import channel content from other channels or feeds"
-msgstr "Automatisk import av kanalinnhold fra andre kanaler eller strĆømmer"
+#: ../../include/text.php:1009
+msgid "cranky"
+msgstr "gretten"
-#: ../../include/features.php:60
-msgid "Even More Encryption"
-msgstr "Enda mer kryptering"
+#: ../../include/text.php:1010
+msgid "disturbed"
+msgstr "foruroliget"
-#: ../../include/features.php:60
-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/text.php:1011
+msgid "frustrated"
+msgstr "frustrert"
-#: ../../include/features.php:61
-msgid "Enable Voting Tools"
-msgstr "Skru pĆ„ verktĆøy for Ć„ stemme"
+#: ../../include/text.php:1012
+msgid "depressed"
+msgstr "lei seg"
-#: ../../include/features.php:61
-msgid "Provide a class of post which others can vote on"
-msgstr "Tilby en type innlegg som andre kan stemme pƄ"
+#: ../../include/text.php:1013
+msgid "motivated"
+msgstr "motivert"
-#: ../../include/features.php:62
-msgid "Delayed Posting"
-msgstr "Tidfest publisering"
+#: ../../include/text.php:1014
+msgid "relaxed"
+msgstr "avslappet"
-#: ../../include/features.php:62
-msgid "Allow posts to be published at a later date"
-msgstr "Tillat innlegg Ƅ bli publisert pƄ et senere tidspunkt"
+#: ../../include/text.php:1015
+msgid "surprised"
+msgstr "overrasket"
-#: ../../include/features.php:63
-msgid "Suppress Duplicate Posts/Comments"
-msgstr "Forhindre duplikat av innlegg/kommentarer"
+#: ../../include/text.php:1191
+msgid "May"
+msgstr "mai"
-#: ../../include/features.php:63
-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/text.php:1268 ../../include/text.php:1272
+msgid "Unknown Attachment"
+msgstr "Ukjent vedlegg"
-#: ../../include/features.php:69
-msgid "Network and Stream Filtering"
-msgstr "Nettverk- og strĆømfiltrering"
+#: ../../include/text.php:1274
+msgid "unknown"
+msgstr "ukjent"
-#: ../../include/features.php:70
-msgid "Search by Date"
-msgstr "SĆøk etter dato"
+#: ../../include/text.php:1310
+msgid "remove category"
+msgstr "fjern kategori"
-#: ../../include/features.php:70
-msgid "Ability to select posts by date ranges"
-msgstr "Mulighet for Ƅ velge innlegg etter datoomrƄde"
+#: ../../include/text.php:1387
+msgid "remove from file"
+msgstr "fjern fra fil"
-#: ../../include/features.php:71
-msgid "Collections Filter"
-msgstr "Filter for samlinger"
+#: ../../include/text.php:1529 ../../include/text.php:1540
+msgid "Click to open/close"
+msgstr "Klikk for Ć„ Ć„pne/lukke"
-#: ../../include/features.php:71
-msgid "Enable widget to display Network posts only from selected collections"
-msgstr "Skru pƄ miniprogram for Ƅ vise Nettverksinnlegg bare fra valgte samlinger"
+#: ../../include/text.php:1724 ../../mod/events.php:630 ../../mod/cal.php:302
+msgid "Link to Source"
+msgstr "Lenke til kilde"
-#: ../../include/features.php:72
-msgid "Save search terms for re-use"
-msgstr "Lagre sĆøkeuttrykk for senere bruk"
+#: ../../include/text.php:1745 ../../include/text.php:1817
+msgid "default"
+msgstr "standard"
-#: ../../include/features.php:73
-msgid "Network Personal Tab"
-msgstr "Nettverk personlig fane"
+#: ../../include/text.php:1753
+msgid "Page layout"
+msgstr "Sidens layout"
-#: ../../include/features.php:73
-msgid "Enable tab to display only Network posts that you've interacted on"
-msgstr "Skru pƄ fane for Ƅ bare vise Nettverksinnlegg som du har deltatt i"
+#: ../../include/text.php:1753
+msgid "You can create your own with the layouts tool"
+msgstr "Du kan lage din egen med layout-verktĆøyet"
-#: ../../include/features.php:74
-msgid "Network New Tab"
-msgstr "Nettverk Ny fane"
+#: ../../include/text.php:1795
+msgid "Page content type"
+msgstr "Sidens innholdstype"
-#: ../../include/features.php:74
-msgid "Enable tab to display all new Network activity"
-msgstr "Skru pƄ fane for Ƅ vise all ny nettverksaktivitet"
+#: ../../include/text.php:1829
+msgid "Select an alternate language"
+msgstr "Velg et annet sprƄk"
-#: ../../include/features.php:75
-msgid "Affinity Tool"
-msgstr "NƦrhetsverktĆøy"
+#: ../../include/text.php:1948 ../../include/conversation.php:120
+#: ../../mod/like.php:361 ../../mod/subthread.php:83 ../../mod/tagger.php:43
+msgid "photo"
+msgstr "foto"
-#: ../../include/features.php:75
-msgid "Filter stream activity by depth of relationships"
-msgstr "Filtrer strĆømaktiviteten etter releasjonsdybde"
+#: ../../include/text.php:1954 ../../include/conversation.php:148
+#: ../../mod/like.php:361 ../../mod/subthread.php:83
+msgid "status"
+msgstr "status"
-#: ../../include/features.php:76
-msgid "Connection Filtering"
-msgstr "Filtrer forbindelser"
+#: ../../include/text.php:1956 ../../include/conversation.php:150
+#: ../../mod/tagger.php:53
+msgid "comment"
+msgstr "kommentar"
-#: ../../include/features.php:76
-msgid "Filter incoming posts from connections based on keywords/content"
-msgstr "Filtrer innkommende innlegg fra forbindelser basert pĆ„ nĆøkkelord/innhold"
+#: ../../include/text.php:1961
+msgid "activity"
+msgstr "aktivitet"
-#: ../../include/features.php:77
-msgid "Suggest Channels"
-msgstr "ForeslƄ kanaler"
+#: ../../include/text.php:2256
+msgid "Design Tools"
+msgstr "DesignverktĆøy"
-#: ../../include/features.php:77
-msgid "Show channel suggestions"
-msgstr "Vis kanalforslag"
+#: ../../include/text.php:2259 ../../mod/blocks.php:147
+msgid "Blocks"
+msgstr "Byggeklosser"
-#: ../../include/features.php:82
-msgid "Post/Comment Tools"
-msgstr "Innlegg-/Kommentar-verktĆøy"
+#: ../../include/text.php:2260 ../../mod/menu.php:103
+msgid "Menus"
+msgstr "Menyer"
-#: ../../include/features.php:83
-msgid "Tagging"
-msgstr "Merking"
+#: ../../include/text.php:2261 ../../mod/layouts.php:174
+msgid "Layouts"
+msgstr "Layout"
-#: ../../include/features.php:83
-msgid "Ability to tag existing posts"
-msgstr "Mulighet til Ć„ merke eksisterende meldinger"
+#: ../../include/text.php:2262
+msgid "Pages"
+msgstr "Sider"
-#: ../../include/features.php:84
-msgid "Post Categories"
-msgstr "Innleggskategorier"
+#: ../../include/group.php:26
+msgid ""
+"A deleted group with this name was revived. Existing item permissions "
+"<strong>may</strong> apply to this group and any future members. If this is "
+"not what you intended, please create another group with a different name."
+msgstr "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/features.php:84
-msgid "Add categories to your posts"
-msgstr "Legg kategorier til dine innlegg"
+#: ../../include/group.php:232
+msgid "Add new connections to this privacy group"
+msgstr "Legg nye forbindelser i denne personverngruppen"
-#: ../../include/features.php:85
-msgid "Ability to file posts under folders"
-msgstr "Mulighet til Ć„ sortere innlegg i mapper"
+#: ../../include/group.php:251 ../../mod/admin.php:998
+msgid "All Channels"
+msgstr "Alle kanaler"
-#: ../../include/features.php:86
-msgid "Dislike Posts"
-msgstr "Mislik innlegg"
+#: ../../include/group.php:273
+msgid "edit"
+msgstr "endre"
-#: ../../include/features.php:86
-msgid "Ability to dislike posts/comments"
-msgstr "Mulighet til Ć„ mislike innlegg/kommentarer"
+#: ../../include/group.php:296
+msgid "Edit group"
+msgstr "Endre gruppe"
-#: ../../include/features.php:87
-msgid "Star Posts"
-msgstr "Stjerneinnlegg"
+#: ../../include/group.php:297
+msgid "Add privacy group"
+msgstr "Legg til personverngruppe"
-#: ../../include/features.php:87
-msgid "Ability to mark special posts with a star indicator"
-msgstr "Mulighet til Ć„ merke spesielle innlegg med en stjerne"
+#: ../../include/group.php:298
+msgid "Channels not in any privacy group"
+msgstr "Kanaler uten personverngruppe"
-#: ../../include/features.php:88
-msgid "Tag Cloud"
-msgstr "Merkelappsky"
+#: ../../include/enotify.php:96
+#, php-format
+msgid "%s <!item_type!>"
+msgstr "%s <!item_type!>"
-#: ../../include/features.php:88
-msgid "Provide a personal tag cloud on your channel page"
-msgstr "Tilby en personlig merkelappsky pƄ din kanalside"
+#: ../../include/enotify.php:100
+#, php-format
+msgid "[Hubzilla:Notify] New mail received at %s"
+msgstr "[Hubzilla:Notify] Ny melding mottatt hos %s"
-#: ../../include/profile_selectors.php:6
-#: ../../include/profile_selectors.php:23 ../../mod/id.php:103
-msgid "Male"
-msgstr "Mannlig"
+#: ../../include/enotify.php:102
+#, php-format
+msgid "%1$s, %2$s sent you a new private message at %3$s."
+msgstr "%1$s, %2$s sendte deg en ny privat melding pƄ %3$s."
-#: ../../include/profile_selectors.php:6
-#: ../../include/profile_selectors.php:23 ../../mod/id.php:105
-msgid "Female"
-msgstr "Kvinnelig"
+#: ../../include/enotify.php:103
+#, php-format
+msgid "%1$s sent you %2$s."
+msgstr "%1$s sendte deg %2$s."
-#: ../../include/profile_selectors.php:6
-msgid "Currently Male"
-msgstr "For tiden mann"
+#: ../../include/enotify.php:103
+msgid "a private message"
+msgstr "en privat melding"
-#: ../../include/profile_selectors.php:6
-msgid "Currently Female"
-msgstr "For tiden kvinne"
+#: ../../include/enotify.php:104
+#, php-format
+msgid "Please visit %s to view and/or reply to your private messages."
+msgstr "Vennligst besĆøk %s for Ć„ se og/eller svare pĆ„ dine private meldinger."
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Male"
-msgstr "For det meste mann"
+#: ../../include/enotify.php:160
+#, php-format
+msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]"
+msgstr "%1$s, %2$s kommenterte pƄ [zrl=%3$s]a %4$s[/zrl]"
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Female"
-msgstr "For det meste kvinne"
+#: ../../include/enotify.php:168
+#, php-format
+msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]"
+msgstr "%1$s, %2$s kommenterte pƄ [zrl=%3$s]%4$s's %5$s[/zrl]"
-#: ../../include/profile_selectors.php:6
-msgid "Transgender"
-msgstr "TranskjĆønnet"
+#: ../../include/enotify.php:177
+#, php-format
+msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]"
+msgstr "%1$s, %2$s kommenterte pƄ [zrl=%3$s]din %4$s[/zrl]"
-#: ../../include/profile_selectors.php:6
-msgid "Intersex"
-msgstr "interkjĆønnet"
+#: ../../include/enotify.php:188
+#, php-format
+msgid "[Hubzilla:Notify] Comment to conversation #%1$d by %2$s"
+msgstr "[Hubzilla:Notify] Kommentar til samtale #%1$d av %2$s"
-#: ../../include/profile_selectors.php:6
-msgid "Transsexual"
-msgstr "Transseksuell"
+#: ../../include/enotify.php:189
+#, php-format
+msgid "%1$s, %2$s commented on an item/conversation you have been following."
+msgstr "%1$s, %2$s kommenterte pĆ„ et element eller en samtale du fĆølger"
-#: ../../include/profile_selectors.php:6
-msgid "Hermaphrodite"
-msgstr "Hermafroditt"
+#: ../../include/enotify.php:192 ../../include/enotify.php:207
+#: ../../include/enotify.php:233 ../../include/enotify.php:251
+#: ../../include/enotify.php:265
+#, php-format
+msgid "Please visit %s to view and/or reply to the conversation."
+msgstr "Vennligst besĆøk %s for Ć„ se og/eller svare i samtalen"
-#: ../../include/profile_selectors.php:6
-msgid "Neuter"
-msgstr "IntetkjĆønn"
+#: ../../include/enotify.php:198
+#, php-format
+msgid "[Hubzilla:Notify] %s posted to your profile wall"
+msgstr "[Hubzilla:Notify] %s skrev et innlegg pƄ din profilvegg"
-#: ../../include/profile_selectors.php:6
-msgid "Non-specific"
-msgstr "Ubestemt"
+#: ../../include/enotify.php:200
+#, php-format
+msgid "%1$s, %2$s posted to your profile wall at %3$s"
+msgstr "%1$s, %2$s skrev et innlegg pƄ din profilvegg pƄ %3$s"
-#: ../../include/profile_selectors.php:6
-#: ../../include/profile_selectors.php:23
-#: ../../include/profile_selectors.php:61
-#: ../../include/profile_selectors.php:97 ../../include/permissions.php:871
-msgid "Other"
-msgstr "Annen"
+#: ../../include/enotify.php:202
+#, php-format
+msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]"
+msgstr "%1$s, %2$s skrev et innlegg pƄ [zrl=%3$s]din vegg[/zrl]"
-#: ../../include/profile_selectors.php:6
-msgid "Undecided"
-msgstr "Ubestemt"
+#: ../../include/enotify.php:226
+#, php-format
+msgid "[Hubzilla:Notify] %s tagged you"
+msgstr "[Hubzilla:Notify] %s merket deg"
-#: ../../include/profile_selectors.php:42
-#: ../../include/profile_selectors.php:61
-msgid "Males"
-msgstr "Menn"
+#: ../../include/enotify.php:227
+#, php-format
+msgid "%1$s, %2$s tagged you at %3$s"
+msgstr "%1$s, %2$s merket deg pƄ %3$s"
-#: ../../include/profile_selectors.php:42
-#: ../../include/profile_selectors.php:61
-msgid "Females"
-msgstr "Kvinner"
+#: ../../include/enotify.php:228
+#, php-format
+msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]."
+msgstr "%1$s, %2$s [zrl=%3$s]merket deg[/zrl]."
-#: ../../include/profile_selectors.php:42
-msgid "Gay"
-msgstr "Homo"
+#: ../../include/enotify.php:240
+#, php-format
+msgid "[Hubzilla:Notify] %1$s poked you"
+msgstr "[Hubzilla:Notify] %1$s prikket deg"
-#: ../../include/profile_selectors.php:42
-msgid "Lesbian"
-msgstr "Lesbisk"
+#: ../../include/enotify.php:241
+#, php-format
+msgid "%1$s, %2$s poked you at %3$s"
+msgstr "%1$s, %2$s dyttet deg pƄ %3$s"
-#: ../../include/profile_selectors.php:42
-msgid "No Preference"
-msgstr "Ingen preferanse"
+#: ../../include/enotify.php:242
+#, php-format
+msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]."
+msgstr "%1$s, %2$s [zrl=%2$s]dyttet deg[/zrl]."
-#: ../../include/profile_selectors.php:42
-msgid "Bisexual"
-msgstr "Biseksuell"
+#: ../../include/enotify.php:258
+#, php-format
+msgid "[Hubzilla:Notify] %s tagged your post"
+msgstr "[Hubzilla:Notify] %s merket ditt innlegg"
-#: ../../include/profile_selectors.php:42
-msgid "Autosexual"
-msgstr "Autoseksuell"
+#: ../../include/enotify.php:259
+#, php-format
+msgid "%1$s, %2$s tagged your post at %3$s"
+msgstr "%1$s, %2$s merket ditt innlegg pƄ %3$s"
-#: ../../include/profile_selectors.php:42
-msgid "Abstinent"
-msgstr "Avholdende"
+#: ../../include/enotify.php:260
+#, php-format
+msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]"
+msgstr "%1$s, %2$s merket [zrl=%3$s]ditt innlegg[/zrl]"
-#: ../../include/profile_selectors.php:42
-msgid "Virgin"
-msgstr "Jomfru"
+#: ../../include/enotify.php:272
+msgid "[Hubzilla:Notify] Introduction received"
+msgstr "[Hubzilla:Notify] Introduksjon mottatt"
-#: ../../include/profile_selectors.php:42
-msgid "Deviant"
-msgstr "Avviker"
+#: ../../include/enotify.php:273
+#, php-format
+msgid "%1$s, you've received an new connection request from '%2$s' at %3$s"
+msgstr "%1$s, du har mottatt en ny forespĆørsel om forbindelse fra '%2$s' hos %3$s"
-#: ../../include/profile_selectors.php:42
-msgid "Fetish"
-msgstr "Fetisj"
+#: ../../include/enotify.php:274
+#, php-format
+msgid ""
+"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s."
+msgstr "%1$s, du mottok [zrl=%2$s]en ny forespĆørsel om forbindelse[/zrl] fra %3$s."
-#: ../../include/profile_selectors.php:42
-msgid "Oodles"
-msgstr "Masse"
+#: ../../include/enotify.php:278 ../../include/enotify.php:297
+#, php-format
+msgid "You may visit their profile at %s"
+msgstr "Du kan besĆøke profilen deres pĆ„ %s"
-#: ../../include/profile_selectors.php:42
-msgid "Nonsexual"
-msgstr "Ikke-seksuell"
+#: ../../include/enotify.php:280
+#, php-format
+msgid "Please visit %s to approve or reject the connection request."
+msgstr "Vennligst besĆøk %s for Ć„ godkjenne eller avslĆ„ forespĆørselen om forbindelse."
-#: ../../include/profile_selectors.php:80
-#: ../../include/profile_selectors.php:97
-msgid "Single"
-msgstr "Enslig"
+#: ../../include/enotify.php:287
+msgid "[Hubzilla:Notify] Friend suggestion received"
+msgstr "[Hubzilla:Notify] Venneforslag mottatt"
-#: ../../include/profile_selectors.php:80
-msgid "Lonely"
-msgstr "Ensom"
+#: ../../include/enotify.php:288
+#, php-format
+msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s"
+msgstr "%1$s, du har mottatt en venneforespĆørsel fra '%2$s' hos %3$s"
-#: ../../include/profile_selectors.php:80
-msgid "Available"
-msgstr "Tilgjengelig"
+#: ../../include/enotify.php:289
+#, php-format
+msgid ""
+"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from "
+"%4$s."
+msgstr "%1$s, du har mottatt [zrl=%2$s]et venneforslaget[/zrl] angƄende %3$s fra %4$s. "
-#: ../../include/profile_selectors.php:80
-msgid "Unavailable"
-msgstr "Ikke tilgjengelig"
+#: ../../include/enotify.php:295
+msgid "Name:"
+msgstr "Navn:"
-#: ../../include/profile_selectors.php:80
-msgid "Has crush"
-msgstr "Er forelsket"
+#: ../../include/enotify.php:296
+msgid "Photo:"
+msgstr "Bilde:"
-#: ../../include/profile_selectors.php:80
-msgid "Infatuated"
-msgstr "Betatt"
+#: ../../include/enotify.php:299
+#, php-format
+msgid "Please visit %s to approve or reject the suggestion."
+msgstr "Vennligst besĆøk %s for Ć„ godkjenne eller avslĆ„ dette forslaget."
-#: ../../include/profile_selectors.php:80
-#: ../../include/profile_selectors.php:97
-msgid "Dating"
-msgstr "Sammen med"
+#: ../../include/enotify.php:514
+msgid "[Hubzilla:Notify]"
+msgstr "[Hubzilla:Notify]"
-#: ../../include/profile_selectors.php:80
-msgid "Unfaithful"
-msgstr "Utro"
+#: ../../include/identity.php:32
+msgid "Unable to obtain identity information from database"
+msgstr "Klarer ikke Ƅ fƄ tak i identitetsinformasjon fra databasen"
-#: ../../include/profile_selectors.php:80
-msgid "Sex Addict"
-msgstr "Sexavhengig"
+#: ../../include/identity.php:66
+msgid "Empty name"
+msgstr "Mangler navn"
-#: ../../include/profile_selectors.php:80
-msgid "Friends/Benefits"
-msgstr "Venner med frynsegoder"
+#: ../../include/identity.php:69
+msgid "Name too long"
+msgstr "Navnet er for langt"
-#: ../../include/profile_selectors.php:80
-msgid "Casual"
-msgstr "Tilfeldig"
+#: ../../include/identity.php:181
+msgid "No account identifier"
+msgstr "Ingen kontoidentifikator"
-#: ../../include/profile_selectors.php:80
-msgid "Engaged"
-msgstr "Forlovet"
+#: ../../include/identity.php:193
+msgid "Nickname is required."
+msgstr "Kallenavn er pƄkrevd."
-#: ../../include/profile_selectors.php:80
-#: ../../include/profile_selectors.php:97
-msgid "Married"
-msgstr "Gift"
+#: ../../include/identity.php:207
+msgid "Reserved nickname. Please choose another."
+msgstr "Reservert kallenavn. Vennligst velg et annet."
-#: ../../include/profile_selectors.php:80
-msgid "Imaginarily married"
-msgstr "Gift i fantasien"
+#: ../../include/identity.php:212
+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/profile_selectors.php:80
-msgid "Partners"
-msgstr "Partnere"
+#: ../../include/identity.php:288
+msgid "Unable to retrieve created identity"
+msgstr "Klarer ikke Ć„ hente den lagede identiteten"
-#: ../../include/profile_selectors.php:80
-#: ../../include/profile_selectors.php:97
-msgid "Cohabiting"
-msgstr "Samboer"
+#: ../../include/identity.php:346
+msgid "Default Profile"
+msgstr "Standardprofil"
-#: ../../include/profile_selectors.php:80
-msgid "Common law"
-msgstr "Samboer"
+#: ../../include/identity.php:772
+msgid "Requested channel is not available."
+msgstr "Forespurt kanal er ikke tilgjengelig."
-#: ../../include/profile_selectors.php:80
-msgid "Happy"
-msgstr "Lykkelig"
+#: ../../include/identity.php:818 ../../mod/achievements.php:11
+#: ../../mod/blocks.php:29 ../../mod/connect.php:13 ../../mod/editblock.php:29
+#: ../../mod/editlayout.php:27 ../../mod/editwebpage.php:28
+#: ../../mod/filestorage.php:54 ../../mod/hcard.php:8 ../../mod/layouts.php:29
+#: ../../mod/profile.php:16 ../../mod/webpages.php:29
+msgid "Requested profile is not available."
+msgstr "Forespurt profil er ikke tilgjengelig."
-#: ../../include/profile_selectors.php:80
-msgid "Not looking"
-msgstr "Ikke pƄ utkikk"
+#: ../../include/identity.php:967 ../../mod/profiles.php:782
+msgid "Change profile photo"
+msgstr "Endre profilbilde"
-#: ../../include/profile_selectors.php:80
-msgid "Swinger"
-msgstr "Partnerbytte"
+#: ../../include/identity.php:973
+msgid "Profiles"
+msgstr "Profiler"
-#: ../../include/profile_selectors.php:80
-msgid "Betrayed"
-msgstr "Bedratt"
+#: ../../include/identity.php:973
+msgid "Manage/edit profiles"
+msgstr "HĆ„ndtere/endre profiler"
-#: ../../include/profile_selectors.php:80
-#: ../../include/profile_selectors.php:97
-msgid "Separated"
-msgstr "Separert"
+#: ../../include/identity.php:974 ../../mod/profiles.php:783
+msgid "Create New Profile"
+msgstr "Lag ny profil"
-#: ../../include/profile_selectors.php:80
-msgid "Unstable"
-msgstr "Ustabilt"
+#: ../../include/identity.php:989 ../../mod/profiles.php:794
+msgid "Profile Image"
+msgstr "Profilbilde"
-#: ../../include/profile_selectors.php:80
-#: ../../include/profile_selectors.php:97
-msgid "Divorced"
-msgstr "Skilt"
+#: ../../include/identity.php:992
+msgid "visible to everybody"
+msgstr "synlig for alle"
-#: ../../include/profile_selectors.php:80
-msgid "Imaginarily divorced"
-msgstr "Skilt i fantasien"
+#: ../../include/identity.php:993 ../../mod/profiles.php:677
+#: ../../mod/profiles.php:798
+msgid "Edit visibility"
+msgstr "Endre synlighet"
-#: ../../include/profile_selectors.php:80
-#: ../../include/profile_selectors.php:97
-msgid "Widowed"
-msgstr "Enke"
+#: ../../include/identity.php:1009 ../../include/identity.php:1248
+msgid "Gender:"
+msgstr "KjĆønn:"
-#: ../../include/profile_selectors.php:80
-msgid "Uncertain"
-msgstr "Usikkert"
+#: ../../include/identity.php:1010 ../../include/identity.php:1292
+msgid "Status:"
+msgstr "Status:"
-#: ../../include/profile_selectors.php:80
-#: ../../include/profile_selectors.php:97
-msgid "It's complicated"
-msgstr "Det er komplisert"
+#: ../../include/identity.php:1011 ../../include/identity.php:1303
+msgid "Homepage:"
+msgstr "Hjemmeside:"
-#: ../../include/profile_selectors.php:80
-msgid "Don't care"
-msgstr "Bryr meg ikke"
+#: ../../include/identity.php:1012
+msgid "Online Now"
+msgstr "Online nƄ"
-#: ../../include/profile_selectors.php:80
-msgid "Ask me"
-msgstr "SpĆør meg"
+#: ../../include/identity.php:1099 ../../include/identity.php:1177
+#: ../../mod/ping.php:318
+msgid "g A l F d"
+msgstr "g A l F d"
-#: ../../include/datetime.php:48
-msgid "Miscellaneous"
-msgstr "Forskjellig"
+#: ../../include/identity.php:1100 ../../include/identity.php:1178
+msgid "F d"
+msgstr "F d"
-#: ../../include/datetime.php:132
-msgid "YYYY-MM-DD or MM-DD"
-msgstr "YYYY-MM-DD eller MM-DD"
+#: ../../include/identity.php:1145 ../../include/identity.php:1217
+#: ../../mod/ping.php:341
+msgid "[today]"
+msgstr "[idag]"
-#: ../../include/datetime.php:236 ../../mod/appman.php:91
-#: ../../mod/appman.php:92 ../../mod/events.php:437 ../../mod/events.php:442
-msgid "Required"
-msgstr "PĆ„krevd"
+#: ../../include/identity.php:1156
+msgid "Birthday Reminders"
+msgstr "FĆødselsdagspĆ„minnnelser"
-#: ../../include/datetime.php:263 ../../boot.php:2291
-msgid "never"
-msgstr "aldri"
+#: ../../include/identity.php:1157
+msgid "Birthdays this week:"
+msgstr "FĆødselsdager denne uken:"
-#: ../../include/datetime.php:269
-msgid "less than a second ago"
-msgstr "for mindre enn ett sekund siden"
+#: ../../include/identity.php:1210
+msgid "[No description]"
+msgstr "[Ingen beskrivelse]"
-#: ../../include/datetime.php:272
-msgid "year"
-msgstr "Ć„r"
+#: ../../include/identity.php:1228
+msgid "Event Reminders"
+msgstr "HendelsespƄminnelser"
-#: ../../include/datetime.php:272
-msgid "years"
-msgstr "Ć„r"
+#: ../../include/identity.php:1229
+msgid "Events this week:"
+msgstr "Hendelser denne uken:"
-#: ../../include/datetime.php:273
-msgid "month"
-msgstr "mƄned"
+#: ../../include/identity.php:1246 ../../mod/settings.php:1047
+msgid "Full Name:"
+msgstr "Fullt navn:"
-#: ../../include/datetime.php:273
-msgid "months"
-msgstr "mƄneder"
+#: ../../include/identity.php:1253
+msgid "Like this channel"
+msgstr "Lik denne kanalen"
-#: ../../include/datetime.php:274
-msgid "week"
-msgstr "uke"
+#: ../../include/identity.php:1277
+msgid "j F, Y"
+msgstr "j F, Y"
-#: ../../include/datetime.php:274
-msgid "weeks"
-msgstr "uker"
+#: ../../include/identity.php:1278
+msgid "j F"
+msgstr "j F"
-#: ../../include/datetime.php:275
-msgid "day"
-msgstr "dag"
+#: ../../include/identity.php:1285
+msgid "Birthday:"
+msgstr "FĆødselsdag:"
-#: ../../include/datetime.php:275
-msgid "days"
-msgstr "dager"
+#: ../../include/identity.php:1289 ../../mod/directory.php:302
+msgid "Age:"
+msgstr "Alder:"
-#: ../../include/datetime.php:276
-msgid "hour"
-msgstr "time"
+#: ../../include/identity.php:1298
+#, php-format
+msgid "for %1$d %2$s"
+msgstr "for %1$d %2$s"
-#: ../../include/datetime.php:276
-msgid "hours"
-msgstr "timer"
+#: ../../include/identity.php:1301 ../../mod/profiles.php:699
+msgid "Sexual Preference:"
+msgstr "Seksuell preferanse:"
-#: ../../include/datetime.php:277
-msgid "minute"
-msgstr "minutt"
+#: ../../include/identity.php:1305 ../../mod/directory.php:318
+#: ../../mod/profiles.php:701
+msgid "Hometown:"
+msgstr "Hjemby:"
-#: ../../include/datetime.php:277
-msgid "minutes"
-msgstr "minutter"
+#: ../../include/identity.php:1307
+msgid "Tags:"
+msgstr "Merkelapper:"
-#: ../../include/datetime.php:278
-msgid "second"
-msgstr "sekund"
+#: ../../include/identity.php:1309 ../../mod/profiles.php:702
+msgid "Political Views:"
+msgstr "Politiske synspunkter:"
-#: ../../include/datetime.php:278
-msgid "seconds"
-msgstr "sekunder"
+#: ../../include/identity.php:1311
+msgid "Religion:"
+msgstr "Religion:"
-#: ../../include/datetime.php:286
-#, php-format
-msgctxt "e.g. 22 hours ago, 1 minute ago"
-msgid "%1$d %2$s ago"
-msgstr "%1$d %2$s siden"
+#: ../../include/identity.php:1313 ../../mod/directory.php:320
+msgid "About:"
+msgstr "Om:"
-#: ../../include/datetime.php:520
-#, php-format
-msgid "%1$s's birthday"
-msgstr "%1$s sin fĆødselsdag"
+#: ../../include/identity.php:1315
+msgid "Hobbies/Interests:"
+msgstr "Hobbyer/interesser:"
-#: ../../include/datetime.php:521
-#, php-format
-msgid "Happy Birthday %1$s"
-msgstr "Gratulerer med dagen, %1$s !"
+#: ../../include/identity.php:1317 ../../mod/profiles.php:705
+msgid "Likes:"
+msgstr "Liker:"
-#: ../../include/api.php:1336
-msgid "Public Timeline"
-msgstr "Offentlig tidslinje"
+#: ../../include/identity.php:1319 ../../mod/profiles.php:706
+msgid "Dislikes:"
+msgstr "Misliker:"
+
+#: ../../include/identity.php:1321
+msgid "Contact information and Social Networks:"
+msgstr "Kontaktinformasjon og sosiale nettverk:"
+
+#: ../../include/identity.php:1323
+msgid "My other channels:"
+msgstr "Mine andre kanaler:"
+
+#: ../../include/identity.php:1325
+msgid "Musical interests:"
+msgstr "Musikkinteresse:"
+
+#: ../../include/identity.php:1327
+msgid "Books, literature:"
+msgstr "BĆøker, litteratur:"
+
+#: ../../include/identity.php:1329
+msgid "Television:"
+msgstr "TV:"
+
+#: ../../include/identity.php:1331
+msgid "Film/dance/culture/entertainment:"
+msgstr "Film/dans/kultur/underholdning:"
+
+#: ../../include/identity.php:1333
+msgid "Love/Romance:"
+msgstr "KjƦrlighet/romantikk:"
+
+#: ../../include/identity.php:1335
+msgid "Work/employment:"
+msgstr "Arbeid/sysselsetting:"
+
+#: ../../include/identity.php:1337
+msgid "School/education:"
+msgstr "Skole/utdannelse:"
+
+#: ../../include/identity.php:1361
+msgid "Like this thing"
+msgstr "Lik denne tingen"
+
+#: ../../include/identity.php:1770 ../../mod/cover_photo.php:236
+msgid "cover photo"
+msgstr "forsidebilde"
+
+#: ../../include/oembed.php:267
+msgid "Embedded content"
+msgstr "Innebygget innhold"
+
+#: ../../include/oembed.php:276
+msgid "Embedding disabled"
+msgstr "Innbygging avskrudd"
#: ../../include/conversation.php:126 ../../mod/like.php:113
msgid "channel"
@@ -2458,42 +3408,42 @@ msgctxt "mood"
msgid "%1$s is %2$s"
msgstr "%1$s er %2$s"
-#: ../../include/conversation.php:574 ../../mod/photos.php:1060
+#: ../../include/conversation.php:574 ../../mod/photos.php:1074
msgctxt "title"
msgid "Likes"
msgstr "Liker"
-#: ../../include/conversation.php:574 ../../mod/photos.php:1060
+#: ../../include/conversation.php:574 ../../mod/photos.php:1074
msgctxt "title"
msgid "Dislikes"
msgstr "Liker ikke"
-#: ../../include/conversation.php:575 ../../mod/photos.php:1061
+#: ../../include/conversation.php:575 ../../mod/photos.php:1075
msgctxt "title"
msgid "Agree"
msgstr "Enig"
-#: ../../include/conversation.php:575 ../../mod/photos.php:1061
+#: ../../include/conversation.php:575 ../../mod/photos.php:1075
msgctxt "title"
msgid "Disagree"
msgstr "Uenig"
-#: ../../include/conversation.php:575 ../../mod/photos.php:1061
+#: ../../include/conversation.php:575 ../../mod/photos.php:1075
msgctxt "title"
msgid "Abstain"
msgstr "AvstƄr"
-#: ../../include/conversation.php:576 ../../mod/photos.php:1062
+#: ../../include/conversation.php:576 ../../mod/photos.php:1076
msgctxt "title"
msgid "Attending"
msgstr "Deltar"
-#: ../../include/conversation.php:576 ../../mod/photos.php:1062
+#: ../../include/conversation.php:576 ../../mod/photos.php:1076
msgctxt "title"
msgid "Not attending"
msgstr "Deltar ikke"
-#: ../../include/conversation.php:576 ../../mod/photos.php:1062
+#: ../../include/conversation.php:576 ../../mod/photos.php:1076
msgctxt "title"
msgid "Might attend"
msgstr "Deltar kanskje"
@@ -2546,10 +3496,10 @@ msgstr "UtlĆøper: %s"
msgid "View in context"
msgstr "Vis i sammenheng"
-#: ../../include/conversation.php:740 ../../include/conversation.php:1227
-#: ../../include/ItemObject.php:389 ../../mod/editwebpage.php:190
-#: ../../mod/editblock.php:150 ../../mod/editlayout.php:148
-#: ../../mod/photos.php:1026 ../../mod/editpost.php:129
+#: ../../include/conversation.php:740 ../../include/conversation.php:1237
+#: ../../include/ItemObject.php:389 ../../mod/editblock.php:150
+#: ../../mod/editlayout.php:148 ../../mod/editpost.php:129
+#: ../../mod/editwebpage.php:190 ../../mod/photos.php:1040
msgid "Please wait"
msgstr "Vennligst vent"
@@ -2557,1287 +3507,432 @@ msgstr "Vennligst vent"
msgid "remove"
msgstr "fjern"
-#: ../../include/conversation.php:854 ../../include/nav.php:241
-msgid "Loading..."
-msgstr "Laster..."
-
#: ../../include/conversation.php:855
msgid "Delete Selected Items"
msgstr "Slett valgte elementer"
-#: ../../include/conversation.php:946
+#: ../../include/conversation.php:953
msgid "View Source"
msgstr "Vis kilde"
-#: ../../include/conversation.php:947
+#: ../../include/conversation.php:954
msgid "Follow Thread"
msgstr "FĆølg trĆ„d"
-#: ../../include/conversation.php:948
+#: ../../include/conversation.php:955
msgid "Unfollow Thread"
msgstr "Ikke fĆølg trĆ„d"
-#: ../../include/conversation.php:949
-msgid "View Status"
-msgstr "Vis status"
-
-#: ../../include/conversation.php:950 ../../include/nav.php:86
-#: ../../mod/connedit.php:498
-msgid "View Profile"
-msgstr "Vis profil"
-
-#: ../../include/conversation.php:951
-msgid "View Photos"
-msgstr "Vis bilder"
-
-#: ../../include/conversation.php:952
+#: ../../include/conversation.php:960
msgid "Activity/Posts"
msgstr "Aktivitet/Innlegg"
-#: ../../include/conversation.php:954
+#: ../../include/conversation.php:962
msgid "Edit Connection"
msgstr "Endre forbindelse"
-#: ../../include/conversation.php:955
-msgid "Send PM"
-msgstr "Send privat melding"
+#: ../../include/conversation.php:963
+msgid "Message"
+msgstr "Melding"
-#: ../../include/conversation.php:956 ../../include/apps.php:145
-msgid "Poke"
-msgstr "Prikk"
+#: ../../include/conversation.php:964 ../../mod/pubsites.php:27
+#: ../../mod/ratings.php:99
+msgid "Ratings"
+msgstr "Vurderinger"
-#: ../../include/conversation.php:1070
+#: ../../include/conversation.php:1080
#, php-format
msgid "%s likes this."
msgstr "%s liker dette."
-#: ../../include/conversation.php:1070
+#: ../../include/conversation.php:1080
#, php-format
msgid "%s doesn't like this."
msgstr "%s liker ikke dette."
-#: ../../include/conversation.php:1074
+#: ../../include/conversation.php:1084
#, 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:1076
+#: ../../include/conversation.php:1086
#, 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:1082
+#: ../../include/conversation.php:1092
msgid "and"
msgstr "og"
-#: ../../include/conversation.php:1085
+#: ../../include/conversation.php:1095
#, 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:1086
+#: ../../include/conversation.php:1096
#, php-format
msgid "%s like this."
msgstr "%s liker dette."
-#: ../../include/conversation.php:1086
+#: ../../include/conversation.php:1096
#, php-format
msgid "%s don't like this."
msgstr "%s liker ikke dette."
-#: ../../include/conversation.php:1154
+#: ../../include/conversation.php:1164
msgid "Visible to <strong>everybody</strong>"
msgstr "Synlig for <strong>alle</strong>"
-#: ../../include/conversation.php:1155 ../../mod/mail.php:202
+#: ../../include/conversation.php:1165 ../../mod/mail.php:202
#: ../../mod/mail.php:316
msgid "Please enter a link URL:"
msgstr "Vennligst skriv inn en lenke URL:"
-#: ../../include/conversation.php:1156
+#: ../../include/conversation.php:1166
msgid "Please enter a video link/URL:"
msgstr "Vennligst skriv en videolenke/URL:"
-#: ../../include/conversation.php:1157
+#: ../../include/conversation.php:1167
msgid "Please enter an audio link/URL:"
msgstr "Vennligst skriv en lydlenke/URL:"
-#: ../../include/conversation.php:1158
+#: ../../include/conversation.php:1168
msgid "Tag term:"
msgstr "Merkelapp:"
-#: ../../include/conversation.php:1159 ../../mod/filer.php:48
+#: ../../include/conversation.php:1169 ../../mod/filer.php:48
msgid "Save to Folder:"
msgstr "Lagre til mappe:"
-#: ../../include/conversation.php:1160
+#: ../../include/conversation.php:1170
msgid "Where are you right now?"
msgstr "Hvor er du akkurat nƄ?"
-#: ../../include/conversation.php:1161 ../../mod/editpost.php:56
+#: ../../include/conversation.php:1171 ../../mod/editpost.php:56
#: ../../mod/mail.php:203 ../../mod/mail.php:317
msgid "Expires YYYY-MM-DD HH:MM"
msgstr "UtlĆøper YYYY-MM-DD HH:MM"
-#: ../../include/conversation.php:1169 ../../include/page_widgets.php:40
-#: ../../include/ItemObject.php:706 ../../mod/editwebpage.php:212
-#: ../../mod/editblock.php:171 ../../mod/webpages.php:188
-#: ../../mod/photos.php:1046 ../../mod/editpost.php:149
-#: ../../mod/events.php:458
-msgid "Preview"
-msgstr "ForhƄndsvisning"
-
-#: ../../include/conversation.php:1192 ../../mod/blocks.php:154
-#: ../../mod/webpages.php:182 ../../mod/layouts.php:184
-#: ../../mod/photos.php:1025
+#: ../../include/conversation.php:1202 ../../mod/blocks.php:154
+#: ../../mod/layouts.php:184 ../../mod/photos.php:1039
+#: ../../mod/webpages.php:184
msgid "Share"
msgstr "Del"
-#: ../../include/conversation.php:1194
+#: ../../include/conversation.php:1204
msgid "Page link name"
msgstr "Sidens lenkenavn"
-#: ../../include/conversation.php:1197
+#: ../../include/conversation.php:1207
msgid "Post as"
msgstr "Lag innlegg som"
-#: ../../include/conversation.php:1199 ../../include/ItemObject.php:698
-#: ../../mod/editwebpage.php:177 ../../mod/editblock.php:136
-#: ../../mod/editlayout.php:135 ../../mod/editpost.php:113
+#: ../../include/conversation.php:1209 ../../include/ItemObject.php:704
+#: ../../mod/editblock.php:136 ../../mod/editlayout.php:135
+#: ../../mod/editpost.php:113 ../../mod/editwebpage.php:177
msgid "Bold"
msgstr "Uthevet"
-#: ../../include/conversation.php:1200 ../../include/ItemObject.php:699
-#: ../../mod/editwebpage.php:178 ../../mod/editblock.php:137
-#: ../../mod/editlayout.php:136 ../../mod/editpost.php:114
+#: ../../include/conversation.php:1210 ../../include/ItemObject.php:705
+#: ../../mod/editblock.php:137 ../../mod/editlayout.php:136
+#: ../../mod/editpost.php:114 ../../mod/editwebpage.php:178
msgid "Italic"
msgstr "Kursiv"
-#: ../../include/conversation.php:1201 ../../include/ItemObject.php:700
-#: ../../mod/editwebpage.php:179 ../../mod/editblock.php:138
-#: ../../mod/editlayout.php:137 ../../mod/editpost.php:115
+#: ../../include/conversation.php:1211 ../../include/ItemObject.php:706
+#: ../../mod/editblock.php:138 ../../mod/editlayout.php:137
+#: ../../mod/editpost.php:115 ../../mod/editwebpage.php:179
msgid "Underline"
msgstr "Understreket"
-#: ../../include/conversation.php:1202 ../../include/ItemObject.php:701
-#: ../../mod/editwebpage.php:180 ../../mod/editblock.php:139
-#: ../../mod/editlayout.php:138 ../../mod/editpost.php:116
+#: ../../include/conversation.php:1212 ../../include/ItemObject.php:707
+#: ../../mod/editblock.php:139 ../../mod/editlayout.php:138
+#: ../../mod/editpost.php:116 ../../mod/editwebpage.php:180
msgid "Quote"
msgstr "Sitat"
-#: ../../include/conversation.php:1203 ../../include/ItemObject.php:702
-#: ../../mod/editwebpage.php:181 ../../mod/editblock.php:140
-#: ../../mod/editlayout.php:139 ../../mod/editpost.php:117
+#: ../../include/conversation.php:1213 ../../include/ItemObject.php:708
+#: ../../mod/editblock.php:140 ../../mod/editlayout.php:139
+#: ../../mod/editpost.php:117 ../../mod/editwebpage.php:181
msgid "Code"
msgstr "Kode"
-#: ../../include/conversation.php:1204 ../../mod/editwebpage.php:182
-#: ../../mod/editblock.php:142 ../../mod/editlayout.php:140
-#: ../../mod/editpost.php:118
+#: ../../include/conversation.php:1214 ../../mod/editblock.php:142
+#: ../../mod/editlayout.php:140 ../../mod/editpost.php:118
+#: ../../mod/editwebpage.php:182
msgid "Upload photo"
msgstr "Last opp bilde"
-#: ../../include/conversation.php:1205
+#: ../../include/conversation.php:1215
msgid "upload photo"
msgstr "last opp bilde"
-#: ../../include/conversation.php:1206 ../../mod/editwebpage.php:183
-#: ../../mod/editblock.php:143 ../../mod/editlayout.php:141
-#: ../../mod/editpost.php:119 ../../mod/mail.php:248 ../../mod/mail.php:378
+#: ../../include/conversation.php:1216 ../../mod/editblock.php:143
+#: ../../mod/editlayout.php:141 ../../mod/editpost.php:119
+#: ../../mod/editwebpage.php:183 ../../mod/mail.php:248 ../../mod/mail.php:378
msgid "Attach file"
msgstr "Legg ved fil"
-#: ../../include/conversation.php:1207
+#: ../../include/conversation.php:1217
msgid "attach file"
msgstr "legg ved fil"
-#: ../../include/conversation.php:1208 ../../mod/editwebpage.php:184
-#: ../../mod/editblock.php:144 ../../mod/editlayout.php:142
-#: ../../mod/editpost.php:120 ../../mod/mail.php:249 ../../mod/mail.php:379
+#: ../../include/conversation.php:1218 ../../mod/editblock.php:144
+#: ../../mod/editlayout.php:142 ../../mod/editpost.php:120
+#: ../../mod/editwebpage.php:184 ../../mod/mail.php:249 ../../mod/mail.php:379
msgid "Insert web link"
msgstr "Sett inn web-lenke"
-#: ../../include/conversation.php:1209
+#: ../../include/conversation.php:1219
msgid "web link"
msgstr "web-lenke"
-#: ../../include/conversation.php:1210
+#: ../../include/conversation.php:1220
msgid "Insert video link"
msgstr "Sett inn videolenke"
-#: ../../include/conversation.php:1211
+#: ../../include/conversation.php:1221
msgid "video link"
msgstr "videolenke"
-#: ../../include/conversation.php:1212
+#: ../../include/conversation.php:1222
msgid "Insert audio link"
msgstr "Sett inn lenke til lyd"
-#: ../../include/conversation.php:1213
+#: ../../include/conversation.php:1223
msgid "audio link"
msgstr "lenke til lyd"
-#: ../../include/conversation.php:1214 ../../mod/editwebpage.php:188
-#: ../../mod/editblock.php:148 ../../mod/editlayout.php:146
-#: ../../mod/editpost.php:124
+#: ../../include/conversation.php:1224 ../../mod/editblock.php:148
+#: ../../mod/editlayout.php:146 ../../mod/editpost.php:124
+#: ../../mod/editwebpage.php:188
msgid "Set your location"
msgstr "Angi din plassering"
-#: ../../include/conversation.php:1215
+#: ../../include/conversation.php:1225
msgid "set location"
msgstr "angi plassering"
-#: ../../include/conversation.php:1216 ../../mod/editpost.php:126
+#: ../../include/conversation.php:1226 ../../mod/editpost.php:126
msgid "Toggle voting"
msgstr "Skru av eller pƄ stemming"
-#: ../../include/conversation.php:1219 ../../mod/editwebpage.php:189
-#: ../../mod/editblock.php:149 ../../mod/editlayout.php:147
-#: ../../mod/editpost.php:125
+#: ../../include/conversation.php:1229 ../../mod/editblock.php:149
+#: ../../mod/editlayout.php:147 ../../mod/editpost.php:125
+#: ../../mod/editwebpage.php:189
msgid "Clear browser location"
msgstr "Fjern nettleserplassering"
-#: ../../include/conversation.php:1220
+#: ../../include/conversation.php:1230
msgid "clear location"
msgstr "fjern plassering"
-#: ../../include/conversation.php:1222 ../../mod/editwebpage.php:205
-#: ../../mod/editblock.php:162 ../../mod/editpost.php:141
+#: ../../include/conversation.php:1232 ../../mod/editblock.php:162
+#: ../../mod/editpost.php:141 ../../mod/editwebpage.php:205
msgid "Title (optional)"
msgstr "Tittel (valgfri)"
-#: ../../include/conversation.php:1226 ../../mod/editwebpage.php:207
-#: ../../mod/editblock.php:165 ../../mod/editlayout.php:163
-#: ../../mod/editpost.php:143
+#: ../../include/conversation.php:1236 ../../mod/editblock.php:165
+#: ../../mod/editlayout.php:163 ../../mod/editpost.php:143
+#: ../../mod/editwebpage.php:207
msgid "Categories (optional, comma-separated list)"
msgstr "Kategorier (valgfri, kommaseparert liste)"
-#: ../../include/conversation.php:1228 ../../mod/editwebpage.php:191
-#: ../../mod/editblock.php:151 ../../mod/editlayout.php:149
-#: ../../mod/editpost.php:130 ../../mod/events.php:459
+#: ../../include/conversation.php:1238 ../../mod/editblock.php:151
+#: ../../mod/editlayout.php:149 ../../mod/editpost.php:130
+#: ../../mod/editwebpage.php:191 ../../mod/events.php:466
msgid "Permission settings"
msgstr "Tillatelser - innstillinger"
-#: ../../include/conversation.php:1229
+#: ../../include/conversation.php:1239
msgid "permissions"
msgstr "tillatelser"
-#: ../../include/conversation.php:1237 ../../mod/editwebpage.php:200
-#: ../../mod/editblock.php:159 ../../mod/editlayout.php:156
-#: ../../mod/editpost.php:138
+#: ../../include/conversation.php:1247 ../../mod/editblock.php:159
+#: ../../mod/editlayout.php:156 ../../mod/editpost.php:138
+#: ../../mod/editwebpage.php:200
msgid "Public post"
msgstr "Offentlig innlegg"
-#: ../../include/conversation.php:1239 ../../mod/editwebpage.php:208
-#: ../../mod/editblock.php:166 ../../mod/editlayout.php:164
-#: ../../mod/editpost.php:144
+#: ../../include/conversation.php:1249 ../../mod/editblock.php:166
+#: ../../mod/editlayout.php:164 ../../mod/editpost.php:144
+#: ../../mod/editwebpage.php:208
msgid "Example: bob@example.com, mary@example.com"
msgstr "Eksempel: ola@eksempel.no, kari@eksempel.no"
-#: ../../include/conversation.php:1252 ../../mod/editwebpage.php:217
-#: ../../mod/editblock.php:176 ../../mod/editlayout.php:173
-#: ../../mod/editpost.php:155 ../../mod/mail.php:253 ../../mod/mail.php:383
+#: ../../include/conversation.php:1262 ../../mod/editblock.php:176
+#: ../../mod/editlayout.php:173 ../../mod/editpost.php:155
+#: ../../mod/editwebpage.php:217 ../../mod/mail.php:253 ../../mod/mail.php:383
msgid "Set expiration date"
msgstr "Angi utlĆøpsdato"
-#: ../../include/conversation.php:1255
+#: ../../include/conversation.php:1265
msgid "Set publish date"
msgstr "Angi publiseringsdato"
-#: ../../include/conversation.php:1257 ../../include/ItemObject.php:709
+#: ../../include/conversation.php:1267 ../../include/ItemObject.php:715
#: ../../mod/editpost.php:157 ../../mod/mail.php:255 ../../mod/mail.php:385
msgid "Encrypt text"
msgstr "Krypter tekst"
-#: ../../include/conversation.php:1259 ../../mod/editpost.php:159
+#: ../../include/conversation.php:1269 ../../mod/editpost.php:159
msgid "OK"
msgstr "OK"
-#: ../../include/conversation.php:1260 ../../mod/fbrowser.php:77
-#: ../../mod/fbrowser.php:112 ../../mod/tagrm.php:11 ../../mod/tagrm.php:134
-#: ../../mod/settings.php:587 ../../mod/settings.php:613
-#: ../../mod/editpost.php:160
+#: ../../include/conversation.php:1270 ../../mod/editpost.php:160
+#: ../../mod/fbrowser.php:77 ../../mod/fbrowser.php:112
+#: ../../mod/settings.php:598 ../../mod/settings.php:624
+#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:134
msgid "Cancel"
msgstr "Avbryt"
-#: ../../include/conversation.php:1503
+#: ../../include/conversation.php:1513
msgid "Discover"
msgstr "Oppdage"
-#: ../../include/conversation.php:1506
+#: ../../include/conversation.php:1516
msgid "Imported public streams"
msgstr "Importerte offentlige strĆømmer"
-#: ../../include/conversation.php:1511
+#: ../../include/conversation.php:1521
msgid "Commented Order"
msgstr "Kommentert"
-#: ../../include/conversation.php:1514
+#: ../../include/conversation.php:1524
msgid "Sort by Comment Date"
msgstr "Sorter etter kommentert dato"
-#: ../../include/conversation.php:1518
+#: ../../include/conversation.php:1528
msgid "Posted Order"
msgstr "Lagt inn"
-#: ../../include/conversation.php:1521
+#: ../../include/conversation.php:1531
msgid "Sort by Post Date"
msgstr "Sorter etter innleggsdato"
-#: ../../include/conversation.php:1529
+#: ../../include/conversation.php:1539
msgid "Posts that mention or involve you"
msgstr "Innlegg som nevner eller involverer deg"
-#: ../../include/conversation.php:1535 ../../mod/connections.php:72
+#: ../../include/conversation.php:1545 ../../mod/connections.php:72
#: ../../mod/connections.php:82 ../../mod/menu.php:112
msgid "New"
msgstr "Nye"
-#: ../../include/conversation.php:1538
+#: ../../include/conversation.php:1548
msgid "Activity Stream - by date"
msgstr "AktivitetsstrĆøm - etter dato"
-#: ../../include/conversation.php:1544
+#: ../../include/conversation.php:1554
msgid "Starred"
msgstr "Stjerne"
-#: ../../include/conversation.php:1547
+#: ../../include/conversation.php:1557
msgid "Favourite Posts"
msgstr "Favorittinnlegg"
-#: ../../include/conversation.php:1554
+#: ../../include/conversation.php:1564
msgid "Spam"
msgstr "SĆøppel"
-#: ../../include/conversation.php:1557
+#: ../../include/conversation.php:1567
msgid "Posts flagged as SPAM"
msgstr "Innlegg merket som SƘPPEL"
-#: ../../include/conversation.php:1601 ../../mod/admin.php:985
+#: ../../include/conversation.php:1620 ../../mod/admin.php:1157
msgid "Channel"
msgstr "Kanal"
-#: ../../include/conversation.php:1604
+#: ../../include/conversation.php:1623
msgid "Status Messages and Posts"
msgstr "Statusmeldinger og -innlegg"
-#: ../../include/conversation.php:1613
+#: ../../include/conversation.php:1632
msgid "About"
msgstr "Om"
-#: ../../include/conversation.php:1616
+#: ../../include/conversation.php:1635
msgid "Profile Details"
msgstr "Profildetaljer"
-#: ../../include/conversation.php:1622 ../../include/nav.php:92
-#: ../../include/apps.php:139 ../../mod/fbrowser.php:25
-msgid "Photos"
-msgstr "Bilder"
-
-#: ../../include/conversation.php:1632
+#: ../../include/conversation.php:1651
msgid "Files and Storage"
msgstr "Filer og lagring"
-#: ../../include/conversation.php:1642 ../../include/conversation.php:1645
+#: ../../include/conversation.php:1672 ../../include/conversation.php:1675
msgid "Chatrooms"
msgstr "Chatrom"
-#: ../../include/conversation.php:1655 ../../include/nav.php:103
-#: ../../include/apps.php:129
-msgid "Bookmarks"
-msgstr "Bokmerker"
-
-#: ../../include/conversation.php:1658
+#: ../../include/conversation.php:1688
msgid "Saved Bookmarks"
msgstr "Lagrede bokmerker"
-#: ../../include/conversation.php:1665 ../../include/nav.php:107
-#: ../../include/apps.php:136 ../../mod/webpages.php:178
-msgid "Webpages"
-msgstr "Websider"
-
-#: ../../include/conversation.php:1668
+#: ../../include/conversation.php:1698
msgid "Manage Webpages"
msgstr "HĆ„ndtere websider"
-#: ../../include/conversation.php:1697 ../../include/ItemObject.php:175
-#: ../../include/ItemObject.php:187 ../../mod/photos.php:1079
-#: ../../mod/photos.php:1091
+#: ../../include/conversation.php:1727 ../../include/ItemObject.php:175
+#: ../../include/ItemObject.php:187 ../../mod/photos.php:1093
+#: ../../mod/photos.php:1105
msgid "View all"
msgstr "Vis alle"
-#: ../../include/conversation.php:1724 ../../include/ItemObject.php:184
-#: ../../mod/photos.php:1088
+#: ../../include/conversation.php:1754 ../../include/ItemObject.php:184
+#: ../../mod/photos.php:1102
msgctxt "noun"
msgid "Dislike"
msgid_plural "Dislikes"
msgstr[0] "Liker ikke"
msgstr[1] "Liker ikke"
-#: ../../include/conversation.php:1727
+#: ../../include/conversation.php:1757
msgctxt "noun"
msgid "Attending"
msgid_plural "Attending"
msgstr[0] "Deltar"
msgstr[1] "Deltar"
-#: ../../include/conversation.php:1730
+#: ../../include/conversation.php:1760
msgctxt "noun"
msgid "Not Attending"
msgid_plural "Not Attending"
msgstr[0] "Deltar ikke"
msgstr[1] "Deltar ikke"
-#: ../../include/conversation.php:1733
+#: ../../include/conversation.php:1763
msgctxt "noun"
msgid "Undecided"
msgid_plural "Undecided"
msgstr[0] "Ikke bestemt"
msgstr[1] "Ikke bestemt"
-#: ../../include/conversation.php:1736
+#: ../../include/conversation.php:1766
msgctxt "noun"
msgid "Agree"
msgid_plural "Agrees"
msgstr[0] "Enig"
msgstr[1] "Enige"
-#: ../../include/conversation.php:1739
+#: ../../include/conversation.php:1769
msgctxt "noun"
msgid "Disagree"
msgid_plural "Disagrees"
msgstr[0] "Uenig"
msgstr[1] "Uenige"
-#: ../../include/conversation.php:1742
+#: ../../include/conversation.php:1772
msgctxt "noun"
msgid "Abstain"
msgid_plural "Abstains"
msgstr[0] "AvstƄr"
msgstr[1] "AvstƄr"
-#: ../../include/auth.php:132
-msgid "Logged out."
-msgstr "Logget ut."
-
-#: ../../include/auth.php:273
-msgid "Failed authentication"
-msgstr "Mislykket autentisering"
-
-#: ../../include/auth.php:287 ../../mod/openid.php:189
-msgid "Login failed."
-msgstr "Innlogging mislyktes."
-
-#: ../../include/contact_selectors.php:56
-msgid "Frequently"
-msgstr "Ofte"
-
-#: ../../include/contact_selectors.php:57
-msgid "Hourly"
-msgstr "Hver time"
-
-#: ../../include/contact_selectors.php:58
-msgid "Twice daily"
-msgstr "To ganger daglig"
-
-#: ../../include/contact_selectors.php:59
-msgid "Daily"
-msgstr "Daglig"
-
-#: ../../include/contact_selectors.php:60
-msgid "Weekly"
-msgstr "Ukentlig"
-
-#: ../../include/contact_selectors.php:61
-msgid "Monthly"
-msgstr "MĆ„nedlig"
-
-#: ../../include/contact_selectors.php:76
-msgid "Friendica"
-msgstr "Friendica"
-
-#: ../../include/contact_selectors.php:77
-msgid "OStatus"
-msgstr "OStatus"
-
-#: ../../include/contact_selectors.php:78
-msgid "RSS/Atom"
-msgstr "RSS/Atom"
-
-#: ../../include/contact_selectors.php:79 ../../mod/id.php:15
-#: ../../mod/id.php:16 ../../mod/admin.php:817 ../../mod/admin.php:826
-#: ../../boot.php:1490
-msgid "Email"
-msgstr "E-post"
-
-#: ../../include/contact_selectors.php:80
-msgid "Diaspora"
-msgstr "Diaspora"
-
-#: ../../include/contact_selectors.php:81
-msgid "Facebook"
-msgstr "Facebook"
-
-#: ../../include/contact_selectors.php:82
-msgid "Zot!"
-msgstr "Zot!"
-
-#: ../../include/contact_selectors.php:83
-msgid "LinkedIn"
-msgstr "LinkedIn"
-
-#: ../../include/contact_selectors.php:84
-msgid "XMPP/IM"
-msgstr "XMPP/IM"
-
-#: ../../include/contact_selectors.php:85
-msgid "MySpace"
-msgstr "MySpace"
-
-#: ../../include/bbcode.php:123 ../../include/bbcode.php:794
-#: ../../include/bbcode.php:797 ../../include/bbcode.php:802
-#: ../../include/bbcode.php:805 ../../include/bbcode.php:808
-#: ../../include/bbcode.php:811 ../../include/bbcode.php:816
-#: ../../include/bbcode.php:819 ../../include/bbcode.php:824
-#: ../../include/bbcode.php:827 ../../include/bbcode.php:830
-#: ../../include/bbcode.php:833
-msgid "Image/photo"
-msgstr "Bilde/fotografi"
-
-#: ../../include/bbcode.php:162 ../../include/bbcode.php:844
-msgid "Encrypted content"
-msgstr "Kryptert innhold"
-
-#: ../../include/bbcode.php:179
-#, php-format
-msgid "Install %s element: "
-msgstr "Installer %s element:"
-
-#: ../../include/bbcode.php:183
-#, php-format
-msgid ""
-"This post contains an installable %s element, however you lack permissions "
-"to install it on this site."
-msgstr "Dette innlegget inneholder det installerbare elementet %s, men du mangler tillatelse til Ƅ installere det pƄ dette nettstedet."
-
-#: ../../include/bbcode.php:193 ../../mod/impel.php:37
-msgid "webpage"
-msgstr "nettside"
-
-#: ../../include/bbcode.php:196 ../../mod/impel.php:47
-msgid "layout"
-msgstr "layout"
-
-#: ../../include/bbcode.php:199 ../../mod/impel.php:42
-msgid "block"
-msgstr "byggekloss"
-
-#: ../../include/bbcode.php:202 ../../mod/impel.php:54
-msgid "menu"
-msgstr "meny"
-
-#: ../../include/bbcode.php:257
-#, php-format
-msgid "%1$s wrote the following %2$s %3$s"
-msgstr "%1$s skrev fĆølgende %2$s %3$s"
-
-#: ../../include/bbcode.php:259 ../../mod/tagger.php:51
-msgid "post"
-msgstr "innlegg"
-
-#: ../../include/bbcode.php:547
-msgid "Different viewers will see this text differently"
-msgstr "Denne teksten vil se forskjellig ut for ulike besĆøkende"
-
-#: ../../include/bbcode.php:755
-msgid "$1 spoiler"
-msgstr "$1 avslĆøring"
-
-#: ../../include/bbcode.php:782
-msgid "$1 wrote:"
-msgstr "$1 skrev:"
-
-#: ../../include/contact_widgets.php:14
-#, 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:19 ../../mod/admin.php:451
-msgid "Advanced"
-msgstr "Avansert"
-
-#: ../../include/contact_widgets.php:22
-msgid "Find Channels"
-msgstr "Finn kanaler"
-
-#: ../../include/contact_widgets.php:23
-msgid "Enter name or interest"
-msgstr "Skriv navn eller interesse"
-
-#: ../../include/contact_widgets.php:24
-msgid "Connect/Follow"
-msgstr "Forbindelse/FĆølg"
-
-#: ../../include/contact_widgets.php:25
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr "Eksempler: Ola Nordmann, fisking"
-
-#: ../../include/contact_widgets.php:26 ../../mod/directory.php:381
-#: ../../mod/directory.php:386 ../../mod/connections.php:266
-msgid "Find"
-msgstr "Finn"
-
-#: ../../include/contact_widgets.php:27 ../../mod/directory.php:385
-#: ../../mod/suggest.php:60
-msgid "Channel Suggestions"
-msgstr "Kanalforslag"
-
-#: ../../include/contact_widgets.php:29
-msgid "Random Profile"
-msgstr "Tilfeldig profil"
-
-#: ../../include/contact_widgets.php:30
-msgid "Invite Friends"
-msgstr "Inviter venner"
-
-#: ../../include/contact_widgets.php:32
-msgid "Advanced example: name=fred and country=iceland"
-msgstr "Avansert eksempel: navn=fred og land=island"
-
-#: ../../include/contact_widgets.php:128
-#, php-format
-msgid "%d connection in common"
-msgid_plural "%d connections in common"
-msgstr[0] "%d forbindelse felles"
-msgstr[1] "%d forbindelser felles"
-
-#: ../../include/contact_widgets.php:133
-msgid "show more"
-msgstr "vis mer"
-
-#: ../../include/enotify.php:57 ../../include/network.php:1608
-msgid "$Projectname Notification"
-msgstr "$Projectname varsling"
-
-#: ../../include/enotify.php:58 ../../include/network.php:1609
-msgid "$projectname"
-msgstr "$projectname"
-
-#: ../../include/enotify.php:60 ../../include/network.php:1611
-msgid "Thank You,"
-msgstr "Tusen takk,"
-
-#: ../../include/enotify.php:62 ../../include/network.php:1613
-#, php-format
-msgid "%s Administrator"
-msgstr "%s administrator"
-
-#: ../../include/enotify.php:96
-#, php-format
-msgid "%s <!item_type!>"
-msgstr "%s <!item_type!>"
-
-#: ../../include/enotify.php:100
-#, php-format
-msgid "[Hubzilla:Notify] New mail received at %s"
-msgstr "[Hubzilla:Notify] Ny melding mottatt hos %s"
-
-#: ../../include/enotify.php:102
-#, php-format
-msgid "%1$s, %2$s sent you a new private message at %3$s."
-msgstr "%1$s, %2$s sendte deg en ny privat melding pƄ %3$s."
-
-#: ../../include/enotify.php:103
-#, php-format
-msgid "%1$s sent you %2$s."
-msgstr "%1$s sendte deg %2$s."
-
-#: ../../include/enotify.php:103
-msgid "a private message"
-msgstr "en privat melding"
-
-#: ../../include/enotify.php:104
-#, php-format
-msgid "Please visit %s to view and/or reply to your private messages."
-msgstr "Vennligst besĆøk %s for Ć„ se og/eller svare pĆ„ dine private meldinger."
-
-#: ../../include/enotify.php:160
-#, php-format
-msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]"
-msgstr "%1$s, %2$s kommenterte pƄ [zrl=%3$s]a %4$s[/zrl]"
-
-#: ../../include/enotify.php:168
-#, php-format
-msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]"
-msgstr "%1$s, %2$s kommenterte pƄ [zrl=%3$s]%4$s's %5$s[/zrl]"
-
-#: ../../include/enotify.php:177
-#, php-format
-msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]"
-msgstr "%1$s, %2$s kommenterte pƄ [zrl=%3$s]din %4$s[/zrl]"
-
-#: ../../include/enotify.php:188
-#, php-format
-msgid "[Hubzilla:Notify] Comment to conversation #%1$d by %2$s"
-msgstr "[Hubzilla:Notify] Kommentar til samtale #%1$d av %2$s"
-
-#: ../../include/enotify.php:189
-#, php-format
-msgid "%1$s, %2$s commented on an item/conversation you have been following."
-msgstr "%1$s, %2$s kommenterte pĆ„ et element eller en samtale du fĆølger"
-
-#: ../../include/enotify.php:192 ../../include/enotify.php:207
-#: ../../include/enotify.php:233 ../../include/enotify.php:251
-#: ../../include/enotify.php:265
-#, php-format
-msgid "Please visit %s to view and/or reply to the conversation."
-msgstr "Vennligst besĆøk %s for Ć„ se og/eller svare i samtalen"
-
-#: ../../include/enotify.php:198
-#, php-format
-msgid "[Hubzilla:Notify] %s posted to your profile wall"
-msgstr "[Hubzilla:Notify] %s skrev et innlegg pƄ din profilvegg"
-
-#: ../../include/enotify.php:200
-#, php-format
-msgid "%1$s, %2$s posted to your profile wall at %3$s"
-msgstr "%1$s, %2$s skrev et innlegg pƄ din profilvegg pƄ %3$s"
-
-#: ../../include/enotify.php:202
-#, php-format
-msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]"
-msgstr "%1$s, %2$s skrev et innlegg pƄ [zrl=%3$s]din vegg[/zrl]"
-
-#: ../../include/enotify.php:226
-#, php-format
-msgid "[Hubzilla:Notify] %s tagged you"
-msgstr "[Hubzilla:Notify] %s merket deg"
-
-#: ../../include/enotify.php:227
-#, php-format
-msgid "%1$s, %2$s tagged you at %3$s"
-msgstr "%1$s, %2$s merket deg pƄ %3$s"
-
-#: ../../include/enotify.php:228
-#, php-format
-msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]."
-msgstr "%1$s, %2$s [zrl=%3$s]merket deg[/zrl]."
-
-#: ../../include/enotify.php:240
-#, php-format
-msgid "[Hubzilla:Notify] %1$s poked you"
-msgstr "[Hubzilla:Notify] %1$s prikket deg"
-
-#: ../../include/enotify.php:241
-#, php-format
-msgid "%1$s, %2$s poked you at %3$s"
-msgstr "%1$s, %2$s dyttet deg pƄ %3$s"
-
-#: ../../include/enotify.php:242
-#, php-format
-msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]."
-msgstr "%1$s, %2$s [zrl=%2$s]dyttet deg[/zrl]."
-
-#: ../../include/enotify.php:258
-#, php-format
-msgid "[Hubzilla:Notify] %s tagged your post"
-msgstr "[Hubzilla:Notify] %s merket ditt innlegg"
-
-#: ../../include/enotify.php:259
-#, php-format
-msgid "%1$s, %2$s tagged your post at %3$s"
-msgstr "%1$s, %2$s merket ditt innlegg pƄ %3$s"
-
-#: ../../include/enotify.php:260
-#, php-format
-msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]"
-msgstr "%1$s, %2$s merket [zrl=%3$s]ditt innlegg[/zrl]"
-
-#: ../../include/enotify.php:272
-msgid "[Hubzilla:Notify] Introduction received"
-msgstr "[Hubzilla:Notify] Introduksjon mottatt"
-
-#: ../../include/enotify.php:273
-#, php-format
-msgid "%1$s, you've received an new connection request from '%2$s' at %3$s"
-msgstr "%1$s, du har mottatt en ny forespĆørsel om forbindelse fra '%2$s' hos %3$s"
-
-#: ../../include/enotify.php:274
-#, php-format
-msgid ""
-"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s."
-msgstr "%1$s, du mottok [zrl=%2$s]en ny forespĆørsel om forbindelse[/zrl] fra %3$s."
-
-#: ../../include/enotify.php:278 ../../include/enotify.php:297
-#, php-format
-msgid "You may visit their profile at %s"
-msgstr "Du kan besĆøke profilen deres pĆ„ %s"
-
-#: ../../include/enotify.php:280
-#, php-format
-msgid "Please visit %s to approve or reject the connection request."
-msgstr "Vennligst besĆøk %s for Ć„ godkjenne eller avslĆ„ forespĆørselen om forbindelse."
-
-#: ../../include/enotify.php:287
-msgid "[Hubzilla:Notify] Friend suggestion received"
-msgstr "[Hubzilla:Notify] Venneforslag mottatt"
-
-#: ../../include/enotify.php:288
-#, php-format
-msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s"
-msgstr "%1$s, du har mottatt en venneforespĆørsel fra '%2$s' hos %3$s"
-
-#: ../../include/enotify.php:289
-#, php-format
-msgid ""
-"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from "
-"%4$s."
-msgstr "%1$s, du har mottatt [zrl=%2$s]et venneforslaget[/zrl] angƄende %3$s fra %4$s. "
-
-#: ../../include/enotify.php:295
-msgid "Name:"
-msgstr "Navn:"
-
-#: ../../include/enotify.php:296
-msgid "Photo:"
-msgstr "Bilde:"
-
-#: ../../include/enotify.php:299
-#, php-format
-msgid "Please visit %s to approve or reject the suggestion."
-msgstr "Vennligst besĆøk %s for Ć„ godkjenne eller avslĆ„ dette forslaget."
-
-#: ../../include/enotify.php:514
-msgid "[Hubzilla:Notify]"
-msgstr "[Hubzilla:Notify]"
-
-#: ../../include/follow.php:28
-msgid "Channel is blocked on this site."
-msgstr "Kanalen er blokkert pƄ dette nettstedet."
-
-#: ../../include/follow.php:33
-msgid "Channel location missing."
-msgstr "Kanalplassering mangler."
-
-#: ../../include/follow.php:82
-msgid "Response from remote channel was incomplete."
-msgstr "Svaret fra den andre kanalen var ikke komplett."
-
-#: ../../include/follow.php:99
-msgid "Channel was deleted and no longer exists."
-msgstr "Kanalen er slettet og finnes ikke lenger."
-
-#: ../../include/follow.php:152 ../../include/follow.php:181
-msgid "Protocol disabled."
-msgstr "Protokollen er avskrudd."
-
-#: ../../include/follow.php:171
-msgid "Channel discovery failed."
-msgstr "Kanaloppdagelse mislyktes."
-
-#: ../../include/follow.php:197
-msgid "local account not found."
-msgstr "lokal konto ble ikke funnet."
-
-#: ../../include/follow.php:221
-msgid "Cannot connect to yourself."
-msgstr "Kan ikke lage forbindelse med deg selv."
-
-#: ../../include/oembed.php:213
-msgid "Embedded content"
-msgstr "Innebygget innhold"
-
-#: ../../include/oembed.php:222
-msgid "Embedding disabled"
-msgstr "Innbygging avskrudd"
-
-#: ../../include/message.php:19
-msgid "No recipient provided."
-msgstr "Ingen mottaker angitt."
-
-#: ../../include/message.php:24
-msgid "[no subject]"
-msgstr "[ikke noe emne]"
-
-#: ../../include/message.php:44
-msgid "Unable to determine sender."
-msgstr "Kan ikke avgjĆøre avsender."
-
-#: ../../include/message.php:219
-msgid "Stored post could not be verified."
-msgstr "Lagret innlegg kunne ikke bekreftes."
-
-#: ../../include/nav.php:82 ../../include/nav.php:114 ../../boot.php:1487
-msgid "Logout"
-msgstr "Logg ut"
-
-#: ../../include/nav.php:82 ../../include/nav.php:114
-msgid "End this session"
-msgstr "Avslutt denne Ćøkten"
-
-#: ../../include/nav.php:85 ../../include/nav.php:145
-msgid "Home"
-msgstr "Hjem"
-
-#: ../../include/nav.php:85
-msgid "Your posts and conversations"
-msgstr "Dine innlegg og samtaler"
-
-#: ../../include/nav.php:86
-msgid "Your profile page"
-msgstr "Din profilside"
-
-#: ../../include/nav.php:88
-msgid "Edit Profiles"
-msgstr "Endre profiler"
-
-#: ../../include/nav.php:88
-msgid "Manage/Edit profiles"
-msgstr "HĆ„ndter/endre profiler"
-
-#: ../../include/nav.php:90
-msgid "Edit your profile"
-msgstr "Endre din profil"
-
-#: ../../include/nav.php:92
-msgid "Your photos"
-msgstr "Dine bilder"
-
-#: ../../include/nav.php:93
-msgid "Your files"
-msgstr "Dine filer"
-
-#: ../../include/nav.php:97 ../../include/apps.php:146
-msgid "Chat"
-msgstr "Chat"
-
-#: ../../include/nav.php:97
-msgid "Your chatrooms"
-msgstr "Dine chatterom"
-
-#: ../../include/nav.php:103
-msgid "Your bookmarks"
-msgstr "Dine bokmerker"
-
-#: ../../include/nav.php:107
-msgid "Your webpages"
-msgstr "Dine websider"
-
-#: ../../include/nav.php:111 ../../include/apps.php:131 ../../boot.php:1488
-msgid "Login"
-msgstr "Logg inn"
-
-#: ../../include/nav.php:111
-msgid "Sign in"
-msgstr "Logg pƄ"
-
-#: ../../include/nav.php:128
-#, php-format
-msgid "%s - click to logout"
-msgstr "%s - klikk for Ć„ logge ut"
-
-#: ../../include/nav.php:131
-msgid "Remote authentication"
-msgstr "Fjernautentisering"
-
-#: ../../include/nav.php:131
-msgid "Click to authenticate to your home hub"
-msgstr "Klikk for Ć„ godkjennes mot din hjemme-hub"
-
-#: ../../include/nav.php:145
-msgid "Home Page"
-msgstr "Hjemmeside"
-
-#: ../../include/nav.php:149 ../../mod/register.php:226 ../../boot.php:1470
-msgid "Register"
-msgstr "Registrer"
-
-#: ../../include/nav.php:149
-msgid "Create an account"
-msgstr "Lag en konto"
-
-#: ../../include/nav.php:154 ../../include/apps.php:142
-#: ../../mod/layouts.php:176 ../../mod/help.php:204 ../../mod/help.php:209
-msgid "Help"
-msgstr "Hjelp"
-
-#: ../../include/nav.php:154
-msgid "Help and documentation"
-msgstr "Hjelp og dokumentasjon"
-
-#: ../../include/nav.php:157
-msgid "Applications, utilities, links, games"
-msgstr "Programmer, verktĆøy, lenker, spill"
-
-#: ../../include/nav.php:159
-msgid "Search site @name, #tag, ?docs, content"
-msgstr "SĆøk nettstedet for @navn, #merkelapp, ?dokumentasjon, innhold"
-
-#: ../../include/nav.php:162 ../../include/apps.php:141
-msgid "Directory"
-msgstr "Katalog"
-
-#: ../../include/nav.php:162
-msgid "Channel Directory"
-msgstr "Kanalkatalog"
-
-#: ../../include/nav.php:174 ../../include/apps.php:133
-msgid "Grid"
-msgstr "Nett"
-
-#: ../../include/nav.php:174
-msgid "Your grid"
-msgstr "Ditt nett"
-
-#: ../../include/nav.php:175
-msgid "Mark all grid notifications seen"
-msgstr "Marker alle nettvarsler som sett"
-
-#: ../../include/nav.php:177 ../../include/apps.php:137
-msgid "Channel Home"
-msgstr "Kanalhjem"
-
-#: ../../include/nav.php:177
-msgid "Channel home"
-msgstr "Kanalhjem"
-
-#: ../../include/nav.php:178
-msgid "Mark all channel notifications seen"
-msgstr "Merk alle kanalvarsler som sett"
-
-#: ../../include/nav.php:181 ../../mod/connections.php:260
-msgid "Connections"
-msgstr "Forbindelser"
-
-#: ../../include/nav.php:184
-msgid "Notices"
-msgstr "Varsel"
-
-#: ../../include/nav.php:184
-msgid "Notifications"
-msgstr "Varsler"
-
-#: ../../include/nav.php:185
-msgid "See all notifications"
-msgstr "Se alle varsler"
-
-#: ../../include/nav.php:186 ../../mod/notifications.php:99
-msgid "Mark all system notifications seen"
-msgstr "Merk alle systemvarsler som sett"
-
-#: ../../include/nav.php:188 ../../include/apps.php:143
-msgid "Mail"
-msgstr "Melding"
-
-#: ../../include/nav.php:188
-msgid "Private mail"
-msgstr "Privat post"
-
-#: ../../include/nav.php:189
-msgid "See all private messages"
-msgstr "Se alle private meldinger"
-
-#: ../../include/nav.php:190
-msgid "Mark all private messages seen"
-msgstr "Merk alle private meldinger som sett"
-
-#: ../../include/nav.php:196 ../../include/apps.php:140
-msgid "Events"
-msgstr "Hendelser"
-
-#: ../../include/nav.php:196
-msgid "Event Calendar"
-msgstr "Kalender"
-
-#: ../../include/nav.php:197
-msgid "See all events"
-msgstr "Se alle hendelser"
-
-#: ../../include/nav.php:198
-msgid "Mark all events seen"
-msgstr "Merk alle hendelser som sett"
-
-#: ../../include/nav.php:200 ../../include/apps.php:132
-#: ../../mod/manage.php:160
-msgid "Channel Manager"
-msgstr "Kanalstyring"
-
-#: ../../include/nav.php:200
-msgid "Manage Your Channels"
-msgstr "HĆ„ndter dine kanaler"
-
-#: ../../include/nav.php:202
-msgid "Account/Channel Settings"
-msgstr "Konto-/kanal-innstillinger"
-
-#: ../../include/nav.php:210
-msgid "Site Setup and Configuration"
-msgstr "Nettstedsoppsett og -konfigurasjon"
-
-#: ../../include/nav.php:246
-msgid "@name, #tag, ?doc, content"
-msgstr "@navn, #merkelapp, ?dokumentasjon, innhold"
-
-#: ../../include/nav.php:247
-msgid "Please wait..."
-msgstr "Vennligst vent..."
-
-#: ../../include/security.php:381
-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/dir_fns.php:139
-msgid "Directory Options"
-msgstr "Kataloginnstillinger"
-
-#: ../../include/dir_fns.php:141
-msgid "Safe Mode"
-msgstr "Trygt modus"
-
-#: ../../include/dir_fns.php:141 ../../include/dir_fns.php:142
-#: ../../include/dir_fns.php:143 ../../mod/filestorage.php:151
-#: ../../mod/filestorage.php:159 ../../mod/removeme.php:60
-#: ../../mod/connedit.php:635 ../../mod/connedit.php:684 ../../mod/api.php:102
-#: ../../mod/admin.php:415 ../../mod/settings.php:577 ../../mod/photos.php:626
-#: ../../mod/menu.php:96 ../../mod/menu.php:153 ../../mod/events.php:447
-#: ../../mod/events.php:448 ../../mod/events.php:457 ../../mod/mitem.php:154
-#: ../../mod/mitem.php:155 ../../mod/mitem.php:228 ../../mod/mitem.php:229
-#: ../../view/theme/redbasic/php/config.php:104
-#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1492
-msgid "No"
-msgstr "Nei"
-
-#: ../../include/dir_fns.php:141 ../../include/dir_fns.php:142
-#: ../../include/dir_fns.php:143 ../../mod/filestorage.php:151
-#: ../../mod/filestorage.php:159 ../../mod/removeme.php:60
-#: ../../mod/api.php:101 ../../mod/admin.php:417 ../../mod/settings.php:577
-#: ../../mod/photos.php:626 ../../mod/menu.php:96 ../../mod/menu.php:153
-#: ../../mod/events.php:447 ../../mod/events.php:448 ../../mod/events.php:457
-#: ../../mod/mitem.php:154 ../../mod/mitem.php:155 ../../mod/mitem.php:228
-#: ../../mod/mitem.php:229 ../../view/theme/redbasic/php/config.php:104
-#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1492
-msgid "Yes"
-msgstr "Ja"
-
-#: ../../include/dir_fns.php:142
-msgid "Public Forums Only"
-msgstr "Bare offentlige forum"
-
-#: ../../include/dir_fns.php:143
-msgid "This Website Only"
-msgstr "Kun dette nettstedet"
-
-#: ../../include/group.php:26
-msgid ""
-"A deleted group with this name was revived. Existing item permissions "
-"<strong>may</strong> apply to this group and any future members. If this is "
-"not what you intended, please create another group with a different name."
-msgstr "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:232
-msgid "Add new connections to this collection (privacy group)"
-msgstr "Legg nye forbindelser til denne samlingen (personverngruppe)"
-
-#: ../../include/group.php:251 ../../mod/admin.php:826
-msgid "All Channels"
-msgstr "Alle kanaler"
-
-#: ../../include/group.php:273
-msgid "edit"
-msgstr "endre"
-
-#: ../../include/group.php:295
-msgid "Collections"
-msgstr "Samlinger"
-
-#: ../../include/group.php:296
-msgid "Edit collection"
-msgstr "Endre samling"
-
-#: ../../include/group.php:297
-msgid "Add new collection"
-msgstr "Legg til ny samling"
-
-#: ../../include/group.php:298
-msgid "Channels not in any collection"
-msgstr "Kanaler som ikke er i noen samling"
-
-#: ../../include/zot.php:676
-msgid "Invalid data packet"
-msgstr "Ugyldig datapakke"
-
-#: ../../include/zot.php:692
-msgid "Unable to verify channel signature"
-msgstr "Ikke i stand til Ć„ sjekke kanalsignaturen"
-
-#: ../../include/zot.php:2268
-#, php-format
-msgid "Unable to verify site signature for %s"
-msgstr "Ikke i stand til Ć„ bekrefte signaturen til %s"
-
-#: ../../include/zot.php:3584
-msgid "invalid target signature"
-msgstr "MĆ„lets signatur er ugyldig"
-
-#: ../../include/page_widgets.php:6
-msgid "New Page"
-msgstr "Ny side"
-
-#: ../../include/page_widgets.php:39 ../../mod/blocks.php:159
-#: ../../mod/webpages.php:187 ../../mod/layouts.php:188
-msgid "View"
-msgstr "Vis"
-
-#: ../../include/page_widgets.php:41 ../../mod/webpages.php:189
-msgid "Actions"
-msgstr "Handlinger"
-
-#: ../../include/page_widgets.php:42 ../../mod/webpages.php:190
-msgid "Page Link"
-msgstr "Sidelenke"
-
-#: ../../include/page_widgets.php:43
-msgid "Title"
-msgstr "Tittel"
-
-#: ../../include/page_widgets.php:44 ../../mod/blocks.php:150
-#: ../../mod/webpages.php:192 ../../mod/layouts.php:181 ../../mod/menu.php:110
-msgid "Created"
-msgstr "Laget"
-
-#: ../../include/page_widgets.php:45 ../../mod/blocks.php:151
-#: ../../mod/webpages.php:193 ../../mod/layouts.php:182 ../../mod/menu.php:111
-msgid "Edited"
-msgstr "Endret"
-
-#: ../../include/network.php:630
-msgid "view full size"
-msgstr "vis full stĆørrelse"
-
-#: ../../include/network.php:1655 ../../include/account.php:316
-#: ../../include/account.php:343 ../../include/account.php:403
-msgid "Administrator"
-msgstr "Administrator"
-
-#: ../../include/network.php:1669
-msgid "No Subject"
-msgstr "Uten emne"
-
-#: ../../include/dba/dba_driver.php:141
-#, php-format
-msgid "Cannot locate DNS info for database server '%s'"
-msgstr "Kan ikke finne DNS-informasjon om databasetjener '%s'"
-
#: ../../include/ItemObject.php:130
msgid "Save to Folder"
msgstr "Lagre i mappe"
@@ -3886,11 +3981,11 @@ msgstr "stjernemerket"
msgid "Add Tag"
msgstr "Legg til merkelapp"
-#: ../../include/ItemObject.php:254 ../../mod/photos.php:1023
+#: ../../include/ItemObject.php:254 ../../mod/photos.php:1037
msgid "I like this (toggle)"
msgstr "Jeg liker dette (skru av og pƄ)"
-#: ../../include/ItemObject.php:255 ../../mod/photos.php:1024
+#: ../../include/ItemObject.php:255 ../../mod/photos.php:1038
msgid "I don't like this (toggle)"
msgstr "Jeg liker ikke dette (skru av og pƄ)"
@@ -3946,91 +4041,33 @@ msgstr "Legg til i kalender"
msgid "Mark all seen"
msgstr "Merk alle som sett"
-#: ../../include/ItemObject.php:378 ../../mod/photos.php:1209
+#: ../../include/ItemObject.php:378 ../../mod/photos.php:1223
msgctxt "noun"
msgid "Likes"
msgstr "Liker"
-#: ../../include/ItemObject.php:379 ../../mod/photos.php:1210
+#: ../../include/ItemObject.php:379 ../../mod/photos.php:1224
msgctxt "noun"
msgid "Dislikes"
msgstr "Liker ikke"
-#: ../../include/ItemObject.php:694 ../../mod/photos.php:1042
-#: ../../mod/photos.php:1160
+#: ../../include/ItemObject.php:700 ../../mod/photos.php:1056
+#: ../../mod/photos.php:1174
msgid "This is you"
msgstr "Dette er deg"
-#: ../../include/ItemObject.php:703
+#: ../../include/ItemObject.php:709
msgid "Image"
msgstr "Bilde"
-#: ../../include/ItemObject.php:704
+#: ../../include/ItemObject.php:710
msgid "Insert Link"
msgstr "Sett inn lenke"
-#: ../../include/ItemObject.php:705
+#: ../../include/ItemObject.php:711
msgid "Video"
msgstr "Video"
-#: ../../include/apps.php:128
-msgid "Site Admin"
-msgstr "Nettstedsadministrator"
-
-#: ../../include/apps.php:130
-msgid "Address Book"
-msgstr "Adressebok"
-
-#: ../../include/apps.php:144 ../../mod/mood.php:131
-msgid "Mood"
-msgstr "Stemning"
-
-#: ../../include/apps.php:148
-msgid "Probe"
-msgstr "UndersĆøk"
-
-#: ../../include/apps.php:149
-msgid "Suggest"
-msgstr "ForreslƄ"
-
-#: ../../include/apps.php:150
-msgid "Random Channel"
-msgstr "Tilfeldig kanal"
-
-#: ../../include/apps.php:151
-msgid "Invite"
-msgstr "Inviter"
-
-#: ../../include/apps.php:152
-msgid "Features"
-msgstr "Funksjoner"
-
-#: ../../include/apps.php:153 ../../mod/id.php:28
-msgid "Language"
-msgstr "SprƄk"
-
-#: ../../include/apps.php:154
-msgid "Post"
-msgstr "Innlegg"
-
-#: ../../include/apps.php:155 ../../mod/id.php:17 ../../mod/id.php:18
-#: ../../mod/id.php:19
-msgid "Profile Photo"
-msgstr "Profilbilde"
-
-#: ../../include/apps.php:252 ../../mod/settings.php:84
-#: ../../mod/settings.php:612
-msgid "Update"
-msgstr "Oppdater"
-
-#: ../../include/apps.php:252
-msgid "Install"
-msgstr "Installer"
-
-#: ../../include/apps.php:257
-msgid "Purchase"
-msgstr "KjĆøp"
-
#: ../../include/permissions.php:26
msgid "Can view my normal stream and posts"
msgstr "Kan se min normale strĆøm og innlegg"
@@ -4116,247 +4153,337 @@ msgstr "Ekstremt avansert. La dette vƦre med mindre du vet hva du gjĆør"
msgid "Social Networking"
msgstr "Sosialt nettverk"
-#: ../../include/permissions.php:867 ../../include/permissions.php:868
-#: ../../include/permissions.php:869
-msgid "Mostly Public"
-msgstr "Ganske offentlig"
+#: ../../include/permissions.php:867
+msgid "Social - Mostly Public"
+msgstr "Sosial - ganske offentlig"
-#: ../../include/permissions.php:867 ../../include/permissions.php:868
-#: ../../include/permissions.php:869
-msgid "Restricted"
-msgstr "Begrenset"
+#: ../../include/permissions.php:867
+msgid "Social - Restricted"
+msgstr "Sosial - begrenset"
-#: ../../include/permissions.php:867 ../../include/permissions.php:868
-msgid "Private"
-msgstr "Privat"
+#: ../../include/permissions.php:867
+msgid "Social - Private"
+msgstr "Sosial - privat"
#: ../../include/permissions.php:868
msgid "Community Forum"
msgstr "Forum for fellesskap"
+#: ../../include/permissions.php:868
+msgid "Forum - Mostly Public"
+msgstr "Forum - ganske offentlig"
+
+#: ../../include/permissions.php:868
+msgid "Forum - Restricted"
+msgstr "Forum - begrenset"
+
+#: ../../include/permissions.php:868
+msgid "Forum - Private"
+msgstr "Forum - privat"
+
#: ../../include/permissions.php:869
msgid "Feed Republish"
msgstr "Republisering av strĆømmet innhold"
+#: ../../include/permissions.php:869
+msgid "Feed - Mostly Public"
+msgstr "StrĆøm - ganske offentlig"
+
+#: ../../include/permissions.php:869
+msgid "Feed - Restricted"
+msgstr "StrĆøm - begrenset"
+
#: ../../include/permissions.php:870
msgid "Special Purpose"
msgstr "Spesiell bruk"
#: ../../include/permissions.php:870
-msgid "Celebrity/Soapbox"
-msgstr "Kjendis/Talerstol"
+msgid "Special - Celebrity/Soapbox"
+msgstr "Spesiell - kjendis/talerstol"
#: ../../include/permissions.php:870
-msgid "Group Repository"
-msgstr "Gruppelager"
+msgid "Special - Group Repository"
+msgstr "Spesiell - gruppelager"
#: ../../include/permissions.php:871
msgid "Custom/Expert Mode"
msgstr "Tilpasset/Ekspertmodus"
-#: ../../include/photo/photo_driver.php:719 ../../mod/profile_photo.php:147
-#: ../../mod/profile_photo.php:239 ../../mod/profile_photo.php:379
-#: ../../mod/photos.php:94 ../../mod/photos.php:699
-msgid "Profile Photos"
-msgstr "Profilbilder"
+#: ../../include/items.php:423 ../../index.php:179 ../../mod/dreport.php:6
+#: ../../mod/dreport.php:45 ../../mod/group.php:68
+#: ../../mod/import_items.php:108 ../../mod/like.php:280
+#: ../../mod/profperm.php:23 ../../mod/subthread.php:58
+msgid "Permission denied"
+msgstr "Tillatelse avvist"
-#: ../../include/account.php:27
-msgid "Not a valid email address"
-msgstr "Ikke en gyldig e-postadresse"
+#: ../../include/items.php:1138 ../../include/items.php:1184
+msgid "(Unknown)"
+msgstr "(Ukjent)"
-#: ../../include/account.php:29
-msgid "Your email domain is not among those allowed on this site"
-msgstr "Ditt e-postdomene er ikke blant de som er tillatt pƄ dette stedet"
+#: ../../include/items.php:1384
+msgid "Visible to anybody on the internet."
+msgstr "Synlig for enhver pƄ Internett."
-#: ../../include/account.php:35
-msgid "Your email address is already registered at this site."
-msgstr "Din e-postadresse er allerede registrert pƄ dette nettstedet."
+#: ../../include/items.php:1386
+msgid "Visible to you only."
+msgstr "Synlig bare for deg."
-#: ../../include/account.php:67
-msgid "An invitation is required."
-msgstr "En invitasjon er pƄkrevd."
+#: ../../include/items.php:1388
+msgid "Visible to anybody in this network."
+msgstr "Synlig for enhver i dette nettverket."
-#: ../../include/account.php:71
-msgid "Invitation could not be verified."
-msgstr "Invitasjon kunne ikke bekreftes."
+#: ../../include/items.php:1390
+msgid "Visible to anybody authenticated."
+msgstr "Synlig for enhver som er autentisert."
-#: ../../include/account.php:121
-msgid "Please enter the required information."
-msgstr "Vennligst skriv inn nĆødvendig informasjon."
+#: ../../include/items.php:1392
+#, php-format
+msgid "Visible to anybody on %s."
+msgstr "Synlig for alle pƄ %s."
-#: ../../include/account.php:188
-msgid "Failed to store account information."
-msgstr "Mislyktes med Ć„ lagre kontoinformasjon."
+#: ../../include/items.php:1394
+msgid "Visible to all connections."
+msgstr "Synlig for alle forbindelser."
+
+#: ../../include/items.php:1396
+msgid "Visible to approved connections."
+msgstr "Synlig for godkjente forbindelser."
+
+#: ../../include/items.php:1398
+msgid "Visible to specific connections."
+msgstr "Synlig for spesifikke forbindelser."
-#: ../../include/account.php:248
+#: ../../include/items.php:4496 ../../mod/display.php:36
+#: ../../mod/filestorage.php:27 ../../mod/admin.php:141
+#: ../../mod/admin.php:1189 ../../mod/admin.php:1434 ../../mod/thing.php:85
+#: ../../mod/viewsrc.php:20
+msgid "Item not found."
+msgstr "Elementet ble ikke funnet."
+
+#: ../../include/items.php:5032 ../../mod/group.php:38 ../../mod/group.php:137
+msgid "Privacy group not found."
+msgstr "Personverngruppen ble ikke funnet"
+
+#: ../../include/items.php:5048
+msgid "Privacy group is empty."
+msgstr "Personverngruppen er tom."
+
+#: ../../include/items.php:5055
#, php-format
-msgid "Registration confirmation for %s"
-msgstr "Registreringsbekreftelse for %s"
+msgid "Privacy group: %s"
+msgstr "Personverngruppe: %s"
-#: ../../include/account.php:314
+#: ../../include/items.php:5065 ../../mod/connedit.php:694
#, php-format
-msgid "Registration request at %s"
-msgstr "RegistreringsforespĆørsel hos %s"
+msgid "Connection: %s"
+msgstr "Forbindelse: %s"
-#: ../../include/account.php:338
-msgid "your registration password"
-msgstr "ditt registreringspassord"
+#: ../../include/items.php:5067
+msgid "Connection not found."
+msgstr "Forbindelsen ble ikke funnet."
+
+#: ../../include/items.php:5493 ../../mod/cover_photo.php:229
+msgid "female"
+msgstr "kvinne"
-#: ../../include/account.php:341 ../../include/account.php:401
+#: ../../include/items.php:5494 ../../mod/cover_photo.php:230
#, php-format
-msgid "Registration details for %s"
-msgstr "Registreringsdetaljer for %s"
+msgid "%1$s updated her %2$s"
+msgstr "%1$s oppdaterte %2$s sitt"
-#: ../../include/account.php:410
-msgid "Account approved."
-msgstr "Konto godkjent."
+#: ../../include/items.php:5495 ../../mod/cover_photo.php:231
+msgid "male"
+msgstr "mann"
-#: ../../include/account.php:449
+#: ../../include/items.php:5496 ../../mod/cover_photo.php:232
#, php-format
-msgid "Registration revoked for %s"
-msgstr "Registrering trukket tilbake for %s"
+msgid "%1$s updated his %2$s"
+msgstr "%1$s oppdaterte %2$s sitt"
-#: ../../include/account.php:494
-msgid "Account verified. Please login."
-msgstr "Konto bekreftet. Vennligst logg inn."
+#: ../../include/items.php:5498 ../../mod/cover_photo.php:234
+#, php-format
+msgid "%1$s updated their %2$s"
+msgstr "%1$s oppdaterte %2$s deres"
-#: ../../include/account.php:707 ../../include/account.php:709
-msgid "Click here to upgrade."
-msgstr "Klikk her for Ć„ oppgradere."
+#: ../../include/items.php:5500
+msgid "profile photo"
+msgstr "profilbilde"
-#: ../../include/account.php:715
-msgid "This action exceeds the limits set by your subscription plan."
-msgstr "Denne handlingen gƄr utenfor grensene satt i din abonnementsplan."
+#: ../../mod/achievements.php:34
+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"
-#: ../../include/account.php:720
-msgid "This action is not available under your subscription plan."
-msgstr "Denne handlingen er ikke tilgjengelig i din abonnementsplan."
+#: ../../mod/acl.php:222
+msgid "network"
+msgstr "nettverk"
-#: ../../mod/filestorage.php:82
-msgid "Permission Denied."
-msgstr "Tillatelse avvist."
+#: ../../mod/acl.php:232
+msgid "RSS"
+msgstr "RSS"
-#: ../../mod/filestorage.php:98
-msgid "File not found."
-msgstr "Filen ble ikke funnet."
+#: ../../mod/api.php:74 ../../mod/api.php:98
+msgid "Authorize application connection"
+msgstr "Tillat programforbindelse"
-#: ../../mod/filestorage.php:141
-msgid "Edit file permissions"
-msgstr "Endre filtillatelser"
+#: ../../mod/api.php:75
+msgid "Return to your app and insert this Securty Code:"
+msgstr "GĆ„ tilbake til din app og legg inn denne sikkerhetskoden:"
-#: ../../mod/filestorage.php:150
-msgid "Set/edit permissions"
-msgstr "Angi/endre tillatelser"
+#: ../../mod/api.php:85
+msgid "Please login to continue."
+msgstr "Vennligst logg inn for Ć„ fortsette."
-#: ../../mod/filestorage.php:151
-msgid "Include all files and sub folders"
-msgstr "Inkluder alle filer og undermapper"
+#: ../../mod/api.php:100
+msgid ""
+"Do you want to authorize this application to access your posts and contacts,"
+" and/or create new posts for you?"
+msgstr "Vil du tillate dette programmet Ƅ fƄ tilgang til dine innlegg og kontakter, og/eller lage nye innlegg for deg?"
-#: ../../mod/filestorage.php:152
-msgid "Return to file list"
-msgstr "GĆ„ tilbake til filoversikten"
+#: ../../mod/appman.php:28 ../../mod/appman.php:44
+msgid "App installed."
+msgstr "App installert."
-#: ../../mod/filestorage.php:154
-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"
+#: ../../mod/appman.php:37
+msgid "Malformed app."
+msgstr "Feil oppsett for app-en."
-#: ../../mod/filestorage.php:155
-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"
+#: ../../mod/appman.php:80
+msgid "Embed code"
+msgstr "Innbyggingskode"
-#: ../../mod/filestorage.php:157
-msgid "Share this file"
-msgstr "Del denne filen"
+#: ../../mod/appman.php:86
+msgid "Edit App"
+msgstr "Endre app"
-#: ../../mod/filestorage.php:158
-msgid "Show URL to this file"
-msgstr "Vis URLen til denne filen"
+#: ../../mod/appman.php:86
+msgid "Create App"
+msgstr "Lag app"
-#: ../../mod/filestorage.php:159
-msgid "Notify your contacts about this file"
-msgstr "Varsle dine kontakter om denne filen"
+#: ../../mod/appman.php:91
+msgid "Name of app"
+msgstr "Navn pƄ app"
-#: ../../mod/group.php:20
-msgid "Collection created."
-msgstr "Samling opprettet."
+#: ../../mod/appman.php:92
+msgid "Location (URL) of app"
+msgstr "Plassering (URL) til app"
-#: ../../mod/group.php:26
-msgid "Could not create collection."
-msgstr "Kunne ikke lage samling."
+#: ../../mod/appman.php:93 ../../mod/events.php:457 ../../mod/rbmark.php:97
+msgid "Description"
+msgstr "Beskrivelse"
-#: ../../mod/group.php:54
-msgid "Collection updated."
-msgstr "Samlingen er oppdatert."
+#: ../../mod/appman.php:94
+msgid "Photo icon URL"
+msgstr "Bildeikon URL"
-#: ../../mod/group.php:86
-msgid "Create a collection of channels."
-msgstr "Lag en samling med kanaler."
+#: ../../mod/appman.php:94
+msgid "80 x 80 pixels - optional"
+msgstr "80 x80 pixler - valgfritt"
-#: ../../mod/group.php:87 ../../mod/group.php:180
-msgid "Collection Name: "
-msgstr "Navn pƄ samling:"
+#: ../../mod/appman.php:95
+msgid "Version ID"
+msgstr "Versjons-ID"
-#: ../../mod/group.php:89 ../../mod/group.php:183
-msgid "Members are visible to other channels"
-msgstr "Medlemmer er synlig for andre kanaler"
+#: ../../mod/appman.php:96
+msgid "Price of app"
+msgstr "Pris pƄ app"
-#: ../../mod/group.php:107
-msgid "Collection removed."
-msgstr "Samling fjernet."
+#: ../../mod/appman.php:97
+msgid "Location (URL) to purchase app"
+msgstr "Plassering (URL) for Ć„ kjĆøpe app"
-#: ../../mod/group.php:109
-msgid "Unable to remove collection."
-msgstr "Ikke i stand til Ć„ fjerne samlingen."
+#: ../../mod/attach.php:9
+msgid "Item not available."
+msgstr "Elementet er ikke tilgjengelig."
-#: ../../mod/group.php:179
-msgid "Collection Editor"
-msgstr "Samlingsbehandler"
+#: ../../mod/block.php:27 ../../mod/page.php:36
+msgid "Invalid item."
+msgstr "Ugyldig element."
-#: ../../mod/group.php:193
-msgid "Members"
-msgstr "Medlemmer"
+#: ../../mod/block.php:39 ../../mod/page.php:52 ../../mod/wall_upload.php:29
+#: ../../mod/cal.php:56
+msgid "Channel not found."
+msgstr "Kanalen ble ikke funnet."
-#: ../../mod/group.php:195
-msgid "All Connected Channels"
-msgstr "Alle tilkoblede kanaler"
+#: ../../mod/blocks.php:95 ../../mod/blocks.php:148
+msgid "Block Name"
+msgstr "Byggeklossens navn"
-#: ../../mod/group.php:227
-msgid "Click on a channel to add or remove."
-msgstr "Klikk pƄ en kanal for Ƅ legge til eller fjerne."
+#: ../../mod/blocks.php:149
+msgid "Block Title"
+msgstr "Byggeklossens tittel"
-#: ../../mod/item.php:174
-msgid "Unable to locate original post."
-msgstr "Ikke i stand til Ć„ finne opprinnelig innlegg."
+#: ../../mod/bookmarks.php:40
+msgid "Bookmark added"
+msgstr "Bokmerke lagt til"
-#: ../../mod/item.php:418
-msgid "Empty post discarded."
-msgstr "Tomt innlegg forkastet."
+#: ../../mod/bookmarks.php:62
+msgid "My Bookmarks"
+msgstr "Mine bokmerker"
-#: ../../mod/item.php:458
-msgid "Executable content type not permitted to this channel."
-msgstr "KjĆørbar innholdstype er ikke tillat for denne kanalen."
+#: ../../mod/bookmarks.php:73
+msgid "My Connections Bookmarks"
+msgstr "Mine forbindelsers bokmerker"
-#: ../../mod/item.php:823
-msgid "Duplicate post suppressed."
-msgstr "Duplikat av innlegg forhindret."
+#: ../../mod/channel.php:25 ../../mod/chat.php:19
+msgid "You must be logged in to see this page."
+msgstr "Du mƄ vƦre innloegget for Ƅ se denne siden."
-#: ../../mod/item.php:954
-msgid "System error. Post not saved."
-msgstr "Systemfeil. Innlegg ble ikke lagret."
+#: ../../mod/channel.php:97
+msgid "Insufficient permissions. Request redirected to profile page."
+msgstr "Utilstrekkelig tillatelse. ForespĆørsel omdirigert til profilsiden."
-#: ../../mod/item.php:1221
-msgid "Unable to obtain post information from database."
-msgstr "Ikke i stand til Ƅ fƄ tak i informasjon om innlegg fra databasen."
+#: ../../mod/channel.php:131 ../../mod/network.php:169 ../../mod/rpost.php:114
+msgid "Public"
+msgstr "Offentlig"
-#: ../../mod/item.php:1228
-#, 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."
+#: ../../mod/chat.php:174
+msgid "Room not found"
+msgstr "Rommet ble ikke funnet"
+
+#: ../../mod/chat.php:185
+msgid "Leave Room"
+msgstr "Forlat rom"
+
+#: ../../mod/chat.php:186
+msgid "Delete This Room"
+msgstr "Slett dette rommet"
-#: ../../mod/item.php:1235
+#: ../../mod/chat.php:187
+msgid "I am away right now"
+msgstr "Jeg er borte akkurat nƄ"
+
+#: ../../mod/chat.php:188
+msgid "I am online"
+msgstr "Jeg er online"
+
+#: ../../mod/chat.php:190
+msgid "Bookmark this room"
+msgstr "Bokmerk dette rommet"
+
+#: ../../mod/chat.php:208 ../../mod/chat.php:231
+msgid "New Chatroom"
+msgstr "Nytt chatrom"
+
+#: ../../mod/chat.php:209
+msgid "Chatroom Name"
+msgstr "Navn pƄ chatrom"
+
+#: ../../mod/chat.php:210
+msgid "Expiration of chats (minutes)"
+msgstr "Chat utgƄr (antall minutter)"
+
+#: ../../mod/chat.php:227
#, php-format
-msgid "You have reached your limit of %1$.0f webpages."
-msgstr "Du har nƄdd din grense pƄ %1$.0f websider."
+msgid "%1$s's Chatrooms"
+msgstr "%1$s sine chatrom"
+
+#: ../../mod/chatsvc.php:111
+msgid "Away"
+msgstr "Borte"
+
+#: ../../mod/chatsvc.php:115
+msgid "Online"
+msgstr "Online"
#: ../../mod/common.php:10
msgid "No channel."
@@ -4413,1109 +4540,119 @@ msgstr "(Ingen spesifikke instruksjoner er gitt av kanaleieren.)"
msgid "Restricted or Premium Channel"
msgstr "Begrenset kanal eller premiumkanal"
-#: ../../mod/match.php:22
-msgid "Profile Match"
-msgstr "Profiltreff"
-
-#: ../../mod/match.php:31
-msgid "No keywords to match. Please add keywords to your default profile."
-msgstr "Ingen nĆøkkelord Ć„ sammenlikne. Vennligst legg til nĆøkkelord til din standardprofil."
-
-#: ../../mod/match.php:63
-msgid "is interested in:"
-msgstr "er interessert i:"
-
-#: ../../mod/match.php:70
-msgid "No matches"
-msgstr "Ingen treff"
-
-#: ../../mod/openid.php:26
-msgid "OpenID protocol error. No ID returned."
-msgstr "OpenID protokollfeil. Ingen ID ble returnert."
-
-#: ../../mod/openid.php:72 ../../mod/openid.php:179
-#: ../../Zotlabs/Zot/Auth.php:248
-#, php-format
-msgid "Welcome %s. Remote authentication successful."
-msgstr "Velkommen %s. Ekstern autentisering er vellykket."
-
-#: ../../mod/achievements.php:34
-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"
-
-#: ../../mod/chatsvc.php:111
-msgid "Away"
-msgstr "Borte"
-
-#: ../../mod/chatsvc.php:115
-msgid "Online"
-msgstr "Online"
-
-#: ../../mod/pubsites.php:18
-msgid "Public Sites"
-msgstr "Offentlige nettsteder"
-
-#: ../../mod/pubsites.php:21
-msgid ""
-"The listed sites allow public registration for the $Projectname network. All"
-" sites in the network are interlinked so membership on any of them conveys "
-"membership in the network as a whole. Some sites may require subscription or"
-" provide tiered service plans. The provider links <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 hele matrix. Noen nettsteder kan kreve abonnement eller tilby lagdelte tjenesteavtaler. Tilbyderlenkene <strong>kan</strong> gi tilleggsopplysninger."
-
-#: ../../mod/pubsites.php:27
-msgid "Rate this hub"
-msgstr "Vurder denne hubben"
-
-#: ../../mod/pubsites.php:28
-msgid "Site URL"
-msgstr "Nettstedets URL"
-
-#: ../../mod/pubsites.php:28
-msgid "Access Type"
-msgstr "Tilgangstype"
-
-#: ../../mod/pubsites.php:28
-msgid "Registration Policy"
-msgstr "Retningslinjer for registrering"
-
-#: ../../mod/pubsites.php:28
-msgid "Project"
-msgstr "Prosjekt"
-
-#: ../../mod/pubsites.php:28
-msgid "View hub ratings"
-msgstr "Vis vurderinger av hubben"
-
-#: ../../mod/pubsites.php:32
-msgid "Rate"
-msgstr "Vurder"
-
-#: ../../mod/pubsites.php:33
-msgid "View ratings"
-msgstr "Vis vurderinger"
-
-#: ../../mod/tagger.php:96
-#, 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"
-
-#: ../../mod/rate.php:158
-msgid "Website:"
-msgstr "Nettsted:"
-
-#: ../../mod/rate.php:161
-#, php-format
-msgid "Remote Channel [%s] (not yet known on this site)"
-msgstr "Fjerntliggende kanal [%s] (forelĆøpig ikke kjent pĆ„ dette nettstedet)"
-
-#: ../../mod/rate.php:162
-msgid "Rating (this information is public)"
-msgstr "Vurdering (denne informasjonen er offentlig)"
-
-#: ../../mod/rate.php:163
-msgid "Optionally explain your rating (this information is public)"
-msgstr "Velg om du vil forklare din vurdering (denne informasjonen er offentlig)"
-
-#: ../../mod/blocks.php:95 ../../mod/blocks.php:148
-msgid "Block Name"
-msgstr "Byggeklossens navn"
-
-#: ../../mod/blocks.php:149
-msgid "Block Title"
-msgstr "Byggeklossens tittel"
-
-#: ../../mod/id.php:11
-msgid "First Name"
-msgstr "Fornavn"
-
-#: ../../mod/id.php:12
-msgid "Last Name"
-msgstr "Etternavn"
-
-#: ../../mod/id.php:13
-msgid "Nickname"
-msgstr "Kallenavn"
-
-#: ../../mod/id.php:14
-msgid "Full Name"
-msgstr "Fullt navn"
-
-#: ../../mod/id.php:20
-msgid "Profile Photo 16px"
-msgstr "Profilbilde 16px"
-
-#: ../../mod/id.php:21
-msgid "Profile Photo 32px"
-msgstr "Profilbilde 32px"
-
-#: ../../mod/id.php:22
-msgid "Profile Photo 48px"
-msgstr "Profilbilde 48px"
-
-#: ../../mod/id.php:23
-msgid "Profile Photo 64px"
-msgstr "Profilbilde 64px"
-
-#: ../../mod/id.php:24
-msgid "Profile Photo 80px"
-msgstr "Profilbilde 80px"
-
-#: ../../mod/id.php:25
-msgid "Profile Photo 128px"
-msgstr "Profilbilde 128px"
-
-#: ../../mod/id.php:26
-msgid "Timezone"
-msgstr "Tidssone"
-
-#: ../../mod/id.php:27
-msgid "Homepage URL"
-msgstr "Hjemmeside URL"
-
-#: ../../mod/id.php:29
-msgid "Birth Year"
-msgstr "FĆødselsĆ„r"
-
-#: ../../mod/id.php:30
-msgid "Birth Month"
-msgstr "FĆødselsmĆ„ne"
-
-#: ../../mod/id.php:31
-msgid "Birth Day"
-msgstr "FĆødselsdag"
-
-#: ../../mod/id.php:32
-msgid "Birthdate"
-msgstr "FĆødselsdato"
-
-#: ../../mod/id.php:33 ../../mod/profiles.php:441
-msgid "Gender"
-msgstr "KjĆønn"
-
-#: ../../mod/like.php:15
-msgid "Like/Dislike"
-msgstr "Liker/Liker ikke"
-
-#: ../../mod/like.php:20
-msgid "This action is restricted to members."
-msgstr "Denne handlingen er begrenset til medlemmer."
-
-#: ../../mod/like.php:21
-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"
-
-#: ../../mod/like.php:101 ../../mod/like.php:127 ../../mod/like.php:165
-msgid "Invalid request."
-msgstr "Ugyldig forespĆørsel."
-
-#: ../../mod/like.php:142
-msgid "thing"
-msgstr "ting"
-
-#: ../../mod/like.php:188
-msgid "Channel unavailable."
-msgstr "Kanalen er utilgjengelig."
-
-#: ../../mod/like.php:236
-msgid "Previous action reversed."
-msgstr "Forrige handling er omgjort."
-
-#: ../../mod/like.php:414
-#, php-format
-msgid "%1$s agrees with %2$s's %3$s"
-msgstr "%1$s er enig med %2$s sin %3$s"
-
-#: ../../mod/like.php:416
-#, 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"
-
-#: ../../mod/like.php:418
-#, 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"
-
-#: ../../mod/like.php:420
-#, php-format
-msgid "%1$s is attending %2$s's %3$s"
-msgstr "%1$s deltar pƄ %2$ss %3$s"
-
-#: ../../mod/like.php:422
-#, php-format
-msgid "%1$s is not attending %2$s's %3$s"
-msgstr "%1$s deltar ikke pƄ %2$ss %3$s"
-
-#: ../../mod/like.php:424
-#, php-format
-msgid "%1$s may attend %2$s's %3$s"
-msgstr "%1$s deltar kanskje pƄ %2$ss %3$s"
-
-#: ../../mod/like.php:520
-msgid "Action completed."
-msgstr "Handling ferdig."
-
-#: ../../mod/like.php:521
-msgid "Thank you."
-msgstr "Tusen takk."
-
-#: ../../mod/page.php:36 ../../mod/block.php:27
-msgid "Invalid item."
-msgstr "Ugyldig element."
-
-#: ../../mod/page.php:52 ../../mod/wall_upload.php:29 ../../mod/block.php:39
-msgid "Channel not found."
-msgstr "Kanalen ble ikke funnet."
-
-#: ../../mod/page.php:89 ../../mod/display.php:110 ../../mod/help.php:216
-#: ../../mod/block.php:75 ../../index.php:241
-msgid "Page not found."
-msgstr "Siden ikke funnet."
-
-#: ../../mod/page.php:126
-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."
-
-#: ../../mod/removeme.php:29
-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."
-
-#: ../../mod/removeme.php:57
-msgid "Remove This Channel"
-msgstr "Fjern denne kanalen"
-
-#: ../../mod/removeme.php:58 ../../mod/removeaccount.php:58
-msgid "WARNING: "
-msgstr "ADVARSEL:"
-
-#: ../../mod/removeme.php:58
-msgid "This channel will be completely removed from the network. "
-msgstr "Denne kanalen vil bli fullstendig fjernet fra nettverket."
-
-#: ../../mod/removeme.php:58 ../../mod/removeaccount.php:58
-msgid "This action is permanent and can not be undone!"
-msgstr "Denne handlingen er permanent og kan ikke angres!"
-
-#: ../../mod/removeme.php:59 ../../mod/removeaccount.php:59
-msgid "Please enter your password for verification:"
-msgstr "Vennligst skriv ditt passord for Ƅ fƄ bekreftelse:"
-
-#: ../../mod/removeme.php:60
-msgid "Remove this channel and all its clones from the network"
-msgstr "Fjern denne kanalen og alle dens kloner fra nettverket"
-
-#: ../../mod/removeme.php:60
-msgid ""
-"By default only the instance of the channel located on this hub will be "
-"removed from the network"
-msgstr "Som standard vil bare forekomsten av denne kanalen lokalisert pƄ denne hubben bli fjernet fra nettverket"
-
-#: ../../mod/removeme.php:61 ../../mod/settings.php:1112
-msgid "Remove Channel"
-msgstr "Fjern kanal"
-
-#: ../../mod/mood.php:132
-msgid "Set your current mood and tell your friends"
-msgstr "Angi ditt nĆ„vƦrende humĆør og fortell dine venner"
-
-#: ../../mod/new_channel.php:109
-msgid "Add a Channel"
-msgstr "Legg til en kanal"
-
-#: ../../mod/new_channel.php:110
-msgid ""
-"A channel is your own collection of related web pages. A channel can be used"
-" to hold social network profiles, blogs, conversation groups and forums, "
-"celebrity pages, and much more. You may create as many channels as your "
-"service provider allows."
-msgstr "En kanal er din egen samling av relaterte web-sider. En kanal kan brukes til Ƅ samle sosiale nettverksprofiler, blogger, samtalegrupper og forum, kjendissider og mye mer. Du kan lage sƄ mange kanaler som din tjenestetilbyder tillater."
-
-#: ../../mod/new_channel.php:112 ../../mod/sources.php:103
-#: ../../mod/sources.php:137
-msgid "Channel Name"
-msgstr "Kanalnavn"
-
-#: ../../mod/new_channel.php:113
-msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "
-msgstr "Eksempel: \"Ola Nordmann\", \"Lisa og hestene hennes\", \"Fotball\", \"Sykkelgruppa\""
-
-#: ../../mod/new_channel.php:114
-msgid "Choose a short nickname"
-msgstr "Velg et kort kallenavn"
-
-#: ../../mod/new_channel.php:115
-msgid ""
-"Your nickname will be used to create an easily remembered channel address "
-"(like an email address) which you can share with others."
-msgstr "Ditt kallenavn brukes til Ć„ lage en kanaladresse som er enkel Ć„ huske (minner om en e-postadresse) og som du kan dele med andre."
-
-#: ../../mod/new_channel.php:116
-msgid "Or <a href=\"import\">import an existing channel</a> from another location"
-msgstr "Eller <a href=\"import\">importerer en eksisterende kanal</a> fra et annet sted."
-
-#: ../../mod/new_channel.php:118
-msgid ""
-"Please choose a channel type (such as social networking or community forum) "
-"and privacy requirements so we can select the best permissions for you"
-msgstr "Vennligst velg en kanaltype (for eksempel sosialt nettverk eller forum for felleskap) og krav til personvern slik at vi kan velge de beste tillatelsene for deg."
-
-#: ../../mod/new_channel.php:119
-msgid "Channel Type"
-msgstr "Kanaltype"
-
-#: ../../mod/new_channel.php:119
-msgid "Read more about roles"
-msgstr "Les mer om roller"
-
-#: ../../mod/ratings.php:69
-msgid "No ratings"
-msgstr "Ingen vurderinger"
-
-#: ../../mod/ratings.php:82 ../../mod/display.php:13
-#: ../../mod/directory.php:59 ../../mod/photos.php:490 ../../mod/search.php:13
-#: ../../mod/viewconnections.php:17
-msgid "Public access denied."
-msgstr "Offentlig tilgang avvist."
-
-#: ../../mod/ratings.php:99
-msgid "Ratings"
-msgstr "Vurderinger"
-
-#: ../../mod/ratings.php:100
-msgid "Rating: "
-msgstr "Vurdering:"
-
-#: ../../mod/ratings.php:101
-msgid "Website: "
-msgstr "Nettsted:"
-
-#: ../../mod/ratings.php:103
-msgid "Description: "
-msgstr "Beskrivelse:"
-
-#: ../../mod/setup.php:191
-msgid "$Projectname Server - Setup"
-msgstr "$Projectname-tjener - oppsett"
-
-#: ../../mod/setup.php:195
-msgid "Could not connect to database."
-msgstr "Fikk ikke kontakt med databasen."
-
-#: ../../mod/setup.php:199
-msgid ""
-"Could not connect to specified site URL. Possible SSL certificate or DNS "
-"issue."
-msgstr "Fikk ikke kontakt med det angitte nettstedets URL. Problemet kan muligens skyldes SSL-sertifikatet eller DNS."
-
-#: ../../mod/setup.php:206
-msgid "Could not create table."
-msgstr "Kunne ikke lage tabellen."
-
-#: ../../mod/setup.php:211
-msgid "Your site database has been installed."
-msgstr "Databasen til ditt nettsted har blitt installert."
-
-#: ../../mod/setup.php:215
-msgid ""
-"You may need to import the file \"install/schema_xxx.sql\" manually using a "
-"database client."
-msgstr "Du mƄ kanskje importere filen \"install/schmea_xxx.sql\" manuelt ved Ƅ bruke en databaseklient."
-
-#: ../../mod/setup.php:216 ../../mod/setup.php:284 ../../mod/setup.php:734
-msgid "Please see the file \"install/INSTALL.txt\"."
-msgstr "Vennligst les filen \"install/INSTALL.txt\"."
-
-#: ../../mod/setup.php:281
-msgid "System check"
-msgstr "Systemsjekk"
-
-#: ../../mod/setup.php:285 ../../mod/photos.php:911 ../../mod/events.php:653
-#: ../../mod/events.php:660
-msgid "Next"
-msgstr "Neste"
-
-#: ../../mod/setup.php:286
-msgid "Check again"
-msgstr "Sjekk igjen"
-
-#: ../../mod/setup.php:308
-msgid "Database connection"
-msgstr "Databaseforbindelse"
-
-#: ../../mod/setup.php:309
-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."
-
-#: ../../mod/setup.php:310
-msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
-msgstr "Vennligst kontakt din nettstedstilbyder eller nettstedsadministrator hvis du har spĆørsmĆ„l om disse innstillingene."
-
-#: ../../mod/setup.php:311
-msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
-msgstr "Databasen du oppgir nedenfor mĆ„ finnes pĆ„ forhĆ„nd. Hvis den ikke finnes, vennligst lag den fĆør du fortsetter."
-
-#: ../../mod/setup.php:315
-msgid "Database Server Name"
-msgstr "Navn pƄ databasetjener"
-
-#: ../../mod/setup.php:315
-msgid "Default is 127.0.0.1"
-msgstr "Standard er 127.0.0.1"
-
-#: ../../mod/setup.php:316
-msgid "Database Port"
-msgstr "Databaseport"
-
-#: ../../mod/setup.php:316
-msgid "Communication port number - use 0 for default"
-msgstr "Kommunikasjonsportnummer - bruk 0 for standard"
-
-#: ../../mod/setup.php:317
-msgid "Database Login Name"
-msgstr "Database innloggingsnavn"
-
-#: ../../mod/setup.php:318
-msgid "Database Login Password"
-msgstr "Database innloggingspassord"
-
-#: ../../mod/setup.php:319
-msgid "Database Name"
-msgstr "Databasenavn"
-
-#: ../../mod/setup.php:320
-msgid "Database Type"
-msgstr "Databasetype"
-
-#: ../../mod/setup.php:322 ../../mod/setup.php:363
-msgid "Site administrator email address"
-msgstr "E-postadressen til administrator ved nettstedet"
-
-#: ../../mod/setup.php:322 ../../mod/setup.php:363
-msgid ""
-"Your account email address must match this in order to use the web admin "
-"panel."
-msgstr "Din konto sin e-postadresse mƄ vƦre lik denne for Ƅ kunne bruke web-administrasjonspanelet."
-
-#: ../../mod/setup.php:323 ../../mod/setup.php:365
-msgid "Website URL"
-msgstr "Nettstedets URL"
-
-#: ../../mod/setup.php:323 ../../mod/setup.php:365
-msgid "Please use SSL (https) URL if available."
-msgstr "Vennligst bruk SSL (https) URL hvis tilgjengelig."
-
-#: ../../mod/setup.php:325 ../../mod/setup.php:367
-msgid "Please select a default timezone for your website"
-msgstr "Vennligst velg en standard tidssone for ditt nettsted"
-
-#: ../../mod/setup.php:352
-msgid "Site settings"
-msgstr "Nettstedets innstillinger"
-
-#: ../../mod/setup.php:417
-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)."
-
-#: ../../mod/setup.php:418
-msgid ""
-"If you don't have a command line version of PHP installed on server, you "
-"will not be able to run background polling via cron."
-msgstr "Hvis du ikke har en kommandolinjeversjon av PHP installert pĆ„ tjeneren, sĆ„ vil du ikke kunne kjĆøre bakgrunnshenting via cron."
-
-#: ../../mod/setup.php:422
-msgid "PHP executable path"
-msgstr "PHP-kjĆørefilens sti"
-
-#: ../../mod/setup.php:422
-msgid ""
-"Enter full path to php executable. You can leave this blank to continue the "
-"installation."
-msgstr "Skriv full sti til kjĆørefilen for PHP. Du kan la denne stĆ„ blank for Ć„ fortsette installasjonen."
-
-#: ../../mod/setup.php:427
-msgid "Command line PHP"
-msgstr "Kommandolinje PHP"
-
-#: ../../mod/setup.php:436
-msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
-msgstr "Kommandolinjeversjonen av PHP pƄ ditt system har ikke \"register_argc_argv\" pƄskrudd."
-
-#: ../../mod/setup.php:437
-msgid "This is required for message delivery to work."
-msgstr "Dette er pƄkrevd for at meldingslevering skal virke."
-
-#: ../../mod/setup.php:440
-msgid "PHP register_argc_argv"
-msgstr "PHP register_argc_argv"
-
-#: ../../mod/setup.php:458
-#, php-format
-msgid ""
-"Your max allowed total upload size is set to %s. Maximum size of one file to"
-" upload is set to %s. You are allowed to upload up to %d files at once."
-msgstr "Den stĆørste totale opplastingsstĆørrelsen du er tillatt er satt til %s. FilstĆørrelsen pĆ„ en enkelt fil er satt til Ć„ maksimalt vƦre %s. Du har lov til Ć„ laste opp inntil %d filer samtidig."
-
-#: ../../mod/setup.php:463
-msgid "You can adjust these settings in the servers php.ini."
-msgstr "Du kan justere disse innstillingene i tjenerens php.ini."
-
-#: ../../mod/setup.php:465
-msgid "PHP upload limits"
-msgstr "PHP opplastingsgrenser"
-
-#: ../../mod/setup.php:488
-msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
-msgstr "Feil: \"openssl_pkey_new\"-funksjonen pĆ„ dette systemet er ikke i stand til Ć„ lage krypteringsnĆøkler"
-
-#: ../../mod/setup.php:489
-msgid ""
-"If running under Windows, please see "
-"\"http://www.php.net/manual/en/openssl.installation.php\"."
-msgstr "Ved kjĆøring pĆ„ Windows, vennligst se \"http://www.php.net/manual/en/openssl.installation.php\"."
-
-#: ../../mod/setup.php:492
-msgid "Generate encryption keys"
-msgstr "Lag krypteringsnĆøkler"
-
-#: ../../mod/setup.php:504
-msgid "libCurl PHP module"
-msgstr "libCurl PHP-modul"
-
-#: ../../mod/setup.php:505
-msgid "GD graphics PHP module"
-msgstr "GD graphics PHP-modul"
-
-#: ../../mod/setup.php:506
-msgid "OpenSSL PHP module"
-msgstr "OpenSSL PHP-modul"
-
-#: ../../mod/setup.php:507
-msgid "mysqli or postgres PHP module"
-msgstr "MySQLi eller Postgres PHP modul"
-
-#: ../../mod/setup.php:508
-msgid "mb_string PHP module"
-msgstr "mb_string PHP-modul"
-
-#: ../../mod/setup.php:509
-msgid "mcrypt PHP module"
-msgstr "mcrypt PHP-modul"
-
-#: ../../mod/setup.php:510
-msgid "xml PHP module"
-msgstr "XML PHP modul"
-
-#: ../../mod/setup.php:514 ../../mod/setup.php:516
-msgid "Apache mod_rewrite module"
-msgstr "Apache mod_rewrite-modul"
-
-#: ../../mod/setup.php:514
-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."
-
-#: ../../mod/setup.php:520 ../../mod/setup.php:523
-msgid "proc_open"
-msgstr "proc_open"
-
-#: ../../mod/setup.php:520
-msgid ""
-"Error: proc_open is required but is either not installed or has been "
-"disabled in php.ini"
-msgstr "Feil: proc_open er pƄkrevd, men er enten ikke installert eller har blitt avskrudd i php.ini"
-
-#: ../../mod/setup.php:528
-msgid "Error: libCURL PHP module required but not installed."
-msgstr "Feil: libCURL PHP-modul er pƄkrevd, men er ikke installert."
-
-#: ../../mod/setup.php:532
-msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
-msgstr "Feil: GD graphics PHP-modul med JPEG-stĆøtte er pĆ„krevd, men er ikke installert."
-
-#: ../../mod/setup.php:536
-msgid "Error: openssl PHP module required but not installed."
-msgstr "Feil: openssl PHP-modul er pƄkrevd, men er ikke installert."
-
-#: ../../mod/setup.php:540
-msgid ""
-"Error: mysqli or postgres PHP module required but neither are installed."
-msgstr "Feil: mysqli eller postgres PHP modul er pƄkrevd, men ingen av dem er installert."
+#: ../../mod/connections.php:52 ../../mod/connections.php:157
+#: ../../mod/connections.php:238
+msgid "Blocked"
+msgstr "Blokkert"
-#: ../../mod/setup.php:544
-msgid "Error: mb_string PHP module required but not installed."
-msgstr "Feil: mb_string PHP-modul er pƄkrevd, men er ikke installert."
+#: ../../mod/connections.php:57 ../../mod/connections.php:164
+#: ../../mod/connections.php:237
+msgid "Ignored"
+msgstr "Ignorert"
-#: ../../mod/setup.php:548
-msgid "Error: mcrypt PHP module required but not installed."
-msgstr "Feil: mcrypt PHP-modul er pƄkrevd, men er ikke installert."
+#: ../../mod/connections.php:62 ../../mod/connections.php:178
+#: ../../mod/connections.php:236
+msgid "Hidden"
+msgstr "Skjult"
-#: ../../mod/setup.php:552
-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."
+#: ../../mod/connections.php:67 ../../mod/connections.php:171
+#: ../../mod/connections.php:235
+msgid "Archived"
+msgstr "Arkivert"
-#: ../../mod/setup.php:570
-msgid ""
-"The web installer needs to be able to create a file called \".htconfig.php\""
-" in the top folder of your web server and it is unable to do so."
-msgstr "Web-installasjonen mƄ kunne lage en fil kalt \".htconfig.php\" i toppkatalogen til web-tjeneren din, men dette fƄr den ikke til."
+#: ../../mod/connections.php:134
+msgid "New Connections"
+msgstr "Nye forbindelser"
-#: ../../mod/setup.php:571
-msgid ""
-"This is most often a permission setting, as the web server may not be able "
-"to write files in your folder - even if you can."
-msgstr "Dette er oftest tillatelsesinnstilling, ettersom webtjeneren kanskje kan skrive til filer i din mappe - selv om du kan."
+#: ../../mod/connections.php:137
+msgid "Show pending (new) connections"
+msgstr "Vis ventende (nye) forbindelser"
-#: ../../mod/setup.php:572
-msgid ""
-"At the end of this procedure, we will give you a text to save in a file "
-"named .htconfig.php in your Red top folder."
-msgstr "PĆ„ slutten av denne prosedyren vil vi gi deg en tekst til Ć„ lagre i en fil kalt .htconfig.php i toppkatalogen til din Red."
+#: ../../mod/connections.php:141 ../../mod/profperm.php:139
+msgid "All Connections"
+msgstr "Alle forbindelser"
-#: ../../mod/setup.php:573
-msgid ""
-"You can alternatively skip this procedure and perform a manual installation."
-" Please see the file \"install/INSTALL.txt\" for instructions."
-msgstr "Alternativt, sĆ„ kan du hoppe over denne prosedyren og gjennomfĆøre en manuell installasjon. Vennligst se filen \"install/INSTALL.txt\" for instruksjoner."
+#: ../../mod/connections.php:144
+msgid "Show all connections"
+msgstr "Vis alle forbindelser"
-#: ../../mod/setup.php:576
-msgid ".htconfig.php is writable"
-msgstr ".htconfig.php kan skrives til"
+#: ../../mod/connections.php:160
+msgid "Only show blocked connections"
+msgstr "Vis bare forbindelser som er blokkert"
-#: ../../mod/setup.php:590
-msgid ""
-"Red uses the Smarty3 template engine to render its web views. Smarty3 "
-"compiles templates to PHP to speed up rendering."
-msgstr "Red bruker malmotoren Smarty3 for Ć„ gjengi sine webvisninger. Smarty3 kompilerer malene om til PHP for Ć„ framskynde gjengivelsen."
+#: ../../mod/connections.php:167
+msgid "Only show ignored connections"
+msgstr "Vis bare ignorerte forbindelser"
-#: ../../mod/setup.php:591
-#, php-format
-msgid ""
-"In order to store these compiled templates, the web server needs to have "
-"write access to the directory %s under the Red top level folder."
-msgstr "For Ƅ kunne lagre disse kompilerte malene, sƄ mƄ webtjeneren ha skrivetilgang til katalogen %s under Red sin hovedmappe."
+#: ../../mod/connections.php:174
+msgid "Only show archived connections"
+msgstr "Vis bare arkiverte forbindelser"
-#: ../../mod/setup.php:592 ../../mod/setup.php:613
-msgid ""
-"Please ensure that the user that your web server runs as (e.g. www-data) has"
-" write access to this folder."
-msgstr "Vennligst sikre at brukeren som din web-tjeneste kjĆører som (for eksempel www-data) har skrivetilgang til denne katalogen."
+#: ../../mod/connections.php:181
+msgid "Only show hidden connections"
+msgstr "Vis bare skjulte forbindelser"
-#: ../../mod/setup.php:593
-#, php-format
-msgid ""
-"Note: as a security measure, you should give the web server write access to "
-"%s only--not the template files (.tpl) that it contains."
-msgstr "Merknad: som et sikkerhetstiltak bĆør du bare gi webtjerenn skrivetilgang til %s - ikke til malfilene (.tpl) som den inneholder."
+#: ../../mod/connections.php:234
+msgid "Pending approval"
+msgstr "Venter pƄ godkjenning"
-#: ../../mod/setup.php:596
+#: ../../mod/connections.php:250
#, php-format
-msgid "%s is writable"
-msgstr "%s kan skrives til"
-
-#: ../../mod/setup.php:612
-msgid ""
-"Red uses the store directory to save uploaded files. The web server needs to"
-" have write access to the store directory under the Red top level folder"
-msgstr "Red bruker lagringsmappen for Ƅ lagre opplastede filer. Webtjeneren trenger Ƅ ha skrivetilgang til lagringsmappen under Red sin toppnivƄmappe."
-
-#: ../../mod/setup.php:616
-msgid "store is writable"
-msgstr "lageret kan skrives til"
-
-#: ../../mod/setup.php:649
-msgid ""
-"SSL certificate cannot be validated. Fix certificate or disable https access"
-" to this site."
-msgstr "SSL-sertifikatet kan ikke kontrolleres. Fiks sertifikatet eller skru av https tilgang til dette nettstedet."
-
-#: ../../mod/setup.php:650
-msgid ""
-"If you have https access to your website or allow connections to TCP port "
-"443 (the https: port), you MUST use a browser-valid certificate. You MUST "
-"NOT use self-signed certificates!"
-msgstr "Hvis du har HTTPS-tilgang til ditt nettsted eller tillater forbindelser til TCP port 443 (HTTPS-porten), sĆ„ Mƅ du bruke nettlesergodkjent sertifkater. Du Mƅ IKKE bruke egensignert sertifikater!"
-
-#: ../../mod/setup.php:651
-msgid ""
-"This restriction is incorporated because public posts from you may for "
-"example contain references to images on your own hub."
-msgstr "Denne begrensningen er tatt inn fordi offentlige innlegg fra deg kan for eksempel inneholde referanser til bilder pƄ din egen hub."
-
-#: ../../mod/setup.php:652
-msgid ""
-"If your certificate is not recognized, members of other sites (who may "
-"themselves have valid certificates) will get a warning message on their own "
-"site complaining about security issues."
-msgstr "Hvis sertifikatet ditt ikke gjenkjennes, sƄ vil medlemmer pƄ andre nettsteder (som selv kan ha godkjente sertifikater) fƄ en beskjed med en advarsel pƄ deres eget nettsted som klager over sikkerhetsproblemer."
-
-#: ../../mod/setup.php:653
-msgid ""
-"This can cause usability issues elsewhere (not just on your own site) so we "
-"must insist on this requirement."
-msgstr "Dette kan gi problemer med brukervennlighet (ikke bare pƄ ditt eget nettsted), sƄ vi mƄ insistere pƄ dette kravet."
-
-#: ../../mod/setup.php:654
-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."
-
-#: ../../mod/setup.php:656
-msgid "SSL certificate validation"
-msgstr "SSL sertifikat-kontroll"
-
-#: ../../mod/setup.php:662
-msgid ""
-"Url rewrite in .htaccess is not working. Check your server "
-"configuration.Test: "
-msgstr "URL omskriving (rewrite) i .htaccess virker ikke. Sjekk konfigurasjonen til tjeneren din. Test:"
-
-#: ../../mod/setup.php:665
-msgid "Url rewrite is working"
-msgstr "URL rewrite virker"
-
-#: ../../mod/setup.php:674
-msgid ""
-"The database configuration file \".htconfig.php\" could not be written. "
-"Please use the enclosed text to create a configuration file in your web "
-"server root."
-msgstr "Databasekonfigurasjonsfilen \".htconfig.php\" kunne ikke skrives. Vennligst bruk den medfĆølgende teksten for Ć„ lage en konfigurasjonsfil i toppkatalogen av din web-tjener."
-
-#: ../../mod/setup.php:698
-msgid "Errors encountered creating database tables."
-msgstr "Feil oppstod under opprettelsen av databasetabeller."
-
-#: ../../mod/setup.php:732
-msgid "<h1>What next</h1>"
-msgstr "<h1>Hva gjenstƄr</h1>"
-
-#: ../../mod/setup.php:733
-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."
-
-#: ../../mod/bookmarks.php:40
-msgid "Bookmark added"
-msgstr "Bokmerke lagt til"
-
-#: ../../mod/bookmarks.php:62
-msgid "My Bookmarks"
-msgstr "Mine bokmerker"
-
-#: ../../mod/bookmarks.php:73
-msgid "My Connections Bookmarks"
-msgstr "Mine forbindelsers bokmerker"
-
-#: ../../mod/pconfig.php:27 ../../mod/pconfig.php:60
-msgid "This setting requires special processing and editing has been blocked."
-msgstr "Denne innstillingen krever spesiell behandling og redigering har blitt blokkert."
-
-#: ../../mod/pconfig.php:49
-msgid "Configuration Editor"
-msgstr "Konfigurasjonsbehandler"
-
-#: ../../mod/pconfig.php:50
-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."
-
-#: ../../mod/poke.php:164
-msgid "Poke/Prod"
-msgstr "Prikke/oppildne"
-
-#: ../../mod/poke.php:165
-msgid "poke, prod or do other things to somebody"
-msgstr "prikke, oppildne eller gjĆør andre ting med noen"
-
-#: ../../mod/poke.php:166
-msgid "Recipient"
-msgstr "Mottaker"
-
-#: ../../mod/poke.php:167
-msgid "Choose what you wish to do to recipient"
-msgstr "Velg hva du Ćønsker Ć„ gjĆøre med mottakeren"
-
-#: ../../mod/poke.php:170
-msgid "Make this post private"
-msgstr "GjĆør dette innlegget privat"
-
-#: ../../mod/profiles.php:19 ../../mod/profiles.php:184
-#: ../../mod/profiles.php:241 ../../mod/profiles.php:608
-msgid "Profile not found."
-msgstr "Profilen ble ikke funnet."
-
-#: ../../mod/profiles.php:39
-msgid "Profile deleted."
-msgstr "Profilen er slettet."
-
-#: ../../mod/profiles.php:63 ../../mod/profiles.php:99
-msgid "Profile-"
-msgstr "Profil-"
-
-#: ../../mod/profiles.php:84 ../../mod/profiles.php:127
-msgid "New profile created."
-msgstr "Ny profil opprettet."
-
-#: ../../mod/profiles.php:105
-msgid "Profile unavailable to clone."
-msgstr "Profilen er utilgjengelig for klonen."
-
-#: ../../mod/profiles.php:146
-msgid "Profile unavailable to export."
-msgstr "Profilen er utilgjengelig for eksport."
-
-#: ../../mod/profiles.php:251
-msgid "Profile Name is required."
-msgstr "Profilnavn er pƄkrevd."
-
-#: ../../mod/profiles.php:414
-msgid "Marital Status"
-msgstr "Sivilstand"
-
-#: ../../mod/profiles.php:418
-msgid "Romantic Partner"
-msgstr "Romantisk partner"
-
-#: ../../mod/profiles.php:422
-msgid "Likes"
-msgstr "Liker"
-
-#: ../../mod/profiles.php:426
-msgid "Dislikes"
-msgstr "Liker ikke"
-
-#: ../../mod/profiles.php:430
-msgid "Work/Employment"
-msgstr "Arbeid/sysselsetting"
-
-#: ../../mod/profiles.php:433
-msgid "Religion"
-msgstr "Religion"
-
-#: ../../mod/profiles.php:437
-msgid "Political Views"
-msgstr "Politiske synspunkter"
-
-#: ../../mod/profiles.php:445
-msgid "Sexual Preference"
-msgstr "Seksuelle preferanser"
-
-#: ../../mod/profiles.php:449
-msgid "Homepage"
-msgstr "Hjemmeside"
-
-#: ../../mod/profiles.php:453
-msgid "Interests"
-msgstr "Interesser"
-
-#: ../../mod/profiles.php:457 ../../mod/admin.php:986
-msgid "Address"
-msgstr "Adresse"
-
-#: ../../mod/profiles.php:547
-msgid "Profile updated."
-msgstr "Profilen er oppdatert."
-
-#: ../../mod/profiles.php:634
-msgid "Hide your contact/friend list from viewers of this profile?"
-msgstr "Skjul kontakt-/vennelisten din fra de som ser pƄ denne profilen?"
-
-#: ../../mod/profiles.php:674
-msgid "Edit Profile Details"
-msgstr "Endre profildetaljer"
-
-#: ../../mod/profiles.php:676
-msgid "View this profile"
-msgstr "Vis denne profilen"
-
-#: ../../mod/profiles.php:678
-msgid "Change Profile Photo"
-msgstr "Endre profilbilde"
-
-#: ../../mod/profiles.php:679
-msgid "Create a new profile using these settings"
-msgstr "Lag en ny profil ved Ć„ bruke disse innstillingene"
-
-#: ../../mod/profiles.php:680
-msgid "Clone this profile"
-msgstr "Klon denne profilen"
-
-#: ../../mod/profiles.php:681
-msgid "Delete this profile"
-msgstr "Slett denne profilen"
-
-#: ../../mod/profiles.php:683
-msgid "Import profile from file"
-msgstr "Importer profil fra fil"
-
-#: ../../mod/profiles.php:684
-msgid "Export profile to file"
-msgstr "Eksporter profil til fil"
-
-#: ../../mod/profiles.php:685
-msgid "Profile Name:"
-msgstr "Profilnavn:"
-
-#: ../../mod/profiles.php:686
-msgid "Your Full Name:"
-msgstr "Ditt fulle navn:"
-
-#: ../../mod/profiles.php:687
-msgid "Title/Description:"
-msgstr "Tittel/Beskrivelse:"
-
-#: ../../mod/profiles.php:688
-msgid "Your Gender:"
-msgstr "Ditt kjĆønn:"
-
-#: ../../mod/profiles.php:689
-msgid "Birthday :"
-msgstr "FĆødselsdag:"
-
-#: ../../mod/profiles.php:690
-msgid "Street Address:"
-msgstr "Gateadresse:"
-
-#: ../../mod/profiles.php:691
-msgid "Locality/City:"
-msgstr "Sted/By:"
-
-#: ../../mod/profiles.php:692
-msgid "Postal/Zip Code:"
-msgstr "Postnummer/ZIP-kode:"
-
-#: ../../mod/profiles.php:693
-msgid "Country:"
-msgstr "Land:"
-
-#: ../../mod/profiles.php:694
-msgid "Region/State:"
-msgstr "Region/fylke:"
-
-#: ../../mod/profiles.php:695
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
-msgstr "<span class=\"heart\">&hearts;</span> Sivilstand:"
-
-#: ../../mod/profiles.php:696
-msgid "Who: (if applicable)"
-msgstr "Hvem: (hvis det er aktuelt) "
-
-#: ../../mod/profiles.php:697
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
-msgstr "Eksempler: kari123, Kari Villiamsen, kari@example.com"
-
-#: ../../mod/profiles.php:698
-msgid "Since [date]:"
-msgstr "Siden [dato]:"
-
-#: ../../mod/profiles.php:700
-msgid "Homepage URL:"
-msgstr "Hjemmeside URL:"
-
-#: ../../mod/profiles.php:703
-msgid "Religious Views:"
-msgstr "ReligiĆøse synspunkter:"
-
-#: ../../mod/profiles.php:704
-msgid "Keywords:"
-msgstr "NĆøkkelord:"
-
-#: ../../mod/profiles.php:707
-msgid "Example: fishing photography software"
-msgstr "Eksempel: fisking fotografering programvare"
-
-#: ../../mod/profiles.php:708
-msgid "Used in directory listings"
-msgstr "Brukt i katalogoppfĆøringer"
-
-#: ../../mod/profiles.php:709
-msgid "Tell us about yourself..."
-msgstr "Fortell oss om deg selv..."
-
-#: ../../mod/profiles.php:710
-msgid "Hobbies/Interests"
-msgstr "Hobbier/Interesser"
+msgid "%1$s [%2$s]"
+msgstr "%1$s [%2$s]"
-#: ../../mod/profiles.php:711
-msgid "Contact information and Social Networks"
-msgstr "Kontaktinformasjon og sosiale nettverk"
+#: ../../mod/connections.php:251
+msgid "Edit connection"
+msgstr "Endre forbindelse"
-#: ../../mod/profiles.php:712
-msgid "My other channels"
-msgstr "Mine andre kanaler"
+#: ../../mod/connections.php:252
+msgid "Delete connection"
+msgstr "Slett forbindelse"
-#: ../../mod/profiles.php:713
-msgid "Musical interests"
-msgstr "Musikkinteresser"
+#: ../../mod/connections.php:261
+msgid "Channel address"
+msgstr "Kanaladresse"
-#: ../../mod/profiles.php:714
-msgid "Books, literature"
-msgstr "BĆøker, litteratur"
+#: ../../mod/connections.php:263
+msgid "Network"
+msgstr "Nettverk"
-#: ../../mod/profiles.php:715
-msgid "Television"
-msgstr "TV/fjernsyn"
+#: ../../mod/connections.php:266 ../../mod/admin.php:668
+msgid "Status"
+msgstr "Status"
-#: ../../mod/profiles.php:716
-msgid "Film/dance/culture/entertainment"
-msgstr "Film/dans/kultur/underholdning"
+#: ../../mod/connections.php:268
+msgid "Connected"
+msgstr "Forbundet"
-#: ../../mod/profiles.php:717
-msgid "Love/romance"
-msgstr "KjƦrlighet/romantikk"
+#: ../../mod/connections.php:270
+msgid "Approve connection"
+msgstr "Godkjenn forbindelse"
-#: ../../mod/profiles.php:718
-msgid "Work/employment"
-msgstr "Arbeid/sysselsetting"
+#: ../../mod/connections.php:271 ../../mod/admin.php:991
+msgid "Approve"
+msgstr "Godkjenn"
-#: ../../mod/profiles.php:719
-msgid "School/education"
-msgstr "Skole/utdanning"
+#: ../../mod/connections.php:272
+msgid "Ignore connection"
+msgstr "Ignorer forbindelse"
-#: ../../mod/profiles.php:725
-msgid "This is your default profile."
-msgstr "Dette er din standardprofil."
+#: ../../mod/connections.php:273 ../../mod/connedit.php:538
+#: ../../mod/notifications.php:51
+msgid "Ignore"
+msgstr "Ignorer"
-#: ../../mod/profiles.php:736
-msgid "Age: "
-msgstr "Alder:"
+#: ../../mod/connections.php:274
+msgid "Recent activity"
+msgstr "Nylig aktivitet"
-#: ../../mod/profiles.php:779
-msgid "Edit/Manage Profiles"
-msgstr "Endre/hƄndter profiler"
+#: ../../mod/connections.php:303
+msgid "Search your connections"
+msgstr "SĆøk blant dine forbindelser"
-#: ../../mod/profiles.php:780
-msgid "Add profile things"
-msgstr "Legg til profilting"
-
-#: ../../mod/profiles.php:781
-msgid "Include desirable objects in your profile"
-msgstr "Inkluder Ćønskverdige objekter i din profil"
+#: ../../mod/connections.php:304
+msgid "Connections search"
+msgstr "SĆøk blant forbindelser"
#: ../../mod/connedit.php:75
msgid "Could not access contact record."
@@ -5537,237 +4674,218 @@ msgstr "Mislyktes med Ć„ oppdatere forbindelsesinformasjonen."
msgid "is now connected to"
msgstr "er nƄ forbundet til"
-#: ../../mod/connedit.php:395
+#: ../../mod/connedit.php:400
msgid "Could not access address book record."
msgstr "Fikk ikke tilgang til informasjonen i adresseboken."
-#: ../../mod/connedit.php:409
+#: ../../mod/connedit.php:414
msgid "Refresh failed - channel is currently unavailable."
msgstr "Oppfrisking mislyktes - kanalen er for Ćøyeblikket utilgjengelig."
-#: ../../mod/connedit.php:418 ../../mod/connedit.php:427
-#: ../../mod/connedit.php:436 ../../mod/connedit.php:445
-#: ../../mod/connedit.php:458
+#: ../../mod/connedit.php:429 ../../mod/connedit.php:438
+#: ../../mod/connedit.php:447 ../../mod/connedit.php:456
+#: ../../mod/connedit.php:469
msgid "Unable to set address book parameters."
msgstr "Ikke i stand til Ć„ angi parametre for adresseboken."
-#: ../../mod/connedit.php:482
+#: ../../mod/connedit.php:493
msgid "Connection has been removed."
msgstr "Forbindelsen har blitt fjernet."
-#: ../../mod/connedit.php:501
+#: ../../mod/connedit.php:512
#, php-format
msgid "View %s's profile"
msgstr "Vis %s sin profil"
-#: ../../mod/connedit.php:505
+#: ../../mod/connedit.php:516
msgid "Refresh Permissions"
msgstr "Oppfrisk tillatelser"
-#: ../../mod/connedit.php:508
+#: ../../mod/connedit.php:519
msgid "Fetch updated permissions"
msgstr "Hent oppdaterte tillatelser"
-#: ../../mod/connedit.php:512
+#: ../../mod/connedit.php:523
msgid "Recent Activity"
msgstr "Nylig aktivitet"
-#: ../../mod/connedit.php:515
+#: ../../mod/connedit.php:526
msgid "View recent posts and comments"
msgstr "Vis nylige innlegg og kommentarer"
-#: ../../mod/connedit.php:519 ../../mod/admin.php:823
+#: ../../mod/connedit.php:530 ../../mod/admin.php:995
msgid "Unblock"
msgstr "Ikke blokker lenger"
-#: ../../mod/connedit.php:519 ../../mod/admin.php:822
+#: ../../mod/connedit.php:530 ../../mod/admin.php:994
msgid "Block"
msgstr "Blokker"
-#: ../../mod/connedit.php:522
+#: ../../mod/connedit.php:533
msgid "Block (or Unblock) all communications with this connection"
msgstr "Blokker eller fjern blokkering av all kommunikasjon med denne forbindelsen"
-#: ../../mod/connedit.php:523
+#: ../../mod/connedit.php:534
msgid "This connection is blocked!"
msgstr "Denne forbindelsen er blokkert!"
-#: ../../mod/connedit.php:527
+#: ../../mod/connedit.php:538
msgid "Unignore"
msgstr "Ikke ignorer lenger"
-#: ../../mod/connedit.php:527 ../../mod/notifications.php:51
-msgid "Ignore"
-msgstr "Ignorer"
-
-#: ../../mod/connedit.php:530
+#: ../../mod/connedit.php:541
msgid "Ignore (or Unignore) all inbound communications from this connection"
msgstr "Ignorer eller fjern ignorering av all inngƄende kommunikasjon fra denne forbindelsen"
-#: ../../mod/connedit.php:531
+#: ../../mod/connedit.php:542
msgid "This connection is ignored!"
msgstr "Denne forbindelsen er ignorert!"
-#: ../../mod/connedit.php:535
+#: ../../mod/connedit.php:546
msgid "Unarchive"
msgstr "Ikke arkiver lenger"
-#: ../../mod/connedit.php:535
+#: ../../mod/connedit.php:546
msgid "Archive"
msgstr "Arkiver"
-#: ../../mod/connedit.php:538
+#: ../../mod/connedit.php:549
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"
-#: ../../mod/connedit.php:539
+#: ../../mod/connedit.php:550
msgid "This connection is archived!"
msgstr "Denne forbindelsen er arkivert!"
-#: ../../mod/connedit.php:543
+#: ../../mod/connedit.php:554
msgid "Unhide"
msgstr "Ikke skjul lenger"
-#: ../../mod/connedit.php:543
+#: ../../mod/connedit.php:554
msgid "Hide"
msgstr "Skjul"
-#: ../../mod/connedit.php:546
+#: ../../mod/connedit.php:557
msgid "Hide or Unhide this connection from your other connections"
msgstr "Skjul eller fjern skjuling av denne forbindelsen fra dine andre forbindelser"
-#: ../../mod/connedit.php:547
+#: ../../mod/connedit.php:558
msgid "This connection is hidden!"
msgstr "Denne forbindelsen er skjult!"
-#: ../../mod/connedit.php:554
+#: ../../mod/connedit.php:565
msgid "Delete this connection"
msgstr "Slett denne forbindelsen"
-#: ../../mod/connedit.php:635
+#: ../../mod/connedit.php:646
msgid "Approve this connection"
msgstr "Godta denne forbindelsen"
-#: ../../mod/connedit.php:635
+#: ../../mod/connedit.php:646
msgid "Accept connection to allow communication"
msgstr "Godta denne forbindelsen for Ć„ tillate kommunikasjon"
-#: ../../mod/connedit.php:640
+#: ../../mod/connedit.php:651
msgid "Set Affinity"
msgstr "Angi nƦrhet"
-#: ../../mod/connedit.php:643
+#: ../../mod/connedit.php:654
msgid "Set Profile"
msgstr "Angi profil"
-#: ../../mod/connedit.php:646
+#: ../../mod/connedit.php:657
msgid "Set Affinity & Profile"
msgstr "Angi nƦrhet og profil"
-#: ../../mod/connedit.php:679
+#: ../../mod/connedit.php:690
msgid "none"
msgstr "ingen"
-#: ../../mod/connedit.php:684
+#: ../../mod/connedit.php:695
msgid "Apply these permissions automatically"
msgstr "Bruk disse tillatelsene automatisk"
-#: ../../mod/connedit.php:686
+#: ../../mod/connedit.php:695
+msgid "Connection requests will be approved without your interaction"
+msgstr "ForespĆørsler om forbindelse vil bli godkjent automatisk"
+
+#: ../../mod/connedit.php:697
msgid "This connection's primary address is"
msgstr "Denne forbindelsens primƦre adresse er"
-#: ../../mod/connedit.php:687
+#: ../../mod/connedit.php:698
msgid "Available locations:"
msgstr "Tilgjengelige plasseringer:"
-#: ../../mod/connedit.php:691
+#: ../../mod/connedit.php:702
msgid ""
"The permissions indicated on this page will be applied to all new "
"connections."
msgstr "Tillatelsene angitt pĆ„ denne siden gjĆøres gjeldende for alle nye forbindelser."
-#: ../../mod/connedit.php:693
+#: ../../mod/connedit.php:704
msgid "Slide to adjust your degree of friendship"
msgstr "Flytt for Ć„ justere din grad av vennskap"
-#: ../../mod/connedit.php:695
+#: ../../mod/connedit.php:706
msgid "Slide to adjust your rating"
msgstr "Flytt for Ć„ justere din vurdering"
-#: ../../mod/connedit.php:696 ../../mod/connedit.php:701
+#: ../../mod/connedit.php:707 ../../mod/connedit.php:712
msgid "Optionally explain your rating"
msgstr "Velg om du vil forklare vurderingen"
-#: ../../mod/connedit.php:698
+#: ../../mod/connedit.php:709
msgid "Custom Filter"
msgstr "Tilpasset filter"
-#: ../../mod/connedit.php:699
+#: ../../mod/connedit.php:710
msgid "Only import posts with this text"
msgstr "Bare importer innlegg med disse ordene"
-#: ../../mod/connedit.php:699 ../../mod/connedit.php:700
+#: ../../mod/connedit.php:710 ../../mod/connedit.php:711
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"
-#: ../../mod/connedit.php:700
+#: ../../mod/connedit.php:711
msgid "Do not import posts with this text"
msgstr "Ikke importer innlegg med denne teksten"
-#: ../../mod/connedit.php:702
+#: ../../mod/connedit.php:713
msgid "This information is public!"
msgstr "Denne informasjonen er offentlig!"
-#: ../../mod/connedit.php:707
+#: ../../mod/connedit.php:718
msgid "Connection Pending Approval"
msgstr "Forbindelse venter pƄ godkjenning"
-#: ../../mod/connedit.php:708
-msgid "Connection Request"
-msgstr "ForespĆørsel om forbindelse"
-
-#: ../../mod/connedit.php:709
-#, php-format
-msgid ""
-"(%s) would like to connect with you. Please approve this connection to allow"
-" communication."
-msgstr "(%s) Ćønsker forbindelse med deg. Vennligst godkjenn denne forbindelsen for Ć„ tillate kommunikasjon."
-
-#: ../../mod/connedit.php:710 ../../mod/admin.php:819
-msgid "Approve"
-msgstr "Godkjenn"
-
-#: ../../mod/connedit.php:711
-msgid "Approve Later"
-msgstr "Godkjenn senere"
-
-#: ../../mod/connedit.php:714
+#: ../../mod/connedit.php:721
msgid "inherited"
msgstr "arvet"
-#: ../../mod/connedit.php:716
+#: ../../mod/connedit.php:723
#, 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. "
-#: ../../mod/connedit.php:718
+#: ../../mod/connedit.php:725
msgid "Their Settings"
msgstr "Deres innstillinger"
-#: ../../mod/connedit.php:719
+#: ../../mod/connedit.php:726
msgid "My Settings"
msgstr "Mine innstillinger"
-#: ../../mod/connedit.php:721
+#: ../../mod/connedit.php:728
msgid "Individual Permissions"
msgstr "Individuelle tillatelser"
-#: ../../mod/connedit.php:722
+#: ../../mod/connedit.php:729
msgid ""
"Some permissions may be inherited from your channel's <a "
"href=\"settings\"><strong>privacy settings</strong></a>, which have higher "
@@ -5775,7 +4893,7 @@ msgid ""
" 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."
-#: ../../mod/connedit.php:723
+#: ../../mod/connedit.php:730
msgid ""
"Some permissions may be inherited from your channel's <a "
"href=\"settings\"><strong>privacy settings</strong></a>, which have higher "
@@ -5783,22 +4901,111 @@ msgid ""
"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."
-#: ../../mod/connedit.php:724
+#: ../../mod/connedit.php:731
msgid "Last update:"
msgstr "Siste oppdatering:"
-#: ../../mod/acl.php:222
-msgid "network"
-msgstr "nettverk"
-
-#: ../../mod/acl.php:232
-msgid "RSS"
-msgstr "RSS"
-
#: ../../mod/dav.php:121
msgid "$Projectname channel"
msgstr "$Projectname-kanal"
+#: ../../mod/directory.php:59 ../../mod/display.php:13
+#: ../../mod/photos.php:490 ../../mod/ratings.php:82 ../../mod/search.php:13
+#: ../../mod/viewconnections.php:17
+msgid "Public access denied."
+msgstr "Offentlig tilgang avvist."
+
+#: ../../mod/directory.php:239
+#, php-format
+msgid "%d rating"
+msgid_plural "%d ratings"
+msgstr[0] "%d vurdering"
+msgstr[1] "%d vurderinger"
+
+#: ../../mod/directory.php:250
+msgid "Gender: "
+msgstr "KjĆønn:"
+
+#: ../../mod/directory.php:252
+msgid "Status: "
+msgstr "Status:"
+
+#: ../../mod/directory.php:254
+msgid "Homepage: "
+msgstr "Hjemmeside:"
+
+#: ../../mod/directory.php:313
+msgid "Description:"
+msgstr "Beskrivelse:"
+
+#: ../../mod/directory.php:322
+msgid "Public Forum:"
+msgstr "Offentlig forum:"
+
+#: ../../mod/directory.php:325
+msgid "Keywords: "
+msgstr "NĆøkkelord:"
+
+#: ../../mod/directory.php:328
+msgid "Don't suggest"
+msgstr "Ikke foreslƄ"
+
+#: ../../mod/directory.php:330
+msgid "Common connections:"
+msgstr "Felles forbindelser:"
+
+#: ../../mod/directory.php:379
+msgid "Global Directory"
+msgstr "Global katalog"
+
+#: ../../mod/directory.php:379
+msgid "Local Directory"
+msgstr "Lokal katalog"
+
+#: ../../mod/directory.php:385
+msgid "Finding:"
+msgstr "Finner:"
+
+#: ../../mod/directory.php:390
+msgid "next page"
+msgstr "Neste side"
+
+#: ../../mod/directory.php:390
+msgid "previous page"
+msgstr "Forrige side"
+
+#: ../../mod/directory.php:391
+msgid "Sort options"
+msgstr "Sorteringsvalg"
+
+#: ../../mod/directory.php:392
+msgid "Alphabetic"
+msgstr "Alfabetisk"
+
+#: ../../mod/directory.php:393
+msgid "Reverse Alphabetic"
+msgstr "Omvendt alfabetisk"
+
+#: ../../mod/directory.php:394
+msgid "Newest to Oldest"
+msgstr "Nyest til eldst"
+
+#: ../../mod/directory.php:395
+msgid "Oldest to Newest"
+msgstr "Eldst til nyest"
+
+#: ../../mod/directory.php:412
+msgid "No entries (some entries may be hidden)."
+msgstr "Ingen oppfĆøringer (noen oppfĆøringer kan vƦre skjult)."
+
+#: ../../mod/dirsearch.php:21 ../../mod/regdir.php:45
+msgid "This site is not a directory server"
+msgstr "Dette nettstedet er ikke en katalogtjener"
+
+#: ../../mod/dirsearch.php:29
+msgid "This directory server requires an access token"
+msgstr "Denne katalogtjeneren krever en tilgangsnĆøkkel (access token)"
+
#: ../../mod/dreport.php:23
msgid "Invalid message"
msgstr "Ugyldig melding"
@@ -5856,363 +5063,425 @@ msgstr "duplikat av melding mottatt"
msgid "mail delivered"
msgstr "melding mottatt"
-#: ../../mod/editwebpage.php:77 ../../mod/editblock.php:78
-#: ../../mod/editblock.php:94 ../../mod/editlayout.php:76
-#: ../../mod/editpost.php:20
+#: ../../mod/editblock.php:78 ../../mod/editblock.php:94
+#: ../../mod/editlayout.php:76 ../../mod/editpost.php:20
+#: ../../mod/editwebpage.php:77
msgid "Item not found"
msgstr "Elementet ble ikke funnet."
-#: ../../mod/editwebpage.php:153
-msgid "Delete webpage?"
-msgstr "Slett webside?"
-
-#: ../../mod/editwebpage.php:172
-msgid "Page link title"
-msgstr "Sidens lenketittel"
+#: ../../mod/editblock.php:118
+msgid "Delete block?"
+msgstr "Slett byggeklossen?"
-#: ../../mod/editwebpage.php:185 ../../mod/editblock.php:145
-#: ../../mod/editlayout.php:143 ../../mod/editpost.php:121
+#: ../../mod/editblock.php:145 ../../mod/editlayout.php:143
+#: ../../mod/editpost.php:121 ../../mod/editwebpage.php:185
msgid "Insert YouTube video"
msgstr "Sett inn YouTube-video"
-#: ../../mod/editwebpage.php:186 ../../mod/editblock.php:146
-#: ../../mod/editlayout.php:144 ../../mod/editpost.php:122
+#: ../../mod/editblock.php:146 ../../mod/editlayout.php:144
+#: ../../mod/editpost.php:122 ../../mod/editwebpage.php:186
msgid "Insert Vorbis [.ogg] video"
msgstr "Sett inn Vorbis [.ogg] video"
-#: ../../mod/editwebpage.php:187 ../../mod/editblock.php:147
-#: ../../mod/editlayout.php:145 ../../mod/editpost.php:123
+#: ../../mod/editblock.php:147 ../../mod/editlayout.php:145
+#: ../../mod/editpost.php:123 ../../mod/editwebpage.php:187
msgid "Insert Vorbis [.ogg] audio"
msgstr "Legg i"
+#: ../../mod/editblock.php:180
+msgid "Edit Block"
+msgstr "Endre byggekloss"
+
+#: ../../mod/editlayout.php:112
+msgid "Delete layout?"
+msgstr "Slett layout?"
+
+#: ../../mod/editlayout.php:159 ../../mod/layouts.php:124
+msgid "Layout Description (Optional)"
+msgstr "Layoutens beskrivelse (valgfritt)"
+
+#: ../../mod/editlayout.php:161 ../../mod/layouts.php:121
+#: ../../mod/layouts.php:179
+msgid "Layout Name"
+msgstr "Layout-navn"
+
+#: ../../mod/editlayout.php:178
+msgid "Edit Layout"
+msgstr "Endre layout"
+
+#: ../../mod/editpost.php:31
+msgid "Item is not editable"
+msgstr "Elementet kan ikke endres"
+
+#: ../../mod/editpost.php:57
+msgid "Delete item?"
+msgstr "Slett element?"
+
+#: ../../mod/editpost.php:164 ../../mod/rpost.php:128
+msgid "Edit post"
+msgstr "Endre innlegg"
+
+#: ../../mod/editwebpage.php:153
+msgid "Delete webpage?"
+msgstr "Slett webside?"
+
+#: ../../mod/editwebpage.php:172
+msgid "Page link title"
+msgstr "Sidens lenketittel"
+
#: ../../mod/editwebpage.php:222
msgid "Edit Webpage"
msgstr "Endre webside"
-#: ../../mod/oexchange.php:23
-msgid "Unable to find your hub."
-msgstr "Ikke i stand til Ć„ finne hubben din."
+#: ../../mod/events.php:21
+msgid "Calendar entries imported."
+msgstr "Kalenderhendelsene er importert."
-#: ../../mod/oexchange.php:37
-msgid "Post successful."
-msgstr "Innlegg vellykket."
+#: ../../mod/events.php:23
+msgid "No calendar entries found."
+msgstr "Ingen kalenderhendelser funnet."
-#: ../../mod/ping.php:260
-msgid "sent you a private message"
-msgstr "sendte deg en privat melding"
+#: ../../mod/events.php:100
+msgid "Event can not end before it has started."
+msgstr "Hendelsen kan ikke slutte fĆør den starter."
-#: ../../mod/ping.php:308
-msgid "added your channel"
-msgstr "la til din kanal"
+#: ../../mod/events.php:102 ../../mod/events.php:111 ../../mod/events.php:131
+msgid "Unable to generate preview."
+msgstr "Klarer ikke Ƅ lage forhƄndsvisning."
-#: ../../mod/ping.php:350
-msgid "posted an event"
-msgstr "la ut en hendelse"
+#: ../../mod/events.php:109
+msgid "Event title and start time are required."
+msgstr "Hendelsestittel og starttidspunkt er pƄkrevd."
-#: ../../mod/api.php:74 ../../mod/api.php:98
-msgid "Authorize application connection"
-msgstr "Tillat programforbindelse"
+#: ../../mod/events.php:129 ../../mod/events.php:254
+msgid "Event not found."
+msgstr "Hendelsen ble ikke funnet."
-#: ../../mod/api.php:75
-msgid "Return to your app and insert this Securty Code:"
-msgstr "GĆ„ tilbake til din app og legg inn denne sikkerhetskoden:"
+#: ../../mod/events.php:444
+msgid "Edit event title"
+msgstr "Endre tittel pƄ hendelse"
-#: ../../mod/api.php:85
-msgid "Please login to continue."
-msgstr "Vennligst logg inn for Ć„ fortsette."
+#: ../../mod/events.php:444
+msgid "Event title"
+msgstr "Tittel pƄ hendelse"
-#: ../../mod/api.php:100
-msgid ""
-"Do you want to authorize this application to access your posts and contacts,"
-" and/or create new posts for you?"
-msgstr "Vil du tillate dette programmet Ƅ fƄ tilgang til dine innlegg og kontakter, og/eller lage nye innlegg for deg?"
+#: ../../mod/events.php:446
+msgid "Categories (comma-separated list)"
+msgstr "Kategorier (kommaseparert liste)"
-#: ../../mod/notify.php:53 ../../mod/notifications.php:94
-msgid "No more system notifications."
-msgstr "Ingen flere systemvarsler."
+#: ../../mod/events.php:447
+msgid "Edit Category"
+msgstr "Endre kategori"
-#: ../../mod/notify.php:57 ../../mod/notifications.php:98
-msgid "System Notifications"
-msgstr "Systemvarsler"
+#: ../../mod/events.php:447
+msgid "Category"
+msgstr "Kategori"
-#: ../../mod/rbmark.php:90
-msgid "Select a bookmark folder"
-msgstr "Velg en bokmerkemappe"
+#: ../../mod/events.php:450
+msgid "Edit start date and time"
+msgstr "Endre startdato og tidspunkt"
-#: ../../mod/rbmark.php:95
-msgid "Save Bookmark"
-msgstr "Lagre bokmerke"
+#: ../../mod/events.php:450
+msgid "Start date and time"
+msgstr "Startdato og tidspunkt"
-#: ../../mod/rbmark.php:96
-msgid "URL of bookmark"
-msgstr "URL-en til bokmerket"
+#: ../../mod/events.php:451 ../../mod/events.php:454
+msgid "Finish date and time are not known or not relevant"
+msgstr "Sluttdato og tidspunkt er ikke kjent eller ikke relevant"
-#: ../../mod/rbmark.php:97 ../../mod/appman.php:93 ../../mod/events.php:450
-msgid "Description"
-msgstr "Beskrivelse"
+#: ../../mod/events.php:453
+msgid "Edit finish date and time"
+msgstr "Endre sluttdato og tidspunkt"
-#: ../../mod/rbmark.php:101
-msgid "Or enter new bookmark folder name"
-msgstr "Eller skriv nytt navn pƄ bokmerkemappe"
+#: ../../mod/events.php:453
+msgid "Finish date and time"
+msgstr "Sluttdato og tidspunkt"
-#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
-msgid "Contact not found."
-msgstr "Kontakten ble ikke funnet."
+#: ../../mod/events.php:455 ../../mod/events.php:456
+msgid "Adjust for viewer timezone"
+msgstr "Juster i forhold til tilskuerens tidssone"
-#: ../../mod/fsuggest.php:63
-msgid "Friend suggestion sent."
-msgstr "VenneforespĆørsel sendt."
+#: ../../mod/events.php:455
+msgid ""
+"Important for events that happen in a particular place. Not practical for "
+"global holidays."
+msgstr "Viktig for hendelser som skjer pƄ et bestemt sted. Ikke praktisk for globale ferier eller fridager."
-#: ../../mod/fsuggest.php:97
-msgid "Suggest Friends"
-msgstr "ForeslƄ venner"
+#: ../../mod/events.php:457
+msgid "Edit Description"
+msgstr "Endre beskrivelse"
-#: ../../mod/fsuggest.php:99
-#, php-format
-msgid "Suggest a friend for %s"
-msgstr "ForeslƄ en venn for %s"
+#: ../../mod/events.php:459
+msgid "Edit Location"
+msgstr "Endre plassering"
-#: ../../mod/sources.php:32
-msgid "Failed to create source. No channel selected."
-msgstr "Mislyktes med Ć„ lage kilde. Ingen kanal er valgt."
+#: ../../mod/events.php:462 ../../mod/events.php:464
+msgid "Share this event"
+msgstr "Del denne hendelsen"
-#: ../../mod/sources.php:45
-msgid "Source created."
-msgstr "Kilden er laget."
+#: ../../mod/events.php:469
+msgid "Advanced Options"
+msgstr "Avanserte alternativer"
-#: ../../mod/sources.php:57
-msgid "Source updated."
-msgstr "Kilden er oppdatert."
+#: ../../mod/events.php:581 ../../mod/cal.php:253
+msgid "l, F j"
+msgstr "l, F j"
-#: ../../mod/sources.php:82
-msgid "*"
-msgstr "*"
+#: ../../mod/events.php:603
+msgid "Edit event"
+msgstr "Endre hendelse"
-#: ../../mod/sources.php:89
-msgid "Manage remote sources of content for your channel."
-msgstr "HĆ„ndtere eksterne innholdskilder til din kanal."
+#: ../../mod/events.php:605
+msgid "Delete event"
+msgstr "Slett hendelse"
-#: ../../mod/sources.php:90 ../../mod/sources.php:100
-msgid "New Source"
-msgstr "Ny kilde"
+#: ../../mod/events.php:639
+msgid "calendar"
+msgstr "kalender"
-#: ../../mod/sources.php:101 ../../mod/sources.php:133
-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."
+#: ../../mod/events.php:658 ../../mod/cal.php:325
+msgid "Edit Event"
+msgstr "Endre hendelse"
-#: ../../mod/sources.php:102 ../../mod/sources.php:134
-msgid "Only import content with these words (one per line)"
-msgstr "Bare importer innhold med disse ordene (ett ord per linje)"
+#: ../../mod/events.php:658 ../../mod/cal.php:325
+msgid "Create Event"
+msgstr "Lag hendelse"
-#: ../../mod/sources.php:102 ../../mod/sources.php:134
-msgid "Leave blank to import all public content"
-msgstr "La stƄ tomt for Ƅ importere alt offentlig innhold"
+#: ../../mod/events.php:659 ../../mod/events.php:666 ../../mod/photos.php:916
+#: ../../mod/cal.php:326 ../../mod/cal.php:333
+msgid "Previous"
+msgstr "Forrige"
-#: ../../mod/sources.php:123 ../../mod/sources.php:150
-msgid "Source not found."
-msgstr "Kilden ble ikke funnet."
+#: ../../mod/events.php:660 ../../mod/events.php:667 ../../mod/photos.php:925
+#: ../../mod/setup.php:288 ../../mod/cal.php:327 ../../mod/cal.php:334
+msgid "Next"
+msgstr "Neste"
-#: ../../mod/sources.php:130
-msgid "Edit Source"
-msgstr "Endre kilde"
+#: ../../mod/events.php:668 ../../mod/cal.php:335
+msgid "Today"
+msgstr "Idag"
-#: ../../mod/sources.php:131
-msgid "Delete Source"
-msgstr "Slett kilde"
+#: ../../mod/events.php:699
+msgid "Event removed"
+msgstr "Hendelse slettet"
-#: ../../mod/sources.php:158
-msgid "Source removed"
-msgstr "Kilden er fjernet"
+#: ../../mod/events.php:702
+msgid "Failed to remove event"
+msgstr "Mislyktes med Ć„ slette hendelse"
-#: ../../mod/sources.php:160
-msgid "Unable to remove source."
-msgstr "Ikke i stand til Ć„ fjerne kilde."
+#: ../../mod/ffsapi.php:8
+msgid "Share content from Firefox to $Projectname"
+msgstr "Del innhold fra Firefox til $Projectname"
-#: ../../mod/notifications.php:26
-msgid "Invalid request identifier."
-msgstr "Ugyldig forespĆørselsidentifikator."
+#: ../../mod/ffsapi.php:11
+msgid "Activate the Firefox $Projectname provider"
+msgstr "Skru pƄ Firefox $Projectname tilbyderen"
-#: ../../mod/notifications.php:35
-msgid "Discard"
-msgstr "Forkast"
+#: ../../mod/filer.php:48
+msgid "- select -"
+msgstr "- velg -"
-#: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94
-msgid "Tag removed"
-msgstr "Merkelapp fjernet"
+#: ../../mod/filestorage.php:82
+msgid "Permission Denied."
+msgstr "Tillatelse avvist."
-#: ../../mod/tagrm.php:119
-msgid "Remove Item Tag"
-msgstr "Fjern merkelapp fra element"
+#: ../../mod/filestorage.php:98
+msgid "File not found."
+msgstr "Filen ble ikke funnet."
-#: ../../mod/tagrm.php:121
-msgid "Select a tag to remove: "
-msgstr "Velg merkelapp Ć„ fjerne:"
+#: ../../mod/filestorage.php:141
+msgid "Edit file permissions"
+msgstr "Endre filtillatelser"
-#: ../../mod/tagrm.php:133 ../../mod/photos.php:951
-msgid "Remove"
-msgstr "Fjern"
+#: ../../mod/filestorage.php:150
+msgid "Set/edit permissions"
+msgstr "Angi/endre tillatelser"
-#: ../../mod/directory.php:236
-#, php-format
-msgid "%d rating"
-msgid_plural "%d ratings"
-msgstr[0] "%d vurdering"
-msgstr[1] "%d vurderinger"
+#: ../../mod/filestorage.php:151
+msgid "Include all files and sub folders"
+msgstr "Inkluder alle filer og undermapper"
-#: ../../mod/directory.php:247
-msgid "Gender: "
-msgstr "KjĆønn:"
+#: ../../mod/filestorage.php:152
+msgid "Return to file list"
+msgstr "GĆ„ tilbake til filoversikten"
-#: ../../mod/directory.php:249
-msgid "Status: "
-msgstr "Status:"
+#: ../../mod/filestorage.php:154
+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"
-#: ../../mod/directory.php:251
-msgid "Homepage: "
-msgstr "Hjemmeside:"
+#: ../../mod/filestorage.php:155
+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"
-#: ../../mod/directory.php:310
-msgid "Description:"
-msgstr "Beskrivelse:"
+#: ../../mod/filestorage.php:157
+msgid "Share this file"
+msgstr "Del denne filen"
-#: ../../mod/directory.php:319
-msgid "Public Forum:"
-msgstr "Offentlig forum:"
+#: ../../mod/filestorage.php:158
+msgid "Show URL to this file"
+msgstr "Vis URLen til denne filen"
-#: ../../mod/directory.php:322
-msgid "Keywords: "
-msgstr "NĆøkkelord:"
+#: ../../mod/filestorage.php:159
+msgid "Notify your contacts about this file"
+msgstr "Varsle dine kontakter om denne filen"
-#: ../../mod/directory.php:325
-msgid "Don't suggest"
-msgstr "Ikke foreslƄ"
+#: ../../mod/follow.php:25
+msgid "Channel added."
+msgstr "Kanal lagt til."
-#: ../../mod/directory.php:327
-msgid "Common connections:"
-msgstr "Felles forbindelser:"
+#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
+msgid "Contact not found."
+msgstr "Kontakten ble ikke funnet."
-#: ../../mod/directory.php:376
-msgid "Global Directory"
-msgstr "Global katalog"
+#: ../../mod/fsuggest.php:63
+msgid "Friend suggestion sent."
+msgstr "VenneforespĆørsel sendt."
-#: ../../mod/directory.php:376
-msgid "Local Directory"
-msgstr "Lokal katalog"
+#: ../../mod/fsuggest.php:97
+msgid "Suggest Friends"
+msgstr "ForeslƄ venner"
-#: ../../mod/directory.php:382
-msgid "Finding:"
-msgstr "Finner:"
+#: ../../mod/fsuggest.php:99
+#, php-format
+msgid "Suggest a friend for %s"
+msgstr "ForeslƄ en venn for %s"
-#: ../../mod/directory.php:387
-msgid "next page"
-msgstr "Neste side"
+#: ../../mod/group.php:20
+msgid "Privacy group created."
+msgstr "Personverngruppen er opprettet."
-#: ../../mod/directory.php:387
-msgid "previous page"
-msgstr "Forrige side"
+#: ../../mod/group.php:26
+msgid "Could not create privacy group."
+msgstr "Kunne ikke opprette personverngruppen."
-#: ../../mod/directory.php:388
-msgid "Sort options"
-msgstr "Sorteringsvalg"
+#: ../../mod/group.php:54
+msgid "Privacy group updated."
+msgstr "Personverngruppen er oppdatert."
-#: ../../mod/directory.php:389
-msgid "Alphabetic"
-msgstr "Alfabetisk"
+#: ../../mod/group.php:86
+msgid "Create a group of channels."
+msgstr "Lag en gruppe av kanaler."
-#: ../../mod/directory.php:390
-msgid "Reverse Alphabetic"
-msgstr "Omvendt alfabetisk"
+#: ../../mod/group.php:87 ../../mod/group.php:180
+msgid "Privacy group name: "
+msgstr "Personverngruppens navn:"
-#: ../../mod/directory.php:391
-msgid "Newest to Oldest"
-msgstr "Nyest til eldst"
+#: ../../mod/group.php:89 ../../mod/group.php:183
+msgid "Members are visible to other channels"
+msgstr "Medlemmer er synlig for andre kanaler"
-#: ../../mod/directory.php:392
-msgid "Oldest to Newest"
-msgstr "Eldst til nyest"
+#: ../../mod/group.php:107
+msgid "Privacy group removed."
+msgstr "Personverngruppen er fjernet."
-#: ../../mod/directory.php:409
-msgid "No entries (some entries may be hidden)."
-msgstr "Ingen oppfĆøringer (noen oppfĆøringer kan vƦre skjult)."
+#: ../../mod/group.php:109
+msgid "Unable to remove privacy group."
+msgstr "Ikke i stand til Ć„ fjerne personverngruppen."
-#: ../../mod/lostpass.php:15
-msgid "No valid account found."
-msgstr "Ingen gyldig konto funnet."
+#: ../../mod/group.php:179
+msgid "Privacy group editor"
+msgstr "Personverngruppebehandler"
-#: ../../mod/lostpass.php:29
-msgid "Password reset request issued. Check your email."
-msgstr "ForespĆørsel om Ć„ tilbakestille passord er mottatt. Sjekk e-posten din."
+#: ../../mod/group.php:193
+msgid "Members"
+msgstr "Medlemmer"
-#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:103
-#, php-format
-msgid "Site Member (%s)"
-msgstr "Nettstedsmedlem (%s)"
+#: ../../mod/group.php:195
+msgid "All Connected Channels"
+msgstr "Alle tilkoblede kanaler"
-#: ../../mod/lostpass.php:40
+#: ../../mod/group.php:227
+msgid "Click on a channel to add or remove."
+msgstr "Klikk pƄ en kanal for Ƅ legge til eller fjerne."
+
+#: ../../mod/help.php:149
+msgid "Documentation Search"
+msgstr "SĆøk i dokumentasjon"
+
+#: ../../mod/help.php:190 ../../mod/help.php:196 ../../mod/help.php:202
+msgid "Help:"
+msgstr "Hjelp:"
+
+#: ../../mod/help.php:243
+msgid "$Projectname Documentation"
+msgstr "$Projectname dokumentasjon"
+
+#: ../../mod/home.php:57 ../../mod/home.php:65 ../../mod/siteinfo.php:61
+msgid "$Projectname"
+msgstr "$Projectname"
+
+#: ../../mod/home.php:75
#, php-format
-msgid "Password reset requested at %s"
-msgstr "Forespurt om Ć„ tilbakestille passord hos %s"
+msgid "Welcome to %s"
+msgstr "Velkommen til %s"
-#: ../../mod/lostpass.php:63
-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."
+#: ../../mod/id.php:11
+msgid "First Name"
+msgstr "Fornavn"
-#: ../../mod/lostpass.php:86 ../../boot.php:1496
-msgid "Password Reset"
-msgstr "Tilbakestill passord"
+#: ../../mod/id.php:12
+msgid "Last Name"
+msgstr "Etternavn"
-#: ../../mod/lostpass.php:87
-msgid "Your password has been reset as requested."
-msgstr "Ditt passord har blitt tilbakestilt som forespurt."
+#: ../../mod/id.php:13
+msgid "Nickname"
+msgstr "Kallenavn"
-#: ../../mod/lostpass.php:88
-msgid "Your new password is"
-msgstr "Ditt nye passord er"
+#: ../../mod/id.php:14
+msgid "Full Name"
+msgstr "Fullt navn"
-#: ../../mod/lostpass.php:89
-msgid "Save or copy your new password - and then"
-msgstr "Lagre eller kopier ditt nye passord, og deretter kan du"
+#: ../../mod/id.php:20
+msgid "Profile Photo 16px"
+msgstr "Profilbilde 16px"
-#: ../../mod/lostpass.php:90
-msgid "click here to login"
-msgstr "klikke her for Ć„ logge inn"
+#: ../../mod/id.php:21
+msgid "Profile Photo 32px"
+msgstr "Profilbilde 32px"
-#: ../../mod/lostpass.php:91
-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."
+#: ../../mod/id.php:22
+msgid "Profile Photo 48px"
+msgstr "Profilbilde 48px"
-#: ../../mod/lostpass.php:108
-#, php-format
-msgid "Your password has changed at %s"
-msgstr "Ditt passord er endret hos %s"
+#: ../../mod/id.php:23
+msgid "Profile Photo 64px"
+msgstr "Profilbilde 64px"
-#: ../../mod/lostpass.php:123
-msgid "Forgot your Password?"
-msgstr "Glemt passord ditt?"
+#: ../../mod/id.php:24
+msgid "Profile Photo 80px"
+msgstr "Profilbilde 80px"
-#: ../../mod/lostpass.php:124
-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."
+#: ../../mod/id.php:25
+msgid "Profile Photo 128px"
+msgstr "Profilbilde 128px"
-#: ../../mod/lostpass.php:125
-msgid "Email Address"
-msgstr "E-postadresse"
+#: ../../mod/id.php:26
+msgid "Timezone"
+msgstr "Tidssone"
-#: ../../mod/lostpass.php:126
-msgid "Reset"
-msgstr "Tilbakestill"
+#: ../../mod/id.php:27
+msgid "Homepage URL"
+msgstr "Hjemmeside URL"
-#: ../../mod/regdir.php:45 ../../mod/dirsearch.php:21
-msgid "This site is not a directory server"
-msgstr "Dette nettstedet er ikke en katalogtjener"
+#: ../../mod/id.php:29
+msgid "Birth Year"
+msgstr "FĆødselsĆ„r"
+
+#: ../../mod/id.php:30
+msgid "Birth Month"
+msgstr "FĆødselsmĆ„ne"
+
+#: ../../mod/id.php:31
+msgid "Birth Day"
+msgstr "FĆødselsdag"
+
+#: ../../mod/id.php:32
+msgid "Birthdate"
+msgstr "FĆødselsdato"
+
+#: ../../mod/id.php:33 ../../mod/profiles.php:441
+msgid "Gender"
+msgstr "KjĆønn"
#: ../../mod/impel.php:192
#, php-format
@@ -6224,16 +5493,6 @@ msgstr "%s element installert"
msgid "%s element installation failed"
msgstr "Installasjon av %s-element mislyktes"
-#: ../../mod/subthread.php:114
-#, php-format
-msgid "%1$s is following %2$s's %3$s"
-msgstr "%1$s fĆølger %2$s sin %3$s"
-
-#: ../../mod/subthread.php:116
-#, php-format
-msgid "%1$s stopped following %2$s's %3$s"
-msgstr "%1$s stopped Ć„ fĆølge %2$s sin %3$s"
-
#: ../../mod/import.php:28
#, php-format
msgid "Your service plan only allows %d channels."
@@ -6251,51 +5510,55 @@ msgstr "Ikke i stand til Ć„ laste ned data fra gammel tjener"
msgid "Imported file is empty."
msgstr "Importert fil er tom."
-#: ../../mod/import.php:116 ../../mod/import_items.php:82
+#: ../../mod/import.php:119 ../../mod/import_items.php:82
#, php-format
msgid "Warning: Database versions differ by %1$d updates."
msgstr "Advarsel: databaseversjoner avviker med %1$d oppdateringer."
-#: ../../mod/import.php:149
+#: ../../mod/import.php:124
+msgid "Server platform is not compatible. Operation not permitted."
+msgstr "Tjenerplattformen er ikke kompatibel. Handlingen er ikke tillatt."
+
+#: ../../mod/import.php:158
msgid "No channel. Import failed."
msgstr "Ingen kanal. Import mislyktes."
-#: ../../mod/import.php:509
+#: ../../mod/import.php:518
msgid "You must be logged in to use this feature."
msgstr "Du mƄ vƦre innlogget for Ƅ bruke denne funksjonen."
-#: ../../mod/import.php:514
+#: ../../mod/import.php:523
msgid "Import Channel"
msgstr "Importer kanal"
-#: ../../mod/import.php:515
+#: ../../mod/import.php:524
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."
-#: ../../mod/import.php:516 ../../mod/import_items.php:121
+#: ../../mod/import.php:525 ../../mod/import_items.php:115
msgid "File to Upload"
msgstr "Fil som skal lastes opp"
-#: ../../mod/import.php:517
+#: ../../mod/import.php:526
msgid "Or provide the old server/hub details"
msgstr "Eller oppgi detaljene fra den gamle tjeneren/hub-en"
-#: ../../mod/import.php:518
+#: ../../mod/import.php:527
msgid "Your old identity address (xyz@example.com)"
msgstr "Din gamle identitetsadresse (xyz@example.com)"
-#: ../../mod/import.php:519
+#: ../../mod/import.php:528
msgid "Your old login email address"
msgstr "Din gamle innloggings e-postadresse"
-#: ../../mod/import.php:520
+#: ../../mod/import.php:529
msgid "Your old login password"
msgstr "Ditt gamle innloggingspassord"
-#: ../../mod/import.php:521
+#: ../../mod/import.php:530
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"
@@ -6303,22 +5566,35 @@ msgid ""
"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."
-#: ../../mod/import.php:522
+#: ../../mod/import.php:531
msgid "Make this hub my primary location"
msgstr "GjĆør dette nettstedet til min primƦre plassering"
-#: ../../mod/import.php:523
+#: ../../mod/import.php:532
msgid ""
"Import existing posts if possible (experimental - limited by available "
"memory"
msgstr "Importer eksisterende innlegg om mulig (eksperimentelt - begrenset av tilgjengelig minne)"
-#: ../../mod/import.php:524
+#: ../../mod/import.php:533
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."
+#: ../../mod/import_items.php:98
+msgid "Import completed"
+msgstr "Import ferdig"
+
+#: ../../mod/import_items.php:113
+msgid "Import Items"
+msgstr "Importer elementer"
+
+#: ../../mod/import_items.php:114
+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."
+
#: ../../mod/invite.php:25
msgid "Total invitation limit exceeded."
msgstr "Grensen for totalt antall invitasjoner er overskredet."
@@ -6369,7 +5645,7 @@ msgid "Please join my community on $Projectname."
msgstr "Du er velkommen til Ƅ bli med i mitt fellesskap pƄ $Projectname."
#: ../../mod/invite.php:134
-msgid "You will need to supply this invitation code: "
+msgid "You will need to supply this invitation code:"
msgstr "Du mƄ oppgi denne invitasjonskoden:"
#: ../../mod/invite.php:135
@@ -6382,220 +5658,560 @@ msgid "2. Enter my $Projectname network address into the site searchbar."
msgstr "2. Skriv inn min $Projectname-adresse i nettstedets sĆøkefelt."
#: ../../mod/invite.php:138
-msgid "or visit "
-msgstr "eller besĆøk"
+msgid "or visit"
+msgstr "eller besĆøke"
#: ../../mod/invite.php:140
msgid "3. Click [Connect]"
msgstr "3. Klikk [Forbindelse]"
-#: ../../mod/probe.php:24 ../../mod/probe.php:30
+#: ../../mod/item.php:174
+msgid "Unable to locate original post."
+msgstr "Ikke i stand til Ć„ finne opprinnelig innlegg."
+
+#: ../../mod/item.php:423
+msgid "Empty post discarded."
+msgstr "Tomt innlegg forkastet."
+
+#: ../../mod/item.php:463
+msgid "Executable content type not permitted to this channel."
+msgstr "KjĆørbar innholdstype er ikke tillat for denne kanalen."
+
+#: ../../mod/item.php:830
+msgid "Duplicate post suppressed."
+msgstr "Duplikat av innlegg forhindret."
+
+#: ../../mod/item.php:960
+msgid "System error. Post not saved."
+msgstr "Systemfeil. Innlegg ble ikke lagret."
+
+#: ../../mod/item.php:1227
+msgid "Unable to obtain post information from database."
+msgstr "Ikke i stand til Ƅ fƄ tak i informasjon om innlegg fra databasen."
+
+#: ../../mod/item.php:1234
#, php-format
-msgid "Fetching URL returns error: %1$s"
-msgstr "Henting av URL gir fĆølgende feil: %1$s"
+msgid "You have reached your limit of %1$.0f top level posts."
+msgstr "Du har nƄdd din grense pƄ %1$.0f startinnlegg."
-#: ../../mod/profile_photo.php:112
-msgid "Image uploaded but image cropping failed."
-msgstr "Bildet ble lastet opp, men beskjƦring av bildet mislyktes."
+#: ../../mod/item.php:1241
+#, php-format
+msgid "You have reached your limit of %1$.0f webpages."
+msgstr "Du har nƄdd din grense pƄ %1$.0f websider."
-#: ../../mod/profile_photo.php:166
-msgid "Image resize failed."
-msgstr "Endring av bildestĆørrelse mislyktes."
+#: ../../mod/layouts.php:176
+msgid "Comanche page description language help"
+msgstr "Hjelp med Comanche sidebeskrivelsessprƄk"
-#: ../../mod/profile_photo.php:212
+#: ../../mod/layouts.php:180
+msgid "Layout Description"
+msgstr "Layout-beskrivelse"
+
+#: ../../mod/layouts.php:185
+msgid "Download PDL file"
+msgstr "Last ned PDL-fil"
+
+#: ../../mod/like.php:15
+msgid "Like/Dislike"
+msgstr "Liker/Liker ikke"
+
+#: ../../mod/like.php:20
+msgid "This action is restricted to members."
+msgstr "Denne handlingen er begrenset til medlemmer."
+
+#: ../../mod/like.php:21
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."
+"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"
-#: ../../mod/profile_photo.php:250
-msgid "Image upload failed."
-msgstr "Opplasting av bildet mislyktes."
+#: ../../mod/like.php:101 ../../mod/like.php:127 ../../mod/like.php:165
+msgid "Invalid request."
+msgstr "Ugyldig forespĆørsel."
-#: ../../mod/profile_photo.php:269
-msgid "Unable to process image."
-msgstr "Kan ikke behandle bildet."
+#: ../../mod/like.php:142
+msgid "thing"
+msgstr "ting"
-#: ../../mod/profile_photo.php:297
-msgid "female"
-msgstr "kvinne"
+#: ../../mod/like.php:188
+msgid "Channel unavailable."
+msgstr "Kanalen er utilgjengelig."
+
+#: ../../mod/like.php:236
+msgid "Previous action reversed."
+msgstr "Forrige handling er omgjort."
-#: ../../mod/profile_photo.php:298
+#: ../../mod/like.php:414
#, php-format
-msgid "%1$s updated her %2$s"
-msgstr "%1$s oppdaterte %2$s sitt"
+msgid "%1$s agrees with %2$s's %3$s"
+msgstr "%1$s er enig med %2$s sin %3$s"
-#: ../../mod/profile_photo.php:299
-msgid "male"
-msgstr "mann"
+#: ../../mod/like.php:416
+#, 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"
-#: ../../mod/profile_photo.php:300
+#: ../../mod/like.php:418
#, php-format
-msgid "%1$s updated his %2$s"
-msgstr "%1$s oppdaterte %2$s sitt"
+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"
-#: ../../mod/profile_photo.php:302
+#: ../../mod/like.php:420
#, php-format
-msgid "%1$s updated their %2$s"
-msgstr "%1$s oppdaterte %2$s deres"
+msgid "%1$s is attending %2$s's %3$s"
+msgstr "%1$s deltar pƄ %2$ss %3$s"
-#: ../../mod/profile_photo.php:304
-msgid "profile photo"
-msgstr "profilbilde"
+#: ../../mod/like.php:422
+#, php-format
+msgid "%1$s is not attending %2$s's %3$s"
+msgstr "%1$s deltar ikke pƄ %2$ss %3$s"
-#: ../../mod/profile_photo.php:368 ../../mod/profile_photo.php:409
-msgid "Photo not available."
-msgstr "Bildet er ikke tilgjengelig."
+#: ../../mod/like.php:424
+#, php-format
+msgid "%1$s may attend %2$s's %3$s"
+msgstr "%1$s deltar kanskje pƄ %2$ss %3$s"
-#: ../../mod/profile_photo.php:450
-msgid "Upload File:"
-msgstr "Last opp fil:"
+#: ../../mod/like.php:527
+msgid "Action completed."
+msgstr "Handling ferdig."
-#: ../../mod/profile_photo.php:451
-msgid "Select a profile:"
-msgstr "Velg en profil:"
+#: ../../mod/like.php:528
+msgid "Thank you."
+msgstr "Tusen takk."
-#: ../../mod/profile_photo.php:452
-msgid "Upload Profile Photo"
-msgstr "Last opp profilbilde:"
+#: ../../mod/lockview.php:37
+msgid "Remote privacy information not available."
+msgstr "Ekstern personverninformasjon er ikke tilgjengelig."
-#: ../../mod/profile_photo.php:457 ../../mod/settings.php:975
-msgid "or"
-msgstr "eller"
+#: ../../mod/lockview.php:58
+msgid "Visible to:"
+msgstr "Synlig for:"
-#: ../../mod/profile_photo.php:457
-msgid "skip this step"
-msgstr "hopp over dette steget"
+#: ../../mod/locs.php:21 ../../mod/locs.php:50
+msgid "Location not found."
+msgstr "Plassering er ikke funnet."
-#: ../../mod/profile_photo.php:457
-msgid "select a photo from your photo albums"
-msgstr "velg et bilde fra dine fotoalbum"
+#: ../../mod/locs.php:58
+msgid "Location lookup failed."
+msgstr "Oppslag pƄ plassering mislyktes."
-#: ../../mod/profile_photo.php:473
-msgid "Crop Image"
-msgstr "BeskjƦr bildet"
+#: ../../mod/locs.php:62
+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."
-#: ../../mod/profile_photo.php:474
-msgid "Please adjust the image cropping for optimum viewing."
-msgstr "Vennligst juster bildebeskjƦringen for optimal visning."
+#: ../../mod/locs.php:91
+msgid "Syncing locations"
+msgstr "Synkroniserer plasseringer"
-#: ../../mod/profile_photo.php:476
-msgid "Done Editing"
-msgstr "Avslutt redigering"
+#: ../../mod/locs.php:101
+msgid "No locations found."
+msgstr "Ingen plasseringer ble funnet."
-#: ../../mod/thing.php:111
-msgid "Thing updated"
-msgstr "Tingen er oppdatert"
+#: ../../mod/locs.php:112
+msgid "Manage Channel Locations"
+msgstr "HĆ„ndter kanalplasseringer"
-#: ../../mod/thing.php:163
-msgid "Object store: failed"
-msgstr "Objektlagring: mislyktes"
+#: ../../mod/locs.php:113
+msgid "Location (address)"
+msgstr "Plassering (adresse)"
-#: ../../mod/thing.php:167
-msgid "Thing added"
-msgstr "Ting lagt til"
+#: ../../mod/locs.php:114
+msgid "Primary Location"
+msgstr "Hovedplassering"
-#: ../../mod/thing.php:193
-#, php-format
-msgid "OBJ: %1$s %2$s %3$s"
-msgstr "OBJ: %1$s %2$s %3$s"
+#: ../../mod/locs.php:115
+msgid "Drop location"
+msgstr "Slett plassering"
-#: ../../mod/thing.php:256
-msgid "Show Thing"
-msgstr "Vis ting"
+#: ../../mod/locs.php:117
+msgid "Sync now"
+msgstr "Synkroniser nƄ"
-#: ../../mod/thing.php:263
-msgid "item not found."
-msgstr "element ble ikke funnet."
+#: ../../mod/locs.php:118
+msgid "Please wait several minutes between consecutive operations."
+msgstr "Vennligst vent flere minutter mellom hver etterfĆølgende operasjon."
-#: ../../mod/thing.php:296
-msgid "Edit Thing"
-msgstr "Endre ting"
+#: ../../mod/locs.php:119
+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."
-#: ../../mod/thing.php:298 ../../mod/thing.php:348
-msgid "Select a profile"
-msgstr "Velg en profil"
+#: ../../mod/locs.php:120
+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."
-#: ../../mod/thing.php:302 ../../mod/thing.php:351
-msgid "Post an activity"
-msgstr "Legg inn en aktivitet"
+#: ../../mod/ping.php:260
+msgid "sent you a private message"
+msgstr "sendte deg en privat melding"
-#: ../../mod/thing.php:302 ../../mod/thing.php:351
-msgid "Only sends to viewers of the applicable profile"
-msgstr "Sender bare til seere av den aktuelle profilen"
+#: ../../mod/ping.php:308
+msgid "added your channel"
+msgstr "la til din kanal"
-#: ../../mod/thing.php:304 ../../mod/thing.php:353
-msgid "Name of thing e.g. something"
-msgstr "Navn pƄ ting for eksempel noe"
+#: ../../mod/ping.php:350
+msgid "posted an event"
+msgstr "la ut en hendelse"
-#: ../../mod/thing.php:306 ../../mod/thing.php:354
-msgid "URL of thing (optional)"
-msgstr "URL til ting (valgfritt)"
+#: ../../mod/magic.php:69
+msgid "Hub not found."
+msgstr "Hubben ble ikke funnet."
-#: ../../mod/thing.php:308 ../../mod/thing.php:355
-msgid "URL for photo of thing (optional)"
-msgstr "URL til bilde av ting (valgfritt)"
+#: ../../mod/mail.php:34
+msgid "Unable to lookup recipient."
+msgstr "Ikke i stand til Ƅ slƄ opp mottaker."
-#: ../../mod/thing.php:346
-msgid "Add Thing to your Profile"
-msgstr "Legg til ting i din profil"
+#: ../../mod/mail.php:42
+msgid "Unable to communicate with requested channel."
+msgstr "Ikke i stand til Ć„ kommunisere med forespurt kanal."
-#: ../../mod/dirsearch.php:29
-msgid "This directory server requires an access token"
-msgstr "Denne katalogtjeneren krever en tilgangsnĆøkkel (access token)"
+#: ../../mod/mail.php:49
+msgid "Cannot verify requested channel."
+msgstr "Kan ikke bekrefte forespurt kanal."
-#: ../../mod/editblock.php:118
-msgid "Delete block?"
-msgstr "Slett byggeklossen?"
+#: ../../mod/mail.php:75
+msgid "Selected channel has private message restrictions. Send failed."
+msgstr "Valgt kanal har restriksjoner for private meldinger. Sending feilet."
-#: ../../mod/editblock.php:180
-msgid "Edit Block"
-msgstr "Endre byggekloss"
+#: ../../mod/mail.php:140
+msgid "Messages"
+msgstr "Meldinger"
-#: ../../mod/removeaccount.php:30
-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."
+#: ../../mod/mail.php:175
+msgid "Message recalled."
+msgstr "Innlegg tilbakekalt."
-#: ../../mod/removeaccount.php:57
-msgid "Remove This Account"
-msgstr "Slett denne kontoen"
+#: ../../mod/mail.php:188
+msgid "Conversation removed."
+msgstr "Samtale fjernet."
-#: ../../mod/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."
+#: ../../mod/mail.php:231
+msgid "Requested channel is not in this network"
+msgstr "Forespurt kanal er ikke tilgjengelig i dette nettverket."
-#: ../../mod/removeaccount.php:60
-msgid ""
-"Remove this account, all its channels and all its channel clones from the "
-"network"
-msgstr "Slett denne kontoen, alle dens kanaler og alle dens kanalkloner fra dette nettverket"
+#: ../../mod/mail.php:239
+msgid "Send Private Message"
+msgstr "Send privat melding"
-#: ../../mod/removeaccount.php:60
-msgid ""
-"By default only the instances of the channels located on this hub will be "
-"removed from the network"
-msgstr "Som standard vil bare forekomster av kanalene lokalisert pƄ denne hubben bli slettet fra nettverket"
+#: ../../mod/mail.php:240 ../../mod/mail.php:370
+msgid "To:"
+msgstr "Til:"
-#: ../../mod/removeaccount.php:61 ../../mod/settings.php:700
-msgid "Remove Account"
-msgstr "Slett konto"
+#: ../../mod/mail.php:243 ../../mod/mail.php:372
+msgid "Subject:"
+msgstr "Emne:"
-#: ../../mod/import_items.php:101
-msgid "Import completed"
-msgstr "Import ferdig"
+#: ../../mod/mail.php:250
+msgid "Send"
+msgstr "Send"
-#: ../../mod/import_items.php:119
-msgid "Import Items"
-msgstr "Importer elementer"
+#: ../../mod/mail.php:342
+msgid "Delete message"
+msgstr "Slett melding"
+
+#: ../../mod/mail.php:343
+msgid "Delivery report"
+msgstr "Leveringsrapport"
+
+#: ../../mod/mail.php:344
+msgid "Recall message"
+msgstr "Tilbakekall innlegg"
+
+#: ../../mod/mail.php:346
+msgid "Message has been recalled."
+msgstr "Innlegget har blitt tilbakekalt."
+
+#: ../../mod/mail.php:363
+msgid "Delete Conversation"
+msgstr "Slett samtale"
-#: ../../mod/import_items.php:120
+#: ../../mod/mail.php:365
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."
+"No secure communications available. You <strong>may</strong> be able to "
+"respond from the sender's profile page."
+msgstr "Ingen sikret kommunikasjon tilgjengelig. Du kan <strong>muligens</strong> greie Ć„ svare via senderens profilside."
+
+#: ../../mod/mail.php:369
+msgid "Send Reply"
+msgstr "Send svar"
+
+#: ../../mod/mail.php:374
+#, php-format
+msgid "Your message for %s (%s):"
+msgstr "Din melding til %s (%s):"
+
+#: ../../mod/manage.php:130 ../../mod/new_channel.php:117
+#, php-format
+msgid "You have created %1$.0f of %2$.0f allowed channels."
+msgstr "Du har laget %1$.0f av %2$.0f tillatte kanaler."
+
+#: ../../mod/manage.php:138
+msgid "Create a new channel"
+msgstr "Lag en ny kanal"
+
+#: ../../mod/manage.php:163
+msgid "Current Channel"
+msgstr "Gjeldende kanal"
+
+#: ../../mod/manage.php:165
+msgid "Switch to one of your channels by selecting it."
+msgstr "Bytt til en av dine kanaler ved Ć„ velge den."
+
+#: ../../mod/manage.php:166
+msgid "Default Channel"
+msgstr "Standardkanal"
+
+#: ../../mod/manage.php:167
+msgid "Make Default"
+msgstr "GjĆør til standard"
+
+#: ../../mod/manage.php:170
+#, php-format
+msgid "%d new messages"
+msgstr "%d nye meldinger"
+
+#: ../../mod/manage.php:171
+#, php-format
+msgid "%d new introductions"
+msgstr "%d nye introduksjoner"
+
+#: ../../mod/manage.php:173
+msgid "Delegated Channels"
+msgstr "Delegerte kanaler"
+
+#: ../../mod/match.php:22
+msgid "Profile Match"
+msgstr "Profiltreff"
+
+#: ../../mod/match.php:31
+msgid "No keywords to match. Please add keywords to your default profile."
+msgstr "Ingen nĆøkkelord Ć„ sammenlikne. Vennligst legg til nĆøkkelord til din standardprofil."
+
+#: ../../mod/match.php:63
+msgid "is interested in:"
+msgstr "er interessert i:"
+
+#: ../../mod/match.php:70
+msgid "No matches"
+msgstr "Ingen treff"
+
+#: ../../mod/menu.php:45
+msgid "Unable to update menu."
+msgstr "Ikke i stand til Ć„ oppdatere meny."
+
+#: ../../mod/menu.php:56
+msgid "Unable to create menu."
+msgstr "Ikke i stand til Ć„ lage meny."
+
+#: ../../mod/menu.php:94 ../../mod/menu.php:106
+msgid "Menu Name"
+msgstr "Menynavn"
+
+#: ../../mod/menu.php:94
+msgid "Unique name (not visible on webpage) - required"
+msgstr "Unikt navn (ikke synlig pƄ websiden) - pƄkrevet"
+
+#: ../../mod/menu.php:95 ../../mod/menu.php:107
+msgid "Menu Title"
+msgstr "Menytittel"
+
+#: ../../mod/menu.php:95
+msgid "Visible on webpage - leave empty for no title"
+msgstr "Synlig pƄ websiden - la stƄ tomt for ingen tittel"
+
+#: ../../mod/menu.php:96
+msgid "Allow Bookmarks"
+msgstr "Tillat bokmerker"
+
+#: ../../mod/menu.php:96 ../../mod/menu.php:153
+msgid "Menu may be used to store saved bookmarks"
+msgstr "Menyen kan brukes til Ć„ lagre lagrede bokmerker"
+
+#: ../../mod/menu.php:97 ../../mod/menu.php:155
+msgid "Submit and proceed"
+msgstr "Send inn og fortsett"
+
+#: ../../mod/menu.php:109
+msgid "Drop"
+msgstr "Slett"
+
+#: ../../mod/menu.php:113
+msgid "Bookmarks allowed"
+msgstr "Bokmerker tillatt"
+
+#: ../../mod/menu.php:115
+msgid "Delete this menu"
+msgstr "Slett denne menyen"
+
+#: ../../mod/menu.php:116 ../../mod/menu.php:150
+msgid "Edit menu contents"
+msgstr "Endre menyinnholdet"
+
+#: ../../mod/menu.php:117
+msgid "Edit this menu"
+msgstr "Endre denne menyen"
+
+#: ../../mod/menu.php:132
+msgid "Menu could not be deleted."
+msgstr "Menyen kunne ikke bli slettet."
+
+#: ../../mod/menu.php:140 ../../mod/mitem.php:24
+msgid "Menu not found."
+msgstr "Menyen ble ikke funnet."
+
+#: ../../mod/menu.php:145
+msgid "Edit Menu"
+msgstr "Endre meny"
+
+#: ../../mod/menu.php:149
+msgid "Add or remove entries to this menu"
+msgstr "Legg til eller fjern punkter i denne menyen"
+
+#: ../../mod/menu.php:151
+msgid "Menu name"
+msgstr "Menynavn"
+
+#: ../../mod/menu.php:151
+msgid "Must be unique, only seen by you"
+msgstr "MƄ vƦre unik, ses bare av deg"
+
+#: ../../mod/menu.php:152
+msgid "Menu title"
+msgstr "Menytittel"
+
+#: ../../mod/menu.php:152
+msgid "Menu title as seen by others"
+msgstr "Menytittelen andre ser"
+
+#: ../../mod/menu.php:153
+msgid "Allow bookmarks"
+msgstr "Tillat bokmerker"
+
+#: ../../mod/menu.php:162 ../../mod/mitem.php:116 ../../mod/xchan.php:37
+msgid "Not found."
+msgstr "Ikke funnet."
+
+#: ../../mod/mitem.php:48
+msgid "Unable to create element."
+msgstr "Klarer ikke Ć„ lage element."
+
+#: ../../mod/mitem.php:72
+msgid "Unable to update menu element."
+msgstr "Ikke i stand til Ć„ oppdatere menyelement."
+
+#: ../../mod/mitem.php:88
+msgid "Unable to add menu element."
+msgstr "Ikke i stand til Ć„ legge til menyelement."
+
+#: ../../mod/mitem.php:149 ../../mod/mitem.php:222
+msgid "Menu Item Permissions"
+msgstr "Menyelement Tillatelser"
+
+#: ../../mod/mitem.php:150 ../../mod/mitem.php:223 ../../mod/settings.php:1075
+msgid "(click to open/close)"
+msgstr "(klikk for Ć„ Ć„pne/lukke)"
+
+#: ../../mod/mitem.php:152 ../../mod/mitem.php:168
+msgid "Link Name"
+msgstr "Lenkenavn"
+
+#: ../../mod/mitem.php:153 ../../mod/mitem.php:227
+msgid "Link or Submenu Target"
+msgstr "Lenke- eller undermeny-mƄl"
+
+#: ../../mod/mitem.php:153
+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"
+
+#: ../../mod/mitem.php:154 ../../mod/mitem.php:228
+msgid "Use magic-auth if available"
+msgstr "Bruk magic-autent hvis mulig"
+
+#: ../../mod/mitem.php:155 ../../mod/mitem.php:229
+msgid "Open link in new window"
+msgstr "ƅpne lenke i nytt vindu"
+
+#: ../../mod/mitem.php:156 ../../mod/mitem.php:230
+msgid "Order in list"
+msgstr "Ordne i liste"
+
+#: ../../mod/mitem.php:156 ../../mod/mitem.php:230
+msgid "Higher numbers will sink to bottom of listing"
+msgstr "HĆøyere tall vil synke mot bunnen av listen"
+
+#: ../../mod/mitem.php:157
+msgid "Submit and finish"
+msgstr "Send inn og avslutt"
+
+#: ../../mod/mitem.php:158
+msgid "Submit and continue"
+msgstr "Send inn og fortsett"
+
+#: ../../mod/mitem.php:166
+msgid "Menu:"
+msgstr "Meny:"
+
+#: ../../mod/mitem.php:169
+msgid "Link Target"
+msgstr "LenkemƄl"
+
+#: ../../mod/mitem.php:172
+msgid "Edit menu"
+msgstr "Endre meny"
+
+#: ../../mod/mitem.php:175
+msgid "Edit element"
+msgstr "Endre element"
+
+#: ../../mod/mitem.php:176
+msgid "Drop element"
+msgstr "Slett element"
+
+#: ../../mod/mitem.php:177
+msgid "New element"
+msgstr "Nytt element"
+
+#: ../../mod/mitem.php:178
+msgid "Edit this menu container"
+msgstr "Endre denne menybeholderen"
+
+#: ../../mod/mitem.php:179
+msgid "Add menu element"
+msgstr "Legg til menyelement"
+
+#: ../../mod/mitem.php:180
+msgid "Delete this menu item"
+msgstr "Slett dette menyelementet"
+
+#: ../../mod/mitem.php:181
+msgid "Edit this menu item"
+msgstr "Endre dette menyelementet"
+
+#: ../../mod/mitem.php:198
+msgid "Menu item not found."
+msgstr "Menyelement ble ikke funnet."
+
+#: ../../mod/mitem.php:211
+msgid "Menu item deleted."
+msgstr "Menyelement slettet."
+
+#: ../../mod/mitem.php:213
+msgid "Menu item could not be deleted."
+msgstr "Menyelement kunne ikke bli slettet."
+
+#: ../../mod/mitem.php:220
+msgid "Edit Menu Element"
+msgstr "Endre menyelement"
+
+#: ../../mod/mitem.php:226
+msgid "Link text"
+msgstr "Lenketekst"
+
+#: ../../mod/mood.php:132
+msgid "Set your current mood and tell your friends"
+msgstr "Angi ditt nĆ„vƦrende humĆør og fortell dine venner"
#: ../../mod/network.php:91
msgid "No such group"
@@ -6614,880 +6230,1764 @@ msgid "Search Results For:"
msgstr "SĆøkeresultat for:"
#: ../../mod/network.php:207
-msgid "Collection is empty"
-msgstr "Samlingen er tom"
+msgid "Privacy group is empty"
+msgstr "Personverngruppen er tom"
#: ../../mod/network.php:216
-msgid "Collection: "
-msgstr "Samling:"
+msgid "Privacy group: "
+msgstr "Personverngruppe:"
#: ../../mod/network.php:242
msgid "Invalid connection."
msgstr "Ugyldig forbindelse."
-#: ../../mod/pdledit.php:13
+#: ../../mod/new_channel.php:124 ../../mod/register.php:227
+msgid "Name or caption"
+msgstr "Navn eller overskrift"
+
+#: ../../mod/new_channel.php:124 ../../mod/register.php:227
+msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""
+msgstr "Eksempel: \"Ola Nordmann\", \"Lisa og hestene hennes\", \"Fotball\", \"Sykkelgruppa\""
+
+#: ../../mod/new_channel.php:126 ../../mod/register.php:229
+msgid "Choose a short nickname"
+msgstr "Velg et kort kallenavn"
+
+#: ../../mod/new_channel.php:126 ../../mod/register.php:229
+#, php-format
+msgid ""
+"Your nickname will be used to create an easy to remember channel address "
+"e.g. nickname%s"
+msgstr "Ditt kallenavn brukes til Ć„ lage en kanaladresse som er enkel Ć„ huske, for eksempel kallenavn%s"
+
+#: ../../mod/new_channel.php:128 ../../mod/register.php:231
+msgid "Channel role and privacy"
+msgstr "Kanalrolle og personvern"
+
+#: ../../mod/new_channel.php:128 ../../mod/register.php:231
+msgid "Select a channel role with your privacy requirements."
+msgstr "Velg en kanalrolle for ditt personvernbehov."
+
+#: ../../mod/new_channel.php:128 ../../mod/register.php:231
+msgid "Read more about roles"
+msgstr "Les mer om roller"
+
+#: ../../mod/new_channel.php:131
+msgid "Create Channel"
+msgstr "Lag kanal"
+
+#: ../../mod/new_channel.php:132
+msgid ""
+"A channel is your identity on this network. It can represent a person, a "
+"blog, or a forum to name a few. Channels can make connections with other "
+"channels to share information with highly detailed permissions."
+msgstr "En kanal er din identitet i dette nettverket. Den kan representere en person, en blogg eller et forum for Ƅ nevne noe. Kanaler kan ha forbindelser til andre kanaler for Ƅ dele informasjon, og med svƦrt detaljerte tillatelser."
+
+#: ../../mod/new_channel.php:133
+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."
+
+#: ../../mod/notifications.php:26
+msgid "Invalid request identifier."
+msgstr "Ugyldig forespĆørselsidentifikator."
+
+#: ../../mod/notifications.php:35
+msgid "Discard"
+msgstr "Forkast"
+
+#: ../../mod/notifications.php:94 ../../mod/notify.php:53
+msgid "No more system notifications."
+msgstr "Ingen flere systemvarsler."
+
+#: ../../mod/notifications.php:98 ../../mod/notify.php:57
+msgid "System Notifications"
+msgstr "Systemvarsler"
+
+#: ../../mod/oexchange.php:23
+msgid "Unable to find your hub."
+msgstr "Ikke i stand til Ć„ finne hubben din."
+
+#: ../../mod/oexchange.php:37
+msgid "Post successful."
+msgstr "Innlegg vellykket."
+
+#: ../../mod/openid.php:26
+msgid "OpenID protocol error. No ID returned."
+msgstr "OpenID protokollfeil. Ingen ID ble returnert."
+
+#: ../../mod/page.php:126
+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."
+
+#: ../../mod/pconfig.php:27 ../../mod/pconfig.php:60
+msgid "This setting requires special processing and editing has been blocked."
+msgstr "Denne innstillingen krever spesiell behandling og redigering har blitt blokkert."
+
+#: ../../mod/pconfig.php:49
+msgid "Configuration Editor"
+msgstr "Konfigurasjonsbehandler"
+
+#: ../../mod/pconfig.php:50
+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."
+
+#: ../../mod/pdledit.php:14
msgid "Layout updated."
msgstr "Layout er oppdatert."
-#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53
+#: ../../mod/pdledit.php:30 ../../mod/pdledit.php:57
msgid "Edit System Page Description"
msgstr "Endre beskrivelsen av systemsiden"
-#: ../../mod/pdledit.php:48
+#: ../../mod/pdledit.php:52
msgid "Layout not found."
msgstr "Layouten ble ikke funnet."
-#: ../../mod/pdledit.php:54
+#: ../../mod/pdledit.php:58
msgid "Module Name:"
msgstr "Modulnavn:"
-#: ../../mod/pdledit.php:55
+#: ../../mod/pdledit.php:59
msgid "Layout Help"
msgstr "Layout-hjelp"
-#: ../../mod/register.php:44
-msgid "Maximum daily site registrations exceeded. Please try again tomorrow."
-msgstr "Antallet daglige registreringer ved nettstedet er overskredet. VƦr vennlig Ć„ prĆøve igjen imorgen."
+#: ../../mod/photos.php:79
+msgid "Page owner information could not be retrieved."
+msgstr "Informasjon om sideeier kunne ikke hentes."
-#: ../../mod/register.php:50
-msgid ""
-"Please indicate acceptance of the Terms of Service. Registration failed."
-msgstr "Vennligst angi at tjenesteavtalen er akseptert. Registrering mislyktes."
+#: ../../mod/photos.php:100
+msgid "Album not found."
+msgstr "Albumet ble ikke funnet."
-#: ../../mod/register.php:84
-msgid "Passwords do not match."
-msgstr "Passordene er ikke like."
+#: ../../mod/photos.php:127
+msgid "Delete Album"
+msgstr "Slett album"
-#: ../../mod/register.php:119
-msgid ""
-"Registration successful. Please check your email for validation "
-"instructions."
-msgstr "Registreringen er vellykket. Vennligst sjekk e-posten din for Ć„ bekrefte opprettelsen."
+#: ../../mod/photos.php:171 ../../mod/photos.php:1020
+msgid "Delete Photo"
+msgstr "Slett bilde"
-#: ../../mod/register.php:125
-msgid "Your registration is pending approval by the site owner."
-msgstr "Din registrering venter pƄ godkjenning av nettstedets eier."
+#: ../../mod/photos.php:501
+msgid "No photos selected"
+msgstr "Ingen bilder valgt"
-#: ../../mod/register.php:128
-msgid "Your registration can not be processed."
-msgstr "Din registrering kan ikke behandles."
+#: ../../mod/photos.php:550
+msgid "Access to this item is restricted."
+msgstr "Tilgang til dette elementet er begrenset."
-#: ../../mod/register.php:165
-msgid "Registration on this site/hub is by approval only."
-msgstr "Registrering pƄ dette nettstedet/denne hubben skjer bare gjennom godkjenning."
+#: ../../mod/photos.php:589
+#, 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."
-#: ../../mod/register.php:166
-msgid "<a href=\"pubsites\">Register at another affiliated site/hub</a>"
-msgstr "<a href=\"pubsites\">Registrer pƄ et annet tilknyttet nettsted/hub</a>"
+#: ../../mod/photos.php:592
+#, php-format
+msgid "%1$.2f MB photo storage used."
+msgstr "%1$.2f MB lagringsplass til bilder er brukt."
-#: ../../mod/register.php:176
-msgid ""
-"This site has exceeded the number of allowed daily account registrations. "
-"Please try again tomorrow."
-msgstr "Dette nettstedet har overskredet antallet tillate kontoregistreringer per dag. Vennligst prĆøv igjen imorgen."
+#: ../../mod/photos.php:628
+msgid "Upload Photos"
+msgstr "Last opp bilder"
-#: ../../mod/register.php:187
-msgid "Terms of Service"
-msgstr "Tjenesteavtale"
+#: ../../mod/photos.php:632
+msgid "Enter an album name"
+msgstr "Skriv et albumnavn"
-#: ../../mod/register.php:193
-#, php-format
-msgid "I accept the %s for this website"
-msgstr "Jeg godtar %s for dette nettstedet"
+#: ../../mod/photos.php:633
+msgid "or select an existing album (doubleclick)"
+msgstr "eller velg et eksisterende album (dobbeltklikk)"
-#: ../../mod/register.php:195
-#, php-format
-msgid "I am over 13 years of age and accept the %s for this website"
-msgstr "Jeg er over 13 Ć„r gammel og aksepterer %s for dette nettstedet."
+#: ../../mod/photos.php:634
+msgid "Create a status post for this upload"
+msgstr "Lag et statusinnlegg for denne opplastingen"
-#: ../../mod/register.php:209 ../../mod/admin.php:448
-msgid "Registration"
-msgstr "Registrering"
+#: ../../mod/photos.php:635
+msgid "Caption (optional):"
+msgstr "Bildetekst (valgfritt):"
-#: ../../mod/register.php:214
-msgid "Membership on this site is by invitation only."
-msgstr "Medlemskap ved dette nettstedet skjer kun via invitasjon."
+#: ../../mod/photos.php:636
+msgid "Description (optional):"
+msgstr "Beskrivelse (valgfritt):"
-#: ../../mod/register.php:215
-msgid "Please enter your invitation code"
-msgstr "Vennligst skriv din invitasjonskode"
+#: ../../mod/photos.php:663
+msgid "Album name could not be decoded"
+msgstr "Albumnavnet kunne ikke dekodes"
-#: ../../mod/register.php:218
-msgid "Your email address"
-msgstr "Din e-postadresse"
+#: ../../mod/photos.php:711 ../../mod/photos.php:1250
+#: ../../mod/photos.php:1267
+msgid "Contact Photos"
+msgstr "Kontaktbilder"
-#: ../../mod/register.php:219
-msgid "Choose a password"
-msgstr "Velg et passord"
+#: ../../mod/photos.php:734
+msgid "Show Newest First"
+msgstr "Vis nyeste fĆørst"
-#: ../../mod/register.php:220
-msgid "Please re-enter your password"
-msgstr "Vennligst skriv ditt passord en gang til"
+#: ../../mod/photos.php:736
+msgid "Show Oldest First"
+msgstr "Vis eldste fĆørst"
+
+#: ../../mod/photos.php:838
+msgid "Permission denied. Access to this item may be restricted."
+msgstr "Tillatelse avvist. Tilgang til dette elementet kan vƦre begrenset."
+
+#: ../../mod/photos.php:840
+msgid "Photo not available"
+msgstr "Bilde er utilgjengelig"
+
+#: ../../mod/photos.php:898
+msgid "Use as profile photo"
+msgstr "Bruk som profilbilde"
+
+#: ../../mod/photos.php:905
+msgid "Private Photo"
+msgstr "Privat bilde"
+
+#: ../../mod/photos.php:920
+msgid "View Full Size"
+msgstr "Vis i full stĆørrelse"
+
+#: ../../mod/photos.php:965 ../../mod/tagrm.php:133
+msgid "Remove"
+msgstr "Fjern"
+
+#: ../../mod/photos.php:999
+msgid "Edit photo"
+msgstr "Endre bilde"
+
+#: ../../mod/photos.php:1001
+msgid "Rotate CW (right)"
+msgstr "Roter med klokka (mot hĆøyre)"
+
+#: ../../mod/photos.php:1002
+msgid "Rotate CCW (left)"
+msgstr "Roter mot klokka (venstre)"
+
+#: ../../mod/photos.php:1005
+msgid "Enter a new album name"
+msgstr "Skriv et nytt albumnavn"
+
+#: ../../mod/photos.php:1006
+msgid "or select an existing one (doubleclick)"
+msgstr "eller velg et eksisterende album (dobbeltklikk)"
+
+#: ../../mod/photos.php:1009
+msgid "Caption"
+msgstr "Overskrift"
+
+#: ../../mod/photos.php:1011
+msgid "Add a Tag"
+msgstr "Legg til merkelapp"
+
+#: ../../mod/photos.php:1015
+msgid "Example: @bob, @Barbara_Jensen, @jim@example.com"
+msgstr "Eksempel: @bob, @Barbara_Jensen, @jim@example.com"
+
+#: ../../mod/photos.php:1018
+msgid "Flag as adult in album view"
+msgstr "Flag som voksent i albumvisning"
+
+#: ../../mod/photos.php:1210
+msgid "In This Photo:"
+msgstr "I dette bildet:"
+
+#: ../../mod/photos.php:1215
+msgid "Map"
+msgstr "Kart"
+
+#: ../../mod/photos.php:1306
+msgid "View Album"
+msgstr "Vis album"
+
+#: ../../mod/photos.php:1317 ../../mod/photos.php:1330
+#: ../../mod/photos.php:1331
+msgid "Recent Photos"
+msgstr "Nye bilder"
#: ../../mod/admin.php:54
msgid "Theme settings updated."
msgstr "Temainnstillinger er oppdatert."
-#: ../../mod/admin.php:162
+#: ../../mod/admin.php:174
msgid "# Accounts"
msgstr "# Kontoer"
-#: ../../mod/admin.php:163
+#: ../../mod/admin.php:175
msgid "# blocked accounts"
msgstr "# blokkerte kontoer"
-#: ../../mod/admin.php:164
+#: ../../mod/admin.php:176
msgid "# expired accounts"
msgstr "# utgƄtte kontoer"
-#: ../../mod/admin.php:165
+#: ../../mod/admin.php:177
msgid "# expiring accounts"
msgstr "# kontoer som holder pƄ Ƅ gƄ ut"
-#: ../../mod/admin.php:176
+#: ../../mod/admin.php:188
msgid "# Channels"
msgstr "# Kanaler"
-#: ../../mod/admin.php:177
+#: ../../mod/admin.php:189
msgid "# primary"
msgstr "# hoved"
-#: ../../mod/admin.php:178
+#: ../../mod/admin.php:190
msgid "# clones"
msgstr "# kloner"
-#: ../../mod/admin.php:184
+#: ../../mod/admin.php:196
msgid "Message queues"
msgstr "MeldingskĆøer"
-#: ../../mod/admin.php:200 ../../mod/admin.php:445 ../../mod/admin.php:545
-#: ../../mod/admin.php:812 ../../mod/admin.php:976 ../../mod/admin.php:1073
-#: ../../mod/admin.php:1113 ../../mod/admin.php:1273 ../../mod/admin.php:1307
-#: ../../mod/admin.php:1392
+#: ../../mod/admin.php:212 ../../mod/admin.php:455 ../../mod/admin.php:669
+#: ../../mod/admin.php:709 ../../mod/admin.php:984 ../../mod/admin.php:1148
+#: ../../mod/admin.php:1263 ../../mod/admin.php:1324 ../../mod/admin.php:1485
+#: ../../mod/admin.php:1519 ../../mod/admin.php:1604
msgid "Administration"
msgstr "Administrasjon"
-#: ../../mod/admin.php:201
+#: ../../mod/admin.php:213
msgid "Summary"
msgstr "Sammendrag"
-#: ../../mod/admin.php:204
+#: ../../mod/admin.php:216
msgid "Registered accounts"
msgstr "Registrerte kontoer"
-#: ../../mod/admin.php:205 ../../mod/admin.php:549
+#: ../../mod/admin.php:217 ../../mod/admin.php:673
msgid "Pending registrations"
msgstr "Ventende registreringer"
-#: ../../mod/admin.php:206
+#: ../../mod/admin.php:218
msgid "Registered channels"
msgstr "Registrerte kanaler"
-#: ../../mod/admin.php:207 ../../mod/admin.php:550
+#: ../../mod/admin.php:219 ../../mod/admin.php:674
msgid "Active plugins"
msgstr "Aktive tilleggsfunksjoner"
-#: ../../mod/admin.php:208
+#: ../../mod/admin.php:220
msgid "Version"
msgstr "Versjon"
-#: ../../mod/admin.php:329
+#: ../../mod/admin.php:339
msgid "Site settings updated."
msgstr "Nettstedsinnstillinger er oppdatert."
-#: ../../mod/admin.php:366 ../../mod/settings.php:793
+#: ../../mod/admin.php:376 ../../mod/settings.php:805
msgid "mobile"
msgstr "mobil"
-#: ../../mod/admin.php:368
+#: ../../mod/admin.php:378
msgid "experimental"
msgstr "eksperimentell"
-#: ../../mod/admin.php:370
+#: ../../mod/admin.php:380
msgid "unsupported"
msgstr "ikke stĆøttet"
-#: ../../mod/admin.php:416
+#: ../../mod/admin.php:426
msgid "Yes - with approval"
msgstr "Ja - med godkjenning"
-#: ../../mod/admin.php:422
+#: ../../mod/admin.php:432
msgid "My site is not a public server"
msgstr "Mitt nettsted er ikke en offentlig tjeneste"
-#: ../../mod/admin.php:423
+#: ../../mod/admin.php:433
msgid "My site has paid access only"
msgstr "Mitt nettsted gir kun tilgang mot betaling"
-#: ../../mod/admin.php:424
+#: ../../mod/admin.php:434
msgid "My site has free access only"
msgstr "Mitt nettsted har kun gratis tilgang"
-#: ../../mod/admin.php:425
+#: ../../mod/admin.php:435
msgid "My site offers free accounts with optional paid upgrades"
msgstr "Mitt nettsted tilbyr gratis konto med valgfri oppgradering til betalt tjeneste"
-#: ../../mod/admin.php:449
+#: ../../mod/admin.php:458 ../../mod/register.php:241
+msgid "Registration"
+msgstr "Registrering"
+
+#: ../../mod/admin.php:459
msgid "File upload"
msgstr "Last opp fil"
-#: ../../mod/admin.php:450
+#: ../../mod/admin.php:460
msgid "Policies"
msgstr "Retningslinjer"
-#: ../../mod/admin.php:455
+#: ../../mod/admin.php:465
msgid "Site name"
msgstr "Nettstedets navn"
-#: ../../mod/admin.php:456
+#: ../../mod/admin.php:466
msgid "Banner/Logo"
msgstr "Banner/Logo"
-#: ../../mod/admin.php:457
+#: ../../mod/admin.php:467
msgid "Administrator Information"
msgstr "Administratorinformasjon"
-#: ../../mod/admin.php:457
+#: ../../mod/admin.php:467
msgid ""
"Contact information for site administrators. Displayed on siteinfo page. "
"BBCode can be used here"
msgstr "Kontaktinformasjon til nettstedsadministratorer. Vises pƄ siteinfo-siden. BBCode kan brukes her"
-#: ../../mod/admin.php:458
+#: ../../mod/admin.php:468
msgid "System language"
msgstr "SystemsprƄk"
-#: ../../mod/admin.php:459
+#: ../../mod/admin.php:469
msgid "System theme"
msgstr "Systemtema"
-#: ../../mod/admin.php:459
+#: ../../mod/admin.php:469
msgid ""
"Default system theme - may be over-ridden by user profiles - <a href='#' "
"id='cnftheme'>change theme settings</a>"
msgstr "Standard systemtema - kan overstyres av brukerprofiler - <a href='#' id='cnftheme'>endre temainnstillinger</a>"
-#: ../../mod/admin.php:460
+#: ../../mod/admin.php:470
msgid "Mobile system theme"
msgstr "Mobilt systemtema"
-#: ../../mod/admin.php:460
+#: ../../mod/admin.php:470
msgid "Theme for mobile devices"
msgstr "Tema for mobile enheter"
-#: ../../mod/admin.php:462
+#: ../../mod/admin.php:472
msgid "Allow Feeds as Connections"
msgstr "Tillat strĆømmer som forbindelser"
-#: ../../mod/admin.php:462
+#: ../../mod/admin.php:472
msgid "(Heavy system resource usage)"
msgstr "(Tung bruk av systemressurser)"
-#: ../../mod/admin.php:463
+#: ../../mod/admin.php:473
msgid "Maximum image size"
msgstr "StĆørste bildestĆørrelse"
-#: ../../mod/admin.php:463
+#: ../../mod/admin.php:473
msgid ""
"Maximum size in bytes of uploaded images. Default is 0, which means no "
"limits."
msgstr "StĆørste stĆørrelse i bytes for opplastede bilder. Standard er 0, som betyr ubegrenset."
-#: ../../mod/admin.php:464
+#: ../../mod/admin.php:474
msgid "Does this site allow new member registration?"
msgstr "Tillater dette nettstedet registrering av nye medlemmer?"
-#: ../../mod/admin.php:465
+#: ../../mod/admin.php:475
msgid "Invitation only"
msgstr "Kun inviterte"
-#: ../../mod/admin.php:465
+#: ../../mod/admin.php:475
msgid ""
"Only allow new member registrations with an invitation code. Above register "
"policy must be set to Yes."
msgstr "Tillat bare nye medlemsregistreringer med en invitasjonskode. OvenstƄende retningslinjer for registrering mƄ vƦre satt til Ja."
-#: ../../mod/admin.php:466
+#: ../../mod/admin.php:476
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?"
-#: ../../mod/admin.php:467
+#: ../../mod/admin.php:477
msgid "Register text"
msgstr "Registreringstekst"
-#: ../../mod/admin.php:467
+#: ../../mod/admin.php:477
msgid "Will be displayed prominently on the registration page."
msgstr "Vil bli vist pƄ en fremtredende mƄte pƄ registreringssiden."
-#: ../../mod/admin.php:468
+#: ../../mod/admin.php:478
msgid "Site homepage to show visitors (default: login box)"
msgstr "Nettstedets hjemmeside som vises til besĆøkende (standard: innloggingsboks)"
-#: ../../mod/admin.php:468
+#: ../../mod/admin.php:478
msgid ""
"example: 'public' to show public stream, 'page/sys/home' to show a system "
"webpage called 'home' or 'include:home.html' to include a file."
msgstr "eksempel: 'public' for Ć„ vise offentlig strĆøm av innlegg, 'page/sys/home/ for Ć„ vise en system-webside called 'home\" eller 'include:home.html' for Ć„ inkludere en fil."
-#: ../../mod/admin.php:469
+#: ../../mod/admin.php:479
msgid "Preserve site homepage URL"
msgstr "Bevar URL-en til nettstedets hjemmeside"
-#: ../../mod/admin.php:469
+#: ../../mod/admin.php:479
msgid ""
"Present the site homepage in a frame at the original location instead of "
"redirecting"
msgstr "Presenter hjemmesiden til nettstedet i en ramme fra den opprinnelige plasseringen i stedet for Ć„ omdirigere"
-#: ../../mod/admin.php:470
+#: ../../mod/admin.php:480
msgid "Accounts abandoned after x days"
msgstr "Kontoer forlatt etter x dager"
-#: ../../mod/admin.php:470
+#: ../../mod/admin.php:480
msgid ""
"Will not waste system resources polling external sites for abandonded "
"accounts. Enter 0 for no time limit."
msgstr "Vil ikke kaste bort systemressurser pĆ„ Ć„ spĆørre eksterne nettsteder etter forlatte kontoer. Skriv 0 for Ć„ ikke sette noen tidsgrense."
-#: ../../mod/admin.php:471
+#: ../../mod/admin.php:481
msgid "Allowed friend domains"
msgstr "Tillatte vennedomener"
-#: ../../mod/admin.php:471
+#: ../../mod/admin.php:481
msgid ""
"Comma separated list of domains which are allowed to establish friendships "
"with this site. Wildcards are accepted. Empty to allow any domains"
msgstr "Kommaseparert liste over domener som har lov til Ć„ etablere vennskap med dette nettstedet. Jokertegn er akseptert. TĆøm for Ć„ tillate alle domener."
-#: ../../mod/admin.php:472
+#: ../../mod/admin.php:482
msgid "Allowed email domains"
msgstr "Tillate e-postdomener"
-#: ../../mod/admin.php:472
+#: ../../mod/admin.php:482
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"
-#: ../../mod/admin.php:473
+#: ../../mod/admin.php:483
msgid "Not allowed email domains"
msgstr "Ikke tillatte e-postdomener"
-#: ../../mod/admin.php:473
+#: ../../mod/admin.php:483
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."
-#: ../../mod/admin.php:474
-msgid "Block public"
-msgstr "Blokker offentlig tilgang"
-
-#: ../../mod/admin.php:474
-msgid ""
-"Check to block public access to all otherwise public personal pages on this "
-"site unless you are currently logged in."
-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."
-
-#: ../../mod/admin.php:475
+#: ../../mod/admin.php:484
msgid "Verify Email Addresses"
msgstr "Bekreft e-postadresser"
-#: ../../mod/admin.php:475
+#: ../../mod/admin.php:484
msgid ""
"Check to verify email addresses used in account registration (recommended)."
msgstr "Sett hake for Ć„ sjekke e-postadresser brukt ved kontoregistrering (anbefales)."
-#: ../../mod/admin.php:476
+#: ../../mod/admin.php:485
msgid "Force publish"
msgstr "Tving publisering"
-#: ../../mod/admin.php:476
+#: ../../mod/admin.php:485
msgid ""
"Check to force all profiles on this site to be listed in the site directory."
msgstr "Kryss av for Ć„ tvinge alle profiler pĆ„ dette nettstedet til Ć„ bli oppfĆørt i nettstedet sin katalog."
-#: ../../mod/admin.php:477
+#: ../../mod/admin.php:486
msgid "Import Public Streams"
msgstr "Importer offentlige innholdsstrĆømmer"
-#: ../../mod/admin.php:477
+#: ../../mod/admin.php:486
msgid ""
"Import and allow access to public content pulled from other sites. Warning: "
"this content is unmoderated."
msgstr "Importer og gi tilgang til offentlig innhold trukket inn fra andre nettsteder. Advarsel: dette innholdet er ikke moderert."
-#: ../../mod/admin.php:478
+#: ../../mod/admin.php:487
msgid "login on Homepage"
msgstr "Logg inn pƄ hjemmesiden"
-#: ../../mod/admin.php:478
+#: ../../mod/admin.php:487
msgid ""
"Present a login box to visitors on the home page if no other content has "
"been configured."
msgstr "Presenter en innloggingsboks til besĆøkende pĆ„ hjemmesiden hvis ikke noe annet innhold har blitt konfigurert."
-#: ../../mod/admin.php:480
+#: ../../mod/admin.php:489
msgid "Directory Server URL"
msgstr "Katalogtjener URL"
-#: ../../mod/admin.php:480
+#: ../../mod/admin.php:489
msgid "Default directory server"
msgstr "Standard katalogtjener"
-#: ../../mod/admin.php:482
+#: ../../mod/admin.php:491
msgid "Proxy user"
msgstr "Brukernavn mellomtjener"
-#: ../../mod/admin.php:483
+#: ../../mod/admin.php:492
msgid "Proxy URL"
msgstr "Mellomtjener URL"
-#: ../../mod/admin.php:484
+#: ../../mod/admin.php:493
msgid "Network timeout"
msgstr "Nettverk tidsavbrudd"
-#: ../../mod/admin.php:484
+#: ../../mod/admin.php:493
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
msgstr "Verdien i sekunder. Skriv 0 for ubegrenset (ikke anbefalt)."
-#: ../../mod/admin.php:485
+#: ../../mod/admin.php:494
msgid "Delivery interval"
msgstr "Leveringsinterval"
-#: ../../mod/admin.php:485
+#: ../../mod/admin.php:494
msgid ""
"Delay background delivery processes by this many seconds to reduce system "
"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
"for large dedicated servers."
msgstr "Forsink leveringsprosessene i bakgrunnen med dette antall sekunder for Ć„ redusere systembelastningen. Anbefaling: 4-5 for delte tjenere, 2-3 for virtuelle tjenere, 0-1 for stĆørre dedikerte tjenere."
-#: ../../mod/admin.php:486
+#: ../../mod/admin.php:495
msgid "Deliveries per process"
msgstr "Leveranser per prosess"
-#: ../../mod/admin.php:486
+#: ../../mod/admin.php:495
msgid ""
"Number of deliveries to attempt in a single operating system process. Adjust"
" if necessary to tune system performance. Recommend: 1-5."
msgstr "Antall leveranser som forsĆøkes i en enkelt operativsystemprosess. Juster om nĆødvendig for Ć„ fininnstille systemets yteevne. Anbefaling: 1-5."
-#: ../../mod/admin.php:487
+#: ../../mod/admin.php:496
msgid "Poll interval"
msgstr "SpĆørreintervall"
-#: ../../mod/admin.php:487
+#: ../../mod/admin.php:496
msgid ""
"Delay background polling processes by this many seconds to reduce system "
"load. If 0, use delivery interval."
msgstr "Forsink spĆørreprosessene i bakgrunnen med dette antall sekunder for Ć„ redusere systembelastningen. Hvis 0, bruk dette leveringsintervallet."
-#: ../../mod/admin.php:488
+#: ../../mod/admin.php:497
msgid "Maximum Load Average"
msgstr "StĆørste belastningsgjennomsnitt"
-#: ../../mod/admin.php:488
+#: ../../mod/admin.php:497
msgid ""
"Maximum system load before delivery and poll processes are deferred - "
"default 50."
msgstr "StĆørste systembelastning fĆør leverings- og spĆørreprosesser blir utsatt - standard 50."
-#: ../../mod/admin.php:489
-msgid "Expiration period in days for imported (matrix/network) content"
-msgstr "Antall dager fĆør importert innhold (matrix/nettverk) utgĆ„r"
+#: ../../mod/admin.php:498
+msgid "Expiration period in days for imported (grid/network) content"
+msgstr "Antall dager fĆør importert innhold (nettet/nettverk) utgĆ„r"
-#: ../../mod/admin.php:489
+#: ../../mod/admin.php:498
msgid "0 for no expiration of imported content"
msgstr "0 dersom importert innhold ikke skal utgƄ"
-#: ../../mod/admin.php:537
+#: ../../mod/admin.php:635 ../../mod/admin.php:636 ../../mod/settings.php:729
+msgid "Off"
+msgstr "Av"
+
+#: ../../mod/admin.php:635 ../../mod/admin.php:636 ../../mod/settings.php:729
+msgid "On"
+msgstr "PĆ„"
+
+#: ../../mod/admin.php:636
+#, php-format
+msgid "Lock feature %s"
+msgstr "LĆ„s funksjon %s"
+
+#: ../../mod/admin.php:644
+msgid "Manage Additional Features"
+msgstr "HĆ„ndter tilleggsfunksjoner"
+
+#: ../../mod/admin.php:661
msgid "No server found"
msgstr "Ingen tjener funnet"
-#: ../../mod/admin.php:544 ../../mod/admin.php:826
+#: ../../mod/admin.php:668 ../../mod/admin.php:998
msgid "ID"
msgstr "ID"
-#: ../../mod/admin.php:544
+#: ../../mod/admin.php:668
msgid "for channel"
msgstr "for kanalen"
-#: ../../mod/admin.php:544
+#: ../../mod/admin.php:668
msgid "on server"
msgstr "pƄ tjener"
-#: ../../mod/admin.php:544
-msgid "Status"
-msgstr "Status"
-
-#: ../../mod/admin.php:546
+#: ../../mod/admin.php:670
msgid "Server"
msgstr "Tjener"
-#: ../../mod/admin.php:563
+#: ../../mod/admin.php:712
+msgid "Block public"
+msgstr "Blokker offentlig tilgang"
+
+#: ../../mod/admin.php:712
+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."
+
+#: ../../mod/admin.php:713
+msgid "Allow communications only from these sites"
+msgstr "Tillat kommunikasjon med bare disse nettstedene"
+
+#: ../../mod/admin.php:713
+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"
+
+#: ../../mod/admin.php:714
+msgid "Block communications from these sites"
+msgstr "Blokker kommunikasjon fra disse nettstedene"
+
+#: ../../mod/admin.php:715
+msgid "Allow communications only from these channels"
+msgstr "Tillat kommunikasjon med bare disse kanalene"
+
+#: ../../mod/admin.php:715
+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"
+
+#: ../../mod/admin.php:716
+msgid "Block communications from these channels"
+msgstr "Blokker kommunikasjon fra disse kanalene"
+
+#: ../../mod/admin.php:717
+msgid "Allow embedded HTML content only from these domains"
+msgstr "Tillat innebygget HTML-innhold fra bare disse domenene"
+
+#: ../../mod/admin.php:717
+msgid "One site per line. Leave empty to allow from any site by default"
+msgstr "Et nettsted per linje. La stƄ tomt for Ƅ tillate ethvert nettsted som standard"
+
+#: ../../mod/admin.php:718
+msgid "Block embedded HTML from these domains"
+msgstr "Blokker innbygget HTML fra disse domenene"
+
+#: ../../mod/admin.php:720
+msgid "Cooperative embed security"
+msgstr "Kooperativ innebyggingssikkerhet"
+
+#: ../../mod/admin.php:720
+msgid "Enable to share embed security with other compatible sites/hubs"
+msgstr "Skru pƄ deling av innebyggingssikkerhet med andre kompatible nettsteder/hubber"
+
+#: ../../mod/admin.php:735
msgid "Update has been marked successful"
msgstr "Oppdateringen har blitt merket som en suksess"
-#: ../../mod/admin.php:573
+#: ../../mod/admin.php:745
#, php-format
msgid "Executing %s failed. Check system logs."
msgstr "UtfĆøring av %s feilet. Sjekk systemlogger."
-#: ../../mod/admin.php:576
+#: ../../mod/admin.php:748
#, php-format
msgid "Update %s was successfully applied."
msgstr "Oppdatering %s ble gjennomfĆørt med suksess."
-#: ../../mod/admin.php:580
+#: ../../mod/admin.php:752
#, php-format
msgid "Update %s did not return a status. Unknown if it succeeded."
msgstr "Oppdatering %s returnerte ingen status. Det er ukjent om den ble vellykket."
-#: ../../mod/admin.php:583
+#: ../../mod/admin.php:755
#, php-format
msgid "Update function %s could not be found."
msgstr "Oppdatering av funksjon %s kunne ikke finnes."
-#: ../../mod/admin.php:599
+#: ../../mod/admin.php:771
msgid "No failed updates."
msgstr "Ingen mislykkede oppdateringer."
-#: ../../mod/admin.php:603
+#: ../../mod/admin.php:775
msgid "Failed Updates"
msgstr "Mislykkede oppdateringer"
-#: ../../mod/admin.php:605
+#: ../../mod/admin.php:777
msgid "Mark success (if update was manually applied)"
msgstr "Marker suksess (hvis oppdateringen ble gjennomfĆørt manuelt)"
-#: ../../mod/admin.php:606
+#: ../../mod/admin.php:778
msgid "Attempt to execute this update step automatically"
msgstr "PrĆøv Ć„ gjennomfĆøre dette oppdateringstrinnet automatisk"
-#: ../../mod/admin.php:637
+#: ../../mod/admin.php:809
msgid "Queue Statistics"
msgstr "KĆøstatistikk"
-#: ../../mod/admin.php:638
+#: ../../mod/admin.php:810
msgid "Total Entries"
msgstr "Totalt antall oppfĆøringer"
-#: ../../mod/admin.php:639
+#: ../../mod/admin.php:811
msgid "Priority"
msgstr "Prioritet"
-#: ../../mod/admin.php:640
+#: ../../mod/admin.php:812
msgid "Destination URL"
msgstr "MĆ„l-URL"
-#: ../../mod/admin.php:641
+#: ../../mod/admin.php:813
msgid "Mark hub permanently offline"
msgstr "Merk hub som permanent offline"
-#: ../../mod/admin.php:642
+#: ../../mod/admin.php:814
msgid "Empty queue for this hub"
msgstr "TĆøm kĆøen for denne hubben"
-#: ../../mod/admin.php:643
+#: ../../mod/admin.php:815
msgid "Last known contact"
msgstr "Siste kjente kontakt"
-#: ../../mod/admin.php:679
+#: ../../mod/admin.php:851
#, 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"
-#: ../../mod/admin.php:687
+#: ../../mod/admin.php:859
#, php-format
msgid "%s account deleted"
msgid_plural "%s accounts deleted"
msgstr[0] "%s konto slettet"
msgstr[1] "%s kontoer slettet"
-#: ../../mod/admin.php:723
+#: ../../mod/admin.php:895
msgid "Account not found"
msgstr "Kontoen ble ikke funnet"
-#: ../../mod/admin.php:735
+#: ../../mod/admin.php:907
#, php-format
msgid "Account '%s' deleted"
msgstr "Kontoen '%s' slettet"
-#: ../../mod/admin.php:743
+#: ../../mod/admin.php:915
#, php-format
msgid "Account '%s' blocked"
msgstr "Kontoen '%s' blokkert"
-#: ../../mod/admin.php:751
+#: ../../mod/admin.php:923
#, php-format
msgid "Account '%s' unblocked"
msgstr "Kontoen '%s' er ikke blokkert lenger"
-#: ../../mod/admin.php:813 ../../mod/admin.php:825
+#: ../../mod/admin.php:985 ../../mod/admin.php:997
msgid "Users"
msgstr "Brukere"
-#: ../../mod/admin.php:815 ../../mod/admin.php:979
+#: ../../mod/admin.php:987 ../../mod/admin.php:1151
msgid "select all"
msgstr "velg alle"
-#: ../../mod/admin.php:816
+#: ../../mod/admin.php:988
msgid "User registrations waiting for confirm"
msgstr "Brukerregistreringer som venter pƄ bekreftelse"
-#: ../../mod/admin.php:817
+#: ../../mod/admin.php:989
msgid "Request date"
msgstr "Dato for forespĆørsel"
-#: ../../mod/admin.php:818
+#: ../../mod/admin.php:990
msgid "No registrations."
msgstr "Ingen registreringer."
-#: ../../mod/admin.php:820
+#: ../../mod/admin.php:992
msgid "Deny"
msgstr "AvslƄ"
-#: ../../mod/admin.php:826
+#: ../../mod/admin.php:998
msgid "Register date"
msgstr "Registreringsdato"
-#: ../../mod/admin.php:826
+#: ../../mod/admin.php:998
msgid "Last login"
msgstr "Siste innlogging"
-#: ../../mod/admin.php:826
+#: ../../mod/admin.php:998
msgid "Expires"
msgstr "UtlĆøper"
-#: ../../mod/admin.php:826
+#: ../../mod/admin.php:998
msgid "Service Class"
msgstr "Tjenesteklasse"
-#: ../../mod/admin.php:828
+#: ../../mod/admin.php:1000
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?"
-#: ../../mod/admin.php:829
+#: ../../mod/admin.php:1001
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?"
-#: ../../mod/admin.php:865
+#: ../../mod/admin.php:1037
#, 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"
-#: ../../mod/admin.php:874
+#: ../../mod/admin.php:1046
#, 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"
-#: ../../mod/admin.php:881
+#: ../../mod/admin.php:1053
#, php-format
msgid "%s channel deleted"
msgid_plural "%s channels deleted"
msgstr[0] "%s kanal slettet"
msgstr[1] "%s kanaler slettet"
-#: ../../mod/admin.php:901
+#: ../../mod/admin.php:1073
msgid "Channel not found"
msgstr "Kanalen ble ikke funnet"
-#: ../../mod/admin.php:912
+#: ../../mod/admin.php:1084
#, php-format
msgid "Channel '%s' deleted"
msgstr "Kanalen '%s' er slettet"
-#: ../../mod/admin.php:924
+#: ../../mod/admin.php:1096
#, php-format
msgid "Channel '%s' censored"
msgstr "Kanalen '%s' er sensurert"
-#: ../../mod/admin.php:924
+#: ../../mod/admin.php:1096
#, php-format
msgid "Channel '%s' uncensored"
msgstr "Kanalen '%s' er ikke sensurert lenger"
-#: ../../mod/admin.php:935
+#: ../../mod/admin.php:1107
#, php-format
msgid "Channel '%s' code allowed"
msgstr "Kanal '%s' kode tillatt"
-#: ../../mod/admin.php:935
+#: ../../mod/admin.php:1107
#, php-format
msgid "Channel '%s' code disallowed"
msgstr "Kanal '%s' kode ikke tillatt"
-#: ../../mod/admin.php:981
+#: ../../mod/admin.php:1153
msgid "Censor"
msgstr "Sensurer"
-#: ../../mod/admin.php:982
+#: ../../mod/admin.php:1154
msgid "Uncensor"
msgstr "Ikke sensurer lenger"
-#: ../../mod/admin.php:983
+#: ../../mod/admin.php:1155
msgid "Allow Code"
msgstr "Tillat kode"
-#: ../../mod/admin.php:984
+#: ../../mod/admin.php:1156
msgid "Disallow Code"
msgstr "Ikke tillat kode"
-#: ../../mod/admin.php:986
+#: ../../mod/admin.php:1158
msgid "UID"
msgstr "UID"
-#: ../../mod/admin.php:988
+#: ../../mod/admin.php:1158 ../../mod/profiles.php:457
+msgid "Address"
+msgstr "Adresse"
+
+#: ../../mod/admin.php:1160
msgid ""
"Selected channels will be deleted!\\n\\nEverything that was posted in these "
"channels on this site will be permanently deleted!\\n\\nAre you sure?"
msgstr "Valgte kanaler vil bli slettet!\\n\\nAlt innhold som er lagt inn i disse kanalene pƄ dette nettstedet vil bli slettet for alltid!\\n\\nEr du sikker pƄ at du vil slette disse kanalene med alt innhold?"
-#: ../../mod/admin.php:989
+#: ../../mod/admin.php:1161
msgid ""
"The channel {0} will be deleted!\\n\\nEverything that was posted in this "
"channel on this site will be permanently deleted!\\n\\nAre you sure?"
msgstr "Kanalen {0} vil bli slettet!\\n\\nAlt innhold som er lagt inn i denne kanalen pƄ dettet nettstedet vil bli slettet for alltid!\\n\\nEr du sikker pƄ at du vil slette denne kanalen med alt innhold?"
-#: ../../mod/admin.php:1029
+#: ../../mod/admin.php:1218
#, php-format
msgid "Plugin %s disabled."
msgstr "Tilleggsfunksjonen %s er avskrudd."
-#: ../../mod/admin.php:1033
+#: ../../mod/admin.php:1222
#, php-format
msgid "Plugin %s enabled."
msgstr "Tilleggsfunksjonen %s er pƄskrudd."
-#: ../../mod/admin.php:1043 ../../mod/admin.php:1246
+#: ../../mod/admin.php:1232 ../../mod/admin.php:1458
msgid "Disable"
msgstr "Skru av"
-#: ../../mod/admin.php:1046 ../../mod/admin.php:1248
+#: ../../mod/admin.php:1235 ../../mod/admin.php:1460
msgid "Enable"
msgstr "Skru pƄ"
-#: ../../mod/admin.php:1075 ../../mod/admin.php:1275
+#: ../../mod/admin.php:1265 ../../mod/admin.php:1487
msgid "Toggle"
msgstr "Skru av og pƄ"
-#: ../../mod/admin.php:1083 ../../mod/admin.php:1285
+#: ../../mod/admin.php:1273 ../../mod/admin.php:1497
msgid "Author: "
msgstr "Forfatter:"
-#: ../../mod/admin.php:1084 ../../mod/admin.php:1286
+#: ../../mod/admin.php:1274 ../../mod/admin.php:1498
msgid "Maintainer: "
msgstr "Vedlikeholder:"
-#: ../../mod/admin.php:1211
+#: ../../mod/admin.php:1275
+msgid "Minimum project version: "
+msgstr "Minimum prosjektversjon:"
+
+#: ../../mod/admin.php:1276
+msgid "Maximum project version: "
+msgstr "Maksimum prosjektversjon:"
+
+#: ../../mod/admin.php:1277
+msgid "Minimum PHP version: "
+msgstr "Minimum PHP-versjon:"
+
+#: ../../mod/admin.php:1278
+msgid "Requires: "
+msgstr "Krever:"
+
+#: ../../mod/admin.php:1279 ../../mod/admin.php:1330
+msgid "Disabled - version incompatibility"
+msgstr "Skrudd av - versjonsinkompatibilitet"
+
+#: ../../mod/admin.php:1423
msgid "No themes found."
msgstr "Ingen temaer er funnet."
-#: ../../mod/admin.php:1267
+#: ../../mod/admin.php:1479
msgid "Screenshot"
msgstr "Skjermbilde"
-#: ../../mod/admin.php:1313
+#: ../../mod/admin.php:1525
msgid "[Experimental]"
msgstr "[Eksperimentelt]"
-#: ../../mod/admin.php:1314
+#: ../../mod/admin.php:1526
msgid "[Unsupported]"
msgstr "[Ingen stĆøtte]"
-#: ../../mod/admin.php:1338
+#: ../../mod/admin.php:1550
msgid "Log settings updated."
msgstr "Logginnstillinger er oppdatert."
-#: ../../mod/admin.php:1395
+#: ../../mod/admin.php:1607
msgid "Clear"
msgstr "TĆøm"
-#: ../../mod/admin.php:1401
+#: ../../mod/admin.php:1613
msgid "Debugging"
msgstr "FeilsĆøking"
-#: ../../mod/admin.php:1402
+#: ../../mod/admin.php:1614
msgid "Log file"
msgstr "Loggfil"
-#: ../../mod/admin.php:1402
+#: ../../mod/admin.php:1614
msgid ""
"Must be writable by web server. Relative to your Red top-level directory."
msgstr "MƄ kunne skrives til av webtjenesten. Relativ til din Red sin toppnivƄkatalog."
-#: ../../mod/admin.php:1403
+#: ../../mod/admin.php:1615
msgid "Log level"
msgstr "LoggnivƄ"
-#: ../../mod/admin.php:1449
+#: ../../mod/admin.php:1661
msgid "New Profile Field"
msgstr "Nytt profilfelt"
-#: ../../mod/admin.php:1450 ../../mod/admin.php:1470
+#: ../../mod/admin.php:1662 ../../mod/admin.php:1682
msgid "Field nickname"
msgstr "Feltets kallenavn"
-#: ../../mod/admin.php:1450 ../../mod/admin.php:1470
+#: ../../mod/admin.php:1662 ../../mod/admin.php:1682
msgid "System name of field"
msgstr "Systemnavnet til feltet"
-#: ../../mod/admin.php:1451 ../../mod/admin.php:1471
+#: ../../mod/admin.php:1663 ../../mod/admin.php:1683
msgid "Input type"
msgstr "Inndata-type"
-#: ../../mod/admin.php:1452 ../../mod/admin.php:1472
+#: ../../mod/admin.php:1664 ../../mod/admin.php:1684
msgid "Field Name"
msgstr "Feltnavn"
-#: ../../mod/admin.php:1452 ../../mod/admin.php:1472
+#: ../../mod/admin.php:1664 ../../mod/admin.php:1684
msgid "Label on profile pages"
msgstr "Merkelapp pƄ profilsider"
-#: ../../mod/admin.php:1453 ../../mod/admin.php:1473
+#: ../../mod/admin.php:1665 ../../mod/admin.php:1685
msgid "Help text"
msgstr "Hjelpetekst"
-#: ../../mod/admin.php:1453 ../../mod/admin.php:1473
+#: ../../mod/admin.php:1665 ../../mod/admin.php:1685
msgid "Additional info (optional)"
msgstr "Tilleggsinformasjon (valgfritt)"
-#: ../../mod/admin.php:1463
+#: ../../mod/admin.php:1675
msgid "Field definition not found"
msgstr "Feltdefinisjonen ble ikke funnet"
-#: ../../mod/admin.php:1469
+#: ../../mod/admin.php:1681
msgid "Edit Profile Field"
msgstr "Endre profilfelt"
-#: ../../mod/editlayout.php:112
-msgid "Delete layout?"
-msgstr "Slett layout?"
+#: ../../mod/poke.php:165
+msgid "Poke somebody"
+msgstr "Dult noen"
-#: ../../mod/editlayout.php:159 ../../mod/layouts.php:124
-msgid "Layout Description (Optional)"
-msgstr "Layoutens beskrivelse (valgfritt)"
+#: ../../mod/poke.php:168
+msgid "Poke/Prod"
+msgstr "Prikke/oppildne"
-#: ../../mod/editlayout.php:161 ../../mod/layouts.php:121
-#: ../../mod/layouts.php:179
-msgid "Layout Name"
-msgstr "Layout-navn"
+#: ../../mod/poke.php:169
+msgid "Poke, prod or do other things to somebody"
+msgstr "Dult, prikk eller gjĆør andre ting med noen"
-#: ../../mod/editlayout.php:178
-msgid "Edit Layout"
-msgstr "Endre layout"
+#: ../../mod/poke.php:176
+msgid "Recipient"
+msgstr "Mottaker"
+
+#: ../../mod/poke.php:177
+msgid "Choose what you wish to do to recipient"
+msgstr "Velg hva du Ćønsker Ć„ gjĆøre med mottakeren"
+
+#: ../../mod/poke.php:180 ../../mod/poke.php:181
+msgid "Make this post private"
+msgstr "GjĆør dette innlegget privat"
+
+#: ../../mod/probe.php:24 ../../mod/probe.php:30
+#, php-format
+msgid "Fetching URL returns error: %1$s"
+msgstr "Henting av URL gir fĆølgende feil: %1$s"
+
+#: ../../mod/profile_photo.php:112 ../../mod/cover_photo.php:54
+msgid "Image uploaded but image cropping failed."
+msgstr "Bildet ble lastet opp, men beskjƦring av bildet mislyktes."
+
+#: ../../mod/profile_photo.php:166 ../../mod/cover_photo.php:150
+msgid "Image resize failed."
+msgstr "Endring av bildestĆørrelse mislyktes."
+
+#: ../../mod/profile_photo.php:212
+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."
+
+#: ../../mod/profile_photo.php:250 ../../mod/cover_photo.php:188
+msgid "Image upload failed."
+msgstr "Opplasting av bildet mislyktes."
+
+#: ../../mod/profile_photo.php:269 ../../mod/cover_photo.php:206
+msgid "Unable to process image."
+msgstr "Kan ikke behandle bildet."
+
+#: ../../mod/profile_photo.php:316 ../../mod/profile_photo.php:357
+#: ../../mod/cover_photo.php:299 ../../mod/cover_photo.php:314
+msgid "Photo not available."
+msgstr "Bildet er ikke tilgjengelig."
+
+#: ../../mod/profile_photo.php:398 ../../mod/cover_photo.php:350
+msgid "Upload File:"
+msgstr "Last opp fil:"
+
+#: ../../mod/profile_photo.php:399 ../../mod/cover_photo.php:351
+msgid "Select a profile:"
+msgstr "Velg en profil:"
+
+#: ../../mod/profile_photo.php:400
+msgid "Upload Profile Photo"
+msgstr "Last opp profilbilde:"
+
+#: ../../mod/profile_photo.php:407 ../../mod/settings.php:992
+#: ../../mod/cover_photo.php:357
+msgid "or"
+msgstr "eller"
+
+#: ../../mod/profile_photo.php:407 ../../mod/cover_photo.php:357
+msgid "skip this step"
+msgstr "hopp over dette steget"
+
+#: ../../mod/profile_photo.php:407 ../../mod/cover_photo.php:357
+msgid "select a photo from your photo albums"
+msgstr "velg et bilde fra dine fotoalbum"
+
+#: ../../mod/profile_photo.php:423 ../../mod/cover_photo.php:373
+msgid "Crop Image"
+msgstr "BeskjƦr bildet"
+
+#: ../../mod/profile_photo.php:424 ../../mod/cover_photo.php:374
+msgid "Please adjust the image cropping for optimum viewing."
+msgstr "Vennligst juster bildebeskjƦringen for optimal visning."
+
+#: ../../mod/profile_photo.php:426 ../../mod/cover_photo.php:376
+msgid "Done Editing"
+msgstr "Avslutt redigering"
+
+#: ../../mod/profiles.php:19 ../../mod/profiles.php:184
+#: ../../mod/profiles.php:241 ../../mod/profiles.php:608
+msgid "Profile not found."
+msgstr "Profilen ble ikke funnet."
+
+#: ../../mod/profiles.php:39
+msgid "Profile deleted."
+msgstr "Profilen er slettet."
+
+#: ../../mod/profiles.php:63 ../../mod/profiles.php:99
+msgid "Profile-"
+msgstr "Profil-"
+
+#: ../../mod/profiles.php:84 ../../mod/profiles.php:127
+msgid "New profile created."
+msgstr "Ny profil opprettet."
+
+#: ../../mod/profiles.php:105
+msgid "Profile unavailable to clone."
+msgstr "Profilen er utilgjengelig for klonen."
+
+#: ../../mod/profiles.php:146
+msgid "Profile unavailable to export."
+msgstr "Profilen er utilgjengelig for eksport."
+
+#: ../../mod/profiles.php:251
+msgid "Profile Name is required."
+msgstr "Profilnavn er pƄkrevd."
+
+#: ../../mod/profiles.php:414
+msgid "Marital Status"
+msgstr "Sivilstand"
+
+#: ../../mod/profiles.php:418
+msgid "Romantic Partner"
+msgstr "Romantisk partner"
+
+#: ../../mod/profiles.php:422
+msgid "Likes"
+msgstr "Liker"
+
+#: ../../mod/profiles.php:426
+msgid "Dislikes"
+msgstr "Liker ikke"
+
+#: ../../mod/profiles.php:430
+msgid "Work/Employment"
+msgstr "Arbeid/sysselsetting"
+
+#: ../../mod/profiles.php:433
+msgid "Religion"
+msgstr "Religion"
+
+#: ../../mod/profiles.php:437
+msgid "Political Views"
+msgstr "Politiske synspunkter"
+
+#: ../../mod/profiles.php:445
+msgid "Sexual Preference"
+msgstr "Seksuelle preferanser"
+
+#: ../../mod/profiles.php:449
+msgid "Homepage"
+msgstr "Hjemmeside"
+
+#: ../../mod/profiles.php:453
+msgid "Interests"
+msgstr "Interesser"
+
+#: ../../mod/profiles.php:547
+msgid "Profile updated."
+msgstr "Profilen er oppdatert."
+
+#: ../../mod/profiles.php:634
+msgid "Hide your contact/friend list from viewers of this profile?"
+msgstr "Skjul kontakt-/vennelisten din fra de som ser pƄ denne profilen?"
+
+#: ../../mod/profiles.php:674
+msgid "Edit Profile Details"
+msgstr "Endre profildetaljer"
+
+#: ../../mod/profiles.php:676
+msgid "View this profile"
+msgstr "Vis denne profilen"
+
+#: ../../mod/profiles.php:678
+msgid "Change Profile Photo"
+msgstr "Endre profilbilde"
+
+#: ../../mod/profiles.php:679
+msgid "Create a new profile using these settings"
+msgstr "Lag en ny profil ved Ć„ bruke disse innstillingene"
+
+#: ../../mod/profiles.php:680
+msgid "Clone this profile"
+msgstr "Klon denne profilen"
+
+#: ../../mod/profiles.php:681
+msgid "Delete this profile"
+msgstr "Slett denne profilen"
+
+#: ../../mod/profiles.php:683
+msgid "Import profile from file"
+msgstr "Importer profil fra fil"
+
+#: ../../mod/profiles.php:684
+msgid "Export profile to file"
+msgstr "Eksporter profil til fil"
+
+#: ../../mod/profiles.php:685
+msgid "Profile Name:"
+msgstr "Profilnavn:"
+
+#: ../../mod/profiles.php:686
+msgid "Your Full Name:"
+msgstr "Ditt fulle navn:"
+
+#: ../../mod/profiles.php:687
+msgid "Title/Description:"
+msgstr "Tittel/Beskrivelse:"
+
+#: ../../mod/profiles.php:688
+msgid "Your Gender:"
+msgstr "Ditt kjĆønn:"
+
+#: ../../mod/profiles.php:689
+msgid "Birthday :"
+msgstr "FĆødselsdag:"
+
+#: ../../mod/profiles.php:690
+msgid "Street Address:"
+msgstr "Gateadresse:"
+
+#: ../../mod/profiles.php:691
+msgid "Locality/City:"
+msgstr "Sted/By:"
+
+#: ../../mod/profiles.php:692
+msgid "Postal/Zip Code:"
+msgstr "Postnummer/ZIP-kode:"
+
+#: ../../mod/profiles.php:693
+msgid "Country:"
+msgstr "Land:"
+
+#: ../../mod/profiles.php:694
+msgid "Region/State:"
+msgstr "Region/fylke:"
+
+#: ../../mod/profiles.php:695
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+msgstr "<span class=\"heart\">&hearts;</span> Sivilstand:"
+
+#: ../../mod/profiles.php:696
+msgid "Who: (if applicable)"
+msgstr "Hvem: (hvis det er aktuelt) "
+
+#: ../../mod/profiles.php:697
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+msgstr "Eksempler: kari123, Kari Villiamsen, kari@example.com"
+
+#: ../../mod/profiles.php:698
+msgid "Since [date]:"
+msgstr "Siden [dato]:"
+
+#: ../../mod/profiles.php:700
+msgid "Homepage URL:"
+msgstr "Hjemmeside URL:"
+
+#: ../../mod/profiles.php:703
+msgid "Religious Views:"
+msgstr "ReligiĆøse synspunkter:"
+
+#: ../../mod/profiles.php:704
+msgid "Keywords:"
+msgstr "NĆøkkelord:"
+
+#: ../../mod/profiles.php:707
+msgid "Example: fishing photography software"
+msgstr "Eksempel: fisking fotografering programvare"
+
+#: ../../mod/profiles.php:708
+msgid "Used in directory listings"
+msgstr "Brukt i katalogoppfĆøringer"
+
+#: ../../mod/profiles.php:709
+msgid "Tell us about yourself..."
+msgstr "Fortell oss om deg selv..."
+
+#: ../../mod/profiles.php:710
+msgid "Hobbies/Interests"
+msgstr "Hobbier/Interesser"
+
+#: ../../mod/profiles.php:711
+msgid "Contact information and Social Networks"
+msgstr "Kontaktinformasjon og sosiale nettverk"
+
+#: ../../mod/profiles.php:712
+msgid "My other channels"
+msgstr "Mine andre kanaler"
+
+#: ../../mod/profiles.php:713
+msgid "Musical interests"
+msgstr "Musikkinteresser"
+
+#: ../../mod/profiles.php:714
+msgid "Books, literature"
+msgstr "BĆøker, litteratur"
+
+#: ../../mod/profiles.php:715
+msgid "Television"
+msgstr "TV/fjernsyn"
+
+#: ../../mod/profiles.php:716
+msgid "Film/dance/culture/entertainment"
+msgstr "Film/dans/kultur/underholdning"
+
+#: ../../mod/profiles.php:717
+msgid "Love/romance"
+msgstr "KjƦrlighet/romantikk"
+
+#: ../../mod/profiles.php:718
+msgid "Work/employment"
+msgstr "Arbeid/sysselsetting"
+
+#: ../../mod/profiles.php:719
+msgid "School/education"
+msgstr "Skole/utdanning"
+
+#: ../../mod/profiles.php:725
+msgid "This is your default profile."
+msgstr "Dette er din standardprofil."
+
+#: ../../mod/profiles.php:736
+msgid "Age: "
+msgstr "Alder:"
+
+#: ../../mod/profiles.php:779
+msgid "Edit/Manage Profiles"
+msgstr "Endre/hƄndter profiler"
+
+#: ../../mod/profiles.php:780
+msgid "Add profile things"
+msgstr "Legg til profilting"
+
+#: ../../mod/profiles.php:781
+msgid "Include desirable objects in your profile"
+msgstr "Inkluder Ćønskverdige objekter i din profil"
+
+#: ../../mod/profperm.php:29 ../../mod/profperm.php:58
+msgid "Invalid profile identifier."
+msgstr "Ugyldig profil-identifikator."
+
+#: ../../mod/profperm.php:110
+msgid "Profile Visibility Editor"
+msgstr "Endre profilsynlighet"
+
+#: ../../mod/profperm.php:114
+msgid "Click on a contact to add or remove."
+msgstr "Klikk pƄ en kontakt for Ƅ legge til eller fjerne."
+
+#: ../../mod/profperm.php:123
+msgid "Visible To"
+msgstr "Synlig for"
+
+#: ../../mod/pubsites.php:21
+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."
+
+#: ../../mod/pubsites.php:27
+msgid "Hub URL"
+msgstr "Nettstedets URL"
+
+#: ../../mod/pubsites.php:27
+msgid "Access Type"
+msgstr "Tilgangstype"
+
+#: ../../mod/pubsites.php:27
+msgid "Registration Policy"
+msgstr "Retningslinjer for registrering"
+
+#: ../../mod/pubsites.php:33
+msgid "Rate"
+msgstr "Vurder"
+
+#: ../../mod/rate.php:158
+msgid "Website:"
+msgstr "Nettsted:"
+
+#: ../../mod/rate.php:161
+#, php-format
+msgid "Remote Channel [%s] (not yet known on this site)"
+msgstr "Fjerntliggende kanal [%s] (forelĆøpig ikke kjent pĆ„ dette nettstedet)"
+
+#: ../../mod/rate.php:162
+msgid "Rating (this information is public)"
+msgstr "Vurdering (denne informasjonen er offentlig)"
+
+#: ../../mod/rate.php:163
+msgid "Optionally explain your rating (this information is public)"
+msgstr "Velg om du vil forklare din vurdering (denne informasjonen er offentlig)"
+
+#: ../../mod/ratings.php:69
+msgid "No ratings"
+msgstr "Ingen vurderinger"
+
+#: ../../mod/ratings.php:100
+msgid "Rating: "
+msgstr "Vurdering:"
+
+#: ../../mod/ratings.php:101
+msgid "Website: "
+msgstr "Nettsted:"
+
+#: ../../mod/ratings.php:103
+msgid "Description: "
+msgstr "Beskrivelse:"
+
+#: ../../mod/rbmark.php:90
+msgid "Select a bookmark folder"
+msgstr "Velg en bokmerkemappe"
+
+#: ../../mod/rbmark.php:95
+msgid "Save Bookmark"
+msgstr "Lagre bokmerke"
+
+#: ../../mod/rbmark.php:96
+msgid "URL of bookmark"
+msgstr "URL-en til bokmerket"
+
+#: ../../mod/rbmark.php:101
+msgid "Or enter new bookmark folder name"
+msgstr "Eller skriv nytt navn pƄ bokmerkemappe"
+
+#: ../../mod/register.php:45
+msgid "Maximum daily site registrations exceeded. Please try again tomorrow."
+msgstr "Antallet daglige registreringer ved nettstedet er overskredet. VƦr vennlig Ć„ prĆøve igjen imorgen."
+
+#: ../../mod/register.php:51
+msgid ""
+"Please indicate acceptance of the Terms of Service. Registration failed."
+msgstr "Vennligst angi at tjenesteavtalen er akseptert. Registrering mislyktes."
+
+#: ../../mod/register.php:85
+msgid "Passwords do not match."
+msgstr "Passordene er ikke like."
+
+#: ../../mod/register.php:127
+msgid ""
+"Registration successful. Please check your email for validation "
+"instructions."
+msgstr "Registreringen er vellykket. Vennligst sjekk e-posten din for Ć„ bekrefte opprettelsen."
+
+#: ../../mod/register.php:133
+msgid "Your registration is pending approval by the site owner."
+msgstr "Din registrering venter pƄ godkjenning av nettstedets eier."
+
+#: ../../mod/register.php:136
+msgid "Your registration can not be processed."
+msgstr "Din registrering kan ikke behandles."
+
+#: ../../mod/register.php:180
+msgid "Registration on this hub is disabled."
+msgstr "Registrering ved dette nettstedet er skrudd av."
+
+#: ../../mod/register.php:189
+msgid "Registration on this hub is by approval only."
+msgstr "Registrering ved dette nettstedet skjer pƄ godkjenning."
+
+#: ../../mod/register.php:190
+msgid "<a href=\"pubsites\">Register at another affiliated hub.</a>"
+msgstr "<a href=\"pubsites\">Registrer ved et annet tilsluttet nettsted.</a>"
+
+#: ../../mod/register.php:200
+msgid ""
+"This site has exceeded the number of allowed daily account registrations. "
+"Please try again tomorrow."
+msgstr "Dette nettstedet har overskredet antallet tillate kontoregistreringer per dag. Vennligst prĆøv igjen imorgen."
+
+#: ../../mod/register.php:211
+msgid "Terms of Service"
+msgstr "Tjenesteavtale"
+
+#: ../../mod/register.php:217
+#, php-format
+msgid "I accept the %s for this website"
+msgstr "Jeg godtar %s for dette nettstedet"
+
+#: ../../mod/register.php:219
+#, php-format
+msgid "I am over 13 years of age and accept the %s for this website"
+msgstr "Jeg er over 13 Ć„r gammel og aksepterer %s for dette nettstedet."
+
+#: ../../mod/register.php:223
+msgid "Your email address"
+msgstr "Din e-postadresse"
+
+#: ../../mod/register.php:224
+msgid "Choose a password"
+msgstr "Velg et passord"
+
+#: ../../mod/register.php:225
+msgid "Please re-enter your password"
+msgstr "Vennligst skriv ditt passord en gang til"
+
+#: ../../mod/register.php:226
+msgid "Please enter your invitation code"
+msgstr "Vennligst skriv din invitasjonskode"
+
+#: ../../mod/register.php:232
+msgid "no"
+msgstr "nei"
+
+#: ../../mod/register.php:232
+msgid "yes"
+msgstr "ja"
+
+#: ../../mod/register.php:246
+msgid "Membership on this site is by invitation only."
+msgstr "Medlemskap ved dette nettstedet skjer kun via invitasjon."
+
+#: ../../mod/register.php:258
+msgid "Proceed to create your first channel"
+msgstr "GĆ„ videre for Ć„ lage din fĆørste kanal"
+
+#: ../../mod/regmod.php:11
+msgid "Please login."
+msgstr "Vennligst logg inn."
+
+#: ../../mod/removeaccount.php:30
+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."
+
+#: ../../mod/removeaccount.php:57
+msgid "Remove This Account"
+msgstr "Slett denne kontoen"
+
+#: ../../mod/removeaccount.php:58 ../../mod/removeme.php:58
+msgid "WARNING: "
+msgstr "ADVARSEL:"
+
+#: ../../mod/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."
+
+#: ../../mod/removeaccount.php:58 ../../mod/removeme.php:58
+msgid "This action is permanent and can not be undone!"
+msgstr "Denne handlingen er permanent og kan ikke angres!"
+
+#: ../../mod/removeaccount.php:59 ../../mod/removeme.php:59
+msgid "Please enter your password for verification:"
+msgstr "Vennligst skriv ditt passord for Ƅ fƄ bekreftelse:"
+
+#: ../../mod/removeaccount.php:60
+msgid ""
+"Remove this account, all its channels and all its channel clones from the "
+"network"
+msgstr "Slett denne kontoen, alle dens kanaler og alle dens kanalkloner fra dette nettverket"
+
+#: ../../mod/removeaccount.php:60
+msgid ""
+"By default only the instances of the channels located on this hub will be "
+"removed from the network"
+msgstr "Som standard vil bare forekomster av kanalene lokalisert pƄ denne hubben bli slettet fra nettverket"
+
+#: ../../mod/removeaccount.php:61 ../../mod/settings.php:712
+msgid "Remove Account"
+msgstr "Slett konto"
+
+#: ../../mod/removeme.php:29
+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."
+
+#: ../../mod/removeme.php:57
+msgid "Remove This Channel"
+msgstr "Fjern denne kanalen"
+
+#: ../../mod/removeme.php:58
+msgid "This channel will be completely removed from the network. "
+msgstr "Denne kanalen vil bli fullstendig fjernet fra nettverket."
+
+#: ../../mod/removeme.php:60
+msgid "Remove this channel and all its clones from the network"
+msgstr "Fjern denne kanalen og alle dens kloner fra nettverket"
+
+#: ../../mod/removeme.php:60
+msgid ""
+"By default only the instance of the channel located on this hub will be "
+"removed from the network"
+msgstr "Som standard vil bare forekomsten av denne kanalen lokalisert pƄ denne hubben bli fjernet fra nettverket"
+
+#: ../../mod/removeme.php:61 ../../mod/settings.php:1131
+msgid "Remove Channel"
+msgstr "Fjern kanal"
+
+#: ../../mod/rmagic.php:40
+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."
+
+#: ../../mod/rmagic.php:40
+msgid "The error message was:"
+msgstr "Feilmeldingen var:"
+
+#: ../../mod/rmagic.php:44
+msgid "Authentication failed."
+msgstr "Autentisering mislyktes."
+
+#: ../../mod/rmagic.php:84
+msgid "Remote Authentication"
+msgstr "Fjernautentisering"
+
+#: ../../mod/rmagic.php:85
+msgid "Enter your channel address (e.g. channel@example.com)"
+msgstr "Skriv din kanaladresse (for eksempel channel@exampel.com)"
+
+#: ../../mod/rmagic.php:86
+msgid "Authenticate"
+msgstr "Autentiser"
+
+#: ../../mod/search.php:212
+#, php-format
+msgid "Items tagged with: %s"
+msgstr "Elementer merket med: %s"
+
+#: ../../mod/search.php:214
+#, php-format
+msgid "Search results for: %s"
+msgstr "SĆøkeresultater for: %s"
+
+#: ../../mod/service_limits.php:19
+msgid "No service class restrictions found."
+msgstr "Ingen restriksjoner er funnet i tjenesteklasse."
#: ../../mod/settings.php:76
msgid "Name is required"
@@ -7498,1369 +7998,1085 @@ msgid "Key and Secret are required"
msgstr "NĆøkkel og hemmelighet er pĆ„krevd"
#: ../../mod/settings.php:232
+msgid "Not valid email."
+msgstr "Ikke gyldig e-post."
+
+#: ../../mod/settings.php:235
+msgid "Protected email address. Cannot change to that email."
+msgstr "Beskyttet e-postadresse. Kan ikke endre til den e-postadressen."
+
+#: ../../mod/settings.php:244
+msgid "System failure storing new email. Please try again."
+msgstr "Systemfeil ved lagring av ny e-post. Vennligst prĆøv igjen."
+
+#: ../../mod/settings.php:261
+msgid "Password verification failed."
+msgstr "Passordbekreftelsen mislyktes."
+
+#: ../../mod/settings.php:268
msgid "Passwords do not match. Password unchanged."
msgstr "Passordene stemmer ikke overens. Passord uforandret."
-#: ../../mod/settings.php:236
+#: ../../mod/settings.php:272
msgid "Empty passwords are not allowed. Password unchanged."
msgstr "Tomme passord er ikke tillatt. Passord uforandret."
-#: ../../mod/settings.php:250
+#: ../../mod/settings.php:286
msgid "Password changed."
msgstr "Passord endret."
-#: ../../mod/settings.php:252
+#: ../../mod/settings.php:288
msgid "Password update failed. Please try again."
msgstr "Passord oppdatering mislyktes. Vennligst prĆøv igjen."
-#: ../../mod/settings.php:266
-msgid "Not valid email."
-msgstr "Ikke gyldig e-post."
-
-#: ../../mod/settings.php:269
-msgid "Protected email address. Cannot change to that email."
-msgstr "Beskyttet e-postadresse. Kan ikke endre til den e-postadressen."
-
-#: ../../mod/settings.php:278
-msgid "System failure storing new email. Please try again."
-msgstr "Systemfeil ved lagring av ny e-post. Vennligst prĆøv igjen."
-
-#: ../../mod/settings.php:521
+#: ../../mod/settings.php:532
msgid "Settings updated."
msgstr "Innstillinger oppdatert."
-#: ../../mod/settings.php:585 ../../mod/settings.php:611
-#: ../../mod/settings.php:647
+#: ../../mod/settings.php:596 ../../mod/settings.php:622
+#: ../../mod/settings.php:658
msgid "Add application"
msgstr "Legg til program"
-#: ../../mod/settings.php:588
+#: ../../mod/settings.php:599
msgid "Name of application"
msgstr "Navn pƄ program"
-#: ../../mod/settings.php:589 ../../mod/settings.php:615
+#: ../../mod/settings.php:600 ../../mod/settings.php:626
msgid "Consumer Key"
msgstr "Consumer Key"
-#: ../../mod/settings.php:589 ../../mod/settings.php:590
+#: ../../mod/settings.php:600 ../../mod/settings.php:601
msgid "Automatically generated - change if desired. Max length 20"
msgstr "Automatisk laget - kan endres om du vil. StĆørste lengde 20"
-#: ../../mod/settings.php:590 ../../mod/settings.php:616
+#: ../../mod/settings.php:601 ../../mod/settings.php:627
msgid "Consumer Secret"
msgstr "Consumer Secret"
-#: ../../mod/settings.php:591 ../../mod/settings.php:617
+#: ../../mod/settings.php:602 ../../mod/settings.php:628
msgid "Redirect"
msgstr "Omdirigering"
-#: ../../mod/settings.php:591
+#: ../../mod/settings.php:602
msgid ""
"Redirect URI - leave blank unless your application specifically requires "
"this"
msgstr "Omdirigerings-URI - la stƄ tomt hvis ikke ditt program spesifikt krever dette"
-#: ../../mod/settings.php:592 ../../mod/settings.php:618
+#: ../../mod/settings.php:603 ../../mod/settings.php:629
msgid "Icon url"
msgstr "Ikon-URL"
-#: ../../mod/settings.php:592
+#: ../../mod/settings.php:603
msgid "Optional"
msgstr "Valgfritt"
-#: ../../mod/settings.php:603
-msgid "You can't edit this application."
-msgstr "Du kan ikke endre dette programmet."
+#: ../../mod/settings.php:614
+msgid "Application not found."
+msgstr "Programmet ble ikke funnet."
-#: ../../mod/settings.php:646
+#: ../../mod/settings.php:657
msgid "Connected Apps"
msgstr "Tilkoblede app-er"
-#: ../../mod/settings.php:650
+#: ../../mod/settings.php:661
msgid "Client key starts with"
msgstr "KlientnĆøkkel starter med"
-#: ../../mod/settings.php:651
+#: ../../mod/settings.php:662
msgid "No name"
msgstr "Ikke noe navn"
-#: ../../mod/settings.php:652
+#: ../../mod/settings.php:663
msgid "Remove authorization"
msgstr "Fjern tillatelse"
-#: ../../mod/settings.php:665
+#: ../../mod/settings.php:676
msgid "No feature settings configured"
msgstr "Ingen funksjonsinnstillinger er konfigurert"
-#: ../../mod/settings.php:672
+#: ../../mod/settings.php:683
msgid "Feature/Addon Settings"
msgstr "Funksjons-/Tilleggsinnstillinger"
-#: ../../mod/settings.php:695
+#: ../../mod/settings.php:706
msgid "Account Settings"
msgstr "Kontoinnstillinger"
-#: ../../mod/settings.php:696
-msgid "Enter New Password:"
-msgstr "Skriv nytt passord:"
+#: ../../mod/settings.php:707
+msgid "Current Password"
+msgstr "NƄvƦrende passord"
+
+#: ../../mod/settings.php:708
+msgid "Enter New Password"
+msgstr "Skriv nytt passord"
-#: ../../mod/settings.php:697
-msgid "Confirm New Password:"
-msgstr "Bekreft nytt passord:"
+#: ../../mod/settings.php:709
+msgid "Confirm New Password"
+msgstr "Bekreft nytt passord"
-#: ../../mod/settings.php:697
+#: ../../mod/settings.php:709
msgid "Leave password fields blank unless changing"
msgstr "La passordfeltene stƄ blanke om det ikke skal endres"
-#: ../../mod/settings.php:699 ../../mod/settings.php:1030
+#: ../../mod/settings.php:711 ../../mod/settings.php:1048
msgid "Email Address:"
msgstr "E-postadresse:"
-#: ../../mod/settings.php:701
+#: ../../mod/settings.php:713
msgid "Remove this account including all its channels"
msgstr "Slett denne kontoen inkludert alle dens kanaler"
-#: ../../mod/settings.php:717
-msgid "Off"
-msgstr "Av"
-
-#: ../../mod/settings.php:717
-msgid "On"
-msgstr "PĆ„"
-
-#: ../../mod/settings.php:724
+#: ../../mod/settings.php:736
msgid "Additional Features"
msgstr "Ekstra funksjoner"
-#: ../../mod/settings.php:748
+#: ../../mod/settings.php:760
msgid "Connector Settings"
msgstr "Koblingsinnstillinger"
-#: ../../mod/settings.php:787
+#: ../../mod/settings.php:799
msgid "No special theme for mobile devices"
msgstr "Ikke noe spesielt tema for mobile enheter"
-#: ../../mod/settings.php:790
+#: ../../mod/settings.php:802
#, php-format
msgid "%s - (Experimental)"
msgstr "%s - (Eksperimentelt)"
-#: ../../mod/settings.php:829
+#: ../../mod/settings.php:844
msgid "Display Settings"
msgstr "Visningsinnstillinger"
-#: ../../mod/settings.php:830
+#: ../../mod/settings.php:845
msgid "Theme Settings"
msgstr "Temainnstillinger"
-#: ../../mod/settings.php:831
+#: ../../mod/settings.php:846
msgid "Custom Theme Settings"
msgstr "Tilpassede temainnstillinger"
-#: ../../mod/settings.php:832
+#: ../../mod/settings.php:847
msgid "Content Settings"
msgstr "Innholdsinnstillinger"
-#: ../../mod/settings.php:838
+#: ../../mod/settings.php:853
msgid "Display Theme:"
msgstr "Visningstema:"
-#: ../../mod/settings.php:839
+#: ../../mod/settings.php:854
msgid "Mobile Theme:"
msgstr "Mobiltema:"
-#: ../../mod/settings.php:840
+#: ../../mod/settings.php:855
+msgid "Preload images before rendering the page"
+msgstr "Last inn bildene fĆør gjengivelsen av siden"
+
+#: ../../mod/settings.php:855
+msgid ""
+"The subjective page load time will be longer but the page will be ready when"
+" displayed"
+msgstr "Den personlige opplevelsen av lastetiden vil vƦre lenger, men siden vil vƦre klar nƄr den vises"
+
+#: ../../mod/settings.php:856
msgid "Enable user zoom on mobile devices"
msgstr "Skru pƄ brukerstyrt zoom pƄ mobile enheter"
-#: ../../mod/settings.php:841
+#: ../../mod/settings.php:857
msgid "Update browser every xx seconds"
msgstr "Oppdater nettleser hvert xx sekunder"
-#: ../../mod/settings.php:841
+#: ../../mod/settings.php:857
msgid "Minimum of 10 seconds, no maximum"
msgstr "Minimum 10 sekunder, ikke noe maksimum"
-#: ../../mod/settings.php:842
+#: ../../mod/settings.php:858
msgid "Maximum number of conversations to load at any time:"
msgstr "Maksimalt antall samtaler Ć„ laste samtidig:"
-#: ../../mod/settings.php:842
+#: ../../mod/settings.php:858
msgid "Maximum of 100 items"
msgstr "Maksimum 100 elementer"
-#: ../../mod/settings.php:843
+#: ../../mod/settings.php:859
msgid "Show emoticons (smilies) as images"
msgstr "Vis emoticons (smilefjes) som bilder"
-#: ../../mod/settings.php:844
+#: ../../mod/settings.php:860
msgid "Link post titles to source"
msgstr "Lenk innleggets tittel til kilden"
-#: ../../mod/settings.php:845
+#: ../../mod/settings.php:861
msgid "System Page Layout Editor - (advanced)"
msgstr "Systemsidens layoutbehandler - (avansert)"
-#: ../../mod/settings.php:848
+#: ../../mod/settings.php:864
msgid "Use blog/list mode on channel page"
msgstr "Bruk blogg-/listemodus pƄ kanalsiden"
-#: ../../mod/settings.php:848 ../../mod/settings.php:849
+#: ../../mod/settings.php:864 ../../mod/settings.php:865
msgid "(comments displayed separately)"
msgstr "(kommentarer vist separat)"
-#: ../../mod/settings.php:849
-msgid "Use blog/list mode on matrix page"
-msgstr "Bruk blogg-/listemodus pƄ matrix-siden"
+#: ../../mod/settings.php:865
+msgid "Use blog/list mode on grid page"
+msgstr "Bruk blogg-/liste-modus pƄ nettverkssiden"
-#: ../../mod/settings.php:850
+#: ../../mod/settings.php:866
msgid "Channel page max height of content (in pixels)"
msgstr "Kanalsidens makshĆøyde for innhold (i pixler)"
-#: ../../mod/settings.php:850 ../../mod/settings.php:851
+#: ../../mod/settings.php:866 ../../mod/settings.php:867
msgid "click to expand content exceeding this height"
msgstr "klikk for Ć„ utvide innhold som overstiger denne hĆøyden"
-#: ../../mod/settings.php:851
-msgid "Matrix page max height of content (in pixels)"
-msgstr "Matrix-sidens makshĆøyde for innholde (i pixler)"
+#: ../../mod/settings.php:867
+msgid "Grid page max height of content (in pixels)"
+msgstr "Nettverkssidens makshĆøyde for innhold (i piksler)"
-#: ../../mod/settings.php:885
+#: ../../mod/settings.php:901
msgid "Nobody except yourself"
msgstr "Ingen unntatt deg selv"
-#: ../../mod/settings.php:886
+#: ../../mod/settings.php:902
msgid "Only those you specifically allow"
msgstr "Bare de du spesifikt tillater"
-#: ../../mod/settings.php:887
+#: ../../mod/settings.php:903
msgid "Approved connections"
msgstr "Godkjente forbindelser"
-#: ../../mod/settings.php:888
+#: ../../mod/settings.php:904
msgid "Any connections"
msgstr "Enhver forbindelse"
-#: ../../mod/settings.php:889
+#: ../../mod/settings.php:905
msgid "Anybody on this website"
msgstr "Enhver ved dette nettstedet"
-#: ../../mod/settings.php:890
+#: ../../mod/settings.php:906
msgid "Anybody in this network"
msgstr "Enhver i dette nettverket"
-#: ../../mod/settings.php:891
+#: ../../mod/settings.php:907
msgid "Anybody authenticated"
msgstr "Enhver som er autentisert"
-#: ../../mod/settings.php:892
+#: ../../mod/settings.php:908
msgid "Anybody on the internet"
msgstr "Enhver pƄ Internett"
-#: ../../mod/settings.php:966
+#: ../../mod/settings.php:983
msgid "Publish your default profile in the network directory"
msgstr "Publiser din standardprofil i nettverkskatalogen"
-#: ../../mod/settings.php:971
+#: ../../mod/settings.php:988
msgid "Allow us to suggest you as a potential friend to new members?"
msgstr "Tillat oss Ƅ foreslƄ deg som en mulig venn til nye medlemmer?"
-#: ../../mod/settings.php:980
+#: ../../mod/settings.php:997
msgid "Your channel address is"
msgstr "Din kanaladresse er"
-#: ../../mod/settings.php:1021
+#: ../../mod/settings.php:1039
msgid "Channel Settings"
msgstr "Kanalinnstillinger"
-#: ../../mod/settings.php:1028
+#: ../../mod/settings.php:1046
msgid "Basic Settings"
msgstr "Grunninnstillinger"
-#: ../../mod/settings.php:1031
+#: ../../mod/settings.php:1049
msgid "Your Timezone:"
msgstr "Din tidssone:"
-#: ../../mod/settings.php:1032
+#: ../../mod/settings.php:1050
msgid "Default Post Location:"
msgstr "Standard plassering ved innlegg:"
-#: ../../mod/settings.php:1032
+#: ../../mod/settings.php:1050
msgid "Geographical location to display on your posts"
msgstr "Geografisk plassering som vises pƄ dine innlegg"
-#: ../../mod/settings.php:1033
+#: ../../mod/settings.php:1051
msgid "Use Browser Location:"
msgstr "Bruk nettleseren sin plassering:"
-#: ../../mod/settings.php:1035
+#: ../../mod/settings.php:1053
msgid "Adult Content"
msgstr "Voksent innhold"
-#: ../../mod/settings.php:1035
+#: ../../mod/settings.php:1053
msgid ""
"This channel frequently or regularly publishes adult content. (Please tag "
"any adult material and/or nudity with #NSFW)"
msgstr "Denne kanalen vil ofte eller jevnlig publisere voksent innhold. (Vennligst merk alt voksent materiale og/eller nakenhet med #NSFW)"
-#: ../../mod/settings.php:1037
+#: ../../mod/settings.php:1055
msgid "Security and Privacy Settings"
msgstr "Sikkerhets- og personverninnstillinger"
-#: ../../mod/settings.php:1039
+#: ../../mod/settings.php:1058
msgid "Your permissions are already configured. Click to view/adjust"
msgstr "Dine tillatelser er allerede satt. Klikk for Ć„ se/justere."
-#: ../../mod/settings.php:1041
+#: ../../mod/settings.php:1060
msgid "Hide my online presence"
msgstr "Skjul min tilstedevƦrelse online"
-#: ../../mod/settings.php:1041
+#: ../../mod/settings.php:1060
msgid "Prevents displaying in your profile that you are online"
msgstr "Forhindrer visning pƄ din profil av at du er online "
-#: ../../mod/settings.php:1043
+#: ../../mod/settings.php:1062
msgid "Simple Privacy Settings:"
msgstr "Enkle personverninnstillinger:"
-#: ../../mod/settings.php:1044
+#: ../../mod/settings.php:1063
msgid ""
"Very Public - <em>extremely permissive (should be used with caution)</em>"
msgstr "SvƦrt offentlig - <em>ekstremt Ć„pent (bĆør brukes med varsomhet)</em>"
-#: ../../mod/settings.php:1045
+#: ../../mod/settings.php:1064
msgid ""
"Typical - <em>default public, privacy when desired (similar to social "
"network permissions but with improved privacy)</em>"
msgstr "Typisk - <em>standard er offentlig, personvern nĆ„r Ćønsket (likner pĆ„ tillatelser i sosiale nettverk, men med forbedret personvern)</em>"
-#: ../../mod/settings.php:1046
+#: ../../mod/settings.php:1065
msgid "Private - <em>default private, never open or public</em>"
msgstr "Privat - <em>standard er privat, aldri Ć„pen eller offentlig</em>"
-#: ../../mod/settings.php:1047
+#: ../../mod/settings.php:1066
msgid "Blocked - <em>default blocked to/from everybody</em>"
msgstr "Blokkert - <em>standard blokkert til/fra alle</em>"
-#: ../../mod/settings.php:1049
+#: ../../mod/settings.php:1068
msgid "Allow others to tag your posts"
msgstr "Tillat andre Ć„ merke dine innlegg"
-#: ../../mod/settings.php:1049
+#: ../../mod/settings.php:1068
msgid ""
"Often used by the community to retro-actively flag inappropriate content"
msgstr "Ofte brukt av fellesskapet for Ć„ merke upassende innhold i etterkant"
-#: ../../mod/settings.php:1051
+#: ../../mod/settings.php:1070
msgid "Advanced Privacy Settings"
msgstr "Avanserte personverninnstillinger"
-#: ../../mod/settings.php:1053
+#: ../../mod/settings.php:1072
msgid "Expire other channel content after this many days"
msgstr "Annet kanal innhold utlĆøper etter sĆ„ mange dager"
-#: ../../mod/settings.php:1053
-msgid "0 or blank prevents expiration"
-msgstr "0 eller blankt forhindrer utlĆøp"
+#: ../../mod/settings.php:1072
+#, php-format
+msgid ""
+"0 or blank to use the website limit. The website expires after %d days."
+msgstr "0 eller ikke noe for Ć„ bruke nettstedets grense. Nettstedet utlĆøper etter %d dager."
-#: ../../mod/settings.php:1054
+#: ../../mod/settings.php:1073
msgid "Maximum Friend Requests/Day:"
msgstr "Maksimalt antall venneforespĆørsler per dag:"
-#: ../../mod/settings.php:1054
+#: ../../mod/settings.php:1073
msgid "May reduce spam activity"
msgstr "Kan redusere sĆøppelpostaktivitet"
-#: ../../mod/settings.php:1055
+#: ../../mod/settings.php:1074
msgid "Default Post Permissions"
msgstr "Standard innleggstillatelser"
-#: ../../mod/settings.php:1056 ../../mod/mitem.php:150 ../../mod/mitem.php:223
-msgid "(click to open/close)"
-msgstr "(klikk for Ć„ Ć„pne/lukke)"
-
-#: ../../mod/settings.php:1060
+#: ../../mod/settings.php:1079
msgid "Channel permissions category:"
msgstr "Kategori med kanaltillatelser:"
-#: ../../mod/settings.php:1066
+#: ../../mod/settings.php:1085
msgid "Maximum private messages per day from unknown people:"
msgstr "Maksimalt antall private meldinger per dag fra ukjente personer:"
-#: ../../mod/settings.php:1066
+#: ../../mod/settings.php:1085
msgid "Useful to reduce spamming"
msgstr "Nyttig for Ć„ redusere sĆøppelpost"
-#: ../../mod/settings.php:1069
+#: ../../mod/settings.php:1088
msgid "Notification Settings"
msgstr "Varslingsinnstillinger"
-#: ../../mod/settings.php:1070
+#: ../../mod/settings.php:1089
msgid "By default post a status message when:"
msgstr "Legg inn en statusmelding nƄr du:"
-#: ../../mod/settings.php:1071
+#: ../../mod/settings.php:1090
msgid "accepting a friend request"
msgstr "aksepterer en venneforespĆørsel"
-#: ../../mod/settings.php:1072
+#: ../../mod/settings.php:1091
msgid "joining a forum/community"
msgstr "blir med i et forum/miljĆø"
-#: ../../mod/settings.php:1073
+#: ../../mod/settings.php:1092
msgid "making an <em>interesting</em> profile change"
msgstr "gjĆør en <em>interessant</em> profilendring"
-#: ../../mod/settings.php:1074
+#: ../../mod/settings.php:1093
msgid "Send a notification email when:"
msgstr "Send en varsel-e-post nƄr:"
-#: ../../mod/settings.php:1075
+#: ../../mod/settings.php:1094
msgid "You receive a connection request"
msgstr "Du har mottatt en forespĆørsel om forbindelse"
-#: ../../mod/settings.php:1076
+#: ../../mod/settings.php:1095
msgid "Your connections are confirmed"
msgstr "Dine forbindelser er bekreftet"
-#: ../../mod/settings.php:1077
+#: ../../mod/settings.php:1096
msgid "Someone writes on your profile wall"
msgstr "Noen skriver pƄ din profilvegg"
-#: ../../mod/settings.php:1078
+#: ../../mod/settings.php:1097
msgid "Someone writes a followup comment"
msgstr "Noen skriver en oppfĆølgende kommentar"
-#: ../../mod/settings.php:1079
+#: ../../mod/settings.php:1098
msgid "You receive a private message"
msgstr "Du mottar en privat melding"
-#: ../../mod/settings.php:1080
+#: ../../mod/settings.php:1099
msgid "You receive a friend suggestion"
msgstr "Du mottok et venneforslag"
-#: ../../mod/settings.php:1081
+#: ../../mod/settings.php:1100
msgid "You are tagged in a post"
msgstr "Du merkes i et innlegg"
-#: ../../mod/settings.php:1082
+#: ../../mod/settings.php:1101
msgid "You are poked/prodded/etc. in a post"
msgstr "Du ble prikket/oppildnet/og sƄ vider i et innlegg"
-#: ../../mod/settings.php:1085
+#: ../../mod/settings.php:1104
msgid "Show visual notifications including:"
msgstr "Vis visuelle varslinger om:"
-#: ../../mod/settings.php:1087
-msgid "Unseen matrix activity"
-msgstr "Usett matrixaktivitet"
+#: ../../mod/settings.php:1106
+msgid "Unseen grid activity"
+msgstr "Usett nettverksaktivitet"
-#: ../../mod/settings.php:1088
+#: ../../mod/settings.php:1107
msgid "Unseen channel activity"
msgstr "Usett kanalaktivitet"
-#: ../../mod/settings.php:1089
+#: ../../mod/settings.php:1108
msgid "Unseen private messages"
msgstr "Usette private meldinger"
-#: ../../mod/settings.php:1089 ../../mod/settings.php:1094
-#: ../../mod/settings.php:1095 ../../mod/settings.php:1096
+#: ../../mod/settings.php:1108 ../../mod/settings.php:1113
+#: ../../mod/settings.php:1114 ../../mod/settings.php:1115
msgid "Recommended"
msgstr "Anbefalt"
-#: ../../mod/settings.php:1090
+#: ../../mod/settings.php:1109
msgid "Upcoming events"
msgstr "Kommende hendelser"
-#: ../../mod/settings.php:1091
+#: ../../mod/settings.php:1110
msgid "Events today"
msgstr "Hendelser idag"
-#: ../../mod/settings.php:1092
+#: ../../mod/settings.php:1111
msgid "Upcoming birthdays"
msgstr "Kommende fĆødselsdager"
-#: ../../mod/settings.php:1092
+#: ../../mod/settings.php:1111
msgid "Not available in all themes"
msgstr "Ikke tilgjengelig i alle temaer"
-#: ../../mod/settings.php:1093
+#: ../../mod/settings.php:1112
msgid "System (personal) notifications"
msgstr "System (personlige) varslinger"
-#: ../../mod/settings.php:1094
+#: ../../mod/settings.php:1113
msgid "System info messages"
msgstr "System infomeldinger"
-#: ../../mod/settings.php:1095
+#: ../../mod/settings.php:1114
msgid "System critical alerts"
msgstr "System kritiske varsel"
-#: ../../mod/settings.php:1096
+#: ../../mod/settings.php:1115
msgid "New connections"
msgstr "Nye forbindelser"
-#: ../../mod/settings.php:1097
+#: ../../mod/settings.php:1116
msgid "System Registrations"
msgstr "Systemregistreringer"
-#: ../../mod/settings.php:1098
+#: ../../mod/settings.php:1117
msgid ""
"Also show new wall posts, private messages and connections under Notices"
msgstr "Vis ogsƄ nye vegginnlegg, private meldinger og forbindelser under Varsler"
-#: ../../mod/settings.php:1100
+#: ../../mod/settings.php:1119
msgid "Notify me of events this many days in advance"
msgstr "Varsle meg om hendelser dette antall dager pƄ forhƄnd"
-#: ../../mod/settings.php:1100
+#: ../../mod/settings.php:1119
msgid "Must be greater than 0"
msgstr "MĆ„ vƦre stĆørre enn 0"
-#: ../../mod/settings.php:1102
+#: ../../mod/settings.php:1121
msgid "Advanced Account/Page Type Settings"
msgstr "Avanserte innstillinger for konto/sidetype"
-#: ../../mod/settings.php:1103
+#: ../../mod/settings.php:1122
msgid "Change the behaviour of this account for special situations"
msgstr "Endre oppfĆørselen til denne kontoen i spesielle situasjoner"
-#: ../../mod/settings.php:1106
+#: ../../mod/settings.php:1125
msgid ""
"Please enable expert mode (in <a href=\"settings/features\">Settings > "
"Additional features</a>) to adjust!"
msgstr "Vennligst skru pƄ ekspertmodus (under <a href=\"settings/features\">Innstillinger > Ekstra funksjoner</a>) for Ƅ justere!"
-#: ../../mod/settings.php:1107
+#: ../../mod/settings.php:1126
msgid "Miscellaneous Settings"
msgstr "Diverse innstillinger"
-#: ../../mod/settings.php:1108
+#: ../../mod/settings.php:1127
msgid "Default photo upload folder"
msgstr "Standard mappe for opplasting av bilder"
-#: ../../mod/settings.php:1108 ../../mod/settings.php:1109
+#: ../../mod/settings.php:1127 ../../mod/settings.php:1128
msgid "%Y - current year, %m - current month"
msgstr "%Y - nƄvƦrende Ƅr, %m - nƄvƦrende mƄned"
-#: ../../mod/settings.php:1109
+#: ../../mod/settings.php:1128
msgid "Default file upload folder"
msgstr "Standard mappe for opplasting av filer"
-#: ../../mod/settings.php:1111
+#: ../../mod/settings.php:1130
msgid "Personal menu to display in your channel pages"
msgstr "Personlig meny som kan vises pƄ dine kanalsider"
-#: ../../mod/settings.php:1113
+#: ../../mod/settings.php:1132
msgid "Remove this channel."
msgstr "Fjern denne kanalen."
-#: ../../mod/settings.php:1114
+#: ../../mod/settings.php:1133
msgid "Firefox Share $Projectname provider"
msgstr "$Projectname Firefox Share tilbyder"
-#: ../../mod/settings.php:1115
+#: ../../mod/settings.php:1134
msgid "Start calendar week on monday"
msgstr "Start uken med mandag i kalenderen"
-#: ../../mod/webpages.php:191
-msgid "Page Title"
-msgstr "Sidetittel"
-
-#: ../../mod/appman.php:28 ../../mod/appman.php:44
-msgid "App installed."
-msgstr "App installert."
-
-#: ../../mod/appman.php:37
-msgid "Malformed app."
-msgstr "Feil oppsett for app-en."
-
-#: ../../mod/appman.php:80
-msgid "Embed code"
-msgstr "Innbyggingskode"
-
-#: ../../mod/appman.php:86
-msgid "Edit App"
-msgstr "Endre app"
-
-#: ../../mod/appman.php:86
-msgid "Create App"
-msgstr "Lag app"
-
-#: ../../mod/appman.php:91
-msgid "Name of app"
-msgstr "Navn pƄ app"
-
-#: ../../mod/appman.php:92
-msgid "Location (URL) of app"
-msgstr "Plassering (URL) til app"
-
-#: ../../mod/appman.php:94
-msgid "Photo icon URL"
-msgstr "Bildeikon URL"
-
-#: ../../mod/appman.php:94
-msgid "80 x 80 pixels - optional"
-msgstr "80 x80 pixler - valgfritt"
-
-#: ../../mod/appman.php:95
-msgid "Version ID"
-msgstr "Versjons-ID"
-
-#: ../../mod/appman.php:96
-msgid "Price of app"
-msgstr "Pris pƄ app"
-
-#: ../../mod/appman.php:97
-msgid "Location (URL) to purchase app"
-msgstr "Plassering (URL) for Ć„ kjĆøpe app"
-
-#: ../../mod/filer.php:48
-msgid "- select -"
-msgstr "- velg -"
-
-#: ../../mod/layouts.php:176
-msgid "Comanche page description language help"
-msgstr "Hjelp med Comanche sidebeskrivelsessprƄk"
-
-#: ../../mod/layouts.php:180
-msgid "Layout Description"
-msgstr "Layout-beskrivelse"
-
-#: ../../mod/layouts.php:185
-msgid "Download PDL file"
-msgstr "Last ned PDL-fil"
-
-#: ../../mod/locs.php:21 ../../mod/locs.php:50
-msgid "Location not found."
-msgstr "Plassering er ikke funnet."
+#: ../../mod/setup.php:194
+msgid "$Projectname Server - Setup"
+msgstr "$Projectname-tjener - oppsett"
-#: ../../mod/locs.php:58
-msgid "Location lookup failed."
-msgstr "Oppslag pƄ plassering mislyktes."
+#: ../../mod/setup.php:198
+msgid "Could not connect to database."
+msgstr "Fikk ikke kontakt med databasen."
-#: ../../mod/locs.php:62
+#: ../../mod/setup.php:202
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."
+"Could not connect to specified site URL. Possible SSL certificate or DNS "
+"issue."
+msgstr "Fikk ikke kontakt med det angitte nettstedets URL. Problemet kan muligens skyldes SSL-sertifikatet eller DNS."
-#: ../../mod/locs.php:91
-msgid "Syncing locations"
-msgstr "Synkroniserer plasseringer"
+#: ../../mod/setup.php:209
+msgid "Could not create table."
+msgstr "Kunne ikke lage tabellen."
-#: ../../mod/locs.php:101
-msgid "No locations found."
-msgstr "Ingen plasseringer ble funnet."
+#: ../../mod/setup.php:214
+msgid "Your site database has been installed."
+msgstr "Databasen til ditt nettsted har blitt installert."
-#: ../../mod/locs.php:112
-msgid "Manage Channel Locations"
-msgstr "HĆ„ndter kanalplasseringer"
+#: ../../mod/setup.php:218
+msgid ""
+"You may need to import the file \"install/schema_xxx.sql\" manually using a "
+"database client."
+msgstr "Du mƄ kanskje importere filen \"install/schmea_xxx.sql\" manuelt ved Ƅ bruke en databaseklient."
-#: ../../mod/locs.php:113
-msgid "Location (address)"
-msgstr "Plassering (adresse)"
+#: ../../mod/setup.php:219 ../../mod/setup.php:287 ../../mod/setup.php:737
+msgid "Please see the file \"install/INSTALL.txt\"."
+msgstr "Vennligst les filen \"install/INSTALL.txt\"."
-#: ../../mod/locs.php:114
-msgid "Primary Location"
-msgstr "Hovedplassering"
+#: ../../mod/setup.php:284
+msgid "System check"
+msgstr "Systemsjekk"
-#: ../../mod/locs.php:115
-msgid "Drop location"
-msgstr "Slett plassering"
+#: ../../mod/setup.php:289
+msgid "Check again"
+msgstr "Sjekk igjen"
-#: ../../mod/locs.php:117
-msgid "Sync now"
-msgstr "Synkroniser nƄ"
+#: ../../mod/setup.php:311
+msgid "Database connection"
+msgstr "Databaseforbindelse"
-#: ../../mod/locs.php:118
-msgid "Please wait several minutes between consecutive operations."
-msgstr "Vennligst vent flere minutter mellom hver etterfĆølgende operasjon."
+#: ../../mod/setup.php:312
+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."
-#: ../../mod/locs.php:119
+#: ../../mod/setup.php:313
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."
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
+msgstr "Vennligst kontakt din nettstedstilbyder eller nettstedsadministrator hvis du har spĆørsmĆ„l om disse innstillingene."
-#: ../../mod/locs.php:120
-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."
+#: ../../mod/setup.php:314
+msgid ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
+msgstr "Databasen du oppgir nedenfor mĆ„ finnes pĆ„ forhĆ„nd. Hvis den ikke finnes, vennligst lag den fĆør du fortsetter."
-#: ../../mod/home.php:57 ../../mod/home.php:65 ../../mod/siteinfo.php:61
-msgid "$Projectname"
-msgstr "$Projectname"
+#: ../../mod/setup.php:318
+msgid "Database Server Name"
+msgstr "Navn pƄ databasetjener"
-#: ../../mod/home.php:75
-#, php-format
-msgid "Welcome to %s"
-msgstr "Velkommen til %s"
+#: ../../mod/setup.php:318
+msgid "Default is 127.0.0.1"
+msgstr "Standard er 127.0.0.1"
-#: ../../mod/regmod.php:11
-msgid "Please login."
-msgstr "Vennligst logg inn."
+#: ../../mod/setup.php:319
+msgid "Database Port"
+msgstr "Databaseport"
-#: ../../mod/xchan.php:6
-msgid "Xchan Lookup"
-msgstr "Xchan oppslag"
+#: ../../mod/setup.php:319
+msgid "Communication port number - use 0 for default"
+msgstr "Kommunikasjonsportnummer - bruk 0 for standard"
-#: ../../mod/xchan.php:9
-msgid "Lookup xchan beginning with (or webbie): "
-msgstr "SlƄ opp xchan som begynner med (eller webbie):"
+#: ../../mod/setup.php:320
+msgid "Database Login Name"
+msgstr "Database innloggingsnavn"
-#: ../../mod/xchan.php:37 ../../mod/menu.php:162 ../../mod/mitem.php:116
-msgid "Not found."
-msgstr "Ikke funnet."
+#: ../../mod/setup.php:321
+msgid "Database Login Password"
+msgstr "Database innloggingspassord"
-#: ../../mod/channel.php:25 ../../mod/chat.php:19
-msgid "You must be logged in to see this page."
-msgstr "Du mƄ vƦre innloegget for Ƅ se denne siden."
+#: ../../mod/setup.php:322
+msgid "Database Name"
+msgstr "Databasenavn"
-#: ../../mod/channel.php:97
-msgid "Insufficient permissions. Request redirected to profile page."
-msgstr "Utilstrekkelig tillatelse. ForespĆørsel omdirigert til profilsiden."
+#: ../../mod/setup.php:323
+msgid "Database Type"
+msgstr "Databasetype"
-#: ../../mod/attach.php:9
-msgid "Item not available."
-msgstr "Elementet er ikke tilgjengelig."
+#: ../../mod/setup.php:325 ../../mod/setup.php:365
+msgid "Site administrator email address"
+msgstr "E-postadressen til administrator ved nettstedet"
-#: ../../mod/photos.php:79
-msgid "Page owner information could not be retrieved."
-msgstr "Informasjon om sideeier kunne ikke hentes."
+#: ../../mod/setup.php:325 ../../mod/setup.php:365
+msgid ""
+"Your account email address must match this in order to use the web admin "
+"panel."
+msgstr "Din konto sin e-postadresse mƄ vƦre lik denne for Ƅ kunne bruke web-administrasjonspanelet."
-#: ../../mod/photos.php:100
-msgid "Album not found."
-msgstr "Albumet ble ikke funnet."
+#: ../../mod/setup.php:326 ../../mod/setup.php:367
+msgid "Website URL"
+msgstr "Nettstedets URL"
-#: ../../mod/photos.php:127
-msgid "Delete Album"
-msgstr "Slett album"
+#: ../../mod/setup.php:326 ../../mod/setup.php:367
+msgid "Please use SSL (https) URL if available."
+msgstr "Vennligst bruk SSL (https) URL hvis tilgjengelig."
-#: ../../mod/photos.php:171 ../../mod/photos.php:1006
-msgid "Delete Photo"
-msgstr "Slett bilde"
+#: ../../mod/setup.php:327 ../../mod/setup.php:370
+msgid "Please select a default timezone for your website"
+msgstr "Vennligst velg en standard tidssone for ditt nettsted"
-#: ../../mod/photos.php:501
-msgid "No photos selected"
-msgstr "Ingen bilder valgt"
+#: ../../mod/setup.php:354
+msgid "Site settings"
+msgstr "Nettstedets innstillinger"
-#: ../../mod/photos.php:550
-msgid "Access to this item is restricted."
-msgstr "Tilgang til dette elementet er begrenset."
+#: ../../mod/setup.php:368
+msgid "Enable $Projectname <strong>advanced</strong> features?"
+msgstr "Skru pƄ <strong>avanserte</strong egenskaper i $Projectname ?"
-#: ../../mod/photos.php:589
-#, 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."
+#: ../../mod/setup.php:368
+msgid ""
+"Some advanced features, while useful - may be best suited for technically "
+"proficient audiences"
+msgstr "Noen avanserte egenskaper, som - selv om de er nyttige - kanskje passer bedre for et teknisk kyndig publikum. "
-#: ../../mod/photos.php:592
-#, php-format
-msgid "%1$.2f MB photo storage used."
-msgstr "%1$.2f MB lagringsplass til bilder er brukt."
+#: ../../mod/setup.php:420
+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)."
-#: ../../mod/photos.php:620
-msgid "Upload Photos"
-msgstr "Last opp bilder"
+#: ../../mod/setup.php:421
+msgid ""
+"If you don't have a command line version of PHP installed on server, you "
+"will not be able to run background polling via cron."
+msgstr "Hvis du ikke har en kommandolinjeversjon av PHP installert pĆ„ tjeneren, sĆ„ vil du ikke kunne kjĆøre bakgrunnshenting via cron."
-#: ../../mod/photos.php:624
-msgid "Enter an album name"
-msgstr "Skriv et albumnavn"
+#: ../../mod/setup.php:425
+msgid "PHP executable path"
+msgstr "PHP-kjĆørefilens sti"
-#: ../../mod/photos.php:625
-msgid "or select an existing album (doubleclick)"
-msgstr "eller velg et eksisterende album (dobbeltklikk)"
+#: ../../mod/setup.php:425
+msgid ""
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
+msgstr "Skriv full sti til kjĆørefilen for PHP. Du kan la denne stĆ„ blank for Ć„ fortsette installasjonen."
-#: ../../mod/photos.php:626
-msgid "Create a status post for this upload"
-msgstr "Lag et statusinnlegg for denne opplastingen"
+#: ../../mod/setup.php:430
+msgid "Command line PHP"
+msgstr "Kommandolinje PHP"
-#: ../../mod/photos.php:627
-msgid "Caption (optional):"
-msgstr "Bildetekst (valgfritt):"
+#: ../../mod/setup.php:439
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
+msgstr "Kommandolinjeversjonen av PHP pƄ ditt system har ikke \"register_argc_argv\" pƄskrudd."
-#: ../../mod/photos.php:628
-msgid "Description (optional):"
-msgstr "Beskrivelse (valgfritt):"
+#: ../../mod/setup.php:440
+msgid "This is required for message delivery to work."
+msgstr "Dette er pƄkrevd for at meldingslevering skal virke."
-#: ../../mod/photos.php:655
-msgid "Album name could not be decoded"
-msgstr "Albumnavnet kunne ikke dekodes"
+#: ../../mod/setup.php:443
+msgid "PHP register_argc_argv"
+msgstr "PHP register_argc_argv"
-#: ../../mod/photos.php:699 ../../mod/photos.php:1233
-#: ../../mod/photos.php:1250
-msgid "Contact Photos"
-msgstr "Kontaktbilder"
+#: ../../mod/setup.php:461
+#, php-format
+msgid ""
+"Your max allowed total upload size is set to %s. Maximum size of one file to"
+" upload is set to %s. You are allowed to upload up to %d files at once."
+msgstr "Den stĆørste totale opplastingsstĆørrelsen du er tillatt er satt til %s. FilstĆørrelsen pĆ„ en enkelt fil er satt til Ć„ maksimalt vƦre %s. Du har lov til Ć„ laste opp inntil %d filer samtidig."
-#: ../../mod/photos.php:722
-msgid "Show Newest First"
-msgstr "Vis nyeste fĆørst"
+#: ../../mod/setup.php:466
+msgid "You can adjust these settings in the servers php.ini."
+msgstr "Du kan justere disse innstillingene i tjenerens php.ini."
-#: ../../mod/photos.php:724
-msgid "Show Oldest First"
-msgstr "Vis eldste fĆørst"
+#: ../../mod/setup.php:468
+msgid "PHP upload limits"
+msgstr "PHP opplastingsgrenser"
-#: ../../mod/photos.php:824
-msgid "Permission denied. Access to this item may be restricted."
-msgstr "Tillatelse avvist. Tilgang til dette elementet kan vƦre begrenset."
+#: ../../mod/setup.php:491
+msgid ""
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
+msgstr "Feil: \"openssl_pkey_new\"-funksjonen pĆ„ dette systemet er ikke i stand til Ć„ lage krypteringsnĆøkler"
-#: ../../mod/photos.php:826
-msgid "Photo not available"
-msgstr "Bilde er utilgjengelig"
+#: ../../mod/setup.php:492
+msgid ""
+"If running under Windows, please see "
+"\"http://www.php.net/manual/en/openssl.installation.php\"."
+msgstr "Ved kjĆøring pĆ„ Windows, vennligst se \"http://www.php.net/manual/en/openssl.installation.php\"."
-#: ../../mod/photos.php:884
-msgid "Use as profile photo"
-msgstr "Bruk som profilbilde"
+#: ../../mod/setup.php:495
+msgid "Generate encryption keys"
+msgstr "Lag krypteringsnĆøkler"
-#: ../../mod/photos.php:891
-msgid "Private Photo"
-msgstr "Privat bilde"
+#: ../../mod/setup.php:507
+msgid "libCurl PHP module"
+msgstr "libCurl PHP-modul"
-#: ../../mod/photos.php:902 ../../mod/events.php:652 ../../mod/events.php:659
-msgid "Previous"
-msgstr "Forrige"
+#: ../../mod/setup.php:508
+msgid "GD graphics PHP module"
+msgstr "GD graphics PHP-modul"
-#: ../../mod/photos.php:906
-msgid "View Full Size"
-msgstr "Vis i full stĆørrelse"
+#: ../../mod/setup.php:509
+msgid "OpenSSL PHP module"
+msgstr "OpenSSL PHP-modul"
-#: ../../mod/photos.php:985
-msgid "Edit photo"
-msgstr "Endre bilde"
+#: ../../mod/setup.php:510
+msgid "mysqli or postgres PHP module"
+msgstr "MySQLi eller Postgres PHP modul"
-#: ../../mod/photos.php:987
-msgid "Rotate CW (right)"
-msgstr "Roter med klokka (mot hĆøyre)"
+#: ../../mod/setup.php:511
+msgid "mb_string PHP module"
+msgstr "mb_string PHP-modul"
-#: ../../mod/photos.php:988
-msgid "Rotate CCW (left)"
-msgstr "Roter mot klokka (venstre)"
+#: ../../mod/setup.php:512
+msgid "mcrypt PHP module"
+msgstr "mcrypt PHP-modul"
-#: ../../mod/photos.php:991
-msgid "Enter a new album name"
-msgstr "Skriv et nytt albumnavn"
+#: ../../mod/setup.php:513
+msgid "xml PHP module"
+msgstr "XML PHP modul"
-#: ../../mod/photos.php:992
-msgid "or select an existing one (doubleclick)"
-msgstr "eller velg et eksisterende album (dobbeltklikk)"
+#: ../../mod/setup.php:517 ../../mod/setup.php:519
+msgid "Apache mod_rewrite module"
+msgstr "Apache mod_rewrite-modul"
-#: ../../mod/photos.php:995
-msgid "Caption"
-msgstr "Overskrift"
+#: ../../mod/setup.php:517
+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."
-#: ../../mod/photos.php:997
-msgid "Add a Tag"
-msgstr "Legg til merkelapp"
+#: ../../mod/setup.php:523 ../../mod/setup.php:526
+msgid "proc_open"
+msgstr "proc_open"
-#: ../../mod/photos.php:1001
-msgid "Example: @bob, @Barbara_Jensen, @jim@example.com"
-msgstr "Eksempel: @bob, @Barbara_Jensen, @jim@example.com"
+#: ../../mod/setup.php:523
+msgid ""
+"Error: proc_open is required but is either not installed or has been "
+"disabled in php.ini"
+msgstr "Feil: proc_open er pƄkrevd, men er enten ikke installert eller har blitt avskrudd i php.ini"
-#: ../../mod/photos.php:1004
-msgid "Flag as adult in album view"
-msgstr "Flag som voksent i albumvisning"
+#: ../../mod/setup.php:531
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "Feil: libCURL PHP-modul er pƄkrevd, men er ikke installert."
-#: ../../mod/photos.php:1196
-msgid "In This Photo:"
-msgstr "I dette bildet:"
+#: ../../mod/setup.php:535
+msgid ""
+"Error: GD graphics PHP module with JPEG support required but not installed."
+msgstr "Feil: GD graphics PHP-modul med JPEG-stĆøtte er pĆ„krevd, men er ikke installert."
-#: ../../mod/photos.php:1201
-msgid "Map"
-msgstr "Kart"
+#: ../../mod/setup.php:539
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Feil: openssl PHP-modul er pƄkrevd, men er ikke installert."
-#: ../../mod/photos.php:1289
-msgid "View Album"
-msgstr "Vis album"
+#: ../../mod/setup.php:543
+msgid ""
+"Error: mysqli or postgres PHP module required but neither are installed."
+msgstr "Feil: mysqli eller postgres PHP modul er pƄkrevd, men ingen av dem er installert."
-#: ../../mod/photos.php:1300 ../../mod/photos.php:1313
-#: ../../mod/photos.php:1314
-msgid "Recent Photos"
-msgstr "Nye bilder"
+#: ../../mod/setup.php:547
+msgid "Error: mb_string PHP module required but not installed."
+msgstr "Feil: mb_string PHP-modul er pƄkrevd, men er ikke installert."
-#: ../../mod/lockview.php:37
-msgid "Remote privacy information not available."
-msgstr "Ekstern personverninformasjon er ikke tilgjengelig."
+#: ../../mod/setup.php:551
+msgid "Error: mcrypt PHP module required but not installed."
+msgstr "Feil: mcrypt PHP-modul er pƄkrevd, men er ikke installert."
-#: ../../mod/lockview.php:58
-msgid "Visible to:"
-msgstr "Synlig for:"
+#: ../../mod/setup.php:555
+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."
-#: ../../mod/uexport.php:51 ../../mod/uexport.php:52
-msgid "Export Channel"
-msgstr "Eksporter kanal"
+#: ../../mod/setup.php:573
+msgid ""
+"The web installer needs to be able to create a file called \".htconfig.php\""
+" in the top folder of your web server and it is unable to do so."
+msgstr "Web-installasjonen mƄ kunne lage en fil kalt \".htconfig.php\" i toppkatalogen til web-tjeneren din, men dette fƄr den ikke til."
-#: ../../mod/uexport.php:53
+#: ../../mod/setup.php:574
msgid ""
-"Export your basic channel information to a file. This acts as a backup of "
-"your connections, permissions, profile and basic data, which can be used to "
-"import your data to a new server hub, but does not contain your content."
-msgstr "Eksporter grunnleggende informasjon om kanalen din til en fil. Denne er en sikkerhetskopi av dine forbindelser, tillatelser, profil og grunnleggende data, som kan brukes til Ć„ importere dine data til en ny hub, men den tar ikke med innholdet."
+"This is most often a permission setting, as the web server may not be able "
+"to write files in your folder - even if you can."
+msgstr "Dette er oftest tillatelsesinnstilling, ettersom webtjeneren kanskje kan skrive til filer i din mappe - selv om du kan."
-#: ../../mod/uexport.php:54
-msgid "Export Content"
-msgstr "Eksporter innhold"
+#: ../../mod/setup.php:575
+msgid ""
+"At the end of this procedure, we will give you a text to save in a file "
+"named .htconfig.php in your Red top folder."
+msgstr "PĆ„ slutten av denne prosedyren vil vi gi deg en tekst til Ć„ lagre i en fil kalt .htconfig.php i toppkatalogen til din Red."
-#: ../../mod/uexport.php:55
+#: ../../mod/setup.php:576
msgid ""
-"Export your channel information and recent content to a JSON backup that can"
-" be restored or imported to another server hub. This backs up all of your "
-"connections, permissions, profile data and several months of posts. This "
-"file may be VERY large. Please be patient - it may take several minutes for"
-" this download to begin."
-msgstr "Eksporter din kanalinformasjon og det nyeste innholdet til en JSON-sikkerhetskopi, som kan gjenopprettes eller importeres til en annen hub. Denne lager en sikkerhetskopi av alle dine forbindelser, tillatelser, profildata og flere mĆ„neder av innholdet ditt. Denne filen kan vƦre SVƆRT stor. Vennligst vƦr tĆ„lmodig - det kan ta flere minutter fĆør denne nedlastningen begynner."
+"You can alternatively skip this procedure and perform a manual installation."
+" Please see the file \"install/INSTALL.txt\" for instructions."
+msgstr "Alternativt, sĆ„ kan du hoppe over denne prosedyren og gjennomfĆøre en manuell installasjon. Vennligst se filen \"install/INSTALL.txt\" for instruksjoner."
-#: ../../mod/uexport.php:56
-msgid "Export your posts from a given year."
-msgstr "Eksporter dine innlegg fra et bestemt Ć„r"
+#: ../../mod/setup.php:579
+msgid ".htconfig.php is writable"
+msgstr ".htconfig.php kan skrives til"
-#: ../../mod/uexport.php:58
+#: ../../mod/setup.php:593
msgid ""
-"You may also export your posts and conversations for a particular year or "
-"month. Adjust the date in your browser location bar to select other dates. "
-"If the export fails (possibly due to memory exhaustion on your server hub), "
-"please try again selecting a more limited date range."
-msgstr "Du kan ogsĆ„ eksportere dine innlegg og samtaler for et bestemt Ć„r eller mĆ„ned. Juster datoen i din nettlesers adresselinje for Ć„ velge andre datoer. Hvis eksporten feiler (muligens pĆ„ grunn av utilstrekkelig minne pĆ„ din hub), vennligst prĆøv igjen med et mer begrenset datoomrĆ„de."
+"Red uses the Smarty3 template engine to render its web views. Smarty3 "
+"compiles templates to PHP to speed up rendering."
+msgstr "Red bruker malmotoren Smarty3 for Ć„ gjengi sine webvisninger. Smarty3 kompilerer malene om til PHP for Ć„ framskynde gjengivelsen."
-#: ../../mod/uexport.php:59
+#: ../../mod/setup.php:594
#, php-format
msgid ""
-"To select all posts for a given year, such as this year, visit <a "
-"href=\"%1$s\">%2$s</a>"
-msgstr "For Ć„ velge alle innlegg for et gitt Ć„r, slik som iĆ„r, besĆøk <a href=\"%1$s\">%2$s</a>"
+"In order to store these compiled templates, the web server needs to have "
+"write access to the directory %s under the Red top level folder."
+msgstr "For Ƅ kunne lagre disse kompilerte malene, sƄ mƄ webtjeneren ha skrivetilgang til katalogen %s under Red sin hovedmappe."
-#: ../../mod/uexport.php:60
-#, php-format
+#: ../../mod/setup.php:595 ../../mod/setup.php:616
msgid ""
-"To select all posts for a given month, such as January of this year, visit "
-"<a href=\"%1$s\">%2$s</a>"
-msgstr "For Ć„ velge alle innlegg fra en gitt mĆ„ned, slik som januar i Ć„r, besĆøk <a href=\"%1$s\">%2$s</a>"
+"Please ensure that the user that your web server runs as (e.g. www-data) has"
+" write access to this folder."
+msgstr "Vennligst sikre at brukeren som din web-tjeneste kjĆører som (for eksempel www-data) har skrivetilgang til denne katalogen."
-#: ../../mod/uexport.php:61
+#: ../../mod/setup.php:596
#, php-format
msgid ""
-"These content files may be imported or restored by visiting <a "
-"href=\"%1$s\">%2$s</a> on any site containing your channel. For best results"
-" please import or restore these in date order (oldest first)."
-msgstr "Disse innholdsfilene kan importeres eller gjenopprettes ved Ć„ besĆøke <a href=\"%1$s\">%2$s</a> pĆ„ ethvert nettsted som inneholder din kanal. For best resultat, vennligst importer eller gjenopprett disse etter dato (eldste fĆørst)."
-
-#: ../../mod/editpost.php:31
-msgid "Item is not editable"
-msgstr "Elementet kan ikke endres"
-
-#: ../../mod/editpost.php:57
-msgid "Delete item?"
-msgstr "Slett element?"
-
-#: ../../mod/editpost.php:164 ../../mod/rpost.php:128
-msgid "Edit post"
-msgstr "Endre innlegg"
+"Note: as a security measure, you should give the web server write access to "
+"%s only--not the template files (.tpl) that it contains."
+msgstr "Merknad: som et sikkerhetstiltak bĆør du bare gi webtjerenn skrivetilgang til %s - ikke til malfilene (.tpl) som den inneholder."
-#: ../../mod/follow.php:25
-msgid "Channel added."
-msgstr "Kanal lagt til."
+#: ../../mod/setup.php:599
+#, php-format
+msgid "%s is writable"
+msgstr "%s kan skrives til"
-#: ../../mod/rmagic.php:40
+#: ../../mod/setup.php:615
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."
+"Red uses the store directory to save uploaded files. The web server needs to"
+" have write access to the store directory under the Red top level folder"
+msgstr "Red bruker lagringsmappen for Ƅ lagre opplastede filer. Webtjeneren trenger Ƅ ha skrivetilgang til lagringsmappen under Red sin toppnivƄmappe."
-#: ../../mod/rmagic.php:40
-msgid "The error message was:"
-msgstr "Feilmeldingen var:"
+#: ../../mod/setup.php:619
+msgid "store is writable"
+msgstr "lageret kan skrives til"
-#: ../../mod/rmagic.php:44
-msgid "Authentication failed."
-msgstr "Autentisering mislyktes."
+#: ../../mod/setup.php:652
+msgid ""
+"SSL certificate cannot be validated. Fix certificate or disable https access"
+" to this site."
+msgstr "SSL-sertifikatet kan ikke kontrolleres. Fiks sertifikatet eller skru av https tilgang til dette nettstedet."
-#: ../../mod/rmagic.php:84
-msgid "Remote Authentication"
-msgstr "Fjernautentisering"
+#: ../../mod/setup.php:653
+msgid ""
+"If you have https access to your website or allow connections to TCP port "
+"443 (the https: port), you MUST use a browser-valid certificate. You MUST "
+"NOT use self-signed certificates!"
+msgstr "Hvis du har HTTPS-tilgang til ditt nettsted eller tillater forbindelser til TCP port 443 (HTTPS-porten), sĆ„ Mƅ du bruke nettlesergodkjent sertifkater. Du Mƅ IKKE bruke egensignert sertifikater!"
-#: ../../mod/rmagic.php:85
-msgid "Enter your channel address (e.g. channel@example.com)"
-msgstr "Skriv din kanaladresse (for eksempel channel@exampel.com)"
+#: ../../mod/setup.php:654
+msgid ""
+"This restriction is incorporated because public posts from you may for "
+"example contain references to images on your own hub."
+msgstr "Denne begrensningen er tatt inn fordi offentlige innlegg fra deg kan for eksempel inneholde referanser til bilder pƄ din egen hub."
-#: ../../mod/rmagic.php:86
-msgid "Authenticate"
-msgstr "Autentiser"
+#: ../../mod/setup.php:655
+msgid ""
+"If your certificate is not recognized, members of other sites (who may "
+"themselves have valid certificates) will get a warning message on their own "
+"site complaining about security issues."
+msgstr "Hvis sertifikatet ditt ikke gjenkjennes, sƄ vil medlemmer pƄ andre nettsteder (som selv kan ha godkjente sertifikater) fƄ en beskjed med en advarsel pƄ deres eget nettsted som klager over sikkerhetsproblemer."
-#: ../../mod/chat.php:174
-msgid "Room not found"
-msgstr "Rommet ble ikke funnet"
+#: ../../mod/setup.php:656
+msgid ""
+"This can cause usability issues elsewhere (not just on your own site) so we "
+"must insist on this requirement."
+msgstr "Dette kan gi problemer med brukervennlighet (ikke bare pƄ ditt eget nettsted), sƄ vi mƄ insistere pƄ dette kravet."
-#: ../../mod/chat.php:185
-msgid "Leave Room"
-msgstr "Forlat rom"
+#: ../../mod/setup.php:657
+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."
-#: ../../mod/chat.php:186
-msgid "Delete This Room"
-msgstr "Slett dette rommet"
+#: ../../mod/setup.php:659
+msgid "SSL certificate validation"
+msgstr "SSL sertifikat-kontroll"
-#: ../../mod/chat.php:187
-msgid "I am away right now"
-msgstr "Jeg er borte akkurat nƄ"
+#: ../../mod/setup.php:665
+msgid ""
+"Url rewrite in .htaccess is not working. Check your server "
+"configuration.Test: "
+msgstr "URL omskriving (rewrite) i .htaccess virker ikke. Sjekk konfigurasjonen til tjeneren din. Test:"
-#: ../../mod/chat.php:188
-msgid "I am online"
-msgstr "Jeg er online"
+#: ../../mod/setup.php:668
+msgid "Url rewrite is working"
+msgstr "URL rewrite virker"
-#: ../../mod/chat.php:190
-msgid "Bookmark this room"
-msgstr "Bokmerk dette rommet"
+#: ../../mod/setup.php:677
+msgid ""
+"The database configuration file \".htconfig.php\" could not be written. "
+"Please use the enclosed text to create a configuration file in your web "
+"server root."
+msgstr "Databasekonfigurasjonsfilen \".htconfig.php\" kunne ikke skrives. Vennligst bruk den medfĆølgende teksten for Ć„ lage en konfigurasjonsfil i toppkatalogen av din web-tjener."
-#: ../../mod/chat.php:208 ../../mod/chat.php:231
-msgid "New Chatroom"
-msgstr "Nytt chatrom"
+#: ../../mod/setup.php:701
+msgid "Errors encountered creating database tables."
+msgstr "Feil oppstod under opprettelsen av databasetabeller."
-#: ../../mod/chat.php:209
-msgid "Chatroom Name"
-msgstr "Navn pƄ chatrom"
+#: ../../mod/setup.php:735
+msgid "<h1>What next</h1>"
+msgstr "<h1>Hva gjenstƄr</h1>"
-#: ../../mod/chat.php:210
-msgid "Expiration of chats (minutes)"
-msgstr "Chat utgƄr (antall minutter)"
+#: ../../mod/setup.php:736
+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."
-#: ../../mod/chat.php:227
-#, php-format
-msgid "%1$s's Chatrooms"
-msgstr "%1$s sine chatrom"
+#: ../../mod/lostpass.php:15
+msgid "No valid account found."
+msgstr "Ingen gyldig konto funnet."
-#: ../../mod/search.php:212
-#, php-format
-msgid "Items tagged with: %s"
-msgstr "Elementer merket med: %s"
+#: ../../mod/lostpass.php:29
+msgid "Password reset request issued. Check your email."
+msgstr "ForespĆørsel om Ć„ tilbakestille passord er mottatt. Sjekk e-posten din."
-#: ../../mod/search.php:214
+#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:103
#, php-format
-msgid "Search results for: %s"
-msgstr "SĆøkeresultater for: %s"
-
-#: ../../mod/viewsrc.php:40
-msgid "Source of Item"
-msgstr "Kilde til element"
-
-#: ../../mod/ffsapi.php:8
-msgid "Share content from Firefox to $Projectname"
-msgstr "Del innhold fra Firefox til $Projectname"
-
-#: ../../mod/ffsapi.php:11
-msgid "Activate the Firefox $Projectname provider"
-msgstr "Skru pƄ Firefox $Projectname tilbyderen"
-
-#: ../../mod/magic.php:69
-msgid "Hub not found."
-msgstr "Hubben ble ikke funnet."
-
-#: ../../mod/connections.php:52 ../../mod/connections.php:150
-msgid "Blocked"
-msgstr "Blokkert"
-
-#: ../../mod/connections.php:57 ../../mod/connections.php:157
-msgid "Ignored"
-msgstr "Ignorert"
-
-#: ../../mod/connections.php:62 ../../mod/connections.php:171
-msgid "Hidden"
-msgstr "Skjult"
-
-#: ../../mod/connections.php:67 ../../mod/connections.php:164
-msgid "Archived"
-msgstr "Arkivert"
-
-#: ../../mod/connections.php:128
-msgid "Suggest new connections"
-msgstr "ForeslƄ nye forbindelser"
-
-#: ../../mod/connections.php:131
-msgid "New Connections"
-msgstr "Nye forbindelser"
-
-#: ../../mod/connections.php:134
-msgid "Show pending (new) connections"
-msgstr "Vis ventende (nye) forbindelser"
-
-#: ../../mod/connections.php:137 ../../mod/profperm.php:139
-msgid "All Connections"
-msgstr "Alle forbindelser"
-
-#: ../../mod/connections.php:140
-msgid "Show all connections"
-msgstr "Vis alle forbindelser"
-
-#: ../../mod/connections.php:143
-msgid "Unblocked"
-msgstr "Ikke blokkert lenger"
-
-#: ../../mod/connections.php:146
-msgid "Only show unblocked connections"
-msgstr "Vis bare forbindelser som ikke er blokkert"
-
-#: ../../mod/connections.php:153
-msgid "Only show blocked connections"
-msgstr "Vis bare forbindelser som er blokkert"
-
-#: ../../mod/connections.php:160
-msgid "Only show ignored connections"
-msgstr "Vis bare ignorerte forbindelser"
-
-#: ../../mod/connections.php:167
-msgid "Only show archived connections"
-msgstr "Vis bare arkiverte forbindelser"
-
-#: ../../mod/connections.php:174
-msgid "Only show hidden connections"
-msgstr "Vis bare skjulte forbindelser"
+msgid "Site Member (%s)"
+msgstr "Nettstedsmedlem (%s)"
-#: ../../mod/connections.php:225
+#: ../../mod/lostpass.php:40
#, php-format
-msgid "%1$s [%2$s]"
-msgstr "%1$s [%2$s]"
-
-#: ../../mod/connections.php:226
-msgid "Edit connection"
-msgstr "Endre forbindelse"
-
-#: ../../mod/connections.php:264
-msgid "Search your connections"
-msgstr "SĆøk blant dine forbindelser"
-
-#: ../../mod/connections.php:265
-msgid "Finding: "
-msgstr "Fant:"
+msgid "Password reset requested at %s"
+msgstr "Forespurt om Ć„ tilbakestille passord hos %s"
-#: ../../mod/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."
+#: ../../mod/lostpass.php:63
+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."
-#: ../../mod/manage.php:138
-msgid "Create a new channel"
-msgstr "Lag en ny kanal"
+#: ../../mod/lostpass.php:86 ../../boot.php:1551
+msgid "Password Reset"
+msgstr "Tilbakestill passord"
-#: ../../mod/manage.php:161
-msgid "Current Channel"
-msgstr "Gjeldende kanal"
+#: ../../mod/lostpass.php:87
+msgid "Your password has been reset as requested."
+msgstr "Ditt passord har blitt tilbakestilt som forespurt."
-#: ../../mod/manage.php:163
-msgid "Switch to one of your channels by selecting it."
-msgstr "Bytt til en av dine kanaler ved Ć„ velge den."
+#: ../../mod/lostpass.php:88
+msgid "Your new password is"
+msgstr "Ditt nye passord er"
-#: ../../mod/manage.php:164
-msgid "Default Channel"
-msgstr "Standardkanal"
+#: ../../mod/lostpass.php:89
+msgid "Save or copy your new password - and then"
+msgstr "Lagre eller kopier ditt nye passord, og deretter kan du"
-#: ../../mod/manage.php:165
-msgid "Make Default"
-msgstr "GjĆør til standard"
+#: ../../mod/lostpass.php:90
+msgid "click here to login"
+msgstr "klikke her for Ć„ logge inn"
-#: ../../mod/manage.php:168
-#, php-format
-msgid "%d new messages"
-msgstr "%d nye meldinger"
+#: ../../mod/lostpass.php:91
+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."
-#: ../../mod/manage.php:169
+#: ../../mod/lostpass.php:108
#, php-format
-msgid "%d new introductions"
-msgstr "%d nye introduksjoner"
-
-#: ../../mod/manage.php:171
-msgid "Delegated Channels"
-msgstr "Delegerte kanaler"
-
-#: ../../mod/menu.php:45
-msgid "Unable to update menu."
-msgstr "Ikke i stand til Ć„ oppdatere meny."
-
-#: ../../mod/menu.php:56
-msgid "Unable to create menu."
-msgstr "Ikke i stand til Ć„ lage meny."
-
-#: ../../mod/menu.php:94 ../../mod/menu.php:106
-msgid "Menu Name"
-msgstr "Menynavn"
-
-#: ../../mod/menu.php:94
-msgid "Unique name (not visible on webpage) - required"
-msgstr "Unikt navn (ikke synlig pƄ websiden) - pƄkrevet"
-
-#: ../../mod/menu.php:95 ../../mod/menu.php:107
-msgid "Menu Title"
-msgstr "Menytittel"
-
-#: ../../mod/menu.php:95
-msgid "Visible on webpage - leave empty for no title"
-msgstr "Synlig pƄ websiden - la stƄ tomt for ingen tittel"
-
-#: ../../mod/menu.php:96
-msgid "Allow Bookmarks"
-msgstr "Tillat bokmerker"
-
-#: ../../mod/menu.php:96 ../../mod/menu.php:153
-msgid "Menu may be used to store saved bookmarks"
-msgstr "Menyen kan brukes til Ć„ lagre lagrede bokmerker"
-
-#: ../../mod/menu.php:97 ../../mod/menu.php:155
-msgid "Submit and proceed"
-msgstr "Send inn og fortsett"
-
-#: ../../mod/menu.php:109
-msgid "Drop"
-msgstr "Slett"
-
-#: ../../mod/menu.php:113
-msgid "Bookmarks allowed"
-msgstr "Bokmerker tillatt"
-
-#: ../../mod/menu.php:115
-msgid "Delete this menu"
-msgstr "Slett denne menyen"
-
-#: ../../mod/menu.php:116 ../../mod/menu.php:150
-msgid "Edit menu contents"
-msgstr "Endre menyinnholdet"
-
-#: ../../mod/menu.php:117
-msgid "Edit this menu"
-msgstr "Endre denne menyen"
-
-#: ../../mod/menu.php:132
-msgid "Menu could not be deleted."
-msgstr "Menyen kunne ikke bli slettet."
-
-#: ../../mod/menu.php:140 ../../mod/mitem.php:24
-msgid "Menu not found."
-msgstr "Menyen ble ikke funnet."
-
-#: ../../mod/menu.php:145
-msgid "Edit Menu"
-msgstr "Endre meny"
-
-#: ../../mod/menu.php:149
-msgid "Add or remove entries to this menu"
-msgstr "Legg til eller fjern punkter i denne menyen"
-
-#: ../../mod/menu.php:151
-msgid "Menu name"
-msgstr "Menynavn"
-
-#: ../../mod/menu.php:151
-msgid "Must be unique, only seen by you"
-msgstr "MƄ vƦre unik, ses bare av deg"
-
-#: ../../mod/menu.php:152
-msgid "Menu title"
-msgstr "Menytittel"
-
-#: ../../mod/menu.php:152
-msgid "Menu title as seen by others"
-msgstr "Menytittelen andre ser"
-
-#: ../../mod/menu.php:153
-msgid "Allow bookmarks"
-msgstr "Tillat bokmerker"
-
-#: ../../mod/mail.php:34
-msgid "Unable to lookup recipient."
-msgstr "Ikke i stand til Ƅ slƄ opp mottaker."
-
-#: ../../mod/mail.php:42
-msgid "Unable to communicate with requested channel."
-msgstr "Ikke i stand til Ć„ kommunisere med forespurt kanal."
-
-#: ../../mod/mail.php:49
-msgid "Cannot verify requested channel."
-msgstr "Kan ikke bekrefte forespurt kanal."
-
-#: ../../mod/mail.php:75
-msgid "Selected channel has private message restrictions. Send failed."
-msgstr "Valgt kanal har restriksjoner for private meldinger. Sending feilet."
-
-#: ../../mod/mail.php:140
-msgid "Messages"
-msgstr "Meldinger"
-
-#: ../../mod/mail.php:175
-msgid "Message recalled."
-msgstr "Innlegg tilbakekalt."
-
-#: ../../mod/mail.php:188
-msgid "Conversation removed."
-msgstr "Samtale fjernet."
-
-#: ../../mod/mail.php:231
-msgid "Requested channel is not in this network"
-msgstr "Forespurt kanal er ikke tilgjengelig i dette nettverket."
-
-#: ../../mod/mail.php:239
-msgid "Send Private Message"
-msgstr "Send privat melding"
-
-#: ../../mod/mail.php:240 ../../mod/mail.php:370
-msgid "To:"
-msgstr "Til:"
-
-#: ../../mod/mail.php:243 ../../mod/mail.php:372
-msgid "Subject:"
-msgstr "Emne:"
-
-#: ../../mod/mail.php:250
-msgid "Send"
-msgstr "Send"
-
-#: ../../mod/mail.php:342
-msgid "Delete message"
-msgstr "Slett melding"
-
-#: ../../mod/mail.php:343
-msgid "Delivery report"
-msgstr "Leveringsrapport"
-
-#: ../../mod/mail.php:344
-msgid "Recall message"
-msgstr "Tilbakekall innlegg"
-
-#: ../../mod/mail.php:346
-msgid "Message has been recalled."
-msgstr "Innlegget har blitt tilbakekalt."
+msgid "Your password has changed at %s"
+msgstr "Ditt passord er endret hos %s"
-#: ../../mod/mail.php:363
-msgid "Delete Conversation"
-msgstr "Slett samtale"
+#: ../../mod/lostpass.php:123
+msgid "Forgot your Password?"
+msgstr "Glemt passord ditt?"
-#: ../../mod/mail.php:365
+#: ../../mod/lostpass.php:124
msgid ""
-"No secure communications available. You <strong>may</strong> be able to "
-"respond from the sender's profile page."
-msgstr "Ingen sikret kommunikasjon tilgjengelig. Du kan <strong>muligens</strong> greie Ć„ svare via senderens profilside."
-
-#: ../../mod/mail.php:369
-msgid "Send Reply"
-msgstr "Send svar"
+"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."
-#: ../../mod/mail.php:374
-#, php-format
-msgid "Your message for %s (%s):"
-msgstr "Din melding til %s (%s):"
+#: ../../mod/lostpass.php:125
+msgid "Email Address"
+msgstr "E-postadresse"
-#: ../../mod/help.php:148
-msgid "Documentation Search"
-msgstr "SĆøk i dokumentasjon"
+#: ../../mod/lostpass.php:126
+msgid "Reset"
+msgstr "Tilbakestill"
-#: ../../mod/help.php:186 ../../mod/help.php:192 ../../mod/help.php:198
-msgid "Help:"
-msgstr "Hjelp:"
+#: ../../mod/sharedwithme.php:94
+msgid "Files: shared with me"
+msgstr "Filer: delt med meg"
-#: ../../mod/help.php:213 ../../index.php:238
-msgid "Not Found"
-msgstr "Ikke funnet"
+#: ../../mod/sharedwithme.php:96
+msgid "NEW"
+msgstr "NY"
-#: ../../mod/help.php:237
-msgid "$Projectname Documentation"
-msgstr "$Projectname dokumentasjon"
+#: ../../mod/sharedwithme.php:99
+msgid "Remove all files"
+msgstr "Fjern alle filer"
-#: ../../mod/service_limits.php:19
-msgid "No service class restrictions found."
-msgstr "Ingen restriksjoner er funnet i tjenesteklasse."
+#: ../../mod/sharedwithme.php:100
+msgid "Remove this file"
+msgstr "Fjern denne filen"
#: ../../mod/siteinfo.php:15
#, php-format
@@ -8921,294 +9137,256 @@ msgstr "Forslag, ros og sƄ videre - vennligst e-post \"redmatrix\" hos librelis
msgid "Site Administrators"
msgstr "Nettstedsadministratorer"
-#: ../../mod/suggest.php:35
-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."
-
-#: ../../mod/events.php:21
-msgid "Calendar entries imported."
-msgstr "Kalenderhendelsene er importert."
-
-#: ../../mod/events.php:23
-msgid "No calendar entries found."
-msgstr "Ingen kalenderhendelser funnet."
-
-#: ../../mod/events.php:100
-msgid "Event can not end before it has started."
-msgstr "Hendelsen kan ikke slutte fĆør den starter."
-
-#: ../../mod/events.php:102 ../../mod/events.php:111 ../../mod/events.php:131
-msgid "Unable to generate preview."
-msgstr "Klarer ikke Ƅ lage forhƄndsvisning."
-
-#: ../../mod/events.php:109
-msgid "Event title and start time are required."
-msgstr "Hendelsestittel og starttidspunkt er pƄkrevd."
-
-#: ../../mod/events.php:129 ../../mod/events.php:254
-msgid "Event not found."
-msgstr "Hendelsen ble ikke funnet."
-
-#: ../../mod/events.php:437
-msgid "Edit event titel"
-msgstr "Rediger hendelsens tittel"
-
-#: ../../mod/events.php:437
-msgid "Event titel"
-msgstr "Hendelsens tittel"
-
-#: ../../mod/events.php:439
-msgid "Categories (comma-separated list)"
-msgstr "Kategorier (kommaseparert liste)"
-
-#: ../../mod/events.php:440
-msgid "Edit Category"
-msgstr "Endre kategori"
-
-#: ../../mod/events.php:440
-msgid "Category"
-msgstr "Kategori"
-
-#: ../../mod/events.php:443
-msgid "Edit start date and time"
-msgstr "Endre startdato og tidspunkt"
+#: ../../mod/sources.php:32
+msgid "Failed to create source. No channel selected."
+msgstr "Mislyktes med Ć„ lage kilde. Ingen kanal er valgt."
-#: ../../mod/events.php:443
-msgid "Start date and time"
-msgstr "Startdato og tidspunkt"
+#: ../../mod/sources.php:45
+msgid "Source created."
+msgstr "Kilden er laget."
-#: ../../mod/events.php:444 ../../mod/events.php:447
-msgid "Finish date and time are not known or not relevant"
-msgstr "Sluttdato og tidspunkt er ikke kjent eller ikke relevant"
+#: ../../mod/sources.php:57
+msgid "Source updated."
+msgstr "Kilden er oppdatert."
-#: ../../mod/events.php:446
-msgid "Edit finish date and time"
-msgstr "Endre sluttdato og tidspunkt"
+#: ../../mod/sources.php:82
+msgid "*"
+msgstr "*"
-#: ../../mod/events.php:446
-msgid "Finish date and time"
-msgstr "Sluttdato og tidspunkt"
+#: ../../mod/sources.php:89
+msgid "Manage remote sources of content for your channel."
+msgstr "HĆ„ndtere eksterne innholdskilder til din kanal."
-#: ../../mod/events.php:448 ../../mod/events.php:449
-msgid "Adjust for viewer timezone"
-msgstr "Juster i forhold til tilskuerens tidssone"
+#: ../../mod/sources.php:90 ../../mod/sources.php:100
+msgid "New Source"
+msgstr "Ny kilde"
-#: ../../mod/events.php:448
+#: ../../mod/sources.php:101 ../../mod/sources.php:133
msgid ""
-"Important for events that happen in a particular place. Not practical for "
-"global holidays."
-msgstr "Viktig for hendelser som skjer pƄ et bestemt sted. Ikke praktisk for globale ferier eller fridager."
-
-#: ../../mod/events.php:450
-msgid "Edit Description"
-msgstr "Endre beskrivelse"
-
-#: ../../mod/events.php:452
-msgid "Edit Location"
-msgstr "Endre plassering"
-
-#: ../../mod/events.php:455 ../../mod/events.php:457
-msgid "Share this event"
-msgstr "Del denne hendelsen"
-
-#: ../../mod/events.php:462
-msgid "Advanced Options"
-msgstr "Avanserte alternativer"
+"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."
-#: ../../mod/events.php:574
-msgid "l, F j"
-msgstr "l, F j"
+#: ../../mod/sources.php:102 ../../mod/sources.php:134
+msgid "Only import content with these words (one per line)"
+msgstr "Bare importer innhold med disse ordene (ett ord per linje)"
-#: ../../mod/events.php:596
-msgid "Edit event"
-msgstr "Endre hendelse"
+#: ../../mod/sources.php:102 ../../mod/sources.php:134
+msgid "Leave blank to import all public content"
+msgstr "La stƄ tomt for Ƅ importere alt offentlig innhold"
-#: ../../mod/events.php:598
-msgid "Delete event"
-msgstr "Slett hendelse"
+#: ../../mod/sources.php:103 ../../mod/sources.php:137
+msgid "Channel Name"
+msgstr "Kanalnavn"
-#: ../../mod/events.php:632
-msgid "calendar"
-msgstr "kalender"
+#: ../../mod/sources.php:123 ../../mod/sources.php:150
+msgid "Source not found."
+msgstr "Kilden ble ikke funnet."
-#: ../../mod/events.php:651
-msgid "Edit Event"
-msgstr "Endre hendelse"
+#: ../../mod/sources.php:130
+msgid "Edit Source"
+msgstr "Endre kilde"
-#: ../../mod/events.php:651
-msgid "Create Event"
-msgstr "Lag hendelse"
+#: ../../mod/sources.php:131
+msgid "Delete Source"
+msgstr "Slett kilde"
-#: ../../mod/events.php:661
-msgid "Today"
-msgstr "Idag"
+#: ../../mod/sources.php:158
+msgid "Source removed"
+msgstr "Kilden er fjernet"
-#: ../../mod/events.php:692
-msgid "Event removed"
-msgstr "Hendelse slettet"
+#: ../../mod/sources.php:160
+msgid "Unable to remove source."
+msgstr "Ikke i stand til Ć„ fjerne kilde."
-#: ../../mod/events.php:695
-msgid "Failed to remove event"
-msgstr "Mislyktes med Ć„ slette hendelse"
+#: ../../mod/subthread.php:114
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
+msgstr "%1$s fĆølger %2$s sin %3$s"
-#: ../../mod/profperm.php:29 ../../mod/profperm.php:58
-msgid "Invalid profile identifier."
-msgstr "Ugyldig profil-identifikator."
+#: ../../mod/subthread.php:116
+#, php-format
+msgid "%1$s stopped following %2$s's %3$s"
+msgstr "%1$s stopped Ć„ fĆølge %2$s sin %3$s"
-#: ../../mod/profperm.php:110
-msgid "Profile Visibility Editor"
-msgstr "Endre profilsynlighet"
+#: ../../mod/suggest.php:35
+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."
-#: ../../mod/profperm.php:114
-msgid "Click on a contact to add or remove."
-msgstr "Klikk pƄ en kontakt for Ƅ legge til eller fjerne."
+#: ../../mod/tagger.php:96
+#, 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"
-#: ../../mod/profperm.php:123
-msgid "Visible To"
-msgstr "Synlig for"
+#: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94
+msgid "Tag removed"
+msgstr "Merkelapp fjernet"
-#: ../../mod/mitem.php:48
-msgid "Unable to create element."
-msgstr "Klarer ikke Ć„ lage element."
+#: ../../mod/tagrm.php:119
+msgid "Remove Item Tag"
+msgstr "Fjern merkelapp fra element"
-#: ../../mod/mitem.php:72
-msgid "Unable to update menu element."
-msgstr "Ikke i stand til Ć„ oppdatere menyelement."
+#: ../../mod/tagrm.php:121
+msgid "Select a tag to remove: "
+msgstr "Velg merkelapp Ć„ fjerne:"
-#: ../../mod/mitem.php:88
-msgid "Unable to add menu element."
-msgstr "Ikke i stand til Ć„ legge til menyelement."
+#: ../../mod/thing.php:110
+msgid "Thing updated"
+msgstr "Tingen er oppdatert"
-#: ../../mod/mitem.php:149 ../../mod/mitem.php:222
-msgid "Menu Item Permissions"
-msgstr "Menyelement Tillatelser"
+#: ../../mod/thing.php:162
+msgid "Object store: failed"
+msgstr "Objektlagring: mislyktes"
-#: ../../mod/mitem.php:152 ../../mod/mitem.php:168
-msgid "Link Name"
-msgstr "Lenkenavn"
+#: ../../mod/thing.php:166
+msgid "Thing added"
+msgstr "Ting lagt til"
-#: ../../mod/mitem.php:153 ../../mod/mitem.php:227
-msgid "Link or Submenu Target"
-msgstr "Lenke- eller undermeny-mƄl"
+#: ../../mod/thing.php:192
+#, php-format
+msgid "OBJ: %1$s %2$s %3$s"
+msgstr "OBJ: %1$s %2$s %3$s"
-#: ../../mod/mitem.php:153
-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"
+#: ../../mod/thing.php:255
+msgid "Show Thing"
+msgstr "Vis ting"
-#: ../../mod/mitem.php:154 ../../mod/mitem.php:228
-msgid "Use magic-auth if available"
-msgstr "Bruk magic-autent hvis mulig"
+#: ../../mod/thing.php:262
+msgid "item not found."
+msgstr "element ble ikke funnet."
-#: ../../mod/mitem.php:155 ../../mod/mitem.php:229
-msgid "Open link in new window"
-msgstr "ƅpne lenke i nytt vindu"
+#: ../../mod/thing.php:295
+msgid "Edit Thing"
+msgstr "Endre ting"
-#: ../../mod/mitem.php:156 ../../mod/mitem.php:230
-msgid "Order in list"
-msgstr "Ordne i liste"
+#: ../../mod/thing.php:297 ../../mod/thing.php:347
+msgid "Select a profile"
+msgstr "Velg en profil"
-#: ../../mod/mitem.php:156 ../../mod/mitem.php:230
-msgid "Higher numbers will sink to bottom of listing"
-msgstr "HĆøyere tall vil synke mot bunnen av listen"
+#: ../../mod/thing.php:301 ../../mod/thing.php:350
+msgid "Post an activity"
+msgstr "Legg inn en aktivitet"
-#: ../../mod/mitem.php:157
-msgid "Submit and finish"
-msgstr "Send inn og avslutt"
+#: ../../mod/thing.php:301 ../../mod/thing.php:350
+msgid "Only sends to viewers of the applicable profile"
+msgstr "Sender bare til seere av den aktuelle profilen"
-#: ../../mod/mitem.php:158
-msgid "Submit and continue"
-msgstr "Send inn og fortsett"
+#: ../../mod/thing.php:303 ../../mod/thing.php:352
+msgid "Name of thing e.g. something"
+msgstr "Navn pƄ ting for eksempel noe"
-#: ../../mod/mitem.php:166
-msgid "Menu:"
-msgstr "Meny:"
+#: ../../mod/thing.php:305 ../../mod/thing.php:353
+msgid "URL of thing (optional)"
+msgstr "URL til ting (valgfritt)"
-#: ../../mod/mitem.php:169
-msgid "Link Target"
-msgstr "LenkemƄl"
+#: ../../mod/thing.php:307 ../../mod/thing.php:354
+msgid "URL for photo of thing (optional)"
+msgstr "URL til bilde av ting (valgfritt)"
-#: ../../mod/mitem.php:172
-msgid "Edit menu"
-msgstr "Endre meny"
+#: ../../mod/thing.php:345
+msgid "Add Thing to your Profile"
+msgstr "Legg til ting i din profil"
-#: ../../mod/mitem.php:175
-msgid "Edit element"
-msgstr "Endre element"
+#: ../../mod/uexport.php:51 ../../mod/uexport.php:52
+msgid "Export Channel"
+msgstr "Eksporter kanal"
-#: ../../mod/mitem.php:176
-msgid "Drop element"
-msgstr "Slett element"
+#: ../../mod/uexport.php:53
+msgid ""
+"Export your basic channel information to a file. This acts as a backup of "
+"your connections, permissions, profile and basic data, which can be used to "
+"import your data to a new server hub, but does not contain your content."
+msgstr "Eksporter grunnleggende informasjon om kanalen din til en fil. Denne er en sikkerhetskopi av dine forbindelser, tillatelser, profil og grunnleggende data, som kan brukes til Ć„ importere dine data til en ny hub, men den tar ikke med innholdet."
-#: ../../mod/mitem.php:177
-msgid "New element"
-msgstr "Nytt element"
+#: ../../mod/uexport.php:54
+msgid "Export Content"
+msgstr "Eksporter innhold"
-#: ../../mod/mitem.php:178
-msgid "Edit this menu container"
-msgstr "Endre denne menybeholderen"
+#: ../../mod/uexport.php:55
+msgid ""
+"Export your channel information and recent content to a JSON backup that can"
+" be restored or imported to another server hub. This backs up all of your "
+"connections, permissions, profile data and several months of posts. This "
+"file may be VERY large. Please be patient - it may take several minutes for"
+" this download to begin."
+msgstr "Eksporter din kanalinformasjon og det nyeste innholdet til en JSON-sikkerhetskopi, som kan gjenopprettes eller importeres til en annen hub. Denne lager en sikkerhetskopi av alle dine forbindelser, tillatelser, profildata og flere mĆ„neder av innholdet ditt. Denne filen kan vƦre SVƆRT stor. Vennligst vƦr tĆ„lmodig - det kan ta flere minutter fĆør denne nedlastningen begynner."
-#: ../../mod/mitem.php:179
-msgid "Add menu element"
-msgstr "Legg til menyelement"
+#: ../../mod/uexport.php:56
+msgid "Export your posts from a given year."
+msgstr "Eksporter dine innlegg fra et bestemt Ć„r"
-#: ../../mod/mitem.php:180
-msgid "Delete this menu item"
-msgstr "Slett dette menyelementet"
+#: ../../mod/uexport.php:58
+msgid ""
+"You may also export your posts and conversations for a particular year or "
+"month. Adjust the date in your browser location bar to select other dates. "
+"If the export fails (possibly due to memory exhaustion on your server hub), "
+"please try again selecting a more limited date range."
+msgstr "Du kan ogsĆ„ eksportere dine innlegg og samtaler for et bestemt Ć„r eller mĆ„ned. Juster datoen i din nettlesers adresselinje for Ć„ velge andre datoer. Hvis eksporten feiler (muligens pĆ„ grunn av utilstrekkelig minne pĆ„ din hub), vennligst prĆøv igjen med et mer begrenset datoomrĆ„de."
-#: ../../mod/mitem.php:181
-msgid "Edit this menu item"
-msgstr "Endre dette menyelementet"
+#: ../../mod/uexport.php:59
+#, php-format
+msgid ""
+"To select all posts for a given year, such as this year, visit <a "
+"href=\"%1$s\">%2$s</a>"
+msgstr "For Ć„ velge alle innlegg for et gitt Ć„r, slik som iĆ„r, besĆøk <a href=\"%1$s\">%2$s</a>"
-#: ../../mod/mitem.php:198
-msgid "Menu item not found."
-msgstr "Menyelement ble ikke funnet."
+#: ../../mod/uexport.php:60
+#, php-format
+msgid ""
+"To select all posts for a given month, such as January of this year, visit "
+"<a href=\"%1$s\">%2$s</a>"
+msgstr "For Ć„ velge alle innlegg fra en gitt mĆ„ned, slik som januar i Ć„r, besĆøk <a href=\"%1$s\">%2$s</a>"
-#: ../../mod/mitem.php:211
-msgid "Menu item deleted."
-msgstr "Menyelement slettet."
+#: ../../mod/uexport.php:61
+#, php-format
+msgid ""
+"These content files may be imported or restored by visiting <a "
+"href=\"%1$s\">%2$s</a> on any site containing your channel. For best results"
+" please import or restore these in date order (oldest first)."
+msgstr "Disse innholdsfilene kan importeres eller gjenopprettes ved Ć„ besĆøke <a href=\"%1$s\">%2$s</a> pĆ„ ethvert nettsted som inneholder din kanal. For best resultat, vennligst importer eller gjenopprett disse etter dato (eldste fĆørst)."
-#: ../../mod/mitem.php:213
-msgid "Menu item could not be deleted."
-msgstr "Menyelement kunne ikke bli slettet."
+#: ../../mod/viewconnections.php:59
+msgid "No connections."
+msgstr "Ingen forbindelser."
-#: ../../mod/mitem.php:220
-msgid "Edit Menu Element"
-msgstr "Endre menyelement"
+#: ../../mod/viewconnections.php:72
+#, php-format
+msgid "Visit %s's profile [%s]"
+msgstr "BesĆøk %s sin profil [%s]"
-#: ../../mod/mitem.php:226
-msgid "Link text"
-msgstr "Lenketekst"
+#: ../../mod/viewconnections.php:101
+msgid "View Connections"
+msgstr "Vis forbindelser"
-#: ../../mod/wholikesme.php:13
-msgid "Who likes me?"
-msgstr "Hvem liker meg?"
+#: ../../mod/viewsrc.php:40
+msgid "Source of Item"
+msgstr "Kilde til element"
-#: ../../mod/sharedwithme.php:94
-msgid "Files: shared with me"
-msgstr "Filer: delt med meg"
+#: ../../mod/webpages.php:193
+msgid "Page Title"
+msgstr "Sidetittel"
-#: ../../mod/sharedwithme.php:96
-msgid "NEW"
-msgstr "NY"
+#: ../../mod/xchan.php:6
+msgid "Xchan Lookup"
+msgstr "Xchan oppslag"
-#: ../../mod/sharedwithme.php:99
-msgid "Remove all files"
-msgstr "Fjern alle filer"
+#: ../../mod/xchan.php:9
+msgid "Lookup xchan beginning with (or webbie): "
+msgstr "SlƄ opp xchan som begynner med (eller webbie):"
-#: ../../mod/sharedwithme.php:100
-msgid "Remove this file"
-msgstr "Fjern denne filen"
+#: ../../mod/cover_photo.php:130 ../../mod/cover_photo.php:177
+msgid "Cover Photos"
+msgstr "Forsidebilder"
-#: ../../mod/viewconnections.php:59
-msgid "No connections."
-msgstr "Ingen forbindelser."
+#: ../../mod/cover_photo.php:352
+msgid "Upload Cover Photo"
+msgstr "Last opp forsidebilde"
-#: ../../mod/viewconnections.php:72
-#, php-format
-msgid "Visit %s's profile [%s]"
-msgstr "BesĆøk %s sin profil [%s]"
+#: ../../mod/cal.php:63
+msgid "Permissions denied."
+msgstr "Tillatelse avvist."
#: ../../view/theme/redbasic/php/config.php:82
msgid "Focus (Hubzilla default)"
@@ -9346,57 +9524,51 @@ msgstr "Angi stĆørrelsen for samtalens forfatterbilde"
msgid "Set size of followup author photos"
msgstr "Angi stĆørrelsen pĆ„ forfatterbilder ved oppfĆølging"
-#: ../../Zotlabs/Zot/Auth.php:140
-msgid ""
-"Remote authentication blocked. You are logged into this site locally. Please"
-" logout and retry."
-msgstr "Fjernautentisering blokkert. Du er logget inn pĆ„ dette nettstedet lokalt. Vennligst logg ut og prĆøv pĆ„ nytt."
-
-#: ../../boot.php:1299
+#: ../../boot.php:1351
#, php-format
msgid "Update %s failed. See error logs."
msgstr "Oppdatering %s mislyktes. Se feilloggen."
-#: ../../boot.php:1302
+#: ../../boot.php:1354
#, php-format
msgid "Update Error at %s"
msgstr "Oppdateringsfeil ved %s"
-#: ../../boot.php:1469
+#: ../../boot.php:1524
msgid ""
"Create an account to access services and applications within the Hubzilla"
msgstr "Lag en konto for Ƅ fƄ tilgang til tjenester og programmer i Hubzilla"
-#: ../../boot.php:1491
+#: ../../boot.php:1546
msgid "Password"
msgstr "Passord"
-#: ../../boot.php:1492
+#: ../../boot.php:1547
msgid "Remember me"
msgstr "Husk meg"
-#: ../../boot.php:1495
+#: ../../boot.php:1550
msgid "Forgot your password?"
msgstr "Glemt passordet ditt?"
-#: ../../boot.php:2115
+#: ../../boot.php:2180
msgid "toggle mobile"
msgstr "Skru pƄ mobil"
-#: ../../boot.php:2250
+#: ../../boot.php:2333
msgid "Website SSL certificate is not valid. Please correct."
msgstr "Nettstedets SSL-sertifikat er ikke gyldig. Vennligst fiks dette."
-#: ../../boot.php:2253
+#: ../../boot.php:2336
#, php-format
msgid "[hubzilla] Website SSL error for %s"
msgstr "[hubzilla] SSL-feil ved nettsted hos %s"
-#: ../../boot.php:2290
+#: ../../boot.php:2373
msgid "Cron/Scheduled tasks not running."
msgstr "Cron/planlagte oppgaver kjĆører ikke."
-#: ../../boot.php:2294
+#: ../../boot.php:2377
#, php-format
msgid "[hubzilla] Cron tasks not running on %s"
msgstr "[hubzilla] Cron-oppgaver kjĆører ikke pĆ„ %s"
diff --git a/view/nb-no/hstrings.php b/view/nb-no/hstrings.php
index 24dd51904..82f629aff 100644
--- a/view/nb-no/hstrings.php
+++ b/view/nb-no/hstrings.php
@@ -5,114 +5,10 @@ function string_plural_select_nb_no($n){
return ($n != 1);;
}}
;
-$a->strings["Connect"] = "Koble";
-$a->strings["New window"] = "Nytt vindu";
-$a->strings["Open the selected location in a different window or browser tab"] = "ƅpne det valgte stedet i et annet vindu eller nettleser-fane";
-$a->strings["User '%s' deleted"] = "Brukeren '%s' er slettet";
-$a->strings["Missing room name"] = "Mangler romnavn";
-$a->strings["Duplicate room name"] = "Duplikat romnavn";
-$a->strings["Invalid room specifier."] = "Ugyldig rom-spesifisering";
-$a->strings["Room not found."] = "Rommet ble ikke funnet.";
-$a->strings["Permission denied."] = "Tillatelse avslƄtt.";
-$a->strings["Room is full"] = "Rommet er fullt";
-$a->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.";
-$a->strings["Unable to create a unique channel address. Import failed."] = "Klarte ikke Ć„ lage en unik kanaladresse. Import mislyktes.";
-$a->strings["Channel clone failed. Import failed."] = "Kanalkloning mislyktes. Import mislyktes.";
-$a->strings["Cloned channel not found. Import failed."] = "Klonet kanal ble ikke funnet. Import mislyktes.";
-$a->strings["prev"] = "forrige";
-$a->strings["first"] = "fĆørste";
-$a->strings["last"] = "siste";
-$a->strings["next"] = "neste";
-$a->strings["older"] = "eldre";
-$a->strings["newer"] = "nyere";
-$a->strings["No connections"] = "Ingen forbindelser";
-$a->strings["%d Connection"] = array(
- 0 => "%d forbindelse",
- 1 => "%d forbindelser",
-);
-$a->strings["View Connections"] = "Vis forbindelser";
-$a->strings["Search"] = "SĆøk";
-$a->strings["Save"] = "Lagre";
-$a->strings["poke"] = "prikk";
-$a->strings["poked"] = "prikket";
-$a->strings["ping"] = "varsle";
-$a->strings["pinged"] = "varslet";
-$a->strings["prod"] = "oppildne";
-$a->strings["prodded"] = "oppildnet";
-$a->strings["slap"] = "daske";
-$a->strings["slapped"] = "dasket";
-$a->strings["finger"] = "fingre";
-$a->strings["fingered"] = "fingret";
-$a->strings["rebuff"] = "tilbakevise";
-$a->strings["rebuffed"] = "tilbakeviste";
-$a->strings["happy"] = "glad";
-$a->strings["sad"] = "trist";
-$a->strings["mellow"] = "dempet";
-$a->strings["tired"] = "trĆøtt";
-$a->strings["perky"] = "oppkvikket";
-$a->strings["angry"] = "sint";
-$a->strings["stupified"] = "slĆøvet";
-$a->strings["puzzled"] = "forundret";
-$a->strings["interested"] = "interessert";
-$a->strings["bitter"] = "bitter";
-$a->strings["cheerful"] = "munter";
-$a->strings["alive"] = "levende";
-$a->strings["annoyed"] = "irritert";
-$a->strings["anxious"] = "nervĆøs";
-$a->strings["cranky"] = "gretten";
-$a->strings["disturbed"] = "foruroliget";
-$a->strings["frustrated"] = "frustrert";
-$a->strings["depressed"] = "lei seg";
-$a->strings["motivated"] = "motivert";
-$a->strings["relaxed"] = "avslappet";
-$a->strings["surprised"] = "overrasket";
-$a->strings["Monday"] = "mandag";
-$a->strings["Tuesday"] = "tirsdag";
-$a->strings["Wednesday"] = "onsdag";
-$a->strings["Thursday"] = "torsdag";
-$a->strings["Friday"] = "fredag";
-$a->strings["Saturday"] = "lĆørdag";
-$a->strings["Sunday"] = "sĆøndag";
-$a->strings["January"] = "januar";
-$a->strings["February"] = "februar";
-$a->strings["March"] = "mars";
-$a->strings["April"] = "april";
-$a->strings["May"] = "mai";
-$a->strings["June"] = "juni";
-$a->strings["July"] = "juli";
-$a->strings["August"] = "august";
-$a->strings["September"] = "september";
-$a->strings["October"] = "oktober";
-$a->strings["November"] = "november";
-$a->strings["December"] = "desember";
-$a->strings["Unknown Attachment"] = "Ukjent vedlegg";
-$a->strings["Size"] = "StĆørrelse";
-$a->strings["unknown"] = "ukjent";
-$a->strings["remove category"] = "fjern kategori";
-$a->strings["remove from file"] = "fjern fra fil";
-$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
-$a->strings["Starts:"] = "Starter:";
-$a->strings["Finishes:"] = "Slutter:";
-$a->strings["Location:"] = "Plassering:";
-$a->strings["Click to open/close"] = "Klikk for Ć„ Ć„pne/lukke";
-$a->strings["Link to Source"] = "Lenke til kilde";
-$a->strings["default"] = "standard";
-$a->strings["Page layout"] = "Sidens layout";
-$a->strings["You can create your own with the layouts tool"] = "Du kan lage din egen med layout-verktĆøyet";
-$a->strings["Page content type"] = "Sidens innholdstype";
-$a->strings["Select an alternate language"] = "Velg et annet sprƄk";
-$a->strings["photo"] = "foto";
-$a->strings["event"] = "hendelse";
-$a->strings["status"] = "status";
-$a->strings["comment"] = "kommentar";
-$a->strings["activity"] = "aktivitet";
-$a->strings["Design Tools"] = "DesignverktĆøy";
-$a->strings["Blocks"] = "Byggeklosser";
-$a->strings["Menus"] = "Menyer";
-$a->strings["Layouts"] = "Layout";
-$a->strings["Pages"] = "Sider";
-$a->strings["Collection"] = "Samling";
+$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Fjernautentisering blokkert. Du er logget inn pĆ„ dette nettstedet lokalt. Vennligst logg ut og prĆøv pĆ„ nytt.";
+$a->strings["Welcome %s. Remote authentication successful."] = "Velkommen %s. Ekstern autentisering er vellykket.";
$a->strings["parent"] = "opp et nivƄ";
+$a->strings["Collection"] = "Samling";
$a->strings["Principal"] = "Viktigste";
$a->strings["Addressbook"] = "Adressebok";
$a->strings["Calendar"] = "Kalender";
@@ -126,6 +22,7 @@ $a->strings["Create"] = "Lag";
$a->strings["Upload"] = "Last opp";
$a->strings["Name"] = "Navn";
$a->strings["Type"] = "Type";
+$a->strings["Size"] = "StĆørrelse";
$a->strings["Last Modified"] = "Sist endret";
$a->strings["Edit"] = "Endre";
$a->strings["Delete"] = "Slett";
@@ -134,6 +31,167 @@ $a->strings["You are using %1\$s of %2\$s available file storage. (%3\$s&#37;)"]
$a->strings["WARNING:"] = "ADVARSEL:";
$a->strings["Create new folder"] = "Lag ny mappe";
$a->strings["Upload file"] = "Last opp fil";
+$a->strings["Permission denied."] = "Tillatelse avslƄtt.";
+$a->strings["Not Found"] = "Ikke funnet";
+$a->strings["Page not found."] = "Siden ikke funnet.";
+$a->strings["Connect"] = "Koble";
+$a->strings["New window"] = "Nytt vindu";
+$a->strings["Open the selected location in a different window or browser tab"] = "ƅpne det valgte stedet i et annet vindu eller nettleser-fane";
+$a->strings["User '%s' deleted"] = "Brukeren '%s' er slettet";
+$a->strings["No username found in import file."] = "Ingen brukernavn ble funnet i importfilen.";
+$a->strings["Unable to create a unique channel address. Import failed."] = "Klarte ikke Ć„ lage en unik kanaladresse. Import mislyktes.";
+$a->strings["Import completed."] = "Import ferdig.";
+$a->strings["Not a valid email address"] = "Ikke en gyldig e-postadresse";
+$a->strings["Your email domain is not among those allowed on this site"] = "Ditt e-postdomene er ikke blant de som er tillatt pƄ dette stedet";
+$a->strings["Your email address is already registered at this site."] = "Din e-postadresse er allerede registrert pƄ dette nettstedet.";
+$a->strings["An invitation is required."] = "En invitasjon er pƄkrevd.";
+$a->strings["Invitation could not be verified."] = "Invitasjon kunne ikke bekreftes.";
+$a->strings["Please enter the required information."] = "Vennligst skriv inn nĆødvendig informasjon.";
+$a->strings["Failed to store account information."] = "Mislyktes med Ć„ lagre kontoinformasjon.";
+$a->strings["Registration confirmation for %s"] = "Registreringsbekreftelse for %s";
+$a->strings["Registration request at %s"] = "RegistreringsforespĆørsel hos %s";
+$a->strings["Administrator"] = "Administrator";
+$a->strings["your registration password"] = "ditt registreringspassord";
+$a->strings["Registration details for %s"] = "Registreringsdetaljer for %s";
+$a->strings["Account approved."] = "Konto godkjent.";
+$a->strings["Registration revoked for %s"] = "Registrering trukket tilbake for %s";
+$a->strings["Account verified. Please login."] = "Konto bekreftet. Vennligst logg inn.";
+$a->strings["Click here to upgrade."] = "Klikk her for Ć„ oppgradere.";
+$a->strings["This action exceeds the limits set by your subscription plan."] = "Denne handlingen gƄr utenfor grensene satt i din abonnementsplan.";
+$a->strings["This action is not available under your subscription plan."] = "Denne handlingen er ikke tilgjengelig i din abonnementsplan.";
+$a->strings["Visible to your default audience"] = "Synlig for ditt standard publikum";
+$a->strings["Show"] = "Vis";
+$a->strings["Don't show"] = "Ikke vis";
+$a->strings["Other networks and post services"] = "Andre nettverk og innleggstjenester";
+$a->strings["Permissions"] = "Tillatelser";
+$a->strings["Close"] = "Lukk";
+$a->strings[" and "] = "og";
+$a->strings["public profile"] = "offentlig profil";
+$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s endret %2\$s til &ldquo;%3\$s&rdquo;";
+$a->strings["Visit %1\$s's %2\$s"] = "BesĆøk %1\$s sitt %2\$s";
+$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s har oppdatert %2\$s, endret %3\$s.";
+$a->strings["Public Timeline"] = "Offentlig tidslinje";
+$a->strings["Site Admin"] = "Nettstedsadministrator";
+$a->strings["Bookmarks"] = "Bokmerker";
+$a->strings["Address Book"] = "Adressebok";
+$a->strings["Login"] = "Logg inn";
+$a->strings["Channel Manager"] = "Kanalstyring";
+$a->strings["Grid"] = "Nett";
+$a->strings["Settings"] = "Innstillinger";
+$a->strings["Webpages"] = "Websider";
+$a->strings["Channel Home"] = "Kanalhjem";
+$a->strings["Profile"] = "Profil";
+$a->strings["Photos"] = "Bilder";
+$a->strings["Events"] = "Hendelser";
+$a->strings["Directory"] = "Katalog";
+$a->strings["Help"] = "Hjelp";
+$a->strings["Mail"] = "Melding";
+$a->strings["Mood"] = "Stemning";
+$a->strings["Poke"] = "Prikk";
+$a->strings["Chat"] = "Chat";
+$a->strings["Search"] = "SĆøk";
+$a->strings["Probe"] = "UndersĆøk";
+$a->strings["Suggest"] = "ForreslƄ";
+$a->strings["Random Channel"] = "Tilfeldig kanal";
+$a->strings["Invite"] = "Inviter";
+$a->strings["Features"] = "Funksjoner";
+$a->strings["Language"] = "SprƄk";
+$a->strings["Post"] = "Innlegg";
+$a->strings["Profile Photo"] = "Profilbilde";
+$a->strings["Update"] = "Oppdater";
+$a->strings["Install"] = "Installer";
+$a->strings["Purchase"] = "KjĆøp";
+$a->strings["Item was not found."] = "Elementet ble ikke funnet.";
+$a->strings["No source file."] = "Ingen kildefil.";
+$a->strings["Cannot locate file to replace"] = "Kan ikke finne filen som skal byttes ut";
+$a->strings["Cannot locate file to revise/update"] = "Finner ikke filen som skal revideres/oppdateres";
+$a->strings["File exceeds size limit of %d"] = "Filens stĆørrelse overgĆ„r grensen pĆ„ %d";
+$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Du har nƄdd din lagringsgrense for vedlegg pƄ %1$.0f Mbytes.";
+$a->strings["File upload failed. Possible system limit or action terminated."] = "Mislyktes med Ć„ laste opp filen. Mulig systemgrense eller handling avbrutt.";
+$a->strings["Stored file could not be verified. Upload failed."] = "Lagret fil kunne ikke bekreftes. Opplasting mislyktes.";
+$a->strings["Path not available."] = "Stien er ikke tilgjengelig.";
+$a->strings["Empty pathname"] = "Tomt sti-navn";
+$a->strings["duplicate filename or path"] = "duplikat av filnavn eller sti";
+$a->strings["Path not found."] = "Stien ble ikke funnet.";
+$a->strings["mkdir failed."] = "mkdir mislyktes.";
+$a->strings["database storage failed."] = "databaselagring mislyktes.";
+$a->strings["Empty path"] = "Tom sti";
+$a->strings["Logged out."] = "Logget ut.";
+$a->strings["Failed authentication"] = "Mislykket autentisering";
+$a->strings["Login failed."] = "Innlogging mislyktes.";
+$a->strings["Attachments:"] = "Vedlegg:";
+$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
+$a->strings["\$Projectname event notification:"] = "\$Projectname hendelsesvarsling:";
+$a->strings["Starts:"] = "Starter:";
+$a->strings["Finishes:"] = "Slutter:";
+$a->strings["Location:"] = "Plassering:";
+$a->strings["Image/photo"] = "Bilde/fotografi";
+$a->strings["Encrypted content"] = "Kryptert innhold";
+$a->strings["Install %s element: "] = "Installer %s element:";
+$a->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.";
+$a->strings["webpage"] = "nettside";
+$a->strings["layout"] = "layout";
+$a->strings["block"] = "byggekloss";
+$a->strings["menu"] = "meny";
+$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s skrev fĆølgende %2\$s %3\$s";
+$a->strings["post"] = "innlegg";
+$a->strings["Different viewers will see this text differently"] = "Denne teksten vil se forskjellig ut for ulike besĆøkende";
+$a->strings["$1 spoiler"] = "$1 avslĆøring";
+$a->strings["$1 wrote:"] = "$1 skrev:";
+$a->strings["%1\$s's bookmarks"] = "%1\$s sine bokmerker";
+$a->strings["Missing room name"] = "Mangler romnavn";
+$a->strings["Duplicate room name"] = "Duplikat romnavn";
+$a->strings["Invalid room specifier."] = "Ugyldig rom-spesifisering";
+$a->strings["Room not found."] = "Rommet ble ikke funnet.";
+$a->strings["Room is full"] = "Rommet er fullt";
+$a->strings["Default"] = "Standard";
+$a->strings["%d invitation available"] = array(
+ 0 => "%d invitasjon tilgjengelig",
+ 1 => "%d invitasjoner tilgjengelig",
+);
+$a->strings["Advanced"] = "Avansert";
+$a->strings["Find Channels"] = "Finn kanaler";
+$a->strings["Enter name or interest"] = "Skriv navn eller interesse";
+$a->strings["Connect/Follow"] = "Forbindelse/FĆølg";
+$a->strings["Examples: Robert Morgenstein, Fishing"] = "Eksempler: Ola Nordmann, fisking";
+$a->strings["Find"] = "Finn";
+$a->strings["Channel Suggestions"] = "Kanalforslag";
+$a->strings["Random Profile"] = "Tilfeldig profil";
+$a->strings["Invite Friends"] = "Inviter venner";
+$a->strings["Advanced example: name=fred and country=iceland"] = "Avansert eksempel: navn=fred og land=island";
+$a->strings["Saved Folders"] = "Lagrede mapper";
+$a->strings["Everything"] = "Alt";
+$a->strings["Categories"] = "Kategorier";
+$a->strings["%d connection in common"] = array(
+ 0 => "%d forbindelse felles",
+ 1 => "%d forbindelser felles",
+);
+$a->strings["show more"] = "vis mer";
+$a->strings["Cannot locate DNS info for database server '%s'"] = "Kan ikke finne DNS-informasjon om databasetjener '%s'";
+$a->strings["Directory Options"] = "Kataloginnstillinger";
+$a->strings["Safe Mode"] = "Trygt modus";
+$a->strings["No"] = "Nei";
+$a->strings["Yes"] = "Ja";
+$a->strings["Public Forums Only"] = "Bare offentlige forum";
+$a->strings["This Website Only"] = "Kun dette nettstedet";
+$a->strings["This event has been added to your calendar."] = "Denne hendelsen er lagt til i din kalender.";
+$a->strings["event"] = "hendelse";
+$a->strings["Not specified"] = "Ikke spesifisert";
+$a->strings["Needs Action"] = "Trenger handling";
+$a->strings["Completed"] = "Ferdig";
+$a->strings["In Process"] = "Igang";
+$a->strings["Cancelled"] = "Avbrutt";
+$a->strings["Channel is blocked on this site."] = "Kanalen er blokkert pƄ dette nettstedet.";
+$a->strings["Channel location missing."] = "Kanalplassering mangler.";
+$a->strings["Response from remote channel was incomplete."] = "Svaret fra den andre kanalen var ikke komplett.";
+$a->strings["Channel was deleted and no longer exists."] = "Kanalen er slettet og finnes ikke lenger.";
+$a->strings["Protocol disabled."] = "Protokollen er avskrudd.";
+$a->strings["Channel discovery failed."] = "Kanaloppdagelse mislyktes.";
+$a->strings["local account not found."] = "lokal konto ble ikke funnet.";
+$a->strings["Cannot connect to yourself."] = "Kan ikke lage forbindelse med deg selv.";
+$a->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.";
+$a->strings["Channel clone failed. Import failed."] = "Kanalkloning mislyktes. Import mislyktes.";
+$a->strings["Cloned channel not found. Import failed."] = "Klonet kanal ble ikke funnet. Import mislyktes.";
$a->strings["Delete this item?"] = "Slett dette elementet?";
$a->strings["Comment"] = "Kommentar";
$a->strings["[+] show all"] = "[+] Vis alle";
@@ -172,7 +230,18 @@ $a->strings["about a year"] = "omtrent et Ć„r";
$a->strings["%d years"] = "%d Ć„r";
$a->strings[" "] = " ";
$a->strings["timeago.numbers"] = "timeago.numbers";
+$a->strings["January"] = "januar";
+$a->strings["February"] = "februar";
+$a->strings["March"] = "mars";
+$a->strings["April"] = "april";
$a->strings["__ctx:long__ May"] = "mai";
+$a->strings["June"] = "juni";
+$a->strings["July"] = "juli";
+$a->strings["August"] = "august";
+$a->strings["September"] = "september";
+$a->strings["October"] = "oktober";
+$a->strings["November"] = "november";
+$a->strings["December"] = "desember";
$a->strings["Jan"] = "Jan";
$a->strings["Feb"] = "Feb";
$a->strings["Mar"] = "Mar";
@@ -185,6 +254,13 @@ $a->strings["Sep"] = "Sep";
$a->strings["Oct"] = "Okt";
$a->strings["Nov"] = "Nov";
$a->strings["Dec"] = "Des";
+$a->strings["Sunday"] = "sĆøndag";
+$a->strings["Monday"] = "mandag";
+$a->strings["Tuesday"] = "tirsdag";
+$a->strings["Wednesday"] = "onsdag";
+$a->strings["Thursday"] = "torsdag";
+$a->strings["Friday"] = "fredag";
+$a->strings["Saturday"] = "lĆørdag";
$a->strings["Sun"] = "SĆøn";
$a->strings["Mon"] = "Man";
$a->strings["Tue"] = "Tirs";
@@ -197,96 +273,133 @@ $a->strings["__ctx:calendar__ month"] = "mƄned";
$a->strings["__ctx:calendar__ week"] = "uke";
$a->strings["__ctx:calendar__ day"] = "dag";
$a->strings["__ctx:calendar__ All day"] = "Hele dagen";
-$a->strings["No username found in import file."] = "Ingen brukernavn ble funnet i importfilen.";
-$a->strings["Import completed."] = "Import ferdig.";
-$a->strings["Default"] = "Standard";
-$a->strings["Permission denied"] = "Tillatelse avvist";
-$a->strings["(Unknown)"] = "(Ukjent)";
-$a->strings["Visible to anybody on the internet."] = "Synlig for enhver pƄ Internett.";
-$a->strings["Visible to you only."] = "Synlig bare for deg.";
-$a->strings["Visible to anybody in this network."] = "Synlig for enhver i dette nettverket.";
-$a->strings["Visible to anybody authenticated."] = "Synlig for enhver som er autentisert.";
-$a->strings["Visible to anybody on %s."] = "Synlig for alle pƄ %s.";
-$a->strings["Visible to all connections."] = "Synlig for alle forbindelser.";
-$a->strings["Visible to approved connections."] = "Synlig for godkjente forbindelser.";
-$a->strings["Visible to specific connections."] = "Synlig for spesifikke forbindelser.";
-$a->strings["Item not found."] = "Elementet ble ikke funnet.";
-$a->strings["Collection not found."] = "Samlingen ble ikke funnet.";
-$a->strings["Collection is empty."] = "Samlingen er tom.";
-$a->strings["Collection: %s"] = "Samling: %s";
-$a->strings["Connection: %s"] = "Forbindelse: %s";
-$a->strings["Connection not found."] = "Forbindelsen ble ikke funnet.";
-$a->strings["This event has been added to your calendar."] = "Denne hendelsen er lagt til i din kalender.";
-$a->strings["Not specified"] = "Ikke spesifisert";
-$a->strings["Needs Action"] = "Trenger handling";
-$a->strings["Completed"] = "Ferdig";
-$a->strings["In Process"] = "Igang";
-$a->strings["Cancelled"] = "Avbrutt";
-$a->strings["Unable to obtain identity information from database"] = "Klarer ikke Ƅ fƄ tak i identitetsinformasjon fra databasen";
-$a->strings["Empty name"] = "Mangler navn";
-$a->strings["Name too long"] = "Navnet er for langt";
-$a->strings["No account identifier"] = "Ingen kontoidentifikator";
-$a->strings["Nickname is required."] = "Kallenavn er pƄkrevd.";
-$a->strings["Reserved nickname. Please choose another."] = "Reservert kallenavn. Vennligst velg et annet.";
-$a->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.";
-$a->strings["Unable to retrieve created identity"] = "Klarer ikke Ć„ hente den lagede identiteten";
-$a->strings["Default Profile"] = "Standardprofil";
-$a->strings["Friends"] = "Venner";
-$a->strings["Requested channel is not available."] = "Forespurt kanal er ikke tilgjengelig.";
-$a->strings["Requested profile is not available."] = "Forespurt profil er ikke tilgjengelig.";
-$a->strings["Change profile photo"] = "Endre profilbilde";
-$a->strings["Profiles"] = "Profiler";
-$a->strings["Manage/edit profiles"] = "HĆ„ndtere/endre profiler";
-$a->strings["Create New Profile"] = "Lag ny profil";
+$a->strings["No recipient provided."] = "Ingen mottaker angitt.";
+$a->strings["[no subject]"] = "[ikke noe emne]";
+$a->strings["Unable to determine sender."] = "Kan ikke avgjĆøre avsender.";
+$a->strings["Stored post could not be verified."] = "Lagret innlegg kunne ikke bekreftes.";
+$a->strings["Logout"] = "Logg ut";
+$a->strings["End this session"] = "Avslutt denne Ćøkten";
+$a->strings["Home"] = "Hjem";
+$a->strings["Your posts and conversations"] = "Dine innlegg og samtaler";
+$a->strings["View Profile"] = "Vis profil";
+$a->strings["Your profile page"] = "Din profilside";
+$a->strings["Edit Profiles"] = "Endre profiler";
+$a->strings["Manage/Edit profiles"] = "HĆ„ndter/endre profiler";
$a->strings["Edit Profile"] = "Endre profil";
-$a->strings["Profile Image"] = "Profilbilde";
-$a->strings["visible to everybody"] = "synlig for alle";
-$a->strings["Edit visibility"] = "Endre synlighet";
-$a->strings["Gender:"] = "KjĆønn:";
-$a->strings["Status:"] = "Status:";
-$a->strings["Homepage:"] = "Hjemmeside:";
-$a->strings["Online Now"] = "Online nƄ";
-$a->strings["g A l F d"] = "g A l F d";
-$a->strings["F d"] = "F d";
-$a->strings["[today]"] = "[idag]";
-$a->strings["Birthday Reminders"] = "FĆødselsdagspĆ„minnnelser";
-$a->strings["Birthdays this week:"] = "FĆødselsdager denne uken:";
-$a->strings["[No description]"] = "[Ingen beskrivelse]";
-$a->strings["Event Reminders"] = "HendelsespƄminnelser";
-$a->strings["Events this week:"] = "Hendelser denne uken:";
-$a->strings["Profile"] = "Profil";
-$a->strings["Full Name:"] = "Fullt navn:";
-$a->strings["Like this channel"] = "Lik denne kanalen";
-$a->strings["__ctx:noun__ Like"] = array(
- 0 => "Liker",
- 1 => "Liker",
-);
-$a->strings["j F, Y"] = "j F, Y";
-$a->strings["j F"] = "j F";
-$a->strings["Birthday:"] = "FĆødselsdag:";
-$a->strings["Age:"] = "Alder:";
-$a->strings["for %1\$d %2\$s"] = "for %1\$d %2\$s";
-$a->strings["Sexual Preference:"] = "Seksuell preferanse:";
-$a->strings["Hometown:"] = "Hjemby:";
-$a->strings["Tags:"] = "Merkelapper:";
-$a->strings["Political Views:"] = "Politiske synspunkter:";
-$a->strings["Religion:"] = "Religion:";
-$a->strings["About:"] = "Om:";
-$a->strings["Hobbies/Interests:"] = "Hobbyer/interesser:";
-$a->strings["Likes:"] = "Liker:";
-$a->strings["Dislikes:"] = "Misliker:";
-$a->strings["Contact information and Social Networks:"] = "Kontaktinformasjon og sosiale nettverk:";
-$a->strings["My other channels:"] = "Mine andre kanaler:";
-$a->strings["Musical interests:"] = "Musikkinteresse:";
-$a->strings["Books, literature:"] = "BĆøker, litteratur:";
-$a->strings["Television:"] = "TV:";
-$a->strings["Film/dance/culture/entertainment:"] = "Film/dans/kultur/underholdning:";
-$a->strings["Love/Romance:"] = "KjƦrlighet/romantikk:";
-$a->strings["Work/employment:"] = "Arbeid/sysselsetting:";
-$a->strings["School/education:"] = "Skole/utdannelse:";
-$a->strings["Like this thing"] = "Lik denne tingen";
+$a->strings["Edit your profile"] = "Endre din profil";
+$a->strings["Your photos"] = "Dine bilder";
+$a->strings["Your files"] = "Dine filer";
+$a->strings["Your chatrooms"] = "Dine chatterom";
+$a->strings["Your bookmarks"] = "Dine bokmerker";
+$a->strings["Your webpages"] = "Dine websider";
+$a->strings["Sign in"] = "Logg pƄ";
+$a->strings["%s - click to logout"] = "%s - klikk for Ć„ logge ut";
+$a->strings["Remote authentication"] = "Fjernautentisering";
+$a->strings["Click to authenticate to your home hub"] = "Klikk for Ć„ godkjennes mot din hjemme-hub";
+$a->strings["Home Page"] = "Hjemmeside";
+$a->strings["Register"] = "Registrer";
+$a->strings["Create an account"] = "Lag en konto";
+$a->strings["Help and documentation"] = "Hjelp og dokumentasjon";
+$a->strings["Apps"] = "Apper";
+$a->strings["Applications, utilities, links, games"] = "Programmer, verktĆøy, lenker, spill";
+$a->strings["Search site @name, #tag, ?docs, content"] = "SĆøk nettstedet for @navn, #merkelapp, ?dokumentasjon, innhold";
+$a->strings["Channel Directory"] = "Kanalkatalog";
+$a->strings["Your grid"] = "Ditt nett";
+$a->strings["Mark all grid notifications seen"] = "Marker alle nettvarsler som sett";
+$a->strings["Channel home"] = "Kanalhjem";
+$a->strings["Mark all channel notifications seen"] = "Merk alle kanalvarsler som sett";
+$a->strings["Connections"] = "Forbindelser";
+$a->strings["Notices"] = "Varsel";
+$a->strings["Notifications"] = "Varsler";
+$a->strings["See all notifications"] = "Se alle varsler";
+$a->strings["Mark all system notifications seen"] = "Merk alle systemvarsler som sett";
+$a->strings["Private mail"] = "Privat post";
+$a->strings["See all private messages"] = "Se alle private meldinger";
+$a->strings["Mark all private messages seen"] = "Merk alle private meldinger som sett";
+$a->strings["Inbox"] = "Innboks";
+$a->strings["Outbox"] = "Utboks";
+$a->strings["New Message"] = "Ny melding";
+$a->strings["Event Calendar"] = "Kalender";
+$a->strings["See all events"] = "Se alle hendelser";
+$a->strings["Mark all events seen"] = "Merk alle hendelser som sett";
+$a->strings["Manage Your Channels"] = "HĆ„ndter dine kanaler";
+$a->strings["Account/Channel Settings"] = "Konto-/kanal-innstillinger";
+$a->strings["Admin"] = "Administrator";
+$a->strings["Site Setup and Configuration"] = "Nettstedsoppsett og -konfigurasjon";
+$a->strings["Loading..."] = "Laster...";
+$a->strings["@name, #tag, ?doc, content"] = "@navn, #merkelapp, ?dokumentasjon, innhold";
+$a->strings["Please wait..."] = "Vennligst vent...";
+$a->strings["created a new post"] = "laget et nytt innlegg";
+$a->strings["commented on %s's post"] = "kommenterte pƄ %s sitt innlegg";
+$a->strings["New Page"] = "Ny side";
+$a->strings["View"] = "Vis";
+$a->strings["Preview"] = "ForhƄndsvisning";
+$a->strings["Actions"] = "Handlinger";
+$a->strings["Page Link"] = "Sidelenke";
+$a->strings["Title"] = "Tittel";
+$a->strings["Created"] = "Laget";
+$a->strings["Edited"] = "Endret";
+$a->strings["Profile Photos"] = "Profilbilder";
+$a->strings["Male"] = "Mannlig";
+$a->strings["Female"] = "Kvinnelig";
+$a->strings["Currently Male"] = "For tiden mann";
+$a->strings["Currently Female"] = "For tiden kvinne";
+$a->strings["Mostly Male"] = "For det meste mann";
+$a->strings["Mostly Female"] = "For det meste kvinne";
+$a->strings["Transgender"] = "TranskjĆønnet";
+$a->strings["Intersex"] = "interkjĆønnet";
+$a->strings["Transsexual"] = "Transseksuell";
+$a->strings["Hermaphrodite"] = "Hermafroditt";
+$a->strings["Neuter"] = "IntetkjĆønn";
+$a->strings["Non-specific"] = "Ubestemt";
+$a->strings["Other"] = "Annen";
+$a->strings["Undecided"] = "Ubestemt";
+$a->strings["Males"] = "Menn";
+$a->strings["Females"] = "Kvinner";
+$a->strings["Gay"] = "Homo";
+$a->strings["Lesbian"] = "Lesbisk";
+$a->strings["No Preference"] = "Ingen preferanse";
+$a->strings["Bisexual"] = "Biseksuell";
+$a->strings["Autosexual"] = "Autoseksuell";
+$a->strings["Abstinent"] = "Avholdende";
+$a->strings["Virgin"] = "Jomfru";
+$a->strings["Deviant"] = "Avviker";
+$a->strings["Fetish"] = "Fetisj";
+$a->strings["Oodles"] = "Masse";
+$a->strings["Nonsexual"] = "Ikke-seksuell";
+$a->strings["Single"] = "Enslig";
+$a->strings["Lonely"] = "Ensom";
+$a->strings["Available"] = "Tilgjengelig";
+$a->strings["Unavailable"] = "Ikke tilgjengelig";
+$a->strings["Has crush"] = "Er forelsket";
+$a->strings["Infatuated"] = "Betatt";
+$a->strings["Dating"] = "Sammen med";
+$a->strings["Unfaithful"] = "Utro";
+$a->strings["Sex Addict"] = "Sexavhengig";
+$a->strings["Friends"] = "Venner";
+$a->strings["Friends/Benefits"] = "Venner med frynsegoder";
+$a->strings["Casual"] = "Tilfeldig";
+$a->strings["Engaged"] = "Forlovet";
+$a->strings["Married"] = "Gift";
+$a->strings["Imaginarily married"] = "Gift i fantasien";
+$a->strings["Partners"] = "Partnere";
+$a->strings["Cohabiting"] = "Samboer";
+$a->strings["Common law"] = "Samboer";
+$a->strings["Happy"] = "Lykkelig";
+$a->strings["Not looking"] = "Ikke pƄ utkikk";
+$a->strings["Swinger"] = "Partnerbytte";
+$a->strings["Betrayed"] = "Bedratt";
+$a->strings["Separated"] = "Separert";
+$a->strings["Unstable"] = "Ustabilt";
+$a->strings["Divorced"] = "Skilt";
+$a->strings["Imaginarily divorced"] = "Skilt i fantasien";
+$a->strings["Widowed"] = "Enke";
+$a->strings["Uncertain"] = "Usikkert";
+$a->strings["It's complicated"] = "Det er komplisert";
+$a->strings["Don't care"] = "Bryr meg ikke";
+$a->strings["Ask me"] = "SpĆør meg";
+$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Skjemaets sikkerhetspollett var ikke gyldig. Dette skjedde antakelig fordi skjemaet har vƦrt Ć„pnet for lenge (>3 timer) fĆør det ble sendt inn.";
$a->strings["Tags"] = "Merkelapper";
-$a->strings["Categories"] = "Kategorier";
$a->strings["Keywords"] = "NĆøkkelord";
$a->strings["have"] = "har";
$a->strings["has"] = "har";
@@ -296,6 +409,72 @@ $a->strings["like"] = "liker";
$a->strings["likes"] = "liker";
$a->strings["dislike"] = "misliker";
$a->strings["dislikes"] = "misliker";
+$a->strings["__ctx:noun__ Like"] = array(
+ 0 => "Liker",
+ 1 => "Liker",
+);
+$a->strings["Miscellaneous"] = "Forskjellig";
+$a->strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD eller MM-DD";
+$a->strings["Required"] = "PĆ„krevd";
+$a->strings["never"] = "aldri";
+$a->strings["less than a second ago"] = "for mindre enn ett sekund siden";
+$a->strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "%1\$d %2\$s siden";
+$a->strings["__ctx:relative_date__ year"] = array(
+ 0 => "Ć„r",
+ 1 => "Ć„r",
+);
+$a->strings["__ctx:relative_date__ month"] = array(
+ 0 => "mƄned",
+ 1 => "mƄneder",
+);
+$a->strings["__ctx:relative_date__ week"] = array(
+ 0 => "uke",
+ 1 => "uker",
+);
+$a->strings["__ctx:relative_date__ day"] = array(
+ 0 => "dag",
+ 1 => "dager",
+);
+$a->strings["__ctx:relative_date__ hour"] = array(
+ 0 => "time",
+ 1 => "timer",
+);
+$a->strings["__ctx:relative_date__ minute"] = array(
+ 0 => "minutt",
+ 1 => "minutter",
+);
+$a->strings["__ctx:relative_date__ second"] = array(
+ 0 => "sekund",
+ 1 => "sekunder",
+);
+$a->strings["%1\$s's birthday"] = "%1\$s sin fĆødselsdag";
+$a->strings["Happy Birthday %1\$s"] = "Gratulerer med dagen, %1\$s !";
+$a->strings["Invalid data packet"] = "Ugyldig datapakke";
+$a->strings["Unable to verify channel signature"] = "Ikke i stand til Ć„ sjekke kanalsignaturen";
+$a->strings["Unable to verify site signature for %s"] = "Ikke i stand til Ć„ bekrefte signaturen til %s";
+$a->strings["invalid target signature"] = "MĆ„lets signatur er ugyldig";
+$a->strings["Frequently"] = "Ofte";
+$a->strings["Hourly"] = "Hver time";
+$a->strings["Twice daily"] = "To ganger daglig";
+$a->strings["Daily"] = "Daglig";
+$a->strings["Weekly"] = "Ukentlig";
+$a->strings["Monthly"] = "MĆ„nedlig";
+$a->strings["Friendica"] = "Friendica";
+$a->strings["OStatus"] = "OStatus";
+$a->strings["RSS/Atom"] = "RSS/Atom";
+$a->strings["Email"] = "E-post";
+$a->strings["Diaspora"] = "Diaspora";
+$a->strings["Facebook"] = "Facebook";
+$a->strings["Zot"] = "Zot";
+$a->strings["LinkedIn"] = "LinkedIn";
+$a->strings["XMPP/IM"] = "XMPP/IM";
+$a->strings["MySpace"] = "MySpace";
+$a->strings["view full size"] = "vis full stĆørrelse";
+$a->strings["\$Projectname Notification"] = "\$Projectname varsling";
+$a->strings["\$projectname"] = "\$projectname";
+$a->strings["Thank You,"] = "Tusen takk,";
+$a->strings["%s Administrator"] = "%s administrator";
+$a->strings["No Subject"] = "Uten emne";
$a->strings["Image exceeds website size limit of %lu bytes"] = "Bilde overstiger nettstedets stĆørrelsesbegrensning pĆ„ %lu bytes";
$a->strings["Image file is empty."] = "Bildefilen er tom.";
$a->strings["Unable to process image"] = "Kan ikke behandle bildet";
@@ -304,35 +483,73 @@ $a->strings["a new photo"] = "et nytt bilde";
$a->strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s la inn %2\$s til %3\$s";
$a->strings["Photo Albums"] = "Fotoalbum";
$a->strings["Upload New Photos"] = "Last opp nye bilder";
-$a->strings["Visible to your default audience"] = "Synlig for ditt standard publikum";
-$a->strings["Show"] = "Vis";
-$a->strings["Don't show"] = "Ikke vis";
-$a->strings["Other networks and post services"] = "Andre nettverk og innleggstjenester";
-$a->strings["Permissions"] = "Tillatelser";
-$a->strings["Close"] = "Lukk";
-$a->strings[" and "] = "og";
-$a->strings["public profile"] = "offentlig profil";
-$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s endret %2\$s til &ldquo;%3\$s&rdquo;";
-$a->strings["Visit %1\$s's %2\$s"] = "BesĆøk %1\$s sitt %2\$s";
-$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s har oppdatert %2\$s, endret %3\$s.";
-$a->strings["Item was not found."] = "Elementet ble ikke funnet.";
-$a->strings["No source file."] = "Ingen kildefil.";
-$a->strings["Cannot locate file to replace"] = "Kan ikke finne filen som skal byttes ut";
-$a->strings["Cannot locate file to revise/update"] = "Finner ikke filen som skal revideres/oppdateres";
-$a->strings["File exceeds size limit of %d"] = "Filens stĆørrelse overgĆ„r grensen pĆ„ %d";
-$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Du har nƄdd din lagringsgrense for vedlegg pƄ %1$.0f Mbytes.";
-$a->strings["File upload failed. Possible system limit or action terminated."] = "Mislyktes med Ć„ laste opp filen. Mulig systemgrense eller handling avbrutt.";
-$a->strings["Stored file could not be verified. Upload failed."] = "Lagret fil kunne ikke bekreftes. Opplasting mislyktes.";
-$a->strings["Path not available."] = "Stien er ikke tilgjengelig.";
-$a->strings["Empty pathname"] = "Tomt sti-navn";
-$a->strings["duplicate filename or path"] = "duplikat av filnavn eller sti";
-$a->strings["Path not found."] = "Stien ble ikke funnet.";
-$a->strings["mkdir failed."] = "mkdir mislyktes.";
-$a->strings["database storage failed."] = "databaselagring mislyktes.";
-$a->strings["Empty path"] = "Tom sti";
-$a->strings["created a new post"] = "laget et nytt innlegg";
-$a->strings["commented on %s's post"] = "kommenterte pƄ %s sitt innlegg";
-$a->strings["Apps"] = "Apper";
+$a->strings["General Features"] = "Generelle funksjoner";
+$a->strings["Content Expiration"] = "Innholdet utlĆøper";
+$a->strings["Remove posts/comments and/or private messages at a future time"] = "Fjern innlegg/kommentarer og/eller private meldinger pƄ et angitt tidspunkt i fremtiden";
+$a->strings["Multiple Profiles"] = "Flere profiler";
+$a->strings["Ability to create multiple profiles"] = "Mulig Ć„ lage flere profiler";
+$a->strings["Advanced Profiles"] = "Avanserte profiler";
+$a->strings["Additional profile sections and selections"] = "Ytterlige seksjoner og utvalg til profilen";
+$a->strings["Profile Import/Export"] = "Profil-import/-eksport";
+$a->strings["Save and load profile details across sites/channels"] = "Lagre og Ƅpne profildetaljer pƄ tvers av nettsteder/kanaler";
+$a->strings["Web Pages"] = "Web-sider";
+$a->strings["Provide managed web pages on your channel"] = "Tilby kontrollerte web-sider pƄ din kanal";
+$a->strings["Hide Rating"] = "Skjul vurdering";
+$a->strings["Hide the rating buttons on your channel and profile pages. Note: People can still rate you somewhere else."] = "Skjul vurderingsknappene for din kanal og profilsider. Merknad: folk kan fortsatt vurdere deg et annet sted.";
+$a->strings["Private Notes"] = "Private merknader";
+$a->strings["Enables a tool to store notes and reminders (note: not encrypted)"] = "Skru pĆ„ et verktĆøy for Ć„ lagre notater og pĆ„minnelser (merknad: ikke kryptert)";
+$a->strings["Navigation Channel Select"] = "Navigasjon kanalvalg";
+$a->strings["Change channels directly from within the navigation dropdown menu"] = "Endre kanaler direkte fra navigasjonsmenyen";
+$a->strings["Photo Location"] = "Bildeplassering";
+$a->strings["If location data is available on uploaded photos, link this to a map."] = "Hvis plasseringsdata er tilgjengelige i opplastede bilder, plasser dette pƄ et kart.";
+$a->strings["Expert Mode"] = "Ekspertmodus";
+$a->strings["Enable Expert Mode to provide advanced configuration options"] = "Skru pƄ Ekspertmodus for Ƅ tilby avanserte konfigurasjonsvalg";
+$a->strings["Premium Channel"] = "Premiumkanal";
+$a->strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Lar deg angi restriksjoner og betingelser for de som kobler seg til din kanal";
+$a->strings["Post Composition Features"] = "Funksjoner for Ć„ lage innlegg";
+$a->strings["Use Markdown"] = "Bruk Markdown";
+$a->strings["Allow use of \"Markdown\" to format posts"] = "Tillat bruk av \"Markdown\" til formatering av innlegg";
+$a->strings["Large Photos"] = "Store bilder";
+$a->strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Inkluder store (1024px) smƄbilder i innlegg. Hvis denne ikke er pƄskrudd, bruk smƄ (640px) smƄbilder.";
+$a->strings["Channel Sources"] = "Kanalkilder";
+$a->strings["Automatically import channel content from other channels or feeds"] = "Automatisk import av kanalinnhold fra andre kanaler eller strĆømmer";
+$a->strings["Even More Encryption"] = "Enda mer kryptering";
+$a->strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Tillat valgfri kryptering av innhold ende-til-ende via en delt hemmelig nĆøkkel";
+$a->strings["Enable Voting Tools"] = "Skru pĆ„ verktĆøy for Ć„ stemme";
+$a->strings["Provide a class of post which others can vote on"] = "Tilby en type innlegg som andre kan stemme pƄ";
+$a->strings["Delayed Posting"] = "Tidfest publisering";
+$a->strings["Allow posts to be published at a later date"] = "Tillat innlegg Ƅ bli publisert pƄ et senere tidspunkt";
+$a->strings["Suppress Duplicate Posts/Comments"] = "Forhindre duplikat av innlegg/kommentarer";
+$a->strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = "Forhindre innlegg med identisk innhold fra Ć„ bli publisert hvis det er mindre enn to minutter mellom innsendingene.";
+$a->strings["Network and Stream Filtering"] = "Nettverk- og strĆømfiltrering";
+$a->strings["Search by Date"] = "SĆøk etter dato";
+$a->strings["Ability to select posts by date ranges"] = "Mulighet for Ƅ velge innlegg etter datoomrƄde";
+$a->strings["Privacy Groups"] = "Personverngrupper";
+$a->strings["Enable management and selection of privacy groups"] = "Skru pƄ hƄndtering og valg av personverngrupper";
+$a->strings["Saved Searches"] = "Lagrede sĆøk";
+$a->strings["Save search terms for re-use"] = "Lagre sĆøkeuttrykk for senere bruk";
+$a->strings["Network Personal Tab"] = "Nettverk personlig fane";
+$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Skru pƄ fane for Ƅ bare vise Nettverksinnlegg som du har deltatt i";
+$a->strings["Network New Tab"] = "Nettverk Ny fane";
+$a->strings["Enable tab to display all new Network activity"] = "Skru pƄ fane for Ƅ vise all ny nettverksaktivitet";
+$a->strings["Affinity Tool"] = "NƦrhetsverktĆøy";
+$a->strings["Filter stream activity by depth of relationships"] = "Filtrer strĆømaktiviteten etter releasjonsdybde";
+$a->strings["Connection Filtering"] = "Filtrer forbindelser";
+$a->strings["Filter incoming posts from connections based on keywords/content"] = "Filtrer innkommende innlegg fra forbindelser basert pĆ„ nĆøkkelord/innhold";
+$a->strings["Suggest Channels"] = "ForeslƄ kanaler";
+$a->strings["Show channel suggestions"] = "Vis kanalforslag";
+$a->strings["Post/Comment Tools"] = "Innlegg-/Kommentar-verktĆøy";
+$a->strings["Community Tagging"] = "Felleskapsmerkelapper";
+$a->strings["Ability to tag existing posts"] = "Mulighet til Ć„ merke eksisterende meldinger";
+$a->strings["Post Categories"] = "Innleggskategorier";
+$a->strings["Add categories to your posts"] = "Legg kategorier til dine innlegg";
+$a->strings["Ability to file posts under folders"] = "Mulighet til Ć„ sortere innlegg i mapper";
+$a->strings["Dislike Posts"] = "Mislik innlegg";
+$a->strings["Ability to dislike posts/comments"] = "Mulighet til Ć„ mislike innlegg/kommentarer";
+$a->strings["Star Posts"] = "Stjerneinnlegg";
+$a->strings["Ability to mark special posts with a star indicator"] = "Mulighet til Ć„ merke spesielle innlegg med en stjerne";
+$a->strings["Tag Cloud"] = "Merkelappsky";
+$a->strings["Provide a personal tag cloud on your channel page"] = "Tilby en personlig merkelappsky pƄ din kanalside";
$a->strings["System"] = "System";
$a->strings["Personal"] = "Personlig";
$a->strings["Create Personal App"] = "Lag personlig app";
@@ -342,14 +559,12 @@ $a->strings["Suggestions"] = "Forslag";
$a->strings["See more..."] = "Se mer...";
$a->strings["You have %1$.0f of %2$.0f allowed connections."] = "Du har %1$.0f av %2$.0f tillate forbindelser.";
$a->strings["Add New Connection"] = "Legg til ny forbindelse";
-$a->strings["Enter the channel address"] = "Skriv kanal-adressen";
-$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Eksempel: ola.nordmann@eksempel.no, http://eksempel.no/karinordmann";
+$a->strings["Enter channel address"] = "Skriv kanaladressen";
+$a->strings["Examples: bob@example.com, https://example.com/barbara"] = "Eksempel: ola@eksempel.no, https://eksempel.no/kari";
$a->strings["Notes"] = "Merknader";
+$a->strings["Save"] = "Lagre";
$a->strings["Remove term"] = "Fjern begrep";
-$a->strings["Saved Searches"] = "Lagrede sĆøk";
$a->strings["add"] = "legg til";
-$a->strings["Saved Folders"] = "Lagrede mapper";
-$a->strings["Everything"] = "Alt";
$a->strings["Archives"] = "Arkiv";
$a->strings["Me"] = "Meg";
$a->strings["Family"] = "Familie";
@@ -365,13 +580,8 @@ $a->strings["Connected apps"] = "Tilkoblede app-er";
$a->strings["Export channel"] = "Eksporter kanal";
$a->strings["Connection Default Permissions"] = "Forbindelsens standard tillatelser";
$a->strings["Premium Channel Settings"] = "Premiumkanal-innstillinger";
-$a->strings["Channel Sources"] = "Kanalkilder";
-$a->strings["Settings"] = "Innstillinger";
$a->strings["Private Mail Menu"] = "Meny for privat post";
$a->strings["Combined View"] = "Kombinert visning";
-$a->strings["Inbox"] = "Innboks";
-$a->strings["Outbox"] = "Utboks";
-$a->strings["New Message"] = "Ny melding";
$a->strings["Conversations"] = "Samtaler";
$a->strings["Received Messages"] = "Mottatte meldinger";
$a->strings["Sent Messages"] = "Sendte meldinger";
@@ -390,6 +600,7 @@ $a->strings["Chat Rooms"] = "Chatrom";
$a->strings["Bookmarked Chatrooms"] = "Bokmerkede chatrom";
$a->strings["Suggested Chatrooms"] = "ForeslƄtte chatrom";
$a->strings["photo/image"] = "foto/bilde";
+$a->strings["Rating Tools"] = "VurderingsverktĆøy";
$a->strings["Rate Me"] = "Vurder meg";
$a->strings["View Ratings"] = "Vis vurderinger";
$a->strings["Public Hubs"] = "Offentlige huber";
@@ -403,163 +614,181 @@ $a->strings["For Developers"] = "For utviklere";
$a->strings["Site"] = "Nettsted";
$a->strings["Accounts"] = "Kontoer";
$a->strings["Channels"] = "Kanaler";
+$a->strings["Security"] = "Sikkerhet";
$a->strings["Plugins"] = "Tilleggsfunksjoner";
$a->strings["Themes"] = "Temaer";
$a->strings["Inspect queue"] = "Inspiser kĆø";
$a->strings["Profile Config"] = "Profilinnstillinger";
$a->strings["DB updates"] = "Databaseoppdateringer";
$a->strings["Logs"] = "Logger";
-$a->strings["Admin"] = "Administrator";
$a->strings["Plugin Features"] = "Tilleggsfunksjoner";
$a->strings["User registrations waiting for confirmation"] = "Brukerregistreringer som venter pƄ bekreftelse";
$a->strings["View Photo"] = "Vis foto";
$a->strings["Edit Album"] = "Endre album";
-$a->strings["Attachments:"] = "Vedlegg:";
-$a->strings["\$Projectname event notification:"] = "\$Projectname hendelsesvarsling:";
-$a->strings["%1\$s's bookmarks"] = "%1\$s sine bokmerker";
-$a->strings["General Features"] = "Generelle funksjoner";
-$a->strings["Content Expiration"] = "Innholdet utlĆøper";
-$a->strings["Remove posts/comments and/or private messages at a future time"] = "Fjern innlegg/kommentarer og/eller private meldinger pƄ et angitt tidspunkt i fremtiden";
-$a->strings["Multiple Profiles"] = "Flere profiler";
-$a->strings["Ability to create multiple profiles"] = "Mulig Ć„ lage flere profiler";
-$a->strings["Advanced Profiles"] = "Avanserte profiler";
-$a->strings["Additional profile sections and selections"] = "Ytterlige seksjoner og utvalg til profilen";
-$a->strings["Profile Import/Export"] = "Profil-import/-eksport";
-$a->strings["Save and load profile details across sites/channels"] = "Lagre og Ƅpne profildetaljer pƄ tvers av nettsteder/kanaler";
-$a->strings["Web Pages"] = "Web-sider";
-$a->strings["Provide managed web pages on your channel"] = "Tilby kontrollerte web-sider pƄ din kanal";
-$a->strings["Private Notes"] = "Private merknader";
-$a->strings["Enables a tool to store notes and reminders"] = "Skrur pĆ„ et verktĆøy for lagre merknader og pĆ„minnelser";
-$a->strings["Navigation Channel Select"] = "Navigasjon kanalvalg";
-$a->strings["Change channels directly from within the navigation dropdown menu"] = "Endre kanaler direkte fra navigasjonsmenyen";
-$a->strings["Photo Location"] = "Bildeplassering";
-$a->strings["If location data is available on uploaded photos, link this to a map."] = "Hvis plasseringsdata er tilgjengelige i opplastede bilder, plasser dette pƄ et kart.";
-$a->strings["Expert Mode"] = "Ekspertmodus";
-$a->strings["Enable Expert Mode to provide advanced configuration options"] = "Skru pƄ Ekspertmodus for Ƅ tilby avanserte konfigurasjonsvalg";
-$a->strings["Premium Channel"] = "Premiumkanal";
-$a->strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Lar deg angi restriksjoner og betingelser for de som kobler seg til din kanal";
-$a->strings["Post Composition Features"] = "Funksjoner for Ć„ lage innlegg";
-$a->strings["Use Markdown"] = "Bruk Markdown";
-$a->strings["Allow use of \"Markdown\" to format posts"] = "Tillat bruk av \"Markdown\" til formatering av innlegg";
-$a->strings["Large Photos"] = "Store bilder";
-$a->strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Inkluder store (1024px) smƄbilder i innlegg. Hvis denne ikke er pƄskrudd, bruk smƄ (640px) smƄbilder.";
-$a->strings["Automatically import channel content from other channels or feeds"] = "Automatisk import av kanalinnhold fra andre kanaler eller strĆømmer";
-$a->strings["Even More Encryption"] = "Enda mer kryptering";
-$a->strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Tillat valgfri kryptering av innhold ende-til-ende via en delt hemmelig nĆøkkel";
-$a->strings["Enable Voting Tools"] = "Skru pĆ„ verktĆøy for Ć„ stemme";
-$a->strings["Provide a class of post which others can vote on"] = "Tilby en type innlegg som andre kan stemme pƄ";
-$a->strings["Delayed Posting"] = "Tidfest publisering";
-$a->strings["Allow posts to be published at a later date"] = "Tillat innlegg Ƅ bli publisert pƄ et senere tidspunkt";
-$a->strings["Suppress Duplicate Posts/Comments"] = "Forhindre duplikat av innlegg/kommentarer";
-$a->strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = "Forhindre innlegg med identisk innhold fra Ć„ bli publisert hvis det er mindre enn to minutter mellom innsendingene.";
-$a->strings["Network and Stream Filtering"] = "Nettverk- og strĆømfiltrering";
-$a->strings["Search by Date"] = "SĆøk etter dato";
-$a->strings["Ability to select posts by date ranges"] = "Mulighet for Ƅ velge innlegg etter datoomrƄde";
-$a->strings["Collections Filter"] = "Filter for samlinger";
-$a->strings["Enable widget to display Network posts only from selected collections"] = "Skru pƄ miniprogram for Ƅ vise Nettverksinnlegg bare fra valgte samlinger";
-$a->strings["Save search terms for re-use"] = "Lagre sĆøkeuttrykk for senere bruk";
-$a->strings["Network Personal Tab"] = "Nettverk personlig fane";
-$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Skru pƄ fane for Ƅ bare vise Nettverksinnlegg som du har deltatt i";
-$a->strings["Network New Tab"] = "Nettverk Ny fane";
-$a->strings["Enable tab to display all new Network activity"] = "Skru pƄ fane for Ƅ vise all ny nettverksaktivitet";
-$a->strings["Affinity Tool"] = "NƦrhetsverktĆøy";
-$a->strings["Filter stream activity by depth of relationships"] = "Filtrer strĆømaktiviteten etter releasjonsdybde";
-$a->strings["Connection Filtering"] = "Filtrer forbindelser";
-$a->strings["Filter incoming posts from connections based on keywords/content"] = "Filtrer innkommende innlegg fra forbindelser basert pĆ„ nĆøkkelord/innhold";
-$a->strings["Suggest Channels"] = "ForeslƄ kanaler";
-$a->strings["Show channel suggestions"] = "Vis kanalforslag";
-$a->strings["Post/Comment Tools"] = "Innlegg-/Kommentar-verktĆøy";
-$a->strings["Tagging"] = "Merking";
-$a->strings["Ability to tag existing posts"] = "Mulighet til Ć„ merke eksisterende meldinger";
-$a->strings["Post Categories"] = "Innleggskategorier";
-$a->strings["Add categories to your posts"] = "Legg kategorier til dine innlegg";
-$a->strings["Ability to file posts under folders"] = "Mulighet til Ć„ sortere innlegg i mapper";
-$a->strings["Dislike Posts"] = "Mislik innlegg";
-$a->strings["Ability to dislike posts/comments"] = "Mulighet til Ć„ mislike innlegg/kommentarer";
-$a->strings["Star Posts"] = "Stjerneinnlegg";
-$a->strings["Ability to mark special posts with a star indicator"] = "Mulighet til Ć„ merke spesielle innlegg med en stjerne";
-$a->strings["Tag Cloud"] = "Merkelappsky";
-$a->strings["Provide a personal tag cloud on your channel page"] = "Tilby en personlig merkelappsky pƄ din kanalside";
-$a->strings["Male"] = "Mannlig";
-$a->strings["Female"] = "Kvinnelig";
-$a->strings["Currently Male"] = "For tiden mann";
-$a->strings["Currently Female"] = "For tiden kvinne";
-$a->strings["Mostly Male"] = "For det meste mann";
-$a->strings["Mostly Female"] = "For det meste kvinne";
-$a->strings["Transgender"] = "TranskjĆønnet";
-$a->strings["Intersex"] = "interkjĆønnet";
-$a->strings["Transsexual"] = "Transseksuell";
-$a->strings["Hermaphrodite"] = "Hermafroditt";
-$a->strings["Neuter"] = "IntetkjĆønn";
-$a->strings["Non-specific"] = "Ubestemt";
-$a->strings["Other"] = "Annen";
-$a->strings["Undecided"] = "Ubestemt";
-$a->strings["Males"] = "Menn";
-$a->strings["Females"] = "Kvinner";
-$a->strings["Gay"] = "Homo";
-$a->strings["Lesbian"] = "Lesbisk";
-$a->strings["No Preference"] = "Ingen preferanse";
-$a->strings["Bisexual"] = "Biseksuell";
-$a->strings["Autosexual"] = "Autoseksuell";
-$a->strings["Abstinent"] = "Avholdende";
-$a->strings["Virgin"] = "Jomfru";
-$a->strings["Deviant"] = "Avviker";
-$a->strings["Fetish"] = "Fetisj";
-$a->strings["Oodles"] = "Masse";
-$a->strings["Nonsexual"] = "Ikke-seksuell";
-$a->strings["Single"] = "Enslig";
-$a->strings["Lonely"] = "Ensom";
-$a->strings["Available"] = "Tilgjengelig";
-$a->strings["Unavailable"] = "Ikke tilgjengelig";
-$a->strings["Has crush"] = "Er forelsket";
-$a->strings["Infatuated"] = "Betatt";
-$a->strings["Dating"] = "Sammen med";
-$a->strings["Unfaithful"] = "Utro";
-$a->strings["Sex Addict"] = "Sexavhengig";
-$a->strings["Friends/Benefits"] = "Venner med frynsegoder";
-$a->strings["Casual"] = "Tilfeldig";
-$a->strings["Engaged"] = "Forlovet";
-$a->strings["Married"] = "Gift";
-$a->strings["Imaginarily married"] = "Gift i fantasien";
-$a->strings["Partners"] = "Partnere";
-$a->strings["Cohabiting"] = "Samboer";
-$a->strings["Common law"] = "Samboer";
-$a->strings["Happy"] = "Lykkelig";
-$a->strings["Not looking"] = "Ikke pƄ utkikk";
-$a->strings["Swinger"] = "Partnerbytte";
-$a->strings["Betrayed"] = "Bedratt";
-$a->strings["Separated"] = "Separert";
-$a->strings["Unstable"] = "Ustabilt";
-$a->strings["Divorced"] = "Skilt";
-$a->strings["Imaginarily divorced"] = "Skilt i fantasien";
-$a->strings["Widowed"] = "Enke";
-$a->strings["Uncertain"] = "Usikkert";
-$a->strings["It's complicated"] = "Det er komplisert";
-$a->strings["Don't care"] = "Bryr meg ikke";
-$a->strings["Ask me"] = "SpĆør meg";
-$a->strings["Miscellaneous"] = "Forskjellig";
-$a->strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD eller MM-DD";
-$a->strings["Required"] = "PĆ„krevd";
-$a->strings["never"] = "aldri";
-$a->strings["less than a second ago"] = "for mindre enn ett sekund siden";
-$a->strings["year"] = "Ć„r";
-$a->strings["years"] = "Ć„r";
-$a->strings["month"] = "mƄned";
-$a->strings["months"] = "mƄneder";
-$a->strings["week"] = "uke";
-$a->strings["weeks"] = "uker";
-$a->strings["day"] = "dag";
-$a->strings["days"] = "dager";
-$a->strings["hour"] = "time";
-$a->strings["hours"] = "timer";
-$a->strings["minute"] = "minutt";
-$a->strings["minutes"] = "minutter";
-$a->strings["second"] = "sekund";
-$a->strings["seconds"] = "sekunder";
-$a->strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "%1\$d %2\$s siden";
-$a->strings["%1\$s's birthday"] = "%1\$s sin fĆødselsdag";
-$a->strings["Happy Birthday %1\$s"] = "Gratulerer med dagen, %1\$s !";
-$a->strings["Public Timeline"] = "Offentlig tidslinje";
+$a->strings["prev"] = "forrige";
+$a->strings["first"] = "fĆørste";
+$a->strings["last"] = "siste";
+$a->strings["next"] = "neste";
+$a->strings["older"] = "eldre";
+$a->strings["newer"] = "nyere";
+$a->strings["No connections"] = "Ingen forbindelser";
+$a->strings["View all %s connections"] = "Vis alle %s forbindelser";
+$a->strings["poke"] = "prikk";
+$a->strings["poked"] = "prikket";
+$a->strings["ping"] = "varsle";
+$a->strings["pinged"] = "varslet";
+$a->strings["prod"] = "oppildne";
+$a->strings["prodded"] = "oppildnet";
+$a->strings["slap"] = "daske";
+$a->strings["slapped"] = "dasket";
+$a->strings["finger"] = "fingre";
+$a->strings["fingered"] = "fingret";
+$a->strings["rebuff"] = "tilbakevise";
+$a->strings["rebuffed"] = "tilbakeviste";
+$a->strings["happy"] = "glad";
+$a->strings["sad"] = "trist";
+$a->strings["mellow"] = "dempet";
+$a->strings["tired"] = "trĆøtt";
+$a->strings["perky"] = "oppkvikket";
+$a->strings["angry"] = "sint";
+$a->strings["stupefied"] = "lamslƄtt";
+$a->strings["puzzled"] = "forundret";
+$a->strings["interested"] = "interessert";
+$a->strings["bitter"] = "bitter";
+$a->strings["cheerful"] = "munter";
+$a->strings["alive"] = "levende";
+$a->strings["annoyed"] = "irritert";
+$a->strings["anxious"] = "nervĆøs";
+$a->strings["cranky"] = "gretten";
+$a->strings["disturbed"] = "foruroliget";
+$a->strings["frustrated"] = "frustrert";
+$a->strings["depressed"] = "lei seg";
+$a->strings["motivated"] = "motivert";
+$a->strings["relaxed"] = "avslappet";
+$a->strings["surprised"] = "overrasket";
+$a->strings["May"] = "mai";
+$a->strings["Unknown Attachment"] = "Ukjent vedlegg";
+$a->strings["unknown"] = "ukjent";
+$a->strings["remove category"] = "fjern kategori";
+$a->strings["remove from file"] = "fjern fra fil";
+$a->strings["Click to open/close"] = "Klikk for Ć„ Ć„pne/lukke";
+$a->strings["Link to Source"] = "Lenke til kilde";
+$a->strings["default"] = "standard";
+$a->strings["Page layout"] = "Sidens layout";
+$a->strings["You can create your own with the layouts tool"] = "Du kan lage din egen med layout-verktĆøyet";
+$a->strings["Page content type"] = "Sidens innholdstype";
+$a->strings["Select an alternate language"] = "Velg et annet sprƄk";
+$a->strings["photo"] = "foto";
+$a->strings["status"] = "status";
+$a->strings["comment"] = "kommentar";
+$a->strings["activity"] = "aktivitet";
+$a->strings["Design Tools"] = "DesignverktĆøy";
+$a->strings["Blocks"] = "Byggeklosser";
+$a->strings["Menus"] = "Menyer";
+$a->strings["Layouts"] = "Layout";
+$a->strings["Pages"] = "Sider";
+$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "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.";
+$a->strings["Add new connections to this privacy group"] = "Legg nye forbindelser i denne personverngruppen";
+$a->strings["All Channels"] = "Alle kanaler";
+$a->strings["edit"] = "endre";
+$a->strings["Edit group"] = "Endre gruppe";
+$a->strings["Add privacy group"] = "Legg til personverngruppe";
+$a->strings["Channels not in any privacy group"] = "Kanaler uten personverngruppe";
+$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
+$a->strings["[Hubzilla:Notify] New mail received at %s"] = "[Hubzilla:Notify] Ny melding mottatt hos %s";
+$a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s sendte deg en ny privat melding pƄ %3\$s.";
+$a->strings["%1\$s sent you %2\$s."] = "%1\$s sendte deg %2\$s.";
+$a->strings["a private message"] = "en privat melding";
+$a->strings["Please visit %s to view and/or reply to your private messages."] = "Vennligst besĆøk %s for Ć„ se og/eller svare pĆ„ dine private meldinger.";
+$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s kommenterte pƄ [zrl=%3\$s]a %4\$s[/zrl]";
+$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s kommenterte pƄ [zrl=%3\$s]%4\$s's %5\$s[/zrl]";
+$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s kommenterte pƄ [zrl=%3\$s]din %4\$s[/zrl]";
+$a->strings["[Hubzilla:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Hubzilla:Notify] Kommentar til samtale #%1\$d av %2\$s";
+$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s kommenterte pĆ„ et element eller en samtale du fĆølger";
+$a->strings["Please visit %s to view and/or reply to the conversation."] = "Vennligst besĆøk %s for Ć„ se og/eller svare i samtalen";
+$a->strings["[Hubzilla:Notify] %s posted to your profile wall"] = "[Hubzilla:Notify] %s skrev et innlegg pƄ din profilvegg";
+$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s skrev et innlegg pƄ din profilvegg pƄ %3\$s";
+$a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s skrev et innlegg pƄ [zrl=%3\$s]din vegg[/zrl]";
+$a->strings["[Hubzilla:Notify] %s tagged you"] = "[Hubzilla:Notify] %s merket deg";
+$a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s merket deg pƄ %3\$s";
+$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]merket deg[/zrl].";
+$a->strings["[Hubzilla:Notify] %1\$s poked you"] = "[Hubzilla:Notify] %1\$s prikket deg";
+$a->strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s dyttet deg pƄ %3\$s";
+$a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]dyttet deg[/zrl].";
+$a->strings["[Hubzilla:Notify] %s tagged your post"] = "[Hubzilla:Notify] %s merket ditt innlegg";
+$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s merket ditt innlegg pƄ %3\$s";
+$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s merket [zrl=%3\$s]ditt innlegg[/zrl]";
+$a->strings["[Hubzilla:Notify] Introduction received"] = "[Hubzilla:Notify] Introduksjon mottatt";
+$a->strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, du har mottatt en ny forespĆørsel om forbindelse fra '%2\$s' hos %3\$s";
+$a->strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, du mottok [zrl=%2\$s]en ny forespĆørsel om forbindelse[/zrl] fra %3\$s.";
+$a->strings["You may visit their profile at %s"] = "Du kan besĆøke profilen deres pĆ„ %s";
+$a->strings["Please visit %s to approve or reject the connection request."] = "Vennligst besĆøk %s for Ć„ godkjenne eller avslĆ„ forespĆørselen om forbindelse.";
+$a->strings["[Hubzilla:Notify] Friend suggestion received"] = "[Hubzilla:Notify] Venneforslag mottatt";
+$a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, du har mottatt en venneforespĆørsel fra '%2\$s' hos %3\$s";
+$a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, du har mottatt [zrl=%2\$s]et venneforslaget[/zrl] angƄende %3\$s fra %4\$s. ";
+$a->strings["Name:"] = "Navn:";
+$a->strings["Photo:"] = "Bilde:";
+$a->strings["Please visit %s to approve or reject the suggestion."] = "Vennligst besĆøk %s for Ć„ godkjenne eller avslĆ„ dette forslaget.";
+$a->strings["[Hubzilla:Notify]"] = "[Hubzilla:Notify]";
+$a->strings["Unable to obtain identity information from database"] = "Klarer ikke Ƅ fƄ tak i identitetsinformasjon fra databasen";
+$a->strings["Empty name"] = "Mangler navn";
+$a->strings["Name too long"] = "Navnet er for langt";
+$a->strings["No account identifier"] = "Ingen kontoidentifikator";
+$a->strings["Nickname is required."] = "Kallenavn er pƄkrevd.";
+$a->strings["Reserved nickname. Please choose another."] = "Reservert kallenavn. Vennligst velg et annet.";
+$a->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.";
+$a->strings["Unable to retrieve created identity"] = "Klarer ikke Ć„ hente den lagede identiteten";
+$a->strings["Default Profile"] = "Standardprofil";
+$a->strings["Requested channel is not available."] = "Forespurt kanal er ikke tilgjengelig.";
+$a->strings["Requested profile is not available."] = "Forespurt profil er ikke tilgjengelig.";
+$a->strings["Change profile photo"] = "Endre profilbilde";
+$a->strings["Profiles"] = "Profiler";
+$a->strings["Manage/edit profiles"] = "HĆ„ndtere/endre profiler";
+$a->strings["Create New Profile"] = "Lag ny profil";
+$a->strings["Profile Image"] = "Profilbilde";
+$a->strings["visible to everybody"] = "synlig for alle";
+$a->strings["Edit visibility"] = "Endre synlighet";
+$a->strings["Gender:"] = "KjĆønn:";
+$a->strings["Status:"] = "Status:";
+$a->strings["Homepage:"] = "Hjemmeside:";
+$a->strings["Online Now"] = "Online nƄ";
+$a->strings["g A l F d"] = "g A l F d";
+$a->strings["F d"] = "F d";
+$a->strings["[today]"] = "[idag]";
+$a->strings["Birthday Reminders"] = "FĆødselsdagspĆ„minnnelser";
+$a->strings["Birthdays this week:"] = "FĆødselsdager denne uken:";
+$a->strings["[No description]"] = "[Ingen beskrivelse]";
+$a->strings["Event Reminders"] = "HendelsespƄminnelser";
+$a->strings["Events this week:"] = "Hendelser denne uken:";
+$a->strings["Full Name:"] = "Fullt navn:";
+$a->strings["Like this channel"] = "Lik denne kanalen";
+$a->strings["j F, Y"] = "j F, Y";
+$a->strings["j F"] = "j F";
+$a->strings["Birthday:"] = "FĆødselsdag:";
+$a->strings["Age:"] = "Alder:";
+$a->strings["for %1\$d %2\$s"] = "for %1\$d %2\$s";
+$a->strings["Sexual Preference:"] = "Seksuell preferanse:";
+$a->strings["Hometown:"] = "Hjemby:";
+$a->strings["Tags:"] = "Merkelapper:";
+$a->strings["Political Views:"] = "Politiske synspunkter:";
+$a->strings["Religion:"] = "Religion:";
+$a->strings["About:"] = "Om:";
+$a->strings["Hobbies/Interests:"] = "Hobbyer/interesser:";
+$a->strings["Likes:"] = "Liker:";
+$a->strings["Dislikes:"] = "Misliker:";
+$a->strings["Contact information and Social Networks:"] = "Kontaktinformasjon og sosiale nettverk:";
+$a->strings["My other channels:"] = "Mine andre kanaler:";
+$a->strings["Musical interests:"] = "Musikkinteresse:";
+$a->strings["Books, literature:"] = "BĆøker, litteratur:";
+$a->strings["Television:"] = "TV:";
+$a->strings["Film/dance/culture/entertainment:"] = "Film/dans/kultur/underholdning:";
+$a->strings["Love/Romance:"] = "KjƦrlighet/romantikk:";
+$a->strings["Work/employment:"] = "Arbeid/sysselsetting:";
+$a->strings["School/education:"] = "Skole/utdannelse:";
+$a->strings["Like this thing"] = "Lik denne tingen";
+$a->strings["cover photo"] = "forsidebilde";
+$a->strings["Embedded content"] = "Innebygget innhold";
+$a->strings["Embedding disabled"] = "Innbygging avskrudd";
$a->strings["channel"] = "kanal";
$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s liker %2\$s sin %3\$s";
$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s liker ikke %2\$s sin %3\$s";
@@ -587,18 +816,14 @@ $a->strings["Expires: %s"] = "UtlĆøper: %s";
$a->strings["View in context"] = "Vis i sammenheng";
$a->strings["Please wait"] = "Vennligst vent";
$a->strings["remove"] = "fjern";
-$a->strings["Loading..."] = "Laster...";
$a->strings["Delete Selected Items"] = "Slett valgte elementer";
$a->strings["View Source"] = "Vis kilde";
$a->strings["Follow Thread"] = "FĆølg trĆ„d";
$a->strings["Unfollow Thread"] = "Ikke fĆølg trĆ„d";
-$a->strings["View Status"] = "Vis status";
-$a->strings["View Profile"] = "Vis profil";
-$a->strings["View Photos"] = "Vis bilder";
$a->strings["Activity/Posts"] = "Aktivitet/Innlegg";
$a->strings["Edit Connection"] = "Endre forbindelse";
-$a->strings["Send PM"] = "Send privat melding";
-$a->strings["Poke"] = "Prikk";
+$a->strings["Message"] = "Melding";
+$a->strings["Ratings"] = "Vurderinger";
$a->strings["%s likes this."] = "%s liker dette.";
$a->strings["%s doesn't like this."] = "%s liker ikke dette.";
$a->strings["<span %1\$s>%2\$d people</span> like this."] = array(
@@ -624,7 +849,6 @@ $a->strings["Tag term:"] = "Merkelapp:";
$a->strings["Save to Folder:"] = "Lagre til mappe:";
$a->strings["Where are you right now?"] = "Hvor er du akkurat nƄ?";
$a->strings["Expires YYYY-MM-DD HH:MM"] = "UtlĆøper YYYY-MM-DD HH:MM";
-$a->strings["Preview"] = "ForhƄndsvisning";
$a->strings["Share"] = "Del";
$a->strings["Page link name"] = "Sidens lenkenavn";
$a->strings["Post as"] = "Lag innlegg som";
@@ -676,12 +900,9 @@ $a->strings["Channel"] = "Kanal";
$a->strings["Status Messages and Posts"] = "Statusmeldinger og -innlegg";
$a->strings["About"] = "Om";
$a->strings["Profile Details"] = "Profildetaljer";
-$a->strings["Photos"] = "Bilder";
$a->strings["Files and Storage"] = "Filer og lagring";
$a->strings["Chatrooms"] = "Chatrom";
-$a->strings["Bookmarks"] = "Bokmerker";
$a->strings["Saved Bookmarks"] = "Lagrede bokmerker";
-$a->strings["Webpages"] = "Websider";
$a->strings["Manage Webpages"] = "HĆ„ndtere websider";
$a->strings["View all"] = "Vis alle";
$a->strings["__ctx:noun__ Dislike"] = array(
@@ -712,194 +933,6 @@ $a->strings["__ctx:noun__ Abstain"] = array(
0 => "AvstƄr",
1 => "AvstƄr",
);
-$a->strings["Logged out."] = "Logget ut.";
-$a->strings["Failed authentication"] = "Mislykket autentisering";
-$a->strings["Login failed."] = "Innlogging mislyktes.";
-$a->strings["Frequently"] = "Ofte";
-$a->strings["Hourly"] = "Hver time";
-$a->strings["Twice daily"] = "To ganger daglig";
-$a->strings["Daily"] = "Daglig";
-$a->strings["Weekly"] = "Ukentlig";
-$a->strings["Monthly"] = "MĆ„nedlig";
-$a->strings["Friendica"] = "Friendica";
-$a->strings["OStatus"] = "OStatus";
-$a->strings["RSS/Atom"] = "RSS/Atom";
-$a->strings["Email"] = "E-post";
-$a->strings["Diaspora"] = "Diaspora";
-$a->strings["Facebook"] = "Facebook";
-$a->strings["Zot!"] = "Zot!";
-$a->strings["LinkedIn"] = "LinkedIn";
-$a->strings["XMPP/IM"] = "XMPP/IM";
-$a->strings["MySpace"] = "MySpace";
-$a->strings["Image/photo"] = "Bilde/fotografi";
-$a->strings["Encrypted content"] = "Kryptert innhold";
-$a->strings["Install %s element: "] = "Installer %s element:";
-$a->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.";
-$a->strings["webpage"] = "nettside";
-$a->strings["layout"] = "layout";
-$a->strings["block"] = "byggekloss";
-$a->strings["menu"] = "meny";
-$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s skrev fĆølgende %2\$s %3\$s";
-$a->strings["post"] = "innlegg";
-$a->strings["Different viewers will see this text differently"] = "Denne teksten vil se forskjellig ut for ulike besĆøkende";
-$a->strings["$1 spoiler"] = "$1 avslĆøring";
-$a->strings["$1 wrote:"] = "$1 skrev:";
-$a->strings["%d invitation available"] = array(
- 0 => "%d invitasjon tilgjengelig",
- 1 => "%d invitasjoner tilgjengelig",
-);
-$a->strings["Advanced"] = "Avansert";
-$a->strings["Find Channels"] = "Finn kanaler";
-$a->strings["Enter name or interest"] = "Skriv navn eller interesse";
-$a->strings["Connect/Follow"] = "Forbindelse/FĆølg";
-$a->strings["Examples: Robert Morgenstein, Fishing"] = "Eksempler: Ola Nordmann, fisking";
-$a->strings["Find"] = "Finn";
-$a->strings["Channel Suggestions"] = "Kanalforslag";
-$a->strings["Random Profile"] = "Tilfeldig profil";
-$a->strings["Invite Friends"] = "Inviter venner";
-$a->strings["Advanced example: name=fred and country=iceland"] = "Avansert eksempel: navn=fred og land=island";
-$a->strings["%d connection in common"] = array(
- 0 => "%d forbindelse felles",
- 1 => "%d forbindelser felles",
-);
-$a->strings["show more"] = "vis mer";
-$a->strings["\$Projectname Notification"] = "\$Projectname varsling";
-$a->strings["\$projectname"] = "\$projectname";
-$a->strings["Thank You,"] = "Tusen takk,";
-$a->strings["%s Administrator"] = "%s administrator";
-$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
-$a->strings["[Hubzilla:Notify] New mail received at %s"] = "[Hubzilla:Notify] Ny melding mottatt hos %s";
-$a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s sendte deg en ny privat melding pƄ %3\$s.";
-$a->strings["%1\$s sent you %2\$s."] = "%1\$s sendte deg %2\$s.";
-$a->strings["a private message"] = "en privat melding";
-$a->strings["Please visit %s to view and/or reply to your private messages."] = "Vennligst besĆøk %s for Ć„ se og/eller svare pĆ„ dine private meldinger.";
-$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s kommenterte pƄ [zrl=%3\$s]a %4\$s[/zrl]";
-$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s kommenterte pƄ [zrl=%3\$s]%4\$s's %5\$s[/zrl]";
-$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s kommenterte pƄ [zrl=%3\$s]din %4\$s[/zrl]";
-$a->strings["[Hubzilla:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Hubzilla:Notify] Kommentar til samtale #%1\$d av %2\$s";
-$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s kommenterte pĆ„ et element eller en samtale du fĆølger";
-$a->strings["Please visit %s to view and/or reply to the conversation."] = "Vennligst besĆøk %s for Ć„ se og/eller svare i samtalen";
-$a->strings["[Hubzilla:Notify] %s posted to your profile wall"] = "[Hubzilla:Notify] %s skrev et innlegg pƄ din profilvegg";
-$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s skrev et innlegg pƄ din profilvegg pƄ %3\$s";
-$a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s skrev et innlegg pƄ [zrl=%3\$s]din vegg[/zrl]";
-$a->strings["[Hubzilla:Notify] %s tagged you"] = "[Hubzilla:Notify] %s merket deg";
-$a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s merket deg pƄ %3\$s";
-$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]merket deg[/zrl].";
-$a->strings["[Hubzilla:Notify] %1\$s poked you"] = "[Hubzilla:Notify] %1\$s prikket deg";
-$a->strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s dyttet deg pƄ %3\$s";
-$a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]dyttet deg[/zrl].";
-$a->strings["[Hubzilla:Notify] %s tagged your post"] = "[Hubzilla:Notify] %s merket ditt innlegg";
-$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s merket ditt innlegg pƄ %3\$s";
-$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s merket [zrl=%3\$s]ditt innlegg[/zrl]";
-$a->strings["[Hubzilla:Notify] Introduction received"] = "[Hubzilla:Notify] Introduksjon mottatt";
-$a->strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, du har mottatt en ny forespĆørsel om forbindelse fra '%2\$s' hos %3\$s";
-$a->strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, du mottok [zrl=%2\$s]en ny forespĆørsel om forbindelse[/zrl] fra %3\$s.";
-$a->strings["You may visit their profile at %s"] = "Du kan besĆøke profilen deres pĆ„ %s";
-$a->strings["Please visit %s to approve or reject the connection request."] = "Vennligst besĆøk %s for Ć„ godkjenne eller avslĆ„ forespĆørselen om forbindelse.";
-$a->strings["[Hubzilla:Notify] Friend suggestion received"] = "[Hubzilla:Notify] Venneforslag mottatt";
-$a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, du har mottatt en venneforespĆørsel fra '%2\$s' hos %3\$s";
-$a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, du har mottatt [zrl=%2\$s]et venneforslaget[/zrl] angƄende %3\$s fra %4\$s. ";
-$a->strings["Name:"] = "Navn:";
-$a->strings["Photo:"] = "Bilde:";
-$a->strings["Please visit %s to approve or reject the suggestion."] = "Vennligst besĆøk %s for Ć„ godkjenne eller avslĆ„ dette forslaget.";
-$a->strings["[Hubzilla:Notify]"] = "[Hubzilla:Notify]";
-$a->strings["Channel is blocked on this site."] = "Kanalen er blokkert pƄ dette nettstedet.";
-$a->strings["Channel location missing."] = "Kanalplassering mangler.";
-$a->strings["Response from remote channel was incomplete."] = "Svaret fra den andre kanalen var ikke komplett.";
-$a->strings["Channel was deleted and no longer exists."] = "Kanalen er slettet og finnes ikke lenger.";
-$a->strings["Protocol disabled."] = "Protokollen er avskrudd.";
-$a->strings["Channel discovery failed."] = "Kanaloppdagelse mislyktes.";
-$a->strings["local account not found."] = "lokal konto ble ikke funnet.";
-$a->strings["Cannot connect to yourself."] = "Kan ikke lage forbindelse med deg selv.";
-$a->strings["Embedded content"] = "Innebygget innhold";
-$a->strings["Embedding disabled"] = "Innbygging avskrudd";
-$a->strings["No recipient provided."] = "Ingen mottaker angitt.";
-$a->strings["[no subject]"] = "[ikke noe emne]";
-$a->strings["Unable to determine sender."] = "Kan ikke avgjĆøre avsender.";
-$a->strings["Stored post could not be verified."] = "Lagret innlegg kunne ikke bekreftes.";
-$a->strings["Logout"] = "Logg ut";
-$a->strings["End this session"] = "Avslutt denne Ćøkten";
-$a->strings["Home"] = "Hjem";
-$a->strings["Your posts and conversations"] = "Dine innlegg og samtaler";
-$a->strings["Your profile page"] = "Din profilside";
-$a->strings["Edit Profiles"] = "Endre profiler";
-$a->strings["Manage/Edit profiles"] = "HĆ„ndter/endre profiler";
-$a->strings["Edit your profile"] = "Endre din profil";
-$a->strings["Your photos"] = "Dine bilder";
-$a->strings["Your files"] = "Dine filer";
-$a->strings["Chat"] = "Chat";
-$a->strings["Your chatrooms"] = "Dine chatterom";
-$a->strings["Your bookmarks"] = "Dine bokmerker";
-$a->strings["Your webpages"] = "Dine websider";
-$a->strings["Login"] = "Logg inn";
-$a->strings["Sign in"] = "Logg pƄ";
-$a->strings["%s - click to logout"] = "%s - klikk for Ć„ logge ut";
-$a->strings["Remote authentication"] = "Fjernautentisering";
-$a->strings["Click to authenticate to your home hub"] = "Klikk for Ć„ godkjennes mot din hjemme-hub";
-$a->strings["Home Page"] = "Hjemmeside";
-$a->strings["Register"] = "Registrer";
-$a->strings["Create an account"] = "Lag en konto";
-$a->strings["Help"] = "Hjelp";
-$a->strings["Help and documentation"] = "Hjelp og dokumentasjon";
-$a->strings["Applications, utilities, links, games"] = "Programmer, verktĆøy, lenker, spill";
-$a->strings["Search site @name, #tag, ?docs, content"] = "SĆøk nettstedet for @navn, #merkelapp, ?dokumentasjon, innhold";
-$a->strings["Directory"] = "Katalog";
-$a->strings["Channel Directory"] = "Kanalkatalog";
-$a->strings["Grid"] = "Nett";
-$a->strings["Your grid"] = "Ditt nett";
-$a->strings["Mark all grid notifications seen"] = "Marker alle nettvarsler som sett";
-$a->strings["Channel Home"] = "Kanalhjem";
-$a->strings["Channel home"] = "Kanalhjem";
-$a->strings["Mark all channel notifications seen"] = "Merk alle kanalvarsler som sett";
-$a->strings["Connections"] = "Forbindelser";
-$a->strings["Notices"] = "Varsel";
-$a->strings["Notifications"] = "Varsler";
-$a->strings["See all notifications"] = "Se alle varsler";
-$a->strings["Mark all system notifications seen"] = "Merk alle systemvarsler som sett";
-$a->strings["Mail"] = "Melding";
-$a->strings["Private mail"] = "Privat post";
-$a->strings["See all private messages"] = "Se alle private meldinger";
-$a->strings["Mark all private messages seen"] = "Merk alle private meldinger som sett";
-$a->strings["Events"] = "Hendelser";
-$a->strings["Event Calendar"] = "Kalender";
-$a->strings["See all events"] = "Se alle hendelser";
-$a->strings["Mark all events seen"] = "Merk alle hendelser som sett";
-$a->strings["Channel Manager"] = "Kanalstyring";
-$a->strings["Manage Your Channels"] = "HĆ„ndter dine kanaler";
-$a->strings["Account/Channel Settings"] = "Konto-/kanal-innstillinger";
-$a->strings["Site Setup and Configuration"] = "Nettstedsoppsett og -konfigurasjon";
-$a->strings["@name, #tag, ?doc, content"] = "@navn, #merkelapp, ?dokumentasjon, innhold";
-$a->strings["Please wait..."] = "Vennligst vent...";
-$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Skjemaets sikkerhetspollett var ikke gyldig. Dette skjedde antakelig fordi skjemaet har vƦrt Ć„pnet for lenge (>3 timer) fĆør det ble sendt inn.";
-$a->strings["Directory Options"] = "Kataloginnstillinger";
-$a->strings["Safe Mode"] = "Trygt modus";
-$a->strings["No"] = "Nei";
-$a->strings["Yes"] = "Ja";
-$a->strings["Public Forums Only"] = "Bare offentlige forum";
-$a->strings["This Website Only"] = "Kun dette nettstedet";
-$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "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.";
-$a->strings["Add new connections to this collection (privacy group)"] = "Legg nye forbindelser til denne samlingen (personverngruppe)";
-$a->strings["All Channels"] = "Alle kanaler";
-$a->strings["edit"] = "endre";
-$a->strings["Collections"] = "Samlinger";
-$a->strings["Edit collection"] = "Endre samling";
-$a->strings["Add new collection"] = "Legg til ny samling";
-$a->strings["Channels not in any collection"] = "Kanaler som ikke er i noen samling";
-$a->strings["Invalid data packet"] = "Ugyldig datapakke";
-$a->strings["Unable to verify channel signature"] = "Ikke i stand til Ć„ sjekke kanalsignaturen";
-$a->strings["Unable to verify site signature for %s"] = "Ikke i stand til Ć„ bekrefte signaturen til %s";
-$a->strings["invalid target signature"] = "MĆ„lets signatur er ugyldig";
-$a->strings["New Page"] = "Ny side";
-$a->strings["View"] = "Vis";
-$a->strings["Actions"] = "Handlinger";
-$a->strings["Page Link"] = "Sidelenke";
-$a->strings["Title"] = "Tittel";
-$a->strings["Created"] = "Laget";
-$a->strings["Edited"] = "Endret";
-$a->strings["view full size"] = "vis full stĆørrelse";
-$a->strings["Administrator"] = "Administrator";
-$a->strings["No Subject"] = "Uten emne";
-$a->strings["Cannot locate DNS info for database server '%s'"] = "Kan ikke finne DNS-informasjon om databasetjener '%s'";
$a->strings["Save to Folder"] = "Lagre i mappe";
$a->strings["I will attend"] = "Jeg vil delta";
$a->strings["I will not attend"] = "Jeg deltar ikke";
@@ -935,20 +968,6 @@ $a->strings["This is you"] = "Dette er deg";
$a->strings["Image"] = "Bilde";
$a->strings["Insert Link"] = "Sett inn lenke";
$a->strings["Video"] = "Video";
-$a->strings["Site Admin"] = "Nettstedsadministrator";
-$a->strings["Address Book"] = "Adressebok";
-$a->strings["Mood"] = "Stemning";
-$a->strings["Probe"] = "UndersĆøk";
-$a->strings["Suggest"] = "ForreslƄ";
-$a->strings["Random Channel"] = "Tilfeldig kanal";
-$a->strings["Invite"] = "Inviter";
-$a->strings["Features"] = "Funksjoner";
-$a->strings["Language"] = "SprƄk";
-$a->strings["Post"] = "Innlegg";
-$a->strings["Profile Photo"] = "Profilbilde";
-$a->strings["Update"] = "Oppdater";
-$a->strings["Install"] = "Installer";
-$a->strings["Purchase"] = "KjĆøp";
$a->strings["Can view my normal stream and posts"] = "Kan se min normale strĆøm og innlegg";
$a->strings["Can view my default channel profile"] = "Kan se min standard kanalprofil";
$a->strings["Can view my connections"] = "Kan se mine forbindelser";
@@ -970,64 +989,85 @@ $a->strings["Somewhat advanced - very useful in open communities"] = "Litt avans
$a->strings["Can administer my channel resources"] = "Kan administrere mine kanalressurser";
$a->strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Ekstremt avansert. La dette vƦre med mindre du vet hva du gjĆør";
$a->strings["Social Networking"] = "Sosialt nettverk";
-$a->strings["Mostly Public"] = "Ganske offentlig";
-$a->strings["Restricted"] = "Begrenset";
-$a->strings["Private"] = "Privat";
+$a->strings["Social - Mostly Public"] = "Sosial - ganske offentlig";
+$a->strings["Social - Restricted"] = "Sosial - begrenset";
+$a->strings["Social - Private"] = "Sosial - privat";
$a->strings["Community Forum"] = "Forum for fellesskap";
+$a->strings["Forum - Mostly Public"] = "Forum - ganske offentlig";
+$a->strings["Forum - Restricted"] = "Forum - begrenset";
+$a->strings["Forum - Private"] = "Forum - privat";
$a->strings["Feed Republish"] = "Republisering av strĆømmet innhold";
+$a->strings["Feed - Mostly Public"] = "StrĆøm - ganske offentlig";
+$a->strings["Feed - Restricted"] = "StrĆøm - begrenset";
$a->strings["Special Purpose"] = "Spesiell bruk";
-$a->strings["Celebrity/Soapbox"] = "Kjendis/Talerstol";
-$a->strings["Group Repository"] = "Gruppelager";
+$a->strings["Special - Celebrity/Soapbox"] = "Spesiell - kjendis/talerstol";
+$a->strings["Special - Group Repository"] = "Spesiell - gruppelager";
$a->strings["Custom/Expert Mode"] = "Tilpasset/Ekspertmodus";
-$a->strings["Profile Photos"] = "Profilbilder";
-$a->strings["Not a valid email address"] = "Ikke en gyldig e-postadresse";
-$a->strings["Your email domain is not among those allowed on this site"] = "Ditt e-postdomene er ikke blant de som er tillatt pƄ dette stedet";
-$a->strings["Your email address is already registered at this site."] = "Din e-postadresse er allerede registrert pƄ dette nettstedet.";
-$a->strings["An invitation is required."] = "En invitasjon er pƄkrevd.";
-$a->strings["Invitation could not be verified."] = "Invitasjon kunne ikke bekreftes.";
-$a->strings["Please enter the required information."] = "Vennligst skriv inn nĆødvendig informasjon.";
-$a->strings["Failed to store account information."] = "Mislyktes med Ć„ lagre kontoinformasjon.";
-$a->strings["Registration confirmation for %s"] = "Registreringsbekreftelse for %s";
-$a->strings["Registration request at %s"] = "RegistreringsforespĆørsel hos %s";
-$a->strings["your registration password"] = "ditt registreringspassord";
-$a->strings["Registration details for %s"] = "Registreringsdetaljer for %s";
-$a->strings["Account approved."] = "Konto godkjent.";
-$a->strings["Registration revoked for %s"] = "Registrering trukket tilbake for %s";
-$a->strings["Account verified. Please login."] = "Konto bekreftet. Vennligst logg inn.";
-$a->strings["Click here to upgrade."] = "Klikk her for Ć„ oppgradere.";
-$a->strings["This action exceeds the limits set by your subscription plan."] = "Denne handlingen gƄr utenfor grensene satt i din abonnementsplan.";
-$a->strings["This action is not available under your subscription plan."] = "Denne handlingen er ikke tilgjengelig i din abonnementsplan.";
-$a->strings["Permission Denied."] = "Tillatelse avvist.";
-$a->strings["File not found."] = "Filen ble ikke funnet.";
-$a->strings["Edit file permissions"] = "Endre filtillatelser";
-$a->strings["Set/edit permissions"] = "Angi/endre tillatelser";
-$a->strings["Include all files and sub folders"] = "Inkluder alle filer og undermapper";
-$a->strings["Return to file list"] = "GĆ„ tilbake til filoversikten";
-$a->strings["Copy/paste this code to attach file to a post"] = "Kopier og lim inn denne koden for Ć„ legge til filen i et innlegg";
-$a->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";
-$a->strings["Share this file"] = "Del denne filen";
-$a->strings["Show URL to this file"] = "Vis URLen til denne filen";
-$a->strings["Notify your contacts about this file"] = "Varsle dine kontakter om denne filen";
-$a->strings["Collection created."] = "Samling opprettet.";
-$a->strings["Could not create collection."] = "Kunne ikke lage samling.";
-$a->strings["Collection updated."] = "Samlingen er oppdatert.";
-$a->strings["Create a collection of channels."] = "Lag en samling med kanaler.";
-$a->strings["Collection Name: "] = "Navn pƄ samling:";
-$a->strings["Members are visible to other channels"] = "Medlemmer er synlig for andre kanaler";
-$a->strings["Collection removed."] = "Samling fjernet.";
-$a->strings["Unable to remove collection."] = "Ikke i stand til Ć„ fjerne samlingen.";
-$a->strings["Collection Editor"] = "Samlingsbehandler";
-$a->strings["Members"] = "Medlemmer";
-$a->strings["All Connected Channels"] = "Alle tilkoblede kanaler";
-$a->strings["Click on a channel to add or remove."] = "Klikk pƄ en kanal for Ƅ legge til eller fjerne.";
-$a->strings["Unable to locate original post."] = "Ikke i stand til Ć„ finne opprinnelig innlegg.";
-$a->strings["Empty post discarded."] = "Tomt innlegg forkastet.";
-$a->strings["Executable content type not permitted to this channel."] = "KjĆørbar innholdstype er ikke tillat for denne kanalen.";
-$a->strings["Duplicate post suppressed."] = "Duplikat av innlegg forhindret.";
-$a->strings["System error. Post not saved."] = "Systemfeil. Innlegg ble ikke lagret.";
-$a->strings["Unable to obtain post information from database."] = "Ikke i stand til Ƅ fƄ tak i informasjon om innlegg fra databasen.";
-$a->strings["You have reached your limit of %1$.0f top level posts."] = "Du har nƄdd din grense pƄ %1$.0f startinnlegg.";
-$a->strings["You have reached your limit of %1$.0f webpages."] = "Du har nƄdd din grense pƄ %1$.0f websider.";
+$a->strings["Permission denied"] = "Tillatelse avvist";
+$a->strings["(Unknown)"] = "(Ukjent)";
+$a->strings["Visible to anybody on the internet."] = "Synlig for enhver pƄ Internett.";
+$a->strings["Visible to you only."] = "Synlig bare for deg.";
+$a->strings["Visible to anybody in this network."] = "Synlig for enhver i dette nettverket.";
+$a->strings["Visible to anybody authenticated."] = "Synlig for enhver som er autentisert.";
+$a->strings["Visible to anybody on %s."] = "Synlig for alle pƄ %s.";
+$a->strings["Visible to all connections."] = "Synlig for alle forbindelser.";
+$a->strings["Visible to approved connections."] = "Synlig for godkjente forbindelser.";
+$a->strings["Visible to specific connections."] = "Synlig for spesifikke forbindelser.";
+$a->strings["Item not found."] = "Elementet ble ikke funnet.";
+$a->strings["Privacy group not found."] = "Personverngruppen ble ikke funnet";
+$a->strings["Privacy group is empty."] = "Personverngruppen er tom.";
+$a->strings["Privacy group: %s"] = "Personverngruppe: %s";
+$a->strings["Connection: %s"] = "Forbindelse: %s";
+$a->strings["Connection not found."] = "Forbindelsen ble ikke funnet.";
+$a->strings["female"] = "kvinne";
+$a->strings["%1\$s updated her %2\$s"] = "%1\$s oppdaterte %2\$s sitt";
+$a->strings["male"] = "mann";
+$a->strings["%1\$s updated his %2\$s"] = "%1\$s oppdaterte %2\$s sitt";
+$a->strings["%1\$s updated their %2\$s"] = "%1\$s oppdaterte %2\$s deres";
+$a->strings["profile photo"] = "profilbilde";
+$a->strings["Some blurb about what to do when you're new here"] = "En standardtekst om hva du bĆør gjĆøre som ny her";
+$a->strings["network"] = "nettverk";
+$a->strings["RSS"] = "RSS";
+$a->strings["Authorize application connection"] = "Tillat programforbindelse";
+$a->strings["Return to your app and insert this Securty Code:"] = "GĆ„ tilbake til din app og legg inn denne sikkerhetskoden:";
+$a->strings["Please login to continue."] = "Vennligst logg inn for Ć„ fortsette.";
+$a->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?";
+$a->strings["App installed."] = "App installert.";
+$a->strings["Malformed app."] = "Feil oppsett for app-en.";
+$a->strings["Embed code"] = "Innbyggingskode";
+$a->strings["Edit App"] = "Endre app";
+$a->strings["Create App"] = "Lag app";
+$a->strings["Name of app"] = "Navn pƄ app";
+$a->strings["Location (URL) of app"] = "Plassering (URL) til app";
+$a->strings["Description"] = "Beskrivelse";
+$a->strings["Photo icon URL"] = "Bildeikon URL";
+$a->strings["80 x 80 pixels - optional"] = "80 x80 pixler - valgfritt";
+$a->strings["Version ID"] = "Versjons-ID";
+$a->strings["Price of app"] = "Pris pƄ app";
+$a->strings["Location (URL) to purchase app"] = "Plassering (URL) for Ć„ kjĆøpe app";
+$a->strings["Item not available."] = "Elementet er ikke tilgjengelig.";
+$a->strings["Invalid item."] = "Ugyldig element.";
+$a->strings["Channel not found."] = "Kanalen ble ikke funnet.";
+$a->strings["Block Name"] = "Byggeklossens navn";
+$a->strings["Block Title"] = "Byggeklossens tittel";
+$a->strings["Bookmark added"] = "Bokmerke lagt til";
+$a->strings["My Bookmarks"] = "Mine bokmerker";
+$a->strings["My Connections Bookmarks"] = "Mine forbindelsers bokmerker";
+$a->strings["You must be logged in to see this page."] = "Du mƄ vƦre innloegget for Ƅ se denne siden.";
+$a->strings["Insufficient permissions. Request redirected to profile page."] = "Utilstrekkelig tillatelse. ForespĆørsel omdirigert til profilsiden.";
+$a->strings["Public"] = "Offentlig";
+$a->strings["Room not found"] = "Rommet ble ikke funnet";
+$a->strings["Leave Room"] = "Forlat rom";
+$a->strings["Delete This Room"] = "Slett dette rommet";
+$a->strings["I am away right now"] = "Jeg er borte akkurat nƄ";
+$a->strings["I am online"] = "Jeg er online";
+$a->strings["Bookmark this room"] = "Bokmerk dette rommet";
+$a->strings["New Chatroom"] = "Nytt chatrom";
+$a->strings["Chatroom Name"] = "Navn pƄ chatrom";
+$a->strings["Expiration of chats (minutes)"] = "Chat utgƄr (antall minutter)";
+$a->strings["%1\$s's Chatrooms"] = "%1\$s sine chatrom";
+$a->strings["Away"] = "Borte";
+$a->strings["Online"] = "Online";
$a->strings["No channel."] = "Ingen kanal.";
$a->strings["Common connections"] = "Felles forbindelser";
$a->strings["No connections in common."] = "Ingen forbindelser felles.";
@@ -1040,253 +1080,33 @@ $a->strings["Potential connections will then see the following text before proce
$a->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.";
$a->strings["(No specific instructions have been provided by the channel owner.)"] = "(Ingen spesifikke instruksjoner er gitt av kanaleieren.)";
$a->strings["Restricted or Premium Channel"] = "Begrenset kanal eller premiumkanal";
-$a->strings["Profile Match"] = "Profiltreff";
-$a->strings["No keywords to match. Please add keywords to your default profile."] = "Ingen nĆøkkelord Ć„ sammenlikne. Vennligst legg til nĆøkkelord til din standardprofil.";
-$a->strings["is interested in:"] = "er interessert i:";
-$a->strings["No matches"] = "Ingen treff";
-$a->strings["OpenID protocol error. No ID returned."] = "OpenID protokollfeil. Ingen ID ble returnert.";
-$a->strings["Welcome %s. Remote authentication successful."] = "Velkommen %s. Ekstern autentisering er vellykket.";
-$a->strings["Some blurb about what to do when you're new here"] = "En standardtekst om hva du bĆør gjĆøre som ny her";
-$a->strings["Away"] = "Borte";
-$a->strings["Online"] = "Online";
-$a->strings["Public Sites"] = "Offentlige nettsteder";
-$a->strings["The listed sites allow public registration for the \$Projectname network. All sites in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some sites may require subscription or provide tiered service plans. The provider links <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 hele matrix. Noen nettsteder kan kreve abonnement eller tilby lagdelte tjenesteavtaler. Tilbyderlenkene <strong>kan</strong> gi tilleggsopplysninger.";
-$a->strings["Rate this hub"] = "Vurder denne hubben";
-$a->strings["Site URL"] = "Nettstedets URL";
-$a->strings["Access Type"] = "Tilgangstype";
-$a->strings["Registration Policy"] = "Retningslinjer for registrering";
-$a->strings["Project"] = "Prosjekt";
-$a->strings["View hub ratings"] = "Vis vurderinger av hubben";
-$a->strings["Rate"] = "Vurder";
-$a->strings["View ratings"] = "Vis vurderinger";
-$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s merket %3\$s til %2\$s med %4\$s";
-$a->strings["Website:"] = "Nettsted:";
-$a->strings["Remote Channel [%s] (not yet known on this site)"] = "Fjerntliggende kanal [%s] (forelĆøpig ikke kjent pĆ„ dette nettstedet)";
-$a->strings["Rating (this information is public)"] = "Vurdering (denne informasjonen er offentlig)";
-$a->strings["Optionally explain your rating (this information is public)"] = "Velg om du vil forklare din vurdering (denne informasjonen er offentlig)";
-$a->strings["Block Name"] = "Byggeklossens navn";
-$a->strings["Block Title"] = "Byggeklossens tittel";
-$a->strings["First Name"] = "Fornavn";
-$a->strings["Last Name"] = "Etternavn";
-$a->strings["Nickname"] = "Kallenavn";
-$a->strings["Full Name"] = "Fullt navn";
-$a->strings["Profile Photo 16px"] = "Profilbilde 16px";
-$a->strings["Profile Photo 32px"] = "Profilbilde 32px";
-$a->strings["Profile Photo 48px"] = "Profilbilde 48px";
-$a->strings["Profile Photo 64px"] = "Profilbilde 64px";
-$a->strings["Profile Photo 80px"] = "Profilbilde 80px";
-$a->strings["Profile Photo 128px"] = "Profilbilde 128px";
-$a->strings["Timezone"] = "Tidssone";
-$a->strings["Homepage URL"] = "Hjemmeside URL";
-$a->strings["Birth Year"] = "FĆødselsĆ„r";
-$a->strings["Birth Month"] = "FĆødselsmĆ„ne";
-$a->strings["Birth Day"] = "FĆødselsdag";
-$a->strings["Birthdate"] = "FĆødselsdato";
-$a->strings["Gender"] = "KjĆønn";
-$a->strings["Like/Dislike"] = "Liker/Liker ikke";
-$a->strings["This action is restricted to members."] = "Denne handlingen er begrenset til medlemmer.";
-$a->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";
-$a->strings["Invalid request."] = "Ugyldig forespĆørsel.";
-$a->strings["thing"] = "ting";
-$a->strings["Channel unavailable."] = "Kanalen er utilgjengelig.";
-$a->strings["Previous action reversed."] = "Forrige handling er omgjort.";
-$a->strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s er enig med %2\$s sin %3\$s";
-$a->strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s er ikke enig med %2\$s sin %3\$s";
-$a->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";
-$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s deltar pƄ %2\$ss %3\$s";
-$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s deltar ikke pƄ %2\$ss %3\$s";
-$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s deltar kanskje pƄ %2\$ss %3\$s";
-$a->strings["Action completed."] = "Handling ferdig.";
-$a->strings["Thank you."] = "Tusen takk.";
-$a->strings["Invalid item."] = "Ugyldig element.";
-$a->strings["Channel not found."] = "Kanalen ble ikke funnet.";
-$a->strings["Page not found."] = "Siden ikke funnet.";
-$a->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.";
-$a->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.";
-$a->strings["Remove This Channel"] = "Fjern denne kanalen";
-$a->strings["WARNING: "] = "ADVARSEL:";
-$a->strings["This channel will be completely removed from the network. "] = "Denne kanalen vil bli fullstendig fjernet fra nettverket.";
-$a->strings["This action is permanent and can not be undone!"] = "Denne handlingen er permanent og kan ikke angres!";
-$a->strings["Please enter your password for verification:"] = "Vennligst skriv ditt passord for Ƅ fƄ bekreftelse:";
-$a->strings["Remove this channel and all its clones from the network"] = "Fjern denne kanalen og alle dens kloner fra nettverket";
-$a->strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Som standard vil bare forekomsten av denne kanalen lokalisert pƄ denne hubben bli fjernet fra nettverket";
-$a->strings["Remove Channel"] = "Fjern kanal";
-$a->strings["Set your current mood and tell your friends"] = "Angi ditt nĆ„vƦrende humĆør og fortell dine venner";
-$a->strings["Add a Channel"] = "Legg til en kanal";
-$a->strings["A channel is your own collection of related web pages. A channel can be used to hold social network profiles, blogs, conversation groups and forums, celebrity pages, and much more. You may create as many channels as your service provider allows."] = "En kanal er din egen samling av relaterte web-sider. En kanal kan brukes til Ƅ samle sosiale nettverksprofiler, blogger, samtalegrupper og forum, kjendissider og mye mer. Du kan lage sƄ mange kanaler som din tjenestetilbyder tillater.";
-$a->strings["Channel Name"] = "Kanalnavn";
-$a->strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = "Eksempel: \"Ola Nordmann\", \"Lisa og hestene hennes\", \"Fotball\", \"Sykkelgruppa\"";
-$a->strings["Choose a short nickname"] = "Velg et kort kallenavn";
-$a->strings["Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others."] = "Ditt kallenavn brukes til Ć„ lage en kanaladresse som er enkel Ć„ huske (minner om en e-postadresse) og som du kan dele med andre.";
-$a->strings["Or <a href=\"import\">import an existing channel</a> from another location"] = "Eller <a href=\"import\">importerer en eksisterende kanal</a> fra et annet sted.";
-$a->strings["Please choose a channel type (such as social networking or community forum) and privacy requirements so we can select the best permissions for you"] = "Vennligst velg en kanaltype (for eksempel sosialt nettverk eller forum for felleskap) og krav til personvern slik at vi kan velge de beste tillatelsene for deg.";
-$a->strings["Channel Type"] = "Kanaltype";
-$a->strings["Read more about roles"] = "Les mer om roller";
-$a->strings["No ratings"] = "Ingen vurderinger";
-$a->strings["Public access denied."] = "Offentlig tilgang avvist.";
-$a->strings["Ratings"] = "Vurderinger";
-$a->strings["Rating: "] = "Vurdering:";
-$a->strings["Website: "] = "Nettsted:";
-$a->strings["Description: "] = "Beskrivelse:";
-$a->strings["\$Projectname Server - Setup"] = "\$Projectname-tjener - oppsett";
-$a->strings["Could not connect to database."] = "Fikk ikke kontakt med databasen.";
-$a->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.";
-$a->strings["Could not create table."] = "Kunne ikke lage tabellen.";
-$a->strings["Your site database has been installed."] = "Databasen til ditt nettsted har blitt installert.";
-$a->strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Du mƄ kanskje importere filen \"install/schmea_xxx.sql\" manuelt ved Ƅ bruke en databaseklient.";
-$a->strings["Please see the file \"install/INSTALL.txt\"."] = "Vennligst les filen \"install/INSTALL.txt\".";
-$a->strings["System check"] = "Systemsjekk";
-$a->strings["Next"] = "Neste";
-$a->strings["Check again"] = "Sjekk igjen";
-$a->strings["Database connection"] = "Databaseforbindelse";
-$a->strings["In order to install \$Projectname we need to know how to connect to your database."] = "For Ƅ installere \$Projectname mƄ du oppgi hvordan din database kan kontaktes.";
-$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Vennligst kontakt din nettstedstilbyder eller nettstedsadministrator hvis du har spĆørsmĆ„l om disse innstillingene.";
-$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Databasen du oppgir nedenfor mĆ„ finnes pĆ„ forhĆ„nd. Hvis den ikke finnes, vennligst lag den fĆør du fortsetter.";
-$a->strings["Database Server Name"] = "Navn pƄ databasetjener";
-$a->strings["Default is 127.0.0.1"] = "Standard er 127.0.0.1";
-$a->strings["Database Port"] = "Databaseport";
-$a->strings["Communication port number - use 0 for default"] = "Kommunikasjonsportnummer - bruk 0 for standard";
-$a->strings["Database Login Name"] = "Database innloggingsnavn";
-$a->strings["Database Login Password"] = "Database innloggingspassord";
-$a->strings["Database Name"] = "Databasenavn";
-$a->strings["Database Type"] = "Databasetype";
-$a->strings["Site administrator email address"] = "E-postadressen til administrator ved nettstedet";
-$a->strings["Your account email address must match this in order to use the web admin panel."] = "Din konto sin e-postadresse mƄ vƦre lik denne for Ƅ kunne bruke web-administrasjonspanelet.";
-$a->strings["Website URL"] = "Nettstedets URL";
-$a->strings["Please use SSL (https) URL if available."] = "Vennligst bruk SSL (https) URL hvis tilgjengelig.";
-$a->strings["Please select a default timezone for your website"] = "Vennligst velg en standard tidssone for ditt nettsted";
-$a->strings["Site settings"] = "Nettstedets innstillinger";
-$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Fant ikke en kommandolinjeversjon av PHP i webtjenerens sti (PATH).";
-$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = "Hvis du ikke har en kommandolinjeversjon av PHP installert pĆ„ tjeneren, sĆ„ vil du ikke kunne kjĆøre bakgrunnshenting via cron.";
-$a->strings["PHP executable path"] = "PHP-kjĆørefilens sti";
-$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Skriv full sti til kjĆørefilen for PHP. Du kan la denne stĆ„ blank for Ć„ fortsette installasjonen.";
-$a->strings["Command line PHP"] = "Kommandolinje PHP";
-$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Kommandolinjeversjonen av PHP pƄ ditt system har ikke \"register_argc_argv\" pƄskrudd.";
-$a->strings["This is required for message delivery to work."] = "Dette er pƄkrevd for at meldingslevering skal virke.";
-$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
-$a->strings["Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once."] = "Den stĆørste totale opplastingsstĆørrelsen du er tillatt er satt til %s. FilstĆørrelsen pĆ„ en enkelt fil er satt til Ć„ maksimalt vƦre %s. Du har lov til Ć„ laste opp inntil %d filer samtidig.";
-$a->strings["You can adjust these settings in the servers php.ini."] = "Du kan justere disse innstillingene i tjenerens php.ini.";
-$a->strings["PHP upload limits"] = "PHP opplastingsgrenser";
-$a->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";
-$a->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\".";
-$a->strings["Generate encryption keys"] = "Lag krypteringsnĆøkler";
-$a->strings["libCurl PHP module"] = "libCurl PHP-modul";
-$a->strings["GD graphics PHP module"] = "GD graphics PHP-modul";
-$a->strings["OpenSSL PHP module"] = "OpenSSL PHP-modul";
-$a->strings["mysqli or postgres PHP module"] = "MySQLi eller Postgres PHP modul";
-$a->strings["mb_string PHP module"] = "mb_string PHP-modul";
-$a->strings["mcrypt PHP module"] = "mcrypt PHP-modul";
-$a->strings["xml PHP module"] = "XML PHP modul";
-$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite-modul";
-$a->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.";
-$a->strings["proc_open"] = "proc_open";
-$a->strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Feil: proc_open er pƄkrevd, men er enten ikke installert eller har blitt avskrudd i php.ini";
-$a->strings["Error: libCURL PHP module required but not installed."] = "Feil: libCURL PHP-modul er pƄkrevd, men er ikke installert.";
-$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Feil: GD graphics PHP-modul med JPEG-stĆøtte er pĆ„krevd, men er ikke installert.";
-$a->strings["Error: openssl PHP module required but not installed."] = "Feil: openssl PHP-modul er pƄkrevd, men er ikke installert.";
-$a->strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Feil: mysqli eller postgres PHP modul er pƄkrevd, men ingen av dem er installert.";
-$a->strings["Error: mb_string PHP module required but not installed."] = "Feil: mb_string PHP-modul er pƄkrevd, men er ikke installert.";
-$a->strings["Error: mcrypt PHP module required but not installed."] = "Feil: mcrypt PHP-modul er pƄkrevd, men er ikke installert.";
-$a->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.";
-$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Web-installasjonen mƄ kunne lage en fil kalt \".htconfig.php\" i toppkatalogen til web-tjeneren din, men dette fƄr den ikke til.";
-$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Dette er oftest tillatelsesinnstilling, ettersom webtjeneren kanskje kan skrive til filer i din mappe - selv om du kan.";
-$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "PĆ„ slutten av denne prosedyren vil vi gi deg en tekst til Ć„ lagre i en fil kalt .htconfig.php i toppkatalogen til din Red.";
-$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "Alternativt, sĆ„ kan du hoppe over denne prosedyren og gjennomfĆøre en manuell installasjon. Vennligst se filen \"install/INSTALL.txt\" for instruksjoner.";
-$a->strings[".htconfig.php is writable"] = ".htconfig.php kan skrives til";
-$a->strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Red bruker malmotoren Smarty3 for Ć„ gjengi sine webvisninger. Smarty3 kompilerer malene om til PHP for Ć„ framskynde gjengivelsen.";
-$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the Red top level folder."] = "For Ƅ kunne lagre disse kompilerte malene, sƄ mƄ webtjeneren ha skrivetilgang til katalogen %s under Red sin hovedmappe.";
-$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Vennligst sikre at brukeren som din web-tjeneste kjĆører som (for eksempel www-data) har skrivetilgang til denne katalogen.";
-$a->strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "Merknad: som et sikkerhetstiltak bĆør du bare gi webtjerenn skrivetilgang til %s - ikke til malfilene (.tpl) som den inneholder.";
-$a->strings["%s is writable"] = "%s kan skrives til";
-$a->strings["Red uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = "Red bruker lagringsmappen for Ƅ lagre opplastede filer. Webtjeneren trenger Ƅ ha skrivetilgang til lagringsmappen under Red sin toppnivƄmappe.";
-$a->strings["store is writable"] = "lageret kan skrives til";
-$a->strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "SSL-sertifikatet kan ikke kontrolleres. Fiks sertifikatet eller skru av https tilgang til dette nettstedet.";
-$a->strings["If you have https access to your website or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"] = "Hvis du har HTTPS-tilgang til ditt nettsted eller tillater forbindelser til TCP port 443 (HTTPS-porten), sĆ„ Mƅ du bruke nettlesergodkjent sertifkater. Du Mƅ IKKE bruke egensignert sertifikater!";
-$a->strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Denne begrensningen er tatt inn fordi offentlige innlegg fra deg kan for eksempel inneholde referanser til bilder pƄ din egen hub.";
-$a->strings["If your certificate is not recognized, members of other sites (who may themselves have valid certificates) will get a warning message on their own site complaining about security issues."] = "Hvis sertifikatet ditt ikke gjenkjennes, sƄ vil medlemmer pƄ andre nettsteder (som selv kan ha godkjente sertifikater) fƄ en beskjed med en advarsel pƄ deres eget nettsted som klager over sikkerhetsproblemer.";
-$a->strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Dette kan gi problemer med brukervennlighet (ikke bare pƄ ditt eget nettsted), sƄ vi mƄ insistere pƄ dette kravet.";
-$a->strings["Providers are available that issue free certificates which are browser-valid."] = "Det finnes tilbydere som utsteder gratis sertifikater som er gyldige i nettlesere.";
-$a->strings["SSL certificate validation"] = "SSL sertifikat-kontroll";
-$a->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:";
-$a->strings["Url rewrite is working"] = "URL rewrite virker";
-$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Databasekonfigurasjonsfilen \".htconfig.php\" kunne ikke skrives. Vennligst bruk den medfĆølgende teksten for Ć„ lage en konfigurasjonsfil i toppkatalogen av din web-tjener.";
-$a->strings["Errors encountered creating database tables."] = "Feil oppstod under opprettelsen av databasetabeller.";
-$a->strings["<h1>What next</h1>"] = "<h1>Hva gjenstƄr</h1>";
-$a->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.";
-$a->strings["Bookmark added"] = "Bokmerke lagt til";
-$a->strings["My Bookmarks"] = "Mine bokmerker";
-$a->strings["My Connections Bookmarks"] = "Mine forbindelsers bokmerker";
-$a->strings["This setting requires special processing and editing has been blocked."] = "Denne innstillingen krever spesiell behandling og redigering har blitt blokkert.";
-$a->strings["Configuration Editor"] = "Konfigurasjonsbehandler";
-$a->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.";
-$a->strings["Poke/Prod"] = "Prikke/oppildne";
-$a->strings["poke, prod or do other things to somebody"] = "prikke, oppildne eller gjĆør andre ting med noen";
-$a->strings["Recipient"] = "Mottaker";
-$a->strings["Choose what you wish to do to recipient"] = "Velg hva du Ćønsker Ć„ gjĆøre med mottakeren";
-$a->strings["Make this post private"] = "GjĆør dette innlegget privat";
-$a->strings["Profile not found."] = "Profilen ble ikke funnet.";
-$a->strings["Profile deleted."] = "Profilen er slettet.";
-$a->strings["Profile-"] = "Profil-";
-$a->strings["New profile created."] = "Ny profil opprettet.";
-$a->strings["Profile unavailable to clone."] = "Profilen er utilgjengelig for klonen.";
-$a->strings["Profile unavailable to export."] = "Profilen er utilgjengelig for eksport.";
-$a->strings["Profile Name is required."] = "Profilnavn er pƄkrevd.";
-$a->strings["Marital Status"] = "Sivilstand";
-$a->strings["Romantic Partner"] = "Romantisk partner";
-$a->strings["Likes"] = "Liker";
-$a->strings["Dislikes"] = "Liker ikke";
-$a->strings["Work/Employment"] = "Arbeid/sysselsetting";
-$a->strings["Religion"] = "Religion";
-$a->strings["Political Views"] = "Politiske synspunkter";
-$a->strings["Sexual Preference"] = "Seksuelle preferanser";
-$a->strings["Homepage"] = "Hjemmeside";
-$a->strings["Interests"] = "Interesser";
-$a->strings["Address"] = "Adresse";
-$a->strings["Profile updated."] = "Profilen er oppdatert.";
-$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Skjul kontakt-/vennelisten din fra de som ser pƄ denne profilen?";
-$a->strings["Edit Profile Details"] = "Endre profildetaljer";
-$a->strings["View this profile"] = "Vis denne profilen";
-$a->strings["Change Profile Photo"] = "Endre profilbilde";
-$a->strings["Create a new profile using these settings"] = "Lag en ny profil ved Ć„ bruke disse innstillingene";
-$a->strings["Clone this profile"] = "Klon denne profilen";
-$a->strings["Delete this profile"] = "Slett denne profilen";
-$a->strings["Import profile from file"] = "Importer profil fra fil";
-$a->strings["Export profile to file"] = "Eksporter profil til fil";
-$a->strings["Profile Name:"] = "Profilnavn:";
-$a->strings["Your Full Name:"] = "Ditt fulle navn:";
-$a->strings["Title/Description:"] = "Tittel/Beskrivelse:";
-$a->strings["Your Gender:"] = "Ditt kjĆønn:";
-$a->strings["Birthday :"] = "FĆødselsdag:";
-$a->strings["Street Address:"] = "Gateadresse:";
-$a->strings["Locality/City:"] = "Sted/By:";
-$a->strings["Postal/Zip Code:"] = "Postnummer/ZIP-kode:";
-$a->strings["Country:"] = "Land:";
-$a->strings["Region/State:"] = "Region/fylke:";
-$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Sivilstand:";
-$a->strings["Who: (if applicable)"] = "Hvem: (hvis det er aktuelt) ";
-$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Eksempler: kari123, Kari Villiamsen, kari@example.com";
-$a->strings["Since [date]:"] = "Siden [dato]:";
-$a->strings["Homepage URL:"] = "Hjemmeside URL:";
-$a->strings["Religious Views:"] = "ReligiĆøse synspunkter:";
-$a->strings["Keywords:"] = "NĆøkkelord:";
-$a->strings["Example: fishing photography software"] = "Eksempel: fisking fotografering programvare";
-$a->strings["Used in directory listings"] = "Brukt i katalogoppfĆøringer";
-$a->strings["Tell us about yourself..."] = "Fortell oss om deg selv...";
-$a->strings["Hobbies/Interests"] = "Hobbier/Interesser";
-$a->strings["Contact information and Social Networks"] = "Kontaktinformasjon og sosiale nettverk";
-$a->strings["My other channels"] = "Mine andre kanaler";
-$a->strings["Musical interests"] = "Musikkinteresser";
-$a->strings["Books, literature"] = "BĆøker, litteratur";
-$a->strings["Television"] = "TV/fjernsyn";
-$a->strings["Film/dance/culture/entertainment"] = "Film/dans/kultur/underholdning";
-$a->strings["Love/romance"] = "KjƦrlighet/romantikk";
-$a->strings["Work/employment"] = "Arbeid/sysselsetting";
-$a->strings["School/education"] = "Skole/utdanning";
-$a->strings["This is your default profile."] = "Dette er din standardprofil.";
-$a->strings["Age: "] = "Alder:";
-$a->strings["Edit/Manage Profiles"] = "Endre/hƄndter profiler";
-$a->strings["Add profile things"] = "Legg til profilting";
-$a->strings["Include desirable objects in your profile"] = "Inkluder Ćønskverdige objekter i din profil";
+$a->strings["Blocked"] = "Blokkert";
+$a->strings["Ignored"] = "Ignorert";
+$a->strings["Hidden"] = "Skjult";
+$a->strings["Archived"] = "Arkivert";
+$a->strings["New Connections"] = "Nye forbindelser";
+$a->strings["Show pending (new) connections"] = "Vis ventende (nye) forbindelser";
+$a->strings["All Connections"] = "Alle forbindelser";
+$a->strings["Show all connections"] = "Vis alle forbindelser";
+$a->strings["Only show blocked connections"] = "Vis bare forbindelser som er blokkert";
+$a->strings["Only show ignored connections"] = "Vis bare ignorerte forbindelser";
+$a->strings["Only show archived connections"] = "Vis bare arkiverte forbindelser";
+$a->strings["Only show hidden connections"] = "Vis bare skjulte forbindelser";
+$a->strings["Pending approval"] = "Venter pƄ godkjenning";
+$a->strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]";
+$a->strings["Edit connection"] = "Endre forbindelse";
+$a->strings["Delete connection"] = "Slett forbindelse";
+$a->strings["Channel address"] = "Kanaladresse";
+$a->strings["Network"] = "Nettverk";
+$a->strings["Status"] = "Status";
+$a->strings["Connected"] = "Forbundet";
+$a->strings["Approve connection"] = "Godkjenn forbindelse";
+$a->strings["Approve"] = "Godkjenn";
+$a->strings["Ignore connection"] = "Ignorer forbindelse";
+$a->strings["Ignore"] = "Ignorer";
+$a->strings["Recent activity"] = "Nylig aktivitet";
+$a->strings["Search your connections"] = "SĆøk blant dine forbindelser";
+$a->strings["Connections search"] = "SĆøk blant forbindelser";
$a->strings["Could not access contact record."] = "Fikk ikke tilgang til kontaktinformasjonen.";
$a->strings["Could not locate selected profile."] = "Fant ikke valgt profil.";
$a->strings["Connection updated."] = "Forbindelsen er oppdatert.";
@@ -1306,7 +1126,6 @@ $a->strings["Block"] = "Blokker";
$a->strings["Block (or Unblock) all communications with this connection"] = "Blokker eller fjern blokkering av all kommunikasjon med denne forbindelsen";
$a->strings["This connection is blocked!"] = "Denne forbindelsen er blokkert!";
$a->strings["Unignore"] = "Ikke ignorer lenger";
-$a->strings["Ignore"] = "Ignorer";
$a->strings["Ignore (or Unignore) all inbound communications from this connection"] = "Ignorer eller fjern ignorering av all inngƄende kommunikasjon fra denne forbindelsen";
$a->strings["This connection is ignored!"] = "Denne forbindelsen er ignorert!";
$a->strings["Unarchive"] = "Ikke arkiver lenger";
@@ -1325,6 +1144,7 @@ $a->strings["Set Profile"] = "Angi profil";
$a->strings["Set Affinity & Profile"] = "Angi nƦrhet og profil";
$a->strings["none"] = "ingen";
$a->strings["Apply these permissions automatically"] = "Bruk disse tillatelsene automatisk";
+$a->strings["Connection requests will be approved without your interaction"] = "ForespĆørsler om forbindelse vil bli godkjent automatisk";
$a->strings["This connection's primary address is"] = "Denne forbindelsens primƦre adresse er";
$a->strings["Available locations:"] = "Tilgjengelige plasseringer:";
$a->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.";
@@ -1337,10 +1157,6 @@ $a->strings["words one per line or #tags or /patterns/ or lang=xx, leave blank t
$a->strings["Do not import posts with this text"] = "Ikke importer innlegg med denne teksten";
$a->strings["This information is public!"] = "Denne informasjonen er offentlig!";
$a->strings["Connection Pending Approval"] = "Forbindelse venter pƄ godkjenning";
-$a->strings["Connection Request"] = "ForespĆørsel om forbindelse";
-$a->strings["(%s) would like to connect with you. Please approve this connection to allow communication."] = "(%s) Ćønsker forbindelse med deg. Vennligst godkjenn denne forbindelsen for Ć„ tillate kommunikasjon.";
-$a->strings["Approve"] = "Godkjenn";
-$a->strings["Approve Later"] = "Godkjenn senere";
$a->strings["inherited"] = "arvet";
$a->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. ";
$a->strings["Their Settings"] = "Deres innstillinger";
@@ -1349,70 +1165,8 @@ $a->strings["Individual Permissions"] = "Individuelle tillatelser";
$a->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.";
$a->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.";
$a->strings["Last update:"] = "Siste oppdatering:";
-$a->strings["network"] = "nettverk";
-$a->strings["RSS"] = "RSS";
$a->strings["\$Projectname channel"] = "\$Projectname-kanal";
-$a->strings["Invalid message"] = "Ugyldig melding";
-$a->strings["no results"] = "ingen resultater";
-$a->strings["Delivery report for %1\$s"] = "Leveringsrapport for %1\$s";
-$a->strings["channel sync processed"] = "Kanalsynkronisering er behandlet";
-$a->strings["queued"] = "lagt i kĆø";
-$a->strings["posted"] = "lagt inn";
-$a->strings["accepted for delivery"] = "akseptert for levering";
-$a->strings["updated"] = "oppdatert";
-$a->strings["update ignored"] = "oppdatering ignorert";
-$a->strings["permission denied"] = "tillatelse avvist";
-$a->strings["recipient not found"] = "mottaker ble ikke funnet";
-$a->strings["mail recalled"] = "melding tilbakekalt";
-$a->strings["duplicate mail received"] = "duplikat av melding mottatt";
-$a->strings["mail delivered"] = "melding mottatt";
-$a->strings["Item not found"] = "Elementet ble ikke funnet.";
-$a->strings["Delete webpage?"] = "Slett webside?";
-$a->strings["Page link title"] = "Sidens lenketittel";
-$a->strings["Insert YouTube video"] = "Sett inn YouTube-video";
-$a->strings["Insert Vorbis [.ogg] video"] = "Sett inn Vorbis [.ogg] video";
-$a->strings["Insert Vorbis [.ogg] audio"] = "Legg i";
-$a->strings["Edit Webpage"] = "Endre webside";
-$a->strings["Unable to find your hub."] = "Ikke i stand til Ć„ finne hubben din.";
-$a->strings["Post successful."] = "Innlegg vellykket.";
-$a->strings["sent you a private message"] = "sendte deg en privat melding";
-$a->strings["added your channel"] = "la til din kanal";
-$a->strings["posted an event"] = "la ut en hendelse";
-$a->strings["Authorize application connection"] = "Tillat programforbindelse";
-$a->strings["Return to your app and insert this Securty Code:"] = "GĆ„ tilbake til din app og legg inn denne sikkerhetskoden:";
-$a->strings["Please login to continue."] = "Vennligst logg inn for Ć„ fortsette.";
-$a->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?";
-$a->strings["No more system notifications."] = "Ingen flere systemvarsler.";
-$a->strings["System Notifications"] = "Systemvarsler";
-$a->strings["Select a bookmark folder"] = "Velg en bokmerkemappe";
-$a->strings["Save Bookmark"] = "Lagre bokmerke";
-$a->strings["URL of bookmark"] = "URL-en til bokmerket";
-$a->strings["Description"] = "Beskrivelse";
-$a->strings["Or enter new bookmark folder name"] = "Eller skriv nytt navn pƄ bokmerkemappe";
-$a->strings["Contact not found."] = "Kontakten ble ikke funnet.";
-$a->strings["Friend suggestion sent."] = "VenneforespĆørsel sendt.";
-$a->strings["Suggest Friends"] = "ForeslƄ venner";
-$a->strings["Suggest a friend for %s"] = "ForeslƄ en venn for %s";
-$a->strings["Failed to create source. No channel selected."] = "Mislyktes med Ć„ lage kilde. Ingen kanal er valgt.";
-$a->strings["Source created."] = "Kilden er laget.";
-$a->strings["Source updated."] = "Kilden er oppdatert.";
-$a->strings["*"] = "*";
-$a->strings["Manage remote sources of content for your channel."] = "HĆ„ndtere eksterne innholdskilder til din kanal.";
-$a->strings["New Source"] = "Ny kilde";
-$a->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.";
-$a->strings["Only import content with these words (one per line)"] = "Bare importer innhold med disse ordene (ett ord per linje)";
-$a->strings["Leave blank to import all public content"] = "La stƄ tomt for Ƅ importere alt offentlig innhold";
-$a->strings["Source not found."] = "Kilden ble ikke funnet.";
-$a->strings["Edit Source"] = "Endre kilde";
-$a->strings["Delete Source"] = "Slett kilde";
-$a->strings["Source removed"] = "Kilden er fjernet";
-$a->strings["Unable to remove source."] = "Ikke i stand til Ć„ fjerne kilde.";
-$a->strings["Invalid request identifier."] = "Ugyldig forespĆørselsidentifikator.";
-$a->strings["Discard"] = "Forkast";
-$a->strings["Tag removed"] = "Merkelapp fjernet";
-$a->strings["Remove Item Tag"] = "Fjern merkelapp fra element";
-$a->strings["Select a tag to remove: "] = "Velg merkelapp Ć„ fjerne:";
-$a->strings["Remove"] = "Fjern";
+$a->strings["Public access denied."] = "Offentlig tilgang avvist.";
$a->strings["%d rating"] = array(
0 => "%d vurdering",
1 => "%d vurderinger",
@@ -1436,32 +1190,132 @@ $a->strings["Reverse Alphabetic"] = "Omvendt alfabetisk";
$a->strings["Newest to Oldest"] = "Nyest til eldst";
$a->strings["Oldest to Newest"] = "Eldst til nyest";
$a->strings["No entries (some entries may be hidden)."] = "Ingen oppfĆøringer (noen oppfĆøringer kan vƦre skjult).";
-$a->strings["No valid account found."] = "Ingen gyldig konto funnet.";
-$a->strings["Password reset request issued. Check your email."] = "ForespĆørsel om Ć„ tilbakestille passord er mottatt. Sjekk e-posten din.";
-$a->strings["Site Member (%s)"] = "Nettstedsmedlem (%s)";
-$a->strings["Password reset requested at %s"] = "Forespurt om Ć„ tilbakestille passord hos %s";
-$a->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.";
-$a->strings["Password Reset"] = "Tilbakestill passord";
-$a->strings["Your password has been reset as requested."] = "Ditt passord har blitt tilbakestilt som forespurt.";
-$a->strings["Your new password is"] = "Ditt nye passord er";
-$a->strings["Save or copy your new password - and then"] = "Lagre eller kopier ditt nye passord, og deretter kan du";
-$a->strings["click here to login"] = "klikke her for Ć„ logge inn";
-$a->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.";
-$a->strings["Your password has changed at %s"] = "Ditt passord er endret hos %s";
-$a->strings["Forgot your Password?"] = "Glemt passord ditt?";
-$a->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.";
-$a->strings["Email Address"] = "E-postadresse";
-$a->strings["Reset"] = "Tilbakestill";
$a->strings["This site is not a directory server"] = "Dette nettstedet er ikke en katalogtjener";
+$a->strings["This directory server requires an access token"] = "Denne katalogtjeneren krever en tilgangsnĆøkkel (access token)";
+$a->strings["Invalid message"] = "Ugyldig melding";
+$a->strings["no results"] = "ingen resultater";
+$a->strings["Delivery report for %1\$s"] = "Leveringsrapport for %1\$s";
+$a->strings["channel sync processed"] = "Kanalsynkronisering er behandlet";
+$a->strings["queued"] = "lagt i kĆø";
+$a->strings["posted"] = "lagt inn";
+$a->strings["accepted for delivery"] = "akseptert for levering";
+$a->strings["updated"] = "oppdatert";
+$a->strings["update ignored"] = "oppdatering ignorert";
+$a->strings["permission denied"] = "tillatelse avvist";
+$a->strings["recipient not found"] = "mottaker ble ikke funnet";
+$a->strings["mail recalled"] = "melding tilbakekalt";
+$a->strings["duplicate mail received"] = "duplikat av melding mottatt";
+$a->strings["mail delivered"] = "melding mottatt";
+$a->strings["Item not found"] = "Elementet ble ikke funnet.";
+$a->strings["Delete block?"] = "Slett byggeklossen?";
+$a->strings["Insert YouTube video"] = "Sett inn YouTube-video";
+$a->strings["Insert Vorbis [.ogg] video"] = "Sett inn Vorbis [.ogg] video";
+$a->strings["Insert Vorbis [.ogg] audio"] = "Legg i";
+$a->strings["Edit Block"] = "Endre byggekloss";
+$a->strings["Delete layout?"] = "Slett layout?";
+$a->strings["Layout Description (Optional)"] = "Layoutens beskrivelse (valgfritt)";
+$a->strings["Layout Name"] = "Layout-navn";
+$a->strings["Edit Layout"] = "Endre layout";
+$a->strings["Item is not editable"] = "Elementet kan ikke endres";
+$a->strings["Delete item?"] = "Slett element?";
+$a->strings["Edit post"] = "Endre innlegg";
+$a->strings["Delete webpage?"] = "Slett webside?";
+$a->strings["Page link title"] = "Sidens lenketittel";
+$a->strings["Edit Webpage"] = "Endre webside";
+$a->strings["Calendar entries imported."] = "Kalenderhendelsene er importert.";
+$a->strings["No calendar entries found."] = "Ingen kalenderhendelser funnet.";
+$a->strings["Event can not end before it has started."] = "Hendelsen kan ikke slutte fĆør den starter.";
+$a->strings["Unable to generate preview."] = "Klarer ikke Ƅ lage forhƄndsvisning.";
+$a->strings["Event title and start time are required."] = "Hendelsestittel og starttidspunkt er pƄkrevd.";
+$a->strings["Event not found."] = "Hendelsen ble ikke funnet.";
+$a->strings["Edit event title"] = "Endre tittel pƄ hendelse";
+$a->strings["Event title"] = "Tittel pƄ hendelse";
+$a->strings["Categories (comma-separated list)"] = "Kategorier (kommaseparert liste)";
+$a->strings["Edit Category"] = "Endre kategori";
+$a->strings["Category"] = "Kategori";
+$a->strings["Edit start date and time"] = "Endre startdato og tidspunkt";
+$a->strings["Start date and time"] = "Startdato og tidspunkt";
+$a->strings["Finish date and time are not known or not relevant"] = "Sluttdato og tidspunkt er ikke kjent eller ikke relevant";
+$a->strings["Edit finish date and time"] = "Endre sluttdato og tidspunkt";
+$a->strings["Finish date and time"] = "Sluttdato og tidspunkt";
+$a->strings["Adjust for viewer timezone"] = "Juster i forhold til tilskuerens tidssone";
+$a->strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Viktig for hendelser som skjer pƄ et bestemt sted. Ikke praktisk for globale ferier eller fridager.";
+$a->strings["Edit Description"] = "Endre beskrivelse";
+$a->strings["Edit Location"] = "Endre plassering";
+$a->strings["Share this event"] = "Del denne hendelsen";
+$a->strings["Advanced Options"] = "Avanserte alternativer";
+$a->strings["l, F j"] = "l, F j";
+$a->strings["Edit event"] = "Endre hendelse";
+$a->strings["Delete event"] = "Slett hendelse";
+$a->strings["calendar"] = "kalender";
+$a->strings["Edit Event"] = "Endre hendelse";
+$a->strings["Create Event"] = "Lag hendelse";
+$a->strings["Previous"] = "Forrige";
+$a->strings["Next"] = "Neste";
+$a->strings["Today"] = "Idag";
+$a->strings["Event removed"] = "Hendelse slettet";
+$a->strings["Failed to remove event"] = "Mislyktes med Ć„ slette hendelse";
+$a->strings["Share content from Firefox to \$Projectname"] = "Del innhold fra Firefox til \$Projectname";
+$a->strings["Activate the Firefox \$Projectname provider"] = "Skru pƄ Firefox \$Projectname tilbyderen";
+$a->strings["- select -"] = "- velg -";
+$a->strings["Permission Denied."] = "Tillatelse avvist.";
+$a->strings["File not found."] = "Filen ble ikke funnet.";
+$a->strings["Edit file permissions"] = "Endre filtillatelser";
+$a->strings["Set/edit permissions"] = "Angi/endre tillatelser";
+$a->strings["Include all files and sub folders"] = "Inkluder alle filer og undermapper";
+$a->strings["Return to file list"] = "GĆ„ tilbake til filoversikten";
+$a->strings["Copy/paste this code to attach file to a post"] = "Kopier og lim inn denne koden for Ć„ legge til filen i et innlegg";
+$a->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";
+$a->strings["Share this file"] = "Del denne filen";
+$a->strings["Show URL to this file"] = "Vis URLen til denne filen";
+$a->strings["Notify your contacts about this file"] = "Varsle dine kontakter om denne filen";
+$a->strings["Channel added."] = "Kanal lagt til.";
+$a->strings["Contact not found."] = "Kontakten ble ikke funnet.";
+$a->strings["Friend suggestion sent."] = "VenneforespĆørsel sendt.";
+$a->strings["Suggest Friends"] = "ForeslƄ venner";
+$a->strings["Suggest a friend for %s"] = "ForeslƄ en venn for %s";
+$a->strings["Privacy group created."] = "Personverngruppen er opprettet.";
+$a->strings["Could not create privacy group."] = "Kunne ikke opprette personverngruppen.";
+$a->strings["Privacy group updated."] = "Personverngruppen er oppdatert.";
+$a->strings["Create a group of channels."] = "Lag en gruppe av kanaler.";
+$a->strings["Privacy group name: "] = "Personverngruppens navn:";
+$a->strings["Members are visible to other channels"] = "Medlemmer er synlig for andre kanaler";
+$a->strings["Privacy group removed."] = "Personverngruppen er fjernet.";
+$a->strings["Unable to remove privacy group."] = "Ikke i stand til Ć„ fjerne personverngruppen.";
+$a->strings["Privacy group editor"] = "Personverngruppebehandler";
+$a->strings["Members"] = "Medlemmer";
+$a->strings["All Connected Channels"] = "Alle tilkoblede kanaler";
+$a->strings["Click on a channel to add or remove."] = "Klikk pƄ en kanal for Ƅ legge til eller fjerne.";
+$a->strings["Documentation Search"] = "SĆøk i dokumentasjon";
+$a->strings["Help:"] = "Hjelp:";
+$a->strings["\$Projectname Documentation"] = "\$Projectname dokumentasjon";
+$a->strings["\$Projectname"] = "\$Projectname";
+$a->strings["Welcome to %s"] = "Velkommen til %s";
+$a->strings["First Name"] = "Fornavn";
+$a->strings["Last Name"] = "Etternavn";
+$a->strings["Nickname"] = "Kallenavn";
+$a->strings["Full Name"] = "Fullt navn";
+$a->strings["Profile Photo 16px"] = "Profilbilde 16px";
+$a->strings["Profile Photo 32px"] = "Profilbilde 32px";
+$a->strings["Profile Photo 48px"] = "Profilbilde 48px";
+$a->strings["Profile Photo 64px"] = "Profilbilde 64px";
+$a->strings["Profile Photo 80px"] = "Profilbilde 80px";
+$a->strings["Profile Photo 128px"] = "Profilbilde 128px";
+$a->strings["Timezone"] = "Tidssone";
+$a->strings["Homepage URL"] = "Hjemmeside URL";
+$a->strings["Birth Year"] = "FĆødselsĆ„r";
+$a->strings["Birth Month"] = "FĆødselsmĆ„ne";
+$a->strings["Birth Day"] = "FĆødselsdag";
+$a->strings["Birthdate"] = "FĆødselsdato";
+$a->strings["Gender"] = "KjĆønn";
$a->strings["%s element installed"] = "%s element installert";
$a->strings["%s element installation failed"] = "Installasjon av %s-element mislyktes";
-$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s fĆølger %2\$s sin %3\$s";
-$a->strings["%1\$s stopped following %2\$s's %3\$s"] = "%1\$s stopped Ć„ fĆølge %2\$s sin %3\$s";
$a->strings["Your service plan only allows %d channels."] = "Din tjenesteplan tillater bare %d kanaler.";
$a->strings["Nothing to import."] = "Ingenting Ć„ importere.";
$a->strings["Unable to download data from old server"] = "Ikke i stand til Ć„ laste ned data fra gammel tjener";
$a->strings["Imported file is empty."] = "Importert fil er tom.";
$a->strings["Warning: Database versions differ by %1\$d updates."] = "Advarsel: databaseversjoner avviker med %1\$d oppdateringer.";
+$a->strings["Server platform is not compatible. Operation not permitted."] = "Tjenerplattformen er ikke kompatibel. Handlingen er ikke tillatt.";
$a->strings["No channel. Import failed."] = "Ingen kanal. Import mislyktes.";
$a->strings["You must be logged in to use this feature."] = "Du mƄ vƦre innlogget for Ƅ bruke denne funksjonen.";
$a->strings["Import Channel"] = "Importer kanal";
@@ -1475,6 +1329,9 @@ $a->strings["For either option, please choose whether to make this hub your new
$a->strings["Make this hub my primary location"] = "GjĆør dette nettstedet til min primƦre plassering";
$a->strings["Import existing posts if possible (experimental - limited by available memory"] = "Importer eksisterende innlegg om mulig (eksperimentelt - begrenset av tilgjengelig minne)";
$a->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.";
+$a->strings["Import completed"] = "Import ferdig";
+$a->strings["Import Items"] = "Importer elementer";
+$a->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.";
$a->strings["Total invitation limit exceeded."] = "Grensen for totalt antall invitasjoner er overskredet.";
$a->strings["%s : Not a valid email address."] = "%s : ikke en gyldig e-postadresse.";
$a->strings["Please join us on \$Projectname"] = "Bli med oss pƄ \$Projectname";
@@ -1489,89 +1346,213 @@ $a->strings["Send invitations"] = "Send invitasjoner";
$a->strings["Enter email addresses, one per line:"] = "Skriv e-postadresser, en per linje:";
$a->strings["Your message:"] = "Din melding:";
$a->strings["Please join my community on \$Projectname."] = "Du er velkommen til Ƅ bli med i mitt fellesskap pƄ \$Projectname.";
-$a->strings["You will need to supply this invitation code: "] = "Du mƄ oppgi denne invitasjonskoden:";
+$a->strings["You will need to supply this invitation code:"] = "Du mƄ oppgi denne invitasjonskoden:";
$a->strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registrer ved enhver \$Projectname-lokasjon (de er alle forbundet med hverandre)";
$a->strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Skriv inn min \$Projectname-adresse i nettstedets sĆøkefelt.";
-$a->strings["or visit "] = "eller besĆøk";
+$a->strings["or visit"] = "eller besĆøke";
$a->strings["3. Click [Connect]"] = "3. Klikk [Forbindelse]";
-$a->strings["Fetching URL returns error: %1\$s"] = "Henting av URL gir fĆølgende feil: %1\$s";
-$a->strings["Image uploaded but image cropping failed."] = "Bildet ble lastet opp, men beskjƦring av bildet mislyktes.";
-$a->strings["Image resize failed."] = "Endring av bildestĆørrelse mislyktes.";
-$a->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.";
-$a->strings["Image upload failed."] = "Opplasting av bildet mislyktes.";
-$a->strings["Unable to process image."] = "Kan ikke behandle bildet.";
-$a->strings["female"] = "kvinne";
-$a->strings["%1\$s updated her %2\$s"] = "%1\$s oppdaterte %2\$s sitt";
-$a->strings["male"] = "mann";
-$a->strings["%1\$s updated his %2\$s"] = "%1\$s oppdaterte %2\$s sitt";
-$a->strings["%1\$s updated their %2\$s"] = "%1\$s oppdaterte %2\$s deres";
-$a->strings["profile photo"] = "profilbilde";
-$a->strings["Photo not available."] = "Bildet er ikke tilgjengelig.";
-$a->strings["Upload File:"] = "Last opp fil:";
-$a->strings["Select a profile:"] = "Velg en profil:";
-$a->strings["Upload Profile Photo"] = "Last opp profilbilde:";
-$a->strings["or"] = "eller";
-$a->strings["skip this step"] = "hopp over dette steget";
-$a->strings["select a photo from your photo albums"] = "velg et bilde fra dine fotoalbum";
-$a->strings["Crop Image"] = "BeskjƦr bildet";
-$a->strings["Please adjust the image cropping for optimum viewing."] = "Vennligst juster bildebeskjƦringen for optimal visning.";
-$a->strings["Done Editing"] = "Avslutt redigering";
-$a->strings["Thing updated"] = "Tingen er oppdatert";
-$a->strings["Object store: failed"] = "Objektlagring: mislyktes";
-$a->strings["Thing added"] = "Ting lagt til";
-$a->strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s";
-$a->strings["Show Thing"] = "Vis ting";
-$a->strings["item not found."] = "element ble ikke funnet.";
-$a->strings["Edit Thing"] = "Endre ting";
-$a->strings["Select a profile"] = "Velg en profil";
-$a->strings["Post an activity"] = "Legg inn en aktivitet";
-$a->strings["Only sends to viewers of the applicable profile"] = "Sender bare til seere av den aktuelle profilen";
-$a->strings["Name of thing e.g. something"] = "Navn pƄ ting for eksempel noe";
-$a->strings["URL of thing (optional)"] = "URL til ting (valgfritt)";
-$a->strings["URL for photo of thing (optional)"] = "URL til bilde av ting (valgfritt)";
-$a->strings["Add Thing to your Profile"] = "Legg til ting i din profil";
-$a->strings["This directory server requires an access token"] = "Denne katalogtjeneren krever en tilgangsnĆøkkel (access token)";
-$a->strings["Delete block?"] = "Slett byggeklossen?";
-$a->strings["Edit Block"] = "Endre byggekloss";
-$a->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.";
-$a->strings["Remove This Account"] = "Slett denne kontoen";
-$a->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.";
-$a->strings["Remove this account, all its channels and all its channel clones from the network"] = "Slett denne kontoen, alle dens kanaler og alle dens kanalkloner fra dette nettverket";
-$a->strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Som standard vil bare forekomster av kanalene lokalisert pƄ denne hubben bli slettet fra nettverket";
-$a->strings["Remove Account"] = "Slett konto";
-$a->strings["Import completed"] = "Import ferdig";
-$a->strings["Import Items"] = "Importer elementer";
-$a->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.";
+$a->strings["Unable to locate original post."] = "Ikke i stand til Ć„ finne opprinnelig innlegg.";
+$a->strings["Empty post discarded."] = "Tomt innlegg forkastet.";
+$a->strings["Executable content type not permitted to this channel."] = "KjĆørbar innholdstype er ikke tillat for denne kanalen.";
+$a->strings["Duplicate post suppressed."] = "Duplikat av innlegg forhindret.";
+$a->strings["System error. Post not saved."] = "Systemfeil. Innlegg ble ikke lagret.";
+$a->strings["Unable to obtain post information from database."] = "Ikke i stand til Ƅ fƄ tak i informasjon om innlegg fra databasen.";
+$a->strings["You have reached your limit of %1$.0f top level posts."] = "Du har nƄdd din grense pƄ %1$.0f startinnlegg.";
+$a->strings["You have reached your limit of %1$.0f webpages."] = "Du har nƄdd din grense pƄ %1$.0f websider.";
+$a->strings["Comanche page description language help"] = "Hjelp med Comanche sidebeskrivelsessprƄk";
+$a->strings["Layout Description"] = "Layout-beskrivelse";
+$a->strings["Download PDL file"] = "Last ned PDL-fil";
+$a->strings["Like/Dislike"] = "Liker/Liker ikke";
+$a->strings["This action is restricted to members."] = "Denne handlingen er begrenset til medlemmer.";
+$a->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";
+$a->strings["Invalid request."] = "Ugyldig forespĆørsel.";
+$a->strings["thing"] = "ting";
+$a->strings["Channel unavailable."] = "Kanalen er utilgjengelig.";
+$a->strings["Previous action reversed."] = "Forrige handling er omgjort.";
+$a->strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s er enig med %2\$s sin %3\$s";
+$a->strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s er ikke enig med %2\$s sin %3\$s";
+$a->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";
+$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s deltar pƄ %2\$ss %3\$s";
+$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s deltar ikke pƄ %2\$ss %3\$s";
+$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s deltar kanskje pƄ %2\$ss %3\$s";
+$a->strings["Action completed."] = "Handling ferdig.";
+$a->strings["Thank you."] = "Tusen takk.";
+$a->strings["Remote privacy information not available."] = "Ekstern personverninformasjon er ikke tilgjengelig.";
+$a->strings["Visible to:"] = "Synlig for:";
+$a->strings["Location not found."] = "Plassering er ikke funnet.";
+$a->strings["Location lookup failed."] = "Oppslag pƄ plassering mislyktes.";
+$a->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.";
+$a->strings["Syncing locations"] = "Synkroniserer plasseringer";
+$a->strings["No locations found."] = "Ingen plasseringer ble funnet.";
+$a->strings["Manage Channel Locations"] = "HĆ„ndter kanalplasseringer";
+$a->strings["Location (address)"] = "Plassering (adresse)";
+$a->strings["Primary Location"] = "Hovedplassering";
+$a->strings["Drop location"] = "Slett plassering";
+$a->strings["Sync now"] = "Synkroniser nƄ";
+$a->strings["Please wait several minutes between consecutive operations."] = "Vennligst vent flere minutter mellom hver etterfĆølgende operasjon.";
+$a->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.";
+$a->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.";
+$a->strings["sent you a private message"] = "sendte deg en privat melding";
+$a->strings["added your channel"] = "la til din kanal";
+$a->strings["posted an event"] = "la ut en hendelse";
+$a->strings["Hub not found."] = "Hubben ble ikke funnet.";
+$a->strings["Unable to lookup recipient."] = "Ikke i stand til Ƅ slƄ opp mottaker.";
+$a->strings["Unable to communicate with requested channel."] = "Ikke i stand til Ć„ kommunisere med forespurt kanal.";
+$a->strings["Cannot verify requested channel."] = "Kan ikke bekrefte forespurt kanal.";
+$a->strings["Selected channel has private message restrictions. Send failed."] = "Valgt kanal har restriksjoner for private meldinger. Sending feilet.";
+$a->strings["Messages"] = "Meldinger";
+$a->strings["Message recalled."] = "Innlegg tilbakekalt.";
+$a->strings["Conversation removed."] = "Samtale fjernet.";
+$a->strings["Requested channel is not in this network"] = "Forespurt kanal er ikke tilgjengelig i dette nettverket.";
+$a->strings["Send Private Message"] = "Send privat melding";
+$a->strings["To:"] = "Til:";
+$a->strings["Subject:"] = "Emne:";
+$a->strings["Send"] = "Send";
+$a->strings["Delete message"] = "Slett melding";
+$a->strings["Delivery report"] = "Leveringsrapport";
+$a->strings["Recall message"] = "Tilbakekall innlegg";
+$a->strings["Message has been recalled."] = "Innlegget har blitt tilbakekalt.";
+$a->strings["Delete Conversation"] = "Slett samtale";
+$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Ingen sikret kommunikasjon tilgjengelig. Du kan <strong>muligens</strong> greie Ć„ svare via senderens profilside.";
+$a->strings["Send Reply"] = "Send svar";
+$a->strings["Your message for %s (%s):"] = "Din melding til %s (%s):";
+$a->strings["You have created %1$.0f of %2$.0f allowed channels."] = "Du har laget %1$.0f av %2$.0f tillatte kanaler.";
+$a->strings["Create a new channel"] = "Lag en ny kanal";
+$a->strings["Current Channel"] = "Gjeldende kanal";
+$a->strings["Switch to one of your channels by selecting it."] = "Bytt til en av dine kanaler ved Ć„ velge den.";
+$a->strings["Default Channel"] = "Standardkanal";
+$a->strings["Make Default"] = "GjĆør til standard";
+$a->strings["%d new messages"] = "%d nye meldinger";
+$a->strings["%d new introductions"] = "%d nye introduksjoner";
+$a->strings["Delegated Channels"] = "Delegerte kanaler";
+$a->strings["Profile Match"] = "Profiltreff";
+$a->strings["No keywords to match. Please add keywords to your default profile."] = "Ingen nĆøkkelord Ć„ sammenlikne. Vennligst legg til nĆøkkelord til din standardprofil.";
+$a->strings["is interested in:"] = "er interessert i:";
+$a->strings["No matches"] = "Ingen treff";
+$a->strings["Unable to update menu."] = "Ikke i stand til Ć„ oppdatere meny.";
+$a->strings["Unable to create menu."] = "Ikke i stand til Ć„ lage meny.";
+$a->strings["Menu Name"] = "Menynavn";
+$a->strings["Unique name (not visible on webpage) - required"] = "Unikt navn (ikke synlig pƄ websiden) - pƄkrevet";
+$a->strings["Menu Title"] = "Menytittel";
+$a->strings["Visible on webpage - leave empty for no title"] = "Synlig pƄ websiden - la stƄ tomt for ingen tittel";
+$a->strings["Allow Bookmarks"] = "Tillat bokmerker";
+$a->strings["Menu may be used to store saved bookmarks"] = "Menyen kan brukes til Ć„ lagre lagrede bokmerker";
+$a->strings["Submit and proceed"] = "Send inn og fortsett";
+$a->strings["Drop"] = "Slett";
+$a->strings["Bookmarks allowed"] = "Bokmerker tillatt";
+$a->strings["Delete this menu"] = "Slett denne menyen";
+$a->strings["Edit menu contents"] = "Endre menyinnholdet";
+$a->strings["Edit this menu"] = "Endre denne menyen";
+$a->strings["Menu could not be deleted."] = "Menyen kunne ikke bli slettet.";
+$a->strings["Menu not found."] = "Menyen ble ikke funnet.";
+$a->strings["Edit Menu"] = "Endre meny";
+$a->strings["Add or remove entries to this menu"] = "Legg til eller fjern punkter i denne menyen";
+$a->strings["Menu name"] = "Menynavn";
+$a->strings["Must be unique, only seen by you"] = "MƄ vƦre unik, ses bare av deg";
+$a->strings["Menu title"] = "Menytittel";
+$a->strings["Menu title as seen by others"] = "Menytittelen andre ser";
+$a->strings["Allow bookmarks"] = "Tillat bokmerker";
+$a->strings["Not found."] = "Ikke funnet.";
+$a->strings["Unable to create element."] = "Klarer ikke Ć„ lage element.";
+$a->strings["Unable to update menu element."] = "Ikke i stand til Ć„ oppdatere menyelement.";
+$a->strings["Unable to add menu element."] = "Ikke i stand til Ć„ legge til menyelement.";
+$a->strings["Menu Item Permissions"] = "Menyelement Tillatelser";
+$a->strings["(click to open/close)"] = "(klikk for Ć„ Ć„pne/lukke)";
+$a->strings["Link Name"] = "Lenkenavn";
+$a->strings["Link or Submenu Target"] = "Lenke- eller undermeny-mƄl";
+$a->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";
+$a->strings["Use magic-auth if available"] = "Bruk magic-autent hvis mulig";
+$a->strings["Open link in new window"] = "ƅpne lenke i nytt vindu";
+$a->strings["Order in list"] = "Ordne i liste";
+$a->strings["Higher numbers will sink to bottom of listing"] = "HĆøyere tall vil synke mot bunnen av listen";
+$a->strings["Submit and finish"] = "Send inn og avslutt";
+$a->strings["Submit and continue"] = "Send inn og fortsett";
+$a->strings["Menu:"] = "Meny:";
+$a->strings["Link Target"] = "LenkemƄl";
+$a->strings["Edit menu"] = "Endre meny";
+$a->strings["Edit element"] = "Endre element";
+$a->strings["Drop element"] = "Slett element";
+$a->strings["New element"] = "Nytt element";
+$a->strings["Edit this menu container"] = "Endre denne menybeholderen";
+$a->strings["Add menu element"] = "Legg til menyelement";
+$a->strings["Delete this menu item"] = "Slett dette menyelementet";
+$a->strings["Edit this menu item"] = "Endre dette menyelementet";
+$a->strings["Menu item not found."] = "Menyelement ble ikke funnet.";
+$a->strings["Menu item deleted."] = "Menyelement slettet.";
+$a->strings["Menu item could not be deleted."] = "Menyelement kunne ikke bli slettet.";
+$a->strings["Edit Menu Element"] = "Endre menyelement";
+$a->strings["Link text"] = "Lenketekst";
+$a->strings["Set your current mood and tell your friends"] = "Angi ditt nĆ„vƦrende humĆør og fortell dine venner";
$a->strings["No such group"] = "Gruppen finnes ikke";
$a->strings["No such channel"] = "Ingen slik kanal";
$a->strings["forum"] = "forum";
$a->strings["Search Results For:"] = "SĆøkeresultat for:";
-$a->strings["Collection is empty"] = "Samlingen er tom";
-$a->strings["Collection: "] = "Samling:";
+$a->strings["Privacy group is empty"] = "Personverngruppen er tom";
+$a->strings["Privacy group: "] = "Personverngruppe:";
$a->strings["Invalid connection."] = "Ugyldig forbindelse.";
+$a->strings["Name or caption"] = "Navn eller overskrift";
+$a->strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Eksempel: \"Ola Nordmann\", \"Lisa og hestene hennes\", \"Fotball\", \"Sykkelgruppa\"";
+$a->strings["Choose a short nickname"] = "Velg et kort kallenavn";
+$a->strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Ditt kallenavn brukes til Ć„ lage en kanaladresse som er enkel Ć„ huske, for eksempel kallenavn%s";
+$a->strings["Channel role and privacy"] = "Kanalrolle og personvern";
+$a->strings["Select a channel role with your privacy requirements."] = "Velg en kanalrolle for ditt personvernbehov.";
+$a->strings["Read more about roles"] = "Les mer om roller";
+$a->strings["Create Channel"] = "Lag kanal";
+$a->strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "En kanal er din identitet i dette nettverket. Den kan representere en person, en blogg eller et forum for Ƅ nevne noe. Kanaler kan ha forbindelser til andre kanaler for Ƅ dele informasjon, og med svƦrt detaljerte tillatelser.";
+$a->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.";
+$a->strings["Invalid request identifier."] = "Ugyldig forespĆørselsidentifikator.";
+$a->strings["Discard"] = "Forkast";
+$a->strings["No more system notifications."] = "Ingen flere systemvarsler.";
+$a->strings["System Notifications"] = "Systemvarsler";
+$a->strings["Unable to find your hub."] = "Ikke i stand til Ć„ finne hubben din.";
+$a->strings["Post successful."] = "Innlegg vellykket.";
+$a->strings["OpenID protocol error. No ID returned."] = "OpenID protokollfeil. Ingen ID ble returnert.";
+$a->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.";
+$a->strings["This setting requires special processing and editing has been blocked."] = "Denne innstillingen krever spesiell behandling og redigering har blitt blokkert.";
+$a->strings["Configuration Editor"] = "Konfigurasjonsbehandler";
+$a->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.";
$a->strings["Layout updated."] = "Layout er oppdatert.";
$a->strings["Edit System Page Description"] = "Endre beskrivelsen av systemsiden";
$a->strings["Layout not found."] = "Layouten ble ikke funnet.";
$a->strings["Module Name:"] = "Modulnavn:";
$a->strings["Layout Help"] = "Layout-hjelp";
-$a->strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Antallet daglige registreringer ved nettstedet er overskredet. VƦr vennlig Ć„ prĆøve igjen imorgen.";
-$a->strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Vennligst angi at tjenesteavtalen er akseptert. Registrering mislyktes.";
-$a->strings["Passwords do not match."] = "Passordene er ikke like.";
-$a->strings["Registration successful. Please check your email for validation instructions."] = "Registreringen er vellykket. Vennligst sjekk e-posten din for Ć„ bekrefte opprettelsen.";
-$a->strings["Your registration is pending approval by the site owner."] = "Din registrering venter pƄ godkjenning av nettstedets eier.";
-$a->strings["Your registration can not be processed."] = "Din registrering kan ikke behandles.";
-$a->strings["Registration on this site/hub is by approval only."] = "Registrering pƄ dette nettstedet/denne hubben skjer bare gjennom godkjenning.";
-$a->strings["<a href=\"pubsites\">Register at another affiliated site/hub</a>"] = "<a href=\"pubsites\">Registrer pƄ et annet tilknyttet nettsted/hub</a>";
-$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Dette nettstedet har overskredet antallet tillate kontoregistreringer per dag. Vennligst prĆøv igjen imorgen.";
-$a->strings["Terms of Service"] = "Tjenesteavtale";
-$a->strings["I accept the %s for this website"] = "Jeg godtar %s for dette nettstedet";
-$a->strings["I am over 13 years of age and accept the %s for this website"] = "Jeg er over 13 Ć„r gammel og aksepterer %s for dette nettstedet.";
-$a->strings["Registration"] = "Registrering";
-$a->strings["Membership on this site is by invitation only."] = "Medlemskap ved dette nettstedet skjer kun via invitasjon.";
-$a->strings["Please enter your invitation code"] = "Vennligst skriv din invitasjonskode";
-$a->strings["Your email address"] = "Din e-postadresse";
-$a->strings["Choose a password"] = "Velg et passord";
-$a->strings["Please re-enter your password"] = "Vennligst skriv ditt passord en gang til";
+$a->strings["Page owner information could not be retrieved."] = "Informasjon om sideeier kunne ikke hentes.";
+$a->strings["Album not found."] = "Albumet ble ikke funnet.";
+$a->strings["Delete Album"] = "Slett album";
+$a->strings["Delete Photo"] = "Slett bilde";
+$a->strings["No photos selected"] = "Ingen bilder valgt";
+$a->strings["Access to this item is restricted."] = "Tilgang til dette elementet er begrenset.";
+$a->strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB av %2$.2f MB lagringsplass til bilder er brukt.";
+$a->strings["%1$.2f MB photo storage used."] = "%1$.2f MB lagringsplass til bilder er brukt.";
+$a->strings["Upload Photos"] = "Last opp bilder";
+$a->strings["Enter an album name"] = "Skriv et albumnavn";
+$a->strings["or select an existing album (doubleclick)"] = "eller velg et eksisterende album (dobbeltklikk)";
+$a->strings["Create a status post for this upload"] = "Lag et statusinnlegg for denne opplastingen";
+$a->strings["Caption (optional):"] = "Bildetekst (valgfritt):";
+$a->strings["Description (optional):"] = "Beskrivelse (valgfritt):";
+$a->strings["Album name could not be decoded"] = "Albumnavnet kunne ikke dekodes";
+$a->strings["Contact Photos"] = "Kontaktbilder";
+$a->strings["Show Newest First"] = "Vis nyeste fĆørst";
+$a->strings["Show Oldest First"] = "Vis eldste fĆørst";
+$a->strings["Permission denied. Access to this item may be restricted."] = "Tillatelse avvist. Tilgang til dette elementet kan vƦre begrenset.";
+$a->strings["Photo not available"] = "Bilde er utilgjengelig";
+$a->strings["Use as profile photo"] = "Bruk som profilbilde";
+$a->strings["Private Photo"] = "Privat bilde";
+$a->strings["View Full Size"] = "Vis i full stĆørrelse";
+$a->strings["Remove"] = "Fjern";
+$a->strings["Edit photo"] = "Endre bilde";
+$a->strings["Rotate CW (right)"] = "Roter med klokka (mot hĆøyre)";
+$a->strings["Rotate CCW (left)"] = "Roter mot klokka (venstre)";
+$a->strings["Enter a new album name"] = "Skriv et nytt albumnavn";
+$a->strings["or select an existing one (doubleclick)"] = "eller velg et eksisterende album (dobbeltklikk)";
+$a->strings["Caption"] = "Overskrift";
+$a->strings["Add a Tag"] = "Legg til merkelapp";
+$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Eksempel: @bob, @Barbara_Jensen, @jim@example.com";
+$a->strings["Flag as adult in album view"] = "Flag som voksent i albumvisning";
+$a->strings["In This Photo:"] = "I dette bildet:";
+$a->strings["Map"] = "Kart";
+$a->strings["View Album"] = "Vis album";
+$a->strings["Recent Photos"] = "Nye bilder";
$a->strings["Theme settings updated."] = "Temainnstillinger er oppdatert.";
$a->strings["# Accounts"] = "# Kontoer";
$a->strings["# blocked accounts"] = "# blokkerte kontoer";
@@ -1597,6 +1578,7 @@ $a->strings["My site is not a public server"] = "Mitt nettsted er ikke en offent
$a->strings["My site has paid access only"] = "Mitt nettsted gir kun tilgang mot betaling";
$a->strings["My site has free access only"] = "Mitt nettsted har kun gratis tilgang";
$a->strings["My site offers free accounts with optional paid upgrades"] = "Mitt nettsted tilbyr gratis konto med valgfri oppgradering til betalt tjeneste";
+$a->strings["Registration"] = "Registrering";
$a->strings["File upload"] = "Last opp fil";
$a->strings["Policies"] = "Retningslinjer";
$a->strings["Site name"] = "Nettstedets navn";
@@ -1630,8 +1612,6 @@ $a->strings["Allowed email domains"] = "Tillate e-postdomener";
$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "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";
$a->strings["Not allowed email domains"] = "Ikke tillatte e-postdomener";
$a->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.";
-$a->strings["Block public"] = "Blokker offentlig tilgang";
-$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "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.";
$a->strings["Verify Email Addresses"] = "Bekreft e-postadresser";
$a->strings["Check to verify email addresses used in account registration (recommended)."] = "Sett hake for Ć„ sjekke e-postadresser brukt ved kontoregistrering (anbefales).";
$a->strings["Force publish"] = "Tving publisering";
@@ -1654,14 +1634,30 @@ $a->strings["Poll interval"] = "SpĆørreintervall";
$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Forsink spĆørreprosessene i bakgrunnen med dette antall sekunder for Ć„ redusere systembelastningen. Hvis 0, bruk dette leveringsintervallet.";
$a->strings["Maximum Load Average"] = "StĆørste belastningsgjennomsnitt";
$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "StĆørste systembelastning fĆør leverings- og spĆørreprosesser blir utsatt - standard 50.";
-$a->strings["Expiration period in days for imported (matrix/network) content"] = "Antall dager fĆør importert innhold (matrix/nettverk) utgĆ„r";
+$a->strings["Expiration period in days for imported (grid/network) content"] = "Antall dager fĆør importert innhold (nettet/nettverk) utgĆ„r";
$a->strings["0 for no expiration of imported content"] = "0 dersom importert innhold ikke skal utgƄ";
+$a->strings["Off"] = "Av";
+$a->strings["On"] = "PĆ„";
+$a->strings["Lock feature %s"] = "LĆ„s funksjon %s";
+$a->strings["Manage Additional Features"] = "HĆ„ndter tilleggsfunksjoner";
$a->strings["No server found"] = "Ingen tjener funnet";
$a->strings["ID"] = "ID";
$a->strings["for channel"] = "for kanalen";
$a->strings["on server"] = "pƄ tjener";
-$a->strings["Status"] = "Status";
$a->strings["Server"] = "Tjener";
+$a->strings["Block public"] = "Blokker offentlig tilgang";
+$a->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.";
+$a->strings["Allow communications only from these sites"] = "Tillat kommunikasjon med bare disse nettstedene";
+$a->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";
+$a->strings["Block communications from these sites"] = "Blokker kommunikasjon fra disse nettstedene";
+$a->strings["Allow communications only from these channels"] = "Tillat kommunikasjon med bare disse kanalene";
+$a->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";
+$a->strings["Block communications from these channels"] = "Blokker kommunikasjon fra disse kanalene";
+$a->strings["Allow embedded HTML content only from these domains"] = "Tillat innebygget HTML-innhold fra bare disse domenene";
+$a->strings["One site per line. Leave empty to allow from any site by default"] = "Et nettsted per linje. La stƄ tomt for Ƅ tillate ethvert nettsted som standard";
+$a->strings["Block embedded HTML from these domains"] = "Blokker innbygget HTML fra disse domenene";
+$a->strings["Cooperative embed security"] = "Kooperativ innebyggingssikkerhet";
+$a->strings["Enable to share embed security with other compatible sites/hubs"] = "Skru pƄ deling av innebyggingssikkerhet med andre kompatible nettsteder/hubber";
$a->strings["Update has been marked successful"] = "Oppdateringen har blitt merket som en suksess";
$a->strings["Executing %s failed. Check system logs."] = "UtfĆøring av %s feilet. Sjekk systemlogger.";
$a->strings["Update %s was successfully applied."] = "Oppdatering %s ble gjennomfĆørt med suksess.";
@@ -1725,6 +1721,7 @@ $a->strings["Uncensor"] = "Ikke sensurer lenger";
$a->strings["Allow Code"] = "Tillat kode";
$a->strings["Disallow Code"] = "Ikke tillat kode";
$a->strings["UID"] = "UID";
+$a->strings["Address"] = "Adresse";
$a->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?";
$a->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?";
$a->strings["Plugin %s disabled."] = "Tilleggsfunksjonen %s er avskrudd.";
@@ -1734,6 +1731,11 @@ $a->strings["Enable"] = "Skru pƄ";
$a->strings["Toggle"] = "Skru av og pƄ";
$a->strings["Author: "] = "Forfatter:";
$a->strings["Maintainer: "] = "Vedlikeholder:";
+$a->strings["Minimum project version: "] = "Minimum prosjektversjon:";
+$a->strings["Maximum project version: "] = "Maksimum prosjektversjon:";
+$a->strings["Minimum PHP version: "] = "Minimum PHP-versjon:";
+$a->strings["Requires: "] = "Krever:";
+$a->strings["Disabled - version incompatibility"] = "Skrudd av - versjonsinkompatibilitet";
$a->strings["No themes found."] = "Ingen temaer er funnet.";
$a->strings["Screenshot"] = "Skjermbilde";
$a->strings["[Experimental]"] = "[Eksperimentelt]";
@@ -1754,19 +1756,167 @@ $a->strings["Help text"] = "Hjelpetekst";
$a->strings["Additional info (optional)"] = "Tilleggsinformasjon (valgfritt)";
$a->strings["Field definition not found"] = "Feltdefinisjonen ble ikke funnet";
$a->strings["Edit Profile Field"] = "Endre profilfelt";
-$a->strings["Delete layout?"] = "Slett layout?";
-$a->strings["Layout Description (Optional)"] = "Layoutens beskrivelse (valgfritt)";
-$a->strings["Layout Name"] = "Layout-navn";
-$a->strings["Edit Layout"] = "Endre layout";
+$a->strings["Poke somebody"] = "Dult noen";
+$a->strings["Poke/Prod"] = "Prikke/oppildne";
+$a->strings["Poke, prod or do other things to somebody"] = "Dult, prikk eller gjĆør andre ting med noen";
+$a->strings["Recipient"] = "Mottaker";
+$a->strings["Choose what you wish to do to recipient"] = "Velg hva du Ćønsker Ć„ gjĆøre med mottakeren";
+$a->strings["Make this post private"] = "GjĆør dette innlegget privat";
+$a->strings["Fetching URL returns error: %1\$s"] = "Henting av URL gir fĆølgende feil: %1\$s";
+$a->strings["Image uploaded but image cropping failed."] = "Bildet ble lastet opp, men beskjƦring av bildet mislyktes.";
+$a->strings["Image resize failed."] = "Endring av bildestĆørrelse mislyktes.";
+$a->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.";
+$a->strings["Image upload failed."] = "Opplasting av bildet mislyktes.";
+$a->strings["Unable to process image."] = "Kan ikke behandle bildet.";
+$a->strings["Photo not available."] = "Bildet er ikke tilgjengelig.";
+$a->strings["Upload File:"] = "Last opp fil:";
+$a->strings["Select a profile:"] = "Velg en profil:";
+$a->strings["Upload Profile Photo"] = "Last opp profilbilde:";
+$a->strings["or"] = "eller";
+$a->strings["skip this step"] = "hopp over dette steget";
+$a->strings["select a photo from your photo albums"] = "velg et bilde fra dine fotoalbum";
+$a->strings["Crop Image"] = "BeskjƦr bildet";
+$a->strings["Please adjust the image cropping for optimum viewing."] = "Vennligst juster bildebeskjƦringen for optimal visning.";
+$a->strings["Done Editing"] = "Avslutt redigering";
+$a->strings["Profile not found."] = "Profilen ble ikke funnet.";
+$a->strings["Profile deleted."] = "Profilen er slettet.";
+$a->strings["Profile-"] = "Profil-";
+$a->strings["New profile created."] = "Ny profil opprettet.";
+$a->strings["Profile unavailable to clone."] = "Profilen er utilgjengelig for klonen.";
+$a->strings["Profile unavailable to export."] = "Profilen er utilgjengelig for eksport.";
+$a->strings["Profile Name is required."] = "Profilnavn er pƄkrevd.";
+$a->strings["Marital Status"] = "Sivilstand";
+$a->strings["Romantic Partner"] = "Romantisk partner";
+$a->strings["Likes"] = "Liker";
+$a->strings["Dislikes"] = "Liker ikke";
+$a->strings["Work/Employment"] = "Arbeid/sysselsetting";
+$a->strings["Religion"] = "Religion";
+$a->strings["Political Views"] = "Politiske synspunkter";
+$a->strings["Sexual Preference"] = "Seksuelle preferanser";
+$a->strings["Homepage"] = "Hjemmeside";
+$a->strings["Interests"] = "Interesser";
+$a->strings["Profile updated."] = "Profilen er oppdatert.";
+$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Skjul kontakt-/vennelisten din fra de som ser pƄ denne profilen?";
+$a->strings["Edit Profile Details"] = "Endre profildetaljer";
+$a->strings["View this profile"] = "Vis denne profilen";
+$a->strings["Change Profile Photo"] = "Endre profilbilde";
+$a->strings["Create a new profile using these settings"] = "Lag en ny profil ved Ć„ bruke disse innstillingene";
+$a->strings["Clone this profile"] = "Klon denne profilen";
+$a->strings["Delete this profile"] = "Slett denne profilen";
+$a->strings["Import profile from file"] = "Importer profil fra fil";
+$a->strings["Export profile to file"] = "Eksporter profil til fil";
+$a->strings["Profile Name:"] = "Profilnavn:";
+$a->strings["Your Full Name:"] = "Ditt fulle navn:";
+$a->strings["Title/Description:"] = "Tittel/Beskrivelse:";
+$a->strings["Your Gender:"] = "Ditt kjĆønn:";
+$a->strings["Birthday :"] = "FĆødselsdag:";
+$a->strings["Street Address:"] = "Gateadresse:";
+$a->strings["Locality/City:"] = "Sted/By:";
+$a->strings["Postal/Zip Code:"] = "Postnummer/ZIP-kode:";
+$a->strings["Country:"] = "Land:";
+$a->strings["Region/State:"] = "Region/fylke:";
+$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Sivilstand:";
+$a->strings["Who: (if applicable)"] = "Hvem: (hvis det er aktuelt) ";
+$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Eksempler: kari123, Kari Villiamsen, kari@example.com";
+$a->strings["Since [date]:"] = "Siden [dato]:";
+$a->strings["Homepage URL:"] = "Hjemmeside URL:";
+$a->strings["Religious Views:"] = "ReligiĆøse synspunkter:";
+$a->strings["Keywords:"] = "NĆøkkelord:";
+$a->strings["Example: fishing photography software"] = "Eksempel: fisking fotografering programvare";
+$a->strings["Used in directory listings"] = "Brukt i katalogoppfĆøringer";
+$a->strings["Tell us about yourself..."] = "Fortell oss om deg selv...";
+$a->strings["Hobbies/Interests"] = "Hobbier/Interesser";
+$a->strings["Contact information and Social Networks"] = "Kontaktinformasjon og sosiale nettverk";
+$a->strings["My other channels"] = "Mine andre kanaler";
+$a->strings["Musical interests"] = "Musikkinteresser";
+$a->strings["Books, literature"] = "BĆøker, litteratur";
+$a->strings["Television"] = "TV/fjernsyn";
+$a->strings["Film/dance/culture/entertainment"] = "Film/dans/kultur/underholdning";
+$a->strings["Love/romance"] = "KjƦrlighet/romantikk";
+$a->strings["Work/employment"] = "Arbeid/sysselsetting";
+$a->strings["School/education"] = "Skole/utdanning";
+$a->strings["This is your default profile."] = "Dette er din standardprofil.";
+$a->strings["Age: "] = "Alder:";
+$a->strings["Edit/Manage Profiles"] = "Endre/hƄndter profiler";
+$a->strings["Add profile things"] = "Legg til profilting";
+$a->strings["Include desirable objects in your profile"] = "Inkluder Ćønskverdige objekter i din profil";
+$a->strings["Invalid profile identifier."] = "Ugyldig profil-identifikator.";
+$a->strings["Profile Visibility Editor"] = "Endre profilsynlighet";
+$a->strings["Click on a contact to add or remove."] = "Klikk pƄ en kontakt for Ƅ legge til eller fjerne.";
+$a->strings["Visible To"] = "Synlig for";
+$a->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.";
+$a->strings["Hub URL"] = "Nettstedets URL";
+$a->strings["Access Type"] = "Tilgangstype";
+$a->strings["Registration Policy"] = "Retningslinjer for registrering";
+$a->strings["Rate"] = "Vurder";
+$a->strings["Website:"] = "Nettsted:";
+$a->strings["Remote Channel [%s] (not yet known on this site)"] = "Fjerntliggende kanal [%s] (forelĆøpig ikke kjent pĆ„ dette nettstedet)";
+$a->strings["Rating (this information is public)"] = "Vurdering (denne informasjonen er offentlig)";
+$a->strings["Optionally explain your rating (this information is public)"] = "Velg om du vil forklare din vurdering (denne informasjonen er offentlig)";
+$a->strings["No ratings"] = "Ingen vurderinger";
+$a->strings["Rating: "] = "Vurdering:";
+$a->strings["Website: "] = "Nettsted:";
+$a->strings["Description: "] = "Beskrivelse:";
+$a->strings["Select a bookmark folder"] = "Velg en bokmerkemappe";
+$a->strings["Save Bookmark"] = "Lagre bokmerke";
+$a->strings["URL of bookmark"] = "URL-en til bokmerket";
+$a->strings["Or enter new bookmark folder name"] = "Eller skriv nytt navn pƄ bokmerkemappe";
+$a->strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Antallet daglige registreringer ved nettstedet er overskredet. VƦr vennlig Ć„ prĆøve igjen imorgen.";
+$a->strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Vennligst angi at tjenesteavtalen er akseptert. Registrering mislyktes.";
+$a->strings["Passwords do not match."] = "Passordene er ikke like.";
+$a->strings["Registration successful. Please check your email for validation instructions."] = "Registreringen er vellykket. Vennligst sjekk e-posten din for Ć„ bekrefte opprettelsen.";
+$a->strings["Your registration is pending approval by the site owner."] = "Din registrering venter pƄ godkjenning av nettstedets eier.";
+$a->strings["Your registration can not be processed."] = "Din registrering kan ikke behandles.";
+$a->strings["Registration on this hub is disabled."] = "Registrering ved dette nettstedet er skrudd av.";
+$a->strings["Registration on this hub is by approval only."] = "Registrering ved dette nettstedet skjer pƄ godkjenning.";
+$a->strings["<a href=\"pubsites\">Register at another affiliated hub.</a>"] = "<a href=\"pubsites\">Registrer ved et annet tilsluttet nettsted.</a>";
+$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Dette nettstedet har overskredet antallet tillate kontoregistreringer per dag. Vennligst prĆøv igjen imorgen.";
+$a->strings["Terms of Service"] = "Tjenesteavtale";
+$a->strings["I accept the %s for this website"] = "Jeg godtar %s for dette nettstedet";
+$a->strings["I am over 13 years of age and accept the %s for this website"] = "Jeg er over 13 Ć„r gammel og aksepterer %s for dette nettstedet.";
+$a->strings["Your email address"] = "Din e-postadresse";
+$a->strings["Choose a password"] = "Velg et passord";
+$a->strings["Please re-enter your password"] = "Vennligst skriv ditt passord en gang til";
+$a->strings["Please enter your invitation code"] = "Vennligst skriv din invitasjonskode";
+$a->strings["no"] = "nei";
+$a->strings["yes"] = "ja";
+$a->strings["Membership on this site is by invitation only."] = "Medlemskap ved dette nettstedet skjer kun via invitasjon.";
+$a->strings["Proceed to create your first channel"] = "GĆ„ videre for Ć„ lage din fĆørste kanal";
+$a->strings["Please login."] = "Vennligst logg inn.";
+$a->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.";
+$a->strings["Remove This Account"] = "Slett denne kontoen";
+$a->strings["WARNING: "] = "ADVARSEL:";
+$a->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.";
+$a->strings["This action is permanent and can not be undone!"] = "Denne handlingen er permanent og kan ikke angres!";
+$a->strings["Please enter your password for verification:"] = "Vennligst skriv ditt passord for Ƅ fƄ bekreftelse:";
+$a->strings["Remove this account, all its channels and all its channel clones from the network"] = "Slett denne kontoen, alle dens kanaler og alle dens kanalkloner fra dette nettverket";
+$a->strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Som standard vil bare forekomster av kanalene lokalisert pƄ denne hubben bli slettet fra nettverket";
+$a->strings["Remove Account"] = "Slett konto";
+$a->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.";
+$a->strings["Remove This Channel"] = "Fjern denne kanalen";
+$a->strings["This channel will be completely removed from the network. "] = "Denne kanalen vil bli fullstendig fjernet fra nettverket.";
+$a->strings["Remove this channel and all its clones from the network"] = "Fjern denne kanalen og alle dens kloner fra nettverket";
+$a->strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Som standard vil bare forekomsten av denne kanalen lokalisert pƄ denne hubben bli fjernet fra nettverket";
+$a->strings["Remove Channel"] = "Fjern kanal";
+$a->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.";
+$a->strings["The error message was:"] = "Feilmeldingen var:";
+$a->strings["Authentication failed."] = "Autentisering mislyktes.";
+$a->strings["Remote Authentication"] = "Fjernautentisering";
+$a->strings["Enter your channel address (e.g. channel@example.com)"] = "Skriv din kanaladresse (for eksempel channel@exampel.com)";
+$a->strings["Authenticate"] = "Autentiser";
+$a->strings["Items tagged with: %s"] = "Elementer merket med: %s";
+$a->strings["Search results for: %s"] = "SĆøkeresultater for: %s";
+$a->strings["No service class restrictions found."] = "Ingen restriksjoner er funnet i tjenesteklasse.";
$a->strings["Name is required"] = "Navn er pƄkrevd";
$a->strings["Key and Secret are required"] = "NĆøkkel og hemmelighet er pĆ„krevd";
+$a->strings["Not valid email."] = "Ikke gyldig e-post.";
+$a->strings["Protected email address. Cannot change to that email."] = "Beskyttet e-postadresse. Kan ikke endre til den e-postadressen.";
+$a->strings["System failure storing new email. Please try again."] = "Systemfeil ved lagring av ny e-post. Vennligst prĆøv igjen.";
+$a->strings["Password verification failed."] = "Passordbekreftelsen mislyktes.";
$a->strings["Passwords do not match. Password unchanged."] = "Passordene stemmer ikke overens. Passord uforandret.";
$a->strings["Empty passwords are not allowed. Password unchanged."] = "Tomme passord er ikke tillatt. Passord uforandret.";
$a->strings["Password changed."] = "Passord endret.";
$a->strings["Password update failed. Please try again."] = "Passord oppdatering mislyktes. Vennligst prĆøv igjen.";
-$a->strings["Not valid email."] = "Ikke gyldig e-post.";
-$a->strings["Protected email address. Cannot change to that email."] = "Beskyttet e-postadresse. Kan ikke endre til den e-postadressen.";
-$a->strings["System failure storing new email. Please try again."] = "Systemfeil ved lagring av ny e-post. Vennligst prĆøv igjen.";
$a->strings["Settings updated."] = "Innstillinger oppdatert.";
$a->strings["Add application"] = "Legg til program";
$a->strings["Name of application"] = "Navn pƄ program";
@@ -1777,7 +1927,7 @@ $a->strings["Redirect"] = "Omdirigering";
$a->strings["Redirect URI - leave blank unless your application specifically requires this"] = "Omdirigerings-URI - la stƄ tomt hvis ikke ditt program spesifikt krever dette";
$a->strings["Icon url"] = "Ikon-URL";
$a->strings["Optional"] = "Valgfritt";
-$a->strings["You can't edit this application."] = "Du kan ikke endre dette programmet.";
+$a->strings["Application not found."] = "Programmet ble ikke funnet.";
$a->strings["Connected Apps"] = "Tilkoblede app-er";
$a->strings["Client key starts with"] = "KlientnĆøkkel starter med";
$a->strings["No name"] = "Ikke noe navn";
@@ -1785,13 +1935,12 @@ $a->strings["Remove authorization"] = "Fjern tillatelse";
$a->strings["No feature settings configured"] = "Ingen funksjonsinnstillinger er konfigurert";
$a->strings["Feature/Addon Settings"] = "Funksjons-/Tilleggsinnstillinger";
$a->strings["Account Settings"] = "Kontoinnstillinger";
-$a->strings["Enter New Password:"] = "Skriv nytt passord:";
-$a->strings["Confirm New Password:"] = "Bekreft nytt passord:";
+$a->strings["Current Password"] = "NƄvƦrende passord";
+$a->strings["Enter New Password"] = "Skriv nytt passord";
+$a->strings["Confirm New Password"] = "Bekreft nytt passord";
$a->strings["Leave password fields blank unless changing"] = "La passordfeltene stƄ blanke om det ikke skal endres";
$a->strings["Email Address:"] = "E-postadresse:";
$a->strings["Remove this account including all its channels"] = "Slett denne kontoen inkludert alle dens kanaler";
-$a->strings["Off"] = "Av";
-$a->strings["On"] = "PĆ„";
$a->strings["Additional Features"] = "Ekstra funksjoner";
$a->strings["Connector Settings"] = "Koblingsinnstillinger";
$a->strings["No special theme for mobile devices"] = "Ikke noe spesielt tema for mobile enheter";
@@ -1802,6 +1951,8 @@ $a->strings["Custom Theme Settings"] = "Tilpassede temainnstillinger";
$a->strings["Content Settings"] = "Innholdsinnstillinger";
$a->strings["Display Theme:"] = "Visningstema:";
$a->strings["Mobile Theme:"] = "Mobiltema:";
+$a->strings["Preload images before rendering the page"] = "Last inn bildene fĆør gjengivelsen av siden";
+$a->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";
$a->strings["Enable user zoom on mobile devices"] = "Skru pƄ brukerstyrt zoom pƄ mobile enheter";
$a->strings["Update browser every xx seconds"] = "Oppdater nettleser hvert xx sekunder";
$a->strings["Minimum of 10 seconds, no maximum"] = "Minimum 10 sekunder, ikke noe maksimum";
@@ -1812,10 +1963,10 @@ $a->strings["Link post titles to source"] = "Lenk innleggets tittel til kilden";
$a->strings["System Page Layout Editor - (advanced)"] = "Systemsidens layoutbehandler - (avansert)";
$a->strings["Use blog/list mode on channel page"] = "Bruk blogg-/listemodus pƄ kanalsiden";
$a->strings["(comments displayed separately)"] = "(kommentarer vist separat)";
-$a->strings["Use blog/list mode on matrix page"] = "Bruk blogg-/listemodus pƄ matrix-siden";
+$a->strings["Use blog/list mode on grid page"] = "Bruk blogg-/liste-modus pƄ nettverkssiden";
$a->strings["Channel page max height of content (in pixels)"] = "Kanalsidens makshĆøyde for innhold (i pixler)";
$a->strings["click to expand content exceeding this height"] = "klikk for Ć„ utvide innhold som overstiger denne hĆøyden";
-$a->strings["Matrix page max height of content (in pixels)"] = "Matrix-sidens makshĆøyde for innholde (i pixler)";
+$a->strings["Grid page max height of content (in pixels)"] = "Nettverkssidens makshĆøyde for innhold (i piksler)";
$a->strings["Nobody except yourself"] = "Ingen unntatt deg selv";
$a->strings["Only those you specifically allow"] = "Bare de du spesifikt tillater";
$a->strings["Approved connections"] = "Godkjente forbindelser";
@@ -1848,11 +1999,10 @@ $a->strings["Allow others to tag your posts"] = "Tillat andre Ć„ merke dine innl
$a->strings["Often used by the community to retro-actively flag inappropriate content"] = "Ofte brukt av fellesskapet for Ć„ merke upassende innhold i etterkant";
$a->strings["Advanced Privacy Settings"] = "Avanserte personverninnstillinger";
$a->strings["Expire other channel content after this many days"] = "Annet kanal innhold utlĆøper etter sĆ„ mange dager";
-$a->strings["0 or blank prevents expiration"] = "0 eller blankt forhindrer utlĆøp";
+$a->strings["0 or blank to use the website limit. The website expires after %d days."] = "0 eller ikke noe for Ć„ bruke nettstedets grense. Nettstedet utlĆøper etter %d dager.";
$a->strings["Maximum Friend Requests/Day:"] = "Maksimalt antall venneforespĆørsler per dag:";
$a->strings["May reduce spam activity"] = "Kan redusere sĆøppelpostaktivitet";
$a->strings["Default Post Permissions"] = "Standard innleggstillatelser";
-$a->strings["(click to open/close)"] = "(klikk for Ć„ Ć„pne/lukke)";
$a->strings["Channel permissions category:"] = "Kategori med kanaltillatelser:";
$a->strings["Maximum private messages per day from unknown people:"] = "Maksimalt antall private meldinger per dag fra ukjente personer:";
$a->strings["Useful to reduce spamming"] = "Nyttig for Ć„ redusere sĆøppelpost";
@@ -1871,7 +2021,7 @@ $a->strings["You receive a friend suggestion"] = "Du mottok et venneforslag";
$a->strings["You are tagged in a post"] = "Du merkes i et innlegg";
$a->strings["You are poked/prodded/etc. in a post"] = "Du ble prikket/oppildnet/og sƄ vider i et innlegg";
$a->strings["Show visual notifications including:"] = "Vis visuelle varslinger om:";
-$a->strings["Unseen matrix activity"] = "Usett matrixaktivitet";
+$a->strings["Unseen grid activity"] = "Usett nettverksaktivitet";
$a->strings["Unseen channel activity"] = "Usett kanalaktivitet";
$a->strings["Unseen private messages"] = "Usette private meldinger";
$a->strings["Recommended"] = "Anbefalt";
@@ -1898,195 +2048,112 @@ $a->strings["Personal menu to display in your channel pages"] = "Personlig meny
$a->strings["Remove this channel."] = "Fjern denne kanalen.";
$a->strings["Firefox Share \$Projectname provider"] = "\$Projectname Firefox Share tilbyder";
$a->strings["Start calendar week on monday"] = "Start uken med mandag i kalenderen";
-$a->strings["Page Title"] = "Sidetittel";
-$a->strings["App installed."] = "App installert.";
-$a->strings["Malformed app."] = "Feil oppsett for app-en.";
-$a->strings["Embed code"] = "Innbyggingskode";
-$a->strings["Edit App"] = "Endre app";
-$a->strings["Create App"] = "Lag app";
-$a->strings["Name of app"] = "Navn pƄ app";
-$a->strings["Location (URL) of app"] = "Plassering (URL) til app";
-$a->strings["Photo icon URL"] = "Bildeikon URL";
-$a->strings["80 x 80 pixels - optional"] = "80 x80 pixler - valgfritt";
-$a->strings["Version ID"] = "Versjons-ID";
-$a->strings["Price of app"] = "Pris pƄ app";
-$a->strings["Location (URL) to purchase app"] = "Plassering (URL) for Ć„ kjĆøpe app";
-$a->strings["- select -"] = "- velg -";
-$a->strings["Comanche page description language help"] = "Hjelp med Comanche sidebeskrivelsessprƄk";
-$a->strings["Layout Description"] = "Layout-beskrivelse";
-$a->strings["Download PDL file"] = "Last ned PDL-fil";
-$a->strings["Location not found."] = "Plassering er ikke funnet.";
-$a->strings["Location lookup failed."] = "Oppslag pƄ plassering mislyktes.";
-$a->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.";
-$a->strings["Syncing locations"] = "Synkroniserer plasseringer";
-$a->strings["No locations found."] = "Ingen plasseringer ble funnet.";
-$a->strings["Manage Channel Locations"] = "HĆ„ndter kanalplasseringer";
-$a->strings["Location (address)"] = "Plassering (adresse)";
-$a->strings["Primary Location"] = "Hovedplassering";
-$a->strings["Drop location"] = "Slett plassering";
-$a->strings["Sync now"] = "Synkroniser nƄ";
-$a->strings["Please wait several minutes between consecutive operations."] = "Vennligst vent flere minutter mellom hver etterfĆølgende operasjon.";
-$a->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.";
-$a->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.";
-$a->strings["\$Projectname"] = "\$Projectname";
-$a->strings["Welcome to %s"] = "Velkommen til %s";
-$a->strings["Please login."] = "Vennligst logg inn.";
-$a->strings["Xchan Lookup"] = "Xchan oppslag";
-$a->strings["Lookup xchan beginning with (or webbie): "] = "SlƄ opp xchan som begynner med (eller webbie):";
-$a->strings["Not found."] = "Ikke funnet.";
-$a->strings["You must be logged in to see this page."] = "Du mƄ vƦre innloegget for Ƅ se denne siden.";
-$a->strings["Insufficient permissions. Request redirected to profile page."] = "Utilstrekkelig tillatelse. ForespĆørsel omdirigert til profilsiden.";
-$a->strings["Item not available."] = "Elementet er ikke tilgjengelig.";
-$a->strings["Page owner information could not be retrieved."] = "Informasjon om sideeier kunne ikke hentes.";
-$a->strings["Album not found."] = "Albumet ble ikke funnet.";
-$a->strings["Delete Album"] = "Slett album";
-$a->strings["Delete Photo"] = "Slett bilde";
-$a->strings["No photos selected"] = "Ingen bilder valgt";
-$a->strings["Access to this item is restricted."] = "Tilgang til dette elementet er begrenset.";
-$a->strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB av %2$.2f MB lagringsplass til bilder er brukt.";
-$a->strings["%1$.2f MB photo storage used."] = "%1$.2f MB lagringsplass til bilder er brukt.";
-$a->strings["Upload Photos"] = "Last opp bilder";
-$a->strings["Enter an album name"] = "Skriv et albumnavn";
-$a->strings["or select an existing album (doubleclick)"] = "eller velg et eksisterende album (dobbeltklikk)";
-$a->strings["Create a status post for this upload"] = "Lag et statusinnlegg for denne opplastingen";
-$a->strings["Caption (optional):"] = "Bildetekst (valgfritt):";
-$a->strings["Description (optional):"] = "Beskrivelse (valgfritt):";
-$a->strings["Album name could not be decoded"] = "Albumnavnet kunne ikke dekodes";
-$a->strings["Contact Photos"] = "Kontaktbilder";
-$a->strings["Show Newest First"] = "Vis nyeste fĆørst";
-$a->strings["Show Oldest First"] = "Vis eldste fĆørst";
-$a->strings["Permission denied. Access to this item may be restricted."] = "Tillatelse avvist. Tilgang til dette elementet kan vƦre begrenset.";
-$a->strings["Photo not available"] = "Bilde er utilgjengelig";
-$a->strings["Use as profile photo"] = "Bruk som profilbilde";
-$a->strings["Private Photo"] = "Privat bilde";
-$a->strings["Previous"] = "Forrige";
-$a->strings["View Full Size"] = "Vis i full stĆørrelse";
-$a->strings["Edit photo"] = "Endre bilde";
-$a->strings["Rotate CW (right)"] = "Roter med klokka (mot hĆøyre)";
-$a->strings["Rotate CCW (left)"] = "Roter mot klokka (venstre)";
-$a->strings["Enter a new album name"] = "Skriv et nytt albumnavn";
-$a->strings["or select an existing one (doubleclick)"] = "eller velg et eksisterende album (dobbeltklikk)";
-$a->strings["Caption"] = "Overskrift";
-$a->strings["Add a Tag"] = "Legg til merkelapp";
-$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Eksempel: @bob, @Barbara_Jensen, @jim@example.com";
-$a->strings["Flag as adult in album view"] = "Flag som voksent i albumvisning";
-$a->strings["In This Photo:"] = "I dette bildet:";
-$a->strings["Map"] = "Kart";
-$a->strings["View Album"] = "Vis album";
-$a->strings["Recent Photos"] = "Nye bilder";
-$a->strings["Remote privacy information not available."] = "Ekstern personverninformasjon er ikke tilgjengelig.";
-$a->strings["Visible to:"] = "Synlig for:";
-$a->strings["Export Channel"] = "Eksporter kanal";
-$a->strings["Export your basic channel information to a file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new server hub, but does not contain your content."] = "Eksporter grunnleggende informasjon om kanalen din til en fil. Denne er en sikkerhetskopi av dine forbindelser, tillatelser, profil og grunnleggende data, som kan brukes til Ć„ importere dine data til en ny hub, men den tar ikke med innholdet.";
-$a->strings["Export Content"] = "Eksporter innhold";
-$a->strings["Export your channel information and recent content to a JSON backup that can be restored or imported to another server hub. This backs up all of your connections, permissions, profile data and several months of posts. This file may be VERY large. Please be patient - it may take several minutes for this download to begin."] = "Eksporter din kanalinformasjon og det nyeste innholdet til en JSON-sikkerhetskopi, som kan gjenopprettes eller importeres til en annen hub. Denne lager en sikkerhetskopi av alle dine forbindelser, tillatelser, profildata og flere mĆ„neder av innholdet ditt. Denne filen kan vƦre SVƆRT stor. Vennligst vƦr tĆ„lmodig - det kan ta flere minutter fĆør denne nedlastningen begynner.";
-$a->strings["Export your posts from a given year."] = "Eksporter dine innlegg fra et bestemt Ć„r";
-$a->strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Du kan ogsĆ„ eksportere dine innlegg og samtaler for et bestemt Ć„r eller mĆ„ned. Juster datoen i din nettlesers adresselinje for Ć„ velge andre datoer. Hvis eksporten feiler (muligens pĆ„ grunn av utilstrekkelig minne pĆ„ din hub), vennligst prĆøv igjen med et mer begrenset datoomrĆ„de.";
-$a->strings["To select all posts for a given year, such as this year, visit <a href=\"%1\$s\">%2\$s</a>"] = "For Ć„ velge alle innlegg for et gitt Ć„r, slik som iĆ„r, besĆøk <a href=\"%1\$s\">%2\$s</a>";
-$a->strings["To select all posts for a given month, such as January of this year, visit <a href=\"%1\$s\">%2\$s</a>"] = "For Ć„ velge alle innlegg fra en gitt mĆ„ned, slik som januar i Ć„r, besĆøk <a href=\"%1\$s\">%2\$s</a>";
-$a->strings["These content files may be imported or restored by visiting <a href=\"%1\$s\">%2\$s</a> on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Disse innholdsfilene kan importeres eller gjenopprettes ved Ć„ besĆøke <a href=\"%1\$s\">%2\$s</a> pĆ„ ethvert nettsted som inneholder din kanal. For best resultat, vennligst importer eller gjenopprett disse etter dato (eldste fĆørst).";
-$a->strings["Item is not editable"] = "Elementet kan ikke endres";
-$a->strings["Delete item?"] = "Slett element?";
-$a->strings["Edit post"] = "Endre innlegg";
-$a->strings["Channel added."] = "Kanal lagt til.";
-$a->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.";
-$a->strings["The error message was:"] = "Feilmeldingen var:";
-$a->strings["Authentication failed."] = "Autentisering mislyktes.";
-$a->strings["Remote Authentication"] = "Fjernautentisering";
-$a->strings["Enter your channel address (e.g. channel@example.com)"] = "Skriv din kanaladresse (for eksempel channel@exampel.com)";
-$a->strings["Authenticate"] = "Autentiser";
-$a->strings["Room not found"] = "Rommet ble ikke funnet";
-$a->strings["Leave Room"] = "Forlat rom";
-$a->strings["Delete This Room"] = "Slett dette rommet";
-$a->strings["I am away right now"] = "Jeg er borte akkurat nƄ";
-$a->strings["I am online"] = "Jeg er online";
-$a->strings["Bookmark this room"] = "Bokmerk dette rommet";
-$a->strings["New Chatroom"] = "Nytt chatrom";
-$a->strings["Chatroom Name"] = "Navn pƄ chatrom";
-$a->strings["Expiration of chats (minutes)"] = "Chat utgƄr (antall minutter)";
-$a->strings["%1\$s's Chatrooms"] = "%1\$s sine chatrom";
-$a->strings["Items tagged with: %s"] = "Elementer merket med: %s";
-$a->strings["Search results for: %s"] = "SĆøkeresultater for: %s";
-$a->strings["Source of Item"] = "Kilde til element";
-$a->strings["Share content from Firefox to \$Projectname"] = "Del innhold fra Firefox til \$Projectname";
-$a->strings["Activate the Firefox \$Projectname provider"] = "Skru pƄ Firefox \$Projectname tilbyderen";
-$a->strings["Hub not found."] = "Hubben ble ikke funnet.";
-$a->strings["Blocked"] = "Blokkert";
-$a->strings["Ignored"] = "Ignorert";
-$a->strings["Hidden"] = "Skjult";
-$a->strings["Archived"] = "Arkivert";
-$a->strings["Suggest new connections"] = "ForeslƄ nye forbindelser";
-$a->strings["New Connections"] = "Nye forbindelser";
-$a->strings["Show pending (new) connections"] = "Vis ventende (nye) forbindelser";
-$a->strings["All Connections"] = "Alle forbindelser";
-$a->strings["Show all connections"] = "Vis alle forbindelser";
-$a->strings["Unblocked"] = "Ikke blokkert lenger";
-$a->strings["Only show unblocked connections"] = "Vis bare forbindelser som ikke er blokkert";
-$a->strings["Only show blocked connections"] = "Vis bare forbindelser som er blokkert";
-$a->strings["Only show ignored connections"] = "Vis bare ignorerte forbindelser";
-$a->strings["Only show archived connections"] = "Vis bare arkiverte forbindelser";
-$a->strings["Only show hidden connections"] = "Vis bare skjulte forbindelser";
-$a->strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]";
-$a->strings["Edit connection"] = "Endre forbindelse";
-$a->strings["Search your connections"] = "SĆøk blant dine forbindelser";
-$a->strings["Finding: "] = "Fant:";
-$a->strings["You have created %1$.0f of %2$.0f allowed channels."] = "Du har laget %1$.0f av %2$.0f tillatte kanaler.";
-$a->strings["Create a new channel"] = "Lag en ny kanal";
-$a->strings["Current Channel"] = "Gjeldende kanal";
-$a->strings["Switch to one of your channels by selecting it."] = "Bytt til en av dine kanaler ved Ć„ velge den.";
-$a->strings["Default Channel"] = "Standardkanal";
-$a->strings["Make Default"] = "GjĆør til standard";
-$a->strings["%d new messages"] = "%d nye meldinger";
-$a->strings["%d new introductions"] = "%d nye introduksjoner";
-$a->strings["Delegated Channels"] = "Delegerte kanaler";
-$a->strings["Unable to update menu."] = "Ikke i stand til Ć„ oppdatere meny.";
-$a->strings["Unable to create menu."] = "Ikke i stand til Ć„ lage meny.";
-$a->strings["Menu Name"] = "Menynavn";
-$a->strings["Unique name (not visible on webpage) - required"] = "Unikt navn (ikke synlig pƄ websiden) - pƄkrevet";
-$a->strings["Menu Title"] = "Menytittel";
-$a->strings["Visible on webpage - leave empty for no title"] = "Synlig pƄ websiden - la stƄ tomt for ingen tittel";
-$a->strings["Allow Bookmarks"] = "Tillat bokmerker";
-$a->strings["Menu may be used to store saved bookmarks"] = "Menyen kan brukes til Ć„ lagre lagrede bokmerker";
-$a->strings["Submit and proceed"] = "Send inn og fortsett";
-$a->strings["Drop"] = "Slett";
-$a->strings["Bookmarks allowed"] = "Bokmerker tillatt";
-$a->strings["Delete this menu"] = "Slett denne menyen";
-$a->strings["Edit menu contents"] = "Endre menyinnholdet";
-$a->strings["Edit this menu"] = "Endre denne menyen";
-$a->strings["Menu could not be deleted."] = "Menyen kunne ikke bli slettet.";
-$a->strings["Menu not found."] = "Menyen ble ikke funnet.";
-$a->strings["Edit Menu"] = "Endre meny";
-$a->strings["Add or remove entries to this menu"] = "Legg til eller fjern punkter i denne menyen";
-$a->strings["Menu name"] = "Menynavn";
-$a->strings["Must be unique, only seen by you"] = "MƄ vƦre unik, ses bare av deg";
-$a->strings["Menu title"] = "Menytittel";
-$a->strings["Menu title as seen by others"] = "Menytittelen andre ser";
-$a->strings["Allow bookmarks"] = "Tillat bokmerker";
-$a->strings["Unable to lookup recipient."] = "Ikke i stand til Ƅ slƄ opp mottaker.";
-$a->strings["Unable to communicate with requested channel."] = "Ikke i stand til Ć„ kommunisere med forespurt kanal.";
-$a->strings["Cannot verify requested channel."] = "Kan ikke bekrefte forespurt kanal.";
-$a->strings["Selected channel has private message restrictions. Send failed."] = "Valgt kanal har restriksjoner for private meldinger. Sending feilet.";
-$a->strings["Messages"] = "Meldinger";
-$a->strings["Message recalled."] = "Innlegg tilbakekalt.";
-$a->strings["Conversation removed."] = "Samtale fjernet.";
-$a->strings["Requested channel is not in this network"] = "Forespurt kanal er ikke tilgjengelig i dette nettverket.";
-$a->strings["Send Private Message"] = "Send privat melding";
-$a->strings["To:"] = "Til:";
-$a->strings["Subject:"] = "Emne:";
-$a->strings["Send"] = "Send";
-$a->strings["Delete message"] = "Slett melding";
-$a->strings["Delivery report"] = "Leveringsrapport";
-$a->strings["Recall message"] = "Tilbakekall innlegg";
-$a->strings["Message has been recalled."] = "Innlegget har blitt tilbakekalt.";
-$a->strings["Delete Conversation"] = "Slett samtale";
-$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Ingen sikret kommunikasjon tilgjengelig. Du kan <strong>muligens</strong> greie Ć„ svare via senderens profilside.";
-$a->strings["Send Reply"] = "Send svar";
-$a->strings["Your message for %s (%s):"] = "Din melding til %s (%s):";
-$a->strings["Documentation Search"] = "SĆøk i dokumentasjon";
-$a->strings["Help:"] = "Hjelp:";
-$a->strings["Not Found"] = "Ikke funnet";
-$a->strings["\$Projectname Documentation"] = "\$Projectname dokumentasjon";
-$a->strings["No service class restrictions found."] = "Ingen restriksjoner er funnet i tjenesteklasse.";
+$a->strings["\$Projectname Server - Setup"] = "\$Projectname-tjener - oppsett";
+$a->strings["Could not connect to database."] = "Fikk ikke kontakt med databasen.";
+$a->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.";
+$a->strings["Could not create table."] = "Kunne ikke lage tabellen.";
+$a->strings["Your site database has been installed."] = "Databasen til ditt nettsted har blitt installert.";
+$a->strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Du mƄ kanskje importere filen \"install/schmea_xxx.sql\" manuelt ved Ƅ bruke en databaseklient.";
+$a->strings["Please see the file \"install/INSTALL.txt\"."] = "Vennligst les filen \"install/INSTALL.txt\".";
+$a->strings["System check"] = "Systemsjekk";
+$a->strings["Check again"] = "Sjekk igjen";
+$a->strings["Database connection"] = "Databaseforbindelse";
+$a->strings["In order to install \$Projectname we need to know how to connect to your database."] = "For Ƅ installere \$Projectname mƄ du oppgi hvordan din database kan kontaktes.";
+$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Vennligst kontakt din nettstedstilbyder eller nettstedsadministrator hvis du har spĆørsmĆ„l om disse innstillingene.";
+$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Databasen du oppgir nedenfor mĆ„ finnes pĆ„ forhĆ„nd. Hvis den ikke finnes, vennligst lag den fĆør du fortsetter.";
+$a->strings["Database Server Name"] = "Navn pƄ databasetjener";
+$a->strings["Default is 127.0.0.1"] = "Standard er 127.0.0.1";
+$a->strings["Database Port"] = "Databaseport";
+$a->strings["Communication port number - use 0 for default"] = "Kommunikasjonsportnummer - bruk 0 for standard";
+$a->strings["Database Login Name"] = "Database innloggingsnavn";
+$a->strings["Database Login Password"] = "Database innloggingspassord";
+$a->strings["Database Name"] = "Databasenavn";
+$a->strings["Database Type"] = "Databasetype";
+$a->strings["Site administrator email address"] = "E-postadressen til administrator ved nettstedet";
+$a->strings["Your account email address must match this in order to use the web admin panel."] = "Din konto sin e-postadresse mƄ vƦre lik denne for Ƅ kunne bruke web-administrasjonspanelet.";
+$a->strings["Website URL"] = "Nettstedets URL";
+$a->strings["Please use SSL (https) URL if available."] = "Vennligst bruk SSL (https) URL hvis tilgjengelig.";
+$a->strings["Please select a default timezone for your website"] = "Vennligst velg en standard tidssone for ditt nettsted";
+$a->strings["Site settings"] = "Nettstedets innstillinger";
+$a->strings["Enable \$Projectname <strong>advanced</strong> features?"] = "Skru pƄ <strong>avanserte</strong egenskaper i \$Projectname ?";
+$a->strings["Some advanced features, while useful - may be best suited for technically proficient audiences"] = "Noen avanserte egenskaper, som - selv om de er nyttige - kanskje passer bedre for et teknisk kyndig publikum. ";
+$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Fant ikke en kommandolinjeversjon av PHP i webtjenerens sti (PATH).";
+$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = "Hvis du ikke har en kommandolinjeversjon av PHP installert pĆ„ tjeneren, sĆ„ vil du ikke kunne kjĆøre bakgrunnshenting via cron.";
+$a->strings["PHP executable path"] = "PHP-kjĆørefilens sti";
+$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Skriv full sti til kjĆørefilen for PHP. Du kan la denne stĆ„ blank for Ć„ fortsette installasjonen.";
+$a->strings["Command line PHP"] = "Kommandolinje PHP";
+$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Kommandolinjeversjonen av PHP pƄ ditt system har ikke \"register_argc_argv\" pƄskrudd.";
+$a->strings["This is required for message delivery to work."] = "Dette er pƄkrevd for at meldingslevering skal virke.";
+$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
+$a->strings["Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once."] = "Den stĆørste totale opplastingsstĆørrelsen du er tillatt er satt til %s. FilstĆørrelsen pĆ„ en enkelt fil er satt til Ć„ maksimalt vƦre %s. Du har lov til Ć„ laste opp inntil %d filer samtidig.";
+$a->strings["You can adjust these settings in the servers php.ini."] = "Du kan justere disse innstillingene i tjenerens php.ini.";
+$a->strings["PHP upload limits"] = "PHP opplastingsgrenser";
+$a->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";
+$a->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\".";
+$a->strings["Generate encryption keys"] = "Lag krypteringsnĆøkler";
+$a->strings["libCurl PHP module"] = "libCurl PHP-modul";
+$a->strings["GD graphics PHP module"] = "GD graphics PHP-modul";
+$a->strings["OpenSSL PHP module"] = "OpenSSL PHP-modul";
+$a->strings["mysqli or postgres PHP module"] = "MySQLi eller Postgres PHP modul";
+$a->strings["mb_string PHP module"] = "mb_string PHP-modul";
+$a->strings["mcrypt PHP module"] = "mcrypt PHP-modul";
+$a->strings["xml PHP module"] = "XML PHP modul";
+$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite-modul";
+$a->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.";
+$a->strings["proc_open"] = "proc_open";
+$a->strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Feil: proc_open er pƄkrevd, men er enten ikke installert eller har blitt avskrudd i php.ini";
+$a->strings["Error: libCURL PHP module required but not installed."] = "Feil: libCURL PHP-modul er pƄkrevd, men er ikke installert.";
+$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Feil: GD graphics PHP-modul med JPEG-stĆøtte er pĆ„krevd, men er ikke installert.";
+$a->strings["Error: openssl PHP module required but not installed."] = "Feil: openssl PHP-modul er pƄkrevd, men er ikke installert.";
+$a->strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Feil: mysqli eller postgres PHP modul er pƄkrevd, men ingen av dem er installert.";
+$a->strings["Error: mb_string PHP module required but not installed."] = "Feil: mb_string PHP-modul er pƄkrevd, men er ikke installert.";
+$a->strings["Error: mcrypt PHP module required but not installed."] = "Feil: mcrypt PHP-modul er pƄkrevd, men er ikke installert.";
+$a->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.";
+$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Web-installasjonen mƄ kunne lage en fil kalt \".htconfig.php\" i toppkatalogen til web-tjeneren din, men dette fƄr den ikke til.";
+$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Dette er oftest tillatelsesinnstilling, ettersom webtjeneren kanskje kan skrive til filer i din mappe - selv om du kan.";
+$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "PĆ„ slutten av denne prosedyren vil vi gi deg en tekst til Ć„ lagre i en fil kalt .htconfig.php i toppkatalogen til din Red.";
+$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "Alternativt, sĆ„ kan du hoppe over denne prosedyren og gjennomfĆøre en manuell installasjon. Vennligst se filen \"install/INSTALL.txt\" for instruksjoner.";
+$a->strings[".htconfig.php is writable"] = ".htconfig.php kan skrives til";
+$a->strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Red bruker malmotoren Smarty3 for Ć„ gjengi sine webvisninger. Smarty3 kompilerer malene om til PHP for Ć„ framskynde gjengivelsen.";
+$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the Red top level folder."] = "For Ƅ kunne lagre disse kompilerte malene, sƄ mƄ webtjeneren ha skrivetilgang til katalogen %s under Red sin hovedmappe.";
+$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Vennligst sikre at brukeren som din web-tjeneste kjĆører som (for eksempel www-data) har skrivetilgang til denne katalogen.";
+$a->strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "Merknad: som et sikkerhetstiltak bĆør du bare gi webtjerenn skrivetilgang til %s - ikke til malfilene (.tpl) som den inneholder.";
+$a->strings["%s is writable"] = "%s kan skrives til";
+$a->strings["Red uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = "Red bruker lagringsmappen for Ƅ lagre opplastede filer. Webtjeneren trenger Ƅ ha skrivetilgang til lagringsmappen under Red sin toppnivƄmappe.";
+$a->strings["store is writable"] = "lageret kan skrives til";
+$a->strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "SSL-sertifikatet kan ikke kontrolleres. Fiks sertifikatet eller skru av https tilgang til dette nettstedet.";
+$a->strings["If you have https access to your website or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"] = "Hvis du har HTTPS-tilgang til ditt nettsted eller tillater forbindelser til TCP port 443 (HTTPS-porten), sĆ„ Mƅ du bruke nettlesergodkjent sertifkater. Du Mƅ IKKE bruke egensignert sertifikater!";
+$a->strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Denne begrensningen er tatt inn fordi offentlige innlegg fra deg kan for eksempel inneholde referanser til bilder pƄ din egen hub.";
+$a->strings["If your certificate is not recognized, members of other sites (who may themselves have valid certificates) will get a warning message on their own site complaining about security issues."] = "Hvis sertifikatet ditt ikke gjenkjennes, sƄ vil medlemmer pƄ andre nettsteder (som selv kan ha godkjente sertifikater) fƄ en beskjed med en advarsel pƄ deres eget nettsted som klager over sikkerhetsproblemer.";
+$a->strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Dette kan gi problemer med brukervennlighet (ikke bare pƄ ditt eget nettsted), sƄ vi mƄ insistere pƄ dette kravet.";
+$a->strings["Providers are available that issue free certificates which are browser-valid."] = "Det finnes tilbydere som utsteder gratis sertifikater som er gyldige i nettlesere.";
+$a->strings["SSL certificate validation"] = "SSL sertifikat-kontroll";
+$a->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:";
+$a->strings["Url rewrite is working"] = "URL rewrite virker";
+$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Databasekonfigurasjonsfilen \".htconfig.php\" kunne ikke skrives. Vennligst bruk den medfĆølgende teksten for Ć„ lage en konfigurasjonsfil i toppkatalogen av din web-tjener.";
+$a->strings["Errors encountered creating database tables."] = "Feil oppstod under opprettelsen av databasetabeller.";
+$a->strings["<h1>What next</h1>"] = "<h1>Hva gjenstƄr</h1>";
+$a->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.";
+$a->strings["No valid account found."] = "Ingen gyldig konto funnet.";
+$a->strings["Password reset request issued. Check your email."] = "ForespĆørsel om Ć„ tilbakestille passord er mottatt. Sjekk e-posten din.";
+$a->strings["Site Member (%s)"] = "Nettstedsmedlem (%s)";
+$a->strings["Password reset requested at %s"] = "Forespurt om Ć„ tilbakestille passord hos %s";
+$a->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.";
+$a->strings["Password Reset"] = "Tilbakestill passord";
+$a->strings["Your password has been reset as requested."] = "Ditt passord har blitt tilbakestilt som forespurt.";
+$a->strings["Your new password is"] = "Ditt nye passord er";
+$a->strings["Save or copy your new password - and then"] = "Lagre eller kopier ditt nye passord, og deretter kan du";
+$a->strings["click here to login"] = "klikke her for Ć„ logge inn";
+$a->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.";
+$a->strings["Your password has changed at %s"] = "Ditt passord er endret hos %s";
+$a->strings["Forgot your Password?"] = "Glemt passord ditt?";
+$a->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.";
+$a->strings["Email Address"] = "E-postadresse";
+$a->strings["Reset"] = "Tilbakestill";
+$a->strings["Files: shared with me"] = "Filer: delt med meg";
+$a->strings["NEW"] = "NY";
+$a->strings["Remove all files"] = "Fjern alle filer";
+$a->strings["Remove this file"] = "Fjern denne filen";
$a->strings["Version %s"] = "Versjon %s";
$a->strings["Installed plugins/addons/apps:"] = "Installerte tilleggsfunksjoner/tillegg/apper:";
$a->strings["No installed plugins/addons/apps"] = "Ingen installerte tilleggsfunksjoner/tillegg/apper";
@@ -2100,77 +2167,61 @@ $a->strings["Bug reports and issues: please visit"] = "Feilmeldinger og feilrett
$a->strings["\$projectname issues"] = "\$projectname problemer";
$a->strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Forslag, ros og sƄ videre - vennligst e-post \"redmatrix\" hos librelist - punktum com";
$a->strings["Site Administrators"] = "Nettstedsadministratorer";
+$a->strings["Failed to create source. No channel selected."] = "Mislyktes med Ć„ lage kilde. Ingen kanal er valgt.";
+$a->strings["Source created."] = "Kilden er laget.";
+$a->strings["Source updated."] = "Kilden er oppdatert.";
+$a->strings["*"] = "*";
+$a->strings["Manage remote sources of content for your channel."] = "HĆ„ndtere eksterne innholdskilder til din kanal.";
+$a->strings["New Source"] = "Ny kilde";
+$a->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.";
+$a->strings["Only import content with these words (one per line)"] = "Bare importer innhold med disse ordene (ett ord per linje)";
+$a->strings["Leave blank to import all public content"] = "La stƄ tomt for Ƅ importere alt offentlig innhold";
+$a->strings["Channel Name"] = "Kanalnavn";
+$a->strings["Source not found."] = "Kilden ble ikke funnet.";
+$a->strings["Edit Source"] = "Endre kilde";
+$a->strings["Delete Source"] = "Slett kilde";
+$a->strings["Source removed"] = "Kilden er fjernet";
+$a->strings["Unable to remove source."] = "Ikke i stand til Ć„ fjerne kilde.";
+$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s fĆølger %2\$s sin %3\$s";
+$a->strings["%1\$s stopped following %2\$s's %3\$s"] = "%1\$s stopped Ć„ fĆølge %2\$s sin %3\$s";
$a->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.";
-$a->strings["Calendar entries imported."] = "Kalenderhendelsene er importert.";
-$a->strings["No calendar entries found."] = "Ingen kalenderhendelser funnet.";
-$a->strings["Event can not end before it has started."] = "Hendelsen kan ikke slutte fĆør den starter.";
-$a->strings["Unable to generate preview."] = "Klarer ikke Ƅ lage forhƄndsvisning.";
-$a->strings["Event title and start time are required."] = "Hendelsestittel og starttidspunkt er pƄkrevd.";
-$a->strings["Event not found."] = "Hendelsen ble ikke funnet.";
-$a->strings["Edit event titel"] = "Rediger hendelsens tittel";
-$a->strings["Event titel"] = "Hendelsens tittel";
-$a->strings["Categories (comma-separated list)"] = "Kategorier (kommaseparert liste)";
-$a->strings["Edit Category"] = "Endre kategori";
-$a->strings["Category"] = "Kategori";
-$a->strings["Edit start date and time"] = "Endre startdato og tidspunkt";
-$a->strings["Start date and time"] = "Startdato og tidspunkt";
-$a->strings["Finish date and time are not known or not relevant"] = "Sluttdato og tidspunkt er ikke kjent eller ikke relevant";
-$a->strings["Edit finish date and time"] = "Endre sluttdato og tidspunkt";
-$a->strings["Finish date and time"] = "Sluttdato og tidspunkt";
-$a->strings["Adjust for viewer timezone"] = "Juster i forhold til tilskuerens tidssone";
-$a->strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Viktig for hendelser som skjer pƄ et bestemt sted. Ikke praktisk for globale ferier eller fridager.";
-$a->strings["Edit Description"] = "Endre beskrivelse";
-$a->strings["Edit Location"] = "Endre plassering";
-$a->strings["Share this event"] = "Del denne hendelsen";
-$a->strings["Advanced Options"] = "Avanserte alternativer";
-$a->strings["l, F j"] = "l, F j";
-$a->strings["Edit event"] = "Endre hendelse";
-$a->strings["Delete event"] = "Slett hendelse";
-$a->strings["calendar"] = "kalender";
-$a->strings["Edit Event"] = "Endre hendelse";
-$a->strings["Create Event"] = "Lag hendelse";
-$a->strings["Today"] = "Idag";
-$a->strings["Event removed"] = "Hendelse slettet";
-$a->strings["Failed to remove event"] = "Mislyktes med Ć„ slette hendelse";
-$a->strings["Invalid profile identifier."] = "Ugyldig profil-identifikator.";
-$a->strings["Profile Visibility Editor"] = "Endre profilsynlighet";
-$a->strings["Click on a contact to add or remove."] = "Klikk pƄ en kontakt for Ƅ legge til eller fjerne.";
-$a->strings["Visible To"] = "Synlig for";
-$a->strings["Unable to create element."] = "Klarer ikke Ć„ lage element.";
-$a->strings["Unable to update menu element."] = "Ikke i stand til Ć„ oppdatere menyelement.";
-$a->strings["Unable to add menu element."] = "Ikke i stand til Ć„ legge til menyelement.";
-$a->strings["Menu Item Permissions"] = "Menyelement Tillatelser";
-$a->strings["Link Name"] = "Lenkenavn";
-$a->strings["Link or Submenu Target"] = "Lenke- eller undermeny-mƄl";
-$a->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";
-$a->strings["Use magic-auth if available"] = "Bruk magic-autent hvis mulig";
-$a->strings["Open link in new window"] = "ƅpne lenke i nytt vindu";
-$a->strings["Order in list"] = "Ordne i liste";
-$a->strings["Higher numbers will sink to bottom of listing"] = "HĆøyere tall vil synke mot bunnen av listen";
-$a->strings["Submit and finish"] = "Send inn og avslutt";
-$a->strings["Submit and continue"] = "Send inn og fortsett";
-$a->strings["Menu:"] = "Meny:";
-$a->strings["Link Target"] = "LenkemƄl";
-$a->strings["Edit menu"] = "Endre meny";
-$a->strings["Edit element"] = "Endre element";
-$a->strings["Drop element"] = "Slett element";
-$a->strings["New element"] = "Nytt element";
-$a->strings["Edit this menu container"] = "Endre denne menybeholderen";
-$a->strings["Add menu element"] = "Legg til menyelement";
-$a->strings["Delete this menu item"] = "Slett dette menyelementet";
-$a->strings["Edit this menu item"] = "Endre dette menyelementet";
-$a->strings["Menu item not found."] = "Menyelement ble ikke funnet.";
-$a->strings["Menu item deleted."] = "Menyelement slettet.";
-$a->strings["Menu item could not be deleted."] = "Menyelement kunne ikke bli slettet.";
-$a->strings["Edit Menu Element"] = "Endre menyelement";
-$a->strings["Link text"] = "Lenketekst";
-$a->strings["Who likes me?"] = "Hvem liker meg?";
-$a->strings["Files: shared with me"] = "Filer: delt med meg";
-$a->strings["NEW"] = "NY";
-$a->strings["Remove all files"] = "Fjern alle filer";
-$a->strings["Remove this file"] = "Fjern denne filen";
+$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s merket %3\$s til %2\$s med %4\$s";
+$a->strings["Tag removed"] = "Merkelapp fjernet";
+$a->strings["Remove Item Tag"] = "Fjern merkelapp fra element";
+$a->strings["Select a tag to remove: "] = "Velg merkelapp Ć„ fjerne:";
+$a->strings["Thing updated"] = "Tingen er oppdatert";
+$a->strings["Object store: failed"] = "Objektlagring: mislyktes";
+$a->strings["Thing added"] = "Ting lagt til";
+$a->strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s";
+$a->strings["Show Thing"] = "Vis ting";
+$a->strings["item not found."] = "element ble ikke funnet.";
+$a->strings["Edit Thing"] = "Endre ting";
+$a->strings["Select a profile"] = "Velg en profil";
+$a->strings["Post an activity"] = "Legg inn en aktivitet";
+$a->strings["Only sends to viewers of the applicable profile"] = "Sender bare til seere av den aktuelle profilen";
+$a->strings["Name of thing e.g. something"] = "Navn pƄ ting for eksempel noe";
+$a->strings["URL of thing (optional)"] = "URL til ting (valgfritt)";
+$a->strings["URL for photo of thing (optional)"] = "URL til bilde av ting (valgfritt)";
+$a->strings["Add Thing to your Profile"] = "Legg til ting i din profil";
+$a->strings["Export Channel"] = "Eksporter kanal";
+$a->strings["Export your basic channel information to a file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new server hub, but does not contain your content."] = "Eksporter grunnleggende informasjon om kanalen din til en fil. Denne er en sikkerhetskopi av dine forbindelser, tillatelser, profil og grunnleggende data, som kan brukes til Ć„ importere dine data til en ny hub, men den tar ikke med innholdet.";
+$a->strings["Export Content"] = "Eksporter innhold";
+$a->strings["Export your channel information and recent content to a JSON backup that can be restored or imported to another server hub. This backs up all of your connections, permissions, profile data and several months of posts. This file may be VERY large. Please be patient - it may take several minutes for this download to begin."] = "Eksporter din kanalinformasjon og det nyeste innholdet til en JSON-sikkerhetskopi, som kan gjenopprettes eller importeres til en annen hub. Denne lager en sikkerhetskopi av alle dine forbindelser, tillatelser, profildata og flere mĆ„neder av innholdet ditt. Denne filen kan vƦre SVƆRT stor. Vennligst vƦr tĆ„lmodig - det kan ta flere minutter fĆør denne nedlastningen begynner.";
+$a->strings["Export your posts from a given year."] = "Eksporter dine innlegg fra et bestemt Ć„r";
+$a->strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Du kan ogsĆ„ eksportere dine innlegg og samtaler for et bestemt Ć„r eller mĆ„ned. Juster datoen i din nettlesers adresselinje for Ć„ velge andre datoer. Hvis eksporten feiler (muligens pĆ„ grunn av utilstrekkelig minne pĆ„ din hub), vennligst prĆøv igjen med et mer begrenset datoomrĆ„de.";
+$a->strings["To select all posts for a given year, such as this year, visit <a href=\"%1\$s\">%2\$s</a>"] = "For Ć„ velge alle innlegg for et gitt Ć„r, slik som iĆ„r, besĆøk <a href=\"%1\$s\">%2\$s</a>";
+$a->strings["To select all posts for a given month, such as January of this year, visit <a href=\"%1\$s\">%2\$s</a>"] = "For Ć„ velge alle innlegg fra en gitt mĆ„ned, slik som januar i Ć„r, besĆøk <a href=\"%1\$s\">%2\$s</a>";
+$a->strings["These content files may be imported or restored by visiting <a href=\"%1\$s\">%2\$s</a> on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Disse innholdsfilene kan importeres eller gjenopprettes ved Ć„ besĆøke <a href=\"%1\$s\">%2\$s</a> pĆ„ ethvert nettsted som inneholder din kanal. For best resultat, vennligst importer eller gjenopprett disse etter dato (eldste fĆørst).";
$a->strings["No connections."] = "Ingen forbindelser.";
$a->strings["Visit %s's profile [%s]"] = "BesĆøk %s sin profil [%s]";
+$a->strings["View Connections"] = "Vis forbindelser";
+$a->strings["Source of Item"] = "Kilde til element";
+$a->strings["Page Title"] = "Sidetittel";
+$a->strings["Xchan Lookup"] = "Xchan oppslag";
+$a->strings["Lookup xchan beginning with (or webbie): "] = "SlƄ opp xchan som begynner med (eller webbie):";
+$a->strings["Cover Photos"] = "Forsidebilder";
+$a->strings["Upload Cover Photo"] = "Last opp forsidebilde";
+$a->strings["Permissions denied."] = "Tillatelse avvist.";
$a->strings["Focus (Hubzilla default)"] = "Focus (Hubzilla standardtema)";
$a->strings["Theme settings"] = "Temainnstillinger";
$a->strings["Select scheme"] = "Velg skjema";
@@ -2205,7 +2256,6 @@ $a->strings["Left align page content"] = "Venstrejuster sideinnhold";
$a->strings["Set minimum opacity of nav bar - to hide it"] = "Angi minste dekkevne for navigasjonslinjen - for Ć„ skjule den";
$a->strings["Set size of conversation author photo"] = "Angi stĆørrelsen for samtalens forfatterbilde";
$a->strings["Set size of followup author photos"] = "Angi stĆørrelsen pĆ„ forfatterbilder ved oppfĆølging";
-$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Fjernautentisering blokkert. Du er logget inn pĆ„ dette nettstedet lokalt. Vennligst logg ut og prĆøv pĆ„ nytt.";
$a->strings["Update %s failed. See error logs."] = "Oppdatering %s mislyktes. Se feilloggen.";
$a->strings["Update Error at %s"] = "Oppdateringsfeil ved %s";
$a->strings["Create an account to access services and applications within the Hubzilla"] = "Lag en konto for Ƅ fƄ tilgang til tjenester og programmer i Hubzilla";
diff --git a/view/nl/hmessages.po b/view/nl/hmessages.po
index d6e9ead43..9950f97b5 100644
--- a/view/nl/hmessages.po
+++ b/view/nl/hmessages.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Redmatrix\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-02-26 00:03-0800\n"
-"PO-Revision-Date: 2016-02-27 14:42+0000\n"
+"POT-Creation-Date: 2016-03-04 00:03-0800\n"
+"PO-Revision-Date: 2016-03-07 19:23+0000\n"
"Last-Translator: jeroenpraat <jeroenpraat@xs4all.nl>\n"
"Language-Team: Dutch (http://www.transifex.com/Friendica/red-matrix/language/nl/)\n"
"MIME-Version: 1.0\n"
@@ -59,7 +59,7 @@ msgid "Schedule Outbox"
msgstr "Planning-postvak UIT"
#: ../../Zotlabs/Storage/Browser.php:164 ../../include/apps.php:360
-#: ../../include/apps.php:415 ../../include/widgets.php:1410
+#: ../../include/apps.php:415 ../../include/widgets.php:1430
#: ../../include/conversation.php:1037 ../../mod/photos.php:766
#: ../../mod/photos.php:1209
msgid "Unknown"
@@ -86,7 +86,7 @@ msgid "Create"
msgstr "Aanmaken"
#: ../../Zotlabs/Storage/Browser.php:231 ../../Zotlabs/Storage/Browser.php:305
-#: ../../include/widgets.php:1423 ../../mod/photos.php:793
+#: ../../include/widgets.php:1443 ../../mod/photos.php:793
#: ../../mod/photos.php:1333 ../../mod/profile_photo.php:401
#: ../../mod/cover_photo.php:353
msgid "Upload"
@@ -113,12 +113,13 @@ msgstr "Laatst gewijzigd"
#: ../../Zotlabs/Storage/Browser.php:240 ../../include/apps.php:259
#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36
-#: ../../include/menu.php:108 ../../include/identity.php:1352
-#: ../../include/ItemObject.php:100 ../../mod/blocks.php:153
-#: ../../mod/connections.php:286 ../../mod/connections.php:306
-#: ../../mod/editblock.php:135 ../../mod/editlayout.php:134
-#: ../../mod/editpost.php:112 ../../mod/editwebpage.php:176
-#: ../../mod/layouts.php:183 ../../mod/menu.php:108 ../../mod/settings.php:659
+#: ../../include/menu.php:108 ../../include/identity.php:924
+#: ../../include/identity.php:928 ../../include/ItemObject.php:100
+#: ../../mod/blocks.php:153 ../../mod/connections.php:286
+#: ../../mod/connections.php:306 ../../mod/editblock.php:135
+#: ../../mod/editlayout.php:134 ../../mod/editpost.php:112
+#: ../../mod/editwebpage.php:176 ../../mod/layouts.php:183
+#: ../../mod/menu.php:108 ../../mod/admin.php:1767 ../../mod/settings.php:659
#: ../../mod/thing.php:256 ../../mod/webpages.php:183
msgid "Edit"
msgstr "Bewerken"
@@ -126,10 +127,11 @@ msgstr "Bewerken"
#: ../../Zotlabs/Storage/Browser.php:241 ../../include/apps.php:260
#: ../../include/conversation.php:657 ../../include/ItemObject.php:120
#: ../../mod/blocks.php:155 ../../mod/connections.php:259
-#: ../../mod/connedit.php:562 ../../mod/editblock.php:181
+#: ../../mod/connedit.php:569 ../../mod/editblock.php:181
#: ../../mod/editlayout.php:179 ../../mod/editwebpage.php:223
#: ../../mod/group.php:173 ../../mod/photos.php:1140 ../../mod/admin.php:993
-#: ../../mod/admin.php:1152 ../../mod/settings.php:660 ../../mod/thing.php:257
+#: ../../mod/admin.php:1152 ../../mod/admin.php:1768
+#: ../../mod/settings.php:660 ../../mod/thing.php:257
#: ../../mod/webpages.php:185
msgid "Delete"
msgstr "Verwijderen"
@@ -156,13 +158,13 @@ msgstr "Nieuwe map aanmaken"
msgid "Upload file"
msgstr "Bestand uploaden"
-#: ../../Zotlabs/Web/Router.php:45 ../../include/attach.php:140
-#: ../../include/attach.php:188 ../../include/attach.php:251
-#: ../../include/attach.php:265 ../../include/attach.php:272
-#: ../../include/attach.php:337 ../../include/attach.php:351
-#: ../../include/attach.php:358 ../../include/attach.php:436
-#: ../../include/attach.php:888 ../../include/attach.php:959
-#: ../../include/attach.php:1111 ../../include/chat.php:133
+#: ../../Zotlabs/Web/Router.php:45 ../../include/chat.php:133
+#: ../../include/attach.php:141 ../../include/attach.php:189
+#: ../../include/attach.php:252 ../../include/attach.php:266
+#: ../../include/attach.php:273 ../../include/attach.php:338
+#: ../../include/attach.php:352 ../../include/attach.php:359
+#: ../../include/attach.php:437 ../../include/attach.php:889
+#: ../../include/attach.php:960 ../../include/attach.php:1112
#: ../../include/photos.php:29 ../../include/items.php:4575
#: ../../index.php:180 ../../mod/achievements.php:30 ../../mod/api.php:26
#: ../../mod/api.php:31 ../../mod/appman.php:66 ../../mod/authtest.php:13
@@ -171,7 +173,7 @@ msgstr "Bestand uploaden"
#: ../../mod/channel.php:100 ../../mod/channel.php:217
#: ../../mod/channel.php:257 ../../mod/chat.php:94 ../../mod/chat.php:99
#: ../../mod/common.php:35 ../../mod/connections.php:29
-#: ../../mod/connedit.php:355 ../../mod/editblock.php:65
+#: ../../mod/connedit.php:362 ../../mod/editblock.php:65
#: ../../mod/editlayout.php:63 ../../mod/editlayout.php:87
#: ../../mod/editpost.php:13 ../../mod/editwebpage.php:64
#: ../../mod/editwebpage.php:86 ../../mod/editwebpage.php:101
@@ -180,7 +182,7 @@ msgstr "Bestand uploaden"
#: ../../mod/filestorage.php:88 ../../mod/filestorage.php:115
#: ../../mod/fsuggest.php:78 ../../mod/group.php:9 ../../mod/id.php:71
#: ../../mod/invite.php:13 ../../mod/invite.php:87 ../../mod/item.php:206
-#: ../../mod/item.php:214 ../../mod/item.php:1056 ../../mod/layouts.php:69
+#: ../../mod/item.php:214 ../../mod/item.php:1069 ../../mod/layouts.php:69
#: ../../mod/layouts.php:76 ../../mod/layouts.php:87 ../../mod/like.php:177
#: ../../mod/locs.php:83 ../../mod/mail.php:126 ../../mod/manage.php:6
#: ../../mod/menu.php:74 ../../mod/message.php:16 ../../mod/mitem.php:111
@@ -193,7 +195,7 @@ msgstr "Bestand uploaden"
#: ../../mod/profiles.php:198 ../../mod/profiles.php:584
#: ../../mod/rate.php:111 ../../mod/register.php:73 ../../mod/regmod.php:17
#: ../../mod/service_limits.php:7 ../../mod/settings.php:579
-#: ../../mod/setup.php:230 ../../mod/sharedwithme.php:7
+#: ../../mod/setup.php:233 ../../mod/sharedwithme.php:7
#: ../../mod/sources.php:66 ../../mod/suggest.php:26 ../../mod/thing.php:270
#: ../../mod/thing.php:290 ../../mod/thing.php:327
#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27
@@ -212,7 +214,7 @@ msgid "Page not found."
msgstr "Pagina niet gevonden."
#: ../../include/Contact.php:101 ../../include/widgets.php:147
-#: ../../include/widgets.php:185 ../../include/identity.php:954
+#: ../../include/widgets.php:185 ../../include/identity.php:1003
#: ../../include/conversation.php:961 ../../mod/directory.php:321
#: ../../mod/match.php:64 ../../mod/suggest.php:52
msgid "Connect"
@@ -239,7 +241,7 @@ msgstr "Geen gebruikersnaam in het importbestand gevonden."
msgid "Unable to create a unique channel address. Import failed."
msgstr "Niet in staat om een uniek kanaaladres aan te maken. Importeren is mislukt."
-#: ../../include/Import/import_diaspora.php:143 ../../mod/import.php:496
+#: ../../include/Import/import_diaspora.php:143 ../../mod/import.php:511
msgid "Import completed."
msgstr "Import voltooid."
@@ -415,7 +417,7 @@ msgstr "Webpagina's"
msgid "Channel Home"
msgstr "Jouw kanaal"
-#: ../../include/apps.php:138 ../../include/identity.php:1359
+#: ../../include/apps.php:138 ../../include/identity.php:1387
#: ../../mod/profperm.php:112
msgid "Profile"
msgstr "Profiel"
@@ -478,7 +480,7 @@ msgstr "Willekeurig kanaal"
msgid "Invite"
msgstr "Uitnodigen "
-#: ../../include/apps.php:152 ../../include/widgets.php:1296
+#: ../../include/apps.php:152 ../../include/widgets.php:1316
msgid "Features"
msgstr "Extra functies"
@@ -508,68 +510,6 @@ msgstr "Installeren"
msgid "Purchase"
msgstr "Aanschaffen"
-#: ../../include/attach.php:246 ../../include/attach.php:332
-msgid "Item was not found."
-msgstr "Item niet gevonden"
-
-#: ../../include/attach.php:496
-msgid "No source file."
-msgstr "Geen bronbestand."
-
-#: ../../include/attach.php:518
-msgid "Cannot locate file to replace"
-msgstr "Kan het te vervangen bestand niet vinden"
-
-#: ../../include/attach.php:536
-msgid "Cannot locate file to revise/update"
-msgstr "Kan het bestand wat aangepast moet worden niet vinden"
-
-#: ../../include/attach.php:671
-#, php-format
-msgid "File exceeds size limit of %d"
-msgstr "Bestand is groter dan de toegelaten %d"
-
-#: ../../include/attach.php:685
-#, php-format
-msgid "You have reached your limit of %1$.0f Mbytes attachment storage."
-msgstr "Je hebt jouw limiet van %1$.0f MB opslagruimte voor bijlagen bereikt."
-
-#: ../../include/attach.php:841
-msgid "File upload failed. Possible system limit or action terminated."
-msgstr "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken."
-
-#: ../../include/attach.php:854
-msgid "Stored file could not be verified. Upload failed."
-msgstr "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt."
-
-#: ../../include/attach.php:902 ../../include/attach.php:918
-msgid "Path not available."
-msgstr "Pad niet beschikbaar."
-
-#: ../../include/attach.php:964 ../../include/attach.php:1116
-msgid "Empty pathname"
-msgstr "Padnaam leeg"
-
-#: ../../include/attach.php:990
-msgid "duplicate filename or path"
-msgstr "dubbele bestandsnaam of pad"
-
-#: ../../include/attach.php:1012
-msgid "Path not found."
-msgstr "Pad niet gevonden"
-
-#: ../../include/attach.php:1070
-msgid "mkdir failed."
-msgstr "directory aanmaken (mkdir) mislukt."
-
-#: ../../include/attach.php:1074
-msgid "database storage failed."
-msgstr "opslag in database mislukt."
-
-#: ../../include/attach.php:1122
-msgid "Empty path"
-msgstr "Ontbrekend bestandspad"
-
#: ../../include/auth.php:132
msgid "Logged out."
msgstr "Uitgelogd."
@@ -606,74 +546,11 @@ msgid "Finishes:"
msgstr "Einde:"
#: ../../include/bb2diaspora.php:487 ../../include/event.php:52
-#: ../../include/text.php:1433 ../../include/identity.php:1005
+#: ../../include/text.php:1433 ../../include/identity.php:1018
#: ../../mod/directory.php:307
msgid "Location:"
msgstr "Plaats:"
-#: ../../include/bbcode.php:123 ../../include/bbcode.php:794
-#: ../../include/bbcode.php:797 ../../include/bbcode.php:802
-#: ../../include/bbcode.php:805 ../../include/bbcode.php:808
-#: ../../include/bbcode.php:811 ../../include/bbcode.php:816
-#: ../../include/bbcode.php:819 ../../include/bbcode.php:824
-#: ../../include/bbcode.php:827 ../../include/bbcode.php:830
-#: ../../include/bbcode.php:833
-msgid "Image/photo"
-msgstr "Afbeelding/foto"
-
-#: ../../include/bbcode.php:162 ../../include/bbcode.php:844
-msgid "Encrypted content"
-msgstr "Versleutelde inhoud"
-
-#: ../../include/bbcode.php:179
-#, php-format
-msgid "Install %s element: "
-msgstr "Installeer %s-element: "
-
-#: ../../include/bbcode.php:183
-#, php-format
-msgid ""
-"This post contains an installable %s element, however you lack permissions "
-"to install it on this site."
-msgstr "Dit bericht heeft een te installeren %s-element, maar je hebt geen permissies om het op deze hub te installeren."
-
-#: ../../include/bbcode.php:193 ../../mod/impel.php:37
-msgid "webpage"
-msgstr "Webpagina"
-
-#: ../../include/bbcode.php:196 ../../mod/impel.php:47
-msgid "layout"
-msgstr "lay-out"
-
-#: ../../include/bbcode.php:199 ../../mod/impel.php:42
-msgid "block"
-msgstr "blok"
-
-#: ../../include/bbcode.php:202 ../../mod/impel.php:54
-msgid "menu"
-msgstr "menu"
-
-#: ../../include/bbcode.php:257
-#, php-format
-msgid "%1$s wrote the following %2$s %3$s"
-msgstr "%1$s schreef het volgende %2$s %3$s"
-
-#: ../../include/bbcode.php:259 ../../mod/tagger.php:51
-msgid "post"
-msgstr "bericht"
-
-#: ../../include/bbcode.php:547
-msgid "Different viewers will see this text differently"
-msgstr "Deze tekst wordt per persoon anders weergeven."
-
-#: ../../include/bbcode.php:755
-msgid "$1 spoiler"
-msgstr "$1 spoiler"
-
-#: ../../include/bbcode.php:782
-msgid "$1 wrote:"
-msgstr "$1 schreef:"
-
#: ../../include/bookmarks.php:35
#, php-format
msgid "%1$s's bookmarks"
@@ -752,7 +629,7 @@ msgstr "Vrienden uitnodigen"
msgid "Advanced example: name=fred and country=iceland"
msgstr "Geavanceerd voorbeeld (Engels): name=jan en country=nederland"
-#: ../../include/contact_widgets.php:57 ../../include/features.php:96
+#: ../../include/contact_widgets.php:57 ../../include/features.php:97
#: ../../include/widgets.php:314
msgid "Saved Folders"
msgstr "Bewaarde mappen"
@@ -793,7 +670,7 @@ msgstr "Veilig zoeken"
#: ../../include/dir_fns.php:141 ../../include/dir_fns.php:142
#: ../../include/dir_fns.php:143 ../../mod/api.php:102
-#: ../../mod/connedit.php:368 ../../mod/connedit.php:646
+#: ../../mod/connedit.php:375 ../../mod/connedit.php:653
#: ../../mod/events.php:454 ../../mod/events.php:455 ../../mod/events.php:464
#: ../../mod/filestorage.php:151 ../../mod/filestorage.php:159
#: ../../mod/menu.php:96 ../../mod/menu.php:153 ../../mod/mitem.php:154
@@ -806,7 +683,7 @@ msgstr "Nee"
#: ../../include/dir_fns.php:141 ../../include/dir_fns.php:142
#: ../../include/dir_fns.php:143 ../../mod/api.php:101
-#: ../../mod/connedit.php:368 ../../mod/events.php:454
+#: ../../mod/connedit.php:375 ../../mod/events.php:454
#: ../../mod/events.php:455 ../../mod/events.php:464
#: ../../mod/filestorage.php:151 ../../mod/filestorage.php:159
#: ../../mod/menu.php:96 ../../mod/menu.php:153 ../../mod/mitem.php:154
@@ -962,7 +839,7 @@ msgstr "Niets nieuw hier"
msgid "Rate This Channel (this is public)"
msgstr "Beoordeel dit kanaal (dit is openbaar)"
-#: ../../include/js_strings.php:20 ../../mod/connedit.php:705
+#: ../../include/js_strings.php:20 ../../mod/connedit.php:712
#: ../../mod/rate.php:157
msgid "Rating"
msgstr "Beoordeling"
@@ -974,10 +851,10 @@ msgstr "Omschrijving (optioneel)"
#: ../../include/js_strings.php:22 ../../include/widgets.php:702
#: ../../include/widgets.php:714 ../../include/ItemObject.php:703
#: ../../mod/appman.php:99 ../../mod/chat.php:184 ../../mod/chat.php:213
-#: ../../mod/connect.php:93 ../../mod/connedit.php:722
+#: ../../mod/connect.php:93 ../../mod/connedit.php:729
#: ../../mod/events.php:468 ../../mod/events.php:665
#: ../../mod/filestorage.php:156 ../../mod/fsuggest.php:108
-#: ../../mod/group.php:81 ../../mod/import.php:536
+#: ../../mod/group.php:81 ../../mod/import.php:551
#: ../../mod/import_items.php:116 ../../mod/invite.php:142
#: ../../mod/locs.php:116 ../../mod/mail.php:380 ../../mod/mitem.php:231
#: ../../mod/mood.php:135 ../../mod/pconfig.php:108 ../../mod/pdledit.php:62
@@ -985,13 +862,14 @@ msgstr "Omschrijving (optioneel)"
#: ../../mod/photos.php:1059 ../../mod/photos.php:1177 ../../mod/admin.php:457
#: ../../mod/admin.php:646 ../../mod/admin.php:721 ../../mod/admin.php:986
#: ../../mod/admin.php:1150 ../../mod/admin.php:1326 ../../mod/admin.php:1521
-#: ../../mod/admin.php:1606 ../../mod/poke.php:182 ../../mod/profiles.php:675
-#: ../../mod/rate.php:168 ../../mod/settings.php:597
-#: ../../mod/settings.php:710 ../../mod/settings.php:738
-#: ../../mod/settings.php:761 ../../mod/settings.php:849
-#: ../../mod/settings.php:1041 ../../mod/setup.php:333 ../../mod/setup.php:374
-#: ../../mod/sources.php:104 ../../mod/sources.php:138 ../../mod/thing.php:312
-#: ../../mod/thing.php:358 ../../mod/xchan.php:11 ../../mod/cal.php:332
+#: ../../mod/admin.php:1606 ../../mod/admin.php:1770 ../../mod/poke.php:182
+#: ../../mod/profiles.php:675 ../../mod/rate.php:168
+#: ../../mod/settings.php:597 ../../mod/settings.php:710
+#: ../../mod/settings.php:738 ../../mod/settings.php:761
+#: ../../mod/settings.php:849 ../../mod/settings.php:1041
+#: ../../mod/setup.php:336 ../../mod/setup.php:377 ../../mod/sources.php:104
+#: ../../mod/sources.php:138 ../../mod/thing.php:312 ../../mod/thing.php:358
+#: ../../mod/xchan.php:11 ../../mod/cal.php:332
#: ../../view/theme/redbasic/php/config.php:99
msgid "Submit"
msgstr "Opslaan"
@@ -1294,7 +1172,7 @@ msgid "Your posts and conversations"
msgstr "Jouw kanaal"
#: ../../include/nav.php:86 ../../include/conversation.php:959
-#: ../../mod/connedit.php:509
+#: ../../mod/connedit.php:516
msgid "View Profile"
msgstr "Profiel weergeven"
@@ -1302,7 +1180,7 @@ msgstr "Profiel weergeven"
msgid "Your profile page"
msgstr "Jouw profielpagina"
-#: ../../include/nav.php:88
+#: ../../include/nav.php:88 ../../include/identity.php:924
msgid "Edit Profiles"
msgstr "Bewerk profielen"
@@ -1310,7 +1188,7 @@ msgstr "Bewerk profielen"
msgid "Manage/Edit profiles"
msgstr "Beheer/wijzig profielen"
-#: ../../include/nav.php:90 ../../include/identity.php:977
+#: ../../include/nav.php:90 ../../include/identity.php:928
msgid "Edit Profile"
msgstr "Profiel bewerken"
@@ -1469,7 +1347,7 @@ msgstr "Beheer je kanalen"
msgid "Account/Channel Settings"
msgstr "Account-/kanaal-instellingen"
-#: ../../include/nav.php:213 ../../include/widgets.php:1323
+#: ../../include/nav.php:213 ../../include/widgets.php:1343
msgid "Admin"
msgstr "Beheer"
@@ -1544,6 +1422,69 @@ msgstr "Bewerkt"
msgid "Profile Photos"
msgstr "Profielfoto's"
+#: ../../include/bbcode.php:123 ../../include/bbcode.php:798
+#: ../../include/bbcode.php:801 ../../include/bbcode.php:806
+#: ../../include/bbcode.php:809 ../../include/bbcode.php:812
+#: ../../include/bbcode.php:815 ../../include/bbcode.php:820
+#: ../../include/bbcode.php:823 ../../include/bbcode.php:828
+#: ../../include/bbcode.php:831 ../../include/bbcode.php:834
+#: ../../include/bbcode.php:837
+msgid "Image/photo"
+msgstr "Afbeelding/foto"
+
+#: ../../include/bbcode.php:162 ../../include/bbcode.php:848
+msgid "Encrypted content"
+msgstr "Versleutelde inhoud"
+
+#: ../../include/bbcode.php:179
+#, php-format
+msgid "Install %s element: "
+msgstr "Installeer %s-element: "
+
+#: ../../include/bbcode.php:183
+#, php-format
+msgid ""
+"This post contains an installable %s element, however you lack permissions "
+"to install it on this site."
+msgstr "Dit bericht heeft een te installeren %s-element, maar je hebt geen permissies om het op deze hub te installeren."
+
+#: ../../include/bbcode.php:193 ../../mod/impel.php:37
+msgid "webpage"
+msgstr "Webpagina"
+
+#: ../../include/bbcode.php:196 ../../mod/impel.php:47
+msgid "layout"
+msgstr "lay-out"
+
+#: ../../include/bbcode.php:199 ../../mod/impel.php:42
+msgid "block"
+msgstr "blok"
+
+#: ../../include/bbcode.php:202 ../../mod/impel.php:54
+msgid "menu"
+msgstr "menu"
+
+#: ../../include/bbcode.php:257
+#, php-format
+msgid "%1$s wrote the following %2$s %3$s"
+msgstr "%1$s schreef het volgende %2$s %3$s"
+
+#: ../../include/bbcode.php:259 ../../mod/tagger.php:51
+msgid "post"
+msgstr "bericht"
+
+#: ../../include/bbcode.php:547
+msgid "Different viewers will see this text differently"
+msgstr "Deze tekst wordt per persoon anders weergeven."
+
+#: ../../include/bbcode.php:759
+msgid "$1 spoiler"
+msgstr "$1 spoiler"
+
+#: ../../include/bbcode.php:786
+msgid "$1 wrote:"
+msgstr "$1 schreef:"
+
#: ../../include/profile_selectors.php:6
#: ../../include/profile_selectors.php:23 ../../mod/id.php:103
msgid "Male"
@@ -1699,7 +1640,7 @@ msgstr "Seksverslaafd"
#: ../../include/profile_selectors.php:80 ../../include/widgets.php:451
#: ../../include/identity.php:390 ../../include/identity.php:391
-#: ../../include/identity.php:398 ../../mod/connedit.php:584
+#: ../../include/identity.php:398 ../../mod/connedit.php:591
#: ../../mod/settings.php:349 ../../mod/settings.php:353
#: ../../mod/settings.php:354 ../../mod/settings.php:357
#: ../../mod/settings.php:368
@@ -1842,7 +1783,7 @@ msgstr "vind dit niet leuk"
msgid "dislikes"
msgstr "vindt dit niet leuk"
-#: ../../include/taxonomy.php:415 ../../include/identity.php:1264
+#: ../../include/taxonomy.php:415 ../../include/identity.php:1296
#: ../../include/conversation.php:1751 ../../include/ItemObject.php:179
#: ../../mod/photos.php:1097
msgctxt "noun"
@@ -1937,23 +1878,85 @@ msgstr "Verjaardag van %1$s"
msgid "Happy Birthday %1$s"
msgstr "Gefeliciteerd met je verjaardag %1$s"
-#: ../../include/zot.php:675
+#: ../../include/zot.php:680
msgid "Invalid data packet"
msgstr "Datapakket ongeldig"
-#: ../../include/zot.php:691
+#: ../../include/zot.php:696
msgid "Unable to verify channel signature"
msgstr "Kanaalkenmerk kon niet worden geverifieerd. "
-#: ../../include/zot.php:2267
+#: ../../include/zot.php:2272
#, php-format
msgid "Unable to verify site signature for %s"
msgstr "Hubkenmerk voor %s kon niet worden geverifieerd"
-#: ../../include/zot.php:3588
+#: ../../include/zot.php:3607
msgid "invalid target signature"
msgstr "ongeldig doelkenmerk"
+#: ../../include/attach.php:247 ../../include/attach.php:333
+msgid "Item was not found."
+msgstr "Item niet gevonden"
+
+#: ../../include/attach.php:497
+msgid "No source file."
+msgstr "Geen bronbestand."
+
+#: ../../include/attach.php:519
+msgid "Cannot locate file to replace"
+msgstr "Kan het te vervangen bestand niet vinden"
+
+#: ../../include/attach.php:537
+msgid "Cannot locate file to revise/update"
+msgstr "Kan het bestand wat aangepast moet worden niet vinden"
+
+#: ../../include/attach.php:672
+#, php-format
+msgid "File exceeds size limit of %d"
+msgstr "Bestand is groter dan de toegelaten %d"
+
+#: ../../include/attach.php:686
+#, php-format
+msgid "You have reached your limit of %1$.0f Mbytes attachment storage."
+msgstr "Je hebt jouw limiet van %1$.0f MB opslagruimte voor bijlagen bereikt."
+
+#: ../../include/attach.php:842
+msgid "File upload failed. Possible system limit or action terminated."
+msgstr "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken."
+
+#: ../../include/attach.php:855
+msgid "Stored file could not be verified. Upload failed."
+msgstr "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt."
+
+#: ../../include/attach.php:903 ../../include/attach.php:919
+msgid "Path not available."
+msgstr "Pad niet beschikbaar."
+
+#: ../../include/attach.php:965 ../../include/attach.php:1117
+msgid "Empty pathname"
+msgstr "Padnaam leeg"
+
+#: ../../include/attach.php:991
+msgid "duplicate filename or path"
+msgstr "dubbele bestandsnaam of pad"
+
+#: ../../include/attach.php:1013
+msgid "Path not found."
+msgstr "Pad niet gevonden"
+
+#: ../../include/attach.php:1071
+msgid "mkdir failed."
+msgstr "directory aanmaken (mkdir) mislukt."
+
+#: ../../include/attach.php:1075
+msgid "database storage failed."
+msgstr "opslag in database mislukt."
+
+#: ../../include/attach.php:1123
+msgid "Empty path"
+msgstr "Ontbrekend bestandspad"
+
#: ../../include/contact_selectors.php:56
msgid "Frequently"
msgstr "Regelmatig"
@@ -2160,202 +2163,204 @@ msgid "If location data is available on uploaded photos, link this to a map."
msgstr "Wanneer in de geĆ¼ploade foto's locatiegegevens aanwezig zijn, link dit dan aan een kaart."
#: ../../include/features.php:60
+msgid "Smart Birthdays"
+msgstr "Slimme verjaardagen"
+
+#: ../../include/features.php:60
+msgid ""
+"Make birthday events timezone aware in case your friends are scattered "
+"across the planet."
+msgstr "Maak verjaardagen bewust van tijdzones. Voor het geval dat jouw vrienden over de hele wereld verspreid zijn."
+
+#: ../../include/features.php:61
msgid "Expert Mode"
msgstr "Expertmodus"
-#: ../../include/features.php:60
+#: ../../include/features.php:61
msgid "Enable Expert Mode to provide advanced configuration options"
msgstr "Schakel de expertmodus in voor geavanceerde instellingen"
-#: ../../include/features.php:61
+#: ../../include/features.php:62
msgid "Premium Channel"
msgstr "Premiumkanaal"
-#: ../../include/features.php:61
+#: ../../include/features.php:62
msgid ""
"Allows you to set restrictions and terms on those that connect with your "
"channel"
msgstr "Stelt je in staat om beperkingen en voorwaarden in te stellen voor jouw kanaal"
-#: ../../include/features.php:66
+#: ../../include/features.php:67
msgid "Post Composition Features"
msgstr "Functies voor het opstellen van berichten"
-#: ../../include/features.php:68
-msgid "Use Markdown"
-msgstr "Markdown gebruiken"
-
-#: ../../include/features.php:68
-msgid "Allow use of \"Markdown\" to format posts"
-msgstr "Sta het gebruik van \"markdown\" toe om berichten mee op te maken."
-
-#: ../../include/features.php:69
+#: ../../include/features.php:70
msgid "Large Photos"
msgstr "Grote foto's"
-#: ../../include/features.php:69
+#: ../../include/features.php:70
msgid ""
"Include large (1024px) photo thumbnails in posts. If not enabled, use small "
"(640px) photo thumbnails"
msgstr "Gebruik grotere foto's (1024px) in berichten. Wanneer dit is uitgeschakeld worden er kleinere foto's (640px) gebruikt."
-#: ../../include/features.php:70 ../../include/widgets.php:572
+#: ../../include/features.php:71 ../../include/widgets.php:572
#: ../../mod/sources.php:88
msgid "Channel Sources"
msgstr "Kanaalbronnen"
-#: ../../include/features.php:70
+#: ../../include/features.php:71
msgid "Automatically import channel content from other channels or feeds"
msgstr "Automatisch inhoud uit andere kanalen of feeds importeren."
-#: ../../include/features.php:71
+#: ../../include/features.php:72
msgid "Even More Encryption"
msgstr "Extra encryptie"
-#: ../../include/features.php:71
+#: ../../include/features.php:72
msgid ""
"Allow optional encryption of content end-to-end with a shared secret key"
msgstr "Sta toe dat inhoud extra end-to-end wordt versleuteld met een gedeelde geheime sleutel."
-#: ../../include/features.php:72
+#: ../../include/features.php:73
msgid "Enable Voting Tools"
msgstr "Peilingen inschakelen"
-#: ../../include/features.php:72
+#: ../../include/features.php:73
msgid "Provide a class of post which others can vote on"
msgstr "Maakt het mogelijk om een bericht op te stellen, waar mensen op kunnen stemmen."
-#: ../../include/features.php:73
+#: ../../include/features.php:74
msgid "Delayed Posting"
msgstr "Berichten uitstellen"
-#: ../../include/features.php:73
+#: ../../include/features.php:74
msgid "Allow posts to be published at a later date"
msgstr "Maakt het mogelijk dat berichten op een toekomstig moment gepubliceerd kunnen worden."
-#: ../../include/features.php:74
+#: ../../include/features.php:75
msgid "Suppress Duplicate Posts/Comments"
msgstr "Dubbele berichten/reacties tegenhouden"
-#: ../../include/features.php:74
+#: ../../include/features.php:75
msgid ""
"Prevent posts with identical content to be published with less than two "
"minutes in between submissions."
msgstr "Voorkomt dat berichten en reacties met identieke inhoud en die binnen twee minuten zijn verstuurd, worden gepubliceerd. "
-#: ../../include/features.php:80
+#: ../../include/features.php:81
msgid "Network and Stream Filtering"
msgstr "Netwerk- en streamfilter"
-#: ../../include/features.php:81
+#: ../../include/features.php:82
msgid "Search by Date"
msgstr "Zoek op datum"
-#: ../../include/features.php:81
+#: ../../include/features.php:82
msgid "Ability to select posts by date ranges"
msgstr "Mogelijkheid om berichten op datum te filteren "
-#: ../../include/features.php:82 ../../include/group.php:295
+#: ../../include/features.php:83 ../../include/group.php:295
msgid "Privacy Groups"
msgstr "Privacygroepen"
-#: ../../include/features.php:82
+#: ../../include/features.php:83
msgid "Enable management and selection of privacy groups"
msgstr "Beheer en selectie van privacygroepen inschakelen"
-#: ../../include/features.php:83 ../../include/widgets.php:284
+#: ../../include/features.php:84 ../../include/widgets.php:284
msgid "Saved Searches"
msgstr "Opgeslagen zoekopdrachten"
-#: ../../include/features.php:83
+#: ../../include/features.php:84
msgid "Save search terms for re-use"
msgstr "Sla zoekopdrachten op voor hergebruik"
-#: ../../include/features.php:84
+#: ../../include/features.php:85
msgid "Network Personal Tab"
msgstr "Persoonlijke netwerktab"
-#: ../../include/features.php:84
+#: ../../include/features.php:85
msgid "Enable tab to display only Network posts that you've interacted on"
msgstr "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had"
-#: ../../include/features.php:85
+#: ../../include/features.php:86
msgid "Network New Tab"
msgstr "Nieuwe netwerktab"
-#: ../../include/features.php:85
+#: ../../include/features.php:86
msgid "Enable tab to display all new Network activity"
msgstr "Laat de tab alle nieuwe netwerkactiviteit tonen"
-#: ../../include/features.php:86
+#: ../../include/features.php:87
msgid "Affinity Tool"
msgstr "Verwantschapsfilter"
-#: ../../include/features.php:86
+#: ../../include/features.php:87
msgid "Filter stream activity by depth of relationships"
msgstr "Filter wat je in jouw grid ziet op hoe goed je iemand kent of mag"
-#: ../../include/features.php:87
+#: ../../include/features.php:88
msgid "Connection Filtering"
msgstr "Berichtenfilters"
-#: ../../include/features.php:87
+#: ../../include/features.php:88
msgid "Filter incoming posts from connections based on keywords/content"
msgstr "Filter binnenkomende berichten van connecties aan de hand van trefwoorden en taal"
-#: ../../include/features.php:88
+#: ../../include/features.php:89
msgid "Suggest Channels"
msgstr "Kanalen voorstellen"
-#: ../../include/features.php:88
+#: ../../include/features.php:89
msgid "Show channel suggestions"
msgstr "Voor jou mogelijk interessante kanalen voorstellen"
-#: ../../include/features.php:93
+#: ../../include/features.php:94
msgid "Post/Comment Tools"
msgstr "Bericht- en reactiehulpmiddelen"
-#: ../../include/features.php:94
+#: ../../include/features.php:95
msgid "Community Tagging"
msgstr "Taggen door anderen"
-#: ../../include/features.php:94
+#: ../../include/features.php:95
msgid "Ability to tag existing posts"
msgstr "Geeft andere mensen de mogelijkheid om jouw (bestaande) berichten te taggen"
-#: ../../include/features.php:95
+#: ../../include/features.php:96
msgid "Post Categories"
msgstr "Categorieƫn berichten"
-#: ../../include/features.php:95
+#: ../../include/features.php:96
msgid "Add categories to your posts"
msgstr "Voeg categorieƫn toe aan je berichten"
-#: ../../include/features.php:96
+#: ../../include/features.php:97
msgid "Ability to file posts under folders"
msgstr "Mogelijkheid om berichten in mappen op te slaan"
-#: ../../include/features.php:97
+#: ../../include/features.php:98
msgid "Dislike Posts"
msgstr "Vind berichten niet leuk"
-#: ../../include/features.php:97
+#: ../../include/features.php:98
msgid "Ability to dislike posts/comments"
msgstr "Mogelijkheid om berichten en reacties niet leuk te vinden"
-#: ../../include/features.php:98
+#: ../../include/features.php:99
msgid "Star Posts"
msgstr "Geef berichten een ster"
-#: ../../include/features.php:98
+#: ../../include/features.php:99
msgid "Ability to mark special posts with a star indicator"
msgstr "Mogelijkheid om speciale berichten met een ster te markeren"
-#: ../../include/features.php:99
+#: ../../include/features.php:100
msgid "Tag Cloud"
msgstr "Tagwolk"
-#: ../../include/features.php:99
+#: ../../include/features.php:100
msgid "Provide a personal tag cloud on your channel page"
msgstr "Zorgt voor een persoonlijke wolk met tags op jouw kanaalpagina"
@@ -2409,8 +2414,8 @@ msgid "Notes"
msgstr "Aantekeningen"
#: ../../include/widgets.php:202 ../../include/text.php:886
-#: ../../include/text.php:898 ../../mod/filer.php:49 ../../mod/admin.php:1666
-#: ../../mod/admin.php:1686 ../../mod/rbmark.php:28 ../../mod/rbmark.php:100
+#: ../../include/text.php:898 ../../mod/filer.php:49 ../../mod/admin.php:1687
+#: ../../mod/admin.php:1707 ../../mod/rbmark.php:28 ../../mod/rbmark.php:100
msgid "Save"
msgstr "Opslaan"
@@ -2426,20 +2431,20 @@ msgstr "toevoegen"
msgid "Archives"
msgstr "Archieven"
-#: ../../include/widgets.php:449 ../../mod/connedit.php:582
+#: ../../include/widgets.php:449 ../../mod/connedit.php:589
msgid "Me"
msgstr "Ik"
-#: ../../include/widgets.php:450 ../../mod/connedit.php:583
+#: ../../include/widgets.php:450 ../../mod/connedit.php:590
msgid "Family"
msgstr "Familie"
-#: ../../include/widgets.php:452 ../../mod/connedit.php:585
+#: ../../include/widgets.php:452 ../../mod/connedit.php:592
msgid "Acquaintances"
msgstr "Kennissen"
#: ../../include/widgets.php:453 ../../mod/connections.php:88
-#: ../../mod/connections.php:103 ../../mod/connedit.php:586
+#: ../../mod/connections.php:103 ../../mod/connedit.php:593
msgid "All"
msgstr "Alles"
@@ -2475,7 +2480,7 @@ msgstr "Verbonden applicaties"
msgid "Export channel"
msgstr "Kanaal exporteren"
-#: ../../include/widgets.php:556 ../../mod/connedit.php:694
+#: ../../include/widgets.php:556 ../../mod/connedit.php:701
msgid "Connection Default Permissions"
msgstr "Standaard permissies voor connecties"
@@ -2561,111 +2566,111 @@ msgstr "Bladwijzers van chatkanalen"
msgid "Suggested Chatrooms"
msgstr "Voorgestelde chatkanalen"
-#: ../../include/widgets.php:972 ../../include/widgets.php:1062
+#: ../../include/widgets.php:972 ../../include/widgets.php:1082
msgid "photo/image"
msgstr "foto/afbeelding"
-#: ../../include/widgets.php:1156
+#: ../../include/widgets.php:1176
msgid "Rating Tools"
msgstr "Beoordelingen"
-#: ../../include/widgets.php:1160 ../../include/widgets.php:1162
+#: ../../include/widgets.php:1180 ../../include/widgets.php:1182
msgid "Rate Me"
msgstr "Beoordeel mij"
-#: ../../include/widgets.php:1165
+#: ../../include/widgets.php:1185
msgid "View Ratings"
msgstr "Bekijk beoordelingen"
-#: ../../include/widgets.php:1176 ../../mod/pubsites.php:18
+#: ../../include/widgets.php:1196 ../../mod/pubsites.php:18
msgid "Public Hubs"
msgstr "Openbare hubs"
-#: ../../include/widgets.php:1224
+#: ../../include/widgets.php:1244
msgid "Forums"
msgstr "Forums"
-#: ../../include/widgets.php:1253
+#: ../../include/widgets.php:1273
msgid "Tasks"
msgstr "Taken"
-#: ../../include/widgets.php:1262
+#: ../../include/widgets.php:1282
msgid "Documentation"
msgstr "Documentatie"
-#: ../../include/widgets.php:1264
+#: ../../include/widgets.php:1284
msgid "Project/Site Information"
msgstr "Project- en hub-informatie"
-#: ../../include/widgets.php:1265
+#: ../../include/widgets.php:1285
msgid "For Members"
msgstr "Voor leden"
-#: ../../include/widgets.php:1266
+#: ../../include/widgets.php:1286
msgid "For Administrators"
msgstr "Voor beheerders"
-#: ../../include/widgets.php:1267
+#: ../../include/widgets.php:1287
msgid "For Developers"
msgstr "Voor ontwikkelaars"
-#: ../../include/widgets.php:1292 ../../mod/admin.php:456
+#: ../../include/widgets.php:1312 ../../mod/admin.php:456
msgid "Site"
msgstr "Hub-instellingen"
-#: ../../include/widgets.php:1293
+#: ../../include/widgets.php:1313
msgid "Accounts"
msgstr "Accounts"
-#: ../../include/widgets.php:1294 ../../mod/admin.php:1149
+#: ../../include/widgets.php:1314 ../../mod/admin.php:1149
msgid "Channels"
msgstr "Kanalen"
-#: ../../include/widgets.php:1295 ../../mod/admin.php:710
+#: ../../include/widgets.php:1315 ../../mod/admin.php:710
msgid "Security"
msgstr "Beveiliging"
-#: ../../include/widgets.php:1297 ../../mod/admin.php:1264
+#: ../../include/widgets.php:1317 ../../mod/admin.php:1264
#: ../../mod/admin.php:1325
msgid "Plugins"
msgstr "Plugins"
-#: ../../include/widgets.php:1298 ../../mod/admin.php:1486
+#: ../../include/widgets.php:1318 ../../mod/admin.php:1486
#: ../../mod/admin.php:1520
msgid "Themes"
msgstr "Thema's"
-#: ../../include/widgets.php:1299
+#: ../../include/widgets.php:1319
msgid "Inspect queue"
msgstr "Inspecteer berichtenwachtrij"
-#: ../../include/widgets.php:1300
-msgid "Profile Config"
-msgstr "Profielconfiguratie"
+#: ../../include/widgets.php:1320 ../../mod/admin.php:1760
+msgid "Profile Fields"
+msgstr "Profielvelden"
-#: ../../include/widgets.php:1301
+#: ../../include/widgets.php:1321
msgid "DB updates"
msgstr "Database-updates"
-#: ../../include/widgets.php:1319 ../../include/widgets.php:1325
+#: ../../include/widgets.php:1339 ../../include/widgets.php:1345
#: ../../mod/admin.php:1605
msgid "Logs"
msgstr "Logboeken"
-#: ../../include/widgets.php:1324
+#: ../../include/widgets.php:1344
msgid "Plugin Features"
msgstr "Plugin-opties"
-#: ../../include/widgets.php:1326
+#: ../../include/widgets.php:1346
msgid "User registrations waiting for confirmation"
msgstr "Accounts die op goedkeuring wachten"
-#: ../../include/widgets.php:1404 ../../mod/photos.php:760
+#: ../../include/widgets.php:1424 ../../mod/photos.php:760
#: ../../mod/photos.php:1300
msgid "View Photo"
msgstr "Foto weergeven"
-#: ../../include/widgets.php:1421 ../../mod/photos.php:791
+#: ../../include/widgets.php:1441 ../../mod/photos.php:791
msgid "Edit Album"
msgstr "Album bewerken"
@@ -3169,11 +3174,11 @@ msgstr "Niet in staat om aangemaakte identiteit te vinden"
msgid "Default Profile"
msgstr "Standaardprofiel"
-#: ../../include/identity.php:772
+#: ../../include/identity.php:776
msgid "Requested channel is not available."
msgstr "Opgevraagd kanaal is niet beschikbaar."
-#: ../../include/identity.php:818 ../../mod/achievements.php:11
+#: ../../include/identity.php:822 ../../mod/achievements.php:11
#: ../../mod/blocks.php:29 ../../mod/connect.php:13 ../../mod/editblock.php:29
#: ../../mod/editlayout.php:27 ../../mod/editwebpage.php:28
#: ../../mod/filestorage.php:54 ../../mod/hcard.php:8 ../../mod/layouts.php:29
@@ -3181,192 +3186,184 @@ msgstr "Opgevraagd kanaal is niet beschikbaar."
msgid "Requested profile is not available."
msgstr "Opgevraagd profiel is niet beschikbaar"
-#: ../../include/identity.php:967 ../../mod/profiles.php:782
+#: ../../include/identity.php:917 ../../mod/profiles.php:782
msgid "Change profile photo"
msgstr "Profielfoto veranderen"
-#: ../../include/identity.php:973
-msgid "Profiles"
-msgstr "Profielen"
-
-#: ../../include/identity.php:973
-msgid "Manage/edit profiles"
-msgstr "Profielen beheren/bewerken"
-
-#: ../../include/identity.php:974 ../../mod/profiles.php:783
+#: ../../include/identity.php:925 ../../mod/profiles.php:783
msgid "Create New Profile"
msgstr "Nieuw profiel aanmaken"
-#: ../../include/identity.php:989 ../../mod/profiles.php:794
+#: ../../include/identity.php:942 ../../mod/profiles.php:794
msgid "Profile Image"
msgstr "Profielfoto"
-#: ../../include/identity.php:992
-msgid "visible to everybody"
+#: ../../include/identity.php:945
+msgid "Visible to everybody"
msgstr "Voor iedereen zichtbaar"
-#: ../../include/identity.php:993 ../../mod/profiles.php:677
+#: ../../include/identity.php:946 ../../mod/profiles.php:677
#: ../../mod/profiles.php:798
msgid "Edit visibility"
msgstr "Zichtbaarheid bewerken"
-#: ../../include/identity.php:1009 ../../include/identity.php:1248
+#: ../../include/identity.php:1022 ../../include/identity.php:1280
msgid "Gender:"
msgstr "Geslacht:"
-#: ../../include/identity.php:1010 ../../include/identity.php:1292
+#: ../../include/identity.php:1023 ../../include/identity.php:1324
msgid "Status:"
msgstr "Status:"
-#: ../../include/identity.php:1011 ../../include/identity.php:1303
+#: ../../include/identity.php:1024 ../../include/identity.php:1335
msgid "Homepage:"
msgstr "Homepagina:"
-#: ../../include/identity.php:1012
+#: ../../include/identity.php:1025
msgid "Online Now"
msgstr "Nu online"
-#: ../../include/identity.php:1099 ../../include/identity.php:1177
+#: ../../include/identity.php:1113 ../../include/identity.php:1191
#: ../../mod/ping.php:318
msgid "g A l F d"
msgstr "G:i, l d F"
-#: ../../include/identity.php:1100 ../../include/identity.php:1178
+#: ../../include/identity.php:1114 ../../include/identity.php:1192
msgid "F d"
msgstr "d F"
-#: ../../include/identity.php:1145 ../../include/identity.php:1217
+#: ../../include/identity.php:1159 ../../include/identity.php:1231
#: ../../mod/ping.php:341
msgid "[today]"
msgstr "[vandaag]"
-#: ../../include/identity.php:1156
+#: ../../include/identity.php:1170
msgid "Birthday Reminders"
msgstr "Verjaardagsherinneringen"
-#: ../../include/identity.php:1157
+#: ../../include/identity.php:1171
msgid "Birthdays this week:"
msgstr "Verjaardagen deze week:"
-#: ../../include/identity.php:1210
+#: ../../include/identity.php:1224
msgid "[No description]"
msgstr "[Geen omschrijving]"
-#: ../../include/identity.php:1228
+#: ../../include/identity.php:1242
msgid "Event Reminders"
msgstr "Herinneringen"
-#: ../../include/identity.php:1229
+#: ../../include/identity.php:1243
msgid "Events this week:"
msgstr "Gebeurtenissen deze week:"
-#: ../../include/identity.php:1246 ../../mod/settings.php:1047
+#: ../../include/identity.php:1278 ../../mod/settings.php:1047
msgid "Full Name:"
msgstr "Volledige naam:"
-#: ../../include/identity.php:1253
+#: ../../include/identity.php:1285
msgid "Like this channel"
msgstr "Vind dit kanaal leuk"
-#: ../../include/identity.php:1277
+#: ../../include/identity.php:1309
msgid "j F, Y"
msgstr "F j Y"
-#: ../../include/identity.php:1278
+#: ../../include/identity.php:1310
msgid "j F"
msgstr "F j"
-#: ../../include/identity.php:1285
+#: ../../include/identity.php:1317
msgid "Birthday:"
msgstr "Geboortedatum:"
-#: ../../include/identity.php:1289 ../../mod/directory.php:302
+#: ../../include/identity.php:1321 ../../mod/directory.php:302
msgid "Age:"
msgstr "Leeftijd:"
-#: ../../include/identity.php:1298
+#: ../../include/identity.php:1330
#, php-format
msgid "for %1$d %2$s"
msgstr "voor %1$d %2$s"
-#: ../../include/identity.php:1301 ../../mod/profiles.php:699
+#: ../../include/identity.php:1333 ../../mod/profiles.php:699
msgid "Sexual Preference:"
msgstr "Seksuele voorkeur:"
-#: ../../include/identity.php:1305 ../../mod/directory.php:318
+#: ../../include/identity.php:1337 ../../mod/directory.php:318
#: ../../mod/profiles.php:701
msgid "Hometown:"
msgstr "Oorspronkelijk uit:"
-#: ../../include/identity.php:1307
+#: ../../include/identity.php:1339
msgid "Tags:"
msgstr "Tags:"
-#: ../../include/identity.php:1309 ../../mod/profiles.php:702
+#: ../../include/identity.php:1341 ../../mod/profiles.php:702
msgid "Political Views:"
msgstr "Politieke overtuigingen:"
-#: ../../include/identity.php:1311
+#: ../../include/identity.php:1343
msgid "Religion:"
msgstr "Religie:"
-#: ../../include/identity.php:1313 ../../mod/directory.php:320
+#: ../../include/identity.php:1345 ../../mod/directory.php:320
msgid "About:"
msgstr "Over:"
-#: ../../include/identity.php:1315
+#: ../../include/identity.php:1347
msgid "Hobbies/Interests:"
msgstr "Hobby's/interesses:"
-#: ../../include/identity.php:1317 ../../mod/profiles.php:705
+#: ../../include/identity.php:1349 ../../mod/profiles.php:705
msgid "Likes:"
msgstr "Houdt van:"
-#: ../../include/identity.php:1319 ../../mod/profiles.php:706
+#: ../../include/identity.php:1351 ../../mod/profiles.php:706
msgid "Dislikes:"
msgstr "Houdt niet van:"
-#: ../../include/identity.php:1321
+#: ../../include/identity.php:1353
msgid "Contact information and Social Networks:"
msgstr "Contactinformatie en sociale netwerken:"
-#: ../../include/identity.php:1323
+#: ../../include/identity.php:1355
msgid "My other channels:"
msgstr "Mijn andere kanalen"
-#: ../../include/identity.php:1325
+#: ../../include/identity.php:1357
msgid "Musical interests:"
msgstr "Muzikale interesses:"
-#: ../../include/identity.php:1327
+#: ../../include/identity.php:1359
msgid "Books, literature:"
msgstr "Boeken, literatuur:"
-#: ../../include/identity.php:1329
+#: ../../include/identity.php:1361
msgid "Television:"
msgstr "Televisie:"
-#: ../../include/identity.php:1331
+#: ../../include/identity.php:1363
msgid "Film/dance/culture/entertainment:"
msgstr "Films/dansen/cultuur/vermaak:"
-#: ../../include/identity.php:1333
+#: ../../include/identity.php:1365
msgid "Love/Romance:"
msgstr "Liefde/romantiek:"
-#: ../../include/identity.php:1335
+#: ../../include/identity.php:1367
msgid "Work/employment:"
msgstr "Werk/beroep:"
-#: ../../include/identity.php:1337
+#: ../../include/identity.php:1369
msgid "School/education:"
msgstr "School/opleiding:"
-#: ../../include/identity.php:1361
+#: ../../include/identity.php:1389
msgid "Like this thing"
msgstr "Vind dit ding leuk"
-#: ../../include/identity.php:1770 ../../mod/cover_photo.php:236
+#: ../../include/identity.php:1799 ../../mod/cover_photo.php:236
msgid "cover photo"
msgstr "omslagfoto"
@@ -4273,7 +4270,7 @@ msgstr "Privacygroep is leeg"
msgid "Privacy group: %s"
msgstr "Privacygroep: %s"
-#: ../../include/items.php:5065 ../../mod/connedit.php:694
+#: ../../include/items.php:5065 ../../mod/connedit.php:701
#, php-format
msgid "Connection: %s"
msgstr "Connectie: %s"
@@ -4303,7 +4300,7 @@ msgstr "%1$s heeft zijn %2$s bijgewerkt"
#: ../../include/items.php:5498 ../../mod/cover_photo.php:234
#, php-format
msgid "%1$s updated their %2$s"
-msgstr "%1$s hebben hun %2$s bijgewerkt"
+msgstr "De %2$s van %1$s is bijgewerkt"
#: ../../include/items.php:5500
msgid "profile photo"
@@ -4637,7 +4634,7 @@ msgstr "Goedkeuren"
msgid "Ignore connection"
msgstr "Connectie negeren"
-#: ../../mod/connections.php:273 ../../mod/connedit.php:538
+#: ../../mod/connections.php:273 ../../mod/connedit.php:545
#: ../../mod/notifications.php:51
msgid "Ignore"
msgstr "Negeren"
@@ -4674,218 +4671,218 @@ msgstr "Bijwerken van connectie-gegevens mislukt."
msgid "is now connected to"
msgstr "is nu verbonden met"
-#: ../../mod/connedit.php:400
+#: ../../mod/connedit.php:407
msgid "Could not access address book record."
msgstr "Kon geen toegang krijgen tot de record van de connectie."
-#: ../../mod/connedit.php:414
+#: ../../mod/connedit.php:421
msgid "Refresh failed - channel is currently unavailable."
msgstr "Vernieuwen mislukt - kanaal is momenteel niet beschikbaar"
-#: ../../mod/connedit.php:429 ../../mod/connedit.php:438
-#: ../../mod/connedit.php:447 ../../mod/connedit.php:456
-#: ../../mod/connedit.php:469
+#: ../../mod/connedit.php:436 ../../mod/connedit.php:445
+#: ../../mod/connedit.php:454 ../../mod/connedit.php:463
+#: ../../mod/connedit.php:476
msgid "Unable to set address book parameters."
msgstr "Niet in staat om de parameters van connecties in te stellen."
-#: ../../mod/connedit.php:493
+#: ../../mod/connedit.php:500
msgid "Connection has been removed."
msgstr "Connectie is verwijderd"
-#: ../../mod/connedit.php:512
+#: ../../mod/connedit.php:519
#, php-format
msgid "View %s's profile"
msgstr "Profiel van %s weergeven"
-#: ../../mod/connedit.php:516
+#: ../../mod/connedit.php:523
msgid "Refresh Permissions"
msgstr "Permissies vernieuwen"
-#: ../../mod/connedit.php:519
+#: ../../mod/connedit.php:526
msgid "Fetch updated permissions"
msgstr "Aangepaste permissies ophalen"
-#: ../../mod/connedit.php:523
+#: ../../mod/connedit.php:530
msgid "Recent Activity"
msgstr "Recente activiteit/berichten"
-#: ../../mod/connedit.php:526
+#: ../../mod/connedit.php:533
msgid "View recent posts and comments"
msgstr "Recente berichten en reacties weergeven"
-#: ../../mod/connedit.php:530 ../../mod/admin.php:995
+#: ../../mod/connedit.php:537 ../../mod/admin.php:995
msgid "Unblock"
msgstr "Deblokkeren"
-#: ../../mod/connedit.php:530 ../../mod/admin.php:994
+#: ../../mod/connedit.php:537 ../../mod/admin.php:994
msgid "Block"
msgstr "Blokkeren"
-#: ../../mod/connedit.php:533
+#: ../../mod/connedit.php:540
msgid "Block (or Unblock) all communications with this connection"
msgstr "Blokkeer (of deblokkeer) alle communicatie met deze connectie"
-#: ../../mod/connedit.php:534
+#: ../../mod/connedit.php:541
msgid "This connection is blocked!"
msgstr "Deze connectie is geblokkeerd!"
-#: ../../mod/connedit.php:538
+#: ../../mod/connedit.php:545
msgid "Unignore"
msgstr "Niet meer negeren"
-#: ../../mod/connedit.php:541
+#: ../../mod/connedit.php:548
msgid "Ignore (or Unignore) all inbound communications from this connection"
msgstr "Negeer (of negeer niet meer) alle inkomende communicatie van deze connectie"
-#: ../../mod/connedit.php:542
+#: ../../mod/connedit.php:549
msgid "This connection is ignored!"
msgstr "Deze connectie wordt genegeerd!"
-#: ../../mod/connedit.php:546
+#: ../../mod/connedit.php:553
msgid "Unarchive"
msgstr "Niet meer archiveren"
-#: ../../mod/connedit.php:546
+#: ../../mod/connedit.php:553
msgid "Archive"
msgstr "Archiveren"
-#: ../../mod/connedit.php:549
+#: ../../mod/connedit.php:556
msgid ""
"Archive (or Unarchive) this connection - mark channel dead but keep content"
msgstr "Archiveer (of dearchiveer) deze connectie - markeer het kanaal als dood, maar bewaar de inhoud"
-#: ../../mod/connedit.php:550
+#: ../../mod/connedit.php:557
msgid "This connection is archived!"
msgstr "Deze connectie is gearchiveerd!"
-#: ../../mod/connedit.php:554
+#: ../../mod/connedit.php:561
msgid "Unhide"
msgstr "Niet meer verbergen"
-#: ../../mod/connedit.php:554
+#: ../../mod/connedit.php:561
msgid "Hide"
msgstr "Verbergen"
-#: ../../mod/connedit.php:557
+#: ../../mod/connedit.php:564
msgid "Hide or Unhide this connection from your other connections"
msgstr "Deze connectie verbergen (of niet meer verbergen) voor jouw andere connecties"
-#: ../../mod/connedit.php:558
+#: ../../mod/connedit.php:565
msgid "This connection is hidden!"
msgstr "Deze connectie is verborgen!"
-#: ../../mod/connedit.php:565
+#: ../../mod/connedit.php:572
msgid "Delete this connection"
msgstr "Deze connectie verwijderen"
-#: ../../mod/connedit.php:646
+#: ../../mod/connedit.php:653
msgid "Approve this connection"
msgstr "Deze connectie accepteren"
-#: ../../mod/connedit.php:646
+#: ../../mod/connedit.php:653
msgid "Accept connection to allow communication"
msgstr "Keur deze connectie goed om communicatie toe te staan"
-#: ../../mod/connedit.php:651
+#: ../../mod/connedit.php:658
msgid "Set Affinity"
msgstr "Verwantschapsfilter instellen"
-#: ../../mod/connedit.php:654
+#: ../../mod/connedit.php:661
msgid "Set Profile"
msgstr "Profiel instellen"
-#: ../../mod/connedit.php:657
+#: ../../mod/connedit.php:664
msgid "Set Affinity & Profile"
msgstr "Verwantschapsfilter en profiel instellen"
-#: ../../mod/connedit.php:690
+#: ../../mod/connedit.php:697
msgid "none"
msgstr "geen"
-#: ../../mod/connedit.php:695
+#: ../../mod/connedit.php:702
msgid "Apply these permissions automatically"
msgstr "Deze permissies automatisch toepassen"
-#: ../../mod/connedit.php:695
+#: ../../mod/connedit.php:702
msgid "Connection requests will be approved without your interaction"
msgstr "Connectieverzoeken zullen automatisch worden geaccepteerd"
-#: ../../mod/connedit.php:697
+#: ../../mod/connedit.php:704
msgid "This connection's primary address is"
msgstr "Het primaire kanaaladres van deze connectie is"
-#: ../../mod/connedit.php:698
+#: ../../mod/connedit.php:705
msgid "Available locations:"
msgstr "Beschikbare locaties:"
-#: ../../mod/connedit.php:702
+#: ../../mod/connedit.php:709
msgid ""
"The permissions indicated on this page will be applied to all new "
"connections."
msgstr "Permissies die op deze pagina staan vermeld worden op alle nieuwe connecties toegepast."
-#: ../../mod/connedit.php:704
+#: ../../mod/connedit.php:711
msgid "Slide to adjust your degree of friendship"
msgstr "Schuif om te bepalen hoe goed je iemand kent en/of mag"
-#: ../../mod/connedit.php:706
+#: ../../mod/connedit.php:713
msgid "Slide to adjust your rating"
msgstr "Gebruik de schuif om je beoordeling te geven"
-#: ../../mod/connedit.php:707 ../../mod/connedit.php:712
+#: ../../mod/connedit.php:714 ../../mod/connedit.php:719
msgid "Optionally explain your rating"
msgstr "Verklaar jouw beoordeling (niet verplicht)"
-#: ../../mod/connedit.php:709
+#: ../../mod/connedit.php:716
msgid "Custom Filter"
msgstr "Berichtenfilter"
-#: ../../mod/connedit.php:710
+#: ../../mod/connedit.php:717
msgid "Only import posts with this text"
msgstr "Importeer alleen berichten met deze tekst"
-#: ../../mod/connedit.php:710 ../../mod/connedit.php:711
+#: ../../mod/connedit.php:717 ../../mod/connedit.php:718
msgid ""
"words one per line or #tags or /patterns/ or lang=xx, leave blank to import "
"all posts"
msgstr "woorden (Ć©Ć©n per regel), #tags, /regex/ of talen (lang=iso639-1) - laat leeg om alle berichten te importeren"
-#: ../../mod/connedit.php:711
+#: ../../mod/connedit.php:718
msgid "Do not import posts with this text"
msgstr "Importeer geen berichten met deze tekst"
-#: ../../mod/connedit.php:713
+#: ../../mod/connedit.php:720
msgid "This information is public!"
msgstr "Deze informatie is openbaar!"
-#: ../../mod/connedit.php:718
+#: ../../mod/connedit.php:725
msgid "Connection Pending Approval"
msgstr "Connectie moet nog geaccepteerd worden"
-#: ../../mod/connedit.php:721
+#: ../../mod/connedit.php:728
msgid "inherited"
msgstr "geƫrfd"
-#: ../../mod/connedit.php:723
+#: ../../mod/connedit.php:730
#, php-format
msgid ""
"Please choose the profile you would like to display to %s when viewing your "
"profile securely."
msgstr "Kies het profiel dat je aan %s wil tonen wanneer hij/zij ingelogd jouw profiel wil bekijken."
-#: ../../mod/connedit.php:725
+#: ../../mod/connedit.php:732
msgid "Their Settings"
msgstr "Hun instellingen"
-#: ../../mod/connedit.php:726
+#: ../../mod/connedit.php:733
msgid "My Settings"
msgstr "Mijn instellingen"
-#: ../../mod/connedit.php:728
+#: ../../mod/connedit.php:735
msgid "Individual Permissions"
msgstr "Individuele permissies"
-#: ../../mod/connedit.php:729
+#: ../../mod/connedit.php:736
msgid ""
"Some permissions may be inherited from your channel's <a "
"href=\"settings\"><strong>privacy settings</strong></a>, which have higher "
@@ -4893,7 +4890,7 @@ msgid ""
" settings here."
msgstr "Sommige permissies worden mogelijk overgeƫrfd van de <a href=\"settings\">privacy-instellingen</a> van jouw kanaal, die een hogere prioriteit hebben dan deze individuele instellingen. Je kan je deze overgeƫrfde permissies hier <strong>niet</strong> veranderen."
-#: ../../mod/connedit.php:730
+#: ../../mod/connedit.php:737
msgid ""
"Some permissions may be inherited from your channel's <a "
"href=\"settings\"><strong>privacy settings</strong></a>, which have higher "
@@ -4901,7 +4898,7 @@ msgid ""
"they wont have any impact unless the inherited setting changes."
msgstr "Sommige permissies worden mogelijk overgeƫrfd van de <a href=\"settings\">privacy-instellingen</a> van jouw kanaal, die een hogere prioriteit hebben dan deze individuele permissies. Je kan de permissies hier veranderen, maar die hebben geen effect, tenzij de overgeƫrfde permissies worden veranderd. "
-#: ../../mod/connedit.php:731
+#: ../../mod/connedit.php:738
msgid "Last update:"
msgstr "Laatste wijziging:"
@@ -5253,7 +5250,7 @@ msgid "Previous"
msgstr "Vorige"
#: ../../mod/events.php:660 ../../mod/events.php:667 ../../mod/photos.php:925
-#: ../../mod/setup.php:288 ../../mod/cal.php:327 ../../mod/cal.php:334
+#: ../../mod/setup.php:291 ../../mod/cal.php:327 ../../mod/cal.php:334
msgid "Next"
msgstr "Volgende"
@@ -5325,7 +5322,7 @@ msgstr "Toon URL van dit bestand"
msgid "Notify your contacts about this file"
msgstr "Jouw connecties over dit bestand berichten"
-#: ../../mod/follow.php:25
+#: ../../mod/follow.php:27
msgid "Channel added."
msgstr "Kanaal toegevoegd."
@@ -5523,42 +5520,42 @@ msgstr "Server-platform is niet compatibel. Actie is niet toegestaan."
msgid "No channel. Import failed."
msgstr "Geen kanaal. Importeren mislukt."
-#: ../../mod/import.php:518
+#: ../../mod/import.php:533
msgid "You must be logged in to use this feature."
msgstr "Je moet ingelogd zijn om dit onderdeel te kunnen gebruiken."
-#: ../../mod/import.php:523
+#: ../../mod/import.php:538
msgid "Import Channel"
msgstr "Kanaal importeren"
-#: ../../mod/import.php:524
+#: ../../mod/import.php:539
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 "Gebruik dit formulier om een bestaand kanaal te importeren van een andere hub. Je kan de kanaal-identiteit van de oude hub via het netwerk ontvangen of een exportbestand verstrekken."
-#: ../../mod/import.php:525 ../../mod/import_items.php:115
+#: ../../mod/import.php:540 ../../mod/import_items.php:115
msgid "File to Upload"
msgstr "Bestand om te uploaden"
-#: ../../mod/import.php:526
+#: ../../mod/import.php:541
msgid "Or provide the old server/hub details"
msgstr "Of vul de gegevens van de oude hub in"
-#: ../../mod/import.php:527
+#: ../../mod/import.php:542
msgid "Your old identity address (xyz@example.com)"
msgstr "Jouw oude kanaaladres (xyz@example.com)"
-#: ../../mod/import.php:528
+#: ../../mod/import.php:543
msgid "Your old login email address"
msgstr "Het e-mailadres van je oude account"
-#: ../../mod/import.php:529
+#: ../../mod/import.php:544
msgid "Your old login password"
msgstr "Wachtwoord van jouw oude account"
-#: ../../mod/import.php:530
+#: ../../mod/import.php:545
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"
@@ -5566,17 +5563,17 @@ msgid ""
"primary location for files, photos, and media."
msgstr "Voor elke optie geldt dat je moet kiezen of je jouw primaire kanaaladres op deze hub wil instellen of dat jouw oude hub deze rol blijft vervullen."
-#: ../../mod/import.php:531
+#: ../../mod/import.php:546
msgid "Make this hub my primary location"
msgstr "Stel deze hub als mijn primaire locatie in"
-#: ../../mod/import.php:532
+#: ../../mod/import.php:547
msgid ""
"Import existing posts if possible (experimental - limited by available "
"memory"
msgstr "Importeer bestaande berichten wanneer mogelijk (experimenteel - afhankelijk van beschikbaar servergeheugen)"
-#: ../../mod/import.php:533
+#: ../../mod/import.php:548
msgid ""
"This process may take several minutes to complete. Please submit the form "
"only once and leave this page open until finished."
@@ -5677,24 +5674,24 @@ msgstr "Leeg bericht geannuleerd"
msgid "Executable content type not permitted to this channel."
msgstr "Uitvoerbare bestanden zijn niet toegestaan op dit kanaal."
-#: ../../mod/item.php:830
+#: ../../mod/item.php:843
msgid "Duplicate post suppressed."
msgstr "Dubbel bericht tegengehouden."
-#: ../../mod/item.php:960
+#: ../../mod/item.php:973
msgid "System error. Post not saved."
msgstr "Systeemfout. Bericht niet opgeslagen."
-#: ../../mod/item.php:1227
+#: ../../mod/item.php:1240
msgid "Unable to obtain post information from database."
msgstr "Niet in staat om informatie over dit bericht uit de database te verkrijgen."
-#: ../../mod/item.php:1234
+#: ../../mod/item.php:1247
#, php-format
msgid "You have reached your limit of %1$.0f top level posts."
msgstr "Je hebt jouw limiet van %1$.0f berichten bereikt."
-#: ../../mod/item.php:1241
+#: ../../mod/item.php:1254
#, php-format
msgid "You have reached your limit of %1$.0f webpages."
msgstr "Je hebt jouw limiet van %1$.0f webpagina's bereikt."
@@ -7310,46 +7307,70 @@ msgstr "Moet door de webserver beschrijfbaar zijn. Relatief ten opzichte van de
msgid "Log level"
msgstr "Logniveau"
-#: ../../mod/admin.php:1661
+#: ../../mod/admin.php:1682
msgid "New Profile Field"
msgstr "Nieuw profielveld"
-#: ../../mod/admin.php:1662 ../../mod/admin.php:1682
+#: ../../mod/admin.php:1683 ../../mod/admin.php:1703
msgid "Field nickname"
msgstr "Bijnaam voor veld"
-#: ../../mod/admin.php:1662 ../../mod/admin.php:1682
+#: ../../mod/admin.php:1683 ../../mod/admin.php:1703
msgid "System name of field"
msgstr "Systeemnaam voor veld"
-#: ../../mod/admin.php:1663 ../../mod/admin.php:1683
+#: ../../mod/admin.php:1684 ../../mod/admin.php:1704
msgid "Input type"
msgstr "Invoertype"
-#: ../../mod/admin.php:1664 ../../mod/admin.php:1684
+#: ../../mod/admin.php:1685 ../../mod/admin.php:1705
msgid "Field Name"
msgstr "Veldnaam"
-#: ../../mod/admin.php:1664 ../../mod/admin.php:1684
+#: ../../mod/admin.php:1685 ../../mod/admin.php:1705
msgid "Label on profile pages"
msgstr "Tekstlabel voor op profielpagina's"
-#: ../../mod/admin.php:1665 ../../mod/admin.php:1685
+#: ../../mod/admin.php:1686 ../../mod/admin.php:1706
msgid "Help text"
msgstr "Helptekst"
-#: ../../mod/admin.php:1665 ../../mod/admin.php:1685
+#: ../../mod/admin.php:1686 ../../mod/admin.php:1706
msgid "Additional info (optional)"
msgstr "Extra informatie (optioneel)"
-#: ../../mod/admin.php:1675
+#: ../../mod/admin.php:1696
msgid "Field definition not found"
msgstr "Velddefinitie niet gevonden"
-#: ../../mod/admin.php:1681
+#: ../../mod/admin.php:1702
msgid "Edit Profile Field"
msgstr "Profielveld bewerken"
+#: ../../mod/admin.php:1761
+msgid "Basic Profile Fields"
+msgstr "Standaard profielvelden"
+
+#: ../../mod/admin.php:1762
+msgid "Advanced Profile Fields"
+msgstr "Geavanceerde profielvelden"
+
+#: ../../mod/admin.php:1762
+msgid "(In addition to basic fields)"
+msgstr "(als toevoeging op de standaard velden)"
+
+#: ../../mod/admin.php:1764
+msgid "All available fields"
+msgstr "Alle beschikbare velden"
+
+#: ../../mod/admin.php:1765
+msgid "Custom Fields"
+msgstr "Extra (handmatig toegevoegde) velden"
+
+#: ../../mod/admin.php:1769
+msgid "Create Custom Field"
+msgstr "Extra velden aanmaken"
+
#: ../../mod/poke.php:165
msgid "Poke somebody"
msgstr "Iemand aanstoten"
@@ -8571,419 +8592,419 @@ msgstr "$Projectname-service voor Firefox Share"
msgid "Start calendar week on monday"
msgstr "Begin in de agenda de week op maandag"
-#: ../../mod/setup.php:194
+#: ../../mod/setup.php:197
msgid "$Projectname Server - Setup"
msgstr "$Projectname Hub - Setup"
-#: ../../mod/setup.php:198
+#: ../../mod/setup.php:201
msgid "Could not connect to database."
msgstr "Could not connect to database."
-#: ../../mod/setup.php:202
+#: ../../mod/setup.php:205
msgid ""
"Could not connect to specified site URL. Possible SSL certificate or DNS "
"issue."
msgstr "Could not connect to specified hub URL. Possible SSL certificate or DNS issue."
-#: ../../mod/setup.php:209
+#: ../../mod/setup.php:212
msgid "Could not create table."
msgstr "Could not create table."
-#: ../../mod/setup.php:214
+#: ../../mod/setup.php:217
msgid "Your site database has been installed."
msgstr "Your hub database has been installed."
-#: ../../mod/setup.php:218
+#: ../../mod/setup.php:221
msgid ""
"You may need to import the file \"install/schema_xxx.sql\" manually using a "
"database client."
msgstr "You may need to import the file \"install/schema_xxx.sql\" manually using a database client."
-#: ../../mod/setup.php:219 ../../mod/setup.php:287 ../../mod/setup.php:737
+#: ../../mod/setup.php:222 ../../mod/setup.php:290 ../../mod/setup.php:740
msgid "Please see the file \"install/INSTALL.txt\"."
msgstr "Please see the file \"install/INSTALL.txt\"."
-#: ../../mod/setup.php:284
+#: ../../mod/setup.php:287
msgid "System check"
msgstr "System check"
-#: ../../mod/setup.php:289
+#: ../../mod/setup.php:292
msgid "Check again"
msgstr "Check again"
-#: ../../mod/setup.php:311
+#: ../../mod/setup.php:314
msgid "Database connection"
msgstr "Database connection"
-#: ../../mod/setup.php:312
+#: ../../mod/setup.php:315
msgid ""
"In order to install $Projectname we need to know how to connect to your "
"database."
msgstr "In order to install $Projectname we need to know how to connect to your database."
-#: ../../mod/setup.php:313
+#: ../../mod/setup.php:316
msgid ""
"Please contact your hosting provider or site administrator if you have "
"questions about these settings."
msgstr "Please contact your hosting provider or server administrator if you have questions about these settings."
-#: ../../mod/setup.php:314
+#: ../../mod/setup.php:317
msgid ""
"The database you specify below should already exist. If it does not, please "
"create it before continuing."
msgstr "The database you specify below should already exist. If it does not, please create it before continuing."
-#: ../../mod/setup.php:318
+#: ../../mod/setup.php:321
msgid "Database Server Name"
msgstr "Database Server Name"
-#: ../../mod/setup.php:318
+#: ../../mod/setup.php:321
msgid "Default is 127.0.0.1"
msgstr "Default is 127.0.0.1"
-#: ../../mod/setup.php:319
+#: ../../mod/setup.php:322
msgid "Database Port"
msgstr "Database Port"
-#: ../../mod/setup.php:319
+#: ../../mod/setup.php:322
msgid "Communication port number - use 0 for default"
msgstr "Communication port number - use 0 for default"
-#: ../../mod/setup.php:320
+#: ../../mod/setup.php:323
msgid "Database Login Name"
msgstr "Database Login Name"
-#: ../../mod/setup.php:321
+#: ../../mod/setup.php:324
msgid "Database Login Password"
msgstr "Database Login Password"
-#: ../../mod/setup.php:322
+#: ../../mod/setup.php:325
msgid "Database Name"
msgstr "Database Name"
-#: ../../mod/setup.php:323
+#: ../../mod/setup.php:326
msgid "Database Type"
msgstr "Database Type"
-#: ../../mod/setup.php:325 ../../mod/setup.php:365
+#: ../../mod/setup.php:328 ../../mod/setup.php:368
msgid "Site administrator email address"
msgstr "Hub administrator email address"
-#: ../../mod/setup.php:325 ../../mod/setup.php:365
+#: ../../mod/setup.php:328 ../../mod/setup.php:368
msgid ""
"Your account email address must match this in order to use the web admin "
"panel."
msgstr "Your account email address must match this in order to use the web admin panel."
-#: ../../mod/setup.php:326 ../../mod/setup.php:367
+#: ../../mod/setup.php:329 ../../mod/setup.php:370
msgid "Website URL"
msgstr "Hub URL"
-#: ../../mod/setup.php:326 ../../mod/setup.php:367
+#: ../../mod/setup.php:329 ../../mod/setup.php:370
msgid "Please use SSL (https) URL if available."
msgstr "Please use SSL (https) URL if available."
-#: ../../mod/setup.php:327 ../../mod/setup.php:370
+#: ../../mod/setup.php:330 ../../mod/setup.php:373
msgid "Please select a default timezone for your website"
msgstr "Please select a default timezone for your hub"
-#: ../../mod/setup.php:354
+#: ../../mod/setup.php:357
msgid "Site settings"
msgstr "Hub settings"
-#: ../../mod/setup.php:368
+#: ../../mod/setup.php:371
msgid "Enable $Projectname <strong>advanced</strong> features?"
msgstr "Enable $Projectname <strong>advanced</strong> features?"
-#: ../../mod/setup.php:368
+#: ../../mod/setup.php:371
msgid ""
"Some advanced features, while useful - may be best suited for technically "
"proficient audiences"
msgstr "Some advanced features, while useful - may be best suited for technically proficient audiences"
-#: ../../mod/setup.php:420
+#: ../../mod/setup.php:423
msgid "Could not find a command line version of PHP in the web server PATH."
msgstr "Could not find a command line version of PHP in the web server PATH."
-#: ../../mod/setup.php:421
+#: ../../mod/setup.php:424
msgid ""
"If you don't have a command line version of PHP installed on server, you "
"will not be able to run background polling via cron."
msgstr "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."
-#: ../../mod/setup.php:425
+#: ../../mod/setup.php:428
msgid "PHP executable path"
msgstr "PHP executable path"
-#: ../../mod/setup.php:425
+#: ../../mod/setup.php:428
msgid ""
"Enter full path to php executable. You can leave this blank to continue the "
"installation."
msgstr "Enter full path to php executable. You can leave this blank to continue the installation."
-#: ../../mod/setup.php:430
+#: ../../mod/setup.php:433
msgid "Command line PHP"
msgstr "Command line PHP"
-#: ../../mod/setup.php:439
+#: ../../mod/setup.php:442
msgid ""
"The command line version of PHP on your system does not have "
"\"register_argc_argv\" enabled."
msgstr "The command line version of PHP on your system does not have \"register_argc_argv\" enabled."
-#: ../../mod/setup.php:440
+#: ../../mod/setup.php:443
msgid "This is required for message delivery to work."
msgstr "This is required for message delivery to work."
-#: ../../mod/setup.php:443
+#: ../../mod/setup.php:446
msgid "PHP register_argc_argv"
msgstr "PHP register_argc_argv"
-#: ../../mod/setup.php:461
+#: ../../mod/setup.php:464
#, php-format
msgid ""
"Your max allowed total upload size is set to %s. Maximum size of one file to"
" upload is set to %s. You are allowed to upload up to %d files at once."
msgstr "Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once."
-#: ../../mod/setup.php:466
+#: ../../mod/setup.php:469
msgid "You can adjust these settings in the servers php.ini."
msgstr "You can adjust these settings in the servers php.ini."
-#: ../../mod/setup.php:468
+#: ../../mod/setup.php:471
msgid "PHP upload limits"
msgstr "PHP upload limits"
-#: ../../mod/setup.php:491
+#: ../../mod/setup.php:494
msgid ""
"Error: the \"openssl_pkey_new\" function on this system is not able to "
"generate encryption keys"
msgstr "Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"
-#: ../../mod/setup.php:492
+#: ../../mod/setup.php:495
msgid ""
"If running under Windows, please see "
"\"http://www.php.net/manual/en/openssl.installation.php\"."
msgstr "If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."
-#: ../../mod/setup.php:495
+#: ../../mod/setup.php:498
msgid "Generate encryption keys"
msgstr "Generate encryption keys"
-#: ../../mod/setup.php:507
+#: ../../mod/setup.php:510
msgid "libCurl PHP module"
msgstr "libCurl PHP module"
-#: ../../mod/setup.php:508
+#: ../../mod/setup.php:511
msgid "GD graphics PHP module"
msgstr "GD graphics PHP module"
-#: ../../mod/setup.php:509
+#: ../../mod/setup.php:512
msgid "OpenSSL PHP module"
msgstr "OpenSSL PHP module"
-#: ../../mod/setup.php:510
+#: ../../mod/setup.php:513
msgid "mysqli or postgres PHP module"
msgstr "mysqli or postgres PHP module"
-#: ../../mod/setup.php:511
+#: ../../mod/setup.php:514
msgid "mb_string PHP module"
msgstr "mb_string PHP module"
-#: ../../mod/setup.php:512
+#: ../../mod/setup.php:515
msgid "mcrypt PHP module"
msgstr "mcrypt PHP module"
-#: ../../mod/setup.php:513
+#: ../../mod/setup.php:516
msgid "xml PHP module"
msgstr "xml PHP module"
-#: ../../mod/setup.php:517 ../../mod/setup.php:519
+#: ../../mod/setup.php:520 ../../mod/setup.php:522
msgid "Apache mod_rewrite module"
msgstr "Apache mod_rewrite module"
-#: ../../mod/setup.php:517
+#: ../../mod/setup.php:520
msgid ""
"Error: Apache webserver mod-rewrite module is required but not installed."
msgstr "Error: Apache webserver mod-rewrite module is required but not installed."
-#: ../../mod/setup.php:523 ../../mod/setup.php:526
+#: ../../mod/setup.php:526 ../../mod/setup.php:529
msgid "proc_open"
msgstr "proc_open"
-#: ../../mod/setup.php:523
+#: ../../mod/setup.php:526
msgid ""
"Error: proc_open is required but is either not installed or has been "
"disabled in php.ini"
msgstr "Error: proc_open is required but is either not installed or has been disabled in php.ini"
-#: ../../mod/setup.php:531
+#: ../../mod/setup.php:534
msgid "Error: libCURL PHP module required but not installed."
msgstr "Error: libCURL PHP module required but not installed."
-#: ../../mod/setup.php:535
+#: ../../mod/setup.php:538
msgid ""
"Error: GD graphics PHP module with JPEG support required but not installed."
msgstr "Error: GD graphics PHP module with JPEG support required but not installed."
-#: ../../mod/setup.php:539
+#: ../../mod/setup.php:542
msgid "Error: openssl PHP module required but not installed."
msgstr "Error: openssl PHP module required but not installed."
-#: ../../mod/setup.php:543
+#: ../../mod/setup.php:546
msgid ""
"Error: mysqli or postgres PHP module required but neither are installed."
msgstr "Error: mysqli or postgres PHP module required but neither are installed."
-#: ../../mod/setup.php:547
+#: ../../mod/setup.php:550
msgid "Error: mb_string PHP module required but not installed."
msgstr "Error: mb_string PHP module required but not installed."
-#: ../../mod/setup.php:551
+#: ../../mod/setup.php:554
msgid "Error: mcrypt PHP module required but not installed."
msgstr "Error: mcrypt PHP module required but not installed."
-#: ../../mod/setup.php:555
+#: ../../mod/setup.php:558
msgid "Error: xml PHP module required for DAV but not installed."
msgstr "Error: xml PHP module required for DAV but not installed."
-#: ../../mod/setup.php:573
+#: ../../mod/setup.php:576
msgid ""
"The web installer needs to be able to create a file called \".htconfig.php\""
" in the top folder of your web server and it is unable to do so."
msgstr "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."
-#: ../../mod/setup.php:574
+#: ../../mod/setup.php:577
msgid ""
"This is most often a permission setting, as the web server may not be able "
"to write files in your folder - even if you can."
msgstr "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."
-#: ../../mod/setup.php:575
+#: ../../mod/setup.php:578
msgid ""
"At the end of this procedure, we will give you a text to save in a file "
"named .htconfig.php in your Red top folder."
msgstr "At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."
-#: ../../mod/setup.php:576
+#: ../../mod/setup.php:579
msgid ""
"You can alternatively skip this procedure and perform a manual installation."
" Please see the file \"install/INSTALL.txt\" for instructions."
msgstr "You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."
-#: ../../mod/setup.php:579
+#: ../../mod/setup.php:582
msgid ".htconfig.php is writable"
msgstr ".htconfig.php is writable"
-#: ../../mod/setup.php:593
+#: ../../mod/setup.php:596
msgid ""
"Red uses the Smarty3 template engine to render its web views. Smarty3 "
"compiles templates to PHP to speed up rendering."
msgstr "Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."
-#: ../../mod/setup.php:594
+#: ../../mod/setup.php:597
#, php-format
msgid ""
"In order to store these compiled templates, the web server needs to have "
"write access to the directory %s under the Red top level folder."
msgstr "In order to store these compiled templates, the web server needs to have write access to the directory %s under the Red top level folder."
-#: ../../mod/setup.php:595 ../../mod/setup.php:616
+#: ../../mod/setup.php:598 ../../mod/setup.php:619
msgid ""
"Please ensure that the user that your web server runs as (e.g. www-data) has"
" write access to this folder."
msgstr "Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."
-#: ../../mod/setup.php:596
+#: ../../mod/setup.php:599
#, php-format
msgid ""
"Note: as a security measure, you should give the web server write access to "
"%s only--not the template files (.tpl) that it contains."
msgstr "Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."
-#: ../../mod/setup.php:599
+#: ../../mod/setup.php:602
#, php-format
msgid "%s is writable"
msgstr "%s is writable"
-#: ../../mod/setup.php:615
+#: ../../mod/setup.php:618
msgid ""
"Red uses the store directory to save uploaded files. The web server needs to"
" have write access to the store directory under the Red top level folder"
msgstr "Red uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"
-#: ../../mod/setup.php:619
+#: ../../mod/setup.php:622
msgid "store is writable"
msgstr "store is writable"
-#: ../../mod/setup.php:652
+#: ../../mod/setup.php:655
msgid ""
"SSL certificate cannot be validated. Fix certificate or disable https access"
" to this site."
msgstr "SSL certificate cannot be validated. Fix certificate or disable https access to this hub."
-#: ../../mod/setup.php:653
+#: ../../mod/setup.php:656
msgid ""
"If you have https access to your website or allow connections to TCP port "
"443 (the https: port), you MUST use a browser-valid certificate. You MUST "
"NOT use self-signed certificates!"
msgstr "If you have https access to your hub or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"
-#: ../../mod/setup.php:654
+#: ../../mod/setup.php:657
msgid ""
"This restriction is incorporated because public posts from you may for "
"example contain references to images on your own hub."
msgstr "This restriction is incorporated because public posts from you may for example contain references to images on your own hub."
-#: ../../mod/setup.php:655
+#: ../../mod/setup.php:658
msgid ""
"If your certificate is not recognized, members of other sites (who may "
"themselves have valid certificates) will get a warning message on their own "
"site complaining about security issues."
msgstr "If your certificate is not recognized, members of other hubs (who may themselves have valid certificates) will get a warning message on their own hub complaining about security issues."
-#: ../../mod/setup.php:656
+#: ../../mod/setup.php:659
msgid ""
"This can cause usability issues elsewhere (not just on your own site) so we "
"must insist on this requirement."
msgstr "This can cause usability issues elsewhere (not just on your own hub) so we must insist on this requirement."
-#: ../../mod/setup.php:657
+#: ../../mod/setup.php:660
msgid ""
"Providers are available that issue free certificates which are browser-"
"valid."
msgstr "Providers are available that issue free certificates which are browser-valid."
-#: ../../mod/setup.php:659
+#: ../../mod/setup.php:662
msgid "SSL certificate validation"
msgstr "SSL certificate validation"
-#: ../../mod/setup.php:665
+#: ../../mod/setup.php:668
msgid ""
"Url rewrite in .htaccess is not working. Check your server "
"configuration.Test: "
msgstr "Url rewrite in .htaccess is not working. Check your server configuration.Test: "
-#: ../../mod/setup.php:668
+#: ../../mod/setup.php:671
msgid "Url rewrite is working"
msgstr "Url rewrite is working"
-#: ../../mod/setup.php:677
+#: ../../mod/setup.php:680
msgid ""
"The database configuration file \".htconfig.php\" could not be written. "
"Please use the enclosed text to create a configuration file in your web "
"server root."
msgstr "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."
-#: ../../mod/setup.php:701
+#: ../../mod/setup.php:704
msgid "Errors encountered creating database tables."
msgstr "Errors encountered creating database tables."
-#: ../../mod/setup.php:735
+#: ../../mod/setup.php:738
msgid "<h1>What next</h1>"
msgstr "<h1>What next</h1>"
-#: ../../mod/setup.php:736
+#: ../../mod/setup.php:739
msgid ""
"IMPORTANT: You will need to [manually] setup a scheduled task for the "
"poller."
diff --git a/view/nl/hstrings.php b/view/nl/hstrings.php
index 8f0e1c18b..55cc51e60 100644
--- a/view/nl/hstrings.php
+++ b/view/nl/hstrings.php
@@ -101,21 +101,6 @@ $a->strings["Profile Photo"] = "Profielfoto";
$a->strings["Update"] = "Bijwerken";
$a->strings["Install"] = "Installeren";
$a->strings["Purchase"] = "Aanschaffen";
-$a->strings["Item was not found."] = "Item niet gevonden";
-$a->strings["No source file."] = "Geen bronbestand.";
-$a->strings["Cannot locate file to replace"] = "Kan het te vervangen bestand niet vinden";
-$a->strings["Cannot locate file to revise/update"] = "Kan het bestand wat aangepast moet worden niet vinden";
-$a->strings["File exceeds size limit of %d"] = "Bestand is groter dan de toegelaten %d";
-$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Je hebt jouw limiet van %1$.0f MB opslagruimte voor bijlagen bereikt.";
-$a->strings["File upload failed. Possible system limit or action terminated."] = "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken.";
-$a->strings["Stored file could not be verified. Upload failed."] = "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt.";
-$a->strings["Path not available."] = "Pad niet beschikbaar.";
-$a->strings["Empty pathname"] = "Padnaam leeg";
-$a->strings["duplicate filename or path"] = "dubbele bestandsnaam of pad";
-$a->strings["Path not found."] = "Pad niet gevonden";
-$a->strings["mkdir failed."] = "directory aanmaken (mkdir) mislukt.";
-$a->strings["database storage failed."] = "opslag in database mislukt.";
-$a->strings["Empty path"] = "Ontbrekend bestandspad";
$a->strings["Logged out."] = "Uitgelogd.";
$a->strings["Failed authentication"] = "Mislukte authenticatie";
$a->strings["Login failed."] = "Inloggen mislukt.";
@@ -125,19 +110,6 @@ $a->strings["\$Projectname event notification:"] = "Notificatie \$Projectname-ge
$a->strings["Starts:"] = "Start:";
$a->strings["Finishes:"] = "Einde:";
$a->strings["Location:"] = "Plaats:";
-$a->strings["Image/photo"] = "Afbeelding/foto";
-$a->strings["Encrypted content"] = "Versleutelde inhoud";
-$a->strings["Install %s element: "] = "Installeer %s-element: ";
-$a->strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Dit bericht heeft een te installeren %s-element, maar je hebt geen permissies om het op deze hub te installeren.";
-$a->strings["webpage"] = "Webpagina";
-$a->strings["layout"] = "lay-out";
-$a->strings["block"] = "blok";
-$a->strings["menu"] = "menu";
-$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s schreef het volgende %2\$s %3\$s";
-$a->strings["post"] = "bericht";
-$a->strings["Different viewers will see this text differently"] = "Deze tekst wordt per persoon anders weergeven.";
-$a->strings["$1 spoiler"] = "$1 spoiler";
-$a->strings["$1 wrote:"] = "$1 schreef:";
$a->strings["%1\$s's bookmarks"] = "Bladwijzers van %1\$s";
$a->strings["Missing room name"] = "Naam chatkanaal ontbreekt";
$a->strings["Duplicate room name"] = "Naam chatkanaal bestaat al";
@@ -340,6 +312,19 @@ $a->strings["Title"] = "Titel";
$a->strings["Created"] = "Aangemaakt";
$a->strings["Edited"] = "Bewerkt";
$a->strings["Profile Photos"] = "Profielfoto's";
+$a->strings["Image/photo"] = "Afbeelding/foto";
+$a->strings["Encrypted content"] = "Versleutelde inhoud";
+$a->strings["Install %s element: "] = "Installeer %s-element: ";
+$a->strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Dit bericht heeft een te installeren %s-element, maar je hebt geen permissies om het op deze hub te installeren.";
+$a->strings["webpage"] = "Webpagina";
+$a->strings["layout"] = "lay-out";
+$a->strings["block"] = "blok";
+$a->strings["menu"] = "menu";
+$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s schreef het volgende %2\$s %3\$s";
+$a->strings["post"] = "bericht";
+$a->strings["Different viewers will see this text differently"] = "Deze tekst wordt per persoon anders weergeven.";
+$a->strings["$1 spoiler"] = "$1 spoiler";
+$a->strings["$1 wrote:"] = "$1 schreef:";
$a->strings["Male"] = "Man";
$a->strings["Female"] = "Vrouw";
$a->strings["Currently Male"] = "Momenteel man";
@@ -453,6 +438,21 @@ $a->strings["Invalid data packet"] = "Datapakket ongeldig";
$a->strings["Unable to verify channel signature"] = "Kanaalkenmerk kon niet worden geverifieerd. ";
$a->strings["Unable to verify site signature for %s"] = "Hubkenmerk voor %s kon niet worden geverifieerd";
$a->strings["invalid target signature"] = "ongeldig doelkenmerk";
+$a->strings["Item was not found."] = "Item niet gevonden";
+$a->strings["No source file."] = "Geen bronbestand.";
+$a->strings["Cannot locate file to replace"] = "Kan het te vervangen bestand niet vinden";
+$a->strings["Cannot locate file to revise/update"] = "Kan het bestand wat aangepast moet worden niet vinden";
+$a->strings["File exceeds size limit of %d"] = "Bestand is groter dan de toegelaten %d";
+$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Je hebt jouw limiet van %1$.0f MB opslagruimte voor bijlagen bereikt.";
+$a->strings["File upload failed. Possible system limit or action terminated."] = "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken.";
+$a->strings["Stored file could not be verified. Upload failed."] = "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt.";
+$a->strings["Path not available."] = "Pad niet beschikbaar.";
+$a->strings["Empty pathname"] = "Padnaam leeg";
+$a->strings["duplicate filename or path"] = "dubbele bestandsnaam of pad";
+$a->strings["Path not found."] = "Pad niet gevonden";
+$a->strings["mkdir failed."] = "directory aanmaken (mkdir) mislukt.";
+$a->strings["database storage failed."] = "opslag in database mislukt.";
+$a->strings["Empty path"] = "Ontbrekend bestandspad";
$a->strings["Frequently"] = "Regelmatig";
$a->strings["Hourly"] = "Elk uur";
$a->strings["Twice daily"] = "Twee keer per dag";
@@ -502,13 +502,13 @@ $a->strings["Navigation Channel Select"] = "Kanaal kiezen in navigatiemenu";
$a->strings["Change channels directly from within the navigation dropdown menu"] = "Kies een ander kanaal direct vanuit het dropdown-menu op de navigatiebalk";
$a->strings["Photo Location"] = "Fotolocatie";
$a->strings["If location data is available on uploaded photos, link this to a map."] = "Wanneer in de geĆ¼ploade foto's locatiegegevens aanwezig zijn, link dit dan aan een kaart.";
+$a->strings["Smart Birthdays"] = "Slimme verjaardagen";
+$a->strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = "Maak verjaardagen bewust van tijdzones. Voor het geval dat jouw vrienden over de hele wereld verspreid zijn.";
$a->strings["Expert Mode"] = "Expertmodus";
$a->strings["Enable Expert Mode to provide advanced configuration options"] = "Schakel de expertmodus in voor geavanceerde instellingen";
$a->strings["Premium Channel"] = "Premiumkanaal";
$a->strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Stelt je in staat om beperkingen en voorwaarden in te stellen voor jouw kanaal";
$a->strings["Post Composition Features"] = "Functies voor het opstellen van berichten";
-$a->strings["Use Markdown"] = "Markdown gebruiken";
-$a->strings["Allow use of \"Markdown\" to format posts"] = "Sta het gebruik van \"markdown\" toe om berichten mee op te maken.";
$a->strings["Large Photos"] = "Grote foto's";
$a->strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Gebruik grotere foto's (1024px) in berichten. Wanneer dit is uitgeschakeld worden er kleinere foto's (640px) gebruikt.";
$a->strings["Channel Sources"] = "Kanaalbronnen";
@@ -618,7 +618,7 @@ $a->strings["Security"] = "Beveiliging";
$a->strings["Plugins"] = "Plugins";
$a->strings["Themes"] = "Thema's";
$a->strings["Inspect queue"] = "Inspecteer berichtenwachtrij";
-$a->strings["Profile Config"] = "Profielconfiguratie";
+$a->strings["Profile Fields"] = "Profielvelden";
$a->strings["DB updates"] = "Database-updates";
$a->strings["Logs"] = "Logboeken";
$a->strings["Plugin Features"] = "Plugin-opties";
@@ -742,11 +742,9 @@ $a->strings["Default Profile"] = "Standaardprofiel";
$a->strings["Requested channel is not available."] = "Opgevraagd kanaal is niet beschikbaar.";
$a->strings["Requested profile is not available."] = "Opgevraagd profiel is niet beschikbaar";
$a->strings["Change profile photo"] = "Profielfoto veranderen";
-$a->strings["Profiles"] = "Profielen";
-$a->strings["Manage/edit profiles"] = "Profielen beheren/bewerken";
$a->strings["Create New Profile"] = "Nieuw profiel aanmaken";
$a->strings["Profile Image"] = "Profielfoto";
-$a->strings["visible to everybody"] = "Voor iedereen zichtbaar";
+$a->strings["Visible to everybody"] = "Voor iedereen zichtbaar";
$a->strings["Edit visibility"] = "Zichtbaarheid bewerken";
$a->strings["Gender:"] = "Geslacht:";
$a->strings["Status:"] = "Status:";
@@ -1023,7 +1021,7 @@ $a->strings["female"] = "vrouw";
$a->strings["%1\$s updated her %2\$s"] = "%1\$s heeft haar %2\$s bijgewerkt";
$a->strings["male"] = "man";
$a->strings["%1\$s updated his %2\$s"] = "%1\$s heeft zijn %2\$s bijgewerkt";
-$a->strings["%1\$s updated their %2\$s"] = "%1\$s hebben hun %2\$s bijgewerkt";
+$a->strings["%1\$s updated their %2\$s"] = "De %2\$s van %1\$s is bijgewerkt";
$a->strings["profile photo"] = "profielfoto";
$a->strings["Some blurb about what to do when you're new here"] = "Welkom op \$Projectname. Klik op de tab ontdekken of klik rechtsboven op de <a href=\"directory\">kanalengids</a>, om kanalen te vinden. Rechtsboven vind je ook <a href=\"directory\">apps</a>, waar je vrijwel alle functies van \$Projectname kunt vinden. Voor <a href=\"directory\">hulp</a> met \$Projectname klik je op het vraagteken.";
$a->strings["network"] = "netwerk";
@@ -1756,6 +1754,12 @@ $a->strings["Help text"] = "Helptekst";
$a->strings["Additional info (optional)"] = "Extra informatie (optioneel)";
$a->strings["Field definition not found"] = "Velddefinitie niet gevonden";
$a->strings["Edit Profile Field"] = "Profielveld bewerken";
+$a->strings["Basic Profile Fields"] = "Standaard profielvelden";
+$a->strings["Advanced Profile Fields"] = "Geavanceerde profielvelden";
+$a->strings["(In addition to basic fields)"] = "(als toevoeging op de standaard velden)";
+$a->strings["All available fields"] = "Alle beschikbare velden";
+$a->strings["Custom Fields"] = "Extra (handmatig toegevoegde) velden";
+$a->strings["Create Custom Field"] = "Extra velden aanmaken";
$a->strings["Poke somebody"] = "Iemand aanstoten";
$a->strings["Poke/Prod"] = "Aanstoten/porren";
$a->strings["Poke, prod or do other things to somebody"] = "Iemand bijvoorbeeld aanstoten of poren";
diff --git a/view/php/choklet.php b/view/php/choklet.php
index 712e8b1c3..5f2303e77 100644
--- a/view/php/choklet.php
+++ b/view/php/choklet.php
@@ -1,5 +1,5 @@
<!DOCTYPE html >
-<html>
+<html prefix="og: http://ogp.me/ns#">
<head>
<title><?php if(x($page,'title')) echo $page['title']; ?></title>
<script>var baseurl="<?php echo $a->get_baseurl(); ?>";</script>
diff --git a/view/php/default.php b/view/php/default.php
index cf6b25d90..4a7c1ea19 100644
--- a/view/php/default.php
+++ b/view/php/default.php
@@ -1,5 +1,5 @@
<!DOCTYPE html >
-<html>
+<html prefix="og: http://ogp.me/ns#">
<head>
<title><?php if(x($page,'title')) echo $page['title'] ?></title>
<script>var baseurl="<?php echo $a->get_baseurl() ?>";</script>
diff --git a/view/php/full.php b/view/php/full.php
index 99653c06d..bc3b2ed87 100644
--- a/view/php/full.php
+++ b/view/php/full.php
@@ -1,5 +1,5 @@
<!DOCTYPE html>
-<html>
+<html prefix="og: http://ogp.me/ns#">
<head>
<title><?php if(x($page,'title')) echo $page['title'] ?></title>
<script>var baseurl="<?php echo $a->get_baseurl() ?>";</script>
diff --git a/view/php/minimal.php b/view/php/minimal.php
index a8c693985..ade2a0cb7 100644
--- a/view/php/minimal.php
+++ b/view/php/minimal.php
@@ -1,5 +1,5 @@
<!DOCTYPE html >
-<html>
+<html prefix="og: http://ogp.me/ns#">
<head>
<title><?php if(x($page,'title')) echo $page['title'] ?></title>
<script>var baseurl="<?php echo $a->get_baseurl() ?>";</script>
diff --git a/view/php/redable.php b/view/php/redable.php
index dfa99ccb3..0dcba77d2 100644
--- a/view/php/redable.php
+++ b/view/php/redable.php
@@ -1,5 +1,5 @@
<!DOCTYPE html >
-<html>
+<html prefix="og: http://ogp.me/ns#">
<head>
<title><?php if(x($page,'title')) echo $page['title'] ?></title>
<script>var baseurl="<?php echo $a->get_baseurl() ?>";</script>
diff --git a/view/php/zen.php b/view/php/zen.php
index 5b89e9c32..a96cf722f 100644
--- a/view/php/zen.php
+++ b/view/php/zen.php
@@ -1,5 +1,5 @@
<!DOCTYPE html>
-<html>
+<html prefix="og: http://ogp.me/ns#">
<head>
<title><?php if(x($page,'title')) echo $page['title'] ?></title>
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1">
diff --git a/view/theme/redbasic/php/config.php b/view/theme/redbasic/php/config.php
index 6bea5bddb..66597332c 100644
--- a/view/theme/redbasic/php/config.php
+++ b/view/theme/redbasic/php/config.php
@@ -98,6 +98,7 @@ if(feature_enabled(local_channel(),'expert'))
$o .= replace_macros($t, array(
'$submit' => t('Submit'),
'$baseurl' => $a->get_baseurl(),
+ '$theme' => $a->channel['channel_theme'],
'$expert' => $expert,
'$title' => t("Theme settings"),
'$schema' => array('redbasic_schema', t('Select scheme'), $arr['schema'], '', $scheme_choices),
diff --git a/view/theme/redbasic/php/style.php b/view/theme/redbasic/php/style.php
index 0ca47b1fb..6058a3c14 100644
--- a/view/theme/redbasic/php/style.php
+++ b/view/theme/redbasic/php/style.php
@@ -215,3 +215,8 @@ if($align_left && file_exists('view/theme/redbasic/css/align_left.css')) {
if($schemecss) {
echo $schemecss;
}
+
+// Set the schema to the default schema in derived themes. See the documentation for creating derived themes how to override this.
+
+if(local_channel() && $a->channel && $a->channel['channel_theme'] != 'redbasic')
+ set_pconfig(local_channel(), 'redbasic', 'schema', '---');
diff --git a/view/theme/redbasic/tpl/theme_settings.tpl b/view/theme/redbasic/tpl/theme_settings.tpl
index cdc9de489..0ec6d1741 100644
--- a/view/theme/redbasic/tpl/theme_settings.tpl
+++ b/view/theme/redbasic/tpl/theme_settings.tpl
@@ -1,4 +1,6 @@
+{{if $theme == redbasic}}
{{include file="field_select.tpl" field=$schema}}
+{{/if}}
{{include file="field_checkbox.tpl" field=$align_left}}
{{include file="field_checkbox.tpl" field=$narrow_navbar}}
{{include file="field_input.tpl" field=$converse_width}}
diff --git a/view/tpl/cover_photo_widget.tpl b/view/tpl/cover_photo_widget.tpl
index f5790d141..8254fc87d 100755
--- a/view/tpl/cover_photo_widget.tpl
+++ b/view/tpl/cover_photo_widget.tpl
@@ -15,7 +15,7 @@
if($('#cover-photo').length && $(window).width() > 755 && $(window).scrollTop() >= $('#cover-photo').height()) {
$('header').fadeIn();
$('main').css('opacity', 1);
- $('aside, section').css('padding-top', 71 + 'px');
+ $('aside, section').css('padding-top', $('nav').outerHeight(true) + 'px');
$(window).scrollTop($(window).scrollTop() - $('#cover-photo').height())
$('.navbar-fixed-top').css('position', 'fixed');
$('#cover-photo').remove();
@@ -28,7 +28,7 @@
$(window).resize(function () {
if($('#cover-photo').length && $(window).width() < 755) {
$('main').css('opacity', 1);
- $('aside, section').css('padding-top', 71 + 'px');
+ $('aside, section').css('padding-top', $('nav').outerHeight(true) + 'px');
$('.navbar-fixed-top').css('position', 'fixed');
$('#cover-photo').remove();
}
diff --git a/view/tpl/head.tpl b/view/tpl/head.tpl
index 322273193..ba883c1f0 100755
--- a/view/tpl/head.tpl
+++ b/view/tpl/head.tpl
@@ -1,8 +1,7 @@
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<base href="{{$baseurl}}/" />
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable={{$user_scalable}}" />
-<meta name="generator" content="{{$generator}}" />
-
+{{$metas}}
<!--[if IE]>
<script src="{{$baseurl}}/library/html5.js"></script>
<![endif]-->
diff --git a/view/tpl/profile_edit.tpl b/view/tpl/profile_edit.tpl
index 229a84ae6..26da4ebc9 100755
--- a/view/tpl/profile_edit.tpl
+++ b/view/tpl/profile_edit.tpl
@@ -1,9 +1,8 @@
-<div class="generic-content-wrapper-styled">{{if $is_default}}
-<p id="profile-edit-default-desc">{{$default}}</p>
-{{/if}}
+<div class="generic-content-wrapper">
-<h1>{{$banner}}</h1>
+<div class="section-title-wrapper"><h2>{{$banner}}</h2></div>
+<div class="section-content-wrapper">
<form id="profile-edit-form" name="form1" action="profiles/{{$profile_id}}" enctype="multipart/form-data" method="post" >
<div id="profile-edit-links">
@@ -21,33 +20,37 @@
<div id="profile-edit-links-end"></div>
+{{if $is_default}}
+<p class="section-content-info-wrapper">{{$default}}</p>
+{{/if}}
+
<div id="profile-edit-wrapper" >
<input type='hidden' name='form_security_token' value='{{$form_security_token}}'>
-<div id="profile-edit-profile-name-wrapper" >
-<label id="profile-edit-profile-name-label" for="profile-edit-profile-name" >{{$lbl_profname}} </label>
-<input type="text" size="32" name="profile_name" id="profile-edit-profile-name" value="{{$profile_name}}" /><div class="required">*</div>
+<div id="profile-edit-profile-name-wrapper" class="form-group field">
+<label id="profile-edit-profile-name-label" for="profile-edit-profile-name" ><span class="required">*</span>&nbsp;{{$lbl_profname}} </label>
+<input type="text" class="form-control" size="32" name="profile_name" id="profile-edit-profile-name" value="{{$profile_name}}" />
</div>
<div id="profile-edit-profile-name-end"></div>
-<div id="profile-edit-name-wrapper" >
+<div id="profile-edit-name-wrapper" class="form-group field" >
<label id="profile-edit-name-label" for="profile-edit-name" >{{$lbl_fullname}} </label>
-<input type="text" size="32" name="name" id="profile-edit-name" value="{{$name}}" />
+<input type="text" class="form-control" size="32" name="name" id="profile-edit-name" value="{{$name}}" />
</div>
<div id="profile-edit-name-end"></div>
{{if $fields.pdesc}}
-<div id="profile-edit-pdesc-wrapper" >
+<div id="profile-edit-pdesc-wrapper" class="form-group field" >
<label id="profile-edit-pdesc-label" for="profile-edit-pdesc" >{{$lbl_title}} </label>
-<input type="text" size="32" name="pdesc" id="profile-edit-pdesc" value="{{$pdesc}}" />
+<input type="text" class="form-control" size="32" name="pdesc" id="profile-edit-pdesc" value="{{$pdesc}}" />
</div>
<div id="profile-edit-pdesc-end"></div>
{{/if}}
{{if $fields.gender}}
-<div id="profile-edit-gender-wrapper" >
+<div id="profile-edit-gender-wrapper" class="form-group field select" >
<label id="profile-edit-gender-label" for="gender-select" >{{$lbl_gender}} </label>
{{if $advanced}}
{{$gender}}
@@ -59,7 +62,7 @@
{{/if}}
{{if $fields.dob}}
-<div id="profile-edit-dob-wrapper" >
+<div id="profile-edit-dob-wrapper" class="form-group field" >
<label id="profile-edit-dob-label" for="dob-select" >{{$lbl_bd}} </label>
<div id="profile-edit-dob" >
{{$dob}} {{$age}}
@@ -76,60 +79,60 @@
<div class="profile-edit-submit-end"></div>
{{if $fields.address}}
-<div id="profile-edit-address-wrapper" >
+<div id="profile-edit-address-wrapper" class="form-group field" >
<label id="profile-edit-address-label" for="profile-edit-address" >{{$lbl_address}} </label>
-<input type="text" size="32" name="address" id="profile-edit-address" value="{{$address}}" />
+<input type="text" class="form-control" size="32" name="address" id="profile-edit-address" value="{{$address}}" />
</div>
<div id="profile-edit-address-end"></div>
{{/if}}
{{if $fields.locality}}
-<div id="profile-edit-locality-wrapper" >
+<div id="profile-edit-locality-wrapper" class="form-group field" >
<label id="profile-edit-locality-label" for="profile-edit-locality" >{{$lbl_city}} </label>
-<input type="text" size="32" name="locality" id="profile-edit-locality" value="{{$locality}}" />
+<input type="text" class="form-control" size="32" name="locality" id="profile-edit-locality" value="{{$locality}}" />
</div>
<div id="profile-edit-locality-end"></div>
{{/if}}
{{if $fields.postal_code}}
-<div id="profile-edit-postal-code-wrapper" >
+<div id="profile-edit-postal-code-wrapper" class="form-group field" >
<label id="profile-edit-postal-code-label" for="profile-edit-postal-code" >{{$lbl_zip}} </label>
-<input type="text" size="32" name="postal_code" id="profile-edit-postal-code" value="{{$postal_code}}" />
+<input type="text" class="form-control" size="32" name="postal_code" id="profile-edit-postal-code" value="{{$postal_code}}" />
</div>
<div id="profile-edit-postal-code-end"></div>
{{/if}}
{{if $fields.region}}
-<div id="profile-edit-region-wrapper" >
+<div id="profile-edit-region-wrapper" class="form-group field" >
<label id="profile-edit-region-label" for="profile-edit-region" >{{$lbl_region}} </label>
-<input type="text" size="32" name="region" id="profile-edit-region" value="{{$region}}" />
+<input type="text" class="form-control" size="32" name="region" id="profile-edit-region" value="{{$region}}" />
</div>
<div id="profile-edit-region-end"></div>
{{/if}}
{{if $fields.country_name}}
-<div id="profile-edit-country-name-wrapper" >
+<div id="profile-edit-country-name-wrapper" class="form-group field" >
<label id="profile-edit-country-name-label" for="profile-edit-country-name" >{{$lbl_country}} </label>
-<input type="text" size="32" name="country_name" id="profile-edit-country-name" value="{{$country_name}}" />
+<input type="text" class="form-control" size="32" name="country_name" id="profile-edit-country-name" value="{{$country_name}}" />
</div>
<div id="profile-edit-country-name-end"></div>
{{/if}}
{{if $fields.hometown}}
-<div id="profile-edit-hometown-wrapper" >
+<div id="profile-edit-hometown-wrapper" class="form-group field" >
<label id="profile-edit-hometown-label" for="profile-edit-hometown" >{{$lbl_hometown}} </label>
-<input type="text" size="32" name="hometown" id="profile-edit-hometown" value="{{$hometown}}" />
+<input type="text" class="form-control" size="32" name="hometown" id="profile-edit-hometown" value="{{$hometown}}" />
</div>
<div id="profile-edit-hometown-end"></div>
{{/if}}
-<div class="profile-edit-submit-wrapper" >
+<div class="profile-edit-submit-wrapper" class="form-group field" >
<input type="submit" name="submit" class="profile-edit-submit-button" value="{{$submit}}" />
</div>
<div class="profile-edit-submit-end"></div>
{{if $fields.marital }}
-<div id="profile-edit-marital-wrapper" >
+<div id="profile-edit-marital-wrapper" class="form-group field" >
<label id="profile-edit-marital-label" for="profile-edit-marital" >{{$lbl_marital}} </label>
{{if $advanced}}
{{$marital}}
@@ -140,27 +143,27 @@
<div class="clear"></div>
{{if $fields.with}}
<label id="profile-edit-with-label" for="profile-edit-with" > {{$lbl_with}} </label>
-<input type="text" size="32" name="with" id="profile-edit-with" title="{{$lbl_ex1}}" value="{{$with}}" />
+<input type="text" class="form-control" size="32" name="with" id="profile-edit-with" title="{{$lbl_ex1}}" value="{{$with}}" />
<div class="clear"></div>
{{/if}}
{{if $fields.howlong}}
<label id="profile-edit-howlong-label" for="profile-edit-howlong" > {{$lbl_howlong}} </label>
-<input type="text" size="32" name="howlong" id="profile-edit-howlong" title="{{$lbl_howlong}}" value="{{$howlong}}" />
+<input type="text" class="form-control" size="32" name="howlong" id="profile-edit-howlong" title="{{$lbl_howlong}}" value="{{$howlong}}" />
<div class="clear"></div>
{{/if}}
<div id="profile-edit-marital-end"></div>
{{/if}}
-
+<br /><br />
{{if $fields.homepage}}
-<div id="profile-edit-homepage-wrapper" >
+<div id="profile-edit-homepage-wrapper" class="form-group field" >
<label id="profile-edit-homepage-label" for="profile-edit-homepage" >{{$lbl_homepage}} </label>
-<input type="text" size="32" name="homepage" id="profile-edit-homepage" value="{{$homepage}}" />
+<input type="text" class="form-control" size="32" name="homepage" id="profile-edit-homepage" value="{{$homepage}}" />
</div>
<div id="profile-edit-homepage-end"></div>
{{/if}}
{{if $fields.sexual}}
-<div id="profile-edit-sexual-wrapper" >
+<div id="profile-edit-sexual-wrapper" class="form-group field" >
<label id="profile-edit-sexual-label" for="sexual-select" >{{$lbl_sexual}} </label>
{{$sexual}}
</div>
@@ -168,49 +171,51 @@
{{/if}}
{{if $fields.politic}}
-<div id="profile-edit-politic-wrapper" >
+<div id="profile-edit-politic-wrapper" class="form-group field" >
<label id="profile-edit-politic-label" for="profile-edit-politic" >{{$lbl_politic}} </label>
-<input type="text" size="32" name="politic" id="profile-edit-politic" value="{{$politic}}" />
+<input class="form-control" type="text" size="32" name="politic" id="profile-edit-politic" value="{{$politic}}" />
</div>
<div id="profile-edit-politic-end"></div>
{{/if}}
{{if $fields.religion}}
-<div id="profile-edit-religion-wrapper" >
+<div id="profile-edit-religion-wrapper" class="form-group field" >
<label id="profile-edit-religion-label" for="profile-edit-religion" >{{$lbl_religion}} </label>
-<input type="text" size="32" name="religion" id="profile-edit-religion" value="{{$religion}}" />
+<input type="text" class="form-control" size="32" name="religion" id="profile-edit-religion" value="{{$religion}}" />
</div>
<div id="profile-edit-religion-end"></div>
{{/if}}
{{if $fields.keywords}}
-<div id="profile-edit-pubkeywords-wrapper" >
+<div id="profile-edit-pubkeywords-wrapper" class="form-group field" >
<label id="profile-edit-pubkeywords-label" for="profile-edit-pubkeywords" >{{$lbl_pubkey}} </label>
-<input type="text" size="32" name="keywords" id="profile-edit-pubkeywords" title="{{$lbl_ex2}}" value="{{$keywords}}" />
-</div><div id="profile-edit-pubkeywords-desc">{{$lbl_pubdsc}}</div>
+<input type="text" class="form-control" size="32" name="keywords" id="profile-edit-pubkeywords" title="{{$lbl_ex2}}" value="{{$keywords}}" />
+</div>
+<span class="help-block">{{$lbl_pubdsc}}</span>
<div id="profile-edit-pubkeywords-end"></div>
{{/if}}
+<br /><br />
{{if $fields.about}}
-<div id="about-jot-wrapper" >
+<div id="about-jot-wrapper" class="form-group field" >
<p id="about-jot-desc" >
{{$lbl_about}}
</p>
-<textarea rows="10" cols="72" id="profile-about-text" name="about" >{{$about}}</textarea>
+<textarea class="form-control" rows="10" cols="72" id="profile-about-text" name="about" >{{$about}}</textarea>
</div>
<div id="about-jot-end"></div>
{{/if}}
{{if $fields.contact}}
-<div id="contact-jot-wrapper" >
+<div id="contact-jot-wrapper" class="form-group field" >
<p id="contact-jot-desc" >
{{$lbl_social}}
</p>
-<textarea rows="10" cols="72" id="contact-jot-text" name="contact" >{{$contact}}</textarea>
+<textarea class="form-control" rows="10" cols="72" id="contact-jot-text" name="contact" >{{$contact}}</textarea>
</div>
<div id="contact-jot-end"></div>
@@ -218,96 +223,96 @@
{{if $fields.interest}}
-<div id="interest-jot-wrapper" >
+<div id="interest-jot-wrapper" class="form-group field" >
<p id="interest-jot-desc" >
{{$lbl_hobbies}}
</p>
-<textarea rows="10" cols="72" id="interest-jot-text" name="interest" >{{$interest}}</textarea>
+<textarea class="form-control" rows="10" cols="72" id="interest-jot-text" name="interest" >{{$interest}}</textarea>
</div>
<div id="interest-jot-end"></div>
{{/if}}
{{if $fields.likes}}
-<div id="likes-jot-wrapper" >
+<div id="likes-jot-wrapper" class="form-group field" >
<p id="likes-jot-desc" >
{{$lbl_likes}}
</p>
-<textarea rows="10" cols="72" id="likes-jot-text" name="likes" >{{$likes}}</textarea>
+<textarea class="form-control" rows="10" cols="72" id="likes-jot-text" name="likes" >{{$likes}}</textarea>
</div>
<div id="likes-jot-end"></div>
{{/if}}
{{if $fields.dislikes}}
-<div id="dislikes-jot-wrapper" >
+<div id="dislikes-jot-wrapper" class="form-group field" >
<p id="dislikes-jot-desc" >
{{$lbl_dislikes}}
</p>
-<textarea rows="10" cols="72" id="dislikes-jot-text" name="dislikes" >{{$dislikes}}</textarea>
+<textarea class="form-control" rows="10" cols="72" id="dislikes-jot-text" name="dislikes" >{{$dislikes}}</textarea>
</div>
<div id="dislikes-jot-end"></div>
{{/if}}
{{if $fields.channels}}
-<div id="channels-jot-wrapper" >
+<div id="channels-jot-wrapper" class="form-group field" >
<p id="channels-jot-desc" >
{{$lbl_channels}}
</p>
-<textarea rows="10" cols="72" id="channels-jot-text" name="channels" >{{$channels}}</textarea>
+<textarea class="form-control" rows="10" cols="72" id="channels-jot-text" name="channels" >{{$channels}}</textarea>
</div>
<div id="channels-jot-end"></div>
{{/if}}
{{if $fields.music}}
-<div id="music-jot-wrapper" >
+<div id="music-jot-wrapper" class="form-group field" >
<p id="music-jot-desc" >
{{$lbl_music}}
</p>
-<textarea rows="10" cols="72" id="music-jot-text" name="music" >{{$music}}</textarea>
+<textarea class="form-control" rows="10" cols="72" id="music-jot-text" name="music" >{{$music}}</textarea>
</div>
<div id="music-jot-end"></div>
{{/if}}
{{if $fields.book}}
-<div id="book-jot-wrapper" >
+<div id="book-jot-wrapper" class="form-group field" >
<p id="book-jot-desc" >
{{$lbl_book}}
</p>
-<textarea rows="10" cols="72" id="book-jot-text" name="book" >{{$book}}</textarea>
+<textarea class="form-control" rows="10" cols="72" id="book-jot-text" name="book" >{{$book}}</textarea>
</div>
<div id="book-jot-end"></div>
{{/if}}
{{if $fields.tv}}
-<div id="tv-jot-wrapper" >
+<div id="tv-jot-wrapper" class="form-group field" >
<p id="tv-jot-desc" >
{{$lbl_tv}}
</p>
-<textarea rows="10" cols="72" id="tv-jot-text" name="tv" >{{$tv}}</textarea>
+<textarea class="form-control" rows="10" cols="72" id="tv-jot-text" name="tv" >{{$tv}}</textarea>
</div>
<div id="tv-jot-end"></div>
{{/if}}
{{if $fields.film}}
-<div id="film-jot-wrapper" >
+<div id="film-jot-wrapper" class="form-group field" >
<p id="film-jot-desc" >
{{$lbl_film}}
</p>
-<textarea rows="10" cols="72" id="film-jot-text" name="film" >{{$film}}</textarea>
+<textarea class="form-control" rows="10" cols="72" id="film-jot-text" name="film" >{{$film}}</textarea>
</div>
<div id="film-jot-end"></div>
@@ -315,36 +320,36 @@
{{if $fields.romance}}
-<div id="romance-jot-wrapper" >
+<div id="romance-jot-wrapper" class="form-group field" >
<p id="romance-jot-desc" >
{{$lbl_love}}
</p>
-<textarea rows="10" cols="72" id="romance-jot-text" name="romance" >{{$romance}}</textarea>
+<textarea class="form-control" rows="10" cols="72" id="romance-jot-text" name="romance" >{{$romance}}</textarea>
</div>
<div id="romance-jot-end"></div>
{{/if}}
{{if $fields.work}}
-<div id="work-jot-wrapper" >
+<div id="work-jot-wrapper" class="form-group field" >
<p id="work-jot-desc" >
{{$lbl_work}}
</p>
-<textarea rows="10" cols="72" id="work-jot-text" name="work" >{{$work}}</textarea>
+<textarea class="form-control" rows="10" cols="72" id="work-jot-text" name="work" >{{$work}}</textarea>
</div>
<div id="work-jot-end"></div>
{{/if}}
{{if $fields.education}}
-<div id="education-jot-wrapper" >
+<div id="education-jot-wrapper" class="form-group field" >
<p id="education-jot-desc" >
{{$lbl_school}}
</p>
-<textarea rows="10" cols="72" id="education-jot-text" name="education" >{{$education}}</textarea>
+<textarea class="form-control" rows="10" cols="72" id="education-jot-text" name="education" >{{$education}}</textarea>
</div>
<div id="education-jot-end"></div>
@@ -365,4 +370,5 @@
</form>
</div>
</div>
+</div>