aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Zotlabs/Access/PermissionLimits.php36
-rw-r--r--Zotlabs/Access/PermissionRoles.php215
-rw-r--r--Zotlabs/Access/Permissions.php116
-rw-r--r--Zotlabs/Daemon/Onepoll.php4
-rw-r--r--Zotlabs/Lib/AbConfig.php2
-rw-r--r--Zotlabs/Lib/Cache.php5
-rw-r--r--Zotlabs/Lib/PConfig.php17
-rw-r--r--Zotlabs/Lib/PermissionDescription.php17
-rw-r--r--Zotlabs/Module/Connedit.php89
-rw-r--r--Zotlabs/Module/Editpost.php4
-rw-r--r--Zotlabs/Module/Editwebpage.php4
-rw-r--r--Zotlabs/Module/Follow.php5
-rw-r--r--Zotlabs/Module/Id.php319
-rw-r--r--Zotlabs/Module/Import.php9
-rw-r--r--Zotlabs/Module/Item.php12
-rw-r--r--Zotlabs/Module/Like.php31
-rw-r--r--Zotlabs/Module/Mail.php12
-rw-r--r--Zotlabs/Module/Manage.php4
-rw-r--r--Zotlabs/Module/Openid.php198
-rw-r--r--Zotlabs/Module/Probe.php2
-rw-r--r--Zotlabs/Module/Profiles.php4
-rw-r--r--Zotlabs/Module/Ratingsearch.php4
-rw-r--r--Zotlabs/Module/Rmagic.php12
-rw-r--r--Zotlabs/Storage/BasicAuth.php2
-rw-r--r--Zotlabs/Web/Router.php1
-rw-r--r--Zotlabs/Web/WebServer.php2
-rwxr-xr-xboot.php2
-rw-r--r--include/api.php110
-rw-r--r--include/api_auth.php2
-rw-r--r--include/attach.php1
-rw-r--r--include/channel.php107
-rw-r--r--include/config.php1
-rw-r--r--include/connections.php10
-rw-r--r--include/conversation.php6
-rw-r--r--include/follow.php48
-rw-r--r--include/import.php45
-rw-r--r--include/perm_upgrade.php236
-rw-r--r--include/photos.php2
-rw-r--r--include/security.php41
-rw-r--r--include/text.php49
-rw-r--r--include/widgets.php11
-rw-r--r--install/schema_mysql.sql1
-rw-r--r--install/schema_postgres.sql3
-rw-r--r--install/update.php29
-rw-r--r--library/readmore.js/README.md22
-rw-r--r--library/readmore.js/hubzilla-custom-fix-webkit-browsers.patch13
-rw-r--r--library/readmore.js/readmore.js28
-rw-r--r--vendor/sabre/dav/lib/DAV/Browser/Plugin.php6
-rw-r--r--view/ca/hmessages.po8592
-rw-r--r--view/ca/hstrings.php1854
-rw-r--r--view/fr/hmessages.po8530
-rw-r--r--view/fr/hstrings.php1810
-rw-r--r--view/it/hmessages.po8594
-rw-r--r--view/js/main.js4
-rw-r--r--view/nb-no/hmessages.po8658
-rw-r--r--view/nb-no/hstrings.php1924
-rw-r--r--view/theme/redbasic/css/style.css3
-rw-r--r--view/tpl/cloud_directory.tpl2
58 files changed, 21064 insertions, 20806 deletions
diff --git a/Zotlabs/Access/PermissionLimits.php b/Zotlabs/Access/PermissionLimits.php
deleted file mode 100644
index 909b654d5..000000000
--- a/Zotlabs/Access/PermissionLimits.php
+++ /dev/null
@@ -1,36 +0,0 @@
-<?php
-
-namespace Zotlabs\Access;
-
-use \Zotlabs\Lib as ZLib;
-
-class PermissionLimits {
-
- static public function Std_Limits() {
- $perms = Permissions::Perms();
- $limits = array();
- foreach($perms as $k => $v) {
- if(strstr($k,'view'))
- $limits[$k] = PERMS_PUBLIC;
- else
- $limits[$k] = PERMS_SPECIFIC;
- }
- return $limits;
- }
-
- static public function Set($channel_id,$perm,$perm_limit) {
- ZLib\PConfig::Set($channel_id,'perm_limits',$perm,$perm_limit);
- }
-
- static public function Get($channel_id,$perm = '') {
- if($perm) {
- return Zlib\PConfig::Get($channel_id,'perm_limits',$perm);
- }
- else {
- Zlib\PConfig::Load($channel_id);
- if(array_key_exists($channel_id,\App::$config) && array_key_exists('perm_limits',\App::$config[$channel_id]))
- return \App::$config[$channel_id]['perm_limits'];
- return false;
- }
- }
-} \ No newline at end of file
diff --git a/Zotlabs/Access/PermissionRoles.php b/Zotlabs/Access/PermissionRoles.php
deleted file mode 100644
index 8b116adc5..000000000
--- a/Zotlabs/Access/PermissionRoles.php
+++ /dev/null
@@ -1,215 +0,0 @@
-<?php
-
-
-namespace Zotlabs\Access;
-
-use Zotlabs\Lib as Zlib;
-
-class PermissionRoles {
-
-
- static function role_perms($role) {
-
- $ret = array();
-
- $ret['role'] = $role;
-
- switch($role) {
- case 'social':
- $ret['perms_auto'] = false;
- $ret['default_collection'] = false;
- $ret['directory_publish'] = true;
- $ret['online'] = true;
- $ret['perms_connect'] = [
- 'view_stream', 'view_profile', 'view_contacts', 'view_storage',
- 'view_pages', 'send_stream', 'post_wall', 'post_comments',
- 'post_mail', 'chat', 'post_like', 'republish' ];
-
- $ret['limits'] = PermissionLimits::Std_Limits();
- break;
-
- case 'social_restricted':
- $ret['perms_auto'] = false;
- $ret['default_collection'] = true;
- $ret['directory_publish'] = true;
- $ret['online'] = true;
- $ret['perms_connect'] = [
- 'view_stream', 'view_profile', 'view_contacts', 'view_storage',
- 'view_pages', 'send_stream', 'post_wall', 'post_comments',
- 'post_mail', 'chat', 'post_like' ];
-
- $ret['limits'] = PermissionLimits::Std_Limits();
-
- break;
-
- case 'social_private':
- $ret['perms_auto'] = false;
- $ret['default_collection'] = true;
- $ret['directory_publish'] = false;
- $ret['online'] = false;
- $ret['perms_connect'] = [
- 'view_stream', 'view_profile', 'view_contacts', 'view_storage',
- 'view_pages', 'send_stream', 'post_wall', 'post_comments',
- 'post_mail', 'post_like' ];
- $ret['limits'] = PermissionLimits::Std_Limits();
- $ret['limits']['view_contacts'] = PERMS_SPECIFIC;
- $ret['limits']['view_storage'] = PERMS_SPECIFIC;
-
- break;
-
- case 'forum':
- $ret['perms_auto'] = true;
- $ret['default_collection'] = false;
- $ret['directory_publish'] = true;
- $ret['online'] = false;
- $ret['perms_connect'] = [
- 'view_stream', 'view_profile', 'view_contacts', 'view_storage',
- 'view_pages', 'post_wall', 'post_comments', 'tag_deliver',
- 'post_mail', 'post_like' , 'republish', 'chat' ];
-
- $ret['limits'] = PermissionLimits::Std_Limits();
- break;
-
- case 'forum_restricted':
- $ret['perms_auto'] = false;
- $ret['default_collection'] = true;
- $ret['directory_publish'] = true;
- $ret['online'] = false;
- $ret['perms_connect'] = [
- 'view_stream', 'view_profile', 'view_contacts', 'view_storage',
- 'view_pages', 'post_wall', 'post_comments', 'tag_deliver',
- 'post_mail', 'post_like' , 'chat' ];
-
- $ret['limits'] = PermissionLimits::Std_Limits();
-
- break;
-
- case 'forum_private':
- $ret['perms_auto'] = false;
- $ret['default_collection'] = true;
- $ret['directory_publish'] = false;
- $ret['online'] = false;
-
- $ret['perms_connect'] = [
- 'view_stream', 'view_profile', 'view_contacts', 'view_storage',
- 'view_pages', 'post_wall', 'post_comments',
- 'post_mail', 'post_like' , 'chat' ];
-
- $ret['limits'] = PermissionLimits::Std_Limits();
- $ret['limits']['view_profile'] = PERMS_SPECIFIC;
- $ret['limits']['view_contacts'] = PERMS_SPECIFIC;
- $ret['limits']['view_storage'] = PERMS_SPECIFIC;
- $ret['limits']['view_pages'] = PERMS_SPECIFIC;
-
- break;
-
- case 'feed':
- $ret['perms_auto'] = true;
- $ret['default_collection'] = false;
- $ret['directory_publish'] = true;
- $ret['online'] = false;
-
- $ret['perms_connect'] = [
- 'view_stream', 'view_profile', 'view_contacts', 'view_storage',
- 'view_pages', 'send_stream', 'post_wall', 'post_comments',
- 'post_mail', 'post_like' , 'republish' ];
-
- $ret['limits'] = PermissionLimits::Std_Limits();
-
- break;
-
- case 'feed_restricted':
- $ret['perms_auto'] = false;
- $ret['default_collection'] = true;
- $ret['directory_publish'] = false;
- $ret['online'] = false;
- $ret['perms_connect'] = [
- 'view_stream', 'view_profile', 'view_contacts', 'view_storage',
- 'view_pages', 'send_stream', 'post_wall', 'post_comments',
- 'post_mail', 'post_like' , 'republish' ];
-
- $ret['limits'] = PermissionLimits::Std_Limits();
-
- break;
-
- case 'soapbox':
- $ret['perms_auto'] = true;
- $ret['default_collection'] = false;
- $ret['directory_publish'] = true;
- $ret['online'] = false;
-
- $ret['perms_connect'] = [
- 'view_stream', 'view_profile', 'view_contacts', 'view_storage',
- 'view_pages', 'post_like' , 'republish' ];
-
- $ret['limits'] = PermissionLimits::Std_Limits();
-
- break;
-
- case 'repository':
- $ret['perms_auto'] = true;
- $ret['default_collection'] = false;
- $ret['directory_publish'] = true;
- $ret['online'] = false;
-
- $ret['perms_connect'] = [
- 'view_stream', 'view_profile', 'view_contacts', 'view_storage',
- 'view_pages', 'write_storage', 'write_pages', 'post_wall', 'post_comments', 'tag_deliver',
- 'post_mail', 'post_like' , 'republish', 'chat' ];
-
- $ret['limits'] = PermissionLimits::Std_Limits();
- break;
-
- default:
- break;
- }
-
- $x = get_config('system','role_perms');
- // let system settings over-ride any or all
- if($x && is_array($x) && array_key_exists($role,$x))
- $ret = array_merge($ret,$x[$role]);
-
- call_hooks('get_role_perms',$ret);
-
- return $ret;
- }
-
-
-
-
- static public function roles() {
- $roles = [
- t('Social Networking') => [
- 'social' => t('Social - Mostly Public'),
- 'social_restricted' => t('Social - Restricted'),
- 'social_private' => t('Social - Private')
- ],
-
- t('Community Forum') => [
- 'forum' => t('Forum - Mostly Public'),
- 'forum_restricted' => t('Forum - Restricted'),
- 'forum_private' => t('Forum - Private')
- ],
-
- t('Feed Republish') => [
- 'feed' => t('Feed - Mostly Public'),
- 'feed_restricted' => t('Feed - Restricted')
- ],
-
- t('Special Purpose') => [
- 'soapbox' => t('Special - Celebrity/Soapbox'),
- 'repository' => t('Special - Group Repository')
- ],
-
- t('Other') => [
- 'custom' => t('Custom/Expert Mode')
- ]
-
- ];
-
- return $roles;
- }
-
-
-
-} \ No newline at end of file
diff --git a/Zotlabs/Access/Permissions.php b/Zotlabs/Access/Permissions.php
deleted file mode 100644
index 61ea51a48..000000000
--- a/Zotlabs/Access/Permissions.php
+++ /dev/null
@@ -1,116 +0,0 @@
-<?php
-
-
-namespace Zotlabs\Access;
-
-use Zotlabs\Lib as Zlib;
-
-class Permissions {
-
- /**
- * Extensible permissions.
- * To add new permissions, add to the list of $perms below, with a simple description.
- * Also visit PermissionRoles.php and add to the $ret['perms_connect'] property for any role
- * if this permission should be granted to new connections.
- *
- * Permissions with 'view' in the name are considered read permissions. Anything
- * else requires authentication. Read permission limits are PERMS_PUBLIC and anything else
- * is given PERMS_SPECIFIC.
- *
- * PermissionLimits::Std_limits() retrieves the standard limits. A permission role
- * MAY alter an individual setting after retrieving the Std_limits if you require
- * something different for a specific permission within the given role.
- *
- */
-
-
- static public function Perms($filter = '') {
-
- $perms = [
- 'view_stream' => t('Can view my channel stream and posts'),
- 'send_stream' => t('Can send me their channel stream and posts'),
- 'view_profile' => t('Can view my default channel profile'),
- 'view_contacts' => t('Can view my connections'),
- 'view_storage' => t('Can view my file storage and photos'),
- 'write_storage' => t('Can upload/modify my file storage and photos'),
- 'view_pages' => t('Can view my channel webpages'),
- 'write_pages' => t('Can create/edit my channel webpages'),
- 'post_wall' => t('Can post on my channel (wall) page'),
- 'post_comments' => t('Can comment on or like my posts'),
- 'post_mail' => t('Can send me private mail messages'),
- 'post_like' => t('Can like/dislike profiles and profile things'),
- 'tag_deliver' => t('Can forward to all my channel connections via @+ mentions in posts'),
- 'chat' => t('Can chat with me'),
- 'republish' => t('Can source my public posts in derived channels'),
- 'delegate' => t('Can administer my channel')
- ];
-
- $x = array('permissions' => $perms, 'filter' => $filter);
- call_hooks('permissions_list',$x);
- return($x['permissions']);
-
- }
-
- static public function BlockedAnonPerms() {
-
- // Perms from the above list that are blocked from anonymous observers.
- // e.g. you must be authenticated.
-
- $res = array();
- $perms = PermissionLimits::Std_limits();
- foreach($perms as $perm => $limit) {
- if($limit != PERMS_PUBLIC) {
- $res[] = $perm;
- }
- }
-
- $x = array('permissions' => $res);
- call_hooks('write_perms',$x);
- return($x['permissions']);
-
- }
-
- // converts [ 0 => 'view_stream', ... ]
- // to [ 'view_stream' => 1 ]
- // for any permissions in $arr;
- // Undeclared permissions are set to 0
-
- static public function FilledPerms($arr) {
- $everything = self::Perms();
- $ret = [];
- foreach($everything as $k => $v) {
- if(in_array($k,$arr))
- $ret[$k] = 1;
- else
- $ret[$k] = 0;
- }
- return $ret;
-
- }
-
- static public function FilledAutoperms($channel_id) {
- if(! intval(get_pconfig($channel_id,'system','autoperms')))
- return false;
-
- $arr = [];
- $r = q("select * from pconfig where uid = %d and cat = 'autoperms'",
- intval($channel_id)
- );
- if($r) {
- foreach($r as $rr) {
- $arr[$rr['k']] = $arr[$rr['v']];
- }
- }
- return $arr;
- }
-
- static public function PermsCompare($p1,$p2) {
- foreach($p1 as $k => $v) {
- if(! array_key_exists($k,$p2))
- return false;
- if($p1[$k] != $p2[$k])
- return false;
- }
- return true;
- }
-} \ No newline at end of file
diff --git a/Zotlabs/Daemon/Onepoll.php b/Zotlabs/Daemon/Onepoll.php
index 21c46cec5..036a4991b 100644
--- a/Zotlabs/Daemon/Onepoll.php
+++ b/Zotlabs/Daemon/Onepoll.php
@@ -102,9 +102,7 @@ class Onepoll {
$fetch_feed = true;
$x = null;
- $can_view_stream = intval(get_abconfig($importer_uid,$contact['abook_xchan'],'their_perms','view_stream'));
-
- if(! $can_view_stream)
+ if(! ($contact['abook_their_perms'] & PERMS_R_STREAM ))
$fetch_feed = false;
if($fetch_feed) {
diff --git a/Zotlabs/Lib/AbConfig.php b/Zotlabs/Lib/AbConfig.php
index cb5d96951..cab59abbd 100644
--- a/Zotlabs/Lib/AbConfig.php
+++ b/Zotlabs/Lib/AbConfig.php
@@ -7,7 +7,7 @@ class AbConfig {
static public function Load($chan,$xhash,$family = '') {
if($family)
- $where = sprintf(" and cat = '%s' ",dbesc($family));
+ $where = sprintf(" and family = '%s' ",dbesc($family));
$r = q("select * from abconfig where chan = %d and xchan = '%s' $where",
intval($chan),
dbesc($xhash)
diff --git a/Zotlabs/Lib/Cache.php b/Zotlabs/Lib/Cache.php
index f211269be..35c8f56ad 100644
--- a/Zotlabs/Lib/Cache.php
+++ b/Zotlabs/Lib/Cache.php
@@ -8,9 +8,6 @@ namespace Zotlabs\Lib;
class Cache {
public static function get($key) {
-
- $key = substr($key,0,254);
-
$r = q("SELECT v FROM cache WHERE k = '%s' limit 1",
dbesc($key)
);
@@ -22,8 +19,6 @@ class Cache {
public static function set($key,$value) {
- $key = substr($key,0,254);
-
$r = q("SELECT * FROM cache WHERE k = '%s' limit 1",
dbesc($key)
);
diff --git a/Zotlabs/Lib/PConfig.php b/Zotlabs/Lib/PConfig.php
index a481667a5..195321375 100644
--- a/Zotlabs/Lib/PConfig.php
+++ b/Zotlabs/Lib/PConfig.php
@@ -17,20 +17,12 @@ class PConfig {
*/
static public function Load($uid) {
- if(is_null($uid) || $uid === false)
+ if($uid === false)
return false;
if(! array_key_exists($uid, \App::$config))
\App::$config[$uid] = array();
- if(! is_array(\App::$config)) {
- btlogger('App::$config not an array: ' . $uid);
- }
-
- if(! is_array(\App::$config[$uid])) {
- btlogger('App::$config[$uid] not an array: ' . $uid);
- }
-
$r = q("SELECT * FROM pconfig WHERE uid = %d",
intval($uid)
);
@@ -69,7 +61,7 @@ class PConfig {
static public function Get($uid,$family,$key,$instore = false) {
- if(is_null($uid) || $uid === false)
+ if($uid === false)
return false;
if(! array_key_exists($uid, \App::$config))
@@ -110,7 +102,7 @@ class PConfig {
// we provide a function backtrace in the logs so that we can find
// and fix the calling function.
- if(is_null($uid) || $uid === false) {
+ if($uid === false) {
btlogger('UID is FALSE!', LOGGER_NORMAL, LOG_ERR);
return;
}
@@ -180,9 +172,6 @@ class PConfig {
static public function Delete($uid, $family, $key) {
- if(is_null($uid) || $uid === false)
- return false;
-
$ret = false;
if(array_key_exists($key, \App::$config[$uid][$family]))
diff --git a/Zotlabs/Lib/PermissionDescription.php b/Zotlabs/Lib/PermissionDescription.php
index b6c6dd29d..55aac2dea 100644
--- a/Zotlabs/Lib/PermissionDescription.php
+++ b/Zotlabs/Lib/PermissionDescription.php
@@ -78,13 +78,22 @@ class PermissionDescription {
$result = null;
- $global_perms = \Zotlabs\Access\Permissions::Perms();
+ $global_perms = get_perms();
if (array_key_exists($permname, $global_perms)) {
- $channelPerm = \Zotlabs\Access\PermissionLimits::Get(\App::$channel['channel_id'],$permname);
-
- $result = new PermissionDescription('', $channelPerm);
+ $permDetails = $global_perms[$permname];
+
+ // It should be OK to always just read the permissions from App::$channel
+ //
+ // App::$profile is a union of channel and profile fields.
+ // The distinction is basically that App::$profile is pointing to the resource
+ // being observed. App::$channel is referring to the current logged-in channel
+ // member (if this is a local channel) e.g. the observer. We only show the ACL
+ // widget to the page owner (observer and observed are the same) so in that case
+ // I believe either may be safely used here.
+ $channelPerm = \App::$channel[$permDetails[0]];
+ $result = new PermissionDescription($permDetails[1], $channelPerm);
} else {
// The acl dialog can handle null arguments, but it shouldn't happen
logger('null PermissionDescription from unknown global permission: ' . $permname ,LOGGER_DEBUG, LOG_ERROR);
diff --git a/Zotlabs/Module/Connedit.php b/Zotlabs/Module/Connedit.php
index 217249469..a5568c564 100644
--- a/Zotlabs/Module/Connedit.php
+++ b/Zotlabs/Module/Connedit.php
@@ -126,30 +126,15 @@ class Connedit extends \Zotlabs\Web\Controller {
$rating = 10;
$rating_text = trim(escape_tags($_REQUEST['rating_text']));
-
- $all_perms = \Zotlabs\Access\Permissions::Perms();
-
- if($all_perms) {
- foreach($all_perms as $perm => $desc) {
- if(array_key_exists('perms_' . $perm, $_POST)) {
- set_abconfig($channel['channel_id'],$orig_record[0]['abook_xchan'],'my_perms',$perm,
- intval($_POST['perms_' . $perm]));
- if($autoperms) {
- set_pconfig($channel['channel_id'],'autoperms',$perm,intval($_POST['perms_' . $perm]));
- }
- }
- else {
- set_abconfig($channel['channel_id'],$orig_record[0]['abook_xchan'],'my_perms',$perm,0);
- if($autoperms) {
- set_pconfig($channel['channel_id'],'autoperms',$perm,0);
- }
- }
+
+ $abook_my_perms = 0;
+
+ foreach($_POST as $k => $v) {
+ if(strpos($k,'perms_') === 0) {
+ $abook_my_perms += $v;
}
}
-
- if(! is_null($autoperms))
- set_pconfig($channel['channel_id'],'system','autoperms',$autoperms);
-
+
$new_friend = false;
// only store a record and notify the directory if the rating changed
@@ -217,25 +202,19 @@ class Connedit extends \Zotlabs\Web\Controller {
$role = get_pconfig(local_channel(),'system','permissions_role');
if($role) {
- $x = \Zotlabs\Access\PermissionRoles::role_perms($role);
- if($x['perms_connect']) {
- $abook_my_perms = $x['perms_connect'];
- }
- }
-
- $filled_perms = \Zotlabs\Access\Permissions::FilledPerms($abook_my_perms);
- foreach($filled_perms as $k => $v) {
- set_abconfig($channel['channel_id'],$orig_record[0]['abook_xchan'],'my_perms',$k,$v);
+ $x = get_role_perms($role);
+ if($x['perms_accept'])
+ $abook_my_perms = $x['perms_accept'];
}
-
}
-
+
$abook_pending = (($new_friend) ? 0 : $orig_record[0]['abook_pending']);
- $r = q("UPDATE abook SET abook_profile = '%s', abook_closeness = %d, abook_pending = %d,
+ $r = q("UPDATE abook SET abook_profile = '%s', abook_my_perms = %d , abook_closeness = %d, abook_pending = %d,
abook_incl = '%s', abook_excl = '%s'
where abook_id = %d AND abook_channel = %d",
dbesc($profile_id),
+ intval($abook_my_perms),
intval($closeness),
intval($abook_pending),
dbesc($abook_incl),
@@ -256,13 +235,10 @@ class Connedit extends \Zotlabs\Web\Controller {
info( t('Connection updated.') . EOL);
else
notice( t('Failed to update connection record.') . EOL);
-
- if(! intval(\App::$poi['abook_self'])) {
- \Zotlabs\Daemon\Master::Summon( [
- 'Notifier',
- (($new_friend) ? 'permission_create' : 'permission_update'),
- $contact_id
- ]);
+
+ if(\App::$poi && \App::$poi['abook_my_perms'] != $abook_my_perms
+ && (! intval(\App::$poi['abook_self']))) {
+ \Zotlabs\Daemon\Master::Summon(array('Notifier', (($new_friend) ? 'permission_create' : 'permission_update'), $contact_id));
}
if($new_friend) {
@@ -400,9 +376,9 @@ class Connedit extends \Zotlabs\Web\Controller {
$my_perms = get_channel_default_perms(local_channel());
$role = get_pconfig(local_channel(),'system','permissions_role');
if($role) {
- $x = \Zotlabs\Access\PermissionRoles::role_perms($role);
- if($x['perms_connect'])
- $my_perms = $x['perms_connect'];
+ $x = get_role_perms($role);
+ if($x['perms_accept'])
+ $my_perms = $x['perms_accept'];
}
$yes_no = array(t('No'),t('Yes'));
@@ -683,8 +659,7 @@ class Connedit extends \Zotlabs\Web\Controller {
$perms = array();
$channel = \App::get_channel();
- $global_perms = \Zotlabs\Access\Permissions::Perms();
-
+ $global_perms = get_perms();
$existing = get_all_perms(local_channel(),$contact['abook_xchan']);
$unapproved = array('pending', t('Approve this connection'), '', t('Accept connection to allow communication'), array(t('No'),('Yes')));
@@ -700,32 +675,16 @@ class Connedit extends \Zotlabs\Web\Controller {
if($slide && $multiprofs)
$affinity = t('Set Affinity & Profile');
- $theirs = q("select * from abconfig where chan = %d and xchan = '%s' and cat = 'their_perms'",
- intval(local_channel()),
- dbesc($contact['abook_xchan'])
- );
- $their_perms = array();
- if($theirs) {
- foreach($theirs as $t) {
- $their_perms[$t['k']] = $t['v'];
- }
- }
-
foreach($global_perms as $k => $v) {
- $thisperm = get_abconfig(local_channel(),$contact['abook_xchan'],'my_perms',$k);
-//fixme
-
- $checkinherited = \Zotlabs\Access\PermissionLimits::Get(local_channel(),$k);
+ $thisperm = (($contact['abook_my_perms'] & $v[1]) ? "1" : '');
+ $checkinherited = ((($channel[$v[0]]) && ($channel[$v[0]] != PERMS_SPECIFIC)) ? "1" : '');
// For auto permissions (when $self is true) we don't want to look at existing
// permissions because they are enabled for the channel owner
if((! $self) && ($existing[$k]))
$thisperm = "1";
-
-
-
- $perms[] = array('perms_' . $k, $v, ((array_key_exists($k,$their_perms)) ? intval($their_perms[$k]) : ''),$thisperm, 1, (($checkinherited & PERMS_SPECIFIC) ? '' : '1'), '', $checkinherited);
+ $perms[] = array('perms_' . $k, $v[3], (($contact['abook_their_perms'] & $v[1]) ? "1" : ""),$thisperm, $v[1], (($channel[$v[0]] == PERMS_SPECIFIC) ? '' : '1'), $v[4], $checkinherited);
}
$locstr = '';
diff --git a/Zotlabs/Module/Editpost.php b/Zotlabs/Module/Editpost.php
index 838fe9e4f..da859de3e 100644
--- a/Zotlabs/Module/Editpost.php
+++ b/Zotlabs/Module/Editpost.php
@@ -47,9 +47,9 @@ class Editpost extends \Zotlabs\Web\Controller {
if(intval($itm[0]['item_obscured'])) {
$key = get_config('system','prvkey');
if($itm[0]['title'])
- $itm[0]['title'] = crypto_unencapsulate(json_decode($itm[0]['title'],true),$key);
+ $itm[0]['title'] = crypto_unencapsulate(json_decode_plus($itm[0]['title']),$key);
if($itm[0]['body'])
- $itm[0]['body'] = crypto_unencapsulate(json_decode($itm[0]['body'],true),$key);
+ $itm[0]['body'] = crypto_unencapsulate(json_decode_plus($itm[0]['body']),$key);
}
$category = '';
diff --git a/Zotlabs/Module/Editwebpage.php b/Zotlabs/Module/Editwebpage.php
index 2da8871a2..9803218d8 100644
--- a/Zotlabs/Module/Editwebpage.php
+++ b/Zotlabs/Module/Editwebpage.php
@@ -108,9 +108,9 @@ class Editwebpage extends \Zotlabs\Web\Controller {
if(intval($itm[0]['item_obscured'])) {
$key = get_config('system','prvkey');
if($itm[0]['title'])
- $itm[0]['title'] = crypto_unencapsulate(json_decode($itm[0]['title'],true),$key);
+ $itm[0]['title'] = crypto_unencapsulate(json_decode_plus($itm[0]['title']),$key);
if($itm[0]['body'])
- $itm[0]['body'] = crypto_unencapsulate(json_decode($itm[0]['body'],true),$key);
+ $itm[0]['body'] = crypto_unencapsulate(json_decode_plus($itm[0]['body']),$key);
}
$item_id = q("select * from iconfig where cat = 'system' and k = 'WEBPAGE' and iid = %d limit 1",
diff --git a/Zotlabs/Module/Follow.php b/Zotlabs/Module/Follow.php
index da9ab3670..3641330c9 100644
--- a/Zotlabs/Module/Follow.php
+++ b/Zotlabs/Module/Follow.php
@@ -47,13 +47,12 @@ class Follow extends \Zotlabs\Web\Controller {
if($abconfig)
$clone['abconfig'] = $abconfig;
- build_sync_packet(0 /* use the current local_channel */, array('abook' => array($clone)), true);
+ build_sync_packet(0 /* use the current local_channel */, array('abook' => array($clone)));
- $can_view_stream = intval(get_abconfig($channel['channel_id'],$clone['abook_xchan'],'their_perms','view_stream'));
// If we can view their stream, pull in some posts
- if(($can_view_stream) || ($result['abook']['xchan_network'] === 'rss'))
+ if(($result['abook']['abook_their_perms'] & PERMS_R_STREAM) || ($result['abook']['xchan_network'] === 'rss'))
\Zotlabs\Daemon\Master::Summon(array('Onepoll',$result['abook']['abook_id']));
goaway(z_root() . '/connedit/' . $result['abook']['abook_id'] . '?f=&follow=1');
diff --git a/Zotlabs/Module/Id.php b/Zotlabs/Module/Id.php
new file mode 100644
index 000000000..e053bf99c
--- /dev/null
+++ b/Zotlabs/Module/Id.php
@@ -0,0 +1,319 @@
+<?php
+namespace Zotlabs\Module;
+
+/**
+ * @file mod/id.php
+ * @brief OpenID implementation
+ */
+
+require 'library/openid/provider/provider.php';
+
+
+$attrMap = array(
+ 'namePerson/first' => t('First Name'),
+ 'namePerson/last' => t('Last Name'),
+ 'namePerson/friendly' => t('Nickname'),
+ 'namePerson' => t('Full Name'),
+ 'contact/internet/email' => t('Email'),
+ 'contact/email' => t('Email'),
+ 'media/image/aspect11' => t('Profile Photo'),
+ 'media/image' => t('Profile Photo'),
+ 'media/image/default' => t('Profile Photo'),
+ 'media/image/16x16' => t('Profile Photo 16px'),
+ 'media/image/32x32' => t('Profile Photo 32px'),
+ 'media/image/48x48' => t('Profile Photo 48px'),
+ 'media/image/64x64' => t('Profile Photo 64px'),
+ 'media/image/80x80' => t('Profile Photo 80px'),
+ 'media/image/128x128' => t('Profile Photo 128px'),
+ 'timezone' => t('Timezone'),
+ 'contact/web/default' => t('Homepage URL'),
+ 'language/pref' => t('Language'),
+ 'birthDate/birthYear' => t('Birth Year'),
+ 'birthDate/birthMonth' => t('Birth Month'),
+ 'birthDate/birthday' => t('Birth Day'),
+ 'birthDate' => t('Birthdate'),
+ 'gender' => t('Gender'),
+);
+
+
+/**
+ * @brief Entrypoint for the OpenID implementation.
+ *
+ * @param App &$a
+ */
+
+class Id extends \Zotlabs\Web\Controller {
+
+ function init() {
+
+ logger('id: ' . print_r($_REQUEST, true));
+
+ if(argc() > 1) {
+ $which = argv(1);
+ } else {
+ \App::$error = 404;
+ return;
+ }
+
+ $profile = '';
+ $channel = \App::get_channel();
+ profile_load($which,$profile);
+
+ $op = new MysqlProvider;
+ $op->server();
+ }
+
+ /**
+ * @brief Returns user data needed for OpenID.
+ *
+ * If no $handle is provided we will use local_channel() by default.
+ *
+ * @param string $handle (default null)
+ * @return boolean|array
+ */
+ static public function getUserData($handle = null) {
+ if (! local_channel()) {
+ notice( t('Permission denied.') . EOL);
+ \App::$page['content'] = login();
+
+ return false;
+ }
+
+ // logger('handle: ' . $handle);
+
+ if ($handle) {
+ $r = q("select * from channel left join xchan on channel_hash = xchan_hash where channel_address = '%s' limit 1",
+ dbesc($handle)
+ );
+ } else {
+ $r = q("select * from channel left join xchan on channel_hash = xchan_hash where channel_id = %d",
+ intval(local_channel())
+ );
+ }
+
+ if (! r)
+ return false;
+
+ $x = q("select * from account where account_id = %d limit 1",
+ intval($r[0]['channel_account_id'])
+ );
+ if ($x)
+ $r[0]['email'] = $x[0]['account_email'];
+
+ $p = q("select * from profile where is_default = 1 and uid = %d limit 1",
+ intval($r[0]['channel_account_id'])
+ );
+
+ $gender = '';
+ if ($p[0]['gender'] == t('Male'))
+ $gender = 'M';
+ if ($p[0]['gender'] == t('Female'))
+ $gender = 'F';
+
+ $r[0]['firstName'] = ((strpos($r[0]['channel_name'],' ')) ? substr($r[0]['channel_name'],0,strpos($r[0]['channel_name'],' ')) : $r[0]['channel_name']);
+ $r[0]['lastName'] = ((strpos($r[0]['channel_name'],' ')) ? substr($r[0]['channel_name'],strpos($r[0]['channel_name'],' ')+1) : '');
+ $r[0]['namePerson'] = $r[0]['channel_name'];
+ $r[0]['pphoto'] = $r[0]['xchan_photo_l'];
+ $r[0]['pphoto16'] = z_root() . '/photo/profile/16/' . $r[0]['channel_id'] . '.jpg';
+ $r[0]['pphoto32'] = z_root() . '/photo/profile/32/' . $r[0]['channel_id'] . '.jpg';
+ $r[0]['pphoto48'] = z_root() . '/photo/profile/48/' . $r[0]['channel_id'] . '.jpg';
+ $r[0]['pphoto64'] = z_root() . '/photo/profile/64/' . $r[0]['channel_id'] . '.jpg';
+ $r[0]['pphoto80'] = z_root() . '/photo/profile/80/' . $r[0]['channel_id'] . '.jpg';
+ $r[0]['pphoto128'] = z_root() . '/photo/profile/128/' . $r[0]['channel_id'] . '.jpg';
+ $r[0]['timezone'] = $r[0]['channel_timezone'];
+ $r[0]['url'] = $r[0]['xchan_url'];
+ $r[0]['language'] = (($x[0]['account_language']) ? $x[0]['account_language'] : 'en');
+ $r[0]['birthyear'] = ((intval(substr($p[0]['dob'],0,4))) ? intval(substr($p[0]['dob'],0,4)) : '');
+ $r[0]['birthmonth'] = ((intval(substr($p[0]['dob'],5,2))) ? intval(substr($p[0]['dob'],5,2)) : '');
+ $r[0]['birthday'] = ((intval(substr($p[0]['dob'],8,2))) ? intval(substr($p[0]['dob'],8,2)) : '');
+ $r[0]['birthdate'] = (($r[0]['birthyear'] && $r[0]['birthmonth'] && $r[0]['birthday']) ? $p[0]['dob'] : '');
+ $r[0]['gender'] = $gender;
+
+ return $r[0];
+
+ /*
+ * if(isset($_POST['login'],$_POST['password'])) {
+ * $login = mysql_real_escape_string($_POST['login']);
+ * $password = sha1($_POST['password']);
+ * $q = mysql_query("SELECT * FROM Users WHERE login = '$login' AND password = '$password'");
+ * if($data = mysql_fetch_assoc($q)) {
+ * return $data;
+ * }
+ * if($handle) {
+ * echo 'Wrong login/password.';
+ * }
+ * }
+ * if($handle) {
+ * ?>
+ * <form action="" method="post">
+ * <input type="hidden" name="openid.assoc_handle" value="<?php
+namespace Zotlabs\Module; echo $handle?>">
+ * Login: <input type="text" name="login"><br>
+ * Password: <input type="password" name="password"><br>
+ * <button>Submit</button>
+ * </form>
+ * <?php
+namespace Zotlabs\Module;
+ * die();
+ * }
+ */
+
+ }
+}
+
+
+ /**
+ * @brief MySQL provider for OpenID implementation.
+ *
+ */
+ class MysqlProvider extends \LightOpenIDProvider {
+
+ // See http://openid.net/specs/openid-attribute-properties-list-1_0-01.html
+ // This list contains a few variations of these attributes to maintain
+ // compatibility with legacy clients
+
+ private $attrFieldMap = array(
+ 'namePerson/first' => 'firstName',
+ 'namePerson/last' => 'lastName',
+ 'namePerson/friendly' => 'channel_address',
+ 'namePerson' => 'namePerson',
+ 'contact/internet/email' => 'email',
+ 'contact/email' => 'email',
+ 'media/image/aspect11' => 'pphoto',
+ 'media/image' => 'pphoto',
+ 'media/image/default' => 'pphoto',
+ 'media/image/16x16' => 'pphoto16',
+ 'media/image/32x32' => 'pphoto32',
+ 'media/image/48x48' => 'pphoto48',
+ 'media/image/64x64' => 'pphoto64',
+ 'media/image/80x80' => 'pphoto80',
+ 'media/image/128x128' => 'pphoto128',
+ 'timezone' => 'timezone',
+ 'contact/web/default' => 'url',
+ 'language/pref' => 'language',
+ 'birthDate/birthYear' => 'birthyear',
+ 'birthDate/birthMonth' => 'birthmonth',
+ 'birthDate/birthday' => 'birthday',
+ 'birthDate' => 'birthdate',
+ 'gender' => 'gender',
+ );
+
+ function setup($identity, $realm, $assoc_handle, $attributes) {
+ global $attrMap;
+
+ // logger('identity: ' . $identity);
+ // logger('realm: ' . $realm);
+ // logger('assoc_handle: ' . $assoc_handle);
+ // logger('attributes: ' . print_r($attributes,true));
+
+ $data = \Zotlabs\Module\Id::getUserData($assoc_handle);
+
+
+ /** @FIXME this needs to be a template with localised strings */
+
+ $o .= '<form action="" method="post">'
+ . '<input type="hidden" name="openid.assoc_handle" value="' . $assoc_handle . '">'
+ . '<input type="hidden" name="login" value="' . $_POST['login'] .'">'
+ . '<input type="hidden" name="password" value="' . $_POST['password'] .'">'
+ . "<b>$realm</b> wishes to authenticate you.";
+ if($attributes['required'] || $attributes['optional']) {
+ $o .= " It also requests following information (required fields marked with *):"
+ . '<ul>';
+
+ foreach($attributes['required'] as $attr) {
+ if(isset($this->attrMap[$attr])) {
+ $o .= '<li>'
+ . '<input type="checkbox" name="attributes[' . $attr . ']"> '
+ . $this->attrMap[$attr] . ' <span class="required">*</span></li>';
+ }
+ }
+
+ foreach($attributes['optional'] as $attr) {
+ if(isset($this->attrMap[$attr])) {
+ $o .= '<li>'
+ . '<input type="checkbox" name="attributes[' . $attr . ']"> '
+ . $this->attrMap[$attr] . '</li>';
+ }
+ }
+ $o .= '</ul>';
+ }
+ $o .= '<br>'
+ . '<button name="once">Allow once</button> '
+ . '<button name="always">Always allow</button> '
+ . '<button name="cancel">cancel</button> '
+ . '</form>';
+
+ \App::$page['content'] .= $o;
+ }
+
+ function checkid($realm, &$attributes) {
+
+ logger('checkid: ' . $realm);
+ logger('checkid attrs: ' . print_r($attributes,true));
+
+ if(isset($_POST['cancel'])) {
+ $this->cancel();
+ }
+
+ $data = \Zotlabs\Module\Id::getUserData();
+ if(! $data) {
+ return false;
+ }
+
+ $q = get_pconfig(local_channel(), 'openid', $realm);
+
+ $attrs = array();
+ if($q) {
+ $attrs = $q;
+ } elseif(isset($_POST['attributes'])) {
+ $attrs = array_keys($_POST['attributes']);
+ } elseif(!isset($_POST['once']) && !isset($_POST['always'])) {
+ return false;
+ }
+
+ $attributes = array();
+ foreach($attrs as $attr) {
+ if(isset($this->attrFieldMap[$attr])) {
+ $attributes[$attr] = $data[$this->attrFieldMap[$attr]];
+ }
+ }
+
+ if(isset($_POST['always'])) {
+ set_pconfig(local_channel(),'openid',$realm,array_keys($attributes));
+ }
+
+ return z_root() . '/id/' . $data['channel_address'];
+ }
+
+ function assoc_handle() {
+ logger('assoc_handle');
+ $channel = \App::get_channel();
+
+ return z_root() . '/channel/' . $channel['channel_address'];
+ }
+
+ function setAssoc($handle, $data) {
+ logger('setAssoc');
+ $channel = channelx_by_nick(basename($handle));
+ if($channel)
+ set_pconfig($channel['channel_id'],'openid','associate',$data);
+ }
+
+ function getAssoc($handle) {
+ logger('getAssoc: ' . $handle);
+
+ $channel = channelx_by_nick(basename($handle));
+ if($channel)
+ return get_pconfig($channel['channel_id'], 'openid', 'associate');
+
+ return false;
+ }
+
+ function delAssoc($handle) {
+ logger('delAssoc');
+ $channel = channelx_by_nick(basename($handle));
+ if($channel)
+ return del_pconfig($channel['channel_id'], 'openid', 'associate');
+ }
+ }
+
diff --git a/Zotlabs/Module/Import.php b/Zotlabs/Module/Import.php
index d27f013b9..e34f5e49e 100644
--- a/Zotlabs/Module/Import.php
+++ b/Zotlabs/Module/Import.php
@@ -8,7 +8,6 @@ namespace Zotlabs\Module;
require_once('include/zot.php');
require_once('include/channel.php');
require_once('include/import.php');
-require_once('include/perm_upgrade.php');
@@ -340,8 +339,6 @@ class Import extends \Zotlabs\Web\Controller {
$abooks = $data['abook'];
if($abooks) {
foreach($abooks as $abook) {
-
- $abook_copy = $abook;
$abconfig = null;
if(array_key_exists('abconfig',$abook) && is_array($abook['abconfig']) && count($abook['abconfig']))
@@ -350,10 +347,6 @@ class Import extends \Zotlabs\Web\Controller {
unset($abook['abook_id']);
unset($abook['abook_rating']);
unset($abook['abook_rating_text']);
- unset($abook['abconfig']);
- unset($abook['abook_their_perms']);
- unset($abook['abook_my_perms']);
-
$abook['abook_account'] = $account_id;
$abook['abook_channel'] = $channel['channel_id'];
if(! array_key_exists('abook_blocked',$abook)) {
@@ -392,8 +385,6 @@ class Import extends \Zotlabs\Web\Controller {
$friends ++;
if(intval($abook['abook_feed']))
$feeds ++;
-
- translate_abook_perms_inbound($channel,$abook_copy);
if($abconfig) {
// @fixme does not handle sync of del_abconfig
diff --git a/Zotlabs/Module/Item.php b/Zotlabs/Module/Item.php
index 2d0c1ba02..b54099d74 100644
--- a/Zotlabs/Module/Item.php
+++ b/Zotlabs/Module/Item.php
@@ -318,11 +318,9 @@ class Item extends \Zotlabs\Web\Controller {
}
$acl = new \Zotlabs\Access\AccessList($channel);
-
- $view_policy = \Zotlabs\Access\PermissionLimits::Get($channel['channel_id'],'view_stream');
- $comment_policy = \Zotlabs\Access\PermissionLimits::Get($channel['channel_id'],'post_comments');
- $public_policy = ((x($_REQUEST,'public_policy')) ? escape_tags($_REQUEST['public_policy']) : map_scope($view_policy,true));
+
+ $public_policy = ((x($_REQUEST,'public_policy')) ? escape_tags($_REQUEST['public_policy']) : map_scope($channel['channel_r_stream'],true));
if($webpage)
$public_policy = '';
if($public_policy)
@@ -530,11 +528,11 @@ class Item extends \Zotlabs\Web\Controller {
if((! $parent) && (get_pconfig($profile_uid,'system','tagifonlyrecip')) && (substr_count($str_contact_allow,'<') == 1) && ($str_group_allow == '') && ($str_contact_deny == '') && ($str_group_deny == '')) {
- $x = q("select abook_id, abconfig.v from abook left join abconfig on abook_xchan = abconfig.xchan and abook_channel = abconfig.chan and cat= 'their_perms' and abconfig.k = 'tag_deliver' and abconfig.v = 1 and abook_xchan = '%s' and abook_channel = %d limit 1",
+ $x = q("select abook_id, abook_their_perms from abook where abook_xchan = '%s' and abook_channel = %d limit 1",
dbesc(str_replace(array('<','>'),array('',''),$str_contact_allow)),
intval($profile_uid)
);
- if($x)
+ if($x && ($x[0]['abook_their_perms'] & PERMS_W_TAGWALL))
$body .= "\n\n@group+" . $x[0]['abook_id'] . "\n";
}
@@ -814,7 +812,7 @@ class Item extends \Zotlabs\Web\Controller {
$datarray['layout_mid'] = $layout_mid;
$datarray['public_policy'] = $public_policy;
- $datarray['comment_policy'] = map_scope($comment_policy);
+ $datarray['comment_policy'] = map_scope($channel['channel_w_comment']);
$datarray['term'] = $post_tags;
$datarray['plink'] = $plink;
$datarray['route'] = $route;
diff --git a/Zotlabs/Module/Like.php b/Zotlabs/Module/Like.php
index dd0bc99d4..fbb6c3c84 100644
--- a/Zotlabs/Module/Like.php
+++ b/Zotlabs/Module/Like.php
@@ -264,22 +264,23 @@ class Like extends \Zotlabs\Web\Controller {
logger('like: no item ' . $item_id);
killme();
}
-
-
- xchan_query($r,true,(($r[0]['uid'] == local_channel()) ? 0 : local_channel()));
-
+
+
$item = $r[0];
-
- $owner_uid = $r[0]['uid'];
- $owner_aid = $r[0]['aid'];
-
- $can_comment = false;
- if((array_key_exists('owner',$item)) && intval($item['owner']['abook_self']))
- $can_comment = perm_is_allowed($item['uid'],$observer['xchan_hash'],'post_comments');
- else
- $can_comment = can_comment_on_post($observer['xchan_hash'],$item);
-
- if(! $can_comment) {
+ $owner_uid = $item['uid'];
+ $owner_aid = $item['aid'];
+
+
+ $sys = get_sys_channel();
+
+
+ // if this is a "discover" item, (item['uid'] is the sys channel),
+ // fallback to the item comment policy, which should've been
+ // respected when generating the conversation thread.
+ // Even if the activity is rejected by the item owner, it should still get attached
+ // to the local discover conversation on this site.
+
+ if(($owner_uid != $sys['channel_id']) && (! perm_is_allowed($owner_uid,$observer['xchan_hash'],'post_comments'))) {
notice( t('Permission denied') . EOL);
killme();
}
diff --git a/Zotlabs/Module/Mail.php b/Zotlabs/Module/Mail.php
index 043c28078..aae7585c4 100644
--- a/Zotlabs/Module/Mail.php
+++ b/Zotlabs/Module/Mail.php
@@ -57,6 +57,8 @@ class Mail extends \Zotlabs\Web\Controller {
$their_perms = 0;
+ $global_perms = get_perms();
+
if($j['permissions']['data']) {
$permissions = crypto_unencapsulate($j['permissions'],$channel['channel_prvkey']);
if($permissions)
@@ -66,7 +68,13 @@ class Mail extends \Zotlabs\Web\Controller {
else
$permissions = $j['permissions'];
- if(! ($permissions['post_mail'])) {
+ foreach($permissions as $k => $v) {
+ if($v) {
+ $their_perms = $their_perms | intval($global_perms[$k][1]);
+ }
+ }
+
+ if(! ($their_perms & PERMS_W_MAIL)) {
notice( t('Selected channel has private message restrictions. Send failed.'));
// reported issue: let's still save the message and continue. We'll just tell them
// that nothing useful is likely to happen. They might have spent hours on it.
@@ -112,7 +120,7 @@ class Mail extends \Zotlabs\Web\Controller {
}
- function get() {
+ function get() {
$o = '';
nav_set_selected('messages');
diff --git a/Zotlabs/Module/Manage.php b/Zotlabs/Module/Manage.php
index 8f815d6d4..4ca044c4a 100644
--- a/Zotlabs/Module/Manage.php
+++ b/Zotlabs/Module/Manage.php
@@ -143,9 +143,9 @@ class Manage extends \Zotlabs\Web\Controller {
$create = array( 'new_channel', t('Create a new channel'), t('Create New'));
$delegates = q("select * from abook left join xchan on abook_xchan = xchan_hash where
- abook_channel = %d and abook_xchan in ( select xchan from abconfig where chan = %d and cat = 'their_perms' and k = 'delegate' and v = 1 )",
+ abook_channel = %d and (abook_their_perms & %d) > 0",
intval(local_channel()),
- intval(local_channel())
+ intval(PERMS_A_DELEGATE)
);
if($delegates) {
diff --git a/Zotlabs/Module/Openid.php b/Zotlabs/Module/Openid.php
new file mode 100644
index 000000000..8cbc6d2fd
--- /dev/null
+++ b/Zotlabs/Module/Openid.php
@@ -0,0 +1,198 @@
+<?php
+namespace Zotlabs\Module;
+
+
+require_once('library/openid/openid.php');
+require_once('include/auth.php');
+
+
+class Openid extends \Zotlabs\Web\Controller {
+
+ function get() {
+
+ $noid = get_config('system','disable_openid');
+ if($noid)
+ goaway(z_root());
+
+ logger('mod_openid ' . print_r($_REQUEST,true), LOGGER_DATA);
+
+ if(x($_REQUEST,'openid_mode')) {
+
+ $openid = new LightOpenID(z_root());
+
+ if($openid->validate()) {
+
+ logger('openid: validate');
+
+ $authid = normalise_openid($_REQUEST['openid_identity']);
+
+ if(! strlen($authid)) {
+ logger( t('OpenID protocol error. No ID returned.') . EOL);
+ goaway(z_root());
+ }
+
+ $x = match_openid($authid);
+ if($x) {
+
+ $r = q("select * from channel where channel_id = %d limit 1",
+ intval($x)
+ );
+ if($r) {
+ $y = q("select * from account where account_id = %d limit 1",
+ intval($r[0]['channel_account_id'])
+ );
+ if($y) {
+ foreach($y as $record) {
+ if(($record['account_flags'] == ACCOUNT_OK) || ($record['account_flags'] == ACCOUNT_UNVERIFIED)) {
+ logger('mod_openid: openid success for ' . $x[0]['channel_name']);
+ $_SESSION['uid'] = $r[0]['channel_id'];
+ $_SESSION['account_id'] = $r[0]['channel_account_id'];
+ $_SESSION['authenticated'] = true;
+ authenticate_success($record,$r[0],true,true,true,true);
+ goaway(z_root());
+ }
+ }
+ }
+ }
+ }
+
+ // Successful OpenID login - but we can't match it to an existing account.
+ // See if they've got an xchan
+
+ $r = q("select * from xconfig left join xchan on xchan_hash = xconfig.xchan where cat = 'system' and k = 'openid' and v = '%s' limit 1",
+ dbesc($authid)
+ );
+
+ if($r) {
+ $_SESSION['authenticated'] = 1;
+ $_SESSION['visitor_id'] = $r[0]['xchan_hash'];
+ $_SESSION['my_url'] = $r[0]['xchan_url'];
+ $_SESSION['my_address'] = $r[0]['xchan_addr'];
+ $arr = array('xchan' => $r[0], 'session' => $_SESSION);
+ call_hooks('magic_auth_openid_success',$arr);
+ \App::set_observer($r[0]);
+ require_once('include/security.php');
+ \App::set_groups(init_groups_visitor($_SESSION['visitor_id']));
+ info(sprintf( t('Welcome %s. Remote authentication successful.'),$r[0]['xchan_name']));
+ logger('mod_openid: remote auth success from ' . $r[0]['xchan_addr']);
+ if($_SESSION['return_url'])
+ goaway($_SESSION['return_url']);
+ goaway(z_root());
+ }
+
+ // no xchan...
+ // create one.
+ // We should probably probe the openid url and figure out if they have any kind of social presence we might be able to
+ // scrape some identifying info from.
+
+ $name = $authid;
+ $url = trim($_REQUEST['openid_identity'],'/');
+ if(strpos($url,'http') === false)
+ $url = 'https://' . $url;
+ $pphoto = z_root() . '/' . get_default_profile_photo();
+ $parsed = @parse_url($url);
+ if($parsed) {
+ $host = $parsed['host'];
+ }
+
+ $attr = $openid->getAttributes();
+
+ if(is_array($attr) && count($attr)) {
+ foreach($attr as $k => $v) {
+ if($k === 'namePerson/friendly')
+ $nick = notags(trim($v));
+ if($k === 'namePerson/first')
+ $first = notags(trim($v));
+ if($k === 'namePerson')
+ $name = notags(trim($v));
+ if($k === 'contact/email')
+ $addr = notags(trim($v));
+ if($k === 'media/image/aspect11')
+ $photosq = trim($v);
+ if($k === 'media/image/default')
+ $photo_other = trim($v);
+ }
+ }
+ if(! $nick) {
+ if($first)
+ $nick = $first;
+ else
+ $nick = $name;
+ }
+
+ require_once('library/urlify/URLify.php');
+ $x = strtolower(\URLify::transliterate($nick));
+ if($nick & $host)
+ $addr = $nick . '@' . $host;
+ $network = 'unknown';
+
+ if($photosq)
+ $pphoto = $photosq;
+ elseif($photo_other)
+ $pphoto = $photo_other;
+
+ $mimetype = guess_image_type($pphoto);
+
+ $x = q("insert into xchan ( xchan_hash, xchan_guid, xchan_guid_sig, xchan_pubkey, xchan_photo_mimetype,
+ xchan_photo_l, xchan_addr, xchan_url, xchan_connurl, xchan_follow, xchan_connpage, xchan_name, xchan_network, xchan_photo_date,
+ xchan_name_date, xchan_hidden)
+ values ( '%s', '%s', '%s', '%s' , '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', 1) ",
+ dbesc($url),
+ dbesc(''),
+ dbesc(''),
+ dbesc(''),
+ dbesc($mimetype),
+ dbesc($pphoto),
+ dbesc($addr),
+ dbesc($url),
+ dbesc(''),
+ dbesc(''),
+ dbesc(''),
+ dbesc($name),
+ dbesc($network),
+ dbesc(datetime_convert()),
+ dbesc(datetime_convert())
+ );
+ if($x) {
+ $r = q("select * from xchan where xchan_hash = '%s' limit 1",
+ dbesc($url)
+ );
+ if($r) {
+
+ $photos = import_xchan_photo($pphoto,$url);
+ if($photos) {
+ $z = 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_hash = '%s'",
+ dbesc(datetime_convert()),
+ dbesc($photos[0]),
+ dbesc($photos[1]),
+ dbesc($photos[2]),
+ dbesc($photos[3]),
+ dbesc($url)
+ );
+ }
+
+ set_xconfig($url,'system','openid',$authid);
+ $_SESSION['authenticated'] = 1;
+ $_SESSION['visitor_id'] = $r[0]['xchan_hash'];
+ $_SESSION['my_url'] = $r[0]['xchan_url'];
+ $_SESSION['my_address'] = $r[0]['xchan_addr'];
+ $arr = array('xchan' => $r[0], 'session' => $_SESSION);
+ call_hooks('magic_auth_openid_success',$arr);
+ \App::set_observer($r[0]);
+ info(sprintf( t('Welcome %s. Remote authentication successful.'),$r[0]['xchan_name']));
+ logger('mod_openid: remote auth success from ' . $r[0]['xchan_addr']);
+ if($_SESSION['return_url'])
+ goaway($_SESSION['return_url']);
+ goaway(z_root());
+ }
+ }
+
+ }
+ }
+ notice( t('Login failed.') . EOL);
+ goaway(z_root());
+ // NOTREACHED
+ }
+
+}
diff --git a/Zotlabs/Module/Probe.php b/Zotlabs/Module/Probe.php
index 7fc0e8ff5..dda792131 100644
--- a/Zotlabs/Module/Probe.php
+++ b/Zotlabs/Module/Probe.php
@@ -23,6 +23,8 @@ class Probe extends \Zotlabs\Web\Controller {
$j = \Zotlabs\Zot\Finger::run($addr,$channel,false);
+ // $res = zot_finger($addr,$channel,false);
+
$o .= '<pre>';
if(! $j['success']) {
$o .= sprintf( t('Fetching URL returns error: %1$s'),$res['error'] . "\r\n\r\n");
diff --git a/Zotlabs/Module/Profiles.php b/Zotlabs/Module/Profiles.php
index 4b05182c2..899c79b15 100644
--- a/Zotlabs/Module/Profiles.php
+++ b/Zotlabs/Module/Profiles.php
@@ -708,7 +708,7 @@ class Profiles extends \Zotlabs\Web\Controller {
'$profile_id' => $r[0]['id'],
'$profile_name' => array('profile_name', t('Profile name'), $r[0]['profile_name'], t('Required'), '*'),
'$is_default' => $is_default,
- '$default' => t('This is your default profile.') . EOL . translate_scope(map_scope(\Zotlabs\Access\PermissionLimits::Get($channel['channel_id'],'view_profile'))),
+ '$default' => t('This is your default profile.') . EOL . translate_scope(map_scope($channel['channel_r_profile'])),
'$advanced' => $advanced,
'$name' => array('name', t('Your full name'), $r[0]['fullname'], t('Required'), '*'),
'$pdesc' => array('pdesc', t('Title/Description'), $r[0]['pdesc']),
@@ -767,7 +767,7 @@ class Profiles extends \Zotlabs\Web\Controller {
'$alt' => t('Profile Image'),
'$profile_name' => $rr['profile_name'],
'$visible' => (($rr['is_default'])
- ? '<strong>' . translate_scope(map_scope(\Zotlabs\Access\PermissionLimits::Get($channel['channel_id'],'view_profile'))) . '</strong>'
+ ? '<strong>' . translate_scope(map_scope($channel['channel_r_profile'])) . '</strong>'
: '<a href="' . z_root() . '/profperm/' . $rr['id'] . '" />' . t('Edit visibility') . '</a>')
));
}
diff --git a/Zotlabs/Module/Ratingsearch.php b/Zotlabs/Module/Ratingsearch.php
index dcbfd6a9b..5f463b378 100644
--- a/Zotlabs/Module/Ratingsearch.php
+++ b/Zotlabs/Module/Ratingsearch.php
@@ -58,9 +58,7 @@ class Ratingsearch extends \Zotlabs\Web\Controller {
$ret['success'] = true;
$r = q("select * from xlink left join xchan on xlink_xchan = xchan_hash
- where xlink_link = '%s' and xlink_rating != 0 and xlink_static = 1
- and xchan_hidden = 0 and xchan_orphan = 0 and xchan_deleted = 0
- order by xchan_name asc",
+ where xlink_link = '%s' and xlink_rating != 0 and xlink_static = 1 order by xchan_name asc",
dbesc($target)
);
diff --git a/Zotlabs/Module/Rmagic.php b/Zotlabs/Module/Rmagic.php
index 9252d1f1d..04536e54e 100644
--- a/Zotlabs/Module/Rmagic.php
+++ b/Zotlabs/Module/Rmagic.php
@@ -31,6 +31,18 @@ class Rmagic extends \Zotlabs\Web\Controller {
$arr = array('address' => $address);
call_hooks('reverse_magic_auth', $arr);
+ try {
+ require_once('library/openid/openid.php');
+ $openid = new \LightOpenID(z_root());
+ $openid->identity = $address;
+ $openid->returnUrl = z_root() . '/openid';
+ $openid->required = array('namePerson/friendly', 'namePerson');
+ $openid->optional = array('namePerson/first','media/image/aspect11','media/image/default');
+ goaway($openid->authUrl());
+ } catch (\Exception $e) {
+ notice( t('We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID.').'<br /><br >'. t('The error message was:').' '.$e->getMessage());
+ }
+
// if they're still here...
notice( t('Authentication failed.') . EOL);
return;
diff --git a/Zotlabs/Storage/BasicAuth.php b/Zotlabs/Storage/BasicAuth.php
index 995976dcd..2325a614b 100644
--- a/Zotlabs/Storage/BasicAuth.php
+++ b/Zotlabs/Storage/BasicAuth.php
@@ -219,7 +219,7 @@ class BasicAuth extends DAV\Auth\Backend\AbstractBasic {
}
/**
- * @brief Sets the timezone from the channel in BasicAuth.
+ * @brief Sets the timezone from the channel in RedBasicAuth.
*
* Set in mod/cloud.php if the channel has a timezone set.
*
diff --git a/Zotlabs/Web/Router.php b/Zotlabs/Web/Router.php
index 4ba2a450d..f9290ac30 100644
--- a/Zotlabs/Web/Router.php
+++ b/Zotlabs/Web/Router.php
@@ -152,7 +152,6 @@ class Router {
// pretend this is a module so it will initialise the theme
\App::$module = '404';
\App::$module_loaded = true;
- \App::$error = true;
}
}
}
diff --git a/Zotlabs/Web/WebServer.php b/Zotlabs/Web/WebServer.php
index 5bb0e08e8..d4f3cb9ea 100644
--- a/Zotlabs/Web/WebServer.php
+++ b/Zotlabs/Web/WebServer.php
@@ -124,7 +124,7 @@ class WebServer {
// now that we've been through the module content, see if the page reported
// a permission problem and if so, a 403 response would seem to be in order.
- if(is_array($_SESSION['sysmsg']) && stristr(implode("", $_SESSION['sysmsg']), t('Permission denied'))) {
+ if(stristr(implode("", $_SESSION['sysmsg']), t('Permission denied'))) {
header($_SERVER['SERVER_PROTOCOL'] . ' 403 ' . t('Permission denied.'));
}
diff --git a/boot.php b/boot.php
index ac5609904..b493bbea0 100755
--- a/boot.php
+++ b/boot.php
@@ -44,7 +44,7 @@ require_once('include/account.php');
define ( 'PLATFORM_NAME', 'hubzilla' );
-define ( 'STD_VERSION', '1.12RC' );
+define ( 'STD_VERSION', '1.12' );
define ( 'ZOT_REVISION', '1.1' );
define ( 'DB_UPDATE_VERSION', 1181 );
diff --git a/include/api.php b/include/api.php
index 2587a72bb..b11e2c351 100644
--- a/include/api.php
+++ b/include/api.php
@@ -72,7 +72,7 @@ require_once('include/api_auth.php');
* MAIN API ENTRY POINT *
**************************/
- function api_call($a){
+ function api_call(&$a){
GLOBAL $API, $called_api;
// preset
@@ -166,7 +166,7 @@ require_once('include/api_auth.php');
/**
* RSS extra info
*/
- function api_rss_extra($a, $arr, $user_info){
+ function api_rss_extra(&$a, $arr, $user_info){
if (is_null($user_info)) $user_info = api_get_user($a);
$arr['$user'] = $user_info;
$arr['$rss'] = array(
@@ -186,7 +186,7 @@ require_once('include/api_auth.php');
* Returns user info array.
*/
- function api_get_user($a, $contact_id = null, $contact_xchan = null){
+ function api_get_user(&$a, $contact_id = null, $contact_xchan = null){
global $called_api;
$user = null;
$extra_query = "";
@@ -282,8 +282,7 @@ require_once('include/api_auth.php');
intval($uinfo[0]['xchan_hash'])
);
$countitms = $r[0]['count'];
-
- $following = ((get_abconfig($uinfo[0]['abook_channel'],$uinfo[0]['abook_xchan'],'my_perms','view_stream')) ? true : false );
+ $following = (($uinfo[0]['abook_myperms'] & PERMS_R_STREAM) ? true : false );
}
@@ -356,7 +355,7 @@ require_once('include/api_auth.php');
}
- function api_client_register($a,$type) {
+ function api_client_register(&$a,$type) {
$ret = array();
$key = random_string(16);
@@ -389,7 +388,7 @@ require_once('include/api_auth.php');
- function api_item_get_user($a, $item) {
+ function api_item_get_user(&$a, $item) {
// The author is our direct contact, in a conversation with us.
@@ -473,7 +472,7 @@ require_once('include/api_auth.php');
* returns a 401 status code and an error message if not.
* http://developer.twitter.com/doc/get/account/verify_credentials
*/
- function api_account_verify_credentials($a, $type){
+ function api_account_verify_credentials(&$a, $type){
if (api_user()===false) return false;
$user_info = api_get_user($a);
@@ -483,7 +482,7 @@ require_once('include/api_auth.php');
api_register_func('api/account/verify_credentials','api_account_verify_credentials', true);
- function api_account_logout($a, $type){
+ function api_account_logout(&$a, $type){
require_once('include/auth.php');
App::$session->nuke();
return api_apply_template("user", $type, array('$user' => null));
@@ -507,7 +506,7 @@ require_once('include/api_auth.php');
* Red basic channel export
*/
- function api_export_basic($a, $type) {
+ function api_export_basic(&$a, $type) {
if(api_user() === false) {
logger('api_export_basic: no user');
return false;
@@ -521,7 +520,7 @@ require_once('include/api_auth.php');
api_register_func('api/red/channel/export/basic','api_export_basic', true);
- function api_channel_stream($a, $type) {
+ function api_channel_stream(&$a, $type) {
if(api_user() === false) {
logger('api_channel_stream: no user');
return false;
@@ -537,7 +536,7 @@ require_once('include/api_auth.php');
}
api_register_func('api/red/channel/stream','api_channel_stream', true);
- function api_attach_list($a,$type) {
+ function api_attach_list(&$a,$type) {
logger('api_user: ' . api_user());
json_return_and_die(attach_list_files(api_user(),get_observer_hash(),'','','','created asc'));
}
@@ -547,7 +546,7 @@ require_once('include/api_auth.php');
- function api_file_meta($a,$type) {
+ function api_file_meta(&$a,$type) {
if (api_user()===false) return false;
if(! $_REQUEST['file_id']) return false;
$r = q("select * from attach where uid = %d and hash = '%s' limit 1",
@@ -565,7 +564,7 @@ require_once('include/api_auth.php');
api_register_func('api/red/filemeta', 'api_file_meta', true);
- function api_file_data($a,$type) {
+ function api_file_data(&$a,$type) {
if (api_user()===false) return false;
if(! $_REQUEST['file_id']) return false;
$start = (($_REQUEST['start']) ? intval($_REQUEST['start']) : 0);
@@ -609,7 +608,7 @@ require_once('include/api_auth.php');
- function api_file_detail($a,$type) {
+ function api_file_detail(&$a,$type) {
if (api_user()===false) return false;
if(! $_REQUEST['file_id']) return false;
$r = q("select * from attach where uid = %d and hash = '%s' limit 1",
@@ -633,18 +632,18 @@ require_once('include/api_auth.php');
api_register_func('api/red/file', 'api_file_detail', true);
- function api_albums($a,$type) {
+ function api_albums(&$a,$type) {
json_return_and_die(photos_albums_list(App::get_channel(),App::get_observer()));
}
api_register_func('api/red/albums','api_albums', true);
- function api_photos($a,$type) {
+ function api_photos(&$a,$type) {
$album = $_REQUEST['album'];
json_return_and_die(photos_list_photos(App::get_channel(),App::get_observer(),$album));
}
api_register_func('api/red/photos','api_photos', true);
- function api_photo_detail($a,$type) {
+ function api_photo_detail(&$a,$type) {
if (api_user()===false) return false;
if(! $_REQUEST['photo_id']) return false;
$scale = ((array_key_exists('scale',$_REQUEST)) ? intval($_REQUEST['scale']) : 0);
@@ -686,7 +685,7 @@ require_once('include/api_auth.php');
api_register_func('api/red/photo', 'api_photo_detail', true);
- function api_group_members($a,$type) {
+ function api_group_members(&$a,$type) {
if(api_user() === false)
return false;
@@ -710,7 +709,7 @@ require_once('include/api_auth.php');
- function api_group($a,$type) {
+ function api_group(&$a,$type) {
if(api_user() === false)
return false;
@@ -722,7 +721,7 @@ require_once('include/api_auth.php');
api_register_func('api/red/group','api_group', true);
- function api_red_xchan($a,$type) {
+ function api_red_xchan(&$a,$type) {
logger('api_xchan');
if(api_user() === false)
@@ -740,7 +739,7 @@ require_once('include/api_auth.php');
api_register_func('api/red/xchan','api_red_xchan',true);
- function api_statuses_mediap($a, $type) {
+ function api_statuses_mediap(&$a, $type) {
if (api_user() === false) {
logger('api_statuses_update: no user');
return false;
@@ -786,7 +785,7 @@ require_once('include/api_auth.php');
}
api_register_func('api/statuses/mediap','api_statuses_mediap', true);
- function api_statuses_update($a, $type) {
+ function api_statuses_update(&$a, $type) {
if (api_user() === false) {
logger('api_statuses_update: no user');
return false;
@@ -907,7 +906,7 @@ require_once('include/api_auth.php');
api_register_func('api/statuses/update','api_statuses_update', true);
- function red_item_new($a, $type) {
+ function red_item_new(&$a, $type) {
if (api_user() === false) {
logger('api_red_item_new: no user');
@@ -941,7 +940,7 @@ require_once('include/api_auth.php');
api_register_func('api/red/item/new','red_item_new', true);
- function red_item($a, $type) {
+ function red_item(&$a, $type) {
if (api_user() === false) {
logger('api_red_item_full: no user');
@@ -1042,7 +1041,7 @@ require_once('include/api_auth.php');
return $status_info;
}
- function api_status_show($a, $type){
+ function api_status_show(&$a, $type){
$user_info = api_get_user($a);
// get last public message
@@ -1120,7 +1119,7 @@ require_once('include/api_auth.php');
// FIXME - this is essentially the same as api_status_show except for the template formatting at the end. Consolidate.
- function api_users_show($a, $type){
+ function api_users_show(&$a, $type){
$user_info = api_get_user($a);
require_once('include/security.php');
@@ -1192,7 +1191,7 @@ require_once('include/api_auth.php');
* TODO: Add reply info
*/
- function api_statuses_home_timeline($a, $type){
+ function api_statuses_home_timeline(&$a, $type){
if (api_user() === false)
return false;
@@ -1274,7 +1273,7 @@ require_once('include/api_auth.php');
api_register_func('api/statuses/home_timeline','api_statuses_home_timeline', true);
api_register_func('api/statuses/friends_timeline','api_statuses_home_timeline', true);
- function api_statuses_public_timeline($a, $type){
+ function api_statuses_public_timeline(&$a, $type){
if (api_user()===false) return false;
$user_info = api_get_user($a);
@@ -1338,7 +1337,7 @@ require_once('include/api_auth.php');
*
*/
- function api_statuses_show($a, $type){
+ function api_statuses_show(&$a, $type){
if (api_user()===false) return false;
$user_info = api_get_user($a);
@@ -1388,7 +1387,7 @@ require_once('include/api_auth.php');
/**
*
*/
- function api_statuses_repeat($a, $type){
+ function api_statuses_repeat(&$a, $type){
if (api_user()===false) return false;
$user_info = api_get_user($a);
@@ -1434,7 +1433,7 @@ require_once('include/api_auth.php');
*
*/
- function api_statuses_destroy($a, $type){
+ function api_statuses_destroy(&$a, $type){
if (api_user()===false) return false;
$user_info = api_get_user($a);
@@ -1498,7 +1497,7 @@ require_once('include/api_auth.php');
*/
- function api_statuses_mentions($a, $type){
+ function api_statuses_mentions(&$a, $type){
if (api_user()===false) return false;
$user_info = api_get_user($a);
@@ -1565,7 +1564,7 @@ require_once('include/api_auth.php');
api_register_func('api/statuses/replies','api_statuses_mentions', true);
- function api_statuses_user_timeline($a, $type){
+ function api_statuses_user_timeline(&$a, $type){
if (api_user()===false) return false;
$user_info = api_get_user($a);
@@ -1649,7 +1648,7 @@ require_once('include/api_auth.php');
*
* api v1 : https://web.archive.org/web/20131019055350/https://dev.twitter.com/docs/api/1/post/favorites/create/%3Aid
*/
- function api_favorites_create_destroy($a, $type){
+ function api_favorites_create_destroy(&$a, $type){
logger('favorites_create_destroy');
@@ -1717,7 +1716,7 @@ require_once('include/api_auth.php');
- function api_favorites($a, $type){
+ function api_favorites(&$a, $type){
if (api_user()===false)
return false;
@@ -1986,7 +1985,7 @@ require_once('include/api_auth.php');
}
- function api_account_rate_limit_status($a,$type) {
+ function api_account_rate_limit_status(&$a,$type) {
$hash = array(
'reset_time_in_seconds' => strtotime('now + 1 hour'),
@@ -2002,7 +2001,7 @@ require_once('include/api_auth.php');
}
api_register_func('api/account/rate_limit_status','api_account_rate_limit_status',true);
- function api_help_test($a,$type) {
+ function api_help_test(&$a,$type) {
if ($type == 'xml')
$ok = "true";
@@ -2019,7 +2018,7 @@ require_once('include/api_auth.php');
* This function is deprecated by Twitter
* returns: json, xml
**/
- function api_statuses_f($a, $type, $qtype) {
+ function api_statuses_f(&$a, $type, $qtype) {
if (api_user()===false) return false;
$user_info = api_get_user($a);
@@ -2040,7 +2039,6 @@ require_once('include/api_auth.php');
return false;
}
-// @fixme - update for hubzilla extensible perms using abconfig or find a better way to do it
// For Red, the closest thing we can do to figure out if you're friends is if both of you are sending each other your streams.
// This won't work if either of you send your stream to everybody on the network
if($qtype == 'friends')
@@ -2061,12 +2059,12 @@ require_once('include/api_auth.php');
return array('$users' => $ret);
}
- function api_statuses_friends($a, $type){
+ function api_statuses_friends(&$a, $type){
$data = api_statuses_f($a,$type,"friends");
if ($data===false) return false;
return api_apply_template("friends", $type, $data);
}
- function api_statuses_followers($a, $type){
+ function api_statuses_followers(&$a, $type){
$data = api_statuses_f($a,$type,"followers");
if ($data===false) return false;
return api_apply_template("friends", $type, $data);
@@ -2079,7 +2077,7 @@ require_once('include/api_auth.php');
- function api_statusnet_config($a,$type) {
+ function api_statusnet_config(&$a,$type) {
load_config('system');
@@ -2116,7 +2114,7 @@ require_once('include/api_auth.php');
api_register_func('api/friendica/config','api_statusnet_config',false);
api_register_func('api/red/config','api_statusnet_config',false);
- function api_statusnet_version($a,$type) {
+ function api_statusnet_version(&$a,$type) {
// liar
@@ -2134,7 +2132,7 @@ require_once('include/api_auth.php');
api_register_func('api/statusnet/version','api_statusnet_version',false);
- function api_friendica_version($a,$type) {
+ function api_friendica_version(&$a,$type) {
if($type === 'xml') {
header("Content-type: application/xml");
@@ -2151,7 +2149,7 @@ require_once('include/api_auth.php');
api_register_func('api/red/version','api_friendica_version',false);
- function api_ff_ids($a,$type,$qtype) {
+ function api_ff_ids(&$a,$type,$qtype) {
if(! api_user())
return false;
@@ -2187,17 +2185,17 @@ require_once('include/api_auth.php');
}
}
- function api_friends_ids($a,$type) {
+ function api_friends_ids(&$a,$type) {
api_ff_ids($a,$type,'friends');
}
- function api_followers_ids($a,$type) {
+ function api_followers_ids(&$a,$type) {
api_ff_ids($a,$type,'followers');
}
api_register_func('api/friends/ids','api_friends_ids',true);
api_register_func('api/followers/ids','api_followers_ids',true);
- function api_direct_messages_new($a, $type) {
+ function api_direct_messages_new(&$a, $type) {
if (api_user()===false) return false;
if (!x($_POST, "text") || !x($_POST,"screen_name")) return;
@@ -2255,7 +2253,7 @@ require_once('include/api_auth.php');
}
api_register_func('api/direct_messages/new','api_direct_messages_new',true);
- function api_direct_messages_box($a, $type, $box) {
+ function api_direct_messages_box(&$a, $type, $box) {
if (api_user()===false) return false;
$user_info = api_get_user($a);
@@ -2315,16 +2313,16 @@ require_once('include/api_auth.php');
}
- function api_direct_messages_sentbox($a, $type){
+ function api_direct_messages_sentbox(&$a, $type){
return api_direct_messages_box($a, $type, "sentbox");
}
- function api_direct_messages_inbox($a, $type){
+ function api_direct_messages_inbox(&$a, $type){
return api_direct_messages_box($a, $type, "inbox");
}
- function api_direct_messages_all($a, $type){
+ function api_direct_messages_all(&$a, $type){
return api_direct_messages_box($a, $type, "all");
}
- function api_direct_messages_conversation($a, $type){
+ function api_direct_messages_conversation(&$a, $type){
return api_direct_messages_box($a, $type, "conversation");
}
api_register_func('api/direct_messages/conversation','api_direct_messages_conversation',true);
@@ -2333,7 +2331,7 @@ require_once('include/api_auth.php');
api_register_func('api/direct_messages','api_direct_messages_inbox',true);
- function api_oauth_request_token($a, $type){
+ function api_oauth_request_token(&$a, $type){
try{
$oauth = new ZotOAuth1();
$req = OAuth1Request::from_request();
@@ -2348,7 +2346,7 @@ require_once('include/api_auth.php');
killme();
}
- function api_oauth_access_token($a, $type){
+ function api_oauth_access_token(&$a, $type){
try{
$oauth = new ZotOAuth1();
$req = OAuth1Request::from_request();
diff --git a/include/api_auth.php b/include/api_auth.php
index e5cd7cab3..89882f821 100644
--- a/include/api_auth.php
+++ b/include/api_auth.php
@@ -64,8 +64,6 @@ function api_login(&$a){
}
}
-
-
if($record['account']) {
authenticate_success($record['account']);
diff --git a/include/attach.php b/include/attach.php
index 172840b96..242fc7485 100644
--- a/include/attach.php
+++ b/include/attach.php
@@ -74,7 +74,6 @@ function z_mime_content_type($filename) {
// 'webm' => 'audio/webm',
'mp4' => 'video/mp4',
// 'mp4' => 'audio/mp4',
- 'mkv' => 'video/x-matroska',
// adobe
'pdf' => 'application/pdf',
diff --git a/include/channel.php b/include/channel.php
index 62c35e3ff..5ea732834 100644
--- a/include/channel.php
+++ b/include/channel.php
@@ -6,7 +6,6 @@
require_once('include/zot.php');
require_once('include/crypto.php');
require_once('include/menu.php');
-require_once('include/perm_upgrade.php');
/**
* @brief Called when creating a new channel.
@@ -226,26 +225,42 @@ function create_identity($arr) {
if(array_key_exists('publish', $arr))
$publish = intval($arr['publish']);
- $role_permissions = null;
-
- if(array_key_exists('permissions_role',$arr) && $arr['permissions_role']) {
- $role_permissions = \Zotlabs\Access\PermissionRoles::role_perms($arr['permissions_role']);
- }
-
- if($role_permissions && array_key_exists('directory_publish',$role_permissions))
- $publish = intval($role_permissions['directory_publish']);
-
$primary = true;
if(array_key_exists('primary', $arr))
$primary = intval($arr['primary']);
+ $role_permissions = null;
+ $global_perms = get_perms();
+
+ if(array_key_exists('permissions_role',$arr) && $arr['permissions_role']) {
+ $role_permissions = get_role_perms($arr['permissions_role']);
+
+ if($role_permissions) {
+ foreach($role_permissions as $p => $v) {
+ if(strpos($p,'channel_') !== false) {
+ $perms_keys .= ', ' . $p;
+ $perms_vals .= ', ' . intval($v);
+ }
+ if($p === 'directory_publish')
+ $publish = intval($v);
+ }
+ }
+ }
+ else {
+ $defperms = site_default_perms();
+ foreach($defperms as $p => $v) {
+ $perms_keys .= ', ' . $global_perms[$p][0];
+ $perms_vals .= ', ' . intval($v);
+ }
+ }
+
$expire = 0;
$r = q("insert into channel ( channel_account_id, channel_primary,
channel_name, channel_address, channel_guid, channel_guid_sig,
- channel_hash, channel_prvkey, channel_pubkey, channel_pageflags, channel_system, channel_expire_days, channel_timezone )
- values ( %d, %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d, %d, '%s' ) ",
+ channel_hash, channel_prvkey, channel_pubkey, channel_pageflags, channel_system, channel_expire_days, channel_timezone $perms_keys )
+ values ( %d, %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d, %d, '%s' $perms_vals ) ",
intval($arr['account_id']),
intval($primary),
@@ -273,17 +288,6 @@ function create_identity($arr) {
return $ret;
}
- if($role_permissions && array_key_exists('limits',$role_permissions))
- $perm_limits = $role_permissions['limits'];
- else
- $perm_limits = site_default_perms();
-
- foreach($perm_limits as $p => $v)
- \Zotlabs\Access\PermissionLimits::Set($r[0]['channel_id'],$p,$v);
-
- if($role_permissions && array_key_exists('perms_auto',$role_permissions))
- set_pconfig($r[0]['channel_id'],'system','autoperms',intval($role_permissions['perms_auto']));
-
$ret['channel'] = $r[0];
if(intval($arr['account_id']))
@@ -347,29 +351,25 @@ function create_identity($arr) {
);
if($role_permissions) {
- $myperms = ((array_key_exists('perms_connect',$role_permissions)) ? $role_permissions['perms_connect'] : array());
- }
- else {
- $x = \Zotlabs\Access\PermissionRoles::role_perms('social');
- $myperms = $x['perms_connect'];
+ $myperms = ((array_key_exists('perms_accept',$role_permissions)) ? intval($role_permissions['perms_accept']) : 0);
}
+ else
+ $myperms = PERMS_R_STREAM|PERMS_R_PROFILE|PERMS_R_PHOTOS|PERMS_R_ABOOK
+ |PERMS_W_STREAM|PERMS_W_WALL|PERMS_W_COMMENT|PERMS_W_MAIL|PERMS_W_CHAT
+ |PERMS_R_STORAGE|PERMS_R_PAGES|PERMS_W_LIKE;
- $r = q("insert into abook ( abook_account, abook_channel, abook_xchan, abook_closeness, abook_created, abook_updated, abook_self )
- values ( %d, %d, '%s', %d, '%s', '%s', %d ) ",
+ $r = q("insert into abook ( abook_account, abook_channel, abook_xchan, abook_closeness, abook_created, abook_updated, abook_self, abook_my_perms )
+ values ( %d, %d, '%s', %d, '%s', '%s', %d, %d ) ",
intval($ret['channel']['channel_account_id']),
intval($newuid),
dbesc($hash),
intval(0),
dbesc(datetime_convert()),
dbesc(datetime_convert()),
- intval(1)
+ intval(1),
+ intval($myperms)
);
- $x = \Zotlabs\Access\Permissions::FilledPerms($myperms);
- foreach($x as $k => $v) {
- set_abconfig($newuid,$hash,'my_perms',$k,$v);
- }
-
if(intval($ret['channel']['channel_account_id'])) {
// Save our permissions role so we can perhaps call it up and modify it later.
@@ -378,21 +378,8 @@ function create_identity($arr) {
set_pconfig($newuid,'system','permissions_role',$arr['permissions_role']);
if(array_key_exists('online',$role_permissions))
set_pconfig($newuid,'system','hide_presence',1-intval($role_permissions['online']));
- if(array_key_exists('perms_auto',$role_permissions)) {
- $autoperms = intval($role_permissions['perms_auto']);
- set_pconfig($newuid,'system','autoperms',$autoperms);
- if($autoperms) {
- $x = \Zotlabs\Access\Permissions::FilledPerms($role_permissions['perms_connect']);
- foreach($x as $k => $v) {
- set_pconfig($newuid,'autoperms',$k,$v);
- }
- }
- else {
- $r = q("delete from pconfig where uid = %d and cat = 'autoperms'",
- intval($newuid)
- );
- }
- }
+ if(array_key_exists('perms_auto',$role_permissions))
+ set_pconfig($newuid,'system','autoperms',(($role_permissions['perms_auto']) ? $role_permissions['perms_accept'] : 0));
}
// Create a group with yourself as a member. This allows somebody to use it
@@ -502,8 +489,7 @@ function identity_basic_export($channel_id, $items = false) {
intval($channel_id)
);
if($r) {
- translate_channel_perms_outbound($r[0]);
- $ret['channel'] = $r[0];
+ $ret['channel'] = $r[0];
$ret['relocate'] = [ 'channel_address' => $r[0]['channel_address'], 'url' => z_root()];
}
@@ -525,7 +511,6 @@ function identity_basic_export($channel_id, $items = false) {
$abconfig = load_abconfig($channel_id,$ret['abook'][$x]['abook_xchan']);
if($abconfig)
$ret['abook'][$x]['abconfig'] = $abconfig;
- translate_abook_perms_outbound($ret['abook'][$x]);
}
stringify_array_elms($xchans);
}
@@ -1551,11 +1536,9 @@ function is_public_profile() {
if(intval(get_config('system','block_public')))
return false;
$channel = App::get_channel();
- if($channel) {
- $perm = \Zotlabs\Access\PermissionLimits::Get($channel['channel_id'],'view_profile');
- if($perm == PERMS_PUBLIC)
- return true;
- }
+ if($channel && $channel['channel_r_profile'] == PERMS_PUBLIC)
+ return true;
+
return false;
}
@@ -1627,13 +1610,13 @@ function notifications_on($channel_id,$value) {
function get_channel_default_perms($uid) {
- $r = q("select abook_xchan from abook where abook_channel = %d and abook_self = 1 limit 1",
+ $r = q("select abook_my_perms from abook where abook_channel = %d and abook_self = 1 limit 1",
intval($uid)
);
if($r)
- return load_abconfig($uid,$r[0]['abook_xchan'],'my_perms');
+ return $r[0]['abook_my_perms'];
- return array();
+ return 0;
}
diff --git a/include/config.php b/include/config.php
index 8c0469392..08810e298 100644
--- a/include/config.php
+++ b/include/config.php
@@ -97,6 +97,7 @@ function del_aconfig($account_id, $family, $key) {
return Zlib\AConfig::Delete($account_id, $family, $key);
}
+
function load_abconfig($chan, $xhash, $family = '') {
return Zlib\AbConfig::Load($chan,$xhash,$family);
}
diff --git a/include/connections.php b/include/connections.php
index 4f685388c..e60b4fcae 100644
--- a/include/connections.php
+++ b/include/connections.php
@@ -260,15 +260,15 @@ function channel_remove($channel_id, $local = true, $unset_session=false) {
if(! $local) {
- $r = q("update channel set channel_deleted = '%s', channel_removed = 1 where channel_id = %d",
+ $r = q("update channel set channel_deleted = '%s', channel_removed = 1, channel_r_stream = 0, channel_r_profile = 0,
+ channel_r_photos = 0, channel_r_abook = 0, channel_w_stream = 0, channel_w_wall = 0, channel_w_tagwall = 0,
+ channel_w_comment = 0, channel_w_mail = 0, channel_w_photos = 0, channel_w_chat = 0, channel_a_delegate = 0,
+ channel_r_storage = 0, channel_w_storage = 0, channel_r_pages = 0, channel_w_pages = 0, channel_a_republish = 0
+ where channel_id = %d",
dbesc(datetime_convert()),
intval($channel_id)
);
- q("delete from pconfig where uid = %d",
- intval($channel_id)
- );
-
logger('deleting hublocs',LOGGER_DEBUG);
$r = q("update hubloc set hubloc_deleted = 1 where hubloc_hash = '%s'",
diff --git a/include/conversation.php b/include/conversation.php
index b53498d20..86ef34566 100644
--- a/include/conversation.php
+++ b/include/conversation.php
@@ -99,7 +99,7 @@ function localize_item(&$item){
if(intval($item['item_thread_top']))
return;
- $obj = json_decode($item['obj'],true);
+ $obj = json_decode_plus($item['obj']);
if((! $obj) && ($item['obj'])) {
logger('localize_item: failed to decode object: ' . print_r($item['obj'],true));
}
@@ -186,7 +186,7 @@ function localize_item(&$item){
$Alink = $item['author']['xchan_url'];
- $obj= json_decode($item['obj'],true);
+ $obj= json_decode_plus($item['obj']);
$Blink = $Bphoto = '';
@@ -219,7 +219,7 @@ function localize_item(&$item){
$Aname = $item['author']['xchan_name'];
$Alink = $item['author']['xchan_url'];
- $obj= json_decode($item['obj'],true);
+ $obj= json_decode_plus($item['obj']);
$Blink = $Bphoto = '';
diff --git a/include/follow.php b/include/follow.php
index 5f63687f8..e5a74f85e 100644
--- a/include/follow.php
+++ b/include/follow.php
@@ -66,11 +66,12 @@ function new_contact($uid,$url,$channel,$interactive = false, $confirm = false)
$role = get_pconfig($uid,'system','permissions_role');
if($role) {
- $x = \Zotlabs\Access\PermissionRoles::role_perms($role);
- if($x['perms_connect'])
- $my_perms = $x['perms_connect'];
+ $x = get_role_perms($role);
+ if($x['perms_follow'])
+ $my_perms = $x['perms_follow'];
}
+
if($is_red && $j) {
logger('follow: ' . $url . ' ' . print_r($j,true), LOGGER_DEBUG);
@@ -103,6 +104,10 @@ function new_contact($uid,$url,$channel,$interactive = false, $confirm = false)
$xchan_hash = $x['hash'];
+ $their_perms = 0;
+
+ $global_perms = get_perms();
+
if( array_key_exists('permissions',$j) && array_key_exists('data',$j['permissions'])) {
$permissions = crypto_unencapsulate(array(
'data' => $j['permissions']['data'],
@@ -116,14 +121,16 @@ function new_contact($uid,$url,$channel,$interactive = false, $confirm = false)
else
$permissions = $j['permissions'];
- if(is_array($permissions) && $permissions) {
- foreach($permissions as $k => $v) {
- set_abconfig($channel['channel_uid'],$xchan_hash,'their_perms',$k,intval($v));
+
+ foreach($permissions as $k => $v) {
+ if($v) {
+ $their_perms = $their_perms | intval($global_perms[$k][1]);
}
}
}
else {
+ $their_perms = 0;
$xchan_hash = '';
$r = q("select * from xchan where xchan_hash = '%s' or xchan_url = '%s' limit 1",
@@ -183,7 +190,6 @@ function new_contact($uid,$url,$channel,$interactive = false, $confirm = false)
$result['message'] = t('Protocol disabled.');
return $result;
}
-
$singleton = intval($x['singleton']);
$aid = $channel['channel_account_id'];
@@ -216,15 +222,6 @@ function new_contact($uid,$url,$channel,$interactive = false, $confirm = false)
intval($uid)
);
- if($is_http) {
-
- // Always set these "remote" permissions for feeds since we cannot interact with them
- // to negotiate a suitable permission response
-
- set_abconfig($uid,$xchan_hash,'their_perms','view_stream',1);
- set_abconfig($uid,$xchan_hash,'their_perms','republish',1);
- }
-
if($r) {
$abook_instance = $r[0]['abook_instance'];
@@ -234,7 +231,8 @@ function new_contact($uid,$url,$channel,$interactive = false, $confirm = false)
$abook_instance .= z_root();
}
- $x = q("update abook set abook_instance = '%s' where abook_id = %d",
+ $x = q("update abook set abook_their_perms = %d, abook_instance = '%s' where abook_id = %d",
+ intval($their_perms),
dbesc($abook_instance),
intval($r[0]['abook_id'])
);
@@ -244,13 +242,15 @@ function new_contact($uid,$url,$channel,$interactive = false, $confirm = false)
if($closeness === false)
$closeness = 80;
- $r = q("insert into abook ( abook_account, abook_channel, abook_closeness, abook_xchan, abook_feed, abook_created, abook_updated, abook_instance )
- values( %d, %d, %d, '%s', %d, '%s', '%s', '%s' ) ",
+ $r = q("insert into abook ( abook_account, abook_channel, abook_closeness, abook_xchan, abook_feed, abook_their_perms, abook_my_perms, abook_created, abook_updated, abook_instance )
+ values( %d, %d, %d, '%s', %d, %d, %d, '%s', '%s', '%s' ) ",
intval($aid),
intval($uid),
intval($closeness),
dbesc($xchan_hash),
intval(($is_http) ? 1 : 0),
+ intval(($is_http) ? $their_perms|PERMS_R_STREAM|PERMS_A_REPUBLISH : $their_perms),
+ intval($my_perms),
dbesc(datetime_convert()),
dbesc(datetime_convert()),
dbesc(($singleton) ? z_root() : '')
@@ -260,16 +260,6 @@ function new_contact($uid,$url,$channel,$interactive = false, $confirm = false)
if(! $r)
logger('mod_follow: abook creation failed');
- $all_perms = \Zotlabs\Access\Permissions::Perms();
- if($all_perms) {
- foreach($all_perms as $k => $v) {
- if(in_array($k,$my_perms))
- set_abconfig($uid,$xchan_hash,'my_perms',$k,1);
- else
- set_abconfig($uid,$xchan_hash,'my_perms',$k,0);
- }
- }
-
$r = q("select abook.*, xchan.* from abook left join xchan on abook_xchan = xchan_hash
where abook_xchan = '%s' and abook_channel = %d limit 1",
dbesc($xchan_hash),
diff --git a/include/import.php b/include/import.php
index 5bbed828f..bfe3c37b4 100644
--- a/include/import.php
+++ b/include/import.php
@@ -1,7 +1,6 @@
<?php
require_once('include/menu.php');
-require_once('include/perm_upgrade.php');
function import_channel($channel, $account_id, $seize) {
@@ -62,35 +61,15 @@ function import_channel($channel, $account_id, $seize) {
if(! is_site_admin())
$channel['channel_pageflags'] = $channel['channel_pageflags'] ^ PAGE_ALLOWCODE;
}
+
+ dbesc_array($channel);
- // remove all the permissions related settings, we will import/upgrade them after the channel
- // is created.
-
- $disallowed = [
- 'channel_id', 'channel_r_stream', 'channel_r_profile', 'channel_r_abook',
- 'channel_r_storage', 'channel_r_pages', 'channel_w_stream', 'channel_w_wall',
- 'channel_w_comment', 'channel_w_mail', 'channel_w_like', 'channel_w_tagwall',
- 'channel_w_chat', 'channel_w_storage', 'channel_w_pages', 'channel_a_republish',
- 'channel_a_delegate', 'perm_limits'
- ];
-
- $clean = array();
- foreach($channel as $k => $v) {
- if(in_array($k,$disallowed))
- continue;
- $clean[$k] = $v;
- }
-
- if($clean) {
- dbesc_array($clean);
-
- $r = dbq("INSERT INTO channel (`"
- . implode("`, `", array_keys($clean))
- . "`) VALUES ('"
- . implode("', '", array_values($clean))
- . "')"
- );
- }
+ $r = dbq("INSERT INTO channel (`"
+ . implode("`, `", array_keys($channel))
+ . "`) VALUES ('"
+ . implode("', '", array_values($channel))
+ . "')"
+ );
if(! $r) {
logger('mod_import: channel clone failed. ', print_r($channel,true));
@@ -107,14 +86,6 @@ function import_channel($channel, $account_id, $seize) {
notice( t('Cloned channel not found. Import failed.') . EOL);
return false;
}
-
- // extract the permissions from the original imported array and use our new channel_id to set them
- // These could be in the old channel permission stule or the new pconfig. We have a function to
- // translate and store them no matter which they throw at us.
-
- $channel['channel_id'] = $r[0]['channel_id'];
- translate_channel_perms_inbound($channel);
-
// reset
$channel = $r[0];
diff --git a/include/perm_upgrade.php b/include/perm_upgrade.php
deleted file mode 100644
index 5be1ffbb2..000000000
--- a/include/perm_upgrade.php
+++ /dev/null
@@ -1,236 +0,0 @@
-<?php
-
-function perm_limits_upgrade($channel) {
- set_pconfig($channel['channel_id'],'perm_limits','view_stream',$channel['channel_r_stream']);
- set_pconfig($channel['channel_id'],'perm_limits','view_profile',$channel['channel_r_profile']);
- set_pconfig($channel['channel_id'],'perm_limits','view_contacts',$channel['channel_r_abook']);
- set_pconfig($channel['channel_id'],'perm_limits','view_storage',$channel['channel_r_storage']);
- set_pconfig($channel['channel_id'],'perm_limits','view_pages',$channel['channel_r_pages']);
- set_pconfig($channel['channel_id'],'perm_limits','send_stream',$channel['channel_w_stream']);
- set_pconfig($channel['channel_id'],'perm_limits','post_wall',$channel['channel_w_wall']);
- set_pconfig($channel['channel_id'],'perm_limits','post_comments',$channel['channel_w_comment']);
- set_pconfig($channel['channel_id'],'perm_limits','post_mail',$channel['channel_w_mail']);
- set_pconfig($channel['channel_id'],'perm_limits','post_like',$channel['channel_w_like']);
- set_pconfig($channel['channel_id'],'perm_limits','tag_deliver',$channel['channel_w_tagwall']);
- set_pconfig($channel['channel_id'],'perm_limits','chat',$channel['channel_w_chat']);
- set_pconfig($channel['channel_id'],'perm_limits','write_storage',$channel['channel_w_storage']);
- set_pconfig($channel['channel_id'],'perm_limits','write_pages',$channel['channel_w_pages']);
- set_pconfig($channel['channel_id'],'perm_limits','republish',$channel['channel_a_republish']);
- set_pconfig($channel['channel_id'],'perm_limits','delegate',$channel['channel_a_delegate']);
-}
-
-function perms_int_to_array($p) {
-
- $ret = [];
-
- $ret['view_stream'] = (($p & PERMS_R_STREAM) ? 1 : 0);
- $ret['view_profile'] = (($p & PERMS_R_PROFILE) ? 1 : 0);
- $ret['view_contacts'] = (($p & PERMS_R_ABOOK) ? 1 : 0);
- $ret['view_storage'] = (($p & PERMS_R_STORAGE) ? 1 : 0);
- $ret['view_pages'] = (($p & PERMS_R_PAGES) ? 1 : 0);
- $ret['send_stream'] = (($p & PERMS_W_STREAM) ? 1 : 0);
- $ret['post_wall'] = (($p & PERMS_W_WALL) ? 1 : 0);
- $ret['post_comments'] = (($p & PERMS_W_COMMENT) ? 1 : 0);
- $ret['post_mail'] = (($p & PERMS_W_MAIL) ? 1 : 0);
- $ret['post_like'] = (($p & PERMS_W_LIKE) ? 1 : 0);
- $ret['tag_deliver'] = (($p & PERMS_W_TAGWALL) ? 1 : 0);
- $ret['chat'] = (($p & PERMS_W_CHAT) ? 1 : 0);
- $ret['write_storage'] = (($p & PERMS_W_STORAGE) ? 1 : 0);
- $ret['write_pages'] = (($p & PERMS_W_PAGES) ? 1 : 0);
- $ret['republish'] = (($p & PERMS_A_REPUBLISH) ? 1 : 0);
- $ret['delegate'] = (($p & PERMS_A_DELEGATE) ? 1 : 0);
-
- return $ret;
-}
-
-function autoperms_upgrade($channel) {
- $x = get_pconfig($channel['channel_id'],'system','autoperms');
- if(intval($x)) {
- $y = perms_int_to_array($x);
- if($y) {
- foreach($y as $k => $v) {
- set_pconfig($channel['channel_id'],'autoperms',$k,$v);
- }
- }
- }
-}
-
-
-function perm_abook_upgrade($abook) {
-
- $x = perms_int_to_array($abook['abook_their_perms']);
- if($x) {
- foreach($x as $k => $v) {
- set_abconfig($abook['abook_channel'],$abook['abook_xchan'],'their_perms',$k, $v);
- }
- }
-
- $x = perms_int_to_array($abook['abook_my_perms']);
- if($x) {
- foreach($x as $k => $v) {
- set_abconfig($abook['abook_channel'],$abook['abook_xchan'],'my_perms',$k, $v);
- }
- }
-}
-
-function translate_channel_perms_outbound(&$channel) {
- $r = q("select * from pconfig where uid = %d and cat = 'perm_limits' ",
- intval($channel['channel_id'])
- );
-
- if($r) {
- foreach($r as $rr) {
- if($rr['k'] === 'view_stream')
- $channel['channel_r_stream'] = $rr['v'];
- if($rr['k'] === 'view_profile')
- $channel['channel_r_profile'] = $rr['v'];
- if($rr['k'] === 'view_contacts')
- $channel['channel_r_abook'] = $rr['v'];
- if($rr['k'] === 'view_storage')
- $channel['channel_r_storage'] = $rr['v'];
- if($rr['k'] === 'view_pages')
- $channel['channel_r_pages'] = $rr['v'];
- if($rr['k'] === 'send_stream')
- $channel['channel_w_stream'] = $rr['v'];
- if($rr['k'] === 'post_wall')
- $channel['channel_w_wall'] = $rr['v'];
- if($rr['k'] === 'post_comments')
- $channel['channel_w_comment'] = $rr['v'];
- if($rr['k'] === 'post_mail')
- $channel['channel_w_mail'] = $rr['v'];
- if($rr['k'] === 'post_like')
- $channel['channel_w_like'] = $rr['v'];
- if($rr['k'] === 'tag_deliver')
- $channel['channel_w_tagwall'] = $rr['v'];
- if($rr['k'] === 'chat')
- $channel['channel_w_chat'] = $rr['v'];
- if($rr['k'] === 'write_storage')
- $channel['channel_w_storage'] = $rr['v'];
- if($rr['k'] === 'write_pages')
- $channel['channel_w_pages'] = $rr['v'];
- if($rr['k'] === 'republish')
- $channel['channel_a_republish'] = $rr['v'];
- if($rr['k'] === 'delegate')
- $channel['channel_a_delegate'] = $rr['v'];
-
- }
- $channel['perm_limits'] = $r;
- }
-}
-
-function translate_channel_perms_inbound($channel) {
-
- if($channel['perm_limits']) {
- foreach($channel['perm_limits'] as $p) {
- set_pconfig($channel['channel_id'],'perm_limits',$p['k'],$p['v']);
- }
- }
- else {
- perm_limits_upgrade($channel);
- }
-
-}
-
-function translate_abook_perms_outbound(&$abook) {
- $my_perms = 0;
- $their_perms = 0;
-
- if(array_key_exists('abconfig',$abook) && is_array($abook['abconfig']) && $abook['abconfig']) {
- foreach($abook['abconfig'] as $p) {
- if($p['cat'] === 'their_perms') {
- if($p['k'] === 'view_stream' && intval($p['v']))
- $their_perms += PERMS_R_STREAM;
- if($p['k'] === 'view_profile' && intval($p['v']))
- $their_perms += PERMS_R_PROFILE;
- if($p['k'] === 'view_contacts' && intval($p['v']))
- $their_perms += PERMS_R_ABOOK;
- if($p['k'] === 'view_storage' && intval($p['v']))
- $their_perms += PERMS_R_STORAGE;
- if($p['k'] === 'view_pages' && intval($p['v']))
- $their_perms += PERMS_R_PAGES;
- if($p['k'] === 'send_stream' && intval($p['v']))
- $their_perms += PERMS_W_STREAM;
- if($p['k'] === 'post_wall' && intval($p['v']))
- $their_perms += PERMS_W_WALL;
- if($p['k'] === 'post_comments' && intval($p['v']))
- $their_perms += PERMS_W_COMMENT;
- if($p['k'] === 'post_mail' && intval($p['v']))
- $their_perms += PERMS_W_MAIL;
- if($p['k'] === 'post_like' && intval($p['v']))
- $their_perms += PERMS_W_LIKE;
- if($p['k'] === 'tag_deliver' && intval($p['v']))
- $their_perms += PERMS_W_TAGWALL;
- if($p['k'] === 'chat' && intval($p['v']))
- $their_perms += PERMS_W_CHAT;
- if($p['k'] === 'write_storage' && intval($p['v']))
- $their_perms += PERMS_W_STORAGE;
- if($p['k'] === 'write_pages' && intval($p['v']))
- $their_perms += PERMS_W_PAGES;
- if($p['k'] === 'republish' && intval($p['v']))
- $their_perms += PERMS_A_REPUBLISH;
- if($p['k'] === 'delegate' && intval($p['v']))
- $their_perms += PERMS_A_DELEGATE;
- }
- if($p['cat'] === 'my_perms') {
- if($p['k'] === 'view_stream' && intval($p['v']))
- $my_perms += PERMS_R_STREAM;
- if($p['k'] === 'view_profile' && intval($p['v']))
- $my_perms += PERMS_R_PROFILE;
- if($p['k'] === 'view_contacts' && intval($p['v']))
- $my_perms += PERMS_R_ABOOK;
- if($p['k'] === 'view_storage' && intval($p['v']))
- $my_perms += PERMS_R_STORAGE;
- if($p['k'] === 'view_pages' && intval($p['v']))
- $my_perms += PERMS_R_PAGES;
- if($p['k'] === 'send_stream' && intval($p['v']))
- $my_perms += PERMS_W_STREAM;
- if($p['k'] === 'post_wall' && intval($p['v']))
- $my_perms += PERMS_W_WALL;
- if($p['k'] === 'post_comments' && intval($p['v']))
- $my_perms += PERMS_W_COMMENT;
- if($p['k'] === 'post_mail' && intval($p['v']))
- $my_perms += PERMS_W_MAIL;
- if($p['k'] === 'post_like' && intval($p['v']))
- $my_perms += PERMS_W_LIKE;
- if($p['k'] === 'tag_deliver' && intval($p['v']))
- $my_perms += PERMS_W_TAGWALL;
- if($p['k'] === 'chat' && intval($p['v']))
- $my_perms += PERMS_W_CHAT;
- if($p['k'] === 'write_storage' && intval($p['v']))
- $my_perms += PERMS_W_STORAGE;
- if($p['k'] === 'write_pages' && intval($p['v']))
- $my_perms += PERMS_W_PAGES;
- if($p['k'] === 'republish' && intval($p['v']))
- $my_perms += PERMS_A_REPUBLISH;
- if($p['k'] === 'delegate' && intval($p['v']))
- $my_perms += PERMS_A_DELEGATE;
- }
- }
-
- $abook['abook_their_perms'] = $their_perms;
- $abook['abook_my_perms'] = $my_perms;
- }
-}
-
-function translate_abook_perms_inbound($channel,$abook) {
-
- $new_perms = false;
- $abook['abook_channel'] = $channel['channel_id'];
-
- if(array_key_exists('abconfig',$abook) && is_array($abook['abconfig']) && $abook['abconfig']) {
- foreach($abook['abconfig'] as $p) {
- if($p['cat'] == 'their_perms' || $p['cat'] == 'my_perms') {
- $new_perms = true;
- break;
- }
- }
- }
-
- if($new_perms == false) {
- perm_abook_upgrade($abook);
- }
-
-}
-
-
-
diff --git a/include/photos.php b/include/photos.php
index d14c12d84..c70478146 100644
--- a/include/photos.php
+++ b/include/photos.php
@@ -412,7 +412,7 @@ function photo_upload($channel, $observer, $args) {
// in the photos pages - using the photos permissions instead. We need the public policy to keep the photo
// linked item from leaking into the feed when somebody has a channel with read_stream restrictions.
- $arr['public_policy'] = map_scope(\Zotlabs\Access\PermissionLimits::Get($channel['channel_id'],'view_stream'),true);
+ $arr['public_policy'] = map_scope($channel['channel_r_stream'],true);
if($arr['public_policy'])
$arr['item_private'] = 1;
diff --git a/include/security.php b/include/security.php
index 83bf51bc0..b46c3966b 100644
--- a/include/security.php
+++ b/include/security.php
@@ -228,7 +228,6 @@ function pseudo_abook($xchan) {
*
* @return bool|array false or channel record of the new channel
*/
-
function change_channel($change_channel) {
$ret = false;
@@ -578,19 +577,14 @@ function stream_perms_api_uids($perms = NULL, $limit = 0, $rand = 0 ) {
$random_sql = (($rand) ? " ORDER BY " . db_getfunc('RAND') . " " : '');
if(local_channel())
$ret[] = local_channel();
- $x = q("select uid from pconfig where cat = 'perm_limits' and k = 'view_stream' and ( v & %d ) > 0 ",
- intval($perms)
+ $r = q("select channel_id from channel where channel_r_stream > 0 and ( channel_r_stream & %d )>0 and ( channel_pageflags & %d ) = 0 and channel_system = 0 and channel_removed = 0 $random_sql $limit_sql ",
+ intval($perms),
+ intval(PAGE_ADULT|PAGE_CENSORED)
);
- if($x) {
- $ids = ids_to_querystr($x,'uid');
- $r = q("select channel_id from channel where channel_id in ( $ids ) and ( channel_pageflags & %d ) = 0 and channel_system = 0 and channel_removed = 0 $random_sql $limit_sql ",
- intval(PAGE_ADULT|PAGE_CENSORED)
- );
- if($r) {
- foreach($r as $rr)
- if(! in_array($rr['channel_id'], $ret))
- $ret[] = $rr['channel_id'];
- }
+ if($r) {
+ foreach($r as $rr)
+ if(! in_array($rr['channel_id'], $ret))
+ $ret[] = $rr['channel_id'];
}
$str = '';
@@ -616,21 +610,16 @@ function stream_perms_xchans($perms = NULL ) {
if(local_channel())
$ret[] = get_observer_hash();
- $x = q("select uid from pconfig where cat = 'perm_limits' and k = 'view_stream' and ( v & %d ) > 0 ",
- intval($perms)
+ $r = q("select channel_hash from channel where channel_r_stream > 0 and (channel_r_stream & %d)>0 and not (channel_pageflags & %d)>0 and channel_system = 0 and channel_removed = 0 ",
+ intval($perms),
+ intval(PAGE_ADULT|PAGE_CENSORED)
);
- if($x) {
- $ids = ids_to_querystr($x,'uid');
- $r = q("select channel_hash from channel where channel_id in ( $ids ) and ( channel_pageflags & %d ) = 0 and channel_system = 0 and channel_removed = 0 ",
- intval(PAGE_ADULT|PAGE_CENSORED)
- );
-
- if($r) {
- foreach($r as $rr)
- if(! in_array($rr['channel_hash'], $ret))
- $ret[] = $rr['channel_hash'];
- }
+ if($r) {
+ foreach($r as $rr)
+ if(! in_array($rr['channel_hash'], $ret))
+ $ret[] = $rr['channel_hash'];
}
+
$str = '';
if($ret) {
foreach($ret as $rr) {
diff --git a/include/text.php b/include/text.php
index ac210b336..2bda86885 100644
--- a/include/text.php
+++ b/include/text.php
@@ -1286,9 +1286,9 @@ function unobscure(&$item) {
if(array_key_exists('item_obscured',$item) && intval($item['item_obscured'])) {
$key = get_config('system','prvkey');
if($item['title'])
- $item['title'] = crypto_unencapsulate(json_decode($item['title'],true),$key);
+ $item['title'] = crypto_unencapsulate(json_decode_plus($item['title']),$key);
if($item['body'])
- $item['body'] = crypto_unencapsulate(json_decode($item['body'],true),$key);
+ $item['body'] = crypto_unencapsulate(json_decode_plus($item['body']),$key);
if(get_config('system','item_cache')) {
q("update item set title = '%s', body = '%s', item_obscured = 0 where id = %d",
dbesc($item['title']),
@@ -1311,7 +1311,7 @@ function unobscure_mail(&$item) {
function theme_attachments(&$item) {
- $arr = json_decode($item['attach'],true);
+ $arr = json_decode_plus($item['attach']);
if(is_array($arr) && count($arr)) {
$attaches = array();
foreach($arr as $r) {
@@ -2236,12 +2236,20 @@ function jindent($json) {
return $result;
}
+
+function json_decode_plus($s) {
+ $x = json_decode($s,true);
+ if(! $x)
+ $x = json_decode(str_replace(array('\\"','\\\\'),array('"','\\'),$s),true);
+
+ return $x;
+}
+
/**
* @brief Creates navigation menu for webpage, layout, blocks, menu sites.
*
* @return string
*/
-
function design_tools() {
$channel = App::get_channel();
@@ -2660,33 +2668,32 @@ function getIconFromType($type) {
'application/octet-stream' => 'fa-file-o',
//Text
'text/plain' => 'fa-file-text-o',
- 'application/msword' => 'fa-file-word-o',
- 'application/pdf' => 'fa-file-pdf-o',
- 'application/vnd.oasis.opendocument.text' => 'fa-file-word-o',
+ 'application/msword' => 'fa-file-text-o',
+ 'application/pdf' => 'fa-file-text-o',
+ 'application/vnd.oasis.opendocument.text' => 'fa-file-text-o',
'application/epub+zip' => 'fa-book',
//Spreadsheet
- 'application/vnd.oasis.opendocument.spreadsheet' => 'fa-file-excel-o',
- 'application/vnd.ms-excel' => 'fa-file-excel-o',
+ 'application/vnd.oasis.opendocument.spreadsheet' => 'fa-table',
+ 'application/vnd.ms-excel' => 'fa-table',
//Image
'image/jpeg' => 'fa-picture-o',
'image/png' => 'fa-picture-o',
'image/gif' => 'fa-picture-o',
'image/svg+xml' => 'fa-picture-o',
//Archive
- 'application/zip' => 'fa-file-archive-o',
- 'application/x-rar-compressed' => 'fa-file-archive-o',
+ 'application/zip' => 'fa-archive',
+ 'application/x-rar-compressed' => 'fa-archive',
//Audio
- 'audio/mpeg' => 'fa-file-audio-o',
- 'audio/wav' => 'fa-file-audio-o',
- 'application/ogg' => 'fa-file-audio-o',
- 'audio/ogg' => 'fa-file-audio-o',
- 'audio/webm' => 'fa-file-audio-o',
- 'audio/mp4' => 'fa-file-audio-o',
+ 'audio/mpeg' => 'fa-music',
+ 'audio/wav' => 'fa-music',
+ 'application/ogg' => 'fa-music',
+ 'audio/ogg' => 'fa-music',
+ 'audio/webm' => 'fa-music',
+ 'audio/mp4' => 'fa-music',
//Video
- 'video/quicktime' => 'fa-file-video-o',
- 'video/webm' => 'fa-file-video-o',
- 'video/mp4' => 'fa-file-video-o',
- 'video/x-matroska' => 'fa-file-video-o'
+ 'video/quicktime' => 'fa-film',
+ 'video/webm' => 'fa-film',
+ 'video/mp4' => 'fa-film'
);
$iconFromType = 'fa-file-o';
diff --git a/include/widgets.php b/include/widgets.php
index 68db74703..b19f00da0 100644
--- a/include/widgets.php
+++ b/include/widgets.php
@@ -1370,14 +1370,9 @@ function widget_forums($arr) {
$perms_sql = item_permissions_sql(local_channel()) . item_normal();
- /**
- * We used to try and find public forums with custom permissions by checking to see if
- * send_stream was false and tag_deliver was true. However with the newer extensible
- * permissions infrastructure this makes for a very complicated query. Now we're only
- * checking channels that report themselves specifically as pubforums
- */
-
- $r1 = q("select abook_id, xchan_hash, xchan_name, xchan_url, xchan_photo_s from abook left join xchan on abook_xchan = xchan_hash where xchan_pubforum = 1 and xchan_deleted = 0 and abook_channel = %d order by xchan_name $limit ",
+ $r1 = q("select abook_id, xchan_hash, xchan_name, xchan_url, xchan_photo_s from abook left join xchan on abook_xchan = xchan_hash where ( xchan_pubforum = 1 or ((abook_their_perms & %d ) != 0 and (abook_their_perms & %d ) = 0) ) and xchan_deleted = 0 and abook_channel = %d order by xchan_name $limit ",
+ intval(PERMS_W_TAGWALL),
+ intval(PERMS_W_STREAM),
intval(local_channel())
);
if(! $r1)
diff --git a/install/schema_mysql.sql b/install/schema_mysql.sql
index 5e5b9d5be..5335c231e 100644
--- a/install/schema_mysql.sql
+++ b/install/schema_mysql.sql
@@ -920,7 +920,6 @@ CREATE TABLE IF NOT EXISTS `pconfig` (
UNIQUE KEY `access` (`uid`,`cat`,`k`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-
CREATE TABLE IF NOT EXISTS `photo` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`aid` int(10) unsigned NOT NULL DEFAULT '0',
diff --git a/install/schema_postgres.sql b/install/schema_postgres.sql
index 44711c190..8a387a8fe 100644
--- a/install/schema_postgres.sql
+++ b/install/schema_postgres.sql
@@ -903,7 +903,6 @@ CREATE TABLE "pconfig" (
PRIMARY KEY ("id"),
UNIQUE ("uid","cat","k")
);
-
CREATE TABLE "photo" (
"id" serial NOT NULL,
"aid" bigint NOT NULL DEFAULT '0',
@@ -1086,7 +1085,7 @@ create index "reg_uid" on register ("uid");
CREATE TABLE "session" (
"id" serial,
"sid" text NOT NULL,
- "sess_data" text NOT NULL,
+ "sess_data" text NOT NULL DEFAULT '',
"expire" numeric(20) NOT NULL,
PRIMARY KEY ("id")
);
diff --git a/install/update.php b/install/update.php
index 3d0e5b00d..f2d97430b 100644
--- a/install/update.php
+++ b/install/update.php
@@ -1,6 +1,6 @@
<?php
-define( 'UPDATE_VERSION' , 1181 );
+define( 'UPDATE_VERSION' , 1180 );
/**
*
@@ -2402,30 +2402,5 @@ function update_r1179() {
return UPDATE_SUCCESS;
return UPDATE_FAILED;
-}
-
-function update_r1180() {
-
- require_once('include/perm_upgrade.php');
-
- $r1 = q("select * from channel where true");
- if($r1) {
- foreach($r1 as $rr) {
- perm_limits_upgrade($rr);
- autoperms_upgrade($rr);
- }
- }
-
- $r2 = q("select * from abook where true");
- if($r2) {
- foreach($r2 as $rr) {
- perm_abook_upgrade($rr);
- }
- }
-
- $r = $r1 && $r2;
- if($r)
- return UPDATE_SUCCESS;
- return UPDATE_FAILED;
-}
+} \ No newline at end of file
diff --git a/library/readmore.js/README.md b/library/readmore.js/README.md
index 24649f32d..0116fbe8b 100644
--- a/library/readmore.js/README.md
+++ b/library/readmore.js/README.md
@@ -9,22 +9,16 @@ Readmore.js is tested with—and supported on—all versions of jQuery greater t
## Install
-Install Readmore.js with npm:
+Install Readmore.js with Bower:
```
-$ npm install readmore-js
+$ bower install readmore
```
Then include it in your HTML:
```html
-<script src="/node_modules/readmore-js/readmore.min.js"></script>
-```
-
-Or, using Webpack or Browserify:
-
-```javascript
-require('readmore-js');
+<script src="/bower_components/readmore/readmore.min.js"></script>
```
@@ -55,23 +49,17 @@ $('article').readmore({
* `startOpen: false` do not immediately truncate, start in the fully opened position
* `beforeToggle: function() {}` called after a more or less link is clicked, but *before* the block is collapsed or expanded
* `afterToggle: function() {}` called *after* the block is collapsed or expanded
-* `blockProcessed: function() {}` called once per block during initilization after Readmore.js has processed the block.
If the element has a `max-height` CSS property, Readmore.js will use that value rather than the value of the `collapsedHeight` option.
### The callbacks:
-The `beforeToggle` and `afterToggle` callbacks both receive the same arguments: `trigger`, `element`, and `expanded`.
+The callback functions, `beforeToggle` and `afterToggle`, both receive the same arguments: `trigger`, `element`, and `expanded`.
* `trigger`: the "Read more" or "Close" element that was clicked
* `element`: the block that is being collapsed or expanded
* `expanded`: Boolean; `true` means the block is expanded
-The `blockProcessed` callback receives `element` and `collapsable`.
-
-* `element`: the block that has just been processed
-* `collapsable`: Boolean; `false` means the block was shorter than the specified minimum `collapsedHeight`--the block will not have a "Read more" link
-
#### Callback example:
Here's an example of how you could use the `afterToggle` callback to scroll back to the top of a block when the "Close" link is clicked.
@@ -178,6 +166,6 @@ $ npm install
Which will install the necessary development dependencies. Then, to build the minified script:
```
-$ npm run build
+$ gulp compress
```
diff --git a/library/readmore.js/hubzilla-custom-fix-webkit-browsers.patch b/library/readmore.js/hubzilla-custom-fix-webkit-browsers.patch
deleted file mode 100644
index fd3146152..000000000
--- a/library/readmore.js/hubzilla-custom-fix-webkit-browsers.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff --git a/library/readmore.js/readmore.js b/library/readmore.js/readmore.js
-index 34a624e..51222ce 100644
---- a/library/readmore.js/readmore.js
-+++ b/library/readmore.js/readmore.js
-@@ -246,7 +246,7 @@
- collapsedHeight = $element.data('collapsedHeight');
-
- if ($element.height() <= collapsedHeight) {
-- newHeight = $element.data('expandedHeight') + 'px';
-+ newHeight = 100 + '%';
- newLink = 'lessLink';
- expanded = true;
- }
diff --git a/library/readmore.js/readmore.js b/library/readmore.js/readmore.js
index 51222ced0..fb5a0e0f9 100644
--- a/library/readmore.js/readmore.js
+++ b/library/readmore.js/readmore.js
@@ -37,9 +37,8 @@
startOpen: false,
// callbacks
- blockProcessed: function() {},
- beforeToggle: function() {},
- afterToggle: function() {}
+ beforeToggle: function(){},
+ afterToggle: function(){}
},
cssEmbedded = {},
uniqueIdCounter = 0;
@@ -188,9 +187,6 @@
if (current.outerHeight(true) <= collapsedHeight + heightMargin) {
// The block is shorter than the limit, so there's no need to truncate it.
- if (this.options.blockProcessed && typeof this.options.blockProcessed === 'function') {
- this.options.blockProcessed(current, false);
- }
return true;
}
else {
@@ -210,7 +206,7 @@
};
})(this))
.attr({
- 'data-readmore-toggle': id,
+ 'data-readmore-toggle': '',
'aria-controls': id
}));
@@ -219,10 +215,6 @@
height: collapsedHeight
});
}
-
- if (this.options.blockProcessed && typeof this.options.blockProcessed === 'function') {
- this.options.blockProcessed(current, true);
- }
}
},
@@ -232,11 +224,11 @@
}
if (! trigger) {
- trigger = $('[aria-controls="' + this.element.id + '"]')[0];
+ trigger = $('[aria-controls="' + _this.element.id + '"]')[0];
}
if (! element) {
- element = this.element;
+ element = _this.element;
}
var $element = $(element),
@@ -258,18 +250,14 @@
// Fire beforeToggle callback
// Since we determined the new "expanded" state above we're now out of sync
// with our true current state, so we need to flip the value of `expanded`
- if (this.options.beforeToggle && typeof this.options.beforeToggle === 'function') {
- this.options.beforeToggle(trigger, $element, ! expanded);
- }
+ this.options.beforeToggle(trigger, $element, ! expanded);
$element.css({'height': newHeight});
// Fire afterToggle callback
$element.on('transitionend', (function(_this) {
return function() {
- if (_this.options.afterToggle && typeof _this.options.afterToggle === 'function') {
- _this.options.afterToggle(trigger, $element, expanded);
- }
+ _this.options.afterToggle(trigger, $element, expanded);
$(this).attr({
'aria-expanded': expanded
@@ -284,7 +272,7 @@
};
})(this))
.attr({
- 'data-readmore-toggle': $element.attr('id'),
+ 'data-readmore-toggle': '',
'aria-controls': $element.attr('id')
}));
},
diff --git a/vendor/sabre/dav/lib/DAV/Browser/Plugin.php b/vendor/sabre/dav/lib/DAV/Browser/Plugin.php
index 4959193ea..49359a045 100644
--- a/vendor/sabre/dav/lib/DAV/Browser/Plugin.php
+++ b/vendor/sabre/dav/lib/DAV/Browser/Plugin.php
@@ -163,7 +163,7 @@ class Plugin extends DAV\ServerPlugin {
* @return bool
*/
function httpPOST(RequestInterface $request, ResponseInterface $response) {
-
+
$contentType = $request->getHeader('Content-Type');
list($contentType) = explode(';', $contentType);
if ($contentType !== 'application/x-www-form-urlencoded' &&
@@ -179,7 +179,7 @@ class Plugin extends DAV\ServerPlugin {
if ($this->server->emit('onBrowserPostAction', [$uri, $postVars['sabreAction'], $postVars])) {
- switch ($postVars['sabreAction']) {
+ switch ($postVars['sabreAction']) {
case 'mkcol' :
if (isset($postVars['name']) && trim($postVars['name'])) {
@@ -221,7 +221,7 @@ class Plugin extends DAV\ServerPlugin {
if ($_FILES) $file = current($_FILES);
else break;
-
+
list(, $newName) = URLUtil::splitPath(trim($file['name']));
if (isset($postVars['name']) && trim($postVars['name']))
$newName = trim($postVars['name']);
diff --git a/view/ca/hmessages.po b/view/ca/hmessages.po
index ecb96b8f8..2eda76a7a 100644
--- a/view/ca/hmessages.po
+++ b/view/ca/hmessages.po
@@ -11,8 +11,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Redmatrix\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-06-10 00:02-0700\n"
-"PO-Revision-Date: 2016-06-10 09:14+0000\n"
+"POT-Creation-Date: 2016-07-22 00:02-0700\n"
+"PO-Revision-Date: 2016-07-25 08:54+0000\n"
"Last-Translator: fabrixxm <fabrix.xm@gmail.com>\n"
"Language-Team: Catalan (Spain) (http://www.transifex.com/Friendica/red-matrix/language/ca_ES/)\n"
"MIME-Version: 1.0\n"
@@ -21,11 +21,156 @@ msgstr ""
"Language: ca_ES\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+#: ../../Zotlabs/Access/PermissionRoles.php:182
+#: ../../include/permissions.php:904
+msgid "Social Networking"
+msgstr "Xarxes Socials"
+
+#: ../../Zotlabs/Access/PermissionRoles.php:183
+#: ../../include/permissions.php:904
+msgid "Social - Mostly Public"
+msgstr "Social - Principalment Públic"
+
+#: ../../Zotlabs/Access/PermissionRoles.php:184
+#: ../../include/permissions.php:904
+msgid "Social - Restricted"
+msgstr "Social - Restingit"
+
+#: ../../Zotlabs/Access/PermissionRoles.php:185
+#: ../../include/permissions.php:904
+msgid "Social - Private"
+msgstr "Social - Privat"
+
+#: ../../Zotlabs/Access/PermissionRoles.php:188
+#: ../../include/permissions.php:905
+msgid "Community Forum"
+msgstr "Foro de Comunitat"
+
+#: ../../Zotlabs/Access/PermissionRoles.php:189
+#: ../../include/permissions.php:905
+msgid "Forum - Mostly Public"
+msgstr "Fòrum - Principalment Públic"
+
+#: ../../Zotlabs/Access/PermissionRoles.php:190
+#: ../../include/permissions.php:905
+msgid "Forum - Restricted"
+msgstr "Fòrum - Restringit"
+
+#: ../../Zotlabs/Access/PermissionRoles.php:191
+#: ../../include/permissions.php:905
+msgid "Forum - Private"
+msgstr "Fòrum - Privat"
+
+#: ../../Zotlabs/Access/PermissionRoles.php:194
+#: ../../include/permissions.php:906
+msgid "Feed Republish"
+msgstr "Republicador"
+
+#: ../../Zotlabs/Access/PermissionRoles.php:195
+#: ../../include/permissions.php:906
+msgid "Feed - Mostly Public"
+msgstr "Realimentador - Públic Principalment"
+
+#: ../../Zotlabs/Access/PermissionRoles.php:196
+#: ../../include/permissions.php:906
+msgid "Feed - Restricted"
+msgstr "Retroalimentador - Restringit"
+
+#: ../../Zotlabs/Access/PermissionRoles.php:199
+#: ../../include/permissions.php:907
+msgid "Special Purpose"
+msgstr "Objectiu Especial"
+
+#: ../../Zotlabs/Access/PermissionRoles.php:200
+#: ../../include/permissions.php:907
+msgid "Special - Celebrity/Soapbox"
+msgstr "Espacial - Celebritat/Plataforma"
+
+#: ../../Zotlabs/Access/PermissionRoles.php:201
+#: ../../include/permissions.php:907
+msgid "Special - Group Repository"
+msgstr "Especial - Repositori d'un Grup"
+
+#: ../../Zotlabs/Access/PermissionRoles.php:204 ../../include/selectors.php:49
+#: ../../include/selectors.php:66 ../../include/selectors.php:104
+#: ../../include/selectors.php:140 ../../include/permissions.php:908
+msgid "Other"
+msgstr "Altres"
+
+#: ../../Zotlabs/Access/PermissionRoles.php:205
+#: ../../include/permissions.php:908
+msgid "Custom/Expert Mode"
+msgstr "Personalitzat/Manera Experta"
+
+#: ../../Zotlabs/Access/Permissions.php:30
+msgid "Can view my channel stream and posts"
+msgstr ""
+
+#: ../../Zotlabs/Access/Permissions.php:31 ../../include/permissions.php:33
+msgid "Can send me their channel stream and posts"
+msgstr "Pot enviar-me el flux i entrades del seu canal"
+
+#: ../../Zotlabs/Access/Permissions.php:32 ../../include/permissions.php:27
+msgid "Can view my default channel profile"
+msgstr "Pot veure el meu perfil del canal per defecte"
+
+#: ../../Zotlabs/Access/Permissions.php:33 ../../include/permissions.php:28
+msgid "Can view my connections"
+msgstr "Pot veure les meves connexions"
+
+#: ../../Zotlabs/Access/Permissions.php:34 ../../include/permissions.php:29
+msgid "Can view my file storage and photos"
+msgstr "Pot veure al meu magatzem d'arxius i fotos"
+
+#: ../../Zotlabs/Access/Permissions.php:35
+msgid "Can upload/modify my file storage and photos"
+msgstr ""
+
+#: ../../Zotlabs/Access/Permissions.php:36
+msgid "Can view my channel webpages"
+msgstr ""
+
+#: ../../Zotlabs/Access/Permissions.php:37
+msgid "Can create/edit my channel webpages"
+msgstr ""
+
+#: ../../Zotlabs/Access/Permissions.php:38
+msgid "Can post on my channel (wall) page"
+msgstr ""
+
+#: ../../Zotlabs/Access/Permissions.php:39 ../../include/permissions.php:35
+msgid "Can comment on or like my posts"
+msgstr "Pot fer comentaris o dir si agrada en les meves entrades"
+
+#: ../../Zotlabs/Access/Permissions.php:40 ../../include/permissions.php:36
+msgid "Can send me private mail messages"
+msgstr "Pot enviar-me un missatge de correu privat"
+
+#: ../../Zotlabs/Access/Permissions.php:41
+msgid "Can like/dislike profiles and profile things"
+msgstr ""
+
+#: ../../Zotlabs/Access/Permissions.php:42
+msgid "Can forward to all my channel connections via @+ mentions in posts"
+msgstr ""
+
+#: ../../Zotlabs/Access/Permissions.php:43
+msgid "Can chat with me"
+msgstr ""
+
+#: ../../Zotlabs/Access/Permissions.php:44 ../../include/permissions.php:44
+msgid "Can source my public posts in derived channels"
+msgstr "Pot mostrar l'origen de les meves entrades públiques en altres canals"
+
+#: ../../Zotlabs/Access/Permissions.php:45
+msgid "Can administer my channel"
+msgstr ""
+
#: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:239
msgid "parent"
-msgstr "pare"
+msgstr "amunt"
-#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2620
+#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2605
msgid "Collection"
msgstr "Col·lecció"
@@ -49,16 +194,17 @@ msgstr "Programació de la bústia d'entrada"
msgid "Schedule Outbox"
msgstr "Programació de la bústia de sortida"
-#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:798
-#: ../../Zotlabs/Module/Photos.php:1243 ../../Zotlabs/Lib/Apps.php:486
-#: ../../Zotlabs/Lib/Apps.php:561 ../../include/widgets.php:1505
-#: ../../include/conversation.php:1032
+#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:796
+#: ../../Zotlabs/Module/Photos.php:1241
+#: ../../Zotlabs/Module/Embedphotos.php:147 ../../Zotlabs/Lib/Apps.php:490
+#: ../../Zotlabs/Lib/Apps.php:565 ../../include/conversation.php:1035
+#: ../../include/widgets.php:1599
msgid "Unknown"
msgstr "Desconegut"
#: ../../Zotlabs/Storage/Browser.php:226 ../../Zotlabs/Module/Fbrowser.php:85
-#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:93
-#: ../../include/conversation.php:1639
+#: ../../Zotlabs/Lib/Apps.php:217 ../../include/nav.php:93
+#: ../../include/conversation.php:1654
msgid "Files"
msgstr "Arxius"
@@ -71,22 +217,23 @@ msgid "Shared"
msgstr "Compartit"
#: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:306
-#: ../../Zotlabs/Module/Blocks.php:156 ../../Zotlabs/Module/Layouts.php:182
-#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/New_channel.php:142
-#: ../../Zotlabs/Module/Webpages.php:186
+#: ../../Zotlabs/Module/Layouts.php:184 ../../Zotlabs/Module/Menu.php:118
+#: ../../Zotlabs/Module/New_channel.php:142
+#: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Webpages.php:193
msgid "Create"
msgstr "Crear"
#: ../../Zotlabs/Storage/Browser.php:231 ../../Zotlabs/Storage/Browser.php:308
#: ../../Zotlabs/Module/Cover_photo.php:357
-#: ../../Zotlabs/Module/Photos.php:825 ../../Zotlabs/Module/Photos.php:1364
-#: ../../Zotlabs/Module/Profile_photo.php:368 ../../include/widgets.php:1518
+#: ../../Zotlabs/Module/Photos.php:823 ../../Zotlabs/Module/Photos.php:1362
+#: ../../Zotlabs/Module/Profile_photo.php:390
+#: ../../Zotlabs/Module/Embedphotos.php:159 ../../include/widgets.php:1612
msgid "Upload"
msgstr "Pujar"
#: ../../Zotlabs/Storage/Browser.php:235 ../../Zotlabs/Module/Chat.php:247
-#: ../../Zotlabs/Module/Admin.php:1223 ../../Zotlabs/Module/Settings.php:592
-#: ../../Zotlabs/Module/Settings.php:618
+#: ../../Zotlabs/Module/Admin.php:1223 ../../Zotlabs/Module/Settings.php:646
+#: ../../Zotlabs/Module/Settings.php:672
#: ../../Zotlabs/Module/Sharedwithme.php:99
msgid "Name"
msgstr "Nom"
@@ -96,7 +243,7 @@ msgid "Type"
msgstr "Tipus"
#: ../../Zotlabs/Storage/Browser.php:237
-#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1344
+#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1324
msgid "Size"
msgstr "Mida"
@@ -105,34 +252,32 @@ msgstr "Mida"
msgid "Last Modified"
msgstr "Últim Modificat"
-#: ../../Zotlabs/Storage/Browser.php:240 ../../Zotlabs/Module/Blocks.php:157
-#: ../../Zotlabs/Module/Editblock.php:109
+#: ../../Zotlabs/Storage/Browser.php:240 ../../Zotlabs/Module/Editpost.php:84
#: ../../Zotlabs/Module/Connections.php:290
#: ../../Zotlabs/Module/Connections.php:310
-#: ../../Zotlabs/Module/Editpost.php:84
-#: ../../Zotlabs/Module/Editlayout.php:113
-#: ../../Zotlabs/Module/Editwebpage.php:146
-#: ../../Zotlabs/Module/Layouts.php:190 ../../Zotlabs/Module/Menu.php:112
-#: ../../Zotlabs/Module/Admin.php:2113 ../../Zotlabs/Module/Settings.php:652
-#: ../../Zotlabs/Module/Thing.php:260 ../../Zotlabs/Module/Webpages.php:187
-#: ../../Zotlabs/Lib/Apps.php:337 ../../Zotlabs/Lib/ThreadItem.php:106
-#: ../../include/channel.php:937 ../../include/channel.php:941
-#: ../../include/menu.php:108 ../../include/page_widgets.php:8
-#: ../../include/page_widgets.php:36
+#: ../../Zotlabs/Module/Editlayout.php:114
+#: ../../Zotlabs/Module/Editwebpage.php:145
+#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Menu.php:112
+#: ../../Zotlabs/Module/Admin.php:2113 ../../Zotlabs/Module/Blocks.php:160
+#: ../../Zotlabs/Module/Editblock.php:109
+#: ../../Zotlabs/Module/Settings.php:706 ../../Zotlabs/Module/Thing.php:260
+#: ../../Zotlabs/Module/Webpages.php:194 ../../Zotlabs/Lib/Apps.php:341
+#: ../../Zotlabs/Lib/ThreadItem.php:106 ../../include/page_widgets.php:9
+#: ../../include/page_widgets.php:39 ../../include/channel.php:976
+#: ../../include/channel.php:980 ../../include/menu.php:108
msgid "Edit"
msgstr "Edita"
-#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Blocks.php:159
-#: ../../Zotlabs/Module/Connedit.php:572
-#: ../../Zotlabs/Module/Editblock.php:134
+#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Connedit.php:602
#: ../../Zotlabs/Module/Connections.php:263
-#: ../../Zotlabs/Module/Editlayout.php:136
-#: ../../Zotlabs/Module/Editwebpage.php:170 ../../Zotlabs/Module/Group.php:177
-#: ../../Zotlabs/Module/Photos.php:1173 ../../Zotlabs/Module/Admin.php:1039
+#: ../../Zotlabs/Module/Editlayout.php:137
+#: ../../Zotlabs/Module/Editwebpage.php:169 ../../Zotlabs/Module/Group.php:177
+#: ../../Zotlabs/Module/Photos.php:1171 ../../Zotlabs/Module/Admin.php:1039
#: ../../Zotlabs/Module/Admin.php:1213 ../../Zotlabs/Module/Admin.php:2114
-#: ../../Zotlabs/Module/Settings.php:653 ../../Zotlabs/Module/Thing.php:261
-#: ../../Zotlabs/Module/Webpages.php:189 ../../Zotlabs/Lib/Apps.php:338
-#: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:657
+#: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Editblock.php:134
+#: ../../Zotlabs/Module/Settings.php:707 ../../Zotlabs/Module/Thing.php:261
+#: ../../Zotlabs/Module/Webpages.php:196 ../../Zotlabs/Lib/Apps.php:342
+#: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:660
msgid "Delete"
msgstr "Esborra"
@@ -158,74 +303,73 @@ msgstr "Crea una nova carpeta"
msgid "Upload file"
msgstr "Puja arxiu"
-#: ../../Zotlabs/Web/WebServer.php:120 ../../Zotlabs/Module/Dreport.php:10
-#: ../../Zotlabs/Module/Dreport.php:49 ../../Zotlabs/Module/Group.php:72
-#: ../../Zotlabs/Module/Like.php:284 ../../Zotlabs/Module/Import_items.php:112
+#: ../../Zotlabs/Web/WebServer.php:127 ../../Zotlabs/Module/Dreport.php:10
+#: ../../Zotlabs/Module/Dreport.php:66 ../../Zotlabs/Module/Group.php:72
+#: ../../Zotlabs/Module/Like.php:283 ../../Zotlabs/Module/Import_items.php:114
#: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:62
-#: ../../include/items.php:385
+#: ../../include/items.php:384
msgid "Permission denied"
msgstr "Permís denegat"
-#: ../../Zotlabs/Web/WebServer.php:121 ../../Zotlabs/Web/Router.php:65
-#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Blocks.php:73
-#: ../../Zotlabs/Module/Blocks.php:80 ../../Zotlabs/Module/Channel.php:105
-#: ../../Zotlabs/Module/Channel.php:226 ../../Zotlabs/Module/Channel.php:267
-#: ../../Zotlabs/Module/Chat.php:100 ../../Zotlabs/Module/Chat.php:105
-#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Block.php:26
-#: ../../Zotlabs/Module/Block.php:76 ../../Zotlabs/Module/Bookmarks.php:61
-#: ../../Zotlabs/Module/Connedit.php:366 ../../Zotlabs/Module/Editblock.php:67
-#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Connections.php:33
+#: ../../Zotlabs/Web/WebServer.php:128 ../../Zotlabs/Web/Router.php:65
+#: ../../Zotlabs/Module/Achievements.php:34
+#: ../../Zotlabs/Module/Connedit.php:390 ../../Zotlabs/Module/Id.php:76
+#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Events.php:264
+#: ../../Zotlabs/Module/Bookmarks.php:61 ../../Zotlabs/Module/Editpost.php:17
+#: ../../Zotlabs/Module/Page.php:35 ../../Zotlabs/Module/Page.php:91
+#: ../../Zotlabs/Module/Connections.php:33
#: ../../Zotlabs/Module/Cover_photo.php:277
-#: ../../Zotlabs/Module/Cover_photo.php:290
-#: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Events.php:265
-#: ../../Zotlabs/Module/Editlayout.php:67
+#: ../../Zotlabs/Module/Cover_photo.php:290 ../../Zotlabs/Module/Chat.php:100
+#: ../../Zotlabs/Module/Chat.php:105 ../../Zotlabs/Module/Editlayout.php:67
#: ../../Zotlabs/Module/Editlayout.php:90
-#: ../../Zotlabs/Module/Editwebpage.php:69
-#: ../../Zotlabs/Module/Editwebpage.php:90
-#: ../../Zotlabs/Module/Editwebpage.php:105
-#: ../../Zotlabs/Module/Editwebpage.php:127 ../../Zotlabs/Module/Group.php:13
-#: ../../Zotlabs/Module/Api.php:13 ../../Zotlabs/Module/Api.php:18
-#: ../../Zotlabs/Module/Filestorage.php:24
-#: ../../Zotlabs/Module/Filestorage.php:79
-#: ../../Zotlabs/Module/Filestorage.php:94
-#: ../../Zotlabs/Module/Filestorage.php:121 ../../Zotlabs/Module/Item.php:210
-#: ../../Zotlabs/Module/Item.php:218 ../../Zotlabs/Module/Item.php:1070
+#: ../../Zotlabs/Module/Editwebpage.php:68
+#: ../../Zotlabs/Module/Editwebpage.php:89
+#: ../../Zotlabs/Module/Editwebpage.php:104
+#: ../../Zotlabs/Module/Editwebpage.php:126 ../../Zotlabs/Module/Group.php:13
+#: ../../Zotlabs/Module/Appman.php:75 ../../Zotlabs/Module/Pdledit.php:26
+#: ../../Zotlabs/Module/Filestorage.php:23
+#: ../../Zotlabs/Module/Filestorage.php:78
+#: ../../Zotlabs/Module/Filestorage.php:93
+#: ../../Zotlabs/Module/Filestorage.php:120
#: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78
-#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Id.php:76
-#: ../../Zotlabs/Module/Like.php:181 ../../Zotlabs/Module/Invite.php:17
-#: ../../Zotlabs/Module/Invite.php:91 ../../Zotlabs/Module/Locs.php:87
-#: ../../Zotlabs/Module/Mail.php:129 ../../Zotlabs/Module/Manage.php:10
-#: ../../Zotlabs/Module/Menu.php:78 ../../Zotlabs/Module/Message.php:18
-#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Network.php:17
+#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Like.php:181
+#: ../../Zotlabs/Module/Profiles.php:203 ../../Zotlabs/Module/Profiles.php:601
+#: ../../Zotlabs/Module/Item.php:213 ../../Zotlabs/Module/Item.php:221
+#: ../../Zotlabs/Module/Item.php:1071 ../../Zotlabs/Module/Photos.php:73
+#: ../../Zotlabs/Module/Invite.php:17 ../../Zotlabs/Module/Invite.php:91
+#: ../../Zotlabs/Module/Locs.php:87 ../../Zotlabs/Module/Mail.php:121
+#: ../../Zotlabs/Module/Manage.php:10 ../../Zotlabs/Module/Menu.php:78
+#: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Mood.php:116
+#: ../../Zotlabs/Module/Network.php:15 ../../Zotlabs/Module/Channel.php:104
+#: ../../Zotlabs/Module/Channel.php:225 ../../Zotlabs/Module/Channel.php:266
#: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/New_channel.php:77
#: ../../Zotlabs/Module/New_channel.php:104
-#: ../../Zotlabs/Module/Notifications.php:70
-#: ../../Zotlabs/Module/Photos.php:75 ../../Zotlabs/Module/Page.php:35
-#: ../../Zotlabs/Module/Page.php:90 ../../Zotlabs/Module/Pdledit.php:26
-#: ../../Zotlabs/Module/Poke.php:137 ../../Zotlabs/Module/Profile.php:68
-#: ../../Zotlabs/Module/Profile.php:76 ../../Zotlabs/Module/Profiles.php:203
-#: ../../Zotlabs/Module/Profiles.php:601
-#: ../../Zotlabs/Module/Profile_photo.php:256
-#: ../../Zotlabs/Module/Profile_photo.php:269
-#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Appman.php:75
-#: ../../Zotlabs/Module/Register.php:77 ../../Zotlabs/Module/Regmod.php:21
+#: ../../Zotlabs/Module/Notifications.php:70 ../../Zotlabs/Module/Poke.php:137
+#: ../../Zotlabs/Module/Profile.php:68 ../../Zotlabs/Module/Profile.php:76
+#: ../../Zotlabs/Module/Block.php:26 ../../Zotlabs/Module/Block.php:76
+#: ../../Zotlabs/Module/Profile_photo.php:265
+#: ../../Zotlabs/Module/Profile_photo.php:278
+#: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80
+#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Editblock.php:67
+#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Register.php:77
+#: ../../Zotlabs/Module/Regmod.php:21
#: ../../Zotlabs/Module/Service_limits.php:11
-#: ../../Zotlabs/Module/Settings.php:572 ../../Zotlabs/Module/Setup.php:215
-#: ../../Zotlabs/Module/Sharedwithme.php:11
+#: ../../Zotlabs/Module/Settings.php:626 ../../Zotlabs/Module/Setup.php:215
+#: ../../Zotlabs/Module/Sharedwithme.php:11 ../../Zotlabs/Module/Thing.php:274
+#: ../../Zotlabs/Module/Thing.php:294 ../../Zotlabs/Module/Thing.php:331
#: ../../Zotlabs/Module/Sources.php:74 ../../Zotlabs/Module/Suggest.php:30
-#: ../../Zotlabs/Module/Thing.php:274 ../../Zotlabs/Module/Thing.php:294
-#: ../../Zotlabs/Module/Thing.php:331
-#: ../../Zotlabs/Module/Viewconnections.php:25
-#: ../../Zotlabs/Module/Viewconnections.php:30
-#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Webpages.php:74
-#: ../../Zotlabs/Lib/Chatroom.php:137 ../../include/items.php:3438
-#: ../../include/attach.php:141 ../../include/attach.php:189
-#: ../../include/attach.php:252 ../../include/attach.php:266
-#: ../../include/attach.php:273 ../../include/attach.php:338
-#: ../../include/attach.php:352 ../../include/attach.php:359
-#: ../../include/attach.php:437 ../../include/attach.php:895
-#: ../../include/attach.php:966 ../../include/attach.php:1118
-#: ../../include/photos.php:27
+#: ../../Zotlabs/Module/Webpages.php:73
+#: ../../Zotlabs/Module/Viewconnections.php:28
+#: ../../Zotlabs/Module/Viewconnections.php:33
+#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Api.php:13
+#: ../../Zotlabs/Module/Api.php:18 ../../Zotlabs/Lib/Chatroom.php:137
+#: ../../include/photos.php:27 ../../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:439
+#: ../../include/attach.php:901 ../../include/attach.php:972
+#: ../../include/attach.php:1124 ../../include/items.php:3448
msgid "Permission denied."
msgstr "Permís denegat."
@@ -233,9 +377,9 @@ msgstr "Permís denegat."
msgid "Not Found"
msgstr "No s'ha pogut trobar la pàgina"
-#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Block.php:79
-#: ../../Zotlabs/Module/Display.php:117 ../../Zotlabs/Module/Help.php:97
-#: ../../Zotlabs/Module/Page.php:93
+#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Display.php:118
+#: ../../Zotlabs/Module/Page.php:94 ../../Zotlabs/Module/Help.php:97
+#: ../../Zotlabs/Module/Block.php:79
msgid "Page not found."
msgstr "Pàgina no trobada."
@@ -251,13 +395,13 @@ msgstr "Autenticació remota bloquejada. Ha iniciat sessió en aquest lloc a niv
msgid "Welcome %s. Remote authentication successful."
msgstr "Benvingut %s. Autenticació remota reeixida."
-#: ../../Zotlabs/Module/Achievements.php:15 ../../Zotlabs/Module/Blocks.php:33
-#: ../../Zotlabs/Module/Connect.php:17 ../../Zotlabs/Module/Editblock.php:31
-#: ../../Zotlabs/Module/Editlayout.php:31
-#: ../../Zotlabs/Module/Editwebpage.php:33
-#: ../../Zotlabs/Module/Filestorage.php:60 ../../Zotlabs/Module/Hcard.php:12
-#: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Profile.php:20
-#: ../../Zotlabs/Module/Webpages.php:34 ../../include/channel.php:837
+#: ../../Zotlabs/Module/Achievements.php:15
+#: ../../Zotlabs/Module/Connect.php:17 ../../Zotlabs/Module/Editlayout.php:31
+#: ../../Zotlabs/Module/Editwebpage.php:32 ../../Zotlabs/Module/Hcard.php:12
+#: ../../Zotlabs/Module/Filestorage.php:59 ../../Zotlabs/Module/Layouts.php:31
+#: ../../Zotlabs/Module/Profile.php:20 ../../Zotlabs/Module/Blocks.php:33
+#: ../../Zotlabs/Module/Editblock.php:31 ../../Zotlabs/Module/Webpages.php:33
+#: ../../include/channel.php:876
msgid "Requested profile is not available."
msgstr "El perfil demanat no està disponible."
@@ -265,229 +409,6 @@ msgstr "El perfil demanat no està disponible."
msgid "Some blurb about what to do when you're new here"
msgstr "Algunes propostes sobre el que cal fer quan ets nou aquí"
-#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:152
-#: ../../Zotlabs/Module/Editblock.php:108
-msgid "Block Name"
-msgstr "Nom del Bloc"
-
-#: ../../Zotlabs/Module/Blocks.php:151 ../../include/text.php:2265
-msgid "Blocks"
-msgstr "Bloc"
-
-#: ../../Zotlabs/Module/Blocks.php:153
-msgid "Block Title"
-msgstr "Títol del bloc"
-
-#: ../../Zotlabs/Module/Blocks.php:154 ../../Zotlabs/Module/Layouts.php:188
-#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Webpages.php:198
-#: ../../include/page_widgets.php:44
-msgid "Created"
-msgstr "Creat"
-
-#: ../../Zotlabs/Module/Blocks.php:155 ../../Zotlabs/Module/Layouts.php:189
-#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Webpages.php:199
-#: ../../include/page_widgets.php:45
-msgid "Edited"
-msgstr "Editat"
-
-#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:191
-#: ../../Zotlabs/Module/Photos.php:1072 ../../Zotlabs/Module/Webpages.php:188
-#: ../../include/conversation.php:1208
-msgid "Share"
-msgstr "Compartir"
-
-#: ../../Zotlabs/Module/Blocks.php:163 ../../Zotlabs/Module/Layouts.php:195
-#: ../../Zotlabs/Module/Pubsites.php:47 ../../Zotlabs/Module/Webpages.php:193
-#: ../../include/page_widgets.php:39
-msgid "View"
-msgstr "Mostra"
-
-#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Block.php:43
-#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Wall_upload.php:33
-msgid "Channel not found."
-msgstr "Canal no trobat."
-
-#: ../../Zotlabs/Module/Cal.php:69
-msgid "Permissions denied."
-msgstr "Permís denegat."
-
-#: ../../Zotlabs/Module/Cal.php:259 ../../Zotlabs/Module/Events.php:588
-msgid "l, F j"
-msgstr "l, F j"
-
-#: ../../Zotlabs/Module/Cal.php:308 ../../Zotlabs/Module/Events.php:637
-#: ../../include/text.php:1732
-msgid "Link to Source"
-msgstr "Enllaç a la Font"
-
-#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665
-msgid "Edit Event"
-msgstr "Editar l'Esdeveniment"
-
-#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665
-msgid "Create Event"
-msgstr "Crear Esdeveniment"
-
-#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339
-#: ../../Zotlabs/Module/Events.php:666 ../../Zotlabs/Module/Events.php:673
-#: ../../Zotlabs/Module/Photos.php:949
-msgid "Previous"
-msgstr "Anterior"
-
-#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340
-#: ../../Zotlabs/Module/Events.php:667 ../../Zotlabs/Module/Events.php:674
-#: ../../Zotlabs/Module/Photos.php:958 ../../Zotlabs/Module/Setup.php:267
-msgid "Next"
-msgstr "Pròxim"
-
-#: ../../Zotlabs/Module/Cal.php:334 ../../Zotlabs/Module/Events.php:668
-#: ../../include/widgets.php:755
-msgid "Export"
-msgstr "Exporta"
-
-#: ../../Zotlabs/Module/Cal.php:337 ../../Zotlabs/Module/Events.php:671
-#: ../../include/widgets.php:756
-msgid "Import"
-msgstr "Importar"
-
-#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Chat.php:196
-#: ../../Zotlabs/Module/Chat.php:238 ../../Zotlabs/Module/Connect.php:98
-#: ../../Zotlabs/Module/Connedit.php:731 ../../Zotlabs/Module/Events.php:475
-#: ../../Zotlabs/Module/Events.php:672 ../../Zotlabs/Module/Group.php:85
-#: ../../Zotlabs/Module/Filestorage.php:162
-#: ../../Zotlabs/Module/Import.php:550
-#: ../../Zotlabs/Module/Import_items.php:120
-#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121
-#: ../../Zotlabs/Module/Mail.php:378 ../../Zotlabs/Module/Mood.php:139
-#: ../../Zotlabs/Module/Mitem.php:235 ../../Zotlabs/Module/Photos.php:677
-#: ../../Zotlabs/Module/Photos.php:1052 ../../Zotlabs/Module/Photos.php:1092
-#: ../../Zotlabs/Module/Photos.php:1210 ../../Zotlabs/Module/Pconfig.php:107
-#: ../../Zotlabs/Module/Pdledit.php:66 ../../Zotlabs/Module/Poke.php:186
-#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Rate.php:170
-#: ../../Zotlabs/Module/Admin.php:492 ../../Zotlabs/Module/Admin.php:688
-#: ../../Zotlabs/Module/Admin.php:771 ../../Zotlabs/Module/Admin.php:1032
-#: ../../Zotlabs/Module/Admin.php:1211 ../../Zotlabs/Module/Admin.php:1421
-#: ../../Zotlabs/Module/Admin.php:1648 ../../Zotlabs/Module/Admin.php:1733
-#: ../../Zotlabs/Module/Admin.php:2116 ../../Zotlabs/Module/Appman.php:126
-#: ../../Zotlabs/Module/Settings.php:590 ../../Zotlabs/Module/Settings.php:703
-#: ../../Zotlabs/Module/Settings.php:731 ../../Zotlabs/Module/Settings.php:754
-#: ../../Zotlabs/Module/Settings.php:842
-#: ../../Zotlabs/Module/Settings.php:1034 ../../Zotlabs/Module/Setup.php:312
-#: ../../Zotlabs/Module/Setup.php:353 ../../Zotlabs/Module/Sources.php:114
-#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Thing.php:316
-#: ../../Zotlabs/Module/Thing.php:362 ../../Zotlabs/Module/Xchan.php:15
-#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/widgets.php:757
-#: ../../include/widgets.php:769 ../../include/js_strings.php:22
-#: ../../view/theme/redbasic/php/config.php:99
-msgid "Submit"
-msgstr "Enviar"
-
-#: ../../Zotlabs/Module/Cal.php:341 ../../Zotlabs/Module/Events.php:675
-msgid "Today"
-msgstr "Avui"
-
-#: ../../Zotlabs/Module/Channel.php:29 ../../Zotlabs/Module/Chat.php:25
-msgid "You must be logged in to see this page."
-msgstr "Has d'estar identificat per a veure aquesta pàgina."
-
-#: ../../Zotlabs/Module/Channel.php:41
-msgid "Posts and comments"
-msgstr "Entrades i comentaris"
-
-#: ../../Zotlabs/Module/Channel.php:42
-msgid "Only posts"
-msgstr "Només entrades"
-
-#: ../../Zotlabs/Module/Channel.php:102
-msgid "Insufficient permissions. Request redirected to profile page."
-msgstr "Permisos insuficients. Petició redirigida a la pàgina del perfil."
-
-#: ../../Zotlabs/Module/Chat.php:181
-msgid "Room not found"
-msgstr "No s'ha trobat la sala"
-
-#: ../../Zotlabs/Module/Chat.php:197
-msgid "Leave Room"
-msgstr "Abandona la sala"
-
-#: ../../Zotlabs/Module/Chat.php:198
-msgid "Delete Room"
-msgstr "Esborra Sala"
-
-#: ../../Zotlabs/Module/Chat.php:199
-msgid "I am away right now"
-msgstr "Absent"
-
-#: ../../Zotlabs/Module/Chat.php:200
-msgid "I am online"
-msgstr "Estic connectat/da"
-
-#: ../../Zotlabs/Module/Chat.php:202
-msgid "Bookmark this room"
-msgstr "Fes favorit aquest xat"
-
-#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:205
-#: ../../Zotlabs/Module/Mail.php:314 ../../include/conversation.php:1176
-msgid "Please enter a link URL:"
-msgstr "Si us plau entra l'enllaç URL:"
-
-#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:258
-#: ../../Zotlabs/Module/Mail.php:383 ../../Zotlabs/Lib/ThreadItem.php:722
-#: ../../include/conversation.php:1256
-msgid "Encrypt text"
-msgstr "Text encriptat"
-
-#: ../../Zotlabs/Module/Chat.php:207 ../../Zotlabs/Module/Editblock.php:111
-#: ../../Zotlabs/Module/Editwebpage.php:147 ../../Zotlabs/Module/Mail.php:252
-#: ../../Zotlabs/Module/Mail.php:377 ../../include/conversation.php:1143
-msgid "Insert web link"
-msgstr "Insereix enllaç web"
-
-#: ../../Zotlabs/Module/Chat.php:218
-msgid "Feature disabled."
-msgstr "Funcionalitat desactivada."
-
-#: ../../Zotlabs/Module/Chat.php:232
-msgid "New Chatroom"
-msgstr "Nova sala per a Xerrar"
-
-#: ../../Zotlabs/Module/Chat.php:233
-msgid "Chatroom name"
-msgstr "Nom de la sala de xat"
-
-#: ../../Zotlabs/Module/Chat.php:234
-msgid "Expiration of chats (minutes)"
-msgstr "Expiració dels chats (minuts)"
-
-#: ../../Zotlabs/Module/Chat.php:235 ../../Zotlabs/Module/Filestorage.php:153
-#: ../../Zotlabs/Module/Photos.php:671 ../../Zotlabs/Module/Photos.php:1045
-#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:359
-#: ../../include/acl_selectors.php:283
-msgid "Permissions"
-msgstr "Permisos "
-
-#: ../../Zotlabs/Module/Chat.php:246
-#, php-format
-msgid "%1$s's Chatrooms"
-msgstr "%1$s de Xats"
-
-#: ../../Zotlabs/Module/Chat.php:251
-msgid "No chatrooms available"
-msgstr "No hi ha sales de xat disponibles"
-
-#: ../../Zotlabs/Module/Chat.php:252 ../../Zotlabs/Module/Manage.php:143
-#: ../../Zotlabs/Module/Profiles.php:778
-msgid "Create New"
-msgstr "Crear Nou"
-
-#: ../../Zotlabs/Module/Chat.php:255
-msgid "Expiration"
-msgstr "Expiració"
-
-#: ../../Zotlabs/Module/Chat.php:256
-msgid "min"
-msgstr "min"
-
#: ../../Zotlabs/Module/Chatsvc.php:117
msgid "Away"
msgstr "Absent"
@@ -496,65 +417,6 @@ msgstr "Absent"
msgid "Online"
msgstr "En connexió"
-#: ../../Zotlabs/Module/Block.php:31 ../../Zotlabs/Module/Page.php:40
-msgid "Invalid item."
-msgstr "Article invàlid."
-
-#: ../../Zotlabs/Module/Bookmarks.php:53
-msgid "Bookmark added"
-msgstr "Favorit afegit"
-
-#: ../../Zotlabs/Module/Bookmarks.php:75
-msgid "My Bookmarks"
-msgstr "Els Meus Favorits"
-
-#: ../../Zotlabs/Module/Bookmarks.php:86
-msgid "My Connections Bookmarks"
-msgstr "Les connexions dels meus Favorits"
-
-#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109
-msgid "Continue"
-msgstr "Continua"
-
-#: ../../Zotlabs/Module/Connect.php:90
-msgid "Premium Channel Setup"
-msgstr "Configuració de Canals Premium"
-
-#: ../../Zotlabs/Module/Connect.php:92
-msgid "Enable premium channel connection restrictions"
-msgstr "Habilita les restriccions de connexió del canal premium"
-
-#: ../../Zotlabs/Module/Connect.php:93
-msgid ""
-"Please enter your restrictions or conditions, such as paypal receipt, usage "
-"guidelines, etc."
-msgstr "Si us plau, introdueixi les restriccions o condicions, com ara el rebut de PayPal, les pautes d'ús, etc."
-
-#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115
-msgid ""
-"This channel may require additional steps or acknowledgement of the "
-"following conditions prior to connecting:"
-msgstr "Aquest canal pot requerir passos addicionals o reconeixement de les següents condicions abans de connectar:"
-
-#: ../../Zotlabs/Module/Connect.php:96
-msgid ""
-"Potential connections will then see the following text before proceeding:"
-msgstr "Connexions potencials veuran el següent text abans de continuar:"
-
-#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118
-msgid ""
-"By continuing, I certify that I have complied with any instructions provided"
-" on this page."
-msgstr "En continuar, certifico que he complert amb totes les instruccions proporcionades en aquesta pàgina."
-
-#: ../../Zotlabs/Module/Connect.php:106
-msgid "(No specific instructions have been provided by the channel owner.)"
-msgstr "(No s'han proporcionat instruccions específiques pel propietari del canal.)"
-
-#: ../../Zotlabs/Module/Connect.php:114
-msgid "Restricted or Premium Channel"
-msgstr "Canal Restringit o Premium"
-
#: ../../Zotlabs/Module/Connedit.php:80
msgid "Could not access contact record."
msgstr "No s'ha pogut accedir al llibre de contactes."
@@ -563,317 +425,350 @@ msgstr "No s'ha pogut accedir al llibre de contactes."
msgid "Could not locate selected profile."
msgstr "No s'ha trobat el perfil indicat."
-#: ../../Zotlabs/Module/Connedit.php:227
+#: ../../Zotlabs/Module/Connedit.php:248
msgid "Connection updated."
msgstr "S'ha actualitzat la connexió."
-#: ../../Zotlabs/Module/Connedit.php:229
+#: ../../Zotlabs/Module/Connedit.php:250
msgid "Failed to update connection record."
msgstr "No s'ha pogut actualitzar el registre de connexió."
-#: ../../Zotlabs/Module/Connedit.php:276
+#: ../../Zotlabs/Module/Connedit.php:300
msgid "is now connected to"
msgstr "Ara està conectat amb"
-#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Connedit.php:654
-#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460
-#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Api.php:89
-#: ../../Zotlabs/Module/Filestorage.php:157
-#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100
-#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158
-#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232
-#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666
-#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:459
-#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581
+#: ../../Zotlabs/Module/Connedit.php:403 ../../Zotlabs/Module/Connedit.php:685
+#: ../../Zotlabs/Module/Events.php:458 ../../Zotlabs/Module/Events.php:459
+#: ../../Zotlabs/Module/Events.php:468
+#: ../../Zotlabs/Module/Filestorage.php:156
+#: ../../Zotlabs/Module/Filestorage.php:164
+#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Photos.php:664
+#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157
+#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:159
+#: ../../Zotlabs/Module/Mitem.php:232 ../../Zotlabs/Module/Mitem.php:233
+#: ../../Zotlabs/Module/Admin.php:459 ../../Zotlabs/Module/Removeme.php:63
+#: ../../Zotlabs/Module/Settings.php:635 ../../Zotlabs/Module/Api.php:89
#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144
#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105
-#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707
+#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1708
msgid "No"
msgstr "No"
-#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Events.php:459
-#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:469
-#: ../../Zotlabs/Module/Api.php:88 ../../Zotlabs/Module/Filestorage.php:157
-#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100
-#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158
-#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232
-#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666
-#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:461
-#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581
+#: ../../Zotlabs/Module/Connedit.php:403 ../../Zotlabs/Module/Events.php:458
+#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:468
+#: ../../Zotlabs/Module/Filestorage.php:156
+#: ../../Zotlabs/Module/Filestorage.php:164
+#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Photos.php:664
+#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157
+#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:159
+#: ../../Zotlabs/Module/Mitem.php:232 ../../Zotlabs/Module/Mitem.php:233
+#: ../../Zotlabs/Module/Admin.php:461 ../../Zotlabs/Module/Removeme.php:63
+#: ../../Zotlabs/Module/Settings.php:635 ../../Zotlabs/Module/Api.php:88
#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144
#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105
-#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707
+#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1708
msgid "Yes"
msgstr "Sí"
-#: ../../Zotlabs/Module/Connedit.php:411
+#: ../../Zotlabs/Module/Connedit.php:435
msgid "Could not access address book record."
msgstr "No puc accedir al registre del contacte"
-#: ../../Zotlabs/Module/Connedit.php:425
+#: ../../Zotlabs/Module/Connedit.php:455
msgid "Refresh failed - channel is currently unavailable."
msgstr "Ha fallat la recàrrega - el canal es actualment inaccesible."
-#: ../../Zotlabs/Module/Connedit.php:440 ../../Zotlabs/Module/Connedit.php:449
-#: ../../Zotlabs/Module/Connedit.php:458 ../../Zotlabs/Module/Connedit.php:467
-#: ../../Zotlabs/Module/Connedit.php:480
+#: ../../Zotlabs/Module/Connedit.php:470 ../../Zotlabs/Module/Connedit.php:479
+#: ../../Zotlabs/Module/Connedit.php:488 ../../Zotlabs/Module/Connedit.php:497
+#: ../../Zotlabs/Module/Connedit.php:510
msgid "Unable to set address book parameters."
msgstr "No es poden ajustar els paràmetres dels contactes."
-#: ../../Zotlabs/Module/Connedit.php:503
+#: ../../Zotlabs/Module/Connedit.php:533
msgid "Connection has been removed."
msgstr "S'han eliminat les conexions."
-#: ../../Zotlabs/Module/Connedit.php:519 ../../Zotlabs/Lib/Apps.php:219
-#: ../../include/nav.php:86 ../../include/conversation.php:954
+#: ../../Zotlabs/Module/Connedit.php:549 ../../Zotlabs/Lib/Apps.php:221
+#: ../../include/nav.php:86 ../../include/conversation.php:957
msgid "View Profile"
msgstr "Veure Perfil"
-#: ../../Zotlabs/Module/Connedit.php:522
+#: ../../Zotlabs/Module/Connedit.php:552
#, php-format
msgid "View %s's profile"
msgstr "Mostra el perfil de %s"
-#: ../../Zotlabs/Module/Connedit.php:526
+#: ../../Zotlabs/Module/Connedit.php:556
msgid "Refresh Permissions"
msgstr "Recarrega els Permissos"
-#: ../../Zotlabs/Module/Connedit.php:529
+#: ../../Zotlabs/Module/Connedit.php:559
msgid "Fetch updated permissions"
msgstr "Obté els permisos actualitzats"
-#: ../../Zotlabs/Module/Connedit.php:533
+#: ../../Zotlabs/Module/Connedit.php:563
msgid "Recent Activity"
msgstr "Activitat Recent"
-#: ../../Zotlabs/Module/Connedit.php:536
+#: ../../Zotlabs/Module/Connedit.php:566
msgid "View recent posts and comments"
msgstr "Mostra les entrades i comentaris recents"
-#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1041
+#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1041
msgid "Unblock"
msgstr "Desbloquejat"
-#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1040
+#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1040
msgid "Block"
msgstr "Bloquejat"
-#: ../../Zotlabs/Module/Connedit.php:543
+#: ../../Zotlabs/Module/Connedit.php:573
msgid "Block (or Unblock) all communications with this connection"
msgstr "Boqueja (o Desbloqueja) les comunicacions amb aquesta connexió"
-#: ../../Zotlabs/Module/Connedit.php:544
+#: ../../Zotlabs/Module/Connedit.php:574
msgid "This connection is blocked!"
msgstr "Aquesta connexió està bloquejada!"
-#: ../../Zotlabs/Module/Connedit.php:548
+#: ../../Zotlabs/Module/Connedit.php:578
msgid "Unignore"
msgstr "Inhabilita"
-#: ../../Zotlabs/Module/Connedit.php:548
+#: ../../Zotlabs/Module/Connedit.php:578
#: ../../Zotlabs/Module/Connections.php:277
#: ../../Zotlabs/Module/Notifications.php:55
msgid "Ignore"
msgstr "Ignora"
-#: ../../Zotlabs/Module/Connedit.php:551
+#: ../../Zotlabs/Module/Connedit.php:581
msgid "Ignore (or Unignore) all inbound communications from this connection"
msgstr "Ignora (o Considera) les communicacions entrants d'aquesta connexió"
-#: ../../Zotlabs/Module/Connedit.php:552
+#: ../../Zotlabs/Module/Connedit.php:582
msgid "This connection is ignored!"
msgstr "Aquesta connexió es ignorada!"
-#: ../../Zotlabs/Module/Connedit.php:556
+#: ../../Zotlabs/Module/Connedit.php:586
msgid "Unarchive"
msgstr "Desarxiva"
-#: ../../Zotlabs/Module/Connedit.php:556
+#: ../../Zotlabs/Module/Connedit.php:586
msgid "Archive"
msgstr "Arxiva"
-#: ../../Zotlabs/Module/Connedit.php:559
+#: ../../Zotlabs/Module/Connedit.php:589
msgid ""
"Archive (or Unarchive) this connection - mark channel dead but keep content"
msgstr "Arxiva (o Desarxiva) aquesta connexió - Marca el canal com a mort pero manté el contingut "
-#: ../../Zotlabs/Module/Connedit.php:560
+#: ../../Zotlabs/Module/Connedit.php:590
msgid "This connection is archived!"
msgstr "Aquesta connexió està arxivada!"
-#: ../../Zotlabs/Module/Connedit.php:564
+#: ../../Zotlabs/Module/Connedit.php:594
msgid "Unhide"
msgstr "Mostra"
-#: ../../Zotlabs/Module/Connedit.php:564
+#: ../../Zotlabs/Module/Connedit.php:594
msgid "Hide"
msgstr "Amaga"
-#: ../../Zotlabs/Module/Connedit.php:567
+#: ../../Zotlabs/Module/Connedit.php:597
msgid "Hide or Unhide this connection from your other connections"
msgstr "Amaga (o Mostra) aquesta connexió de les altres connexions teves"
-#: ../../Zotlabs/Module/Connedit.php:568
+#: ../../Zotlabs/Module/Connedit.php:598
msgid "This connection is hidden!"
msgstr "Aquesta connexió està amagada!"
-#: ../../Zotlabs/Module/Connedit.php:575
+#: ../../Zotlabs/Module/Connedit.php:605
msgid "Delete this connection"
msgstr "Elimina aquesta connexió"
-#: ../../Zotlabs/Module/Connedit.php:590 ../../include/widgets.php:493
+#: ../../Zotlabs/Module/Connedit.php:620 ../../include/widgets.php:493
msgid "Me"
msgstr "Jo"
-#: ../../Zotlabs/Module/Connedit.php:591 ../../include/widgets.php:494
+#: ../../Zotlabs/Module/Connedit.php:621 ../../include/widgets.php:494
msgid "Family"
msgstr "Família"
-#: ../../Zotlabs/Module/Connedit.php:592 ../../Zotlabs/Module/Settings.php:342
-#: ../../Zotlabs/Module/Settings.php:346 ../../Zotlabs/Module/Settings.php:347
-#: ../../Zotlabs/Module/Settings.php:350 ../../Zotlabs/Module/Settings.php:361
-#: ../../include/widgets.php:495 ../../include/selectors.php:123
-#: ../../include/channel.php:389 ../../include/channel.php:390
-#: ../../include/channel.php:397
+#: ../../Zotlabs/Module/Connedit.php:622 ../../Zotlabs/Module/Settings.php:391
+#: ../../Zotlabs/Module/Settings.php:395 ../../Zotlabs/Module/Settings.php:396
+#: ../../Zotlabs/Module/Settings.php:399 ../../Zotlabs/Module/Settings.php:410
+#: ../../include/channel.php:402 ../../include/channel.php:403
+#: ../../include/channel.php:410 ../../include/selectors.php:123
+#: ../../include/widgets.php:495
msgid "Friends"
msgstr "Amics"
-#: ../../Zotlabs/Module/Connedit.php:593 ../../include/widgets.php:496
+#: ../../Zotlabs/Module/Connedit.php:623 ../../include/widgets.php:496
msgid "Acquaintances"
msgstr "Coneguts"
-#: ../../Zotlabs/Module/Connedit.php:594
+#: ../../Zotlabs/Module/Connedit.php:624
#: ../../Zotlabs/Module/Connections.php:92
#: ../../Zotlabs/Module/Connections.php:107 ../../include/widgets.php:497
msgid "All"
msgstr "Tots"
-#: ../../Zotlabs/Module/Connedit.php:654
+#: ../../Zotlabs/Module/Connedit.php:685
msgid "Approve this connection"
msgstr "Apccepta aquesta connexió"
-#: ../../Zotlabs/Module/Connedit.php:654
+#: ../../Zotlabs/Module/Connedit.php:685
msgid "Accept connection to allow communication"
msgstr "Accepta la connexió per permetre la comunicació"
-#: ../../Zotlabs/Module/Connedit.php:659
+#: ../../Zotlabs/Module/Connedit.php:690
msgid "Set Affinity"
msgstr "Ajusta l'Afinitat"
-#: ../../Zotlabs/Module/Connedit.php:662
+#: ../../Zotlabs/Module/Connedit.php:693
msgid "Set Profile"
msgstr "Ajusta el Perfil"
-#: ../../Zotlabs/Module/Connedit.php:665
+#: ../../Zotlabs/Module/Connedit.php:696
msgid "Set Affinity & Profile"
msgstr "Ajusta Afinitat i Perfil"
-#: ../../Zotlabs/Module/Connedit.php:698
+#: ../../Zotlabs/Module/Connedit.php:745
msgid "none"
msgstr "res"
-#: ../../Zotlabs/Module/Connedit.php:702 ../../include/widgets.php:614
+#: ../../Zotlabs/Module/Connedit.php:749 ../../include/widgets.php:623
msgid "Connection Default Permissions"
msgstr "Permisos per Defecte de la Connexió"
-#: ../../Zotlabs/Module/Connedit.php:702 ../../include/items.php:3926
+#: ../../Zotlabs/Module/Connedit.php:749 ../../include/items.php:3935
#, php-format
msgid "Connection: %s"
msgstr "Connexió: %s"
-#: ../../Zotlabs/Module/Connedit.php:703
+#: ../../Zotlabs/Module/Connedit.php:750
msgid "Apply these permissions automatically"
msgstr "Aplica aquests permissos automaticament"
-#: ../../Zotlabs/Module/Connedit.php:703
+#: ../../Zotlabs/Module/Connedit.php:750
msgid "Connection requests will be approved without your interaction"
msgstr "Les peticions de connexió seran aprovades sense la teva interacció"
-#: ../../Zotlabs/Module/Connedit.php:705
+#: ../../Zotlabs/Module/Connedit.php:752
msgid "This connection's primary address is"
msgstr "La primera adreça d'aqueste connexió es"
-#: ../../Zotlabs/Module/Connedit.php:706
+#: ../../Zotlabs/Module/Connedit.php:753
msgid "Available locations:"
msgstr "Localització disponible:"
-#: ../../Zotlabs/Module/Connedit.php:710
+#: ../../Zotlabs/Module/Connedit.php:757
msgid ""
"The permissions indicated on this page will be applied to all new "
"connections."
msgstr "Els permisos indicats en aquesta pàgina seran aplicats a totes les noves connexions."
-#: ../../Zotlabs/Module/Connedit.php:711
+#: ../../Zotlabs/Module/Connedit.php:758
msgid "Connection Tools"
msgstr "Eines de Connexió"
-#: ../../Zotlabs/Module/Connedit.php:713
+#: ../../Zotlabs/Module/Connedit.php:760
msgid "Slide to adjust your degree of friendship"
msgstr "Llisca per ajustar el nivell d'amistat"
-#: ../../Zotlabs/Module/Connedit.php:714 ../../Zotlabs/Module/Rate.php:159
+#: ../../Zotlabs/Module/Connedit.php:761 ../../Zotlabs/Module/Rate.php:159
#: ../../include/js_strings.php:20
msgid "Rating"
msgstr "Valora"
-#: ../../Zotlabs/Module/Connedit.php:715
+#: ../../Zotlabs/Module/Connedit.php:762
msgid "Slide to adjust your rating"
msgstr "Llisca per ajustar la valoració"
-#: ../../Zotlabs/Module/Connedit.php:716 ../../Zotlabs/Module/Connedit.php:721
+#: ../../Zotlabs/Module/Connedit.php:763 ../../Zotlabs/Module/Connedit.php:768
msgid "Optionally explain your rating"
msgstr "Opcionalment pots explicar la teva valoració"
-#: ../../Zotlabs/Module/Connedit.php:718
+#: ../../Zotlabs/Module/Connedit.php:765
msgid "Custom Filter"
msgstr "Filtre a mida"
-#: ../../Zotlabs/Module/Connedit.php:719
+#: ../../Zotlabs/Module/Connedit.php:766
msgid "Only import posts with this text"
msgstr "Importa exclusivament entrades amb aquest text"
-#: ../../Zotlabs/Module/Connedit.php:719 ../../Zotlabs/Module/Connedit.php:720
+#: ../../Zotlabs/Module/Connedit.php:766 ../../Zotlabs/Module/Connedit.php:767
msgid ""
"words one per line or #tags or /patterns/ or lang=xx, leave blank to import "
"all posts"
msgstr "paraules una per línia o #etiquetes o /patrons/ o idioma=xx, deixar en blanc per importar totes les entrades"
-#: ../../Zotlabs/Module/Connedit.php:720
+#: ../../Zotlabs/Module/Connedit.php:767
msgid "Do not import posts with this text"
msgstr "No importar entrades amb aquest text"
-#: ../../Zotlabs/Module/Connedit.php:722
+#: ../../Zotlabs/Module/Connedit.php:769
msgid "This information is public!"
msgstr "Aquesta informació es pública!"
-#: ../../Zotlabs/Module/Connedit.php:727
+#: ../../Zotlabs/Module/Connedit.php:774
msgid "Connection Pending Approval"
msgstr "Connexió Pendent d'Aprovació"
-#: ../../Zotlabs/Module/Connedit.php:730
+#: ../../Zotlabs/Module/Connedit.php:777
msgid "inherited"
msgstr "heretat"
-#: ../../Zotlabs/Module/Connedit.php:732
+#: ../../Zotlabs/Module/Connedit.php:778 ../../Zotlabs/Module/Connect.php:98
+#: ../../Zotlabs/Module/Events.php:474 ../../Zotlabs/Module/Cal.php:338
+#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:238
+#: ../../Zotlabs/Module/Group.php:85 ../../Zotlabs/Module/Appman.php:126
+#: ../../Zotlabs/Module/Pdledit.php:66
+#: ../../Zotlabs/Module/Filestorage.php:161
+#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Import.php:560
+#: ../../Zotlabs/Module/Photos.php:675 ../../Zotlabs/Module/Photos.php:1050
+#: ../../Zotlabs/Module/Photos.php:1090 ../../Zotlabs/Module/Photos.php:1208
+#: ../../Zotlabs/Module/Import_items.php:122
+#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121
+#: ../../Zotlabs/Module/Mail.php:370 ../../Zotlabs/Module/Mood.php:139
+#: ../../Zotlabs/Module/Mitem.php:235 ../../Zotlabs/Module/Admin.php:492
+#: ../../Zotlabs/Module/Admin.php:688 ../../Zotlabs/Module/Admin.php:771
+#: ../../Zotlabs/Module/Admin.php:1032 ../../Zotlabs/Module/Admin.php:1211
+#: ../../Zotlabs/Module/Admin.php:1421 ../../Zotlabs/Module/Admin.php:1648
+#: ../../Zotlabs/Module/Admin.php:1733 ../../Zotlabs/Module/Admin.php:2116
+#: ../../Zotlabs/Module/Poke.php:186 ../../Zotlabs/Module/Pconfig.php:107
+#: ../../Zotlabs/Module/Rate.php:170 ../../Zotlabs/Module/Settings.php:644
+#: ../../Zotlabs/Module/Settings.php:757 ../../Zotlabs/Module/Settings.php:806
+#: ../../Zotlabs/Module/Settings.php:832 ../../Zotlabs/Module/Settings.php:855
+#: ../../Zotlabs/Module/Settings.php:943
+#: ../../Zotlabs/Module/Settings.php:1129 ../../Zotlabs/Module/Setup.php:312
+#: ../../Zotlabs/Module/Setup.php:353 ../../Zotlabs/Module/Thing.php:316
+#: ../../Zotlabs/Module/Thing.php:362 ../../Zotlabs/Module/Sources.php:114
+#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Xchan.php:15
+#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/widgets.php:763
+#: ../../include/js_strings.php:22 ../../view/theme/redbasic/php/config.php:99
+msgid "Submit"
+msgstr "Enviar"
+
+#: ../../Zotlabs/Module/Connedit.php:779
#, php-format
msgid ""
"Please choose the profile you would like to display to %s when viewing your "
"profile securely."
msgstr "Tria el perfil que vols mostrar a %s quan es vegi el perfil segur."
-#: ../../Zotlabs/Module/Connedit.php:734
+#: ../../Zotlabs/Module/Connedit.php:781
msgid "Their Settings"
msgstr "Els seus Ajustos"
-#: ../../Zotlabs/Module/Connedit.php:735
+#: ../../Zotlabs/Module/Connedit.php:782
msgid "My Settings"
msgstr "Els Meus Ajustos"
-#: ../../Zotlabs/Module/Connedit.php:737
+#: ../../Zotlabs/Module/Connedit.php:784
msgid "Individual Permissions"
msgstr "Permisos Individuals"
-#: ../../Zotlabs/Module/Connedit.php:738
+#: ../../Zotlabs/Module/Connedit.php:785
msgid ""
"Some permissions may be inherited from your channel's <a "
"href=\"settings\"><strong>privacy settings</strong></a>, which have higher "
@@ -881,7 +776,7 @@ msgid ""
" settings here."
msgstr "Alguns permisos poden ser heretats dels teus canals <a href=\"settings\"><strong>ajustos de privacitat</strong></a>, Els quals tenen més prioritat que els ajustos individuals. <strong>No</strong> pots canviar aquests ajustos aquí."
-#: ../../Zotlabs/Module/Connedit.php:739
+#: ../../Zotlabs/Module/Connedit.php:786
msgid ""
"Some permissions may be inherited from your channel's <a "
"href=\"settings\"><strong>privacy settings</strong></a>, which have higher "
@@ -889,17 +784,121 @@ msgid ""
"they wont have any impact unless the inherited setting changes."
msgstr "Alguns permisos poden ser heretats dels teus canals <a href=\"settings\"><strong>ajustos de privacitat</strong></a>, Els quals tenen més prioritat que els ajustos individuals. <strong>Pots</strong> canviar aquests ajustos aquí pero no tindran cap impacte fins que no canviis els ajustos heretats."
-#: ../../Zotlabs/Module/Connedit.php:740
+#: ../../Zotlabs/Module/Connedit.php:787
msgid "Last update:"
msgstr "Darrera actualització:"
-#: ../../Zotlabs/Module/Directory.php:63 ../../Zotlabs/Module/Display.php:17
-#: ../../Zotlabs/Module/Photos.php:522 ../../Zotlabs/Module/Ratings.php:86
+#: ../../Zotlabs/Module/Display.php:17 ../../Zotlabs/Module/Directory.php:63
+#: ../../Zotlabs/Module/Photos.php:520 ../../Zotlabs/Module/Ratings.php:86
#: ../../Zotlabs/Module/Search.php:17
-#: ../../Zotlabs/Module/Viewconnections.php:20
+#: ../../Zotlabs/Module/Viewconnections.php:23
msgid "Public access denied."
msgstr "Accés públic denegat."
+#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:32
+#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1255
+#: ../../Zotlabs/Module/Admin.php:1561 ../../Zotlabs/Module/Thing.php:89
+#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3369
+msgid "Item not found."
+msgstr "Element no trobat."
+
+#: ../../Zotlabs/Module/Id.php:13
+msgid "First Name"
+msgstr "Nom"
+
+#: ../../Zotlabs/Module/Id.php:14
+msgid "Last Name"
+msgstr "Cognoms"
+
+#: ../../Zotlabs/Module/Id.php:15
+msgid "Nickname"
+msgstr "Àlies"
+
+#: ../../Zotlabs/Module/Id.php:16
+msgid "Full Name"
+msgstr "Nom Sencer"
+
+#: ../../Zotlabs/Module/Id.php:17 ../../Zotlabs/Module/Id.php:18
+#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047
+#: ../../include/network.php:2203
+msgid "Email"
+msgstr "Correu electrónic"
+
+#: ../../Zotlabs/Module/Id.php:19 ../../Zotlabs/Module/Id.php:20
+#: ../../Zotlabs/Module/Id.php:21 ../../Zotlabs/Lib/Apps.php:238
+msgid "Profile Photo"
+msgstr "Foto del Perfil"
+
+#: ../../Zotlabs/Module/Id.php:22
+msgid "Profile Photo 16px"
+msgstr "Foto del Perfil 16px"
+
+#: ../../Zotlabs/Module/Id.php:23
+msgid "Profile Photo 32px"
+msgstr "Foto del Perfil 32px"
+
+#: ../../Zotlabs/Module/Id.php:24
+msgid "Profile Photo 48px"
+msgstr "Foto del Perfil 48px"
+
+#: ../../Zotlabs/Module/Id.php:25
+msgid "Profile Photo 64px"
+msgstr "Foto del Perfil 64px"
+
+#: ../../Zotlabs/Module/Id.php:26
+msgid "Profile Photo 80px"
+msgstr "Foto del Perfil 80px"
+
+#: ../../Zotlabs/Module/Id.php:27
+msgid "Profile Photo 128px"
+msgstr "Foto del Perfil 128px"
+
+#: ../../Zotlabs/Module/Id.php:28
+msgid "Timezone"
+msgstr "Zona horària"
+
+#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:731
+msgid "Homepage URL"
+msgstr "URL de la pàgina d'inici"
+
+#: ../../Zotlabs/Module/Id.php:30 ../../Zotlabs/Lib/Apps.php:236
+msgid "Language"
+msgstr "Idioma"
+
+#: ../../Zotlabs/Module/Id.php:31
+msgid "Birth Year"
+msgstr "Any de Naixement"
+
+#: ../../Zotlabs/Module/Id.php:32
+msgid "Birth Month"
+msgstr "Mes de Naixement"
+
+#: ../../Zotlabs/Module/Id.php:33
+msgid "Birth Day"
+msgstr "Dia de Naixement"
+
+#: ../../Zotlabs/Module/Id.php:34
+msgid "Birthdate"
+msgstr "Aniversari"
+
+#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:454
+msgid "Gender"
+msgstr "Gènere"
+
+#: ../../Zotlabs/Module/Id.php:108 ../../include/selectors.php:49
+#: ../../include/selectors.php:66
+msgid "Male"
+msgstr "Masculí"
+
+#: ../../Zotlabs/Module/Id.php:110 ../../include/selectors.php:49
+#: ../../include/selectors.php:66
+msgid "Female"
+msgstr "Femení"
+
+#: ../../Zotlabs/Module/Follow.php:34
+msgid "Channel added."
+msgstr "S'ha afegit el canal."
+
#: ../../Zotlabs/Module/Directory.php:243
#, php-format
msgid "%d rating"
@@ -919,12 +918,12 @@ msgstr "Estatus:"
msgid "Homepage: "
msgstr "Pàgina Personal:"
-#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1183
+#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1223
msgid "Age:"
msgstr "Edat:"
-#: ../../Zotlabs/Module/Directory.php:311 ../../include/event.php:52
-#: ../../include/event.php:84 ../../include/channel.php:1027
+#: ../../Zotlabs/Module/Directory.php:311 ../../include/channel.php:1066
+#: ../../include/event.php:52 ../../include/event.php:84
#: ../../include/bb2diaspora.php:507
msgid "Location:"
msgstr "Localització:"
@@ -933,18 +932,18 @@ msgstr "Localització:"
msgid "Description:"
msgstr "Descripció:"
-#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1199
+#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1239
msgid "Hometown:"
msgstr "Ciutat Natal:"
-#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1207
+#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1247
msgid "About:"
msgstr "Sobre:"
#: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68
-#: ../../Zotlabs/Module/Suggest.php:56 ../../include/widgets.php:147
-#: ../../include/widgets.php:184 ../../include/connections.php:78
-#: ../../include/conversation.php:956 ../../include/channel.php:1012
+#: ../../Zotlabs/Module/Suggest.php:56 ../../include/channel.php:1051
+#: ../../include/connections.php:78 ../../include/conversation.php:959
+#: ../../include/widgets.php:147 ../../include/widgets.php:184
msgid "Connect"
msgstr "Connecta "
@@ -1020,38 +1019,322 @@ msgstr "De més Antic a més Nou"
msgid "No entries (some entries may be hidden)."
msgstr "Sense entrades (algunes podrien estar amagades)."
-#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:33
-#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1255
-#: ../../Zotlabs/Module/Admin.php:1561 ../../Zotlabs/Module/Thing.php:89
-#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3359
-msgid "Item not found."
-msgstr "Element no trobat."
+#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109
+msgid "Continue"
+msgstr "Continua"
+
+#: ../../Zotlabs/Module/Connect.php:90
+msgid "Premium Channel Setup"
+msgstr "Configuració de Canals Premium"
+
+#: ../../Zotlabs/Module/Connect.php:92
+msgid "Enable premium channel connection restrictions"
+msgstr "Habilita les restriccions de connexió del canal premium"
+
+#: ../../Zotlabs/Module/Connect.php:93
+msgid ""
+"Please enter your restrictions or conditions, such as paypal receipt, usage "
+"guidelines, etc."
+msgstr "Si us plau, introdueixi les restriccions o condicions, com ara el rebut de PayPal, les pautes d'ús, etc."
+
+#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115
+msgid ""
+"This channel may require additional steps or acknowledgement of the "
+"following conditions prior to connecting:"
+msgstr "Aquest canal pot requerir passos addicionals o reconeixement de les següents condicions abans de connectar:"
+
+#: ../../Zotlabs/Module/Connect.php:96
+msgid ""
+"Potential connections will then see the following text before proceeding:"
+msgstr "Connexions potencials veuran el següent text abans de continuar:"
+
+#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118
+msgid ""
+"By continuing, I certify that I have complied with any instructions provided"
+" on this page."
+msgstr "En continuar, certifico que he complert amb totes les instruccions proporcionades en aquesta pàgina."
+
+#: ../../Zotlabs/Module/Connect.php:106
+msgid "(No specific instructions have been provided by the channel owner.)"
+msgstr "(No s'han proporcionat instruccions específiques pel propietari del canal.)"
+
+#: ../../Zotlabs/Module/Connect.php:114
+msgid "Restricted or Premium Channel"
+msgstr "Canal Restringit o Premium"
+
+#: ../../Zotlabs/Module/Events.php:25
+msgid "Calendar entries imported."
+msgstr "Entrades de Calendari importades."
+
+#: ../../Zotlabs/Module/Events.php:27
+msgid "No calendar entries found."
+msgstr "No es troben entrades decalendari."
+
+#: ../../Zotlabs/Module/Events.php:104
+msgid "Event can not end before it has started."
+msgstr "L'esdeveniment ha de començar abans d'acabar."
+
+#: ../../Zotlabs/Module/Events.php:106 ../../Zotlabs/Module/Events.php:115
+#: ../../Zotlabs/Module/Events.php:135
+msgid "Unable to generate preview."
+msgstr "No s'ha pogut generar la vista prèvia."
+
+#: ../../Zotlabs/Module/Events.php:113
+msgid "Event title and start time are required."
+msgstr "Cal indicar l'inici i el final de l'esdeveniment."
+
+#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258
+msgid "Event not found."
+msgstr "No s'ha trobat l'esdeveniment."
+
+#: ../../Zotlabs/Module/Events.php:253 ../../Zotlabs/Module/Like.php:372
+#: ../../Zotlabs/Module/Tagger.php:51 ../../include/conversation.php:123
+#: ../../include/text.php:1924 ../../include/event.php:951
+msgid "event"
+msgstr "succés"
+
+#: ../../Zotlabs/Module/Events.php:448
+msgid "Edit event title"
+msgstr "Edita el títol d'esdeveniment"
+
+#: ../../Zotlabs/Module/Events.php:448
+msgid "Event title"
+msgstr "Títol esdeveniment"
+
+#: ../../Zotlabs/Module/Events.php:448 ../../Zotlabs/Module/Events.php:453
+#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116
+#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713
+#: ../../include/datetime.php:245
+msgid "Required"
+msgstr "Requerit"
+
+#: ../../Zotlabs/Module/Events.php:450
+msgid "Categories (comma-separated list)"
+msgstr "Categories (llista separada per comes)"
+
+#: ../../Zotlabs/Module/Events.php:451
+msgid "Edit Category"
+msgstr "Editar Categoria"
+
+#: ../../Zotlabs/Module/Events.php:451
+msgid "Category"
+msgstr "Categoria"
+
+#: ../../Zotlabs/Module/Events.php:454
+msgid "Edit start date and time"
+msgstr "Editar data i hora d'inici"
+
+#: ../../Zotlabs/Module/Events.php:454
+msgid "Start date and time"
+msgstr "Data i hora d'inici"
+
+#: ../../Zotlabs/Module/Events.php:455 ../../Zotlabs/Module/Events.php:458
+msgid "Finish date and time are not known or not relevant"
+msgstr "L'ora de finalització no es coneix o es irrelevant."
+
+#: ../../Zotlabs/Module/Events.php:457
+msgid "Edit finish date and time"
+msgstr "Editar la data i hora de finalització"
+
+#: ../../Zotlabs/Module/Events.php:457
+msgid "Finish date and time"
+msgstr "Data i hora de finalització"
+
+#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460
+msgid "Adjust for viewer timezone"
+msgstr "Ajusta a la zona horària del visitant."
+
+#: ../../Zotlabs/Module/Events.php:459
+msgid ""
+"Important for events that happen in a particular place. Not practical for "
+"global holidays."
+msgstr "És important per esdeveniments locals, però pels globals no és pràctic."
+
+#: ../../Zotlabs/Module/Events.php:461
+msgid "Edit Description"
+msgstr "Editar la Descripció"
+
+#: ../../Zotlabs/Module/Events.php:461 ../../Zotlabs/Module/Appman.php:117
+#: ../../Zotlabs/Module/Rbmark.php:101
+msgid "Description"
+msgstr "Descripció"
+
+#: ../../Zotlabs/Module/Events.php:463
+msgid "Edit Location"
+msgstr "Editar la localització"
+
+#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Profiles.php:477
+#: ../../Zotlabs/Module/Profiles.php:698 ../../Zotlabs/Module/Locs.php:117
+#: ../../Zotlabs/Module/Pubsites.php:41 ../../include/js_strings.php:25
+msgid "Location"
+msgstr "Localització"
+
+#: ../../Zotlabs/Module/Events.php:466 ../../Zotlabs/Module/Events.php:468
+msgid "Share this event"
+msgstr "Comparteix aquest esdeveniment"
+
+#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Photos.php:1091
+#: ../../Zotlabs/Module/Webpages.php:201 ../../Zotlabs/Lib/ThreadItem.php:719
+#: ../../include/page_widgets.php:43 ../../include/conversation.php:1198
+msgid "Preview"
+msgstr "Avanç"
+
+#: ../../Zotlabs/Module/Events.php:470 ../../include/conversation.php:1247
+msgid "Permission settings"
+msgstr "Ajustos de permisos"
+
+#: ../../Zotlabs/Module/Events.php:475
+msgid "Advanced Options"
+msgstr "Opcions Avançades"
+
+#: ../../Zotlabs/Module/Events.php:587 ../../Zotlabs/Module/Cal.php:259
+msgid "l, F j"
+msgstr "l, j \\d\\e/\\d' F"
+
+#: ../../Zotlabs/Module/Events.php:609
+msgid "Edit event"
+msgstr "Edita l'esdeveniment"
+
+#: ../../Zotlabs/Module/Events.php:611
+msgid "Delete event"
+msgstr "Esborra l'esdeveniment"
+
+#: ../../Zotlabs/Module/Events.php:636 ../../Zotlabs/Module/Cal.php:308
+#: ../../include/text.php:1712
+msgid "Link to Source"
+msgstr "Enllaç a la Font"
+
+#: ../../Zotlabs/Module/Events.php:645
+msgid "calendar"
+msgstr "calendari"
+
+#: ../../Zotlabs/Module/Events.php:664 ../../Zotlabs/Module/Cal.php:331
+msgid "Edit Event"
+msgstr "Editar l'Esdeveniment"
+
+#: ../../Zotlabs/Module/Events.php:664 ../../Zotlabs/Module/Cal.php:331
+msgid "Create Event"
+msgstr "Crear Esdeveniment"
+
+#: ../../Zotlabs/Module/Events.php:665 ../../Zotlabs/Module/Events.php:674
+#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339
+#: ../../Zotlabs/Module/Photos.php:947
+msgid "Previous"
+msgstr "Anterior"
+
+#: ../../Zotlabs/Module/Events.php:666 ../../Zotlabs/Module/Events.php:675
+#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340
+#: ../../Zotlabs/Module/Photos.php:956 ../../Zotlabs/Module/Setup.php:267
+msgid "Next"
+msgstr "Pròxim"
+
+#: ../../Zotlabs/Module/Events.php:667 ../../Zotlabs/Module/Cal.php:334
+msgid "Export"
+msgstr "Exporta"
+
+#: ../../Zotlabs/Module/Events.php:670 ../../Zotlabs/Module/Layouts.php:197
+#: ../../Zotlabs/Module/Pubsites.php:47 ../../Zotlabs/Module/Blocks.php:166
+#: ../../Zotlabs/Module/Webpages.php:200 ../../include/page_widgets.php:42
+msgid "View"
+msgstr "Mostra"
+
+#: ../../Zotlabs/Module/Events.php:671
+msgid "Month"
+msgstr ""
+
+#: ../../Zotlabs/Module/Events.php:672
+msgid "Week"
+msgstr ""
+
+#: ../../Zotlabs/Module/Events.php:673
+msgid "Day"
+msgstr ""
+
+#: ../../Zotlabs/Module/Events.php:676 ../../Zotlabs/Module/Cal.php:341
+msgid "Today"
+msgstr "Avui"
+
+#: ../../Zotlabs/Module/Events.php:707
+msgid "Event removed"
+msgstr "S'ha eliminat l'esdeveniment"
+
+#: ../../Zotlabs/Module/Events.php:710
+msgid "Failed to remove event"
+msgstr "No s'ha pogut esborrar l'esdeveniment"
+
+#: ../../Zotlabs/Module/Bookmarks.php:53
+msgid "Bookmark added"
+msgstr "Favorit afegit"
+
+#: ../../Zotlabs/Module/Bookmarks.php:75
+msgid "My Bookmarks"
+msgstr "Els Meus Favorits"
+
+#: ../../Zotlabs/Module/Bookmarks.php:86
+msgid "My Connections Bookmarks"
+msgstr "Les connexions dels meus Favorits"
-#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95
#: ../../Zotlabs/Module/Editpost.php:24 ../../Zotlabs/Module/Editlayout.php:79
-#: ../../Zotlabs/Module/Editwebpage.php:81
+#: ../../Zotlabs/Module/Editwebpage.php:80
+#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95
msgid "Item not found"
msgstr "No s'ha trobat l'element"
-#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1228
-msgid "Title (optional)"
-msgstr "Títol (opcional)"
+#: ../../Zotlabs/Module/Editpost.php:35
+msgid "Item is not editable"
+msgstr "Article no editable"
-#: ../../Zotlabs/Module/Editblock.php:133
-msgid "Edit Block"
-msgstr "Editar Bloc"
+#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:134
+msgid "Edit post"
+msgstr "Modifica l'entrada"
-#: ../../Zotlabs/Module/Common.php:14
-msgid "No channel."
-msgstr "No s'ha trobat el canal"
+#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222
+#: ../../include/nav.php:92 ../../include/conversation.php:1647
+msgid "Photos"
+msgstr "Fotos"
-#: ../../Zotlabs/Module/Common.php:43
-msgid "Common connections"
-msgstr "Connexions en comú"
+#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88
+#: ../../Zotlabs/Module/Admin.php:1406 ../../Zotlabs/Module/Settings.php:645
+#: ../../Zotlabs/Module/Settings.php:671 ../../Zotlabs/Module/Tagrm.php:15
+#: ../../Zotlabs/Module/Tagrm.php:138 ../../Zotlabs/Module/Wiki.php:166
+#: ../../Zotlabs/Module/Wiki.php:202 ../../include/conversation.php:1235
+#: ../../include/conversation.php:1274
+msgid "Cancel"
+msgstr "Cancel·la"
-#: ../../Zotlabs/Module/Common.php:48
-msgid "No connections in common."
-msgstr "No hi ha connexions en comú."
+#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31
+msgid "Invalid item."
+msgstr "Article invàlid."
+
+#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Cal.php:62
+#: ../../Zotlabs/Module/Block.php:43 ../../Zotlabs/Module/Wall_upload.php:33
+msgid "Channel not found."
+msgstr "Canal no trobat."
+
+#: ../../Zotlabs/Module/Page.php:131
+msgid ""
+"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod "
+"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,"
+" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo "
+"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse "
+"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat "
+"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
+msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
+
+#: ../../Zotlabs/Module/Filer.php:52
+msgid "Save to Folder:"
+msgstr "Guardar en la Carpeta"
+
+#: ../../Zotlabs/Module/Filer.php:52
+msgid "- select -"
+msgstr "- selecciona -"
+
+#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033
+#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32
+#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:926
+#: ../../include/text.php:938 ../../include/widgets.php:201
+msgid "Save"
+msgstr "Guardar"
#: ../../Zotlabs/Module/Connections.php:56
#: ../../Zotlabs/Module/Connections.php:161
@@ -1079,7 +1362,7 @@ msgstr "Arxivades"
#: ../../Zotlabs/Module/Connections.php:76
#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116
-#: ../../include/conversation.php:1535
+#: ../../include/conversation.php:1550
msgid "New"
msgstr "Nou"
@@ -1166,15 +1449,15 @@ msgstr "Ignorar connexió"
msgid "Recent activity"
msgstr "Activitat recent"
-#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:208
-#: ../../include/text.php:875 ../../include/nav.php:186
+#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:209
+#: ../../include/nav.php:188 ../../include/text.php:855
msgid "Connections"
msgstr "Connexions"
#: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44
-#: ../../Zotlabs/Lib/Apps.php:228 ../../include/text.php:945
-#: ../../include/text.php:957 ../../include/nav.php:165
-#: ../../include/acl_selectors.php:276
+#: ../../Zotlabs/Lib/Apps.php:230 ../../include/nav.php:167
+#: ../../include/text.php:925 ../../include/text.php:937
+#: ../../include/acl_selectors.php:274
msgid "Search"
msgstr "Cerca"
@@ -1187,7 +1470,7 @@ msgid "Connections search"
msgstr "Cerca connexions"
#: ../../Zotlabs/Module/Cover_photo.php:58
-#: ../../Zotlabs/Module/Profile_photo.php:79
+#: ../../Zotlabs/Module/Profile_photo.php:61
msgid "Image uploaded but image cropping failed."
msgstr "S'ha pujat la imatge però no s'ha pogut retallar."
@@ -1197,66 +1480,66 @@ msgid "Cover Photos"
msgstr "Fotos de Portada"
#: ../../Zotlabs/Module/Cover_photo.php:154
-#: ../../Zotlabs/Module/Profile_photo.php:133
+#: ../../Zotlabs/Module/Profile_photo.php:135
msgid "Image resize failed."
msgstr "No s'ha pogut escalar la imatge."
#: ../../Zotlabs/Module/Cover_photo.php:168
-#: ../../Zotlabs/Module/Profile_photo.php:192 ../../include/photos.php:144
+#: ../../Zotlabs/Module/Profile_photo.php:196 ../../include/photos.php:148
msgid "Unable to process image"
msgstr "incapaç de processar la imatge"
#: ../../Zotlabs/Module/Cover_photo.php:192
-#: ../../Zotlabs/Module/Profile_photo.php:217
+#: ../../Zotlabs/Module/Profile_photo.php:223
msgid "Image upload failed."
msgstr "La pujada de la imatge va fracassar."
#: ../../Zotlabs/Module/Cover_photo.php:210
-#: ../../Zotlabs/Module/Profile_photo.php:236
+#: ../../Zotlabs/Module/Profile_photo.php:242
msgid "Unable to process image."
msgstr "Incapaç de processar l'imatge."
-#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4270
+#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4283
msgid "female"
msgstr "femení"
-#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4271
+#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4284
#, php-format
msgid "%1$s updated her %2$s"
msgstr "%1$s actualitzà el seu %2$s"
-#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4272
+#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4285
msgid "male"
msgstr "masculí"
-#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4273
+#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4286
#, php-format
msgid "%1$s updated his %2$s"
msgstr "%1$s actualitzà el seu %2$s"
-#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4275
+#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4288
#, php-format
msgid "%1$s updated their %2$s"
msgstr "%1$s actualitzà els seus %2$s"
-#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1661
+#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1726
msgid "cover photo"
msgstr "Foto de la portada"
#: ../../Zotlabs/Module/Cover_photo.php:303
#: ../../Zotlabs/Module/Cover_photo.php:318
-#: ../../Zotlabs/Module/Profile_photo.php:283
-#: ../../Zotlabs/Module/Profile_photo.php:324
+#: ../../Zotlabs/Module/Profile_photo.php:300
+#: ../../Zotlabs/Module/Profile_photo.php:341
msgid "Photo not available."
msgstr "Foto no disponible."
#: ../../Zotlabs/Module/Cover_photo.php:354
-#: ../../Zotlabs/Module/Profile_photo.php:365
+#: ../../Zotlabs/Module/Profile_photo.php:387
msgid "Upload File:"
msgstr "Puja Arxiu:"
#: ../../Zotlabs/Module/Cover_photo.php:355
-#: ../../Zotlabs/Module/Profile_photo.php:366
+#: ../../Zotlabs/Module/Profile_photo.php:388
msgid "Select a profile:"
msgstr "Tria un perfil:"
@@ -1265,315 +1548,256 @@ msgid "Upload Cover Photo"
msgstr "Puja Foto de Portada"
#: ../../Zotlabs/Module/Cover_photo.php:361
-#: ../../Zotlabs/Module/Profile_photo.php:374
-#: ../../Zotlabs/Module/Settings.php:985
+#: ../../Zotlabs/Module/Profile_photo.php:396
+#: ../../Zotlabs/Module/Settings.php:1080
msgid "or"
msgstr "o"
#: ../../Zotlabs/Module/Cover_photo.php:361
-#: ../../Zotlabs/Module/Profile_photo.php:374
+#: ../../Zotlabs/Module/Profile_photo.php:396
msgid "skip this step"
msgstr "salta aquest pas"
#: ../../Zotlabs/Module/Cover_photo.php:361
-#: ../../Zotlabs/Module/Profile_photo.php:374
+#: ../../Zotlabs/Module/Profile_photo.php:396
msgid "select a photo from your photo albums"
msgstr "tria una foto del teu àlbum de fotos"
#: ../../Zotlabs/Module/Cover_photo.php:377
-#: ../../Zotlabs/Module/Profile_photo.php:390
+#: ../../Zotlabs/Module/Profile_photo.php:415
msgid "Crop Image"
msgstr "Retalla Imatge"
#: ../../Zotlabs/Module/Cover_photo.php:378
-#: ../../Zotlabs/Module/Profile_photo.php:391
+#: ../../Zotlabs/Module/Profile_photo.php:416
msgid "Please adjust the image cropping for optimum viewing."
msgstr "Si us plau, retalla la imatge per a una optima visualització"
#: ../../Zotlabs/Module/Cover_photo.php:380
-#: ../../Zotlabs/Module/Profile_photo.php:393
+#: ../../Zotlabs/Module/Profile_photo.php:418
msgid "Done Editing"
msgstr "Edició Feta"
-#: ../../Zotlabs/Module/Editpost.php:35
-msgid "Item is not editable"
-msgstr "Article no editable"
-
-#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:135
-msgid "Edit post"
-msgstr "Modifica l'entrada"
-
-#: ../../Zotlabs/Module/Events.php:26
-msgid "Calendar entries imported."
-msgstr "Entrades de Calendari importades."
-
-#: ../../Zotlabs/Module/Events.php:28
-msgid "No calendar entries found."
-msgstr "No es troben entrades decalendari."
-
-#: ../../Zotlabs/Module/Events.php:105
-msgid "Event can not end before it has started."
-msgstr "L'esdeveniment ha de començar abans d'acabar."
-
-#: ../../Zotlabs/Module/Events.php:107 ../../Zotlabs/Module/Events.php:116
-#: ../../Zotlabs/Module/Events.php:136
-msgid "Unable to generate preview."
-msgstr "No s'ha pogut generar la vista prèvia."
-
-#: ../../Zotlabs/Module/Events.php:114
-msgid "Event title and start time are required."
-msgstr "Cal indicar l'inici i el final de l'esdeveniment."
-
-#: ../../Zotlabs/Module/Events.php:134 ../../Zotlabs/Module/Events.php:259
-msgid "Event not found."
-msgstr "No s'ha trobat l'esdeveniment."
-
-#: ../../Zotlabs/Module/Events.php:254 ../../Zotlabs/Module/Like.php:373
-#: ../../Zotlabs/Module/Tagger.php:51 ../../include/event.php:949
-#: ../../include/text.php:1943 ../../include/conversation.php:123
-msgid "event"
-msgstr "succés"
-
-#: ../../Zotlabs/Module/Events.php:449
-msgid "Edit event title"
-msgstr "Edita el títol d'esdeveniment"
-
-#: ../../Zotlabs/Module/Events.php:449
-msgid "Event title"
-msgstr "Títol esdeveniment"
-
-#: ../../Zotlabs/Module/Events.php:449 ../../Zotlabs/Module/Events.php:454
-#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713
-#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116
-#: ../../include/datetime.php:245
-msgid "Required"
-msgstr "Requerit"
-
-#: ../../Zotlabs/Module/Events.php:451
-msgid "Categories (comma-separated list)"
-msgstr "Categories (llista separada per comes)"
+#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192
+msgid "webpage"
+msgstr "pàgina web"
-#: ../../Zotlabs/Module/Events.php:452
-msgid "Edit Category"
-msgstr "Editar Categoria"
+#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198
+msgid "block"
+msgstr "bloc"
-#: ../../Zotlabs/Module/Events.php:452
-msgid "Category"
-msgstr "Categoria"
+#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195
+msgid "layout"
+msgstr "disposició"
-#: ../../Zotlabs/Module/Events.php:455
-msgid "Edit start date and time"
-msgstr "Editar data i hora d'inici"
+#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201
+msgid "menu"
+msgstr "menú"
-#: ../../Zotlabs/Module/Events.php:455
-msgid "Start date and time"
-msgstr "Data i hora d'inici"
+#: ../../Zotlabs/Module/Impel.php:187
+#, php-format
+msgid "%s element installed"
+msgstr "%s element instal·lat"
-#: ../../Zotlabs/Module/Events.php:456 ../../Zotlabs/Module/Events.php:459
-msgid "Finish date and time are not known or not relevant"
-msgstr "L'ora de finalització no es coneix o es irrelevant."
+#: ../../Zotlabs/Module/Impel.php:190
+#, php-format
+msgid "%s element installation failed"
+msgstr "%s instal·lació d'element va fallar"
-#: ../../Zotlabs/Module/Events.php:458
-msgid "Edit finish date and time"
-msgstr "Editar la data i hora de finalització"
+#: ../../Zotlabs/Module/Cal.php:69
+msgid "Permissions denied."
+msgstr "Permís denegat."
-#: ../../Zotlabs/Module/Events.php:458
-msgid "Finish date and time"
-msgstr "Data i hora de finalització"
+#: ../../Zotlabs/Module/Cal.php:337
+msgid "Import"
+msgstr "Importar"
-#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:461
-msgid "Adjust for viewer timezone"
-msgstr "Ajusta a la zona horària del visitant."
+#: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49
+msgid "This site is not a directory server"
+msgstr "Aquest lloc web no és un servidor de directori"
-#: ../../Zotlabs/Module/Events.php:460
-msgid ""
-"Important for events that happen in a particular place. Not practical for "
-"global holidays."
-msgstr "És important per esdeveniments locals, però pels globals no és pràctic."
+#: ../../Zotlabs/Module/Dirsearch.php:33
+msgid "This directory server requires an access token"
+msgstr "Aquest servidor de directori requereix un token de accès"
-#: ../../Zotlabs/Module/Events.php:462
-msgid "Edit Description"
-msgstr "Editar la Descripció"
+#: ../../Zotlabs/Module/Chat.php:25 ../../Zotlabs/Module/Channel.php:28
+#: ../../Zotlabs/Module/Wiki.php:20
+msgid "You must be logged in to see this page."
+msgstr "Has d'estar identificat per a veure aquesta pàgina."
-#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Appman.php:117
-#: ../../Zotlabs/Module/Rbmark.php:101
-msgid "Description"
-msgstr "Descripció"
+#: ../../Zotlabs/Module/Chat.php:181
+msgid "Room not found"
+msgstr "No s'ha trobat la sala"
-#: ../../Zotlabs/Module/Events.php:464
-msgid "Edit Location"
-msgstr "Editar la localització"
+#: ../../Zotlabs/Module/Chat.php:197
+msgid "Leave Room"
+msgstr "Abandona la sala"
-#: ../../Zotlabs/Module/Events.php:464 ../../Zotlabs/Module/Locs.php:117
-#: ../../Zotlabs/Module/Profiles.php:477 ../../Zotlabs/Module/Profiles.php:698
-#: ../../Zotlabs/Module/Pubsites.php:41 ../../include/js_strings.php:25
-msgid "Location"
-msgstr "Localització"
+#: ../../Zotlabs/Module/Chat.php:198
+msgid "Delete Room"
+msgstr "Esborra Sala"
-#: ../../Zotlabs/Module/Events.php:467 ../../Zotlabs/Module/Events.php:469
-msgid "Share this event"
-msgstr "Comparteix aquest esdeveniment"
+#: ../../Zotlabs/Module/Chat.php:199
+msgid "I am away right now"
+msgstr "Absent"
-#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Photos.php:1093
-#: ../../Zotlabs/Module/Webpages.php:194 ../../Zotlabs/Lib/ThreadItem.php:719
-#: ../../include/conversation.php:1187 ../../include/page_widgets.php:40
-msgid "Preview"
-msgstr "Avanç"
+#: ../../Zotlabs/Module/Chat.php:200
+msgid "I am online"
+msgstr "Estic connectat/da"
-#: ../../Zotlabs/Module/Events.php:471 ../../include/conversation.php:1232
-msgid "Permission settings"
-msgstr "Ajustos de permisos"
+#: ../../Zotlabs/Module/Chat.php:202
+msgid "Bookmark this room"
+msgstr "Fes favorit aquest xat"
-#: ../../Zotlabs/Module/Events.php:476
-msgid "Advanced Options"
-msgstr "Opcions Avançades"
+#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:197
+#: ../../Zotlabs/Module/Mail.php:306 ../../include/conversation.php:1181
+msgid "Please enter a link URL:"
+msgstr "Si us plau entra l'enllaç URL:"
-#: ../../Zotlabs/Module/Events.php:610
-msgid "Edit event"
-msgstr "Edita l'esdeveniment"
+#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:250
+#: ../../Zotlabs/Module/Mail.php:375 ../../Zotlabs/Lib/ThreadItem.php:722
+#: ../../include/conversation.php:1271
+msgid "Encrypt text"
+msgstr "Text encriptat"
-#: ../../Zotlabs/Module/Events.php:612
-msgid "Delete event"
-msgstr "Esborra l'esdeveniment"
+#: ../../Zotlabs/Module/Chat.php:207 ../../Zotlabs/Module/Editwebpage.php:146
+#: ../../Zotlabs/Module/Mail.php:244 ../../Zotlabs/Module/Mail.php:369
+#: ../../Zotlabs/Module/Editblock.php:111 ../../include/conversation.php:1146
+msgid "Insert web link"
+msgstr "Insereix enllaç web"
-#: ../../Zotlabs/Module/Events.php:646
-msgid "calendar"
-msgstr "calendari"
+#: ../../Zotlabs/Module/Chat.php:218
+msgid "Feature disabled."
+msgstr "Funcionalitat desactivada."
-#: ../../Zotlabs/Module/Events.php:706
-msgid "Event removed"
-msgstr "S'ha eliminat l'esdeveniment"
+#: ../../Zotlabs/Module/Chat.php:232
+msgid "New Chatroom"
+msgstr "Nova sala per a Xerrar"
-#: ../../Zotlabs/Module/Events.php:709
-msgid "Failed to remove event"
-msgstr "No s'ha pogut esborrar l'esdeveniment"
+#: ../../Zotlabs/Module/Chat.php:233
+msgid "Chatroom name"
+msgstr "Nom de la sala de xat"
-#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:220
-#: ../../include/nav.php:92 ../../include/conversation.php:1632
-msgid "Photos"
-msgstr "Fotos"
+#: ../../Zotlabs/Module/Chat.php:234
+msgid "Expiration of chats (minutes)"
+msgstr "Expiració dels chats (minuts)"
-#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88
-#: ../../Zotlabs/Module/Admin.php:1406 ../../Zotlabs/Module/Settings.php:591
-#: ../../Zotlabs/Module/Settings.php:617 ../../Zotlabs/Module/Tagrm.php:15
-#: ../../Zotlabs/Module/Tagrm.php:138 ../../include/conversation.php:1259
-msgid "Cancel"
-msgstr "Cancel·la"
+#: ../../Zotlabs/Module/Chat.php:235 ../../Zotlabs/Module/Filestorage.php:152
+#: ../../Zotlabs/Module/Photos.php:669 ../../Zotlabs/Module/Photos.php:1043
+#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:359
+#: ../../include/acl_selectors.php:281
+msgid "Permissions"
+msgstr "Permisos "
-#: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49
-msgid "This site is not a directory server"
-msgstr "Aquest lloc web no és un servidor de directori"
+#: ../../Zotlabs/Module/Chat.php:246
+#, php-format
+msgid "%1$s's Chatrooms"
+msgstr "%1$s de Xats"
-#: ../../Zotlabs/Module/Dirsearch.php:33
-msgid "This directory server requires an access token"
-msgstr "Aquest servidor de directori requereix un token de accès"
+#: ../../Zotlabs/Module/Chat.php:251
+msgid "No chatrooms available"
+msgstr "No hi ha sales de xat disponibles"
-#: ../../Zotlabs/Module/Filer.php:52
-msgid "Save to Folder:"
-msgstr "Guardar en la Carpeta"
+#: ../../Zotlabs/Module/Chat.php:252 ../../Zotlabs/Module/Profiles.php:778
+#: ../../Zotlabs/Module/Manage.php:143
+msgid "Create New"
+msgstr "Crear Nou"
-#: ../../Zotlabs/Module/Filer.php:52
-msgid "- select -"
-msgstr "- selecciona -"
+#: ../../Zotlabs/Module/Chat.php:255
+msgid "Expiration"
+msgstr "Expiració"
-#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033
-#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32
-#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:946
-#: ../../include/text.php:958 ../../include/widgets.php:201
-msgid "Save"
-msgstr "Guardar"
+#: ../../Zotlabs/Module/Chat.php:256
+msgid "min"
+msgstr "min"
-#: ../../Zotlabs/Module/Dreport.php:27
+#: ../../Zotlabs/Module/Dreport.php:44
msgid "Invalid message"
msgstr "Missatge invàlid."
-#: ../../Zotlabs/Module/Dreport.php:59
+#: ../../Zotlabs/Module/Dreport.php:76
msgid "no results"
msgstr "sense resultats"
-#: ../../Zotlabs/Module/Dreport.php:64
-#, php-format
-msgid "Delivery report for %1$s"
-msgstr "Informe de lliurament per %1$s"
-
-#: ../../Zotlabs/Module/Dreport.php:78
+#: ../../Zotlabs/Module/Dreport.php:91
msgid "channel sync processed"
msgstr "sincronització del canal processada"
-#: ../../Zotlabs/Module/Dreport.php:82
+#: ../../Zotlabs/Module/Dreport.php:95
msgid "queued"
msgstr "Posat en cua"
-#: ../../Zotlabs/Module/Dreport.php:86
+#: ../../Zotlabs/Module/Dreport.php:99
msgid "posted"
msgstr "enviat"
-#: ../../Zotlabs/Module/Dreport.php:90
+#: ../../Zotlabs/Module/Dreport.php:103
msgid "accepted for delivery"
msgstr "acceptat per entregar"
-#: ../../Zotlabs/Module/Dreport.php:94
+#: ../../Zotlabs/Module/Dreport.php:107
msgid "updated"
msgstr "actualitzat"
-#: ../../Zotlabs/Module/Dreport.php:97
+#: ../../Zotlabs/Module/Dreport.php:110
msgid "update ignored"
msgstr "actualització ignorada"
-#: ../../Zotlabs/Module/Dreport.php:100
+#: ../../Zotlabs/Module/Dreport.php:113
msgid "permission denied"
msgstr "permís denegat"
-#: ../../Zotlabs/Module/Dreport.php:104
+#: ../../Zotlabs/Module/Dreport.php:117
msgid "recipient not found"
msgstr "Contenidor no trobat"
-#: ../../Zotlabs/Module/Dreport.php:107
+#: ../../Zotlabs/Module/Dreport.php:120
msgid "mail recalled"
msgstr "Recupera el correu"
-#: ../../Zotlabs/Module/Dreport.php:110
+#: ../../Zotlabs/Module/Dreport.php:123
msgid "duplicate mail received"
msgstr "rebut correu duplicat"
-#: ../../Zotlabs/Module/Dreport.php:113
+#: ../../Zotlabs/Module/Dreport.php:126
msgid "mail delivered"
msgstr "correu entregat"
-#: ../../Zotlabs/Module/Editlayout.php:126
-#: ../../Zotlabs/Module/Layouts.php:127 ../../Zotlabs/Module/Layouts.php:186
+#: ../../Zotlabs/Module/Dreport.php:146
+#, php-format
+msgid "Delivery report for %1$s"
+msgstr "Informe de lliurament per %1$s"
+
+#: ../../Zotlabs/Module/Dreport.php:149
+msgid "Options"
+msgstr ""
+
+#: ../../Zotlabs/Module/Dreport.php:150
+msgid "Redeliver"
+msgstr ""
+
+#: ../../Zotlabs/Module/Editlayout.php:127
+#: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188
msgid "Layout Name"
msgstr "Nom del Format Gràfic"
-#: ../../Zotlabs/Module/Editlayout.php:127
-#: ../../Zotlabs/Module/Layouts.php:130
+#: ../../Zotlabs/Module/Editlayout.php:128
+#: ../../Zotlabs/Module/Layouts.php:131
msgid "Layout Description (Optional)"
msgstr "Descripció del Format (Opcional)"
-#: ../../Zotlabs/Module/Editlayout.php:135
+#: ../../Zotlabs/Module/Editlayout.php:136
msgid "Edit Layout"
msgstr "Edita Format Gràfic"
-#: ../../Zotlabs/Module/Editwebpage.php:143
+#: ../../Zotlabs/Module/Editwebpage.php:142
msgid "Page link"
msgstr "Enllaç de la pàgina"
-#: ../../Zotlabs/Module/Editwebpage.php:169
+#: ../../Zotlabs/Module/Editwebpage.php:168
msgid "Edit Webpage"
msgstr "Edita la Pàgina Web"
-#: ../../Zotlabs/Module/Follow.php:34
-msgid "Channel added."
-msgstr "S'ha afegit el canal."
-
-#: ../../Zotlabs/Module/Acl.php:227
-msgid "network"
-msgstr "xarxa"
-
-#: ../../Zotlabs/Module/Acl.php:237
-msgid "RSS"
-msgstr "RSS"
-
#: ../../Zotlabs/Module/Group.php:24
msgid "Privacy group created."
msgstr "Creat grup privat."
@@ -1583,7 +1807,7 @@ msgid "Could not create privacy group."
msgstr "No es pot crear el grup privat."
#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141
-#: ../../include/items.php:3893
+#: ../../include/items.php:3902
msgid "Privacy group not found."
msgstr "No es troben grups privats."
@@ -1627,31 +1851,57 @@ msgstr "Tots els Canals Connectats"
msgid "Click on a channel to add or remove."
msgstr "Clic sobre el canal per afegir o esborrar."
-#: ../../Zotlabs/Module/Ffsapi.php:12
-msgid "Share content from Firefox to $Projectname"
-msgstr "Compartir contingut des de Firefox a $Projectname"
+#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53
+msgid "App installed."
+msgstr "Aplicació instal·lada."
-#: ../../Zotlabs/Module/Ffsapi.php:15
-msgid "Activate the Firefox $Projectname provider"
-msgstr "Activar el proveïdor de $Projectname a Firefox"
+#: ../../Zotlabs/Module/Appman.php:46
+msgid "Malformed app."
+msgstr "Aplicació amb errors"
-#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85
-msgid "Authorize application connection"
-msgstr "Autoritza la connexió de l'aplicació"
+#: ../../Zotlabs/Module/Appman.php:104
+msgid "Embed code"
+msgstr "Codi embegut"
-#: ../../Zotlabs/Module/Api.php:62
-msgid "Return to your app and insert this Securty Code:"
-msgstr "Torna a la teva aplicació i insereix aquest Codi de Seguretat:"
+#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107
+msgid "Edit App"
+msgstr "Edita l'Aplicació"
-#: ../../Zotlabs/Module/Api.php:72
-msgid "Please login to continue."
-msgstr "Si et plau, identifica't per continuar."
+#: ../../Zotlabs/Module/Appman.php:110
+msgid "Create App"
+msgstr "Crea l'Aplicació"
-#: ../../Zotlabs/Module/Api.php:87
-msgid ""
-"Do you want to authorize this application to access your posts and contacts,"
-" and/or create new posts for you?"
-msgstr "Vols autoritzar a aquesta aplicació l'accés a les teves entrades i contactes i/o a crear noves entrades com si fos tu mateix."
+#: ../../Zotlabs/Module/Appman.php:115
+msgid "Name of app"
+msgstr "Nom de l'Aplicació"
+
+#: ../../Zotlabs/Module/Appman.php:116
+msgid "Location (URL) of app"
+msgstr "Ubicació (URL) de l'aplicació"
+
+#: ../../Zotlabs/Module/Appman.php:118
+msgid "Photo icon URL"
+msgstr "Foto icona URL"
+
+#: ../../Zotlabs/Module/Appman.php:118
+msgid "80 x 80 pixels - optional"
+msgstr "80 x 80 pixels - opcional"
+
+#: ../../Zotlabs/Module/Appman.php:119
+msgid "Categories (optional, comma separated list)"
+msgstr "Categories (opcional, lista separada per comes)"
+
+#: ../../Zotlabs/Module/Appman.php:120
+msgid "Version ID"
+msgstr "Versió ID"
+
+#: ../../Zotlabs/Module/Appman.php:121
+msgid "Price of app"
+msgstr "Preu de l'aplicació"
+
+#: ../../Zotlabs/Module/Appman.php:122
+msgid "Location (URL) to purchase app"
+msgstr "Ubicació (URL) per comprar l'aplicació"
#: ../../Zotlabs/Module/Help.php:26
msgid "Documentation Search"
@@ -1663,8 +1913,8 @@ msgid "Help:"
msgstr "Ajuda:"
#: ../../Zotlabs/Module/Help.php:85 ../../Zotlabs/Module/Help.php:90
-#: ../../Zotlabs/Module/Layouts.php:183 ../../Zotlabs/Lib/Apps.php:223
-#: ../../include/nav.php:159
+#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Lib/Apps.php:225
+#: ../../include/nav.php:161
msgid "Help"
msgstr "Ajuda"
@@ -1672,133 +1922,565 @@ msgstr "Ajuda"
msgid "$Projectname Documentation"
msgstr "$Projectname Documentació"
-#: ../../Zotlabs/Module/Filestorage.php:88
+#: ../../Zotlabs/Module/Attach.php:13
+msgid "Item not available."
+msgstr "Article no disponible."
+
+#: ../../Zotlabs/Module/Pdledit.php:18
+msgid "Layout updated."
+msgstr "S'ha actualitzat la disposició."
+
+#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61
+msgid "Edit System Page Description"
+msgstr "Editor del Sistema de Descripció de Pàgines"
+
+#: ../../Zotlabs/Module/Pdledit.php:56
+msgid "Layout not found."
+msgstr "No s'ha trobat cap disposició de pàgina."
+
+#: ../../Zotlabs/Module/Pdledit.php:62
+msgid "Module Name:"
+msgstr "Nom del mòdul:"
+
+#: ../../Zotlabs/Module/Pdledit.php:63
+msgid "Layout Help"
+msgstr "Ajuda per la disposició de pàgina"
+
+#: ../../Zotlabs/Module/Ffsapi.php:12
+msgid "Share content from Firefox to $Projectname"
+msgstr "Compartir contingut des de Firefox a $Projectname"
+
+#: ../../Zotlabs/Module/Ffsapi.php:15
+msgid "Activate the Firefox $Projectname provider"
+msgstr "Activar el proveïdor de $Projectname a Firefox"
+
+#: ../../Zotlabs/Module/Acl.php:312
+msgid "network"
+msgstr "xarxa"
+
+#: ../../Zotlabs/Module/Acl.php:322
+msgid "RSS"
+msgstr "RSS"
+
+#: ../../Zotlabs/Module/Filestorage.php:87
msgid "Permission Denied."
msgstr "Permisos Denegats."
-#: ../../Zotlabs/Module/Filestorage.php:104
+#: ../../Zotlabs/Module/Filestorage.php:103
msgid "File not found."
msgstr "Arxiu no torbat."
-#: ../../Zotlabs/Module/Filestorage.php:147
+#: ../../Zotlabs/Module/Filestorage.php:146
msgid "Edit file permissions"
msgstr "Edita els permisos d'arxiu"
-#: ../../Zotlabs/Module/Filestorage.php:156
+#: ../../Zotlabs/Module/Filestorage.php:155
msgid "Set/edit permissions"
msgstr "Canvia/edita permisos"
-#: ../../Zotlabs/Module/Filestorage.php:157
+#: ../../Zotlabs/Module/Filestorage.php:156
msgid "Include all files and sub folders"
msgstr "Inclou tots als arxius i subdirectoris"
-#: ../../Zotlabs/Module/Filestorage.php:158
+#: ../../Zotlabs/Module/Filestorage.php:157
msgid "Return to file list"
msgstr "Tornar al llistat d'arxius"
-#: ../../Zotlabs/Module/Filestorage.php:160
+#: ../../Zotlabs/Module/Filestorage.php:159
msgid "Copy/paste this code to attach file to a post"
msgstr "Copia/enganxa aquest codi per a adjuntar un arxiu a l'entrada"
-#: ../../Zotlabs/Module/Filestorage.php:161
+#: ../../Zotlabs/Module/Filestorage.php:160
msgid "Copy/paste this URL to link file from a web page"
msgstr "Copia/enganxa aquesta URL per a enllaçar l'arxiu d'una pàgina web"
-#: ../../Zotlabs/Module/Filestorage.php:163
+#: ../../Zotlabs/Module/Filestorage.php:162
msgid "Share this file"
msgstr "Comparteix l'arxiu"
-#: ../../Zotlabs/Module/Filestorage.php:164
+#: ../../Zotlabs/Module/Filestorage.php:163
msgid "Show URL to this file"
msgstr "Mostra la URL d'aquest arxiu"
-#: ../../Zotlabs/Module/Filestorage.php:165
+#: ../../Zotlabs/Module/Filestorage.php:164
msgid "Notify your contacts about this file"
msgstr "Notifica als teus contactes aquest arxiu"
-#: ../../Zotlabs/Module/Apps.php:47 ../../include/widgets.php:102
-#: ../../include/nav.php:163
-msgid "Apps"
-msgstr "Aplicatius"
+#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2240
+msgid "Layouts"
+msgstr "Format Gràfic"
-#: ../../Zotlabs/Module/Attach.php:13
-msgid "Item not available."
-msgstr "Article no disponible."
+#: ../../Zotlabs/Module/Layouts.php:185
+msgid "Comanche page description language help"
+msgstr "Pgina d'ajuda del llenguatge Comanche"
+
+#: ../../Zotlabs/Module/Layouts.php:189
+msgid "Layout Description"
+msgstr "Descripció del Disseny de la Pàgina"
+
+#: ../../Zotlabs/Module/Layouts.php:190 ../../Zotlabs/Module/Menu.php:114
+#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Webpages.php:205
+#: ../../include/page_widgets.php:47
+msgid "Created"
+msgstr "Creat"
+
+#: ../../Zotlabs/Module/Layouts.php:191 ../../Zotlabs/Module/Menu.php:115
+#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Webpages.php:206
+#: ../../include/page_widgets.php:48
+msgid "Edited"
+msgstr "Editat"
+
+#: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Module/Photos.php:1070
+#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Webpages.php:195
+#: ../../include/conversation.php:1219
+msgid "Share"
+msgstr "Compartir"
+
+#: ../../Zotlabs/Module/Layouts.php:194
+msgid "Download PDL file"
+msgstr "Descarrega l'arxiu PDL"
+
+#: ../../Zotlabs/Module/Like.php:19
+msgid "Like/Dislike"
+msgstr "M'agrada / No m'agrada"
+
+#: ../../Zotlabs/Module/Like.php:24
+msgid "This action is restricted to members."
+msgstr "Aquesta acció està restringida als membres."
+
+#: ../../Zotlabs/Module/Like.php:25
+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 "<a href=\"rmagic\">Entra amb la teva identitat $Projectname</a> o <a href=\"register\">registra't a $Projectname</a> per continuar."
+
+#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131
+#: ../../Zotlabs/Module/Like.php:169
+msgid "Invalid request."
+msgstr "Sol·licitud invàlida."
+
+#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126
+msgid "channel"
+msgstr "canal"
+
+#: ../../Zotlabs/Module/Like.php:146
+msgid "thing"
+msgstr "cosa"
+
+#: ../../Zotlabs/Module/Like.php:192
+msgid "Channel unavailable."
+msgstr "El canal està inactiu."
+
+#: ../../Zotlabs/Module/Like.php:240
+msgid "Previous action reversed."
+msgstr "S'ha desfet l'acció anterior."
+
+#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87
+#: ../../Zotlabs/Module/Tagger.php:47 ../../include/conversation.php:120
+#: ../../include/text.php:1921
+msgid "photo"
+msgstr "foto"
+
+#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87
+#: ../../include/conversation.php:148 ../../include/text.php:1927
+msgid "status"
+msgstr "estat"
+
+#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:164
+#, php-format
+msgid "%1$s likes %2$s's %3$s"
+msgstr "%1$s agrada %2$s de %3$s"
+
+#: ../../Zotlabs/Module/Like.php:421 ../../include/conversation.php:167
+#, php-format
+msgid "%1$s doesn't like %2$s's %3$s"
+msgstr "%1$s no agrada %2$s de %3$s"
+
+#: ../../Zotlabs/Module/Like.php:423
+#, php-format
+msgid "%1$s agrees with %2$s's %3$s"
+msgstr "%1$s està d'acord amb %3$s de %2$s"
+
+#: ../../Zotlabs/Module/Like.php:425
+#, php-format
+msgid "%1$s doesn't agree with %2$s's %3$s"
+msgstr "%1$s no està d'acord amb %3$s de %2$s"
+
+#: ../../Zotlabs/Module/Like.php:427
+#, php-format
+msgid "%1$s abstains from a decision on %2$s's %3$s"
+msgstr "%1$s s'abstén en %3$s de %2$s"
+
+#: ../../Zotlabs/Module/Like.php:429
+#, php-format
+msgid "%1$s is attending %2$s's %3$s"
+msgstr "%1$s assistirà a %3$s de %2$s"
+
+#: ../../Zotlabs/Module/Like.php:431
+#, php-format
+msgid "%1$s is not attending %2$s's %3$s"
+msgstr "%1$s no assistirà a %3$s de %2$s"
+
+#: ../../Zotlabs/Module/Like.php:433
+#, php-format
+msgid "%1$s may attend %2$s's %3$s"
+msgstr "%1$s potser assistirà a %3$s de %2$s"
+
+#: ../../Zotlabs/Module/Like.php:536
+msgid "Action completed."
+msgstr "S'ha completat l'acció."
+
+#: ../../Zotlabs/Module/Like.php:537
+msgid "Thank you."
+msgstr "Gràcies."
+
+#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189
+#: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625
+msgid "Profile not found."
+msgstr "Perfil no trobat."
+
+#: ../../Zotlabs/Module/Profiles.php:44
+msgid "Profile deleted."
+msgstr "Perfil eliminat."
+
+#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104
+msgid "Profile-"
+msgstr "Perfil-"
+
+#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132
+msgid "New profile created."
+msgstr "Nou perfil creat."
+
+#: ../../Zotlabs/Module/Profiles.php:110
+msgid "Profile unavailable to clone."
+msgstr "Perfil que no es pot clonar."
+
+#: ../../Zotlabs/Module/Profiles.php:151
+msgid "Profile unavailable to export."
+msgstr "Perfil que no es pot exportar."
+
+#: ../../Zotlabs/Module/Profiles.php:256
+msgid "Profile Name is required."
+msgstr "Es requereix el Nom del Perfil."
+
+#: ../../Zotlabs/Module/Profiles.php:427
+msgid "Marital Status"
+msgstr "Estat Marital"
+
+#: ../../Zotlabs/Module/Profiles.php:431
+msgid "Romantic Partner"
+msgstr "Company/a Romàntic"
+
+#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736
+msgid "Likes"
+msgstr "Agrada"
+
+#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737
+msgid "Dislikes"
+msgstr "Desagrada"
+
+#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744
+msgid "Work/Employment"
+msgstr "Treball/Feina"
+
+#: ../../Zotlabs/Module/Profiles.php:446
+msgid "Religion"
+msgstr "Religió"
+
+#: ../../Zotlabs/Module/Profiles.php:450
+msgid "Political Views"
+msgstr "Idees Polítiques"
+
+#: ../../Zotlabs/Module/Profiles.php:458
+msgid "Sexual Preference"
+msgstr "Preferència Sexual"
+
+#: ../../Zotlabs/Module/Profiles.php:462
+msgid "Homepage"
+msgstr "Pàgina Personal"
+
+#: ../../Zotlabs/Module/Profiles.php:466
+msgid "Interests"
+msgstr "Interessos"
+
+#: ../../Zotlabs/Module/Profiles.php:470 ../../Zotlabs/Module/Locs.php:118
+#: ../../Zotlabs/Module/Admin.php:1224
+msgid "Address"
+msgstr "Adreça"
+
+#: ../../Zotlabs/Module/Profiles.php:560
+msgid "Profile updated."
+msgstr "Perfil actualitzat."
+
+#: ../../Zotlabs/Module/Profiles.php:644
+msgid "Hide your connections list from viewers of this profile"
+msgstr "Amaga dels curiosos la teva llista de connexions d'aquest perfil"
+
+#: ../../Zotlabs/Module/Profiles.php:686
+msgid "Edit Profile Details"
+msgstr "Edita els Detalls del Perfil"
+
+#: ../../Zotlabs/Module/Profiles.php:688
+msgid "View this profile"
+msgstr "Veure aquest perfil"
+
+#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771
+#: ../../include/channel.php:998
+msgid "Edit visibility"
+msgstr "Editar visibilitat"
+
+#: ../../Zotlabs/Module/Profiles.php:690
+msgid "Profile Tools"
+msgstr "Eines per Perfils"
+
+#: ../../Zotlabs/Module/Profiles.php:691
+msgid "Change cover photo"
+msgstr "Canviar la foto de portada"
+
+#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:969
+msgid "Change profile photo"
+msgstr "Canviar la foto del perfil"
+
+#: ../../Zotlabs/Module/Profiles.php:693
+msgid "Create a new profile using these settings"
+msgstr "Crea un perfil nou amb aquests ajustos"
+
+#: ../../Zotlabs/Module/Profiles.php:694
+msgid "Clone this profile"
+msgstr "Clonar aquest perfil"
+
+#: ../../Zotlabs/Module/Profiles.php:695
+msgid "Delete this profile"
+msgstr "Elimina aquest perfil"
+
+#: ../../Zotlabs/Module/Profiles.php:696
+msgid "Add profile things"
+msgstr "Afegeix coses al perfil"
+
+#: ../../Zotlabs/Module/Profiles.php:697 ../../include/conversation.php:1541
+#: ../../include/widgets.php:105
+msgid "Personal"
+msgstr "Personal"
+
+#: ../../Zotlabs/Module/Profiles.php:699
+msgid "Relation"
+msgstr "Relació"
+
+#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48
+msgid "Miscellaneous"
+msgstr "Miscelania"
+
+#: ../../Zotlabs/Module/Profiles.php:702
+msgid "Import profile from file"
+msgstr "Importa perfil des d'un arxiu"
+
+#: ../../Zotlabs/Module/Profiles.php:703
+msgid "Export profile to file"
+msgstr "Exporta perfil a un arxiu"
+
+#: ../../Zotlabs/Module/Profiles.php:704
+msgid "Your gender"
+msgstr "El teu gènere"
+
+#: ../../Zotlabs/Module/Profiles.php:705
+msgid "Marital status"
+msgstr "Estat marital"
+
+#: ../../Zotlabs/Module/Profiles.php:706
+msgid "Sexual preference"
+msgstr "Preferència sexual"
+
+#: ../../Zotlabs/Module/Profiles.php:709
+msgid "Profile name"
+msgstr "Nom del perfil"
+
+#: ../../Zotlabs/Module/Profiles.php:711
+msgid "This is your default profile."
+msgstr "Aquest es el teu perfil per defecte"
+
+#: ../../Zotlabs/Module/Profiles.php:713
+msgid "Your full name"
+msgstr "El teu nom complet"
+
+#: ../../Zotlabs/Module/Profiles.php:714
+msgid "Title/Description"
+msgstr "Títol/Descripció"
+
+#: ../../Zotlabs/Module/Profiles.php:717
+msgid "Street address"
+msgstr "Carrer"
+
+#: ../../Zotlabs/Module/Profiles.php:718
+msgid "Locality/City"
+msgstr "Població/Ciutat"
+
+#: ../../Zotlabs/Module/Profiles.php:719
+msgid "Region/State"
+msgstr "Regió/Estat"
+
+#: ../../Zotlabs/Module/Profiles.php:720
+msgid "Postal/Zip code"
+msgstr "Codi Postal"
+
+#: ../../Zotlabs/Module/Profiles.php:721
+msgid "Country"
+msgstr "País"
-#: ../../Zotlabs/Module/Import.php:32
+#: ../../Zotlabs/Module/Profiles.php:726
+msgid "Who (if applicable)"
+msgstr "Qui (si es aplicable)"
+
+#: ../../Zotlabs/Module/Profiles.php:726
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+msgstr "Examples: cathy123, Cathy Williams, cathy@example.com"
+
+#: ../../Zotlabs/Module/Profiles.php:727
+msgid "Since (date)"
+msgstr "Des de (data)"
+
+#: ../../Zotlabs/Module/Profiles.php:730
+msgid "Tell us about yourself"
+msgstr "Quelcom sobre tu"
+
+#: ../../Zotlabs/Module/Profiles.php:732
+msgid "Hometown"
+msgstr "Ciutat Natal"
+
+#: ../../Zotlabs/Module/Profiles.php:733
+msgid "Political views"
+msgstr "Idees polítiques"
+
+#: ../../Zotlabs/Module/Profiles.php:734
+msgid "Religious views"
+msgstr "Creences religioses"
+
+#: ../../Zotlabs/Module/Profiles.php:735
+msgid "Keywords used in directory listings"
+msgstr "Paraules clau emprades en els llistats de directoris"
+
+#: ../../Zotlabs/Module/Profiles.php:735
+msgid "Example: fishing photography software"
+msgstr "Exemple: software de fotografia submarina"
+
+#: ../../Zotlabs/Module/Profiles.php:738
+msgid "Musical interests"
+msgstr "Interessos Musicals"
+
+#: ../../Zotlabs/Module/Profiles.php:739
+msgid "Books, literature"
+msgstr "Llibres, literatura"
+
+#: ../../Zotlabs/Module/Profiles.php:740
+msgid "Television"
+msgstr "Televisió"
+
+#: ../../Zotlabs/Module/Profiles.php:741
+msgid "Film/Dance/Culture/Entertainment"
+msgstr "Pel·lícules/Dansa/Cultura/Entreteniment"
+
+#: ../../Zotlabs/Module/Profiles.php:742
+msgid "Hobbies/Interests"
+msgstr "Aficions/Interessos"
+
+#: ../../Zotlabs/Module/Profiles.php:743
+msgid "Love/Romance"
+msgstr "Amor/Romace"
+
+#: ../../Zotlabs/Module/Profiles.php:745
+msgid "School/Education"
+msgstr "Escola/Educació"
+
+#: ../../Zotlabs/Module/Profiles.php:746
+msgid "Contact information and social networks"
+msgstr "Informació de contacte i xarxes socials"
+
+#: ../../Zotlabs/Module/Profiles.php:747
+msgid "My other channels"
+msgstr "Els meus altres canals"
+
+#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:994
+msgid "Profile Image"
+msgstr "Imatge del Perfil"
+
+#: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:88
+#: ../../include/channel.php:976
+msgid "Edit Profiles"
+msgstr "Editar Perfils"
+
+#: ../../Zotlabs/Module/Import.php:33
#, php-format
msgid "Your service plan only allows %d channels."
msgstr "El teu paquet de serveis només admet %d canals."
-#: ../../Zotlabs/Module/Import.php:70 ../../Zotlabs/Module/Import_items.php:42
+#: ../../Zotlabs/Module/Import.php:71 ../../Zotlabs/Module/Import_items.php:42
msgid "Nothing to import."
msgstr "No hi ha res a importar."
-#: ../../Zotlabs/Module/Import.php:94 ../../Zotlabs/Module/Import_items.php:66
+#: ../../Zotlabs/Module/Import.php:95 ../../Zotlabs/Module/Import_items.php:66
msgid "Unable to download data from old server"
msgstr "No s'han pogut descarregar les dades del servidor antic"
-#: ../../Zotlabs/Module/Import.php:100
+#: ../../Zotlabs/Module/Import.php:101
#: ../../Zotlabs/Module/Import_items.php:72
msgid "Imported file is empty."
msgstr "El fitxer importat està buit."
-#: ../../Zotlabs/Module/Import.php:122
-#: ../../Zotlabs/Module/Import_items.php:86
+#: ../../Zotlabs/Module/Import.php:123
+#: ../../Zotlabs/Module/Import_items.php:88
#, php-format
msgid "Warning: Database versions differ by %1$d updates."
msgstr "Atenció: Les versions de la Base de Dades difereixen en %1$d actualitzacions."
-#: ../../Zotlabs/Module/Import.php:150 ../../include/import.php:86
+#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107
msgid "Cloned channel not found. Import failed."
msgstr "No s'ha pogut importar el canal perquè el canal clonat no s'ha trobat."
-#: ../../Zotlabs/Module/Import.php:160
+#: ../../Zotlabs/Module/Import.php:163
msgid "No channel. Import failed."
msgstr "Sense canal. No s'ha pogut importar."
-#: ../../Zotlabs/Module/Import.php:510
+#: ../../Zotlabs/Module/Import.php:520
#: ../../include/Import/import_diaspora.php:142
msgid "Import completed."
msgstr "S'ha completat la importació."
-#: ../../Zotlabs/Module/Import.php:532
+#: ../../Zotlabs/Module/Import.php:542
msgid "You must be logged in to use this feature."
msgstr "Has d'estar registrat per fer servir aquesta funcionalitat."
-#: ../../Zotlabs/Module/Import.php:537
+#: ../../Zotlabs/Module/Import.php:547
msgid "Import Channel"
msgstr "Importa un canal"
-#: ../../Zotlabs/Module/Import.php:538
+#: ../../Zotlabs/Module/Import.php:548
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 "Empra aquest formulari per importar un canal existent en un altre servidor/concentrador. Pots recuperar el canal des de l'antic servidor/concentrador via la xarxa o mitjançant un fitxer d'exportació"
-#: ../../Zotlabs/Module/Import.php:539
-#: ../../Zotlabs/Module/Import_items.php:119
+#: ../../Zotlabs/Module/Import.php:549
+#: ../../Zotlabs/Module/Import_items.php:121
msgid "File to Upload"
msgstr "Fitxer a pujar"
-#: ../../Zotlabs/Module/Import.php:540
+#: ../../Zotlabs/Module/Import.php:550
msgid "Or provide the old server/hub details"
msgstr "O proveeix els detalls de l'antic servidor/node"
-#: ../../Zotlabs/Module/Import.php:541
+#: ../../Zotlabs/Module/Import.php:551
msgid "Your old identity address (xyz@example.com)"
msgstr "La teva adreça de canal antiga. El format és canal@exemple.org"
-#: ../../Zotlabs/Module/Import.php:542
+#: ../../Zotlabs/Module/Import.php:552
msgid "Your old login email address"
msgstr "La teva adreça de correu electrònic antiga"
-#: ../../Zotlabs/Module/Import.php:543
+#: ../../Zotlabs/Module/Import.php:553
msgid "Your old login password"
msgstr "La teva contrasenya antiga"
-#: ../../Zotlabs/Module/Import.php:544
+#: ../../Zotlabs/Module/Import.php:554
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"
@@ -1806,304 +2488,369 @@ msgid ""
"primary location for files, photos, and media."
msgstr "Per a qualsevol de les opcions, escull si vols fer primària l'adreça d'aquest node o mantenir l'anterior com a primària. Podràs penjar entrades des de totes dues adreces, però per als fitxers, imatges i altres en cal una de primària."
-#: ../../Zotlabs/Module/Import.php:545
+#: ../../Zotlabs/Module/Import.php:555
msgid "Make this hub my primary location"
msgstr "Fes d'aquest node la meva ubicació primària"
-#: ../../Zotlabs/Module/Import.php:546
+#: ../../Zotlabs/Module/Import.php:556
msgid ""
"Import existing posts if possible (experimental - limited by available "
"memory"
msgstr "Importa les entrades existents si es possible (experimental - limitat per la memòria disponible"
-#: ../../Zotlabs/Module/Import.php:547
+#: ../../Zotlabs/Module/Import.php:557
msgid ""
"This process may take several minutes to complete. Please submit the form "
"only once and leave this page open until finished."
msgstr "Aquest procès pot trigar minuts en completar. Si et plau envia el formulari només una vegada i manté aquesta pàgina oberta fins que finalitzi."
-#: ../../Zotlabs/Module/Item.php:178
+#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82
+#: ../../Zotlabs/Module/Siteinfo.php:48
+msgid "$Projectname"
+msgstr "$Projectname"
+
+#: ../../Zotlabs/Module/Home.php:92
+#, php-format
+msgid "Welcome to %s"
+msgstr "Benvingut a %s"
+
+#: ../../Zotlabs/Module/Item.php:179
msgid "Unable to locate original post."
msgstr "No s'ha pogut trobar l'entrada original."
-#: ../../Zotlabs/Module/Item.php:427
+#: ../../Zotlabs/Module/Item.php:432
msgid "Empty post discarded."
msgstr "S'ha descartat l'entrada perquè no té contingut."
-#: ../../Zotlabs/Module/Item.php:467
+#: ../../Zotlabs/Module/Item.php:472
msgid "Executable content type not permitted to this channel."
msgstr "No està permès el contingut de tipus executable en aquest canal."
-#: ../../Zotlabs/Module/Item.php:847
+#: ../../Zotlabs/Module/Item.php:856
msgid "Duplicate post suppressed."
msgstr "Publicació duplicada s'ha suprimit."
-#: ../../Zotlabs/Module/Item.php:977
+#: ../../Zotlabs/Module/Item.php:989
msgid "System error. Post not saved."
msgstr "Hi ha hagut un error del sistema. L'entrada no s'ha desat."
-#: ../../Zotlabs/Module/Item.php:1241
+#: ../../Zotlabs/Module/Item.php:1242
msgid "Unable to obtain post information from database."
msgstr "No s'ha pogut obtenir informació de l'entrada a la base de dades."
-#: ../../Zotlabs/Module/Item.php:1248
+#: ../../Zotlabs/Module/Item.php:1249
#, php-format
msgid "You have reached your limit of %1$.0f top level posts."
msgstr "Has assolit el teu límit de %1$.0f entrades (descomptant comentaris)."
-#: ../../Zotlabs/Module/Item.php:1255
+#: ../../Zotlabs/Module/Item.php:1256
#, php-format
msgid "You have reached your limit of %1$.0f webpages."
msgstr "Has assolit el teu limit de %1$.0f pàgines web."
-#: ../../Zotlabs/Module/Layouts.php:181 ../../include/text.php:2267
-msgid "Layouts"
-msgstr "Format Gràfic"
+#: ../../Zotlabs/Module/Photos.php:82
+msgid "Page owner information could not be retrieved."
+msgstr "La informació del propietari de la pàgina no va poder ser recuperada"
-#: ../../Zotlabs/Module/Layouts.php:183
-msgid "Comanche page description language help"
-msgstr "Pgina d'ajuda del llenguatge Comanche"
+#: ../../Zotlabs/Module/Photos.php:97 ../../Zotlabs/Module/Photos.php:741
+#: ../../Zotlabs/Module/Profile_photo.php:115
+#: ../../Zotlabs/Module/Profile_photo.php:212
+#: ../../Zotlabs/Module/Profile_photo.php:311
+#: ../../include/photo/photo_driver.php:718
+msgid "Profile Photos"
+msgstr "Fotos del Perfil"
-#: ../../Zotlabs/Module/Layouts.php:187
-msgid "Layout Description"
-msgstr "Descripció del Disseny de la Pàgina"
+#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:147
+msgid "Album not found."
+msgstr "Àlbum no trobat"
-#: ../../Zotlabs/Module/Layouts.php:192
-msgid "Download PDL file"
-msgstr "Descarrega l'arxiu PDL"
+#: ../../Zotlabs/Module/Photos.php:130
+msgid "Delete Album"
+msgstr "Esborra Àlbum"
-#: ../../Zotlabs/Module/Home.php:61 ../../Zotlabs/Module/Home.php:69
-#: ../../Zotlabs/Module/Siteinfo.php:65
-msgid "$Projectname"
-msgstr "$Projectname"
+#: ../../Zotlabs/Module/Photos.php:151
+msgid ""
+"Multiple storage folders exist with this album name, but within different "
+"directories. Please remove the desired folder or folders using the Files "
+"manager"
+msgstr "Existeixen moltes carpetes de emmagatzemament amb aquest nom d'àlbum, però en diferents directoris. Si us plau esborra la carpeta o carpetes amb el gestor d'arxius."
-#: ../../Zotlabs/Module/Home.php:79
+#: ../../Zotlabs/Module/Photos.php:208 ../../Zotlabs/Module/Photos.php:1051
+msgid "Delete Photo"
+msgstr "Esborra Foto"
+
+#: ../../Zotlabs/Module/Photos.php:531
+msgid "No photos selected"
+msgstr "No has seleccionat fotos"
+
+#: ../../Zotlabs/Module/Photos.php:580
+msgid "Access to this item is restricted."
+msgstr "L'accés a aquest element esta restringit."
+
+#: ../../Zotlabs/Module/Photos.php:619
#, php-format
-msgid "Welcome to %s"
-msgstr "Benvingut a %s"
+msgid "%1$.2f MB of %2$.2f MB photo storage used."
+msgstr "S'estan fent servir %1$.2f MB de %2$.2f MB de l'espai per a imatges."
-#: ../../Zotlabs/Module/Id.php:13
-msgid "First Name"
-msgstr "Nom"
+#: ../../Zotlabs/Module/Photos.php:622
+#, php-format
+msgid "%1$.2f MB photo storage used."
+msgstr "S'estan fent servir %1$.2f MB de l'espai per a imatges."
-#: ../../Zotlabs/Module/Id.php:14
-msgid "Last Name"
-msgstr "Cognoms"
+#: ../../Zotlabs/Module/Photos.php:658
+msgid "Upload Photos"
+msgstr "Puja imatges"
-#: ../../Zotlabs/Module/Id.php:15
-msgid "Nickname"
-msgstr "Àlies"
+#: ../../Zotlabs/Module/Photos.php:662
+msgid "Enter an album name"
+msgstr "Escriu el nom del àlbum"
-#: ../../Zotlabs/Module/Id.php:16
-msgid "Full Name"
-msgstr "Nom Sencer"
+#: ../../Zotlabs/Module/Photos.php:663
+msgid "or select an existing album (doubleclick)"
+msgstr "o bé fes doble clic a un d'existent"
-#: ../../Zotlabs/Module/Id.php:17 ../../Zotlabs/Module/Id.php:18
-#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047
-#: ../../include/network.php:2151 ../../boot.php:1705
-msgid "Email"
-msgstr "Correu electrónic"
+#: ../../Zotlabs/Module/Photos.php:664
+msgid "Create a status post for this upload"
+msgstr "Genera una entrada a partir de la pujada"
-#: ../../Zotlabs/Module/Id.php:19 ../../Zotlabs/Module/Id.php:20
-#: ../../Zotlabs/Module/Id.php:21 ../../Zotlabs/Lib/Apps.php:236
-msgid "Profile Photo"
-msgstr "Foto del Perfil"
+#: ../../Zotlabs/Module/Photos.php:665
+msgid "Caption (optional):"
+msgstr "Subtítol (opcional):"
-#: ../../Zotlabs/Module/Id.php:22
-msgid "Profile Photo 16px"
-msgstr "Foto del Perfil 16px"
+#: ../../Zotlabs/Module/Photos.php:666
+msgid "Description (optional):"
+msgstr "Descripció (opcional):"
-#: ../../Zotlabs/Module/Id.php:23
-msgid "Profile Photo 32px"
-msgstr "Foto del Perfil 32px"
+#: ../../Zotlabs/Module/Photos.php:693
+msgid "Album name could not be decoded"
+msgstr "No s'ha pogut descodificar el nom de l'àlbum"
-#: ../../Zotlabs/Module/Id.php:24
-msgid "Profile Photo 48px"
-msgstr "Foto del Perfil 48px"
+#: ../../Zotlabs/Module/Photos.php:741
+msgid "Contact Photos"
+msgstr "Imatges de contactes"
-#: ../../Zotlabs/Module/Id.php:25
-msgid "Profile Photo 64px"
-msgstr "Foto del Perfil 64px"
+#: ../../Zotlabs/Module/Photos.php:764
+msgid "Show Newest First"
+msgstr "Ordena de més nou a més antic"
-#: ../../Zotlabs/Module/Id.php:26
-msgid "Profile Photo 80px"
-msgstr "Foto del Perfil 80px"
+#: ../../Zotlabs/Module/Photos.php:766
+msgid "Show Oldest First"
+msgstr "Ordena de més antic a més nou"
-#: ../../Zotlabs/Module/Id.php:27
-msgid "Profile Photo 128px"
-msgstr "Foto del Perfil 128px"
+#: ../../Zotlabs/Module/Photos.php:790 ../../Zotlabs/Module/Photos.php:1329
+#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1593
+msgid "View Photo"
+msgstr "Mostra la imatge"
-#: ../../Zotlabs/Module/Id.php:28
-msgid "Timezone"
-msgstr "Zona horària"
+#: ../../Zotlabs/Module/Photos.php:821
+#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1610
+msgid "Edit Album"
+msgstr "Modifica l'àlbum"
-#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:731
-msgid "Homepage URL"
-msgstr "URL de la pàgina d'inici"
+#: ../../Zotlabs/Module/Photos.php:868
+msgid "Permission denied. Access to this item may be restricted."
+msgstr "S'ha denegat el permís. Pot ser que l'accés estigui restringit."
-#: ../../Zotlabs/Module/Id.php:30 ../../Zotlabs/Lib/Apps.php:234
-msgid "Language"
-msgstr "Idioma"
+#: ../../Zotlabs/Module/Photos.php:870
+msgid "Photo not available"
+msgstr "La imatge no està disponible"
-#: ../../Zotlabs/Module/Id.php:31
-msgid "Birth Year"
-msgstr "Any de Naixement"
+#: ../../Zotlabs/Module/Photos.php:928
+msgid "Use as profile photo"
+msgstr "Fes-la imatge de perfil"
-#: ../../Zotlabs/Module/Id.php:32
-msgid "Birth Month"
-msgstr "Mes de Naixement"
+#: ../../Zotlabs/Module/Photos.php:929
+msgid "Use as cover photo"
+msgstr "Emprar com a foto de portada"
-#: ../../Zotlabs/Module/Id.php:33
-msgid "Birth Day"
-msgstr "Dia de Naixement"
+#: ../../Zotlabs/Module/Photos.php:936
+msgid "Private Photo"
+msgstr "Imatge privada"
-#: ../../Zotlabs/Module/Id.php:34
-msgid "Birthdate"
-msgstr "Aniversari"
+#: ../../Zotlabs/Module/Photos.php:951
+msgid "View Full Size"
+msgstr "Mostra a mida completa"
-#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:454
-msgid "Gender"
-msgstr "Gènere"
+#: ../../Zotlabs/Module/Photos.php:996 ../../Zotlabs/Module/Admin.php:1437
+#: ../../Zotlabs/Module/Tagrm.php:137
+msgid "Remove"
+msgstr "Esborra"
-#: ../../Zotlabs/Module/Id.php:108 ../../include/selectors.php:49
-#: ../../include/selectors.php:66
-msgid "Male"
-msgstr "Masculí"
+#: ../../Zotlabs/Module/Photos.php:1030
+msgid "Edit photo"
+msgstr "Modifica la imatge"
-#: ../../Zotlabs/Module/Id.php:110 ../../include/selectors.php:49
-#: ../../include/selectors.php:66
-msgid "Female"
-msgstr "Femení"
+#: ../../Zotlabs/Module/Photos.php:1032
+msgid "Rotate CW (right)"
+msgstr "Tomba cap a la dreta"
-#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192
-msgid "webpage"
-msgstr "pàgina web"
+#: ../../Zotlabs/Module/Photos.php:1033
+msgid "Rotate CCW (left)"
+msgstr "Tomba cap a l'esquerra"
-#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198
-msgid "block"
-msgstr "bloc"
+#: ../../Zotlabs/Module/Photos.php:1036
+msgid "Enter a new album name"
+msgstr "Escriu el nom del nou àlbum"
-#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195
-msgid "layout"
-msgstr "disposició"
+#: ../../Zotlabs/Module/Photos.php:1037
+msgid "or select an existing one (doubleclick)"
+msgstr "o bé fes doble clic a un d'existent"
-#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201
-msgid "menu"
-msgstr "menú"
+#: ../../Zotlabs/Module/Photos.php:1040
+msgid "Caption"
+msgstr "Llegenda"
-#: ../../Zotlabs/Module/Impel.php:196
-#, php-format
-msgid "%s element installed"
-msgstr "%s element instal·lat"
+#: ../../Zotlabs/Module/Photos.php:1042
+msgid "Add a Tag"
+msgstr "Afegeix una etiqueta"
-#: ../../Zotlabs/Module/Impel.php:199
-#, php-format
-msgid "%s element installation failed"
-msgstr "%s instal·lació d'element va fallar"
+#: ../../Zotlabs/Module/Photos.php:1046
+msgid "Example: @bob, @Barbara_Jensen, @jim@example.com"
+msgstr "Exemple: @joan, @Paula_Peris, @mar@exemple.org"
-#: ../../Zotlabs/Module/Like.php:19
-msgid "Like/Dislike"
-msgstr "M'agrada / No m'agrada"
+#: ../../Zotlabs/Module/Photos.php:1049
+msgid "Flag as adult in album view"
+msgstr "Marca com a contingut adult"
-#: ../../Zotlabs/Module/Like.php:24
-msgid "This action is restricted to members."
-msgstr "Aquesta acció està restringida als membres."
+#: ../../Zotlabs/Module/Photos.php:1068 ../../Zotlabs/Lib/ThreadItem.php:261
+msgid "I like this (toggle)"
+msgstr "M'agrada això (canvia)"
-#: ../../Zotlabs/Module/Like.php:25
-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 "<a href=\"rmagic\">Entra amb la teva identitat $Projectname</a> o <a href=\"register\">registra't a $Projectname</a> per continuar."
+#: ../../Zotlabs/Module/Photos.php:1069 ../../Zotlabs/Lib/ThreadItem.php:262
+msgid "I don't like this (toggle)"
+msgstr "No m'agrada això (canvia)"
-#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131
-#: ../../Zotlabs/Module/Like.php:169
-msgid "Invalid request."
-msgstr "Sol·licitud invàlida."
+#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:397
+#: ../../include/conversation.php:743
+msgid "Please wait"
+msgstr "Si us plau, espera"
-#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126
-msgid "channel"
-msgstr "canal"
+#: ../../Zotlabs/Module/Photos.php:1087 ../../Zotlabs/Module/Photos.php:1205
+#: ../../Zotlabs/Lib/ThreadItem.php:707
+msgid "This is you"
+msgstr "Ets tú"
-#: ../../Zotlabs/Module/Like.php:146
-msgid "thing"
-msgstr "cosa"
+#: ../../Zotlabs/Module/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207
+#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6
+msgid "Comment"
+msgstr "Comentari"
-#: ../../Zotlabs/Module/Like.php:192
-msgid "Channel unavailable."
-msgstr "El canal està inactiu."
+#: ../../Zotlabs/Module/Photos.php:1105 ../../include/conversation.php:577
+msgctxt "title"
+msgid "Likes"
+msgstr "Agrada"
-#: ../../Zotlabs/Module/Like.php:240
-msgid "Previous action reversed."
-msgstr "S'ha desfet l'acció anterior."
+#: ../../Zotlabs/Module/Photos.php:1105 ../../include/conversation.php:577
+msgctxt "title"
+msgid "Dislikes"
+msgstr "Desagrada"
-#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87
-#: ../../Zotlabs/Module/Tagger.php:47 ../../include/text.php:1940
-#: ../../include/conversation.php:120
-msgid "photo"
-msgstr "foto"
+#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578
+msgctxt "title"
+msgid "Agree"
+msgstr "Acord"
-#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87
-#: ../../include/text.php:1946 ../../include/conversation.php:148
-msgid "status"
-msgstr "estat"
+#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578
+msgctxt "title"
+msgid "Disagree"
+msgstr "Desacord"
-#: ../../Zotlabs/Module/Like.php:420 ../../include/conversation.php:164
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "%1$s agrada %2$s de %3$s"
+#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578
+msgctxt "title"
+msgid "Abstain"
+msgstr "Abstenirse"
-#: ../../Zotlabs/Module/Like.php:422 ../../include/conversation.php:167
-#, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
-msgstr "%1$s no agrada %2$s de %3$s"
+#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579
+msgctxt "title"
+msgid "Attending"
+msgstr "Assistint"
-#: ../../Zotlabs/Module/Like.php:424
-#, php-format
-msgid "%1$s agrees with %2$s's %3$s"
-msgstr "%1$s està d'acord amb %3$s de %2$s"
+#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579
+msgctxt "title"
+msgid "Not attending"
+msgstr "Desassistint"
-#: ../../Zotlabs/Module/Like.php:426
-#, php-format
-msgid "%1$s doesn't agree with %2$s's %3$s"
-msgstr "%1$s no està d'acord amb %3$s de %2$s"
+#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579
+msgctxt "title"
+msgid "Might attend"
+msgstr "Podrien assistir"
-#: ../../Zotlabs/Module/Like.php:428
-#, php-format
-msgid "%1$s abstains from a decision on %2$s's %3$s"
-msgstr "%1$s s'abstén en %3$s de %2$s"
+#: ../../Zotlabs/Module/Photos.php:1124 ../../Zotlabs/Module/Photos.php:1136
+#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193
+#: ../../include/conversation.php:1738
+msgid "View all"
+msgstr "Veure tot"
-#: ../../Zotlabs/Module/Like.php:430
-#, php-format
-msgid "%1$s is attending %2$s's %3$s"
-msgstr "%1$s assistirà a %3$s de %2$s"
+#: ../../Zotlabs/Module/Photos.php:1128 ../../Zotlabs/Lib/ThreadItem.php:185
+#: ../../include/taxonomy.php:403 ../../include/channel.php:1198
+#: ../../include/conversation.php:1762
+msgctxt "noun"
+msgid "Like"
+msgid_plural "Likes"
+msgstr[0] "Agrada"
+msgstr[1] "Agraden"
-#: ../../Zotlabs/Module/Like.php:432
-#, php-format
-msgid "%1$s is not attending %2$s's %3$s"
-msgstr "%1$s no assistirà a %3$s de %2$s"
+#: ../../Zotlabs/Module/Photos.php:1133 ../../Zotlabs/Lib/ThreadItem.php:190
+#: ../../include/conversation.php:1765
+msgctxt "noun"
+msgid "Dislike"
+msgid_plural "Dislikes"
+msgstr[0] "Desagrada"
+msgstr[1] "Desagrada"
-#: ../../Zotlabs/Module/Like.php:434
-#, php-format
-msgid "%1$s may attend %2$s's %3$s"
-msgstr "%1$s potser assistirà a %3$s de %2$s"
+#: ../../Zotlabs/Module/Photos.php:1233
+msgid "Photo Tools"
+msgstr "Eines per Fotos"
-#: ../../Zotlabs/Module/Like.php:537
-msgid "Action completed."
-msgstr "S'ha completat l'acció."
+#: ../../Zotlabs/Module/Photos.php:1242
+msgid "In This Photo:"
+msgstr "Hi apareixen:"
-#: ../../Zotlabs/Module/Like.php:538
-msgid "Thank you."
-msgstr "Gràcies."
+#: ../../Zotlabs/Module/Photos.php:1247
+msgid "Map"
+msgstr "Mapa"
+
+#: ../../Zotlabs/Module/Photos.php:1255 ../../Zotlabs/Lib/ThreadItem.php:386
+msgctxt "noun"
+msgid "Likes"
+msgstr "Agrada"
+
+#: ../../Zotlabs/Module/Photos.php:1256 ../../Zotlabs/Lib/ThreadItem.php:387
+msgctxt "noun"
+msgid "Dislikes"
+msgstr "Desagrada"
+
+#: ../../Zotlabs/Module/Photos.php:1261 ../../Zotlabs/Lib/ThreadItem.php:392
+#: ../../include/acl_selectors.php:283
+msgid "Close"
+msgstr "Tanca"
+
+#: ../../Zotlabs/Module/Photos.php:1335
+msgid "View Album"
+msgstr "Mostra'n l'àlbum"
+
+#: ../../Zotlabs/Module/Photos.php:1346 ../../Zotlabs/Module/Photos.php:1359
+#: ../../Zotlabs/Module/Photos.php:1360
+msgid "Recent Photos"
+msgstr "Imatges recents"
+
+#: ../../Zotlabs/Module/Lockview.php:75
+msgid "Remote privacy information not available."
+msgstr "informació privada remota no disponible."
+
+#: ../../Zotlabs/Module/Lockview.php:96
+msgid "Visible to:"
+msgstr "Visible per:"
-#: ../../Zotlabs/Module/Import_items.php:102
+#: ../../Zotlabs/Module/Import_items.php:104
msgid "Import completed"
msgstr "S'ha completat la importació"
-#: ../../Zotlabs/Module/Import_items.php:117
+#: ../../Zotlabs/Module/Import_items.php:119
msgid "Import Items"
msgstr "Importa Articles"
-#: ../../Zotlabs/Module/Import_items.php:118
+#: ../../Zotlabs/Module/Import_items.php:120
msgid ""
"Use this form to import existing posts and content from an export file."
msgstr "Empra aquest formulari per importar entrades existents i contingut d'un arxiu d'exportació."
@@ -2149,7 +2896,7 @@ msgstr "Enviar invitacions"
msgid "Enter email addresses, one per line:"
msgstr "Introduïu les adreces de correu electrònic, una per línia:"
-#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:249
+#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:241
msgid "Your message:"
msgstr "El teu missatge:"
@@ -2178,14 +2925,6 @@ msgstr "o visitar"
msgid "3. Click [Connect]"
msgstr "3. Clicar [Conectar]"
-#: ../../Zotlabs/Module/Lockview.php:61
-msgid "Remote privacy information not available."
-msgstr "informació privada remota no disponible."
-
-#: ../../Zotlabs/Module/Lockview.php:82
-msgid "Visible to:"
-msgstr "Visible per:"
-
#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54
msgid "Location not found."
msgstr "Situació que no es troba."
@@ -2212,11 +2951,6 @@ msgstr "No es troben els llocs."
msgid "Manage Channel Locations"
msgstr "Gestionar Ubicacions de Canal"
-#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:470
-#: ../../Zotlabs/Module/Admin.php:1224
-msgid "Address"
-msgstr "Adreça"
-
#: ../../Zotlabs/Module/Locs.php:119
msgid "Primary"
msgstr "Primari"
@@ -2259,87 +2993,87 @@ msgstr "Incapaç de comunicar amb el canal demanat."
msgid "Cannot verify requested channel."
msgstr "No puc verificar el canal demanat."
-#: ../../Zotlabs/Module/Mail.php:78
+#: ../../Zotlabs/Module/Mail.php:70
msgid "Selected channel has private message restrictions. Send failed."
msgstr "El canal seleccionat te restriccions sobre els missatges privats. L'enviament ha fallat."
-#: ../../Zotlabs/Module/Mail.php:143
+#: ../../Zotlabs/Module/Mail.php:135
msgid "Messages"
msgstr "Missatges"
-#: ../../Zotlabs/Module/Mail.php:178
+#: ../../Zotlabs/Module/Mail.php:170
msgid "Message recalled."
msgstr "Recupera el missatge."
-#: ../../Zotlabs/Module/Mail.php:191
+#: ../../Zotlabs/Module/Mail.php:183
msgid "Conversation removed."
msgstr "Conversació eliminada."
-#: ../../Zotlabs/Module/Mail.php:206 ../../Zotlabs/Module/Mail.php:315
+#: ../../Zotlabs/Module/Mail.php:198 ../../Zotlabs/Module/Mail.php:307
msgid "Expires YYYY-MM-DD HH:MM"
msgstr "Expira YYYY-MM-DD HH:MM"
-#: ../../Zotlabs/Module/Mail.php:234
+#: ../../Zotlabs/Module/Mail.php:226
msgid "Requested channel is not in this network"
msgstr "El canal demanat no hi es en questa xarxa"
-#: ../../Zotlabs/Module/Mail.php:242
+#: ../../Zotlabs/Module/Mail.php:234
msgid "Send Private Message"
msgstr "Envia Missatge Privat"
-#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368
+#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360
msgid "To:"
msgstr "Per:"
-#: ../../Zotlabs/Module/Mail.php:246 ../../Zotlabs/Module/Mail.php:370
+#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362
msgid "Subject:"
msgstr "Assumpte:"
-#: ../../Zotlabs/Module/Mail.php:251 ../../Zotlabs/Module/Mail.php:376
-#: ../../include/conversation.php:1220
+#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368
+#: ../../include/conversation.php:1231
msgid "Attach file"
msgstr "Adjunta arxiu"
-#: ../../Zotlabs/Module/Mail.php:253
+#: ../../Zotlabs/Module/Mail.php:245
msgid "Send"
msgstr "Envia"
-#: ../../Zotlabs/Module/Mail.php:256 ../../Zotlabs/Module/Mail.php:381
-#: ../../include/conversation.php:1251
+#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373
+#: ../../include/conversation.php:1266
msgid "Set expiration date"
msgstr "Ajusta la data d'expiració"
-#: ../../Zotlabs/Module/Mail.php:340
+#: ../../Zotlabs/Module/Mail.php:332
msgid "Delete message"
msgstr "Elimina el missatge"
-#: ../../Zotlabs/Module/Mail.php:341
+#: ../../Zotlabs/Module/Mail.php:333
msgid "Delivery report"
msgstr "Informe d'entrega"
-#: ../../Zotlabs/Module/Mail.php:342
+#: ../../Zotlabs/Module/Mail.php:334
msgid "Recall message"
msgstr "Recupera el missatge"
-#: ../../Zotlabs/Module/Mail.php:344
+#: ../../Zotlabs/Module/Mail.php:336
msgid "Message has been recalled."
msgstr "El missatge s'ha recuperat."
-#: ../../Zotlabs/Module/Mail.php:361
+#: ../../Zotlabs/Module/Mail.php:353
msgid "Delete Conversation"
msgstr "Conversació esborrada"
-#: ../../Zotlabs/Module/Mail.php:363
+#: ../../Zotlabs/Module/Mail.php:355
msgid ""
"No secure communications available. You <strong>may</strong> be able to "
"respond from the sender's profile page."
msgstr "Comunicació segura no disponible. Pots respondre des de la pàgina de perfil del remitent."
-#: ../../Zotlabs/Module/Mail.php:367
+#: ../../Zotlabs/Module/Mail.php:359
msgid "Send Reply"
msgstr "Envia Resposta"
-#: ../../Zotlabs/Module/Mail.php:372
+#: ../../Zotlabs/Module/Mail.php:364
#, php-format
msgid "Your message for %s (%s):"
msgstr "El teu missatge per %s (%s):"
@@ -2354,8 +3088,8 @@ msgstr "Has creat %1$.0f de %2$.0f canals permesos."
msgid "Create a new channel"
msgstr "Crear un nou canal"
-#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:213
-#: ../../include/nav.php:206
+#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214
+#: ../../include/nav.php:208
msgid "Channel Manager"
msgstr "Gestor de Canals"
@@ -2389,79 +3123,6 @@ msgstr "%d noves presentacions"
msgid "Delegated Channel"
msgstr "Canal Delegat"
-#: ../../Zotlabs/Module/Lostpass.php:19
-msgid "No valid account found."
-msgstr "No es troba un compte vàlid."
-
-#: ../../Zotlabs/Module/Lostpass.php:33
-msgid "Password reset request issued. Check your email."
-msgstr "Sol·licitud de restabliment de contrasenya emesa. Consulta el teu correu electrònic."
-
-#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107
-#, php-format
-msgid "Site Member (%s)"
-msgstr "Lloc d'Usuari (%s)"
-
-#: ../../Zotlabs/Module/Lostpass.php:44
-#, php-format
-msgid "Password reset requested at %s"
-msgstr "S'ha soŀlicitat restablir la contrasenya al hub %s"
-
-#: ../../Zotlabs/Module/Lostpass.php:67
-msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
-msgstr "Ha fallat el restabliment de contrasenya perquè la no s'ha pogut verificar soŀlicitud. Pot ser que ja ho hàgiu soŀlicitat abans."
-
-#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1711
-msgid "Password Reset"
-msgstr "Restabliment de contrasenya"
-
-#: ../../Zotlabs/Module/Lostpass.php:91
-msgid "Your password has been reset as requested."
-msgstr "S'ha restablert la vostra contrasenya."
-
-#: ../../Zotlabs/Module/Lostpass.php:92
-msgid "Your new password is"
-msgstr "La nova contrasenya és"
-
-#: ../../Zotlabs/Module/Lostpass.php:93
-msgid "Save or copy your new password - and then"
-msgstr "Desa o copia la nova contrasenya, i després"
-
-#: ../../Zotlabs/Module/Lostpass.php:94
-msgid "click here to login"
-msgstr "fes clic aquí per iniciar sessió"
-
-#: ../../Zotlabs/Module/Lostpass.php:95
-msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
-msgstr "Pots canviar la contrasenya a la pàgina <em>Paràmetres</em>, un cop iniciada la sessió."
-
-#: ../../Zotlabs/Module/Lostpass.php:112
-#, php-format
-msgid "Your password has changed at %s"
-msgstr "La teva contrasenya a %s ha canviat"
-
-#: ../../Zotlabs/Module/Lostpass.php:127
-msgid "Forgot your Password?"
-msgstr "No recordes la contrasenya?"
-
-#: ../../Zotlabs/Module/Lostpass.php:128
-msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"your email for further instructions."
-msgstr "Escriu la teva adreça de correu electrònic i envia per restablir la contrasenya. Després revisa el seu correu electrònic per obtenir més instruccions."
-
-#: ../../Zotlabs/Module/Lostpass.php:129
-msgid "Email Address"
-msgstr "Adreça electrònica"
-
-#: ../../Zotlabs/Module/Lostpass.php:130
-msgid "Reset"
-msgstr "Reajustar"
-
#: ../../Zotlabs/Module/Menu.php:49
msgid "Unable to update menu."
msgstr "No s'ha pogut actualitzar el menú."
@@ -2498,7 +3159,7 @@ msgstr "El menú es pot emprar per a guardar marcadors"
msgid "Submit and proceed"
msgstr "Envia i procedeix"
-#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2266
+#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2239
msgid "Menus"
msgstr "Menús"
@@ -2559,13 +3220,86 @@ msgstr "Marcadors permesos"
msgid "Not found."
msgstr "No trobat."
+#: ../../Zotlabs/Module/Lostpass.php:19
+msgid "No valid account found."
+msgstr "No es troba un compte vàlid."
+
+#: ../../Zotlabs/Module/Lostpass.php:33
+msgid "Password reset request issued. Check your email."
+msgstr "Sol·licitud de restabliment de contrasenya emesa. Consulta el teu correu electrònic."
+
+#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107
+#, php-format
+msgid "Site Member (%s)"
+msgstr "Lloc d'Usuari (%s)"
+
+#: ../../Zotlabs/Module/Lostpass.php:44
+#, php-format
+msgid "Password reset requested at %s"
+msgstr "S'ha soŀlicitat restablir la contrasenya al hub %s"
+
+#: ../../Zotlabs/Module/Lostpass.php:67
+msgid ""
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
+msgstr "Ha fallat el restabliment de contrasenya perquè la no s'ha pogut verificar soŀlicitud. Pot ser que ja ho hàgiu soŀlicitat abans."
+
+#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1712
+msgid "Password Reset"
+msgstr "Restabliment de contrasenya"
+
+#: ../../Zotlabs/Module/Lostpass.php:91
+msgid "Your password has been reset as requested."
+msgstr "S'ha restablert la vostra contrasenya."
+
+#: ../../Zotlabs/Module/Lostpass.php:92
+msgid "Your new password is"
+msgstr "La nova contrasenya és"
+
+#: ../../Zotlabs/Module/Lostpass.php:93
+msgid "Save or copy your new password - and then"
+msgstr "Desa o copia la nova contrasenya, i després"
+
+#: ../../Zotlabs/Module/Lostpass.php:94
+msgid "click here to login"
+msgstr "fes clic aquí per iniciar sessió"
+
+#: ../../Zotlabs/Module/Lostpass.php:95
+msgid ""
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
+msgstr "Pots canviar la contrasenya a la pàgina <em>Paràmetres</em>, un cop iniciada la sessió."
+
+#: ../../Zotlabs/Module/Lostpass.php:112
+#, php-format
+msgid "Your password has changed at %s"
+msgstr "La teva contrasenya a %s ha canviat"
+
+#: ../../Zotlabs/Module/Lostpass.php:127
+msgid "Forgot your Password?"
+msgstr "No recordes la contrasenya?"
+
+#: ../../Zotlabs/Module/Lostpass.php:128
+msgid ""
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
+msgstr "Escriu la teva adreça de correu electrònic i envia per restablir la contrasenya. Després revisa el seu correu electrònic per obtenir més instruccions."
+
+#: ../../Zotlabs/Module/Lostpass.php:129
+msgid "Email Address"
+msgstr "Adreça electrònica"
+
+#: ../../Zotlabs/Module/Lostpass.php:130
+msgid "Reset"
+msgstr "Reajustar"
+
#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260
#, php-format
msgctxt "mood"
msgid "%1$s is %2$s"
msgstr "%1$s es %2$s"
-#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:225
+#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227
msgid "Mood"
msgstr "Ànim"
@@ -2573,47 +3307,31 @@ msgstr "Ànim"
msgid "Set your current mood and tell your friends"
msgstr "Estableix el teu estat d'ànim actual i digues-li als teus amics"
-#: ../../Zotlabs/Module/Match.php:26
-msgid "Profile Match"
-msgstr "Perfils compatibles"
-
-#: ../../Zotlabs/Module/Match.php:35
-msgid "No keywords to match. Please add keywords to your default profile."
-msgstr "No tens paraules clau al perfil principal per poder cercar perfils semblants."
-
-#: ../../Zotlabs/Module/Match.php:67
-msgid "is interested in:"
-msgstr "té interès en:"
-
-#: ../../Zotlabs/Module/Match.php:74
-msgid "No matches"
-msgstr "No s'han trobat perfils compatibles"
-
-#: ../../Zotlabs/Module/Network.php:96
+#: ../../Zotlabs/Module/Network.php:94
msgid "No such group"
msgstr "No existeix el grup"
-#: ../../Zotlabs/Module/Network.php:136
+#: ../../Zotlabs/Module/Network.php:134
msgid "No such channel"
msgstr "No existeix el canal"
-#: ../../Zotlabs/Module/Network.php:141
+#: ../../Zotlabs/Module/Network.php:139
msgid "forum"
msgstr "fòrum"
-#: ../../Zotlabs/Module/Network.php:153
+#: ../../Zotlabs/Module/Network.php:151
msgid "Search Results For:"
msgstr "Cerca resultats per:"
-#: ../../Zotlabs/Module/Network.php:217
+#: ../../Zotlabs/Module/Network.php:215
msgid "Privacy group is empty"
msgstr "el grup privat està vuit"
-#: ../../Zotlabs/Module/Network.php:226
+#: ../../Zotlabs/Module/Network.php:224
msgid "Privacy group: "
msgstr "Grup privat:"
-#: ../../Zotlabs/Module/Network.php:252
+#: ../../Zotlabs/Module/Network.php:250
msgid "Invalid connection."
msgstr "La connexió és invàlida."
@@ -2627,6 +3345,34 @@ msgstr "No hi ha més notificacions del sistema."
msgid "System Notifications"
msgstr "Notificacions del sistema"
+#: ../../Zotlabs/Module/Match.php:26
+msgid "Profile Match"
+msgstr "Perfils compatibles"
+
+#: ../../Zotlabs/Module/Match.php:35
+msgid "No keywords to match. Please add keywords to your default profile."
+msgstr "No tens paraules clau al perfil principal per poder cercar perfils semblants."
+
+#: ../../Zotlabs/Module/Match.php:67
+msgid "is interested in:"
+msgstr "té interès en:"
+
+#: ../../Zotlabs/Module/Match.php:74
+msgid "No matches"
+msgstr "No s'han trobat perfils compatibles"
+
+#: ../../Zotlabs/Module/Channel.php:40
+msgid "Posts and comments"
+msgstr "Entrades i comentaris"
+
+#: ../../Zotlabs/Module/Channel.php:41
+msgid "Only posts"
+msgstr "Només entrades"
+
+#: ../../Zotlabs/Module/Channel.php:101
+msgid "Insufficient permissions. Request redirected to profile page."
+msgstr "Permisos insuficients. Petició redirigida a la pàgina del perfil."
+
#: ../../Zotlabs/Module/Mitem.php:52
msgid "Unable to create element."
msgstr "Incapaç de crear l'element."
@@ -2644,7 +3390,7 @@ msgid "Menu Item Permissions"
msgstr "Permisos de l'Article del Menú"
#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227
-#: ../../Zotlabs/Module/Settings.php:1068
+#: ../../Zotlabs/Module/Settings.php:1163
msgid "(click to open/close)"
msgstr "(clica per obrir/tancar)"
@@ -2744,845 +3490,6 @@ msgstr "Editar Element del Menú"
msgid "Link text"
msgstr "Enllaç de text"
-#: ../../Zotlabs/Module/New_channel.php:128
-#: ../../Zotlabs/Module/Register.php:231
-msgid "Name or caption"
-msgstr "Nom o llegenda"
-
-#: ../../Zotlabs/Module/New_channel.php:128
-#: ../../Zotlabs/Module/Register.php:231
-msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""
-msgstr "Exemples: \"Pep Gomila\", \"Manel i els seus Cavalls\", \"Fútbol\", \"Grup d'Aviadors\""
-
-#: ../../Zotlabs/Module/New_channel.php:130
-#: ../../Zotlabs/Module/Register.php:233
-msgid "Choose a short nickname"
-msgstr "Tria un àlies curt"
-
-#: ../../Zotlabs/Module/New_channel.php:130
-#: ../../Zotlabs/Module/Register.php:233
-#, php-format
-msgid ""
-"Your nickname will be used to create an easy to remember channel address "
-"e.g. nickname%s"
-msgstr "El teu àlies serà emprat per crear un nom fàcil per recordar l'adreça del canal p.e. àlies%s"
-
-#: ../../Zotlabs/Module/New_channel.php:132
-#: ../../Zotlabs/Module/Register.php:235
-msgid "Channel role and privacy"
-msgstr "Funció i privacitat del canal"
-
-#: ../../Zotlabs/Module/New_channel.php:132
-#: ../../Zotlabs/Module/Register.php:235
-msgid "Select a channel role with your privacy requirements."
-msgstr "Tria una funció pel canal amb els teus requisits de privacitat."
-
-#: ../../Zotlabs/Module/New_channel.php:132
-#: ../../Zotlabs/Module/Register.php:235
-msgid "Read more about roles"
-msgstr "Llegix més sobre els rols"
-
-#: ../../Zotlabs/Module/New_channel.php:135
-msgid "Create Channel"
-msgstr "Crea un Canal"
-
-#: ../../Zotlabs/Module/New_channel.php:136
-msgid ""
-"A channel is your identity on this network. It can represent a person, a "
-"blog, or a forum to name a few. Channels can make connections with other "
-"channels to share information with highly detailed permissions."
-msgstr "Un canal es la tva identitat en aquesta xarxa. Pot representar una persona, un bloc, o un fòrum per anomenar alguns. Els canals poden connectar-se amb altres canals per compartir informació amb permisos molt detallats."
-
-#: ../../Zotlabs/Module/New_channel.php:137
-msgid ""
-"or <a href=\"import\">import an existing channel</a> from another location."
-msgstr "o <a href=\"import\">importa un canal existent</a> des d'un altre ubicació."
-
-#: ../../Zotlabs/Module/Notifications.php:30
-msgid "Invalid request identifier."
-msgstr "Sol·licitud d'identificació invàlida."
-
-#: ../../Zotlabs/Module/Notifications.php:39
-msgid "Discard"
-msgstr "Descarta"
-
-#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:191
-msgid "Mark all system notifications seen"
-msgstr "Marca totes les notificacions vistes"
-
-#: ../../Zotlabs/Module/Photos.php:84
-msgid "Page owner information could not be retrieved."
-msgstr "La informació del propietari de la pàgina no va poder ser recuperada"
-
-#: ../../Zotlabs/Module/Photos.php:99 ../../Zotlabs/Module/Photos.php:743
-#: ../../Zotlabs/Module/Profile_photo.php:114
-#: ../../Zotlabs/Module/Profile_photo.php:206
-#: ../../Zotlabs/Module/Profile_photo.php:294
-#: ../../include/photo/photo_driver.php:718
-msgid "Profile Photos"
-msgstr "Fotos del Perfil"
-
-#: ../../Zotlabs/Module/Photos.php:105 ../../Zotlabs/Module/Photos.php:149
-msgid "Album not found."
-msgstr "Àlbum no trobat"
-
-#: ../../Zotlabs/Module/Photos.php:132
-msgid "Delete Album"
-msgstr "Esborra Àlbum"
-
-#: ../../Zotlabs/Module/Photos.php:153
-msgid ""
-"Multiple storage folders exist with this album name, but within different "
-"directories. Please remove the desired folder or folders using the Files "
-"manager"
-msgstr "Existeixen moltes carpetes de emmagatzemament amb aquest nom d'àlbum, però en diferents directoris. Si us plau esborra la carpeta o carpetes amb el gestor d'arxius."
-
-#: ../../Zotlabs/Module/Photos.php:210 ../../Zotlabs/Module/Photos.php:1053
-msgid "Delete Photo"
-msgstr "Esborra Foto"
-
-#: ../../Zotlabs/Module/Photos.php:533
-msgid "No photos selected"
-msgstr "No has seleccionat fotos"
-
-#: ../../Zotlabs/Module/Photos.php:582
-msgid "Access to this item is restricted."
-msgstr "L'accés a aquest element esta restringit."
-
-#: ../../Zotlabs/Module/Photos.php:621
-#, php-format
-msgid "%1$.2f MB of %2$.2f MB photo storage used."
-msgstr "S'estan fent servir %1$.2f MB de %2$.2f MB de l'espai per a imatges."
-
-#: ../../Zotlabs/Module/Photos.php:624
-#, php-format
-msgid "%1$.2f MB photo storage used."
-msgstr "S'estan fent servir %1$.2f MB de l'espai per a imatges."
-
-#: ../../Zotlabs/Module/Photos.php:660
-msgid "Upload Photos"
-msgstr "Puja imatges"
-
-#: ../../Zotlabs/Module/Photos.php:664
-msgid "Enter an album name"
-msgstr "Escriu el nom del àlbum"
-
-#: ../../Zotlabs/Module/Photos.php:665
-msgid "or select an existing album (doubleclick)"
-msgstr "o bé fes doble clic a un d'existent"
-
-#: ../../Zotlabs/Module/Photos.php:666
-msgid "Create a status post for this upload"
-msgstr "Genera una entrada a partir de la pujada"
-
-#: ../../Zotlabs/Module/Photos.php:667
-msgid "Caption (optional):"
-msgstr "Subtítol (opcional):"
-
-#: ../../Zotlabs/Module/Photos.php:668
-msgid "Description (optional):"
-msgstr "Descripció (opcional):"
-
-#: ../../Zotlabs/Module/Photos.php:695
-msgid "Album name could not be decoded"
-msgstr "No s'ha pogut descodificar el nom de l'àlbum"
-
-#: ../../Zotlabs/Module/Photos.php:743
-msgid "Contact Photos"
-msgstr "Imatges de contactes"
-
-#: ../../Zotlabs/Module/Photos.php:766
-msgid "Show Newest First"
-msgstr "Ordena de més nou a més antic"
-
-#: ../../Zotlabs/Module/Photos.php:768
-msgid "Show Oldest First"
-msgstr "Ordena de més antic a més nou"
-
-#: ../../Zotlabs/Module/Photos.php:792 ../../Zotlabs/Module/Photos.php:1331
-#: ../../include/widgets.php:1499
-msgid "View Photo"
-msgstr "Mostra la imatge"
-
-#: ../../Zotlabs/Module/Photos.php:823 ../../include/widgets.php:1516
-msgid "Edit Album"
-msgstr "Modifica l'àlbum"
-
-#: ../../Zotlabs/Module/Photos.php:870
-msgid "Permission denied. Access to this item may be restricted."
-msgstr "S'ha denegat el permís. Pot ser que l'accés estigui restringit."
-
-#: ../../Zotlabs/Module/Photos.php:872
-msgid "Photo not available"
-msgstr "La imatge no està disponible"
-
-#: ../../Zotlabs/Module/Photos.php:930
-msgid "Use as profile photo"
-msgstr "Fes-la imatge de perfil"
-
-#: ../../Zotlabs/Module/Photos.php:931
-msgid "Use as cover photo"
-msgstr "Emprar com a foto de portada"
-
-#: ../../Zotlabs/Module/Photos.php:938
-msgid "Private Photo"
-msgstr "Imatge privada"
-
-#: ../../Zotlabs/Module/Photos.php:953
-msgid "View Full Size"
-msgstr "Mostra a mida completa"
-
-#: ../../Zotlabs/Module/Photos.php:998 ../../Zotlabs/Module/Admin.php:1437
-#: ../../Zotlabs/Module/Tagrm.php:137
-msgid "Remove"
-msgstr "Esborra"
-
-#: ../../Zotlabs/Module/Photos.php:1032
-msgid "Edit photo"
-msgstr "Modifica la imatge"
-
-#: ../../Zotlabs/Module/Photos.php:1034
-msgid "Rotate CW (right)"
-msgstr "Tomba cap a la dreta"
-
-#: ../../Zotlabs/Module/Photos.php:1035
-msgid "Rotate CCW (left)"
-msgstr "Tomba cap a l'esquerra"
-
-#: ../../Zotlabs/Module/Photos.php:1038
-msgid "Enter a new album name"
-msgstr "Escriu el nom del nou àlbum"
-
-#: ../../Zotlabs/Module/Photos.php:1039
-msgid "or select an existing one (doubleclick)"
-msgstr "o bé fes doble clic a un d'existent"
-
-#: ../../Zotlabs/Module/Photos.php:1042
-msgid "Caption"
-msgstr "Llegenda"
-
-#: ../../Zotlabs/Module/Photos.php:1044
-msgid "Add a Tag"
-msgstr "Afegeix una etiqueta"
-
-#: ../../Zotlabs/Module/Photos.php:1048
-msgid "Example: @bob, @Barbara_Jensen, @jim@example.com"
-msgstr "Exemple: @joan, @Paula_Peris, @mar@exemple.org"
-
-#: ../../Zotlabs/Module/Photos.php:1051
-msgid "Flag as adult in album view"
-msgstr "Marca com a contingut adult"
-
-#: ../../Zotlabs/Module/Photos.php:1070 ../../Zotlabs/Lib/ThreadItem.php:261
-msgid "I like this (toggle)"
-msgstr "M'agrada això (canvia)"
-
-#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:262
-msgid "I don't like this (toggle)"
-msgstr "No m'agrada això (canvia)"
-
-#: ../../Zotlabs/Module/Photos.php:1073 ../../Zotlabs/Lib/ThreadItem.php:397
-#: ../../include/conversation.php:740
-msgid "Please wait"
-msgstr "Si us plau, espera"
-
-#: ../../Zotlabs/Module/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207
-#: ../../Zotlabs/Lib/ThreadItem.php:707
-msgid "This is you"
-msgstr "Ets tú"
-
-#: ../../Zotlabs/Module/Photos.php:1091 ../../Zotlabs/Module/Photos.php:1209
-#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6
-msgid "Comment"
-msgstr "Comentari"
-
-#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574
-msgctxt "title"
-msgid "Likes"
-msgstr "Agrada"
-
-#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574
-msgctxt "title"
-msgid "Dislikes"
-msgstr "Desagrada"
-
-#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575
-msgctxt "title"
-msgid "Agree"
-msgstr "Acord"
-
-#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575
-msgctxt "title"
-msgid "Disagree"
-msgstr "Desacord"
-
-#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575
-msgctxt "title"
-msgid "Abstain"
-msgstr "Abstenirse"
-
-#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576
-msgctxt "title"
-msgid "Attending"
-msgstr "Assistint"
-
-#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576
-msgctxt "title"
-msgid "Not attending"
-msgstr "Desassistint"
-
-#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576
-msgctxt "title"
-msgid "Might attend"
-msgstr "Podrien assistir"
-
-#: ../../Zotlabs/Module/Photos.php:1126 ../../Zotlabs/Module/Photos.php:1138
-#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193
-#: ../../include/conversation.php:1717
-msgid "View all"
-msgstr "Veure tot"
-
-#: ../../Zotlabs/Module/Photos.php:1130 ../../Zotlabs/Lib/ThreadItem.php:185
-#: ../../include/taxonomy.php:403 ../../include/conversation.php:1741
-#: ../../include/channel.php:1158
-msgctxt "noun"
-msgid "Like"
-msgid_plural "Likes"
-msgstr[0] "Agrada"
-msgstr[1] "Agraden"
-
-#: ../../Zotlabs/Module/Photos.php:1135 ../../Zotlabs/Lib/ThreadItem.php:190
-#: ../../include/conversation.php:1744
-msgctxt "noun"
-msgid "Dislike"
-msgid_plural "Dislikes"
-msgstr[0] "Desagrada"
-msgstr[1] "Desagrada"
-
-#: ../../Zotlabs/Module/Photos.php:1235
-msgid "Photo Tools"
-msgstr "Eines per Fotos"
-
-#: ../../Zotlabs/Module/Photos.php:1244
-msgid "In This Photo:"
-msgstr "Hi apareixen:"
-
-#: ../../Zotlabs/Module/Photos.php:1249
-msgid "Map"
-msgstr "Mapa"
-
-#: ../../Zotlabs/Module/Photos.php:1257 ../../Zotlabs/Lib/ThreadItem.php:386
-msgctxt "noun"
-msgid "Likes"
-msgstr "Agrada"
-
-#: ../../Zotlabs/Module/Photos.php:1258 ../../Zotlabs/Lib/ThreadItem.php:387
-msgctxt "noun"
-msgid "Dislikes"
-msgstr "Desagrada"
-
-#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:392
-#: ../../include/acl_selectors.php:285
-msgid "Close"
-msgstr "Tanca"
-
-#: ../../Zotlabs/Module/Photos.php:1337
-msgid "View Album"
-msgstr "Mostra'n l'àlbum"
-
-#: ../../Zotlabs/Module/Photos.php:1348 ../../Zotlabs/Module/Photos.php:1361
-#: ../../Zotlabs/Module/Photos.php:1362
-msgid "Recent Photos"
-msgstr "Imatges recents"
-
-#: ../../Zotlabs/Module/Ping.php:265
-msgid "sent you a private message"
-msgstr "Se t'ha enviat un missatge privat"
-
-#: ../../Zotlabs/Module/Ping.php:313
-msgid "added your channel"
-msgstr "el teu canal s'ha afegit"
-
-#: ../../Zotlabs/Module/Ping.php:323
-msgid "g A l F d"
-msgstr "g A l F d"
-
-#: ../../Zotlabs/Module/Ping.php:346
-msgid "[today]"
-msgstr "[avui]"
-
-#: ../../Zotlabs/Module/Ping.php:355
-msgid "posted an event"
-msgstr "enviat un esdeveniment"
-
-#: ../../Zotlabs/Module/Oexchange.php:27
-msgid "Unable to find your hub."
-msgstr "No es possible trobar el node"
-
-#: ../../Zotlabs/Module/Oexchange.php:41
-msgid "Post successful."
-msgstr "Entrada realitzada amb èxit. "
-
-#: ../../Zotlabs/Module/Openid.php:30
-msgid "OpenID protocol error. No ID returned."
-msgstr "Error del protocol OpenID. No ha retornat ID"
-
-#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:226
-msgid "Login failed."
-msgstr "Identificació fallida."
-
-#: ../../Zotlabs/Module/Page.php:133
-msgid ""
-"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod "
-"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,"
-" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo "
-"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse "
-"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat "
-"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
-msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
-
-#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59
-msgid "This setting requires special processing and editing has been blocked."
-msgstr "Aquest ajust requereix un procés espedial i l'edició esta bloquejada."
-
-#: ../../Zotlabs/Module/Pconfig.php:48
-msgid "Configuration Editor"
-msgstr "Editor de Configuració"
-
-#: ../../Zotlabs/Module/Pconfig.php:49
-msgid ""
-"Warning: Changing some settings could render your channel inoperable. Please"
-" leave this page unless you are comfortable with and knowledgeable about how"
-" to correctly use this feature."
-msgstr "atenció: Realitzar segons quins ajustos pot fer el canal inoperable. Deixa aquesta pàgina si no estas segur i tens suficients coneixements sobre l'ús correcte d'aquesta característica."
-
-#: ../../Zotlabs/Module/Pdledit.php:18
-msgid "Layout updated."
-msgstr "S'ha actualitzat la disposició."
-
-#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61
-msgid "Edit System Page Description"
-msgstr "Editor del Sistema de Descripció de Pàgines"
-
-#: ../../Zotlabs/Module/Pdledit.php:56
-msgid "Layout not found."
-msgstr "No s'ha trobat cap disposició de pàgina."
-
-#: ../../Zotlabs/Module/Pdledit.php:62
-msgid "Module Name:"
-msgstr "Nom del mòdul:"
-
-#: ../../Zotlabs/Module/Pdledit.php:63
-msgid "Layout Help"
-msgstr "Ajuda per la disposició de pàgina"
-
-#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:226
-#: ../../include/conversation.php:960
-msgid "Poke"
-msgstr "Esperonar"
-
-#: ../../Zotlabs/Module/Poke.php:169
-msgid "Poke somebody"
-msgstr "Emprenyar algú"
-
-#: ../../Zotlabs/Module/Poke.php:172
-msgid "Poke/Prod"
-msgstr "Esperonat/Picat"
-
-#: ../../Zotlabs/Module/Poke.php:173
-msgid "Poke, prod or do other things to somebody"
-msgstr "emprenyar, picar o fer altres coses a algú"
-
-#: ../../Zotlabs/Module/Poke.php:180
-msgid "Recipient"
-msgstr "Destinatari"
-
-#: ../../Zotlabs/Module/Poke.php:181
-msgid "Choose what you wish to do to recipient"
-msgstr "Tria que vols fer amb el destinatari"
-
-#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185
-msgid "Make this post private"
-msgstr "Fer aquesta entrada privada"
-
-#: ../../Zotlabs/Module/Probe.php:30 ../../Zotlabs/Module/Probe.php:34
-#, php-format
-msgid "Fetching URL returns error: %1$s"
-msgstr "URL sol·licitada retorna error: %1$s"
-
-#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189
-#: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625
-msgid "Profile not found."
-msgstr "Perfil no trobat."
-
-#: ../../Zotlabs/Module/Profiles.php:44
-msgid "Profile deleted."
-msgstr "Perfil eliminat."
-
-#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104
-msgid "Profile-"
-msgstr "Perfil-"
-
-#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132
-msgid "New profile created."
-msgstr "Nou perfil creat."
-
-#: ../../Zotlabs/Module/Profiles.php:110
-msgid "Profile unavailable to clone."
-msgstr "Perfil que no es pot clonar."
-
-#: ../../Zotlabs/Module/Profiles.php:151
-msgid "Profile unavailable to export."
-msgstr "Perfil que no es pot exportar."
-
-#: ../../Zotlabs/Module/Profiles.php:256
-msgid "Profile Name is required."
-msgstr "Es requereix el Nom del Perfil."
-
-#: ../../Zotlabs/Module/Profiles.php:427
-msgid "Marital Status"
-msgstr "Estat Marital"
-
-#: ../../Zotlabs/Module/Profiles.php:431
-msgid "Romantic Partner"
-msgstr "Company/a Romàntic"
-
-#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736
-msgid "Likes"
-msgstr "Agrada"
-
-#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737
-msgid "Dislikes"
-msgstr "Desagrada"
-
-#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744
-msgid "Work/Employment"
-msgstr "Treball/Feina"
-
-#: ../../Zotlabs/Module/Profiles.php:446
-msgid "Religion"
-msgstr "Religió"
-
-#: ../../Zotlabs/Module/Profiles.php:450
-msgid "Political Views"
-msgstr "Idees Polítiques"
-
-#: ../../Zotlabs/Module/Profiles.php:458
-msgid "Sexual Preference"
-msgstr "Preferència Sexual"
-
-#: ../../Zotlabs/Module/Profiles.php:462
-msgid "Homepage"
-msgstr "Pàgina Personal"
-
-#: ../../Zotlabs/Module/Profiles.php:466
-msgid "Interests"
-msgstr "Interessos"
-
-#: ../../Zotlabs/Module/Profiles.php:560
-msgid "Profile updated."
-msgstr "Perfil actualitzat."
-
-#: ../../Zotlabs/Module/Profiles.php:644
-msgid "Hide your connections list from viewers of this profile"
-msgstr "Amaga dels curiosos la teva llista de connexions d'aquest perfil"
-
-#: ../../Zotlabs/Module/Profiles.php:686
-msgid "Edit Profile Details"
-msgstr "Edita els Detalls del Perfil"
-
-#: ../../Zotlabs/Module/Profiles.php:688
-msgid "View this profile"
-msgstr "Veure aquest perfil"
-
-#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771
-#: ../../include/channel.php:959
-msgid "Edit visibility"
-msgstr "Editar visibilitat"
-
-#: ../../Zotlabs/Module/Profiles.php:690
-msgid "Profile Tools"
-msgstr "Eines per Perfils"
-
-#: ../../Zotlabs/Module/Profiles.php:691
-msgid "Change cover photo"
-msgstr "Canviar la foto de portada"
-
-#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:930
-msgid "Change profile photo"
-msgstr "Canviar la foto del perfil"
-
-#: ../../Zotlabs/Module/Profiles.php:693
-msgid "Create a new profile using these settings"
-msgstr "Crea un perfil nou amb aquests ajustos"
-
-#: ../../Zotlabs/Module/Profiles.php:694
-msgid "Clone this profile"
-msgstr "Clonar aquest perfil"
-
-#: ../../Zotlabs/Module/Profiles.php:695
-msgid "Delete this profile"
-msgstr "Elimina aquest perfil"
-
-#: ../../Zotlabs/Module/Profiles.php:696
-msgid "Add profile things"
-msgstr "Afegeix coses al perfil"
-
-#: ../../Zotlabs/Module/Profiles.php:697 ../../include/widgets.php:105
-#: ../../include/conversation.php:1526
-msgid "Personal"
-msgstr "Personal"
-
-#: ../../Zotlabs/Module/Profiles.php:699
-msgid "Relation"
-msgstr "Relació"
-
-#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48
-msgid "Miscellaneous"
-msgstr "Miscelania"
-
-#: ../../Zotlabs/Module/Profiles.php:702
-msgid "Import profile from file"
-msgstr "Importa perfil des d'un arxiu"
-
-#: ../../Zotlabs/Module/Profiles.php:703
-msgid "Export profile to file"
-msgstr "Exporta perfil a un arxiu"
-
-#: ../../Zotlabs/Module/Profiles.php:704
-msgid "Your gender"
-msgstr "El teu gènere"
-
-#: ../../Zotlabs/Module/Profiles.php:705
-msgid "Marital status"
-msgstr "Estat marital"
-
-#: ../../Zotlabs/Module/Profiles.php:706
-msgid "Sexual preference"
-msgstr "Preferència sexual"
-
-#: ../../Zotlabs/Module/Profiles.php:709
-msgid "Profile name"
-msgstr "Nom del perfil"
-
-#: ../../Zotlabs/Module/Profiles.php:711
-msgid "This is your default profile."
-msgstr "Aquest es el teu perfil per defecte"
-
-#: ../../Zotlabs/Module/Profiles.php:713
-msgid "Your full name"
-msgstr "El teu nom complet"
-
-#: ../../Zotlabs/Module/Profiles.php:714
-msgid "Title/Description"
-msgstr "Títol/Descripció"
-
-#: ../../Zotlabs/Module/Profiles.php:717
-msgid "Street address"
-msgstr "Carrer"
-
-#: ../../Zotlabs/Module/Profiles.php:718
-msgid "Locality/City"
-msgstr "Població/Ciutat"
-
-#: ../../Zotlabs/Module/Profiles.php:719
-msgid "Region/State"
-msgstr "Regió/Estat"
-
-#: ../../Zotlabs/Module/Profiles.php:720
-msgid "Postal/Zip code"
-msgstr "Codi Postal"
-
-#: ../../Zotlabs/Module/Profiles.php:721
-msgid "Country"
-msgstr "País"
-
-#: ../../Zotlabs/Module/Profiles.php:726
-msgid "Who (if applicable)"
-msgstr "Qui (si es aplicable)"
-
-#: ../../Zotlabs/Module/Profiles.php:726
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
-msgstr "Examples: cathy123, Cathy Williams, cathy@example.com"
-
-#: ../../Zotlabs/Module/Profiles.php:727
-msgid "Since (date)"
-msgstr "Des de (data)"
-
-#: ../../Zotlabs/Module/Profiles.php:730
-msgid "Tell us about yourself"
-msgstr "Quelcom sobre tu"
-
-#: ../../Zotlabs/Module/Profiles.php:732
-msgid "Hometown"
-msgstr "Ciutat Natal"
-
-#: ../../Zotlabs/Module/Profiles.php:733
-msgid "Political views"
-msgstr "Idees polítiques"
-
-#: ../../Zotlabs/Module/Profiles.php:734
-msgid "Religious views"
-msgstr "Creences religioses"
-
-#: ../../Zotlabs/Module/Profiles.php:735
-msgid "Keywords used in directory listings"
-msgstr "Paraules clau emprades en els llistats de directoris"
-
-#: ../../Zotlabs/Module/Profiles.php:735
-msgid "Example: fishing photography software"
-msgstr "Exemple: software de fotografia submarina"
-
-#: ../../Zotlabs/Module/Profiles.php:738
-msgid "Musical interests"
-msgstr "Interessos Musicals"
-
-#: ../../Zotlabs/Module/Profiles.php:739
-msgid "Books, literature"
-msgstr "Llibres, literatura"
-
-#: ../../Zotlabs/Module/Profiles.php:740
-msgid "Television"
-msgstr "Televisió"
-
-#: ../../Zotlabs/Module/Profiles.php:741
-msgid "Film/Dance/Culture/Entertainment"
-msgstr "Pel·lícules/Dansa/Cultura/Entreteniment"
-
-#: ../../Zotlabs/Module/Profiles.php:742
-msgid "Hobbies/Interests"
-msgstr "Aficions/Interessos"
-
-#: ../../Zotlabs/Module/Profiles.php:743
-msgid "Love/Romance"
-msgstr "Amor/Romace"
-
-#: ../../Zotlabs/Module/Profiles.php:745
-msgid "School/Education"
-msgstr "Escola/Educació"
-
-#: ../../Zotlabs/Module/Profiles.php:746
-msgid "Contact information and social networks"
-msgstr "Informació de contacte i xarxes socials"
-
-#: ../../Zotlabs/Module/Profiles.php:747
-msgid "My other channels"
-msgstr "Els meus altres canals"
-
-#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:955
-msgid "Profile Image"
-msgstr "Imatge del Perfil"
-
-#: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:88
-#: ../../include/channel.php:937
-msgid "Edit Profiles"
-msgstr "Editar Perfils"
-
-#: ../../Zotlabs/Module/Profile_photo.php:179
-msgid ""
-"Shift-reload the page or clear browser cache if the new photo does not "
-"display immediately."
-msgstr "Refresca la memòria cau del navegador si la foto no s'actualitza immediatament. Dreceres: «Ctrl+F5» i «Ctrl+Maj+R»"
-
-#: ../../Zotlabs/Module/Profile_photo.php:367
-msgid "Upload Profile Photo"
-msgstr "Puja una Foto pel Perfil"
-
-#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63
-msgid "Invalid profile identifier."
-msgstr "Identificador invàlid de perfil."
-
-#: ../../Zotlabs/Module/Profperm.php:115
-msgid "Profile Visibility Editor"
-msgstr "Perfil del Editor de Visibilitat"
-
-#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1249
-msgid "Profile"
-msgstr "Perfil"
-
-#: ../../Zotlabs/Module/Profperm.php:119
-msgid "Click on a contact to add or remove."
-msgstr "Clica sobre el contacte per afegir o esborrar."
-
-#: ../../Zotlabs/Module/Profperm.php:128
-msgid "Visible To"
-msgstr "Visible per"
-
-#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1270
-msgid "Public Hubs"
-msgstr "Nodes Públics"
-
-#: ../../Zotlabs/Module/Pubsites.php:25
-msgid ""
-"The listed hubs allow public registration for the $Projectname network. All "
-"hubs in the network are interlinked so membership on any of them conveys "
-"membership in the network as a whole. Some hubs may require subscription or "
-"provide tiered service plans. The hub itself <strong>may</strong> provide "
-"additional details."
-msgstr "Els nodes llistats permeten registrar usuaris de la xarxa $Projectname. Com que tots els nodes estan enllaçats entre ells, la identitat és vàlida a tota la xarxa. Alguns nodes poden demanar subscripció o oferir serveis addicional de pagament. Per a més detalls, <strong>proveu</strong> de seguir els enllaços dels proveïdors."
-
-#: ../../Zotlabs/Module/Pubsites.php:31
-msgid "Hub URL"
-msgstr "URL del Node"
-
-#: ../../Zotlabs/Module/Pubsites.php:31
-msgid "Access Type"
-msgstr "Tipus d'accés"
-
-#: ../../Zotlabs/Module/Pubsites.php:31
-msgid "Registration Policy"
-msgstr "Condicions de registre"
-
-#: ../../Zotlabs/Module/Pubsites.php:31
-msgid "Stats"
-msgstr "Estadístiques"
-
-#: ../../Zotlabs/Module/Pubsites.php:31
-msgid "Software"
-msgstr "Programari"
-
-#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103
-#: ../../include/conversation.php:959
-msgid "Ratings"
-msgstr "Valoracions"
-
-#: ../../Zotlabs/Module/Pubsites.php:38
-msgid "Rate"
-msgstr "Puntua"
-
-#: ../../Zotlabs/Module/Rate.php:160
-msgid "Website:"
-msgstr "Lloc web:"
-
-#: ../../Zotlabs/Module/Rate.php:163
-#, php-format
-msgid "Remote Channel [%s] (not yet known on this site)"
-msgstr "Canal Remot [%s] (encara no es coneix en aquest lloc)"
-
-#: ../../Zotlabs/Module/Rate.php:164
-msgid "Rating (this information is public)"
-msgstr "Valoració (aquesta informació és pública)"
-
-#: ../../Zotlabs/Module/Rate.php:165
-msgid "Optionally explain your rating (this information is public)"
-msgstr "Opcionalment pots explicar la teva qualificació (aquesta informació és pública)"
-
-#: ../../Zotlabs/Module/Ratings.php:73
-msgid "No ratings"
-msgstr "No valorat"
-
-#: ../../Zotlabs/Module/Ratings.php:104
-msgid "Rating: "
-msgstr "Valoració:"
-
-#: ../../Zotlabs/Module/Ratings.php:105
-msgid "Website: "
-msgstr "Lloc web:"
-
-#: ../../Zotlabs/Module/Ratings.php:107
-msgid "Description: "
-msgstr "Descripció:"
-
#: ../../Zotlabs/Module/Admin.php:77
msgid "Theme settings updated."
msgstr "Ajustos de tema actualitzats."
@@ -3642,7 +3549,7 @@ msgstr "Comptes registrades"
#: ../../Zotlabs/Module/Admin.php:246 ../../Zotlabs/Module/Admin.php:715
msgid "Pending registrations"
-msgstr "Comptes pendents de registre"
+msgstr "Comptes pendents d'inscripció"
#: ../../Zotlabs/Module/Admin.php:247
msgid "Registered channels"
@@ -3668,11 +3575,11 @@ msgstr "Versió (desenvolupament) del repositori"
msgid "Site settings updated."
msgstr "Ajustos del Lloc actualitzats"
-#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2841
+#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2829
msgid "Default"
msgstr "Predeterminat"
-#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:798
+#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:899
msgid "mobile"
msgstr "mòbil"
@@ -3704,13 +3611,13 @@ msgstr "El meu lloc te lliure accés"
msgid "My site offers free accounts with optional paid upgrades"
msgstr "El meu lloc te comptes gratis amb opció de millores per pagament"
-#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1382
+#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1476
msgid "Site"
msgstr "Lloc"
#: ../../Zotlabs/Module/Admin.php:493 ../../Zotlabs/Module/Register.php:245
msgid "Registration"
-msgstr "Registre"
+msgstr "Inscripcions"
#: ../../Zotlabs/Module/Admin.php:494
msgid "File upload"
@@ -3784,7 +3691,7 @@ msgstr "Mida màxima en bytes d'imatges pujades. Per defecte es 0, el que vol di
#: ../../Zotlabs/Module/Admin.php:509
msgid "Does this site allow new member registration?"
-msgstr "Permet aquest lloc registre de nous membres?"
+msgstr "Permet aquest lloc l'inscripció de nous membres?"
#: ../../Zotlabs/Module/Admin.php:510
msgid "Invitation only"
@@ -3794,7 +3701,7 @@ msgstr "Només per invitació"
msgid ""
"Only allow new member registrations with an invitation code. Above register "
"policy must be set to Yes."
-msgstr "Només permet registre de nos membres amb codi d'invitació. A més la política de registre s'ha d'establir a Sí."
+msgstr "Només permet inscriure nous membres amb codi d'invitació. A més la política de registre s'ha d'establir a Sí."
#: ../../Zotlabs/Module/Admin.php:511
msgid "Which best describes the types of account offered by this hub?"
@@ -3802,11 +3709,11 @@ msgstr "Que es es que millor descriu la mena de comptes oferits per aquest conce
#: ../../Zotlabs/Module/Admin.php:512
msgid "Register text"
-msgstr "text de registre"
+msgstr "Text d'inscripció"
#: ../../Zotlabs/Module/Admin.php:512
msgid "Will be displayed prominently on the registration page."
-msgstr "Es mostrarà preminentment a la pàgina de registre"
+msgstr "Es mostrarà preminentment a la pàgina d'inscripció"
#: ../../Zotlabs/Module/Admin.php:513
msgid "Site homepage to show visitors (default: login box)"
@@ -3992,12 +3899,12 @@ msgid "0 for no expiration of imported content"
msgstr "0 vol dir sense temps d'expiració pel contingut importat"
#: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678
-#: ../../Zotlabs/Module/Settings.php:722
+#: ../../Zotlabs/Module/Settings.php:823
msgid "Off"
msgstr "Apagat"
#: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678
-#: ../../Zotlabs/Module/Settings.php:722
+#: ../../Zotlabs/Module/Settings.php:823
msgid "On"
msgstr "Funcionant"
@@ -4054,7 +3961,7 @@ msgid ""
"embedded content from that site is explicitly blocked."
msgstr "Tota la resta de contingut embegut seà filtrat, <strong>excepte</strong> contingut embegut d'aquest lloc que està blocat explícitament."
-#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1385
+#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1479
msgid "Security"
msgstr "Seguretat"
@@ -4222,7 +4129,7 @@ msgid "Account '%s' unblocked"
msgstr "S'ha desbloquejat el compte '%s'"
#: ../../Zotlabs/Module/Admin.php:1031 ../../Zotlabs/Module/Admin.php:1044
-#: ../../include/widgets.php:1383
+#: ../../include/widgets.php:1477
msgid "Accounts"
msgstr "Comptes"
@@ -4232,7 +4139,7 @@ msgstr "Sel·leciona-ho tot"
#: ../../Zotlabs/Module/Admin.php:1034
msgid "Registrations waiting for confirm"
-msgstr ""
+msgstr "Inscripcions esperant confirmació"
#: ../../Zotlabs/Module/Admin.php:1035
msgid "Request date"
@@ -4252,7 +4159,7 @@ msgstr "Tots els Canals"
#: ../../Zotlabs/Module/Admin.php:1049
msgid "Register date"
-msgstr "Data de registre"
+msgstr "Data d'inscripció"
#: ../../Zotlabs/Module/Admin.php:1050
msgid "Last login"
@@ -4328,7 +4235,7 @@ msgstr "Canal '%s' permet codi"
msgid "Channel '%s' code disallowed"
msgstr "Canal '%s' no permet codi"
-#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1384
+#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1478
msgid "Channels"
msgstr "Canals"
@@ -4348,7 +4255,7 @@ msgstr "Permet Codi"
msgid "Disallow Code"
msgstr "No Permet Codi"
-#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1611
+#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1626
msgid "Channel"
msgstr "Canal"
@@ -4387,7 +4294,7 @@ msgid "Enable"
msgstr "Activat"
#: ../../Zotlabs/Module/Admin.php:1330 ../../Zotlabs/Module/Admin.php:1420
-#: ../../include/widgets.php:1387
+#: ../../include/widgets.php:1481
msgid "Plugins"
msgstr "Plugins"
@@ -4396,8 +4303,8 @@ msgid "Toggle"
msgstr "Commutar"
#: ../../Zotlabs/Module/Admin.php:1332 ../../Zotlabs/Module/Admin.php:1615
-#: ../../Zotlabs/Lib/Apps.php:215 ../../include/widgets.php:638
-#: ../../include/nav.php:208
+#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:210
+#: ../../include/widgets.php:647
msgid "Settings"
msgstr "Ajustos"
@@ -4453,7 +4360,7 @@ msgstr "Descarrega el Repositori de Plugins"
msgid "Install new repo"
msgstr "Instal·la un nou repositori "
-#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:330
+#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:334
msgid "Install"
msgstr "Instal·lar"
@@ -4469,8 +4376,8 @@ msgstr "Repositori de Plugins Instal·lat"
msgid "Install a New Plugin Repository"
msgstr "Instal·la un Nou Repositori de Plugins"
-#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:77
-#: ../../Zotlabs/Module/Settings.php:616 ../../Zotlabs/Lib/Apps.php:330
+#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:72
+#: ../../Zotlabs/Module/Settings.php:670 ../../Zotlabs/Lib/Apps.php:334
msgid "Update"
msgstr "Actualització"
@@ -4487,7 +4394,7 @@ msgid "Screenshot"
msgstr "Copia de pantalla"
#: ../../Zotlabs/Module/Admin.php:1613 ../../Zotlabs/Module/Admin.php:1647
-#: ../../include/widgets.php:1388
+#: ../../include/widgets.php:1482
msgid "Themes"
msgstr "Temes"
@@ -4503,8 +4410,8 @@ msgstr "[No soportat]"
msgid "Log settings updated."
msgstr "Registre d'ajustos actualitzat."
-#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1409
-#: ../../include/widgets.php:1419
+#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1503
+#: ../../include/widgets.php:1513
msgid "Logs"
msgstr "Logs"
@@ -4524,7 +4431,7 @@ msgstr "Arxiu de registre"
msgid ""
"Must be writable by web server. Relative to your top-level webserver "
"directory."
-msgstr ""
+msgstr "Ha de ser escribible pel servidor web. Relatiu al directori de nivell superior del servidor web"
#: ../../Zotlabs/Module/Admin.php:1742
msgid "Log level"
@@ -4570,7 +4477,7 @@ msgstr "No es troba la definició del camp"
msgid "Edit Profile Field"
msgstr "Camp d'Edició del Perfil"
-#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1390
+#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1484
msgid "Profile Fields"
msgstr "Camps del Perfil"
@@ -4598,57 +4505,384 @@ msgstr "Camps Personalitzats"
msgid "Create Custom Field"
msgstr "Crear un Camp Personalitzat"
-#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53
-msgid "App installed."
-msgstr "Aplicació instal·lada."
+#: ../../Zotlabs/Module/New_channel.php:128
+#: ../../Zotlabs/Module/Register.php:231
+msgid "Name or caption"
+msgstr "Nom o llegenda"
-#: ../../Zotlabs/Module/Appman.php:46
-msgid "Malformed app."
-msgstr "Aplicació amb errors"
+#: ../../Zotlabs/Module/New_channel.php:128
+#: ../../Zotlabs/Module/Register.php:231
+msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""
+msgstr "Exemples: \"Pep Gomila\", \"Manel i els seus Cavalls\", \"Fútbol\", \"Grup d'Aviadors\""
-#: ../../Zotlabs/Module/Appman.php:104
-msgid "Embed code"
-msgstr "Codi embegut"
+#: ../../Zotlabs/Module/New_channel.php:130
+#: ../../Zotlabs/Module/Register.php:233
+msgid "Choose a short nickname"
+msgstr "Tria un àlies curt"
-#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107
-msgid "Edit App"
-msgstr "Edita l'Aplicació"
+#: ../../Zotlabs/Module/New_channel.php:130
+#: ../../Zotlabs/Module/Register.php:233
+#, php-format
+msgid ""
+"Your nickname will be used to create an easy to remember channel address "
+"e.g. nickname%s"
+msgstr "El teu àlies serà emprat per crear un nom fàcil per recordar l'adreça del canal p.e. àlies%s"
-#: ../../Zotlabs/Module/Appman.php:110
-msgid "Create App"
-msgstr "Crea l'Aplicació"
+#: ../../Zotlabs/Module/New_channel.php:132
+#: ../../Zotlabs/Module/Register.php:235
+msgid "Channel role and privacy"
+msgstr "Funció i privacitat del canal"
-#: ../../Zotlabs/Module/Appman.php:115
-msgid "Name of app"
-msgstr "Nom de l'Aplicació"
+#: ../../Zotlabs/Module/New_channel.php:132
+#: ../../Zotlabs/Module/Register.php:235
+msgid "Select a channel role with your privacy requirements."
+msgstr "Tria una funció pel canal amb els teus requisits de privacitat."
-#: ../../Zotlabs/Module/Appman.php:116
-msgid "Location (URL) of app"
-msgstr "Ubicació (URL) de l'aplicació"
+#: ../../Zotlabs/Module/New_channel.php:132
+#: ../../Zotlabs/Module/Register.php:235
+msgid "Read more about roles"
+msgstr "Llegix més sobre els rols"
-#: ../../Zotlabs/Module/Appman.php:118
-msgid "Photo icon URL"
-msgstr "Foto icona URL"
+#: ../../Zotlabs/Module/New_channel.php:135
+msgid "Create Channel"
+msgstr "Crea un Canal"
-#: ../../Zotlabs/Module/Appman.php:118
-msgid "80 x 80 pixels - optional"
-msgstr "80 x 80 pixels - opcional"
+#: ../../Zotlabs/Module/New_channel.php:136
+msgid ""
+"A channel is your identity on this network. It can represent a person, a "
+"blog, or a forum to name a few. Channels can make connections with other "
+"channels to share information with highly detailed permissions."
+msgstr "Un canal es la tva identitat en aquesta xarxa. Pot representar una persona, un bloc, o un fòrum per anomenar alguns. Els canals poden connectar-se amb altres canals per compartir informació amb permisos molt detallats."
-#: ../../Zotlabs/Module/Appman.php:119
-msgid "Categories (optional, comma separated list)"
-msgstr "Categories (opcional, lista separada per comes)"
+#: ../../Zotlabs/Module/New_channel.php:137
+msgid ""
+"or <a href=\"import\">import an existing channel</a> from another location."
+msgstr "o <a href=\"import\">importa un canal existent</a> des d'un altre ubicació."
-#: ../../Zotlabs/Module/Appman.php:120
-msgid "Version ID"
-msgstr "Versió ID"
+#: ../../Zotlabs/Module/Ping.php:265
+msgid "sent you a private message"
+msgstr "Se t'ha enviat un missatge privat"
-#: ../../Zotlabs/Module/Appman.php:121
-msgid "Price of app"
-msgstr "Preu de l'aplicació"
+#: ../../Zotlabs/Module/Ping.php:313
+msgid "added your channel"
+msgstr "el teu canal s'ha afegit"
-#: ../../Zotlabs/Module/Appman.php:122
-msgid "Location (URL) to purchase app"
-msgstr "Ubicació (URL) per comprar l'aplicació"
+#: ../../Zotlabs/Module/Ping.php:323
+msgid "g A l F d"
+msgstr "g A l F d"
+
+#: ../../Zotlabs/Module/Ping.php:346
+msgid "[today]"
+msgstr "[avui]"
+
+#: ../../Zotlabs/Module/Ping.php:355
+msgid "posted an event"
+msgstr "enviat un esdeveniment"
+
+#: ../../Zotlabs/Module/Notifications.php:30
+msgid "Invalid request identifier."
+msgstr "Sol·licitud d'identificació invàlida."
+
+#: ../../Zotlabs/Module/Notifications.php:39
+msgid "Discard"
+msgstr "Descarta"
+
+#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:193
+msgid "Mark all system notifications seen"
+msgstr "Marca totes les notificacions vistes"
+
+#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228
+#: ../../include/conversation.php:963
+msgid "Poke"
+msgstr "Esperonar"
+
+#: ../../Zotlabs/Module/Poke.php:169
+msgid "Poke somebody"
+msgstr "Emprenyar algú"
+
+#: ../../Zotlabs/Module/Poke.php:172
+msgid "Poke/Prod"
+msgstr "Esperonat/Picat"
+
+#: ../../Zotlabs/Module/Poke.php:173
+msgid "Poke, prod or do other things to somebody"
+msgstr "emprenyar, picar o fer altres coses a algú"
+
+#: ../../Zotlabs/Module/Poke.php:180
+msgid "Recipient"
+msgstr "Destinatari"
+
+#: ../../Zotlabs/Module/Poke.php:181
+msgid "Choose what you wish to do to recipient"
+msgstr "Tria que vols fer amb el destinatari"
+
+#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185
+msgid "Make this post private"
+msgstr "Fer aquesta entrada privada"
+
+#: ../../Zotlabs/Module/Oexchange.php:27
+msgid "Unable to find your hub."
+msgstr "No es possible trobar el node"
+
+#: ../../Zotlabs/Module/Oexchange.php:41
+msgid "Post successful."
+msgstr "Entrada realitzada amb èxit. "
+
+#: ../../Zotlabs/Module/Openid.php:30
+msgid "OpenID protocol error. No ID returned."
+msgstr "Error del protocol OpenID. No ha retornat ID"
+
+#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:285
+msgid "Login failed."
+msgstr "Identificació fallida."
+
+#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63
+msgid "Invalid profile identifier."
+msgstr "Identificador invàlid de perfil."
+
+#: ../../Zotlabs/Module/Profperm.php:115
+msgid "Profile Visibility Editor"
+msgstr "Perfil del Editor de Visibilitat"
+
+#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1290
+msgid "Profile"
+msgstr "Perfil"
+
+#: ../../Zotlabs/Module/Profperm.php:119
+msgid "Click on a contact to add or remove."
+msgstr "Clica sobre el contacte per afegir o esborrar."
+
+#: ../../Zotlabs/Module/Profperm.php:128
+msgid "Visible To"
+msgstr "Visible per"
+
+#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59
+msgid "This setting requires special processing and editing has been blocked."
+msgstr "Aquest ajust requereix un procés espedial i l'edició esta bloquejada."
+
+#: ../../Zotlabs/Module/Pconfig.php:48
+msgid "Configuration Editor"
+msgstr "Editor de Configuració"
+
+#: ../../Zotlabs/Module/Pconfig.php:49
+msgid ""
+"Warning: Changing some settings could render your channel inoperable. Please"
+" leave this page unless you are comfortable with and knowledgeable about how"
+" to correctly use this feature."
+msgstr "atenció: Realitzar segons quins ajustos pot fer el canal inoperable. Deixa aquesta pàgina si no estas segur i tens suficients coneixements sobre l'ús correcte d'aquesta característica."
+
+#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32
+#, php-format
+msgid "Fetching URL returns error: %1$s"
+msgstr "URL sol·licitada retorna error: %1$s"
+
+#: ../../Zotlabs/Module/Siteinfo.php:19
+#, php-format
+msgid "Version %s"
+msgstr "Versió %s"
+
+#: ../../Zotlabs/Module/Siteinfo.php:34
+msgid "Installed plugins/addons/apps:"
+msgstr "Plugins/addons/apps Instal·lats:"
+
+#: ../../Zotlabs/Module/Siteinfo.php:36
+msgid "No installed plugins/addons/apps"
+msgstr "Plugins/addons/apps no instal·lats"
+
+#: ../../Zotlabs/Module/Siteinfo.php:49
+msgid ""
+"This is a hub of $Projectname - a global cooperative network of "
+"decentralized privacy enhanced websites."
+msgstr "Aquest és un node de $Projectname, una xarxa cooperativa mundial de llocs web descentralitzats amb gran control de la privacitat."
+
+#: ../../Zotlabs/Module/Siteinfo.php:51
+msgid "Tag: "
+msgstr "Etiqueta:"
+
+#: ../../Zotlabs/Module/Siteinfo.php:53
+msgid "Last background fetch: "
+msgstr "Última actualització en rerefons:"
+
+#: ../../Zotlabs/Module/Siteinfo.php:55
+msgid "Current load average: "
+msgstr "Càrrega actual mitja:"
+
+#: ../../Zotlabs/Module/Siteinfo.php:58
+msgid "Running at web location"
+msgstr "Correguent en el lloc web"
+
+#: ../../Zotlabs/Module/Siteinfo.php:59
+msgid ""
+"Please visit <a href=\"http://hubzilla.org\">hubzilla.org</a> to learn more "
+"about $Projectname."
+msgstr "Visita <a href=\"http://hubzilla.org\">hubzilla.org</a> per saber-ne més de $Projectname."
+
+#: ../../Zotlabs/Module/Siteinfo.php:60
+msgid "Bug reports and issues: please visit"
+msgstr "Per informar d'errors o problemes ves a"
+
+#: ../../Zotlabs/Module/Siteinfo.php:62
+msgid "$projectname issues"
+msgstr "$projectname qüestions"
+
+#: ../../Zotlabs/Module/Siteinfo.php:63
+msgid ""
+"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot "
+"com"
+msgstr "Per suggerències, felicitacions i altres, envia'ns un mail a «redmatrix» [arroba] librelist [punt] com"
+
+#: ../../Zotlabs/Module/Siteinfo.php:65
+msgid "Site Administrators"
+msgstr "Administradors del lloc"
+
+#: ../../Zotlabs/Module/Rmagic.php:44
+msgid ""
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
+msgstr "Em trobat un problema durant l'inici de sessió amb el OpenID que has facilitat. verifica l'ortografia correcta de la ID."
+
+#: ../../Zotlabs/Module/Rmagic.php:44
+msgid "The error message was:"
+msgstr "El missatge d'error fou:"
+
+#: ../../Zotlabs/Module/Rmagic.php:48
+msgid "Authentication failed."
+msgstr "Ha fallat l'autentificació."
+
+#: ../../Zotlabs/Module/Rmagic.php:88
+msgid "Remote Authentication"
+msgstr "Autentificació Remota"
+
+#: ../../Zotlabs/Module/Rmagic.php:89
+msgid "Enter your channel address (e.g. channel@example.com)"
+msgstr "Introdueix la teva adreça del canal (eg canal@exemple.com)"
+
+#: ../../Zotlabs/Module/Rmagic.php:90
+msgid "Authenticate"
+msgstr "Autentica't"
+
+#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1337
+msgid "Public Hubs"
+msgstr "Nodes Públics"
+
+#: ../../Zotlabs/Module/Pubsites.php:25
+msgid ""
+"The listed hubs allow public registration for the $Projectname network. All "
+"hubs in the network are interlinked so membership on any of them conveys "
+"membership in the network as a whole. Some hubs may require subscription or "
+"provide tiered service plans. The hub itself <strong>may</strong> provide "
+"additional details."
+msgstr "Els nodes llistats permeten registrar usuaris de la xarxa $Projectname. Com que tots els nodes estan enllaçats entre ells, la identitat és vàlida a tota la xarxa. Alguns nodes poden demanar subscripció o oferir serveis addicional de pagament. Per a més detalls, <strong>proveu</strong> de seguir els enllaços dels proveïdors."
+
+#: ../../Zotlabs/Module/Pubsites.php:31
+msgid "Hub URL"
+msgstr "URL del Node"
+
+#: ../../Zotlabs/Module/Pubsites.php:31
+msgid "Access Type"
+msgstr "Tipus d'accés"
+
+#: ../../Zotlabs/Module/Pubsites.php:31
+msgid "Registration Policy"
+msgstr "Condicions d'inscripció"
+
+#: ../../Zotlabs/Module/Pubsites.php:31
+msgid "Stats"
+msgstr "Estadístiques"
+
+#: ../../Zotlabs/Module/Pubsites.php:31
+msgid "Software"
+msgstr "Programari"
+
+#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103
+#: ../../include/conversation.php:962
+msgid "Ratings"
+msgstr "Valoracions"
+
+#: ../../Zotlabs/Module/Pubsites.php:38
+msgid "Rate"
+msgstr "Puntua"
+
+#: ../../Zotlabs/Module/Profile_photo.php:186
+msgid ""
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
+msgstr "Refresca la memòria cau del navegador si la foto no s'actualitza immediatament. Dreceres: «Ctrl+F5» i «Ctrl+Maj+R»"
+
+#: ../../Zotlabs/Module/Profile_photo.php:389
+msgid "Upload Profile Photo"
+msgstr "Puja una Foto pel Perfil"
+
+#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:155
+#: ../../Zotlabs/Module/Editblock.php:108
+msgid "Block Name"
+msgstr "Nom del Bloc"
+
+#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2238
+msgid "Blocks"
+msgstr "Bloc"
+
+#: ../../Zotlabs/Module/Blocks.php:156
+msgid "Block Title"
+msgstr "Títol del bloc"
+
+#: ../../Zotlabs/Module/Rate.php:160
+msgid "Website:"
+msgstr "Lloc web:"
+
+#: ../../Zotlabs/Module/Rate.php:163
+#, php-format
+msgid "Remote Channel [%s] (not yet known on this site)"
+msgstr "Canal Remot [%s] (encara no es coneix en aquest lloc)"
+
+#: ../../Zotlabs/Module/Rate.php:164
+msgid "Rating (this information is public)"
+msgstr "Valoració (aquesta informació és pública)"
+
+#: ../../Zotlabs/Module/Rate.php:165
+msgid "Optionally explain your rating (this information is public)"
+msgstr "Opcionalment pots explicar la teva qualificació (aquesta informació és pública)"
+
+#: ../../Zotlabs/Module/Ratings.php:73
+msgid "No ratings"
+msgstr "No valorat"
+
+#: ../../Zotlabs/Module/Ratings.php:104
+msgid "Rating: "
+msgstr "Valoració:"
+
+#: ../../Zotlabs/Module/Ratings.php:105
+msgid "Website: "
+msgstr "Lloc web:"
+
+#: ../../Zotlabs/Module/Ratings.php:107
+msgid "Description: "
+msgstr "Descripció:"
+
+#: ../../Zotlabs/Module/Apps.php:47 ../../include/nav.php:165
+#: ../../include/widgets.php:102
+msgid "Apps"
+msgstr "Aplicatius"
+
+#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1243
+msgid "Title (optional)"
+msgstr "Títol (opcional)"
+
+#: ../../Zotlabs/Module/Editblock.php:133
+msgid "Edit Block"
+msgstr "Editar Bloc"
+
+#: ../../Zotlabs/Module/Common.php:14
+msgid "No channel."
+msgstr "No s'ha trobat el canal"
+
+#: ../../Zotlabs/Module/Common.php:43
+msgid "Common connections"
+msgstr "Connexions en comú"
+
+#: ../../Zotlabs/Module/Common.php:48
+msgid "No connections in common."
+msgstr "No hi ha connexions en comú."
#: ../../Zotlabs/Module/Rbmark.php:94
msgid "Select a bookmark folder"
@@ -4668,12 +4902,12 @@ msgstr "O entra un nou nom de favorit"
#: ../../Zotlabs/Module/Register.php:49
msgid "Maximum daily site registrations exceeded. Please try again tomorrow."
-msgstr "Nombre màxim de registres diaris excedit. Si us plau, provau demà."
+msgstr "Nombre màxim d'inscripcions diaris excedit. Si us plau, provau demà."
#: ../../Zotlabs/Module/Register.php:55
msgid ""
"Please indicate acceptance of the Terms of Service. Registration failed."
-msgstr "El registre ha fallat. Si et plau, indica que acceptes les Condicions del Servei."
+msgstr "L'inscripció ha fallat. Si et plau, indica que acceptes les Condicions del Servei."
#: ../../Zotlabs/Module/Register.php:89
msgid "Passwords do not match."
@@ -4687,29 +4921,29 @@ msgstr "Registrat amb èxit. Si et plau revisa el teu correu electrònic per a l
#: ../../Zotlabs/Module/Register.php:137
msgid "Your registration is pending approval by the site owner."
-msgstr "El teu registre esta pendent de validació pel propietari del lloc."
+msgstr "La teva inscripció esta pendent de validació pel propietari del lloc."
#: ../../Zotlabs/Module/Register.php:140
msgid "Your registration can not be processed."
-msgstr "El teu registre no ha pogut ser processat. "
+msgstr "La teva inscripció no ha pogut ser processat. "
#: ../../Zotlabs/Module/Register.php:184
msgid "Registration on this hub is disabled."
-msgstr "El registre en aquest node està deshabilitat."
+msgstr "L'inscripció en aquest node està deshabilitat."
#: ../../Zotlabs/Module/Register.php:193
msgid "Registration on this hub is by approval only."
-msgstr "El registre en aquest node es únicament per validació."
+msgstr "L'inscripció en aquest node es únicament per validació."
#: ../../Zotlabs/Module/Register.php:194
msgid "<a href=\"pubsites\">Register at another affiliated hub.</a>"
-msgstr "<a href=\"pubsites\">Registre en altre node afiliat</a>"
+msgstr "<a href=\"pubsites\">Inscripció en altre node afiliat</a>"
#: ../../Zotlabs/Module/Register.php:204
msgid ""
"This site has exceeded the number of allowed daily account registrations. "
"Please try again tomorrow."
-msgstr "El lloc ha excedit el límit màxim diari de nous comptes/registres. Provau demà."
+msgstr "El lloc ha excedit el límit màxim diari de nous comptes/inscripció. Provau demà."
#: ../../Zotlabs/Module/Register.php:215
msgid "Terms of Service"
@@ -4753,120 +4987,154 @@ msgstr "sí"
msgid "Membership on this site is by invitation only."
msgstr "La pertinença en aquest lloc es per invitació exclusivament."
-#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:147
-#: ../../boot.php:1685
+#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:149
+#: ../../boot.php:1686
msgid "Register"
-msgstr "Registre"
+msgstr "Inscripció"
-#: ../../Zotlabs/Module/Register.php:262
-msgid "Proceed to create your first channel"
-msgstr "Comença a crear el teu primer canal"
+#: ../../Zotlabs/Module/Register.php:263
+msgid ""
+"This site may require email verification after submitting this form. If you "
+"are returned to a login page, please check your email for instructions."
+msgstr ""
#: ../../Zotlabs/Module/Regmod.php:15
msgid "Please login."
msgstr "Inicia Sessió."
-#: ../../Zotlabs/Module/Removeaccount.php:34
+#: ../../Zotlabs/Module/Removeaccount.php:35
msgid ""
"Account removals are not allowed within 48 hours of changing the account "
"password."
msgstr "L'esborrat de comptes no està permès fins que transcorren 48 hores des de l'últim canvi de contrasenya."
-#: ../../Zotlabs/Module/Removeaccount.php:56
+#: ../../Zotlabs/Module/Removeaccount.php:57
msgid "Remove This Account"
msgstr "Esborra el compte"
-#: ../../Zotlabs/Module/Removeaccount.php:57
-#: ../../Zotlabs/Module/Removeme.php:59
+#: ../../Zotlabs/Module/Removeaccount.php:58
+#: ../../Zotlabs/Module/Removeme.php:61
msgid "WARNING: "
msgstr "ALERTA:"
-#: ../../Zotlabs/Module/Removeaccount.php:57
+#: ../../Zotlabs/Module/Removeaccount.php:58
msgid ""
"This account and all its channels will be completely removed from the "
"network. "
msgstr "Aquest compte i tots els seus canals s'estan apunt d'esborrar totalment de la xarxa."
-#: ../../Zotlabs/Module/Removeaccount.php:57
-#: ../../Zotlabs/Module/Removeme.php:59
+#: ../../Zotlabs/Module/Removeaccount.php:58
+#: ../../Zotlabs/Module/Removeme.php:61
msgid "This action is permanent and can not be undone!"
msgstr "Aquesta acció és irreversible!"
-#: ../../Zotlabs/Module/Removeaccount.php:58
-#: ../../Zotlabs/Module/Removeme.php:60
+#: ../../Zotlabs/Module/Removeaccount.php:59
+#: ../../Zotlabs/Module/Removeme.php:62
msgid "Please enter your password for verification:"
msgstr "Aquesta acció requereix tornar a introduir la contrasenya:"
-#: ../../Zotlabs/Module/Removeaccount.php:59
+#: ../../Zotlabs/Module/Removeaccount.php:60
msgid ""
"Remove this account, all its channels and all its channel clones from the "
"network"
msgstr "Esborra de la xarxa aquest compte, tots els seus canals, i tots els seus canals clons."
-#: ../../Zotlabs/Module/Removeaccount.php:59
+#: ../../Zotlabs/Module/Removeaccount.php:60
msgid ""
"By default only the instances of the channels located on this hub will be "
"removed from the network"
msgstr "Per defecte, només les instancies dels canal ubicats en aquest node poden esser esborrades de la xarxa"
-#: ../../Zotlabs/Module/Removeaccount.php:60
-#: ../../Zotlabs/Module/Settings.php:705
+#: ../../Zotlabs/Module/Removeaccount.php:61
+#: ../../Zotlabs/Module/Settings.php:759
msgid "Remove Account"
msgstr "Esborra el Compte"
-#: ../../Zotlabs/Module/Removeme.php:33
+#: ../../Zotlabs/Module/Removeme.php:35
msgid ""
"Channel removals are not allowed within 48 hours of changing the account "
"password."
msgstr "L'esborrat de canals no està permès fins que transcorren 48 hores des de l'últim canvi de contrasenya."
-#: ../../Zotlabs/Module/Removeme.php:58
+#: ../../Zotlabs/Module/Removeme.php:60
msgid "Remove This Channel"
msgstr "Elimina Aquest Canal"
-#: ../../Zotlabs/Module/Removeme.php:59
+#: ../../Zotlabs/Module/Removeme.php:61
msgid "This channel will be completely removed from the network. "
msgstr "Aquest canal serà completament eliminat de la xarxa."
-#: ../../Zotlabs/Module/Removeme.php:61
+#: ../../Zotlabs/Module/Removeme.php:63
msgid "Remove this channel and all its clones from the network"
msgstr "Elimina aquest canal i els seus clons de la xarxa"
-#: ../../Zotlabs/Module/Removeme.php:61
+#: ../../Zotlabs/Module/Removeme.php:63
msgid ""
"By default only the instance of the channel located on this hub will be "
"removed from the network"
msgstr "Per defecte, només la instancia del canal ubicat en aquest node pot esser esborrat de la xarxa"
-#: ../../Zotlabs/Module/Removeme.php:62 ../../Zotlabs/Module/Settings.php:1124
+#: ../../Zotlabs/Module/Removeme.php:64 ../../Zotlabs/Module/Settings.php:1219
msgid "Remove Channel"
msgstr "Elimina el canal"
-#: ../../Zotlabs/Module/Rmagic.php:44
+#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56
+msgid "Export Channel"
+msgstr "Exportar Canal"
+
+#: ../../Zotlabs/Module/Uexport.php:57
msgid ""
-"We encountered a problem while logging in with the OpenID you provided. "
-"Please check the correct spelling of the ID."
-msgstr "Em trobat un problema durant l'inici de sessió amb el OpenID que has facilitat. verifica l'ortografia correcta de la ID."
+"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 "Exporta la informació bàsica del canal a un arxiu. Això actua com a còpia de recolzament de les teves connexions, permisos, perfil i dades bàsiques, les quals pots emprar per traslladar aquestes dades a una altre lloc/node, però no conté el contingut del canal."
-#: ../../Zotlabs/Module/Rmagic.php:44
-msgid "The error message was:"
-msgstr "El missatge d'error fou:"
+#: ../../Zotlabs/Module/Uexport.php:58
+msgid "Export Content"
+msgstr "Exportar el Contingut"
-#: ../../Zotlabs/Module/Rmagic.php:48
-msgid "Authentication failed."
-msgstr "Ha fallat l'autentificació."
+#: ../../Zotlabs/Module/Uexport.php:59
+msgid ""
+"Export your channel information and recent content to a JSON backup that can"
+" be restored or imported to another server hub. This backs up all of your "
+"connections, permissions, profile data and several months of posts. This "
+"file may be VERY large. Please be patient - it may take several minutes for"
+" this download to begin."
+msgstr "Exporta la informació del canal i tot el contingut recent a un arxiu de recolzament JSON que por ser restaurat o importat en altre lloc/node. Això còpia totes les teves connexions, permisos, perfil i dades i mesos de entrades. L'arxiu pot ser MOLT gran. Si et plau, sigues pacient ja que pot trigar uns minuts a començar a baixar."
-#: ../../Zotlabs/Module/Rmagic.php:88
-msgid "Remote Authentication"
-msgstr "Autentificació Remota"
+#: ../../Zotlabs/Module/Uexport.php:60
+msgid "Export your posts from a given year."
+msgstr "Exporta les teves entrades d'un any donat."
-#: ../../Zotlabs/Module/Rmagic.php:89
-msgid "Enter your channel address (e.g. channel@example.com)"
-msgstr "Introdueix la teva adreça del canal (eg canal@exemple.com)"
+#: ../../Zotlabs/Module/Uexport.php:62
+msgid ""
+"You may also export your posts and conversations for a particular year or "
+"month. Adjust the date in your browser location bar to select other dates. "
+"If the export fails (possibly due to memory exhaustion on your server hub), "
+"please try again selecting a more limited date range."
+msgstr "Pots també exportar les teves entrades i conversacions d'un any o un mes en particular. Ajusta la data a la barra de direccions del navegador per seleccionar altres dates. Si la exportació falla (possiblement degut al esgotament de la memòria del node servidor), si et plau, intenta de nou la selecció d'un rang de dates més limitat."
-#: ../../Zotlabs/Module/Rmagic.php:90
-msgid "Authenticate"
-msgstr "Autentica't"
+#: ../../Zotlabs/Module/Uexport.php:63
+#, php-format
+msgid ""
+"To select all posts for a given year, such as this year, visit <a "
+"href=\"%1$s\">%2$s</a>"
+msgstr "Per seleccionar tots els missatges per a un any determinat, com aquest any, visiteu <a href=\"%1$s\">%2$s</a>"
+
+#: ../../Zotlabs/Module/Uexport.php:64
+#, 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 "Per seleccionar tots els missatges per a un mes determinat, com el de gener d'aquest any, visiteu <a href=\"%1$s\">%2$s</a>"
+
+#: ../../Zotlabs/Module/Uexport.php:65
+#, 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 "Aquests arxius de contingut poden ser importats o restaurats per visitar <a href=\"%1$s\">%2$s</a> en qualsevol lloc que conté el teu canal. Per obtenir els millors resultats si us plau, importar o restaurar aquests en ordre de data (la més antiga primer)."
#: ../../Zotlabs/Module/Search.php:216
#, php-format
@@ -4882,609 +5150,652 @@ msgstr "Resultats de cerca per: %s"
msgid "No service class restrictions found."
msgstr "No s'han trobat restriccions de clase."
-#: ../../Zotlabs/Module/Settings.php:69
+#: ../../Zotlabs/Module/Settings.php:64
msgid "Name is required"
msgstr "Es requereix un Nom"
-#: ../../Zotlabs/Module/Settings.php:73
+#: ../../Zotlabs/Module/Settings.php:68
msgid "Key and Secret are required"
msgstr "Es requereix Clau (Key) i el Secret (Secret)"
-#: ../../Zotlabs/Module/Settings.php:225
+#: ../../Zotlabs/Module/Settings.php:138
+#, php-format
+msgid "This channel is limited to %d tokens"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings.php:144
+msgid "Name and Password are required."
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings.php:168
+msgid "Token saved."
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings.php:274
msgid "Not valid email."
msgstr "E-correu no vàlid."
-#: ../../Zotlabs/Module/Settings.php:228
+#: ../../Zotlabs/Module/Settings.php:277
msgid "Protected email address. Cannot change to that email."
msgstr "Adreça d'e-correu protegida. No es pot canviar a aquest e-correu."
-#: ../../Zotlabs/Module/Settings.php:237
+#: ../../Zotlabs/Module/Settings.php:286
msgid "System failure storing new email. Please try again."
msgstr "Fallada del sistema al guardar un nou correu. Si us plau, proba de nou."
-#: ../../Zotlabs/Module/Settings.php:254
+#: ../../Zotlabs/Module/Settings.php:303
msgid "Password verification failed."
msgstr "La verificació de la contrasenya ha fallat."
-#: ../../Zotlabs/Module/Settings.php:261
+#: ../../Zotlabs/Module/Settings.php:310
msgid "Passwords do not match. Password unchanged."
msgstr "Les contrasenyes no coincideixen. Contrasenya sense canvis."
-#: ../../Zotlabs/Module/Settings.php:265
+#: ../../Zotlabs/Module/Settings.php:314
msgid "Empty passwords are not allowed. Password unchanged."
msgstr "Les contrasenyes en blanc no estan permesas. Contrasenya sense canvis."
-#: ../../Zotlabs/Module/Settings.php:279
+#: ../../Zotlabs/Module/Settings.php:328
msgid "Password changed."
msgstr "Contrasenya canviada."
-#: ../../Zotlabs/Module/Settings.php:281
+#: ../../Zotlabs/Module/Settings.php:330
msgid "Password update failed. Please try again."
msgstr "L'actualització de la contrasenya va fallar. Si us plau, torneu a intentar-ho."
-#: ../../Zotlabs/Module/Settings.php:525
+#: ../../Zotlabs/Module/Settings.php:579
msgid "Settings updated."
msgstr "Ajustes actualizados."
-#: ../../Zotlabs/Module/Settings.php:589 ../../Zotlabs/Module/Settings.php:615
-#: ../../Zotlabs/Module/Settings.php:651
+#: ../../Zotlabs/Module/Settings.php:643 ../../Zotlabs/Module/Settings.php:669
+#: ../../Zotlabs/Module/Settings.php:705
msgid "Add application"
msgstr "Afegir aplicatiu"
-#: ../../Zotlabs/Module/Settings.php:592
+#: ../../Zotlabs/Module/Settings.php:646
msgid "Name of application"
msgstr "Nom de l'aplicatiu"
-#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:619
+#: ../../Zotlabs/Module/Settings.php:647 ../../Zotlabs/Module/Settings.php:673
msgid "Consumer Key"
msgstr "Consumer Key"
-#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:594
+#: ../../Zotlabs/Module/Settings.php:647 ../../Zotlabs/Module/Settings.php:648
msgid "Automatically generated - change if desired. Max length 20"
msgstr "Generat automàticament- Canvia-ho si ho vols. Max. longitud 20"
-#: ../../Zotlabs/Module/Settings.php:594 ../../Zotlabs/Module/Settings.php:620
+#: ../../Zotlabs/Module/Settings.php:648 ../../Zotlabs/Module/Settings.php:674
msgid "Consumer Secret"
msgstr "Consumer Secret"
-#: ../../Zotlabs/Module/Settings.php:595 ../../Zotlabs/Module/Settings.php:621
+#: ../../Zotlabs/Module/Settings.php:649 ../../Zotlabs/Module/Settings.php:675
msgid "Redirect"
msgstr "Redirecciona"
-#: ../../Zotlabs/Module/Settings.php:595
+#: ../../Zotlabs/Module/Settings.php:649
msgid ""
"Redirect URI - leave blank unless your application specifically requires "
"this"
msgstr "URI redirigida - No canviar excepte perquè el teu aplicatiu ho requereixi."
-#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Settings.php:622
+#: ../../Zotlabs/Module/Settings.php:650 ../../Zotlabs/Module/Settings.php:676
msgid "Icon url"
msgstr "Icona de url"
-#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Sources.php:112
+#: ../../Zotlabs/Module/Settings.php:650 ../../Zotlabs/Module/Sources.php:112
#: ../../Zotlabs/Module/Sources.php:147
msgid "Optional"
msgstr "Opcional"
-#: ../../Zotlabs/Module/Settings.php:607
+#: ../../Zotlabs/Module/Settings.php:661
msgid "Application not found."
msgstr "Aplicatiu no trobat."
-#: ../../Zotlabs/Module/Settings.php:650
+#: ../../Zotlabs/Module/Settings.php:704
msgid "Connected Apps"
msgstr "Aplicatius Conectats"
-#: ../../Zotlabs/Module/Settings.php:654
+#: ../../Zotlabs/Module/Settings.php:708
msgid "Client key starts with"
msgstr "La clau del client comença amb"
-#: ../../Zotlabs/Module/Settings.php:655
+#: ../../Zotlabs/Module/Settings.php:709
msgid "No name"
msgstr "Sin nombre"
-#: ../../Zotlabs/Module/Settings.php:656
+#: ../../Zotlabs/Module/Settings.php:710
msgid "Remove authorization"
msgstr "Elimina autorització"
-#: ../../Zotlabs/Module/Settings.php:669
+#: ../../Zotlabs/Module/Settings.php:723
msgid "No feature settings configured"
msgstr "No hi ha opcions de les funcions configurades"
-#: ../../Zotlabs/Module/Settings.php:676
+#: ../../Zotlabs/Module/Settings.php:730
msgid "Feature/Addon Settings"
msgstr "Ajustos de Complements"
-#: ../../Zotlabs/Module/Settings.php:699
+#: ../../Zotlabs/Module/Settings.php:753
msgid "Account Settings"
msgstr "Ajustos de Compte"
-#: ../../Zotlabs/Module/Settings.php:700
+#: ../../Zotlabs/Module/Settings.php:754
msgid "Current Password"
msgstr "Contrasenya Actual"
-#: ../../Zotlabs/Module/Settings.php:701
+#: ../../Zotlabs/Module/Settings.php:755
msgid "Enter New Password"
msgstr "Entra la Nova Contrasenya"
-#: ../../Zotlabs/Module/Settings.php:702
+#: ../../Zotlabs/Module/Settings.php:756
msgid "Confirm New Password"
msgstr "Confirma la Nova Contrasenya"
-#: ../../Zotlabs/Module/Settings.php:702
+#: ../../Zotlabs/Module/Settings.php:756
msgid "Leave password fields blank unless changing"
msgstr "Deixa els camps de contrasenya en blanc llevat que la vulguis canviar"
-#: ../../Zotlabs/Module/Settings.php:704
-#: ../../Zotlabs/Module/Settings.php:1041
+#: ../../Zotlabs/Module/Settings.php:758
+#: ../../Zotlabs/Module/Settings.php:1136
msgid "Email Address:"
msgstr "Adreça de E-Correu:"
-#: ../../Zotlabs/Module/Settings.php:706
+#: ../../Zotlabs/Module/Settings.php:760
msgid "Remove this account including all its channels"
msgstr "Esborra aquest compte inclosos tots els seus canals"
-#: ../../Zotlabs/Module/Settings.php:729
+#: ../../Zotlabs/Module/Settings.php:789
+msgid ""
+"Use this form to create temporary access identifiers to share things with "
+"non-members. These identities may be used in Access Control Lists and "
+"visitors may login using these credentials to access the private content."
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings.php:791
+msgid ""
+"You may also provide <em>dropbox</em> style access links to friends and "
+"associates by adding the Login Password to any specific site URL as shown. "
+"Examples:"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings.php:796 ../../include/widgets.php:614
+msgid "Guest Access Tokens"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings.php:803
+msgid "Login Name"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings.php:804
+msgid "Login Password"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings.php:805
+msgid "Expires (yyyy-mm-dd)"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings.php:830
msgid "Additional Features"
msgstr "Característiques Addicionals"
-#: ../../Zotlabs/Module/Settings.php:753
+#: ../../Zotlabs/Module/Settings.php:854
msgid "Connector Settings"
msgstr "Ajustos de Connector"
-#: ../../Zotlabs/Module/Settings.php:792
+#: ../../Zotlabs/Module/Settings.php:893
msgid "No special theme for mobile devices"
msgstr "No emprar tema especial per aparells mòbils"
-#: ../../Zotlabs/Module/Settings.php:795
+#: ../../Zotlabs/Module/Settings.php:896
#, php-format
msgid "%s - (Experimental)"
msgstr "%s - (Experimental)"
-#: ../../Zotlabs/Module/Settings.php:837
+#: ../../Zotlabs/Module/Settings.php:938
msgid "Display Settings"
msgstr "Ajustos de Pantalla"
-#: ../../Zotlabs/Module/Settings.php:838
+#: ../../Zotlabs/Module/Settings.php:939
msgid "Theme Settings"
msgstr "Ajustos de Tema"
-#: ../../Zotlabs/Module/Settings.php:839
+#: ../../Zotlabs/Module/Settings.php:940
msgid "Custom Theme Settings"
msgstr "Ajustos Personals de Tema"
-#: ../../Zotlabs/Module/Settings.php:840
+#: ../../Zotlabs/Module/Settings.php:941
msgid "Content Settings"
msgstr "Ajustos de Contingut"
-#: ../../Zotlabs/Module/Settings.php:846
+#: ../../Zotlabs/Module/Settings.php:947
msgid "Display Theme:"
msgstr "Ajustos de Tema:"
-#: ../../Zotlabs/Module/Settings.php:847
+#: ../../Zotlabs/Module/Settings.php:948
msgid "Mobile Theme:"
msgstr "Tema Mòbil:"
-#: ../../Zotlabs/Module/Settings.php:848
+#: ../../Zotlabs/Module/Settings.php:949
msgid "Preload images before rendering the page"
msgstr "Precarrega les imatges abans de dibuixar la pàgina"
-#: ../../Zotlabs/Module/Settings.php:848
+#: ../../Zotlabs/Module/Settings.php:949
msgid ""
"The subjective page load time will be longer but the page will be ready when"
" displayed"
msgstr "El temps subjectiu per carregar la pàgina pot ser llarg però la pàgina estarà preparada quan es mostri"
-#: ../../Zotlabs/Module/Settings.php:849
+#: ../../Zotlabs/Module/Settings.php:950
msgid "Enable user zoom on mobile devices"
msgstr "Zoom d'usuari en dispositius mòbils"
-#: ../../Zotlabs/Module/Settings.php:850
+#: ../../Zotlabs/Module/Settings.php:951
msgid "Update browser every xx seconds"
msgstr "Actualitza el navegador cada xx segons"
-#: ../../Zotlabs/Module/Settings.php:850
+#: ../../Zotlabs/Module/Settings.php:951
msgid "Minimum of 10 seconds, no maximum"
msgstr "Mínim de 10 segons, sense màxim"
-#: ../../Zotlabs/Module/Settings.php:851
+#: ../../Zotlabs/Module/Settings.php:952
msgid "Maximum number of conversations to load at any time:"
msgstr "Nombre màxim de conversacions a càrregar cada vegada"
-#: ../../Zotlabs/Module/Settings.php:851
+#: ../../Zotlabs/Module/Settings.php:952
msgid "Maximum of 100 items"
msgstr "Màxim de 100 elements"
-#: ../../Zotlabs/Module/Settings.php:852
+#: ../../Zotlabs/Module/Settings.php:953
msgid "Show emoticons (smilies) as images"
msgstr "Mostra emoticons (smilies) com a imatges"
-#: ../../Zotlabs/Module/Settings.php:853
+#: ../../Zotlabs/Module/Settings.php:954
msgid "Link post titles to source"
msgstr "Enllaça a l'origen els títols de l'entrada"
-#: ../../Zotlabs/Module/Settings.php:854
+#: ../../Zotlabs/Module/Settings.php:955
msgid "System Page Layout Editor - (advanced)"
msgstr "Editor de Disseny de la Pàgina del Sistema - (avançat)"
-#: ../../Zotlabs/Module/Settings.php:857
+#: ../../Zotlabs/Module/Settings.php:958
msgid "Use blog/list mode on channel page"
msgstr "Empra el mode blog/llista a la pàgina del canal"
-#: ../../Zotlabs/Module/Settings.php:857 ../../Zotlabs/Module/Settings.php:858
+#: ../../Zotlabs/Module/Settings.php:958 ../../Zotlabs/Module/Settings.php:959
msgid "(comments displayed separately)"
msgstr "(Observacions es mostren per separat)"
-#: ../../Zotlabs/Module/Settings.php:858
+#: ../../Zotlabs/Module/Settings.php:959
msgid "Use blog/list mode on grid page"
msgstr "Empra el mode de blog/llista a la pàgina de la malla"
-#: ../../Zotlabs/Module/Settings.php:859
+#: ../../Zotlabs/Module/Settings.php:960
msgid "Channel page max height of content (in pixels)"
msgstr "Alçada màxima de contingut (en píxels) de la pàgina de Canal"
-#: ../../Zotlabs/Module/Settings.php:859 ../../Zotlabs/Module/Settings.php:860
+#: ../../Zotlabs/Module/Settings.php:960 ../../Zotlabs/Module/Settings.php:961
msgid "click to expand content exceeding this height"
msgstr "Clic per expandir el contingut que excedeixi aquesta alçada"
-#: ../../Zotlabs/Module/Settings.php:860
+#: ../../Zotlabs/Module/Settings.php:961
msgid "Grid page max height of content (in pixels)"
msgstr "Alçada màxima dels continguts (en píxels) de la Pàgina de Malla "
-#: ../../Zotlabs/Module/Settings.php:894
+#: ../../Zotlabs/Module/Settings.php:990
msgid "Nobody except yourself"
msgstr "Ningú excepte tú"
-#: ../../Zotlabs/Module/Settings.php:895
+#: ../../Zotlabs/Module/Settings.php:991
msgid "Only those you specifically allow"
msgstr "Només allò que específicament permetis"
-#: ../../Zotlabs/Module/Settings.php:896
+#: ../../Zotlabs/Module/Settings.php:992
msgid "Approved connections"
msgstr "Connexions aprovades"
-#: ../../Zotlabs/Module/Settings.php:897
+#: ../../Zotlabs/Module/Settings.php:993
msgid "Any connections"
msgstr "Qualsevol connexió"
-#: ../../Zotlabs/Module/Settings.php:898
+#: ../../Zotlabs/Module/Settings.php:994
msgid "Anybody on this website"
msgstr "Qualsevol en aquest lloc"
-#: ../../Zotlabs/Module/Settings.php:899
+#: ../../Zotlabs/Module/Settings.php:995
msgid "Anybody in this network"
msgstr "Qualsevol en aquesta xarxa"
-#: ../../Zotlabs/Module/Settings.php:900
+#: ../../Zotlabs/Module/Settings.php:996
msgid "Anybody authenticated"
msgstr "Qualsevol autenticat"
-#: ../../Zotlabs/Module/Settings.php:901
+#: ../../Zotlabs/Module/Settings.php:997
msgid "Anybody on the internet"
msgstr "Qualsevol a internet"
-#: ../../Zotlabs/Module/Settings.php:976
+#: ../../Zotlabs/Module/Settings.php:1071
msgid "Publish your default profile in the network directory"
msgstr "Publica el teu perfil per defecte al directori de la xarxa"
-#: ../../Zotlabs/Module/Settings.php:981
+#: ../../Zotlabs/Module/Settings.php:1076
msgid "Allow us to suggest you as a potential friend to new members?"
msgstr "Ens permets suggerir-te com a potencial amic als nous membres?"
-#: ../../Zotlabs/Module/Settings.php:990
+#: ../../Zotlabs/Module/Settings.php:1085
msgid "Your channel address is"
msgstr "La teva adreça del canal es"
-#: ../../Zotlabs/Module/Settings.php:1032
+#: ../../Zotlabs/Module/Settings.php:1127
msgid "Channel Settings"
msgstr "Ajustos del Canal"
-#: ../../Zotlabs/Module/Settings.php:1039
+#: ../../Zotlabs/Module/Settings.php:1134
msgid "Basic Settings"
msgstr "Ajustos Bàsics"
-#: ../../Zotlabs/Module/Settings.php:1040 ../../include/channel.php:1140
+#: ../../Zotlabs/Module/Settings.php:1135 ../../include/channel.php:1180
msgid "Full Name:"
msgstr "Nom Complet:"
-#: ../../Zotlabs/Module/Settings.php:1042
+#: ../../Zotlabs/Module/Settings.php:1137
msgid "Your Timezone:"
msgstr "La teva Franja Horària"
-#: ../../Zotlabs/Module/Settings.php:1043
+#: ../../Zotlabs/Module/Settings.php:1138
msgid "Default Post Location:"
msgstr "Localització Predeterminada de les Entrades:"
-#: ../../Zotlabs/Module/Settings.php:1043
+#: ../../Zotlabs/Module/Settings.php:1138
msgid "Geographical location to display on your posts"
msgstr "Posició geogràfica a mostrar a les teves entrades"
-#: ../../Zotlabs/Module/Settings.php:1044
+#: ../../Zotlabs/Module/Settings.php:1139
msgid "Use Browser Location:"
msgstr "Empra la Localització del Navegador:"
-#: ../../Zotlabs/Module/Settings.php:1046
+#: ../../Zotlabs/Module/Settings.php:1141
msgid "Adult Content"
msgstr "Contingut per a Adults"
-#: ../../Zotlabs/Module/Settings.php:1046
+#: ../../Zotlabs/Module/Settings.php:1141
msgid ""
"This channel frequently or regularly publishes adult content. (Please tag "
"any adult material and/or nudity with #NSFW)"
msgstr "Aquest canal publica freqúentment o amb regularitat contingut per a adults. (Si us plau, etiqueti qualsevol material per a adults amb #NSFW)"
-#: ../../Zotlabs/Module/Settings.php:1048
+#: ../../Zotlabs/Module/Settings.php:1143
msgid "Security and Privacy Settings"
msgstr "Ajustos de Seguretat i Privacitat"
-#: ../../Zotlabs/Module/Settings.php:1051
+#: ../../Zotlabs/Module/Settings.php:1146
msgid "Your permissions are already configured. Click to view/adjust"
msgstr "Els teus permisos estan configurats. Clic per veure/ajustar"
-#: ../../Zotlabs/Module/Settings.php:1053
+#: ../../Zotlabs/Module/Settings.php:1148
msgid "Hide my online presence"
msgstr "Amaga la meva presencia en línia"
-#: ../../Zotlabs/Module/Settings.php:1053
+#: ../../Zotlabs/Module/Settings.php:1148
msgid "Prevents displaying in your profile that you are online"
msgstr "Evita mostrar en el teu perfil, que estàs en línia"
-#: ../../Zotlabs/Module/Settings.php:1055
+#: ../../Zotlabs/Module/Settings.php:1150
msgid "Simple Privacy Settings:"
msgstr "Ajustos simples de privacitat:"
-#: ../../Zotlabs/Module/Settings.php:1056
+#: ../../Zotlabs/Module/Settings.php:1151
msgid ""
"Very Public - <em>extremely permissive (should be used with caution)</em>"
msgstr "Molt públic - <em>extremadament permissiu (s'ha d'anar en compte)</em>"
-#: ../../Zotlabs/Module/Settings.php:1057
+#: ../../Zotlabs/Module/Settings.php:1152
msgid ""
"Typical - <em>default public, privacy when desired (similar to social "
"network permissions but with improved privacy)</em>"
msgstr "Normal - <em>públic per defecte, privat quan es desitgi (similar als permisos de xarxa social, però amb millor privacitat)"
-#: ../../Zotlabs/Module/Settings.php:1058
+#: ../../Zotlabs/Module/Settings.php:1153
msgid "Private - <em>default private, never open or public</em>"
msgstr "Privat - <em>privat per defecte, mai públic o obert</em>"
-#: ../../Zotlabs/Module/Settings.php:1059
+#: ../../Zotlabs/Module/Settings.php:1154
msgid "Blocked - <em>default blocked to/from everybody</em>"
msgstr "Bloquejat - <em>tothom bloquejat per defecte</em>"
-#: ../../Zotlabs/Module/Settings.php:1061
+#: ../../Zotlabs/Module/Settings.php:1156
msgid "Allow others to tag your posts"
msgstr "Permet a altres etiquetar les teves entrades"
-#: ../../Zotlabs/Module/Settings.php:1061
+#: ../../Zotlabs/Module/Settings.php:1156
msgid ""
"Often used by the community to retro-actively flag inappropriate content"
msgstr "Sovint emprat per la comunitat per marcar retroactivament contingut inapropiat"
-#: ../../Zotlabs/Module/Settings.php:1063
+#: ../../Zotlabs/Module/Settings.php:1158
msgid "Advanced Privacy Settings"
msgstr "Ajustos avançats de privacitat"
-#: ../../Zotlabs/Module/Settings.php:1065
+#: ../../Zotlabs/Module/Settings.php:1160
msgid "Expire other channel content after this many days"
msgstr "El contingut d'altes canals caduca després d'aquests dies"
-#: ../../Zotlabs/Module/Settings.php:1065
+#: ../../Zotlabs/Module/Settings.php:1160
msgid "0 or blank to use the website limit."
msgstr "0 o en blanc per emprar el limit del lloc web."
-#: ../../Zotlabs/Module/Settings.php:1065
+#: ../../Zotlabs/Module/Settings.php:1160
#, php-format
msgid "This website expires after %d days."
msgstr "Aquest lloc web expira després de %d dies."
-#: ../../Zotlabs/Module/Settings.php:1065
+#: ../../Zotlabs/Module/Settings.php:1160
msgid "This website does not expire imported content."
msgstr "A aquest lloc web no expira el contingut importat"
-#: ../../Zotlabs/Module/Settings.php:1065
+#: ../../Zotlabs/Module/Settings.php:1160
msgid "The website limit takes precedence if lower than your limit."
msgstr "El límit del lloc web pren la preferència si es inferior al teu límit."
-#: ../../Zotlabs/Module/Settings.php:1066
+#: ../../Zotlabs/Module/Settings.php:1161
msgid "Maximum Friend Requests/Day:"
msgstr "Nombre màxim de peticions d'amistat per dia"
-#: ../../Zotlabs/Module/Settings.php:1066
+#: ../../Zotlabs/Module/Settings.php:1161
msgid "May reduce spam activity"
msgstr "Pot reduir l'SPAM"
-#: ../../Zotlabs/Module/Settings.php:1067
+#: ../../Zotlabs/Module/Settings.php:1162
msgid "Default Post and Publish Permissions"
msgstr "Permisos de Entrades i Publicació per defecte"
-#: ../../Zotlabs/Module/Settings.php:1069
+#: ../../Zotlabs/Module/Settings.php:1164
msgid "Use my default audience setting for the type of object published"
msgstr "Empra els meus ajustos per defecte segons el tipus de entrada publicada"
-#: ../../Zotlabs/Module/Settings.php:1072
+#: ../../Zotlabs/Module/Settings.php:1167
msgid "Channel permissions category:"
msgstr "Categoria de permisos de canal:"
-#: ../../Zotlabs/Module/Settings.php:1078
+#: ../../Zotlabs/Module/Settings.php:1173
msgid "Maximum private messages per day from unknown people:"
msgstr "Nombre màxim de missatges privats de desconeguts al dia:"
-#: ../../Zotlabs/Module/Settings.php:1078
+#: ../../Zotlabs/Module/Settings.php:1173
msgid "Useful to reduce spamming"
msgstr "Útil per a reduir l'spam"
-#: ../../Zotlabs/Module/Settings.php:1081
+#: ../../Zotlabs/Module/Settings.php:1176
msgid "Notification Settings"
msgstr "Ajustos de notificacions"
-#: ../../Zotlabs/Module/Settings.php:1082
+#: ../../Zotlabs/Module/Settings.php:1177
msgid "By default post a status message when:"
msgstr "Per defecte envia un missatge d'estat quan:"
-#: ../../Zotlabs/Module/Settings.php:1083
+#: ../../Zotlabs/Module/Settings.php:1178
msgid "accepting a friend request"
msgstr "S'accepta una sol·licitud d'amistat"
-#: ../../Zotlabs/Module/Settings.php:1084
+#: ../../Zotlabs/Module/Settings.php:1179
msgid "joining a forum/community"
msgstr "Apuntar-se a un fòrum o comunitat"
-#: ../../Zotlabs/Module/Settings.php:1085
+#: ../../Zotlabs/Module/Settings.php:1180
msgid "making an <em>interesting</em> profile change"
msgstr "Faci un canvi <em>interesant</em> al perfil"
-#: ../../Zotlabs/Module/Settings.php:1086
+#: ../../Zotlabs/Module/Settings.php:1181
msgid "Send a notification email when:"
msgstr "Notifica per correu quan:"
-#: ../../Zotlabs/Module/Settings.php:1087
+#: ../../Zotlabs/Module/Settings.php:1182
msgid "You receive a connection request"
msgstr "Rebi una petició de connexió"
-#: ../../Zotlabs/Module/Settings.php:1088
+#: ../../Zotlabs/Module/Settings.php:1183
msgid "Your connections are confirmed"
msgstr "Es confirma una connexió"
-#: ../../Zotlabs/Module/Settings.php:1089
+#: ../../Zotlabs/Module/Settings.php:1184
msgid "Someone writes on your profile wall"
msgstr "Algú ha escrit al mur del teu perfil"
-#: ../../Zotlabs/Module/Settings.php:1090
+#: ../../Zotlabs/Module/Settings.php:1185
msgid "Someone writes a followup comment"
msgstr "Algú ha escrit un comentari de resposta"
-#: ../../Zotlabs/Module/Settings.php:1091
+#: ../../Zotlabs/Module/Settings.php:1186
msgid "You receive a private message"
msgstr "Rebi un missatge privat"
-#: ../../Zotlabs/Module/Settings.php:1092
+#: ../../Zotlabs/Module/Settings.php:1187
msgid "You receive a friend suggestion"
msgstr "Rebi una suggerència d'amistat"
-#: ../../Zotlabs/Module/Settings.php:1093
+#: ../../Zotlabs/Module/Settings.php:1188
msgid "You are tagged in a post"
msgstr "Estàs etiquetat a l'entrada"
-#: ../../Zotlabs/Module/Settings.php:1094
+#: ../../Zotlabs/Module/Settings.php:1189
msgid "You are poked/prodded/etc. in a post"
msgstr "S'enfoten/te piquen/etc. en una entrada"
-#: ../../Zotlabs/Module/Settings.php:1097
+#: ../../Zotlabs/Module/Settings.php:1192
msgid "Show visual notifications including:"
msgstr "Mostra notificacion visuals, com ara:"
-#: ../../Zotlabs/Module/Settings.php:1099
+#: ../../Zotlabs/Module/Settings.php:1194
msgid "Unseen grid activity"
msgstr "Activitat de malla no vista"
-#: ../../Zotlabs/Module/Settings.php:1100
+#: ../../Zotlabs/Module/Settings.php:1195
msgid "Unseen channel activity"
msgstr "Activitat no vista del canal"
-#: ../../Zotlabs/Module/Settings.php:1101
+#: ../../Zotlabs/Module/Settings.php:1196
msgid "Unseen private messages"
msgstr "Missatges privats no llegits"
-#: ../../Zotlabs/Module/Settings.php:1101
-#: ../../Zotlabs/Module/Settings.php:1106
-#: ../../Zotlabs/Module/Settings.php:1107
-#: ../../Zotlabs/Module/Settings.php:1108
+#: ../../Zotlabs/Module/Settings.php:1196
+#: ../../Zotlabs/Module/Settings.php:1201
+#: ../../Zotlabs/Module/Settings.php:1202
+#: ../../Zotlabs/Module/Settings.php:1203
msgid "Recommended"
msgstr "Recomanat"
-#: ../../Zotlabs/Module/Settings.php:1102
+#: ../../Zotlabs/Module/Settings.php:1197
msgid "Upcoming events"
msgstr "Esdeveniments propers"
-#: ../../Zotlabs/Module/Settings.php:1103
+#: ../../Zotlabs/Module/Settings.php:1198
msgid "Events today"
msgstr "Esdeveniments d'avui"
-#: ../../Zotlabs/Module/Settings.php:1104
+#: ../../Zotlabs/Module/Settings.php:1199
msgid "Upcoming birthdays"
msgstr "Aniversaris propers"
-#: ../../Zotlabs/Module/Settings.php:1104
+#: ../../Zotlabs/Module/Settings.php:1199
msgid "Not available in all themes"
msgstr "No està disponible en tots els temes"
-#: ../../Zotlabs/Module/Settings.php:1105
+#: ../../Zotlabs/Module/Settings.php:1200
msgid "System (personal) notifications"
msgstr "Notificacions (personals) del sistema"
-#: ../../Zotlabs/Module/Settings.php:1106
+#: ../../Zotlabs/Module/Settings.php:1201
msgid "System info messages"
msgstr "Missatges d'informació del sistema"
-#: ../../Zotlabs/Module/Settings.php:1107
+#: ../../Zotlabs/Module/Settings.php:1202
msgid "System critical alerts"
msgstr "Alertes crítiques del sistema"
-#: ../../Zotlabs/Module/Settings.php:1108
+#: ../../Zotlabs/Module/Settings.php:1203
msgid "New connections"
msgstr "Noves connexions"
-#: ../../Zotlabs/Module/Settings.php:1109
+#: ../../Zotlabs/Module/Settings.php:1204
msgid "System Registrations"
-msgstr "Registres del sistema"
+msgstr "Inscripcions del Sistema"
-#: ../../Zotlabs/Module/Settings.php:1110
+#: ../../Zotlabs/Module/Settings.php:1205
msgid ""
"Also show new wall posts, private messages and connections under Notices"
msgstr "Mostra també les entrades de mur noves, les entrades privades i les connexions a \"Notícies\""
-#: ../../Zotlabs/Module/Settings.php:1112
+#: ../../Zotlabs/Module/Settings.php:1207
msgid "Notify me of events this many days in advance"
msgstr "Notifica'm dels esdeveniments amb aquests dies d'antelació"
-#: ../../Zotlabs/Module/Settings.php:1112
+#: ../../Zotlabs/Module/Settings.php:1207
msgid "Must be greater than 0"
msgstr "Ha de ser més gran que 0"
-#: ../../Zotlabs/Module/Settings.php:1114
+#: ../../Zotlabs/Module/Settings.php:1209
msgid "Advanced Account/Page Type Settings"
msgstr "Ajustos avançats de compte i tipus de pàgina"
-#: ../../Zotlabs/Module/Settings.php:1115
+#: ../../Zotlabs/Module/Settings.php:1210
msgid "Change the behaviour of this account for special situations"
msgstr "Modifica el comportament d'aquest compte en situacions especials"
-#: ../../Zotlabs/Module/Settings.php:1118
+#: ../../Zotlabs/Module/Settings.php:1213
msgid ""
"Please enable expert mode (in <a href=\"settings/features\">Settings > "
"Additional features</a>) to adjust!"
msgstr "Activa el mode d'expert (a <a href=\"settings/features\">Ajustos > Més funcions</a>)"
-#: ../../Zotlabs/Module/Settings.php:1119
+#: ../../Zotlabs/Module/Settings.php:1214
msgid "Miscellaneous Settings"
msgstr "Ajustos diversos"
-#: ../../Zotlabs/Module/Settings.php:1120
+#: ../../Zotlabs/Module/Settings.php:1215
msgid "Default photo upload folder"
msgstr "Carpeta per defecte de fotos pujades"
-#: ../../Zotlabs/Module/Settings.php:1120
-#: ../../Zotlabs/Module/Settings.php:1121
+#: ../../Zotlabs/Module/Settings.php:1215
+#: ../../Zotlabs/Module/Settings.php:1216
msgid "%Y - current year, %m - current month"
msgstr "%Y - any en curs, %m - mes corrent"
-#: ../../Zotlabs/Module/Settings.php:1121
+#: ../../Zotlabs/Module/Settings.php:1216
msgid "Default file upload folder"
msgstr "Carpeta per defecte d'arxius pujats"
-#: ../../Zotlabs/Module/Settings.php:1123
+#: ../../Zotlabs/Module/Settings.php:1218
msgid "Personal menu to display in your channel pages"
msgstr "Menú personal per mostrar en les teves pàgines de canal"
-#: ../../Zotlabs/Module/Settings.php:1125
+#: ../../Zotlabs/Module/Settings.php:1220
msgid "Remove this channel."
msgstr "Elimina aquest canal."
-#: ../../Zotlabs/Module/Settings.php:1126
+#: ../../Zotlabs/Module/Settings.php:1221
msgid "Firefox Share $Projectname provider"
msgstr "Firefox Share $Projectname provider"
-#: ../../Zotlabs/Module/Settings.php:1127
+#: ../../Zotlabs/Module/Settings.php:1222
msgid "Start calendar week on monday"
msgstr "Comença la setmana del calendari el dilluns"
@@ -5517,7 +5828,7 @@ msgid ""
msgstr "Podria ser necessari importar el fitxer \"install / schema_xxx.sql\" manualment utilitzant un client de base de dades."
#: ../../Zotlabs/Module/Setup.php:204 ../../Zotlabs/Module/Setup.php:266
-#: ../../Zotlabs/Module/Setup.php:721
+#: ../../Zotlabs/Module/Setup.php:722
msgid "Please see the file \"install/INSTALL.txt\"."
msgstr "Si us plau, consulteu el fitxer \"install / INSTALL.txt\"."
@@ -5717,199 +6028,200 @@ msgid "mb_string PHP module"
msgstr "mòdul PHP mb_string"
#: ../../Zotlabs/Module/Setup.php:496
-msgid "mcrypt PHP module"
-msgstr "mòdul PHP mcrypt"
-
-#: ../../Zotlabs/Module/Setup.php:497
msgid "xml PHP module"
msgstr "Mòdul xml de PHP"
-#: ../../Zotlabs/Module/Setup.php:501 ../../Zotlabs/Module/Setup.php:503
+#: ../../Zotlabs/Module/Setup.php:500 ../../Zotlabs/Module/Setup.php:502
msgid "Apache mod_rewrite module"
msgstr "mòdul Apache mod_rewrite"
-#: ../../Zotlabs/Module/Setup.php:501
+#: ../../Zotlabs/Module/Setup.php:500
msgid ""
"Error: Apache webserver mod-rewrite module is required but not installed."
msgstr "Error: el mòdul mod-rewrite del servidor web Apache es requereix i no està instal·lat."
-#: ../../Zotlabs/Module/Setup.php:507 ../../Zotlabs/Module/Setup.php:510
+#: ../../Zotlabs/Module/Setup.php:506 ../../Zotlabs/Module/Setup.php:509
msgid "proc_open"
msgstr "proc_open"
-#: ../../Zotlabs/Module/Setup.php:507
+#: ../../Zotlabs/Module/Setup.php:506
msgid ""
"Error: proc_open is required but is either not installed or has been "
"disabled in php.ini"
msgstr "Error: es requereix proc_open però o no està instal·lat o ha estat desactivat a php.ini"
-#: ../../Zotlabs/Module/Setup.php:515
+#: ../../Zotlabs/Module/Setup.php:514
msgid "Error: libCURL PHP module required but not installed."
msgstr "Error: el mòdul PHP libCURL es requereix però no està instal·lat."
-#: ../../Zotlabs/Module/Setup.php:519
+#: ../../Zotlabs/Module/Setup.php:518
msgid ""
"Error: GD graphics PHP module with JPEG support required but not installed."
msgstr "Error: el mòdul PHP GD graphics amb support JPEG es requereix però no està instal·lat."
-#: ../../Zotlabs/Module/Setup.php:523
+#: ../../Zotlabs/Module/Setup.php:522
msgid "Error: openssl PHP module required but not installed."
msgstr "Error: el mòdul PHP openssl es requereix però no està instal·lat."
-#: ../../Zotlabs/Module/Setup.php:527
+#: ../../Zotlabs/Module/Setup.php:526
msgid ""
"Error: mysqli or postgres PHP module required but neither are installed."
msgstr "Error: el mòdul PHO mysqli o postgres es requereix però no està instal·lat."
-#: ../../Zotlabs/Module/Setup.php:531
+#: ../../Zotlabs/Module/Setup.php:530
msgid "Error: mb_string PHP module required but not installed."
msgstr "Error: el mòdul PHP mb_string es requereix però no està instal·lat."
-#: ../../Zotlabs/Module/Setup.php:535
-msgid "Error: mcrypt PHP module required but not installed."
-msgstr "Error: el mòdul PHP mcrypt es requereix però no està instal·lat."
-
-#: ../../Zotlabs/Module/Setup.php:539
+#: ../../Zotlabs/Module/Setup.php:534
msgid "Error: xml PHP module required for DAV but not installed."
msgstr "Error: el mòdul xml de PHP es requereix per DAV però no està instal·lat."
-#: ../../Zotlabs/Module/Setup.php:557
+#: ../../Zotlabs/Module/Setup.php:552
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'instaŀlador ha de poder crear i modificar un fitxer anomenat «.htconfig.php» a la carpeta arrel del servidor, però sembla que no ho pot fer."
-#: ../../Zotlabs/Module/Setup.php:558
+#: ../../Zotlabs/Module/Setup.php:553
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 "Això sol ser un problema de permisos. Per molt que el teu usuari pugui modificar-lo, és el del servidor web qui necessita els poders de modificació."
-#: ../../Zotlabs/Module/Setup.php:559
+#: ../../Zotlabs/Module/Setup.php:554
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 final d'aquest procés hauràs de desar un text a l'arxiu «.htconfig.php», que es troba a la carpeta arrel del servidor."
-#: ../../Zotlabs/Module/Setup.php:560
+#: ../../Zotlabs/Module/Setup.php:555
msgid ""
"You can alternatively skip this procedure and perform a manual installation."
" Please see the file \"install/INSTALL.txt\" for instructions."
msgstr "Aquest procés és opcional. Per a fer una instaŀlació manual consulta les instruccions a «install/INSTALL.txt\"."
-#: ../../Zotlabs/Module/Setup.php:563
+#: ../../Zotlabs/Module/Setup.php:558
msgid ".htconfig.php is writable"
msgstr "L'arxiu «.htconfig.php» es pot modificar"
-#: ../../Zotlabs/Module/Setup.php:577
+#: ../../Zotlabs/Module/Setup.php:572
msgid ""
"Red uses the Smarty3 template engine to render its web views. Smarty3 "
"compiles templates to PHP to speed up rendering."
msgstr "Red fa servir el motor de plantilles Smarty3 per a renderitzar les vistes més ràpidament."
-#: ../../Zotlabs/Module/Setup.php:578
+#: ../../Zotlabs/Module/Setup.php:573
#, php-format
msgid ""
"In order to store these compiled templates, the web server needs to have "
"write access to the directory %s under the top level web folder."
msgstr "Per tal de guardar aquestes plantilles compilades, el servidor web necessita tenir premis d'escriptura en el directori %s sota la carpeta principal."
-#: ../../Zotlabs/Module/Setup.php:579 ../../Zotlabs/Module/Setup.php:600
+#: ../../Zotlabs/Module/Setup.php:574 ../../Zotlabs/Module/Setup.php:595
msgid ""
"Please ensure that the user that your web server runs as (e.g. www-data) has"
" write access to this folder."
msgstr "Comprova que l'usuari que executa el servidor (www-data en Apache) té permisos d'escriptura en aquesta carpeta."
-#: ../../Zotlabs/Module/Setup.php:580
+#: ../../Zotlabs/Module/Setup.php:575
#, 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: com a mesura de seguretat l'usuari del servidor web ha de tenir accés d'escriptura només a %s, i no a les plantilles (.tpl) que conté."
-#: ../../Zotlabs/Module/Setup.php:583
+#: ../../Zotlabs/Module/Setup.php:578
#, php-format
msgid "%s is writable"
msgstr "Es pot escriure a %s"
-#: ../../Zotlabs/Module/Setup.php:599
+#: ../../Zotlabs/Module/Setup.php:594
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 fa servir la carpeta «store» per a desar els fitxers pujats. Per tant, el servidor web necessita tenir permís d'escriptura en aquesta carpeta, que està a l'arrel del servidor web."
+"This software 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 ""
-#: ../../Zotlabs/Module/Setup.php:603
+#: ../../Zotlabs/Module/Setup.php:598
msgid "store is writable"
msgstr "Es pot escriure al magatzem (store)"
-#: ../../Zotlabs/Module/Setup.php:636
+#: ../../Zotlabs/Module/Setup.php:631
msgid ""
"SSL certificate cannot be validated. Fix certificate or disable https access"
" to this site."
msgstr "El certificat SSL no s'ha pogut validar. Arregla-ho o deshabilita l'accés https a aquest lloc"
-#: ../../Zotlabs/Module/Setup.php:637
+#: ../../Zotlabs/Module/Setup.php:632
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 tens accès pet https al teu lloc web o permets connexions pel port TCP 443 (port https), Has d'emprar un certificat VÀLID. NO es poden emprar certificats AUTO-SIGNATS!"
-#: ../../Zotlabs/Module/Setup.php:638
+#: ../../Zotlabs/Module/Setup.php:633
msgid ""
"This restriction is incorporated because public posts from you may for "
"example contain references to images on your own hub."
msgstr "El motiu d'aquesta restricció és que les teves entrades públiques poden contenir referències a imatges del teu propi node."
-#: ../../Zotlabs/Module/Setup.php:639
+#: ../../Zotlabs/Module/Setup.php:634
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 el teu certificat no és reconegut, llavors el membres d'altres hubs, encara que tinguin certificats vàlids, rebran una advertència de seguretat en carregar contingut teu."
-#: ../../Zotlabs/Module/Setup.php:640
+#: ../../Zotlabs/Module/Setup.php:635
msgid ""
"This can cause usability issues elsewhere (not just on your own site) so we "
"must insist on this requirement."
msgstr "Per tant, com que perjudica la usabilitat més enllà del teu lloc, la restricció de tenir un certificat reconegut és molt important."
-#: ../../Zotlabs/Module/Setup.php:641
+#: ../../Zotlabs/Module/Setup.php:636
msgid ""
"Providers are available that issue free certificates which are browser-"
"valid."
msgstr "Hi ha autoritats de certificació reconegudes que ofereixen certificats gratuïts."
-#: ../../Zotlabs/Module/Setup.php:643
+#: ../../Zotlabs/Module/Setup.php:638
+msgid ""
+"If you are confident that the certificate is valid and signed by a trusted "
+"authority, check to see if you have failed to install an intermediate cert. "
+"These are not normally required by browsers, but are required for server-to-"
+"server communications."
+msgstr ""
+
+#: ../../Zotlabs/Module/Setup.php:641
msgid "SSL certificate validation"
msgstr "Validació del certificat SSL"
-#: ../../Zotlabs/Module/Setup.php:649
+#: ../../Zotlabs/Module/Setup.php:647
msgid ""
"Url rewrite in .htaccess is not working. Check your server "
"configuration.Test: "
msgstr "No es poden reescriure les URL a «.htaccess». Comprova la configuració del servidor:"
-#: ../../Zotlabs/Module/Setup.php:652
+#: ../../Zotlabs/Module/Setup.php:650
msgid "Url rewrite is working"
msgstr "Es poden reescriure les URL a «.htaccess»"
-#: ../../Zotlabs/Module/Setup.php:661
+#: ../../Zotlabs/Module/Setup.php:659
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 "L'arxiu de configuracio de la base de dades «.htconfig.php» no s'ha pogut modificar. El pots crear tu a l'arrel del servidor web amb el text de la caixa com a contingut."
-#: ../../Zotlabs/Module/Setup.php:685
+#: ../../Zotlabs/Module/Setup.php:683
msgid "Errors encountered creating database tables."
msgstr "S'han produït errors mentre es creaven taules a la base de dades."
-#: ../../Zotlabs/Module/Setup.php:719
+#: ../../Zotlabs/Module/Setup.php:720
msgid "<h1>What next</h1>"
msgstr "<h1>I ara què?</h1>"
-#: ../../Zotlabs/Module/Setup.php:720
+#: ../../Zotlabs/Module/Setup.php:721
msgid ""
"IMPORTANT: You will need to [manually] setup a scheduled task for the "
"poller."
@@ -5931,64 +6243,62 @@ msgstr "Esborra tots els arxius"
msgid "Remove this file"
msgstr "Esborra l'arxiu"
-#: ../../Zotlabs/Module/Siteinfo.php:19
-#, php-format
-msgid "Version %s"
-msgstr "Versió %s"
+#: ../../Zotlabs/Module/Thing.php:114
+msgid "Thing updated"
+msgstr "S'ha actualitzat la cosa"
-#: ../../Zotlabs/Module/Siteinfo.php:40
-msgid "Installed plugins/addons/apps:"
-msgstr "Plugins/addons/apps Instal·lats:"
+#: ../../Zotlabs/Module/Thing.php:166
+msgid "Object store: failed"
+msgstr "No s'ha pogut emmagatzemar l'objecte"
-#: ../../Zotlabs/Module/Siteinfo.php:53
-msgid "No installed plugins/addons/apps"
-msgstr "Plugins/addons/apps no instal·lats"
+#: ../../Zotlabs/Module/Thing.php:170
+msgid "Thing added"
+msgstr "S'ha afegit la cosa"
-#: ../../Zotlabs/Module/Siteinfo.php:66
-msgid ""
-"This is a hub of $Projectname - a global cooperative network of "
-"decentralized privacy enhanced websites."
-msgstr "Aquest és un node de $Projectname, una xarxa cooperativa mundial de llocs web descentralitzats amb gran control de la privacitat."
+#: ../../Zotlabs/Module/Thing.php:196
+#, php-format
+msgid "OBJ: %1$s %2$s %3$s"
+msgstr "OBJ: %1$s %2$s %3$s"
-#: ../../Zotlabs/Module/Siteinfo.php:68
-msgid "Tag: "
-msgstr "Etiqueta:"
+#: ../../Zotlabs/Module/Thing.php:259
+msgid "Show Thing"
+msgstr "Mostra la cosa"
-#: ../../Zotlabs/Module/Siteinfo.php:70
-msgid "Last background fetch: "
-msgstr "Última actualització en rerefons:"
+#: ../../Zotlabs/Module/Thing.php:266
+msgid "item not found."
+msgstr "no s'ha trobat l'element."
-#: ../../Zotlabs/Module/Siteinfo.php:72
-msgid "Current load average: "
-msgstr "Càrrega actual mitja:"
+#: ../../Zotlabs/Module/Thing.php:299
+msgid "Edit Thing"
+msgstr "Edita la cosa"
-#: ../../Zotlabs/Module/Siteinfo.php:75
-msgid "Running at web location"
-msgstr "Correguent en el lloc web"
+#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351
+msgid "Select a profile"
+msgstr "Tria un perfil"
-#: ../../Zotlabs/Module/Siteinfo.php:76
-msgid ""
-"Please visit <a href=\"http://hubzilla.org\">hubzilla.org</a> to learn more "
-"about $Projectname."
-msgstr "Visita <a href=\"http://hubzilla.org\">hubzilla.org</a> per saber-ne més de $Projectname."
+#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354
+msgid "Post an activity"
+msgstr "Publica una activitat"
-#: ../../Zotlabs/Module/Siteinfo.php:77
-msgid "Bug reports and issues: please visit"
-msgstr "Per informar d'errors o problemes ves a"
+#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354
+msgid "Only sends to viewers of the applicable profile"
+msgstr "S'envia només a visitants del perfil corresponent"
-#: ../../Zotlabs/Module/Siteinfo.php:79
-msgid "$projectname issues"
-msgstr "$projectname qüestions"
+#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:356
+msgid "Name of thing e.g. something"
+msgstr "Nom de la cosa. Exemple: patata"
-#: ../../Zotlabs/Module/Siteinfo.php:80
-msgid ""
-"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot "
-"com"
-msgstr "Per suggerències, felicitacions i altres, envia'ns un mail a «redmatrix» [arroba] librelist [punt] com"
+#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357
+msgid "URL of thing (optional)"
+msgstr "Adreça URL de la cosa (opcional)"
-#: ../../Zotlabs/Module/Siteinfo.php:82
-msgid "Site Administrators"
-msgstr "Administradors del lloc"
+#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:358
+msgid "URL for photo of thing (optional)"
+msgstr "Adreça URL de la foto d'una cosa (opcional)"
+
+#: ../../Zotlabs/Module/Thing.php:349
+msgid "Add Thing to your Profile"
+msgstr "Afegeix una cosa al teu perfil"
#: ../../Zotlabs/Module/Sources.php:37
msgid "Failed to create source. No channel selected."
@@ -6006,8 +6316,8 @@ msgstr "Origen actualitzat."
msgid "*"
msgstr "*"
-#: ../../Zotlabs/Module/Sources.php:96 ../../include/widgets.php:630
-#: ../../include/features.php:71
+#: ../../Zotlabs/Module/Sources.php:96 ../../include/features.php:72
+#: ../../include/widgets.php:639
msgid "Channel Sources"
msgstr "Canal Origen"
@@ -6083,12 +6393,12 @@ msgstr "No hi ha suggerencies. Si es un lloc nou, espera 24 hores i proba de nou
msgid "Ignore/Hide"
msgstr "Ignora/Amaga"
-#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:256
+#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263
msgid "post"
msgstr "entrada"
-#: ../../Zotlabs/Module/Tagger.php:57 ../../include/text.php:1948
-#: ../../include/conversation.php:150
+#: ../../Zotlabs/Module/Tagger.php:57 ../../include/conversation.php:150
+#: ../../include/text.php:1929
msgid "comment"
msgstr "comentari"
@@ -6109,131 +6419,110 @@ msgstr "Elimina l'etiqueta d'element"
msgid "Select a tag to remove: "
msgstr "Tria l'etiqueta a eliminar:"
-#: ../../Zotlabs/Module/Thing.php:114
-msgid "Thing updated"
-msgstr "S'ha actualitzat la cosa"
+#: ../../Zotlabs/Module/Webpages.php:191 ../../Zotlabs/Lib/Apps.php:218
+#: ../../include/nav.php:106 ../../include/conversation.php:1700
+msgid "Webpages"
+msgstr "Pàgines web"
-#: ../../Zotlabs/Module/Thing.php:166
-msgid "Object store: failed"
-msgstr "No s'ha pogut emmagatzemar l'objecte"
+#: ../../Zotlabs/Module/Webpages.php:202 ../../include/page_widgets.php:44
+msgid "Actions"
+msgstr "Accions"
-#: ../../Zotlabs/Module/Thing.php:170
-msgid "Thing added"
-msgstr "S'ha afegit la cosa"
+#: ../../Zotlabs/Module/Webpages.php:203 ../../include/page_widgets.php:45
+msgid "Page Link"
+msgstr "Enllaç a Pàgina"
-#: ../../Zotlabs/Module/Thing.php:196
-#, php-format
-msgid "OBJ: %1$s %2$s %3$s"
-msgstr "OBJ: %1$s %2$s %3$s"
+#: ../../Zotlabs/Module/Webpages.php:204
+msgid "Page Title"
+msgstr "Títol de la pàgina"
-#: ../../Zotlabs/Module/Thing.php:259
-msgid "Show Thing"
-msgstr "Mostra la cosa"
+#: ../../Zotlabs/Module/Wiki.php:34
+msgid "Not found"
+msgstr ""
-#: ../../Zotlabs/Module/Thing.php:266
-msgid "item not found."
-msgstr "no s'ha trobat l'element."
+#: ../../Zotlabs/Module/Wiki.php:92 ../../Zotlabs/Lib/Apps.php:219
+#: ../../include/nav.php:108 ../../include/conversation.php:1710
+#: ../../include/conversation.php:1713 ../../include/features.php:55
+msgid "Wiki"
+msgstr "Wiki"
-#: ../../Zotlabs/Module/Thing.php:299
-msgid "Edit Thing"
-msgstr "Edita la cosa"
+#: ../../Zotlabs/Module/Wiki.php:93
+msgid "Sandbox"
+msgstr "Sandbox"
-#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351
-msgid "Select a profile"
-msgstr "Tria un perfil"
+#: ../../Zotlabs/Module/Wiki.php:95
+msgid ""
+"\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be"
+" saved*.\""
+msgstr ""
-#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354
-msgid "Post an activity"
-msgstr "Publica una activitat"
+#: ../../Zotlabs/Module/Wiki.php:164
+msgid "Revision Comparison"
+msgstr "Comparació de revisió"
-#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354
-msgid "Only sends to viewers of the applicable profile"
-msgstr "S'envia només a visitants del perfil corresponent"
+#: ../../Zotlabs/Module/Wiki.php:165
+msgid "Revert"
+msgstr "Reverteix"
-#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:356
-msgid "Name of thing e.g. something"
-msgstr "Nom de la cosa. Exemple: patata"
+#: ../../Zotlabs/Module/Wiki.php:192
+msgid "Enter the name of your new wiki:"
+msgstr "Escriu el nom del teu nou wiki:"
-#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357
-msgid "URL of thing (optional)"
-msgstr "Adreça URL de la cosa (opcional)"
+#: ../../Zotlabs/Module/Wiki.php:193
+msgid "Enter the name of the new page:"
+msgstr "Escriu el nom de la teva nova pàgina:"
-#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:358
-msgid "URL for photo of thing (optional)"
-msgstr "Adreça URL de la foto d'una cosa (opcional)"
+#: ../../Zotlabs/Module/Wiki.php:194
+msgid "Enter the new name:"
+msgstr "Escriu el nou nom:"
-#: ../../Zotlabs/Module/Thing.php:349
-msgid "Add Thing to your Profile"
-msgstr "Afegeix una cosa al teu perfil"
+#: ../../Zotlabs/Module/Wiki.php:200 ../../include/conversation.php:1150
+msgid "Embed image from photo albums"
+msgstr "Embeu una imatge dels àlbums de fotos"
-#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56
-msgid "Export Channel"
-msgstr "Exportar Canal"
+#: ../../Zotlabs/Module/Wiki.php:201 ../../include/conversation.php:1234
+msgid "Embed an image from your albums"
+msgstr "Embeu una imatge dels teus àlbums"
-#: ../../Zotlabs/Module/Uexport.php:57
-msgid ""
-"Export your basic channel information to a file. This acts as a backup of "
-"your connections, permissions, profile and basic data, which can be used to "
-"import your data to a new server hub, but does not contain your content."
-msgstr "Exporta la informació bàsica del canal a un arxiu. Això actua com a còpia de recolzament de les teves connexions, permisos, perfil i dades bàsiques, les quals pots emprar per traslladar aquestes dades a una altre lloc/node, però no conté el contingut del canal."
+#: ../../Zotlabs/Module/Wiki.php:203 ../../include/conversation.php:1236
+#: ../../include/conversation.php:1273
+msgid "OK"
+msgstr "OK"
-#: ../../Zotlabs/Module/Uexport.php:58
-msgid "Export Content"
-msgstr "Exportar el Contingut"
+#: ../../Zotlabs/Module/Wiki.php:204 ../../include/conversation.php:1186
+msgid "Choose images to embed"
+msgstr "Tria una imatge per a embeure-la"
-#: ../../Zotlabs/Module/Uexport.php:59
-msgid ""
-"Export your channel information and recent content to a JSON backup that can"
-" be restored or imported to another server hub. This backs up all of your "
-"connections, permissions, profile data and several months of posts. This "
-"file may be VERY large. Please be patient - it may take several minutes for"
-" this download to begin."
-msgstr "Exporta la informació del canal i tot el contingut recent a un arxiu de recolzament JSON que por ser restaurat o importat en altre lloc/node. Això còpia totes les teves connexions, permisos, perfil i dades i mesos de entrades. L'arxiu pot ser MOLT gran. Si et plau, sigues pacient ja que pot trigar uns minuts a començar a baixar."
+#: ../../Zotlabs/Module/Wiki.php:205 ../../include/conversation.php:1187
+msgid "Choose an album"
+msgstr "Tria un àlbum"
-#: ../../Zotlabs/Module/Uexport.php:60
-msgid "Export your posts from a given year."
-msgstr "Exporta les teves entrades d'un any donat."
+#: ../../Zotlabs/Module/Wiki.php:206 ../../include/conversation.php:1188
+msgid "Choose a different album..."
+msgstr "Tria un àlbum diferent..."
-#: ../../Zotlabs/Module/Uexport.php:62
-msgid ""
-"You may also export your posts and conversations for a particular year or "
-"month. Adjust the date in your browser location bar to select other dates. "
-"If the export fails (possibly due to memory exhaustion on your server hub), "
-"please try again selecting a more limited date range."
-msgstr "Pots també exportar les teves entrades i conversacions d'un any o un mes en particular. Ajusta la data a la barra de direccions del navegador per seleccionar altres dates. Si la exportació falla (possiblement degut al esgotament de la memòria del node servidor), si et plau, intenta de nou la selecció d'un rang de dates més limitat."
+#: ../../Zotlabs/Module/Wiki.php:207 ../../include/conversation.php:1189
+msgid "Error getting album list"
+msgstr "Ha ocorregut un error quan treia la llista de àlbums"
-#: ../../Zotlabs/Module/Uexport.php:63
-#, php-format
-msgid ""
-"To select all posts for a given year, such as this year, visit <a "
-"href=\"%1$s\">%2$s</a>"
-msgstr "Per seleccionar tots els missatges per a un any determinat, com aquest any, visiteu <a href=\"%1$s\">%2$s</a>"
+#: ../../Zotlabs/Module/Wiki.php:208 ../../include/conversation.php:1190
+msgid "Error getting photo link"
+msgstr "Ha ocorregut un error quan treia l'enllaç a la foto"
-#: ../../Zotlabs/Module/Uexport.php:64
-#, 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 "Per seleccionar tots els missatges per a un mes determinat, com el de gener d'aquest any, visiteu <a href=\"%1$s\">%2$s</a>"
-
-#: ../../Zotlabs/Module/Uexport.php:65
-#, 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 "Aquests arxius de contingut poden ser importats o restaurats per visitar <a href=\"%1$s\">%2$s</a> en qualsevol lloc que conté el teu canal. Per obtenir els millors resultats si us plau, importar o restaurar aquests en ordre de data (la més antiga primer)."
+#: ../../Zotlabs/Module/Wiki.php:209 ../../include/conversation.php:1191
+msgid "Error getting album"
+msgstr "Ha ocorregut un error treient l'àlbum"
-#: ../../Zotlabs/Module/Viewconnections.php:62
+#: ../../Zotlabs/Module/Viewconnections.php:65
msgid "No connections."
msgstr "Sense connexions."
-#: ../../Zotlabs/Module/Viewconnections.php:75
+#: ../../Zotlabs/Module/Viewconnections.php:78
#, php-format
msgid "Visit %s's profile [%s]"
msgstr "Visita el perfil [%s] de %s"
-#: ../../Zotlabs/Module/Viewconnections.php:104
+#: ../../Zotlabs/Module/Viewconnections.php:107
msgid "View Connections"
msgstr "Veure Connexions"
@@ -6241,22 +6530,23 @@ msgstr "Veure Connexions"
msgid "Source of Item"
msgstr "Origen de l'article"
-#: ../../Zotlabs/Module/Webpages.php:184 ../../Zotlabs/Lib/Apps.php:217
-#: ../../include/nav.php:106 ../../include/conversation.php:1685
-msgid "Webpages"
-msgstr "Pàgines web"
+#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85
+msgid "Authorize application connection"
+msgstr "Autoritza la connexió de l'aplicació"
-#: ../../Zotlabs/Module/Webpages.php:195 ../../include/page_widgets.php:41
-msgid "Actions"
-msgstr "Accions"
+#: ../../Zotlabs/Module/Api.php:62
+msgid "Return to your app and insert this Securty Code:"
+msgstr "Torna a la teva aplicació i insereix aquest Codi de Seguretat:"
-#: ../../Zotlabs/Module/Webpages.php:196 ../../include/page_widgets.php:42
-msgid "Page Link"
-msgstr "Enllaç a Pàgina"
+#: ../../Zotlabs/Module/Api.php:72
+msgid "Please login to continue."
+msgstr "Si et plau, identifica't per continuar."
-#: ../../Zotlabs/Module/Webpages.php:197
-msgid "Page Title"
-msgstr "Títol de la pàgina"
+#: ../../Zotlabs/Module/Api.php:87
+msgid ""
+"Do you want to authorize this application to access your posts and contacts,"
+" and/or create new posts for you?"
+msgstr "Vols autoritzar a aquesta aplicació l'accés a les teves entrades i contactes i/o a crear noves entrades com si fos tu mateix."
#: ../../Zotlabs/Module/Xchan.php:10
msgid "Xchan Lookup"
@@ -6266,92 +6556,6 @@ msgstr "Cerca a xchan"
msgid "Lookup xchan beginning with (or webbie): "
msgstr "Cerca a xchan començant per (o webbie)"
-#: ../../Zotlabs/Lib/Apps.php:204
-msgid "Site Admin"
-msgstr "Administració"
-
-#: ../../Zotlabs/Lib/Apps.php:205
-msgid "Bug Report"
-msgstr "Informe d'Errors"
-
-#: ../../Zotlabs/Lib/Apps.php:206
-msgid "View Bookmarks"
-msgstr "Veure Marcadors"
-
-#: ../../Zotlabs/Lib/Apps.php:207
-msgid "My Chatrooms"
-msgstr "Les meves Sales de Xat"
-
-#: ../../Zotlabs/Lib/Apps.php:209
-msgid "Firefox Share"
-msgstr "Compartir amb Firefox"
-
-#: ../../Zotlabs/Lib/Apps.php:210
-msgid "Remote Diagnostics"
-msgstr "Diagnòstics Remots"
-
-#: ../../Zotlabs/Lib/Apps.php:211 ../../include/features.php:89
-msgid "Suggest Channels"
-msgstr "Suggerir Canals"
-
-#: ../../Zotlabs/Lib/Apps.php:212 ../../include/nav.php:110
-#: ../../boot.php:1703
-msgid "Login"
-msgstr "Identifica't"
-
-#: ../../Zotlabs/Lib/Apps.php:214 ../../include/nav.php:179
-msgid "Grid"
-msgstr "Malla"
-
-#: ../../Zotlabs/Lib/Apps.php:218 ../../include/nav.php:182
-msgid "Channel Home"
-msgstr "Canal Personal"
-
-#: ../../Zotlabs/Lib/Apps.php:221 ../../include/nav.php:201
-#: ../../include/conversation.php:1649 ../../include/conversation.php:1652
-msgid "Events"
-msgstr "Esdeveniments"
-
-#: ../../Zotlabs/Lib/Apps.php:222 ../../include/nav.php:167
-msgid "Directory"
-msgstr "Directori"
-
-#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:193
-msgid "Mail"
-msgstr "Correu"
-
-#: ../../Zotlabs/Lib/Apps.php:227 ../../include/nav.php:96
-msgid "Chat"
-msgstr "Xerrar"
-
-#: ../../Zotlabs/Lib/Apps.php:229
-msgid "Probe"
-msgstr "Sondeig"
-
-#: ../../Zotlabs/Lib/Apps.php:230
-msgid "Suggest"
-msgstr "Suggeriment"
-
-#: ../../Zotlabs/Lib/Apps.php:231
-msgid "Random Channel"
-msgstr "Canal Aleatori"
-
-#: ../../Zotlabs/Lib/Apps.php:232
-msgid "Invite"
-msgstr "Convida"
-
-#: ../../Zotlabs/Lib/Apps.php:233 ../../include/widgets.php:1386
-msgid "Features"
-msgstr "Funcionalitats"
-
-#: ../../Zotlabs/Lib/Apps.php:235
-msgid "Post"
-msgstr "Entrada"
-
-#: ../../Zotlabs/Lib/Apps.php:335
-msgid "Purchase"
-msgstr "Compra"
-
#: ../../Zotlabs/Lib/Chatroom.php:27
msgid "Missing room name"
msgstr "Perdut el nom de la sala"
@@ -6372,19 +6576,19 @@ msgstr "Sala no trobada."
msgid "Room is full"
msgstr "La sala es plena"
-#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1823
+#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1882
msgid "$Projectname Notification"
msgstr "Notificació de $Projectname"
-#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1824
+#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1883
msgid "$projectname"
msgstr "$projectname"
-#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1826
+#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1885
msgid "Thank You,"
msgstr "Gràcies,"
-#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1828
+#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1887
#, php-format
msgid "%s Administrator"
msgstr "%s Administrador"
@@ -6577,11 +6781,97 @@ msgstr "Creada una nova entrada"
msgid "commented on %s's post"
msgstr "comentat a l'entrada de %s"
-#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:664
+#: ../../Zotlabs/Lib/Apps.php:205
+msgid "Site Admin"
+msgstr "Administració"
+
+#: ../../Zotlabs/Lib/Apps.php:206
+msgid "Bug Report"
+msgstr "Informe d'Errors"
+
+#: ../../Zotlabs/Lib/Apps.php:207
+msgid "View Bookmarks"
+msgstr "Veure Marcadors"
+
+#: ../../Zotlabs/Lib/Apps.php:208
+msgid "My Chatrooms"
+msgstr "Les meves Sales de Xat"
+
+#: ../../Zotlabs/Lib/Apps.php:210
+msgid "Firefox Share"
+msgstr "Compartir amb Firefox"
+
+#: ../../Zotlabs/Lib/Apps.php:211
+msgid "Remote Diagnostics"
+msgstr "Diagnòstics Remots"
+
+#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:90
+msgid "Suggest Channels"
+msgstr "Suggerir Canals"
+
+#: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:112
+#: ../../boot.php:1704
+msgid "Login"
+msgstr "Identifica't"
+
+#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:181
+msgid "Grid"
+msgstr "Malla"
+
+#: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:184
+msgid "Channel Home"
+msgstr "Canal Personal"
+
+#: ../../Zotlabs/Lib/Apps.php:223 ../../include/nav.php:203
+#: ../../include/conversation.php:1664 ../../include/conversation.php:1667
+msgid "Events"
+msgstr "Esdeveniments"
+
+#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:169
+msgid "Directory"
+msgstr "Directori"
+
+#: ../../Zotlabs/Lib/Apps.php:226 ../../include/nav.php:195
+msgid "Mail"
+msgstr "Correu"
+
+#: ../../Zotlabs/Lib/Apps.php:229 ../../include/nav.php:96
+msgid "Chat"
+msgstr "Xerrar"
+
+#: ../../Zotlabs/Lib/Apps.php:231
+msgid "Probe"
+msgstr "Sondeig"
+
+#: ../../Zotlabs/Lib/Apps.php:232
+msgid "Suggest"
+msgstr "Suggeriment"
+
+#: ../../Zotlabs/Lib/Apps.php:233
+msgid "Random Channel"
+msgstr "Canal Aleatori"
+
+#: ../../Zotlabs/Lib/Apps.php:234
+msgid "Invite"
+msgstr "Convida"
+
+#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1480
+msgid "Features"
+msgstr "Funcionalitats"
+
+#: ../../Zotlabs/Lib/Apps.php:237
+msgid "Post"
+msgstr "Entrada"
+
+#: ../../Zotlabs/Lib/Apps.php:339
+msgid "Purchase"
+msgstr "Compra"
+
+#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:667
msgid "Private Message"
msgstr "Missatge Privat"
-#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:656
+#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:659
msgid "Select"
msgstr "Selecciona"
@@ -6629,11 +6919,11 @@ msgstr "Canvia el Estat de la Preferència"
msgid "starred"
msgstr "preferit"
-#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:671
+#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:674
msgid "Message signature validated"
msgstr "Validada la signatura del missatge"
-#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:672
+#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:675
msgid "Message signature incorrect"
msgstr "Signatura del missatge incorrecta"
@@ -6689,17 +6979,17 @@ msgstr "Mur-a-Mur"
msgid "via Wall-To-Wall:"
msgstr "via Mur-a-Mur:"
-#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:719
+#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:722
#, php-format
msgid "from %s"
msgstr "De %s"
-#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:722
+#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:725
#, php-format
msgid "last edited: %s"
msgstr "últim editat: %s"
-#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:723
+#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:726
#, php-format
msgid "Expires: %s"
msgstr "Expira: %s"
@@ -6717,26 +7007,27 @@ msgid "Mark all seen"
msgstr "Marca tot com ja vist"
#: ../../Zotlabs/Lib/ThreadItem.php:421 ../../include/js_strings.php:7
-msgid "[+] show all"
-msgstr "[+] mostra tot"
+#, php-format
+msgid "%s show all"
+msgstr ""
-#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1215
+#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1226
msgid "Bold"
msgstr "Negreta"
-#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1216
+#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1227
msgid "Italic"
msgstr "Italica"
-#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1217
+#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1228
msgid "Underline"
msgstr "Subratllat"
-#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1218
+#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1229
msgid "Quote"
msgstr "Cometes"
-#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1219
+#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1230
msgid "Code"
msgstr "Codi"
@@ -6752,840 +7043,122 @@ msgstr "Insereix Enllaç"
msgid "Video"
msgstr "Video"
-#: ../../include/Import/import_diaspora.php:16
-msgid "No username found in import file."
-msgstr "No s'ha trobat nom d'usuari a l'arxiu d'importació."
-
-#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:50
-msgid "Unable to create a unique channel address. Import failed."
-msgstr "No s'ha pogut importar el canal perquè l'adreça única de canal no s'ha pogut crear."
-
-#: ../../include/dba/dba_driver.php:171
-#, php-format
-msgid "Cannot locate DNS info for database server '%s'"
-msgstr "No s'ha trobat informació de DNS pel servidor de base de dades '%s'"
-
-#: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270
-#: ../../include/widgets.php:46 ../../include/widgets.php:429
-#: ../../include/contact_widgets.php:91
-msgid "Categories"
-msgstr "Categories"
-
-#: ../../include/taxonomy.php:228 ../../include/taxonomy.php:249
-msgid "Tags"
-msgstr "Etiquetes"
-
-#: ../../include/taxonomy.php:293
-msgid "Keywords"
-msgstr "Paraules clau"
-
-#: ../../include/taxonomy.php:314
-msgid "have"
-msgstr "tinc"
-
-#: ../../include/taxonomy.php:314
-msgid "has"
-msgstr "tens"
-
-#: ../../include/taxonomy.php:315
-msgid "want"
-msgstr "vull"
-
-#: ../../include/taxonomy.php:315
-msgid "wants"
-msgstr "vols"
-
-#: ../../include/taxonomy.php:316
-msgid "likes"
-msgstr "agrada"
-
-#: ../../include/taxonomy.php:317
-msgid "dislikes"
-msgstr "desagrada"
-
-#: ../../include/event.php:22 ../../include/event.php:69
-#: ../../include/bb2diaspora.php:485
-msgid "l F d, Y \\@ g:i A"
-msgstr "l F d, Y \\@ g:i A"
-
-#: ../../include/event.php:30 ../../include/event.php:73
-#: ../../include/bb2diaspora.php:491
-msgid "Starts:"
-msgstr "Inicia:"
-
-#: ../../include/event.php:40 ../../include/event.php:77
-#: ../../include/bb2diaspora.php:499
-msgid "Finishes:"
-msgstr "Acaba:"
-
-#: ../../include/event.php:812
-msgid "This event has been added to your calendar."
-msgstr "Aquest succés ha estat afegit al teu calendari."
-
-#: ../../include/event.php:1012
-msgid "Not specified"
-msgstr "Sense especificar"
-
-#: ../../include/event.php:1013
-msgid "Needs Action"
-msgstr "Necessita una Acció"
-
-#: ../../include/event.php:1014
-msgid "Completed"
-msgstr "Completat"
-
-#: ../../include/event.php:1015
-msgid "In Process"
-msgstr "En Procès"
-
-#: ../../include/event.php:1016
-msgid "Cancelled"
-msgstr "Cancel·lat"
-
-#: ../../include/import.php:29
-msgid ""
-"Cannot create a duplicate channel identifier on this system. Import failed."
-msgstr "No s'ha pogut importar el canal perquè l'identificador del canal no s'ha pogut duplicar en aquest servidor."
-
-#: ../../include/import.php:76
-msgid "Channel clone failed. Import failed."
-msgstr "No s'ha pogut importar el canal perquè el canal no s'ha pogut clonar."
-
-#: ../../include/items.php:892 ../../include/items.php:937
-msgid "(Unknown)"
-msgstr "(Desconegut)"
-
-#: ../../include/items.php:1136
-msgid "Visible to anybody on the internet."
-msgstr "Visible per tothom a la Internet"
-
-#: ../../include/items.php:1138
-msgid "Visible to you only."
-msgstr "Visible només per tú."
-
-#: ../../include/items.php:1140
-msgid "Visible to anybody in this network."
-msgstr "Visible per tothom en aquesta xarxa."
-
-#: ../../include/items.php:1142
-msgid "Visible to anybody authenticated."
-msgstr "Visible per tothom autenticat."
-
-#: ../../include/items.php:1144
-#, php-format
-msgid "Visible to anybody on %s."
-msgstr "Visible per a tothom a %s."
-
-#: ../../include/items.php:1146
-msgid "Visible to all connections."
-msgstr "Visible per a totes les connexions."
-
-#: ../../include/items.php:1148
-msgid "Visible to approved connections."
-msgstr "Visible per a les connexions aprovades."
-
-#: ../../include/items.php:1150
-msgid "Visible to specific connections."
-msgstr "Visible per a específiques connexions."
-
-#: ../../include/items.php:3909
-msgid "Privacy group is empty."
-msgstr "El grup privat està vuit."
-
-#: ../../include/items.php:3916
-#, php-format
-msgid "Privacy group: %s"
-msgstr "Grup privat: %s"
-
-#: ../../include/items.php:3928
-msgid "Connection not found."
-msgstr "Connexió no trobada."
-
-#: ../../include/items.php:4277
-msgid "profile photo"
-msgstr "foto del perfil"
-
-#: ../../include/message.php:20
-msgid "No recipient provided."
-msgstr "No s'ha proporcionat bústia."
-
-#: ../../include/message.php:25
-msgid "[no subject]"
-msgstr "[no subject]"
-
-#: ../../include/message.php:45
-msgid "Unable to determine sender."
-msgstr "incapaç de determinar el remitent"
-
-#: ../../include/message.php:222
-msgid "Stored post could not be verified."
-msgstr "L'entrada guardada no pot ser verificada"
-
-#: ../../include/text.php:428
-msgid "prev"
-msgstr "prev"
-
-#: ../../include/text.php:430
-msgid "first"
-msgstr "primer"
-
-#: ../../include/text.php:459
-msgid "last"
-msgstr "últim"
-
-#: ../../include/text.php:462
-msgid "next"
-msgstr "pròxim"
+#: ../../Zotlabs/Lib/PermissionDescription.php:31
+#: ../../include/acl_selectors.php:230
+msgid "Visible to your default audience"
+msgstr "Visible per a la teva audiència "
-#: ../../include/text.php:472
-msgid "older"
-msgstr "el més antic"
+#: ../../Zotlabs/Lib/PermissionDescription.php:106
+#: ../../include/acl_selectors.php:266
+msgid "Only me"
+msgstr "Només jo"
-#: ../../include/text.php:474
-msgid "newer"
-msgstr "El més nou"
+#: ../../Zotlabs/Lib/PermissionDescription.php:107
+msgid "Public"
+msgstr "Públic"
-#: ../../include/text.php:863
-msgid "No connections"
-msgstr "Sense Connexions"
+#: ../../Zotlabs/Lib/PermissionDescription.php:108
+msgid "Anybody in the $Projectname network"
+msgstr "Ningú a la xarxa $Projectname"
-#: ../../include/text.php:888
+#: ../../Zotlabs/Lib/PermissionDescription.php:109
#, php-format
-msgid "View all %s connections"
-msgstr "Veure totes les connexions de %s"
-
-#: ../../include/text.php:1033 ../../include/text.php:1038
-msgid "poke"
-msgstr "esperona"
-
-#: ../../include/text.php:1033 ../../include/text.php:1038
-#: ../../include/conversation.php:243
-msgid "poked"
-msgstr "esperonat"
-
-#: ../../include/text.php:1039
-msgid "ping"
-msgstr "coloca"
-
-#: ../../include/text.php:1039
-msgid "pinged"
-msgstr "colocat"
-
-#: ../../include/text.php:1040
-msgid "prod"
-msgstr "picar"
-
-#: ../../include/text.php:1040
-msgid "prodded"
-msgstr "picat"
-
-#: ../../include/text.php:1041
-msgid "slap"
-msgstr "bufetada"
-
-#: ../../include/text.php:1041
-msgid "slapped"
-msgstr "bufetejat"
-
-#: ../../include/text.php:1042
-msgid "finger"
-msgstr "senyal"
-
-#: ../../include/text.php:1042
-msgid "fingered"
-msgstr "senyalat"
-
-#: ../../include/text.php:1043
-msgid "rebuff"
-msgstr "menyspreu"
-
-#: ../../include/text.php:1043
-msgid "rebuffed"
-msgstr "menyspreuat"
-
-#: ../../include/text.php:1055
-msgid "happy"
-msgstr "feliç"
-
-#: ../../include/text.php:1056
-msgid "sad"
-msgstr "trist"
-
-#: ../../include/text.php:1057
-msgid "mellow"
-msgstr "melós"
-
-#: ../../include/text.php:1058
-msgid "tired"
-msgstr "cansat"
-
-#: ../../include/text.php:1059
-msgid "perky"
-msgstr "turgent"
-
-#: ../../include/text.php:1060
-msgid "angry"
-msgstr "enfadat"
-
-#: ../../include/text.php:1061
-msgid "stupefied"
-msgstr "estupefacte"
-
-#: ../../include/text.php:1062
-msgid "puzzled"
-msgstr "perplexe"
-
-#: ../../include/text.php:1063
-msgid "interested"
-msgstr "Interessat"
-
-#: ../../include/text.php:1064
-msgid "bitter"
-msgstr "amargat"
-
-#: ../../include/text.php:1065
-msgid "cheerful"
-msgstr "feliç"
-
-#: ../../include/text.php:1066
-msgid "alive"
-msgstr "viu"
-
-#: ../../include/text.php:1067
-msgid "annoyed"
-msgstr "molest"
-
-#: ../../include/text.php:1068
-msgid "anxious"
-msgstr "ansiós"
-
-#: ../../include/text.php:1069
-msgid "cranky"
-msgstr "malagaitós"
-
-#: ../../include/text.php:1070
-msgid "disturbed"
-msgstr "transtornat"
-
-#: ../../include/text.php:1071
-msgid "frustrated"
-msgstr "frustrat"
-
-#: ../../include/text.php:1072
-msgid "depressed"
-msgstr "deprimit"
-
-#: ../../include/text.php:1073
-msgid "motivated"
-msgstr "motivat"
-
-#: ../../include/text.php:1074
-msgid "relaxed"
-msgstr "relaxat"
-
-#: ../../include/text.php:1075
-msgid "surprised"
-msgstr "sorprès"
-
-#: ../../include/text.php:1257 ../../include/js_strings.php:70
-msgid "Monday"
-msgstr "Dilluns"
-
-#: ../../include/text.php:1257 ../../include/js_strings.php:71
-msgid "Tuesday"
-msgstr "Dimarts"
-
-#: ../../include/text.php:1257 ../../include/js_strings.php:72
-msgid "Wednesday"
-msgstr "Dimecres"
-
-#: ../../include/text.php:1257 ../../include/js_strings.php:73
-msgid "Thursday"
-msgstr "Dijous"
-
-#: ../../include/text.php:1257 ../../include/js_strings.php:74
-msgid "Friday"
-msgstr "Divendres"
-
-#: ../../include/text.php:1257 ../../include/js_strings.php:75
-msgid "Saturday"
-msgstr "Dissabte"
-
-#: ../../include/text.php:1257 ../../include/js_strings.php:69
-msgid "Sunday"
-msgstr "Diumenge"
-
-#: ../../include/text.php:1261 ../../include/js_strings.php:45
-msgid "January"
-msgstr "Gener"
-
-#: ../../include/text.php:1261 ../../include/js_strings.php:46
-msgid "February"
-msgstr "Febrer"
-
-#: ../../include/text.php:1261 ../../include/js_strings.php:47
-msgid "March"
-msgstr "Març"
-
-#: ../../include/text.php:1261 ../../include/js_strings.php:48
-msgid "April"
-msgstr "Abril"
-
-#: ../../include/text.php:1261
-msgid "May"
-msgstr "Maig"
-
-#: ../../include/text.php:1261 ../../include/js_strings.php:50
-msgid "June"
-msgstr "Juny"
-
-#: ../../include/text.php:1261 ../../include/js_strings.php:51
-msgid "July"
-msgstr "Juliol"
-
-#: ../../include/text.php:1261 ../../include/js_strings.php:52
-msgid "August"
-msgstr "Agost"
-
-#: ../../include/text.php:1261 ../../include/js_strings.php:53
-msgid "September"
-msgstr "Setembre"
-
-#: ../../include/text.php:1261 ../../include/js_strings.php:54
-msgid "October"
-msgstr "Octubre"
-
-#: ../../include/text.php:1261 ../../include/js_strings.php:55
-msgid "November"
-msgstr "Novembre"
-
-#: ../../include/text.php:1261 ../../include/js_strings.php:56
-msgid "December"
-msgstr "Desembre"
-
-#: ../../include/text.php:1338 ../../include/text.php:1342
-msgid "Unknown Attachment"
-msgstr "Adjunt Desconegut"
-
-#: ../../include/text.php:1344
-msgid "unknown"
-msgstr "desconegut"
-
-#: ../../include/text.php:1380
-msgid "remove category"
-msgstr "elimina categoria"
-
-#: ../../include/text.php:1457
-msgid "remove from file"
-msgstr "elimina del arxiu"
-
-#: ../../include/text.php:1753 ../../include/text.php:1824
-msgid "default"
-msgstr "per defecte"
+msgid "Any account on %s"
+msgstr "Qualsevol compte a %s"
-#: ../../include/text.php:1761
-msgid "Page layout"
-msgstr "Format de la pàgina"
+#: ../../Zotlabs/Lib/PermissionDescription.php:110
+msgid "Any of my connections"
+msgstr "Qualsevol de les meves connexions"
-#: ../../include/text.php:1761
-msgid "You can create your own with the layouts tool"
-msgstr "Pots crear el teu propi amb l'editor de format de pàgina."
+#: ../../Zotlabs/Lib/PermissionDescription.php:111
+msgid "Only connections I specifically allow"
+msgstr "Només les connexions que permeto específicament"
-#: ../../include/text.php:1803
-msgid "Page content type"
-msgstr "Tipus de contingut de la pàgina"
+#: ../../Zotlabs/Lib/PermissionDescription.php:112
+msgid "Anybody authenticated (could include visitors from other networks)"
+msgstr "Qualsevol persona autenticada (podria incloure als usuaris d'altres xarxes)"
-#: ../../include/text.php:1836
-msgid "Select an alternate language"
-msgstr "Tria un idioma alternatiu"
+#: ../../Zotlabs/Lib/PermissionDescription.php:113
+msgid "Any connections including those who haven't yet been approved"
+msgstr "Qualsevol connexió incloent aquells que encara no han estat aprovats"
-#: ../../include/text.php:1953
-msgid "activity"
-msgstr "activitat"
+#: ../../Zotlabs/Lib/PermissionDescription.php:152
+msgid ""
+"This is your default setting for the audience of your normal stream, and "
+"posts."
+msgstr "Aquest és l'ajust per defecte per al públic del seu flux normal i entrades."
-#: ../../include/text.php:2262
-msgid "Design Tools"
-msgstr "Eines de disseny"
+#: ../../Zotlabs/Lib/PermissionDescription.php:153
+msgid ""
+"This is your default setting for who can view your default channel profile"
+msgstr "Aquesta és la configuració per defecte per a qui pugui veure el teu perfil per defecte del canal"
-#: ../../include/text.php:2268
-msgid "Pages"
-msgstr "Pàgines"
+#: ../../Zotlabs/Lib/PermissionDescription.php:154
+msgid "This is your default setting for who can view your connections"
+msgstr "Aquesta és la configuració per defecte per a qui pugui veure les teves connexions"
-#: ../../include/widgets.php:103
-msgid "System"
-msgstr "Sistema"
+#: ../../Zotlabs/Lib/PermissionDescription.php:155
+msgid ""
+"This is your default setting for who can view your file storage and photos"
+msgstr "Aquesta és la configuració per defecte per a qui pugui veure els teus arxius i fotos"
-#: ../../include/widgets.php:106
-msgid "New App"
-msgstr "Nova App"
+#: ../../Zotlabs/Lib/PermissionDescription.php:156
+msgid "This is your default setting for the audience of your webpages"
+msgstr "Aquests son els ajustos per defecte de l'audiència de les teves pàgines web"
-#: ../../include/widgets.php:154
-msgid "Suggestions"
-msgstr "Suggerencies"
+#: ../../include/Import/import_diaspora.php:16
+msgid "No username found in import file."
+msgstr "No s'ha trobat nom d'usuari a l'arxiu d'importació."
-#: ../../include/widgets.php:155
-msgid "See more..."
-msgstr "Veure més....."
+#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:51
+msgid "Unable to create a unique channel address. Import failed."
+msgstr "No s'ha pogut importar el canal perquè l'adreça única de canal no s'ha pogut crear."
-#: ../../include/widgets.php:175
+#: ../../include/dba/dba_driver.php:171
#, php-format
-msgid "You have %1$.0f of %2$.0f allowed connections."
-msgstr "Tens %1$.0f de %2$.0f connexions permeses."
-
-#: ../../include/widgets.php:181
-msgid "Add New Connection"
-msgstr "Afegeix una Nova Connexió"
-
-#: ../../include/widgets.php:182
-msgid "Enter channel address"
-msgstr "Introdueix l'adreça del canal"
-
-#: ../../include/widgets.php:183
-msgid "Examples: bob@example.com, https://example.com/barbara"
-msgstr "Exemples: bob@example.com, https://exemple.com/barbara"
-
-#: ../../include/widgets.php:199
-msgid "Notes"
-msgstr "Notes"
-
-#: ../../include/widgets.php:273
-msgid "Remove term"
-msgstr "Plaç de remoció"
-
-#: ../../include/widgets.php:281 ../../include/features.php:84
-msgid "Saved Searches"
-msgstr "Cerques Guardades"
-
-#: ../../include/widgets.php:282 ../../include/group.php:316
-msgid "add"
-msgstr "afegeix"
-
-#: ../../include/widgets.php:310 ../../include/contact_widgets.php:53
-#: ../../include/features.php:98
-msgid "Saved Folders"
-msgstr "Carpetes Guardades"
-
-#: ../../include/widgets.php:313 ../../include/widgets.php:432
-#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94
-msgid "Everything"
-msgstr "Tot"
-
-#: ../../include/widgets.php:354
-msgid "Archives"
-msgstr "Arxius"
-
-#: ../../include/widgets.php:516
-msgid "Refresh"
-msgstr "Refresc"
-
-#: ../../include/widgets.php:556
-msgid "Account settings"
-msgstr "Ajustos de Compte"
-
-#: ../../include/widgets.php:562
-msgid "Channel settings"
-msgstr "Ajustos de Canal"
-
-#: ../../include/widgets.php:571
-msgid "Additional features"
-msgstr "Característiques addicionals"
-
-#: ../../include/widgets.php:578
-msgid "Feature/Addon settings"
-msgstr "Ajustos de Complements"
-
-#: ../../include/widgets.php:584
-msgid "Display settings"
-msgstr "Ajustos de pantalla"
-
-#: ../../include/widgets.php:591
-msgid "Manage locations"
-msgstr "Gestiona ubicacions"
-
-#: ../../include/widgets.php:600
-msgid "Export channel"
-msgstr "Exportat canal"
-
-#: ../../include/widgets.php:607
-msgid "Connected apps"
-msgstr "Apps connectades"
-
-#: ../../include/widgets.php:622
-msgid "Premium Channel Settings"
-msgstr "Ajustos Premium de Canal"
-
-#: ../../include/widgets.php:651
-msgid "Private Mail Menu"
-msgstr "Menú de Correu Privat"
-
-#: ../../include/widgets.php:653
-msgid "Combined View"
-msgstr "Vista Combinada"
-
-#: ../../include/widgets.php:658 ../../include/nav.php:196
-msgid "Inbox"
-msgstr "Safata d'entrada"
-
-#: ../../include/widgets.php:663 ../../include/nav.php:197
-msgid "Outbox"
-msgstr "Safata de sortida"
-
-#: ../../include/widgets.php:668 ../../include/nav.php:198
-msgid "New Message"
-msgstr "Nou Missatge"
-
-#: ../../include/widgets.php:685 ../../include/widgets.php:697
-msgid "Conversations"
-msgstr "Conversacions"
-
-#: ../../include/widgets.php:689
-msgid "Received Messages"
-msgstr "Missatges Rebuts"
-
-#: ../../include/widgets.php:693
-msgid "Sent Messages"
-msgstr "Missatges Enviats"
-
-#: ../../include/widgets.php:707
-msgid "No messages."
-msgstr "Sense missatges."
-
-#: ../../include/widgets.php:725
-msgid "Delete conversation"
-msgstr "Conversació esborrada"
-
-#: ../../include/widgets.php:751
-msgid "Events Menu"
-msgstr "Menú d'Esdeveniments"
-
-#: ../../include/widgets.php:752
-msgid "Day View"
-msgstr "Vista de Dia"
-
-#: ../../include/widgets.php:753
-msgid "Week View"
-msgstr "Vista de Setmana"
-
-#: ../../include/widgets.php:754
-msgid "Month View"
-msgstr "Vista de Mes"
-
-#: ../../include/widgets.php:766
-msgid "Events Tools"
-msgstr "Eina d'Esdeveniments"
-
-#: ../../include/widgets.php:767
-msgid "Export Calendar"
-msgstr "Exportar Calendari"
-
-#: ../../include/widgets.php:768
-msgid "Import Calendar"
-msgstr "Importar Calendari"
-
-#: ../../include/widgets.php:842 ../../include/conversation.php:1662
-#: ../../include/conversation.php:1665
-msgid "Chatrooms"
-msgstr "Sala per Xerrar"
-
-#: ../../include/widgets.php:846
-msgid "Overview"
-msgstr "Visió General"
-
-#: ../../include/widgets.php:853
-msgid "Chat Members"
-msgstr "Membres de la Sala de Xat"
-
-#: ../../include/widgets.php:876
-msgid "Bookmarked Chatrooms"
-msgstr "Sales de Xat Favorites"
-
-#: ../../include/widgets.php:899
-msgid "Suggested Chatrooms"
-msgstr "Sales de Xat Suggerides"
-
-#: ../../include/widgets.php:1044 ../../include/widgets.php:1156
-msgid "photo/image"
-msgstr "foto/imatge"
-
-#: ../../include/widgets.php:1099
-msgid "Click to show more"
-msgstr "Fes clic per veure més"
-
-#: ../../include/widgets.php:1250
-msgid "Rating Tools"
-msgstr "Eines de Valoració"
-
-#: ../../include/widgets.php:1254 ../../include/widgets.php:1256
-msgid "Rate Me"
-msgstr "Valora'm"
-
-#: ../../include/widgets.php:1259
-msgid "View Ratings"
-msgstr "Veure Valoracions"
-
-#: ../../include/widgets.php:1316
-msgid "Forums"
-msgstr "Forums"
-
-#: ../../include/widgets.php:1345
-msgid "Tasks"
-msgstr "Tasques"
-
-#: ../../include/widgets.php:1354
-msgid "Documentation"
-msgstr "Documentació"
-
-#: ../../include/widgets.php:1356
-msgid "Project/Site Information"
-msgstr "Informació del Projecte/Lloc"
-
-#: ../../include/widgets.php:1357
-msgid "For Members"
-msgstr "Per Membres"
-
-#: ../../include/widgets.php:1358
-msgid "For Administrators"
-msgstr "Per Administradors"
-
-#: ../../include/widgets.php:1359
-msgid "For Developers"
-msgstr "Per Desenvolupadors"
-
-#: ../../include/widgets.php:1383 ../../include/widgets.php:1421
-msgid "Member registrations waiting for confirmation"
-msgstr "Una inscripció per a ser membre està esperant confirmació"
-
-#: ../../include/widgets.php:1389
-msgid "Inspect queue"
-msgstr "Revisa cua"
-
-#: ../../include/widgets.php:1391
-msgid "DB updates"
-msgstr "Actualitzacions de Base de Dades"
-
-#: ../../include/widgets.php:1416 ../../include/nav.php:216
-msgid "Admin"
-msgstr "Admin"
-
-#: ../../include/widgets.php:1417
-msgid "Plugin Features"
-msgstr "Característiques del Plugin"
-
-#: ../../include/follow.php:27
-msgid "Channel is blocked on this site."
-msgstr "El canal està bloquejat en aquest lloc."
-
-#: ../../include/follow.php:32
-msgid "Channel location missing."
-msgstr "Ubicació del canal perduda."
-
-#: ../../include/follow.php:81
-msgid "Response from remote channel was incomplete."
-msgstr "La resposta del canal remot fou incompleta."
-
-#: ../../include/follow.php:98
-msgid "Channel was deleted and no longer exists."
-msgstr "El canal fou esborrat i actualment no existeix."
-
-#: ../../include/follow.php:154 ../../include/follow.php:190
-msgid "Protocol disabled."
-msgstr "Protocol desactivat."
-
-#: ../../include/follow.php:178
-msgid "Channel discovery failed."
-msgstr "Descobriment de canal fallit."
-
-#: ../../include/follow.php:216
-msgid "Cannot connect to yourself."
-msgstr "No pots connectar amb tu mateix."
+msgid "Cannot locate DNS info for database server '%s'"
+msgstr "No s'ha trobat informació de DNS pel servidor de base de dades '%s'"
-#: ../../include/bookmarks.php:35
+#: ../../include/photos.php:114
#, php-format
-msgid "%1$s's bookmarks"
-msgstr "%1$s de marcadors"
-
-#: ../../include/api.php:1336
-msgid "Public Timeline"
-msgstr "Línia de Temps Pública"
-
-#: ../../include/bbcode.php:123 ../../include/bbcode.php:844
-#: ../../include/bbcode.php:847 ../../include/bbcode.php:852
-#: ../../include/bbcode.php:855 ../../include/bbcode.php:858
-#: ../../include/bbcode.php:861 ../../include/bbcode.php:866
-#: ../../include/bbcode.php:869 ../../include/bbcode.php:874
-#: ../../include/bbcode.php:877 ../../include/bbcode.php:880
-#: ../../include/bbcode.php:883
-msgid "Image/photo"
-msgstr "Imatge/foto"
+msgid "Image exceeds website size limit of %lu bytes"
+msgstr "La imatge excedeix la mida limit pel lloc web en %lu bytes"
-#: ../../include/bbcode.php:162 ../../include/bbcode.php:894
-msgid "Encrypted content"
-msgstr "Contingut encriptat"
+#: ../../include/photos.php:121
+msgid "Image file is empty."
+msgstr "El fitxer d'imatge esta buit."
-#: ../../include/bbcode.php:178
-#, php-format
-msgid "Install %s element: "
-msgstr "Instal·la l'element %s:"
+#: ../../include/photos.php:259
+msgid "Photo storage failed."
+msgstr "Fracassà l'emmagatzematge de la Foto"
-#: ../../include/bbcode.php:182
-#, php-format
-msgid ""
-"This post contains an installable %s element, however you lack permissions "
-"to install it on this site."
-msgstr "Aquesta entrada contè un element %s instal·lable, potser manques de permissos per instal·lar-lo en aquest lloc."
+#: ../../include/photos.php:299
+msgid "a new photo"
+msgstr "Una foto nova"
-#: ../../include/bbcode.php:254
+#: ../../include/photos.php:303
#, php-format
-msgid "%1$s wrote the following %2$s %3$s"
-msgstr "%1$s va escriure el següent %2$s %3$s"
-
-#: ../../include/bbcode.php:331 ../../include/bbcode.php:339
-msgid "Click to open/close"
-msgstr "Clic per obrir/tancar"
-
-#: ../../include/bbcode.php:339
-msgid "spoiler"
-msgstr "xafa guitarres"
-
-#: ../../include/bbcode.php:585
-msgid "Different viewers will see this text differently"
-msgstr "Diferents observadors veuran aquest text de diferents formes"
-
-#: ../../include/bbcode.php:832
-msgid "$1 wrote:"
-msgstr "$1 va escriure:"
-
-#: ../../include/dir_fns.php:141
-msgid "Directory Options"
-msgstr "Opcions de Directori"
-
-#: ../../include/dir_fns.php:143
-msgid "Safe Mode"
-msgstr "Manera Segura"
-
-#: ../../include/dir_fns.php:144
-msgid "Public Forums Only"
-msgstr "Només Fòrums Públics"
+msgctxt "photo_upload"
+msgid "%1$s posted %2$s to %3$s"
+msgstr "%1$s enviat %2$s a %3$s"
-#: ../../include/dir_fns.php:145
-msgid "This Website Only"
-msgstr "Només Aquest Lloc Web"
+#: ../../include/photos.php:506 ../../include/conversation.php:1650
+msgid "Photo Albums"
+msgstr "Albums de Fotos"
-#: ../../include/security.php:383
-msgid ""
-"The form security token was not correct. This probably happened because the "
-"form has been opened for too long (>3 hours) before submitting it."
-msgstr "El formulario de la cadena de seguridad no era correcto. Esto probablemente ocurrió porque el formulario se ha abierto durante demasiado tiempo (> 3 horas) antes de enviarlo."
+#: ../../include/photos.php:510
+msgid "Upload New Photos"
+msgstr "Puja Noves Fotos"
-#: ../../include/nav.php:82 ../../include/nav.php:113 ../../boot.php:1702
+#: ../../include/nav.php:82 ../../include/nav.php:115 ../../boot.php:1703
msgid "Logout"
msgstr "Desconectar"
-#: ../../include/nav.php:82 ../../include/nav.php:113
+#: ../../include/nav.php:82 ../../include/nav.php:115
msgid "End this session"
msgstr "Finalitza aquesta sessió"
-#: ../../include/nav.php:85 ../../include/nav.php:144
+#: ../../include/nav.php:85 ../../include/nav.php:146
msgid "Home"
msgstr "Inici"
@@ -7601,7 +7174,7 @@ msgstr "La teva pàgina de perfil"
msgid "Manage/Edit profiles"
msgstr "Gestiona/Edita perfils"
-#: ../../include/nav.php:90 ../../include/channel.php:941
+#: ../../include/nav.php:90 ../../include/channel.php:980
msgid "Edit Profile"
msgstr "Edita Perfil"
@@ -7621,7 +7194,7 @@ msgstr "Els teus arxius"
msgid "Your chatrooms"
msgstr "Les teves sales de xerrar"
-#: ../../include/nav.php:102 ../../include/conversation.php:1675
+#: ../../include/nav.php:102 ../../include/conversation.php:1690
msgid "Bookmarks"
msgstr "Marcadors"
@@ -7633,181 +7206,408 @@ msgstr "Els teus marcadors"
msgid "Your webpages"
msgstr "Les teves pàgines web"
-#: ../../include/nav.php:110
+#: ../../include/nav.php:108
+msgid "Your wiki"
+msgstr ""
+
+#: ../../include/nav.php:112
msgid "Sign in"
msgstr "Signatura"
-#: ../../include/nav.php:127
+#: ../../include/nav.php:129
#, php-format
msgid "%s - click to logout"
msgstr "%s - click per desconectar"
-#: ../../include/nav.php:130
+#: ../../include/nav.php:132
msgid "Remote authentication"
msgstr "Autenticació remota"
-#: ../../include/nav.php:130
+#: ../../include/nav.php:132
msgid "Click to authenticate to your home hub"
msgstr "Clica per autentificar-te en el teu node"
-#: ../../include/nav.php:144
+#: ../../include/nav.php:146
msgid "Home Page"
msgstr "Pàgina Personal"
-#: ../../include/nav.php:147
+#: ../../include/nav.php:149
msgid "Create an account"
msgstr "Crear un compte"
-#: ../../include/nav.php:159
+#: ../../include/nav.php:161
msgid "Help and documentation"
msgstr "Ajuda i documentació"
-#: ../../include/nav.php:163
+#: ../../include/nav.php:165
msgid "Applications, utilities, links, games"
msgstr "Aplicacions, utilitats, enllaços, jocs"
-#: ../../include/nav.php:165
+#: ../../include/nav.php:167
msgid "Search site @name, #tag, ?docs, content"
msgstr "Cerca pel lloc @name, #tag, ?docs, contingut"
-#: ../../include/nav.php:167
+#: ../../include/nav.php:169
msgid "Channel Directory"
msgstr "Directori de Canals"
-#: ../../include/nav.php:179
+#: ../../include/nav.php:181
msgid "Your grid"
msgstr "La teva malla"
-#: ../../include/nav.php:180
+#: ../../include/nav.php:182
msgid "Mark all grid notifications seen"
msgstr "Marca totes les notificacions de la malla vistes"
-#: ../../include/nav.php:182
+#: ../../include/nav.php:184
msgid "Channel home"
msgstr "Canal personal"
-#: ../../include/nav.php:183
+#: ../../include/nav.php:185
msgid "Mark all channel notifications seen"
msgstr "Marca totes les notificacions de canal vistes"
-#: ../../include/nav.php:189
+#: ../../include/nav.php:191
msgid "Notices"
msgstr "Noticies"
-#: ../../include/nav.php:189
+#: ../../include/nav.php:191
msgid "Notifications"
msgstr "Notificacions"
-#: ../../include/nav.php:190
+#: ../../include/nav.php:192
msgid "See all notifications"
msgstr "Veure totes les Notificacions"
-#: ../../include/nav.php:193
+#: ../../include/nav.php:195
msgid "Private mail"
msgstr "Correu privat"
-#: ../../include/nav.php:194
+#: ../../include/nav.php:196
msgid "See all private messages"
msgstr "Veure tots els missatges privats"
-#: ../../include/nav.php:195
+#: ../../include/nav.php:197
msgid "Mark all private messages seen"
msgstr "Marcar tots els missatges privats vistos"
-#: ../../include/nav.php:201
+#: ../../include/nav.php:198 ../../include/widgets.php:667
+msgid "Inbox"
+msgstr "Safata d'entrada"
+
+#: ../../include/nav.php:199 ../../include/widgets.php:672
+msgid "Outbox"
+msgstr "Safata de sortida"
+
+#: ../../include/nav.php:200 ../../include/widgets.php:677
+msgid "New Message"
+msgstr "Nou Missatge"
+
+#: ../../include/nav.php:203
msgid "Event Calendar"
msgstr "Calendari d'Events"
-#: ../../include/nav.php:202
+#: ../../include/nav.php:204
msgid "See all events"
msgstr "Veure tots els esdeveniments"
-#: ../../include/nav.php:203
+#: ../../include/nav.php:205
msgid "Mark all events seen"
msgstr "Marcar tots els esdeveniments vistos"
-#: ../../include/nav.php:206
+#: ../../include/nav.php:208
msgid "Manage Your Channels"
msgstr "Gestiona els Teus Canals"
-#: ../../include/nav.php:208
+#: ../../include/nav.php:210
msgid "Account/Channel Settings"
msgstr "Ajustos de Compte/Canal"
-#: ../../include/nav.php:216
+#: ../../include/nav.php:218 ../../include/widgets.php:1510
+msgid "Admin"
+msgstr "Admin"
+
+#: ../../include/nav.php:218
msgid "Site Setup and Configuration"
msgstr "Ajustos i Configuració del Lloc"
-#: ../../include/nav.php:247 ../../include/conversation.php:851
+#: ../../include/nav.php:249 ../../include/conversation.php:854
msgid "Loading..."
msgstr "Carregant..."
-#: ../../include/nav.php:252
+#: ../../include/nav.php:254
msgid "@name, #tag, ?doc, content"
msgstr "@nom, #etiqueta, ?doc, contingut"
-#: ../../include/nav.php:253
+#: ../../include/nav.php:255
msgid "Please wait..."
msgstr "Si us plau, espera......."
-#: ../../include/connections.php:95
-msgid "New window"
-msgstr "Nova finestra"
+#: ../../include/network.php:704
+msgid "view full size"
+msgstr "Veure a mida competa"
-#: ../../include/connections.php:96
-msgid "Open the selected location in a different window or browser tab"
-msgstr "Obrir la localització seleccionada en un altre finestra o pestanya del navegador"
+#: ../../include/network.php:1930 ../../include/account.php:317
+#: ../../include/account.php:344 ../../include/account.php:404
+msgid "Administrator"
+msgstr "Administrador"
-#: ../../include/connections.php:214
-#, php-format
-msgid "User '%s' deleted"
-msgstr "usuari '%s' esborrat"
+#: ../../include/network.php:1944
+msgid "No Subject"
+msgstr "Sense Assumpte"
-#: ../../include/contact_widgets.php:11
-#, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] "%d invitació disponible"
-msgstr[1] "%d invitacions disponibles"
+#: ../../include/network.php:2198 ../../include/network.php:2199
+msgid "Friendica"
+msgstr "Friendica"
-#: ../../include/contact_widgets.php:19
-msgid "Find Channels"
-msgstr "Troba Canals"
+#: ../../include/network.php:2200
+msgid "OStatus"
+msgstr "OStatus"
-#: ../../include/contact_widgets.php:20
-msgid "Enter name or interest"
-msgstr "Entra un nom o interes"
+#: ../../include/network.php:2201
+msgid "GNU-Social"
+msgstr "GNU-Social"
-#: ../../include/contact_widgets.php:21
-msgid "Connect/Follow"
-msgstr "Conecta/Segueix"
+#: ../../include/network.php:2202
+msgid "RSS/Atom"
+msgstr "RSS/Atom"
-#: ../../include/contact_widgets.php:22
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr "Exemples: Lionel Messi, Futbolista"
+#: ../../include/network.php:2204
+msgid "Diaspora"
+msgstr "Diaspora"
-#: ../../include/contact_widgets.php:26
-msgid "Random Profile"
-msgstr "Perfil Aleatori"
+#: ../../include/network.php:2205
+msgid "Facebook"
+msgstr "Facebook"
-#: ../../include/contact_widgets.php:27
-msgid "Invite Friends"
-msgstr "Convida Amics"
+#: ../../include/network.php:2206
+msgid "Zot"
+msgstr "Zot"
-#: ../../include/contact_widgets.php:29
-msgid "Advanced example: name=fred and country=iceland"
-msgstr "Exemple avançat: nom=pep i pais=eire"
+#: ../../include/network.php:2207
+msgid "LinkedIn"
+msgstr "LinkedIn"
-#: ../../include/contact_widgets.php:122
+#: ../../include/network.php:2208
+msgid "XMPP/IM"
+msgstr "XMPP/IM"
+
+#: ../../include/network.php:2209
+msgid "MySpace"
+msgstr "MySpace"
+
+#: ../../include/page_widgets.php:7
+msgid "New Page"
+msgstr "Pàgina Nova"
+
+#: ../../include/page_widgets.php:46
+msgid "Title"
+msgstr "Títol"
+
+#: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270
+#: ../../include/widgets.php:46 ../../include/widgets.php:429
+#: ../../include/contact_widgets.php:91
+msgid "Categories"
+msgstr "Categories"
+
+#: ../../include/taxonomy.php:228 ../../include/taxonomy.php:249
+msgid "Tags"
+msgstr "Etiquetes"
+
+#: ../../include/taxonomy.php:293
+msgid "Keywords"
+msgstr "Paraules clau"
+
+#: ../../include/taxonomy.php:314
+msgid "have"
+msgstr "tinc"
+
+#: ../../include/taxonomy.php:314
+msgid "has"
+msgstr "tens"
+
+#: ../../include/taxonomy.php:315
+msgid "want"
+msgstr "vull"
+
+#: ../../include/taxonomy.php:315
+msgid "wants"
+msgstr "vols"
+
+#: ../../include/taxonomy.php:316
+msgid "likes"
+msgstr "agrada"
+
+#: ../../include/taxonomy.php:317
+msgid "dislikes"
+msgstr "desagrada"
+
+#: ../../include/channel.php:33
+msgid "Unable to obtain identity information from database"
+msgstr "Incapaç de trobar l'informació d'identitat a la base de dades"
+
+#: ../../include/channel.php:67
+msgid "Empty name"
+msgstr "Nom buit"
+
+#: ../../include/channel.php:70
+msgid "Name too long"
+msgstr "Nom massa llarg"
+
+#: ../../include/channel.php:181
+msgid "No account identifier"
+msgstr "Sense identificador de compte"
+
+#: ../../include/channel.php:193
+msgid "Nickname is required."
+msgstr "Alies/malnom es requerit."
+
+#: ../../include/channel.php:207
+msgid "Reserved nickname. Please choose another."
+msgstr "Àlies reservat. Tria un altre."
+
+#: ../../include/channel.php:212
+msgid ""
+"Nickname has unsupported characters or is already being used on this site."
+msgstr "L'álies te caracters no soportats o ja esta en ús en aquest lloc"
+
+#: ../../include/channel.php:272
+msgid "Unable to retrieve created identity"
+msgstr "No es pot recuperar la identitat creada"
+
+#: ../../include/channel.php:341
+msgid "Default Profile"
+msgstr "Perfil per Defecte"
+
+#: ../../include/channel.php:830
+msgid "Requested channel is not available."
+msgstr "El canal demanat no està disponible."
+
+#: ../../include/channel.php:977
+msgid "Create New Profile"
+msgstr "Crear un Perfil Nou"
+
+#: ../../include/channel.php:997
+msgid "Visible to everybody"
+msgstr "Visible per tothom"
+
+#: ../../include/channel.php:1070 ../../include/channel.php:1182
+msgid "Gender:"
+msgstr "Gènere:"
+
+#: ../../include/channel.php:1071 ../../include/channel.php:1226
+msgid "Status:"
+msgstr "Estatus:"
+
+#: ../../include/channel.php:1072 ../../include/channel.php:1237
+msgid "Homepage:"
+msgstr "Pàgina Personal:"
+
+#: ../../include/channel.php:1073
+msgid "Online Now"
+msgstr "Ara en Linia"
+
+#: ../../include/channel.php:1187
+msgid "Like this channel"
+msgstr "M'agrada aquest canal"
+
+#: ../../include/channel.php:1211
+msgid "j F, Y"
+msgstr "j F, Y"
+
+#: ../../include/channel.php:1212
+msgid "j F"
+msgstr "j F"
+
+#: ../../include/channel.php:1219
+msgid "Birthday:"
+msgstr "Aniversari:"
+
+#: ../../include/channel.php:1232
#, php-format
-msgid "%d connection in common"
-msgid_plural "%d connections in common"
-msgstr[0] "%d connexió en comú"
-msgstr[1] "%d connexions en comú"
+msgid "for %1$d %2$s"
+msgstr "per %1$d %2$s"
-#: ../../include/contact_widgets.php:127
-msgid "show more"
-msgstr "mostrar més"
+#: ../../include/channel.php:1235
+msgid "Sexual Preference:"
+msgstr "Preferència Sexual:"
+
+#: ../../include/channel.php:1241
+msgid "Tags:"
+msgstr "Etiquetes:"
+
+#: ../../include/channel.php:1243
+msgid "Political Views:"
+msgstr "Idees Polítiques:"
+
+#: ../../include/channel.php:1245
+msgid "Religion:"
+msgstr "Religió:"
+
+#: ../../include/channel.php:1249
+msgid "Hobbies/Interests:"
+msgstr "Aficions/Interessos:"
+
+#: ../../include/channel.php:1251
+msgid "Likes:"
+msgstr "Agrada:"
+
+#: ../../include/channel.php:1253
+msgid "Dislikes:"
+msgstr "Desagrada:"
+
+#: ../../include/channel.php:1255
+msgid "Contact information and Social Networks:"
+msgstr "Informació de contacte i Xarxes Socials:"
+
+#: ../../include/channel.php:1257
+msgid "My other channels:"
+msgstr "Els meus altres canals:"
+
+#: ../../include/channel.php:1259
+msgid "Musical interests:"
+msgstr "Interessos Musicals:"
+
+#: ../../include/channel.php:1261
+msgid "Books, literature:"
+msgstr "Llibres, literatura:"
+
+#: ../../include/channel.php:1263
+msgid "Television:"
+msgstr "Televisió:"
+
+#: ../../include/channel.php:1265
+msgid "Film/dance/culture/entertainment:"
+msgstr "Películes/Dança/Cultura/Entreteniment:"
+
+#: ../../include/channel.php:1267
+msgid "Love/Romance:"
+msgstr "Amor/Romace:"
+
+#: ../../include/channel.php:1269
+msgid "Work/employment:"
+msgstr "Treball/feina:"
+
+#: ../../include/channel.php:1271
+msgid "School/education:"
+msgstr "Escola/educació:"
+
+#: ../../include/channel.php:1292
+msgid "Like this thing"
+msgstr "M'agrada això"
+
+#: ../../include/connections.php:95
+msgid "New window"
+msgstr "Nova finestra"
+
+#: ../../include/connections.php:96
+msgid "Open the selected location in a different window or browser tab"
+msgstr "Obrir la localització seleccionada en un altre finestra o pestanya del navegador"
+
+#: ../../include/connections.php:214
+#, php-format
+msgid "User '%s' deleted"
+msgstr "usuari '%s' esborrat"
#: ../../include/conversation.php:204
#, php-format
@@ -7819,258 +7619,269 @@ msgstr "%1$s esta ara connectat amb %2$s"
msgid "%1$s poked %2$s"
msgstr "%1$s a esperonat %2$s"
-#: ../../include/conversation.php:691
+#: ../../include/conversation.php:243 ../../include/text.php:1013
+#: ../../include/text.php:1018
+msgid "poked"
+msgstr "esperonat"
+
+#: ../../include/conversation.php:694
#, php-format
msgid "View %s's profile @ %s"
msgstr "Vista %s del perfil @ %s"
-#: ../../include/conversation.php:710
+#: ../../include/conversation.php:713
msgid "Categories:"
msgstr "Categories:"
-#: ../../include/conversation.php:711
+#: ../../include/conversation.php:714
msgid "Filed under:"
msgstr "Arxivar a:"
-#: ../../include/conversation.php:738
+#: ../../include/conversation.php:741
msgid "View in context"
msgstr "Veure en context"
-#: ../../include/conversation.php:847
+#: ../../include/conversation.php:850
msgid "remove"
msgstr "treu"
-#: ../../include/conversation.php:852
+#: ../../include/conversation.php:855
msgid "Delete Selected Items"
msgstr "Esborra els Articles Seleccionats"
-#: ../../include/conversation.php:948
+#: ../../include/conversation.php:951
msgid "View Source"
msgstr "Veure l'Origen"
-#: ../../include/conversation.php:949
+#: ../../include/conversation.php:952
msgid "Follow Thread"
msgstr "Segueix el Fil"
-#: ../../include/conversation.php:950
+#: ../../include/conversation.php:953
msgid "Unfollow Thread"
msgstr "Fil Abandonat"
-#: ../../include/conversation.php:955
+#: ../../include/conversation.php:958
msgid "Activity/Posts"
msgstr "Activitat/Entrades"
-#: ../../include/conversation.php:957
+#: ../../include/conversation.php:960
msgid "Edit Connection"
msgstr "Modifica la Connexió"
-#: ../../include/conversation.php:958
+#: ../../include/conversation.php:961
msgid "Message"
msgstr "Missatge"
-#: ../../include/conversation.php:1075
+#: ../../include/conversation.php:1078
#, php-format
msgid "%s likes this."
msgstr "%s agrada això."
-#: ../../include/conversation.php:1075
+#: ../../include/conversation.php:1078
#, php-format
msgid "%s doesn't like this."
msgstr "%s no agrada això."
-#: ../../include/conversation.php:1079
+#: ../../include/conversation.php:1082
#, 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 gent</span> agrada això."
msgstr[1] "<span %1$s>%2$d gent</span> agrada això."
-#: ../../include/conversation.php:1081
+#: ../../include/conversation.php:1084
#, 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 gent</span> no agrada això."
msgstr[1] "<span %1$s>%2$d gent</span> no agrada això."
-#: ../../include/conversation.php:1087
+#: ../../include/conversation.php:1090
msgid "and"
msgstr "i"
-#: ../../include/conversation.php:1090
+#: ../../include/conversation.php:1093
#, php-format
msgid ", and %d other people"
msgid_plural ", and %d other people"
msgstr[0] ", i %d altra gent"
msgstr[1] ", i %d altra gent"
-#: ../../include/conversation.php:1091
+#: ../../include/conversation.php:1094
#, php-format
msgid "%s like this."
msgstr "%s agrada això."
-#: ../../include/conversation.php:1091
+#: ../../include/conversation.php:1094
#, php-format
msgid "%s don't like this."
msgstr "%s no agrada això."
-#: ../../include/conversation.php:1130
+#: ../../include/conversation.php:1133
msgid "Set your location"
msgstr "Ajusta la teva ubicació"
-#: ../../include/conversation.php:1131
+#: ../../include/conversation.php:1134
msgid "Clear browser location"
msgstr "Treu la localització del navegador"
-#: ../../include/conversation.php:1177
+#: ../../include/conversation.php:1182
msgid "Tag term:"
msgstr "Paraula de l'Etiqueta:"
-#: ../../include/conversation.php:1178
+#: ../../include/conversation.php:1183
msgid "Where are you right now?"
msgstr "On ets ara?"
-#: ../../include/conversation.php:1210
+#: ../../include/conversation.php:1221
msgid "Page link name"
msgstr "Nom de la pàgina enllaçada"
-#: ../../include/conversation.php:1213
+#: ../../include/conversation.php:1224
msgid "Post as"
msgstr "Envia com"
-#: ../../include/conversation.php:1223
+#: ../../include/conversation.php:1238
msgid "Toggle voting"
msgstr "Commutar votació"
-#: ../../include/conversation.php:1231
+#: ../../include/conversation.php:1246
msgid "Categories (optional, comma-separated list)"
msgstr "Categories (opcional, llista separada per comes)"
-#: ../../include/conversation.php:1254
+#: ../../include/conversation.php:1269
msgid "Set publish date"
msgstr "Ajusta la data de publicació"
-#: ../../include/conversation.php:1258
-msgid "OK"
-msgstr "OK"
-
-#: ../../include/conversation.php:1503
+#: ../../include/conversation.php:1518
msgid "Discover"
msgstr "Descobrir"
-#: ../../include/conversation.php:1506
+#: ../../include/conversation.php:1521
msgid "Imported public streams"
msgstr "Importar fluxos públics"
-#: ../../include/conversation.php:1511
+#: ../../include/conversation.php:1526
msgid "Commented Order"
msgstr "Ordenar per Comentaris"
-#: ../../include/conversation.php:1514
+#: ../../include/conversation.php:1529
msgid "Sort by Comment Date"
msgstr "Ordenar per Data del Comentari"
-#: ../../include/conversation.php:1518
+#: ../../include/conversation.php:1533
msgid "Posted Order"
msgstr "Ordenar per Entrades"
-#: ../../include/conversation.php:1521
+#: ../../include/conversation.php:1536
msgid "Sort by Post Date"
msgstr "Ordenar per Data d' Entrada"
-#: ../../include/conversation.php:1529
+#: ../../include/conversation.php:1544
msgid "Posts that mention or involve you"
msgstr "Entrades que et mencionen o involucren"
-#: ../../include/conversation.php:1538
+#: ../../include/conversation.php:1553
msgid "Activity Stream - by date"
msgstr "Activitat del Flux - per data"
-#: ../../include/conversation.php:1544
+#: ../../include/conversation.php:1559
msgid "Starred"
msgstr "Preferit"
-#: ../../include/conversation.php:1547
+#: ../../include/conversation.php:1562
msgid "Favourite Posts"
msgstr "Entrades Favorites"
-#: ../../include/conversation.php:1554
+#: ../../include/conversation.php:1569
msgid "Spam"
msgstr "Spam"
-#: ../../include/conversation.php:1557
+#: ../../include/conversation.php:1572
msgid "Posts flagged as SPAM"
msgstr "Entrades marcades com a SPAM"
-#: ../../include/conversation.php:1614
+#: ../../include/conversation.php:1629
msgid "Status Messages and Posts"
msgstr "Estat dels Missatges i Entrades"
-#: ../../include/conversation.php:1623
+#: ../../include/conversation.php:1638
msgid "About"
msgstr "El Meu Perfil"
-#: ../../include/conversation.php:1626
+#: ../../include/conversation.php:1641
msgid "Profile Details"
msgstr "Detalls del Perfil"
-#: ../../include/conversation.php:1635 ../../include/photos.php:502
-msgid "Photo Albums"
-msgstr "Albums de Fotos"
-
-#: ../../include/conversation.php:1642
+#: ../../include/conversation.php:1657
msgid "Files and Storage"
msgstr "Arxius i Emmagatzegament"
-#: ../../include/conversation.php:1678
+#: ../../include/conversation.php:1677 ../../include/conversation.php:1680
+#: ../../include/widgets.php:836
+msgid "Chatrooms"
+msgstr "Sala per Xerrar"
+
+#: ../../include/conversation.php:1693
msgid "Saved Bookmarks"
msgstr "Marcadors Guardats"
-#: ../../include/conversation.php:1688
+#: ../../include/conversation.php:1703
msgid "Manage Webpages"
msgstr "Gestió de Pàgines Web"
-#: ../../include/conversation.php:1747
+#: ../../include/conversation.php:1768
msgctxt "noun"
msgid "Attending"
msgid_plural "Attending"
msgstr[0] "Assistint"
msgstr[1] "Assistint"
-#: ../../include/conversation.php:1750
+#: ../../include/conversation.php:1771
msgctxt "noun"
msgid "Not Attending"
msgid_plural "Not Attending"
msgstr[0] "Desassistint"
msgstr[1] "Desassistint"
-#: ../../include/conversation.php:1753
+#: ../../include/conversation.php:1774
msgctxt "noun"
msgid "Undecided"
msgid_plural "Undecided"
msgstr[0] "Indecís"
msgstr[1] "Indecisos"
-#: ../../include/conversation.php:1756
+#: ../../include/conversation.php:1777
msgctxt "noun"
msgid "Agree"
msgid_plural "Agrees"
msgstr[0] "Acord"
msgstr[1] "Acords"
-#: ../../include/conversation.php:1759
+#: ../../include/conversation.php:1780
msgctxt "noun"
msgid "Disagree"
msgid_plural "Disagrees"
msgstr[0] "Desacord"
msgstr[1] "Desacords"
-#: ../../include/conversation.php:1762
+#: ../../include/conversation.php:1783
msgctxt "noun"
msgid "Abstain"
msgid_plural "Abstains"
msgstr[0] "Abstenirse"
msgstr[1] "Abstenirse"
+#: ../../include/import.php:30
+msgid ""
+"Cannot create a duplicate channel identifier on this system. Import failed."
+msgstr "No s'ha pogut importar el canal perquè l'identificador del canal no s'ha pogut duplicar en aquest servidor."
+
+#: ../../include/import.php:97
+msgid "Channel clone failed. Import failed."
+msgstr "No s'ha pogut importar el canal perquè el canal no s'ha pogut clonar."
+
#: ../../include/selectors.php:30
msgid "Frequently"
msgstr "Freqüentment"
@@ -8135,12 +7946,6 @@ msgstr "Neutre"
msgid "Non-specific"
msgstr "Indefinit"
-#: ../../include/selectors.php:49 ../../include/selectors.php:66
-#: ../../include/selectors.php:104 ../../include/selectors.php:140
-#: ../../include/permissions.php:881
-msgid "Other"
-msgstr "Altres"
-
#: ../../include/selectors.php:49
msgid "Undecided"
msgstr "Indecís"
@@ -8317,361 +8122,366 @@ msgstr "No Et Fa Res"
msgid "Ask me"
msgstr "Pregunta"
-#: ../../include/PermissionDescription.php:31
-#: ../../include/acl_selectors.php:232
-msgid "Visible to your default audience"
-msgstr "Visible per a la teva audiència "
+#: ../../include/bookmarks.php:35
+#, php-format
+msgid "%1$s's bookmarks"
+msgstr "%1$s de marcadors"
-#: ../../include/PermissionDescription.php:115
-#: ../../include/acl_selectors.php:268
-msgid "Only me"
-msgstr "Només jo"
+#: ../../include/security.php:109
+msgid "guest:"
+msgstr ""
-#: ../../include/PermissionDescription.php:116
-msgid "Public"
-msgstr "Públic"
+#: ../../include/security.php:427
+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 "El formulario de la cadena de seguridad no era correcto. Esto probablemente ocurrió porque el formulario se ha abierto durante demasiado tiempo (> 3 horas) antes de enviarlo."
-#: ../../include/PermissionDescription.php:117
-msgid "Anybody in the $Projectname network"
-msgstr "Ningú a la xarxa $Projectname"
+#: ../../include/text.php:404
+msgid "prev"
+msgstr "prev"
-#: ../../include/PermissionDescription.php:118
-#, php-format
-msgid "Any account on %s"
-msgstr "Qualsevol compte a %s"
+#: ../../include/text.php:406
+msgid "first"
+msgstr "primer"
-#: ../../include/PermissionDescription.php:119
-msgid "Any of my connections"
-msgstr "Qualsevol de les meves connexions"
+#: ../../include/text.php:435
+msgid "last"
+msgstr "últim"
-#: ../../include/PermissionDescription.php:120
-msgid "Only connections I specifically allow"
-msgstr "Només les connexions que permeto específicament"
+#: ../../include/text.php:438
+msgid "next"
+msgstr "pròxim"
-#: ../../include/PermissionDescription.php:121
-msgid "Anybody authenticated (could include visitors from other networks)"
-msgstr "Qualsevol persona autenticada (podria incloure als usuaris d'altres xarxes)"
+#: ../../include/text.php:448
+msgid "older"
+msgstr "el més antic"
-#: ../../include/PermissionDescription.php:122
-msgid "Any connections including those who haven't yet been approved"
-msgstr "Qualsevol connexió incloent aquells que encara no han estat aprovats"
+#: ../../include/text.php:450
+msgid "newer"
+msgstr "El més nou"
-#: ../../include/PermissionDescription.php:161
-msgid ""
-"This is your default setting for the audience of your normal stream, and "
-"posts."
-msgstr "Aquest és l'ajust per defecte per al públic del seu flux normal i entrades."
+#: ../../include/text.php:843
+msgid "No connections"
+msgstr "Sense Connexions"
-#: ../../include/PermissionDescription.php:162
-msgid ""
-"This is your default setting for who can view your default channel profile"
-msgstr "Aquesta és la configuració per defecte per a qui pugui veure el teu perfil per defecte del canal"
+#: ../../include/text.php:868
+#, php-format
+msgid "View all %s connections"
+msgstr "Veure totes les connexions de %s"
-#: ../../include/PermissionDescription.php:163
-msgid "This is your default setting for who can view your connections"
-msgstr "Aquesta és la configuració per defecte per a qui pugui veure les teves connexions"
+#: ../../include/text.php:1013 ../../include/text.php:1018
+msgid "poke"
+msgstr "esperona"
-#: ../../include/PermissionDescription.php:164
-msgid ""
-"This is your default setting for who can view your file storage and photos"
-msgstr "Aquesta és la configuració per defecte per a qui pugui veure els teus arxius i fotos"
+#: ../../include/text.php:1019
+msgid "ping"
+msgstr "coloca"
-#: ../../include/PermissionDescription.php:165
-msgid "This is your default setting for the audience of your webpages"
-msgstr "Aquests son els ajustos per defecte de l'audiència de les teves pàgines web"
+#: ../../include/text.php:1019
+msgid "pinged"
+msgstr "colocat"
-#: ../../include/account.php:28
-msgid "Not a valid email address"
-msgstr "Adreça de correu electrònic no vàlida"
+#: ../../include/text.php:1020
+msgid "prod"
+msgstr "picar"
-#: ../../include/account.php:30
-msgid "Your email domain is not among those allowed on this site"
-msgstr "El seu domini de correu electrònic no es troba entre els permesos en aquest lloc"
+#: ../../include/text.php:1020
+msgid "prodded"
+msgstr "picat"
-#: ../../include/account.php:36
-msgid "Your email address is already registered at this site."
-msgstr "La teva adreça de correu electrònic ja esta registrada en aquest lloc"
+#: ../../include/text.php:1021
+msgid "slap"
+msgstr "bufetada"
-#: ../../include/account.php:68
-msgid "An invitation is required."
-msgstr "Es requereix Invitació"
+#: ../../include/text.php:1021
+msgid "slapped"
+msgstr "bufetejat"
-#: ../../include/account.php:72
-msgid "Invitation could not be verified."
-msgstr "L'invitació no ha pogut ser verificada"
+#: ../../include/text.php:1022
+msgid "finger"
+msgstr "senyal"
-#: ../../include/account.php:122
-msgid "Please enter the required information."
-msgstr "Entra la informació sol·licitada"
+#: ../../include/text.php:1022
+msgid "fingered"
+msgstr "senyalat"
-#: ../../include/account.php:189
-msgid "Failed to store account information."
-msgstr "Ha fallat guardar la informació del compte"
+#: ../../include/text.php:1023
+msgid "rebuff"
+msgstr "menyspreu"
-#: ../../include/account.php:249
-#, php-format
-msgid "Registration confirmation for %s"
-msgstr "Registre confirmat per %s"
+#: ../../include/text.php:1023
+msgid "rebuffed"
+msgstr "menyspreuat"
-#: ../../include/account.php:315
-#, php-format
-msgid "Registration request at %s"
-msgstr "Sol·licitud de registre a %s"
+#: ../../include/text.php:1035
+msgid "happy"
+msgstr "feliç"
-#: ../../include/account.php:317 ../../include/account.php:344
-#: ../../include/account.php:404 ../../include/network.php:1871
-msgid "Administrator"
-msgstr "Administrador"
+#: ../../include/text.php:1036
+msgid "sad"
+msgstr "trist"
-#: ../../include/account.php:339
-msgid "your registration password"
-msgstr "la teva contrasenya registrada"
+#: ../../include/text.php:1037
+msgid "mellow"
+msgstr "melós"
-#: ../../include/account.php:342 ../../include/account.php:402
-#, php-format
-msgid "Registration details for %s"
-msgstr "Detalls del registre per %s"
+#: ../../include/text.php:1038
+msgid "tired"
+msgstr "cansat"
-#: ../../include/account.php:414
-msgid "Account approved."
-msgstr "Compte aprovat."
+#: ../../include/text.php:1039
+msgid "perky"
+msgstr "turgent"
-#: ../../include/account.php:454
-#, php-format
-msgid "Registration revoked for %s"
-msgstr "Registre revocat per %s"
+#: ../../include/text.php:1040
+msgid "angry"
+msgstr "enfadat"
-#: ../../include/account.php:506
-msgid "Account verified. Please login."
-msgstr "Compte verificat. Si us plau, inicia sessió."
+#: ../../include/text.php:1041
+msgid "stupefied"
+msgstr "estupefacte"
-#: ../../include/account.php:723 ../../include/account.php:725
-msgid "Click here to upgrade."
-msgstr "Feu clic aquí per actualitzar."
+#: ../../include/text.php:1042
+msgid "puzzled"
+msgstr "perplexe"
-#: ../../include/account.php:731
-msgid "This action exceeds the limits set by your subscription plan."
-msgstr "Aquesta acció és superior als límits establerts pel seu pla de subscripció."
+#: ../../include/text.php:1043
+msgid "interested"
+msgstr "Interessat"
-#: ../../include/account.php:736
-msgid "This action is not available under your subscription plan."
-msgstr "Aquesta acció no està disponible en el seu pla de subscripció."
+#: ../../include/text.php:1044
+msgid "bitter"
+msgstr "amargat"
-#: ../../include/attach.php:247 ../../include/attach.php:333
-msgid "Item was not found."
-msgstr "Article no trobat."
+#: ../../include/text.php:1045
+msgid "cheerful"
+msgstr "feliç"
-#: ../../include/attach.php:497
-msgid "No source file."
-msgstr "No hi ha arxiu d'origen."
+#: ../../include/text.php:1046
+msgid "alive"
+msgstr "viu"
-#: ../../include/attach.php:519
-msgid "Cannot locate file to replace"
-msgstr "No trobo l'arxiu a reemplaçar"
+#: ../../include/text.php:1047
+msgid "annoyed"
+msgstr "molest"
-#: ../../include/attach.php:537
-msgid "Cannot locate file to revise/update"
-msgstr "No trobo l'arxiu a revisar/actualitzar"
+#: ../../include/text.php:1048
+msgid "anxious"
+msgstr "ansiós"
-#: ../../include/attach.php:672
-#, php-format
-msgid "File exceeds size limit of %d"
-msgstr "L'arxiu excedeix la mida limit de %d"
+#: ../../include/text.php:1049
+msgid "cranky"
+msgstr "malagaitós"
-#: ../../include/attach.php:686
-#, php-format
-msgid "You have reached your limit of %1$.0f Mbytes attachment storage."
-msgstr "Has arribat al teu límit de %1$.0f Mbytes de emagatzematge d'adjunts."
+#: ../../include/text.php:1050
+msgid "disturbed"
+msgstr "transtornat"
-#: ../../include/attach.php:842
-msgid "File upload failed. Possible system limit or action terminated."
-msgstr "Pujada del arxiu fallida. Possible límit del sistema o acció interrompuda."
+#: ../../include/text.php:1051
+msgid "frustrated"
+msgstr "frustrat"
-#: ../../include/attach.php:855
-msgid "Stored file could not be verified. Upload failed."
-msgstr "L'arxiu guardat no es pot verificar. Pujada fallida."
+#: ../../include/text.php:1052
+msgid "depressed"
+msgstr "deprimit"
-#: ../../include/attach.php:909 ../../include/attach.php:925
-msgid "Path not available."
-msgstr "Trajectòria no disponible"
+#: ../../include/text.php:1053
+msgid "motivated"
+msgstr "motivat"
-#: ../../include/attach.php:971 ../../include/attach.php:1123
-msgid "Empty pathname"
-msgstr "Trajèctoria vuida."
+#: ../../include/text.php:1054
+msgid "relaxed"
+msgstr "relaxat"
-#: ../../include/attach.php:997
-msgid "duplicate filename or path"
-msgstr "Nom o trajectòria duplicat"
+#: ../../include/text.php:1055
+msgid "surprised"
+msgstr "sorprès"
-#: ../../include/attach.php:1019
-msgid "Path not found."
-msgstr "Trajectòria no trobada."
+#: ../../include/text.php:1237 ../../include/js_strings.php:70
+msgid "Monday"
+msgstr "Dilluns"
-#: ../../include/attach.php:1077
-msgid "mkdir failed."
-msgstr "mkdir va fracassar."
+#: ../../include/text.php:1237 ../../include/js_strings.php:71
+msgid "Tuesday"
+msgstr "Dimarts"
-#: ../../include/attach.php:1081
-msgid "database storage failed."
-msgstr "Arxiu de base de dades va fallar."
+#: ../../include/text.php:1237 ../../include/js_strings.php:72
+msgid "Wednesday"
+msgstr "Dimecres"
-#: ../../include/attach.php:1129
-msgid "Empty path"
-msgstr "Trajèctoria vuida"
+#: ../../include/text.php:1237 ../../include/js_strings.php:73
+msgid "Thursday"
+msgstr "Dijous"
-#: ../../include/channel.php:32
-msgid "Unable to obtain identity information from database"
-msgstr "Incapaç de trobar l'informació d'identitat a la base de dades"
+#: ../../include/text.php:1237 ../../include/js_strings.php:74
+msgid "Friday"
+msgstr "Divendres"
-#: ../../include/channel.php:66
-msgid "Empty name"
-msgstr "Nom buit"
+#: ../../include/text.php:1237 ../../include/js_strings.php:75
+msgid "Saturday"
+msgstr "Dissabte"
-#: ../../include/channel.php:69
-msgid "Name too long"
-msgstr "Nom massa llarg"
+#: ../../include/text.php:1237 ../../include/js_strings.php:69
+msgid "Sunday"
+msgstr "Diumenge"
-#: ../../include/channel.php:180
-msgid "No account identifier"
-msgstr "Sense identificador de compte"
+#: ../../include/text.php:1241 ../../include/js_strings.php:45
+msgid "January"
+msgstr "Gener"
-#: ../../include/channel.php:192
-msgid "Nickname is required."
-msgstr "Alies/malnom es requerit."
+#: ../../include/text.php:1241 ../../include/js_strings.php:46
+msgid "February"
+msgstr "Febrer"
-#: ../../include/channel.php:206
-msgid "Reserved nickname. Please choose another."
-msgstr "Àlies reservat. Tria un altre."
+#: ../../include/text.php:1241 ../../include/js_strings.php:47
+msgid "March"
+msgstr "Març"
-#: ../../include/channel.php:211
-msgid ""
-"Nickname has unsupported characters or is already being used on this site."
-msgstr "L'álies te caracters no soportats o ja esta en ús en aquest lloc"
+#: ../../include/text.php:1241 ../../include/js_strings.php:48
+msgid "April"
+msgstr "Abril"
-#: ../../include/channel.php:287
-msgid "Unable to retrieve created identity"
-msgstr "No es pot recuperar la identitat creada"
+#: ../../include/text.php:1241
+msgid "May"
+msgstr "Maig"
-#: ../../include/channel.php:345
-msgid "Default Profile"
-msgstr "Perfil per Defecte"
+#: ../../include/text.php:1241 ../../include/js_strings.php:50
+msgid "June"
+msgstr "Juny"
-#: ../../include/channel.php:791
-msgid "Requested channel is not available."
-msgstr "El canal demanat no està disponible."
+#: ../../include/text.php:1241 ../../include/js_strings.php:51
+msgid "July"
+msgstr "Juliol"
-#: ../../include/channel.php:938
-msgid "Create New Profile"
-msgstr "Crear un Perfil Nou"
+#: ../../include/text.php:1241 ../../include/js_strings.php:52
+msgid "August"
+msgstr "Agost"
-#: ../../include/channel.php:958
-msgid "Visible to everybody"
-msgstr "Visible per tothom"
+#: ../../include/text.php:1241 ../../include/js_strings.php:53
+msgid "September"
+msgstr "Setembre"
-#: ../../include/channel.php:1031 ../../include/channel.php:1142
-msgid "Gender:"
-msgstr "Gènere:"
+#: ../../include/text.php:1241 ../../include/js_strings.php:54
+msgid "October"
+msgstr "Octubre"
-#: ../../include/channel.php:1032 ../../include/channel.php:1186
-msgid "Status:"
-msgstr "Estatus:"
+#: ../../include/text.php:1241 ../../include/js_strings.php:55
+msgid "November"
+msgstr "Novembre"
-#: ../../include/channel.php:1033 ../../include/channel.php:1197
-msgid "Homepage:"
-msgstr "Pàgina Personal:"
+#: ../../include/text.php:1241 ../../include/js_strings.php:56
+msgid "December"
+msgstr "Desembre"
-#: ../../include/channel.php:1034
-msgid "Online Now"
-msgstr "Ara en Linia"
+#: ../../include/text.php:1318 ../../include/text.php:1322
+msgid "Unknown Attachment"
+msgstr "Adjunt Desconegut"
-#: ../../include/channel.php:1147
-msgid "Like this channel"
-msgstr "M'agrada aquest canal"
+#: ../../include/text.php:1324
+msgid "unknown"
+msgstr "desconegut"
-#: ../../include/channel.php:1171
-msgid "j F, Y"
-msgstr "j F, Y"
+#: ../../include/text.php:1360
+msgid "remove category"
+msgstr "elimina categoria"
-#: ../../include/channel.php:1172
-msgid "j F"
-msgstr "j F"
+#: ../../include/text.php:1437
+msgid "remove from file"
+msgstr "elimina del arxiu"
-#: ../../include/channel.php:1179
-msgid "Birthday:"
-msgstr "Aniversari:"
+#: ../../include/text.php:1734 ../../include/text.php:1805
+msgid "default"
+msgstr "per defecte"
-#: ../../include/channel.php:1192
-#, php-format
-msgid "for %1$d %2$s"
-msgstr "per %1$d %2$s"
+#: ../../include/text.php:1742
+msgid "Page layout"
+msgstr "Format de la pàgina"
-#: ../../include/channel.php:1195
-msgid "Sexual Preference:"
-msgstr "Preferència Sexual:"
+#: ../../include/text.php:1742
+msgid "You can create your own with the layouts tool"
+msgstr "Pots crear el teu propi amb l'editor de format de pàgina."
-#: ../../include/channel.php:1201
-msgid "Tags:"
-msgstr "Etiquetes:"
+#: ../../include/text.php:1784
+msgid "Page content type"
+msgstr "Tipus de contingut de la pàgina"
-#: ../../include/channel.php:1203
-msgid "Political Views:"
-msgstr "Idees Polítiques:"
+#: ../../include/text.php:1817
+msgid "Select an alternate language"
+msgstr "Tria un idioma alternatiu"
-#: ../../include/channel.php:1205
-msgid "Religion:"
-msgstr "Religió:"
+#: ../../include/text.php:1934
+msgid "activity"
+msgstr "activitat"
-#: ../../include/channel.php:1209
-msgid "Hobbies/Interests:"
-msgstr "Aficions/Interessos:"
+#: ../../include/text.php:2235
+msgid "Design Tools"
+msgstr "Eines de disseny"
-#: ../../include/channel.php:1211
-msgid "Likes:"
-msgstr "Agrada:"
+#: ../../include/text.php:2241
+msgid "Pages"
+msgstr "Pàgines"
-#: ../../include/channel.php:1213
-msgid "Dislikes:"
-msgstr "Desagrada:"
+#: ../../include/auth.php:147
+msgid "Logged out."
+msgstr "Sortir."
-#: ../../include/channel.php:1215
-msgid "Contact information and Social Networks:"
-msgstr "Informació de contacte i Xarxes Socials:"
+#: ../../include/auth.php:274
+msgid "Failed authentication"
+msgstr "Autenticació fallida"
-#: ../../include/channel.php:1217
-msgid "My other channels:"
-msgstr "Els meus altres canals:"
+#: ../../include/permissions.php:26
+msgid "Can view my normal stream and posts"
+msgstr "Pot veure el flux i entrades normals"
-#: ../../include/channel.php:1219
-msgid "Musical interests:"
-msgstr "Interessos Musicals:"
+#: ../../include/permissions.php:30
+msgid "Can view my webpages"
+msgstr "Pot veure les meves pàgines web"
-#: ../../include/channel.php:1221
-msgid "Books, literature:"
-msgstr "Llibres, literatura:"
+#: ../../include/permissions.php:34
+msgid "Can post on my channel page (\"wall\")"
+msgstr "Pot fer entrades a la meva pàgina de canal (\"mur\")"
-#: ../../include/channel.php:1223
-msgid "Television:"
-msgstr "Televisió:"
+#: ../../include/permissions.php:37
+msgid "Can like/dislike stuff"
+msgstr "Pot dir si agrada/desagrada "
-#: ../../include/channel.php:1225
-msgid "Film/dance/culture/entertainment:"
-msgstr "Películes/Dança/Cultura/Entreteniment:"
+#: ../../include/permissions.php:37
+msgid "Profiles and things other than posts/comments"
+msgstr "Perfils i altres coses a més d'entrades/comentaris"
-#: ../../include/channel.php:1227
-msgid "Love/Romance:"
-msgstr "Amor/Romace:"
+#: ../../include/permissions.php:39
+msgid "Can forward to all my channel contacts via post @mentions"
+msgstr "Ho pot enviar a tots els meus contactes del canal via entrades @mencions"
-#: ../../include/channel.php:1229
-msgid "Work/employment:"
-msgstr "Treball/feina:"
+#: ../../include/permissions.php:39
+msgid "Advanced - useful for creating group forum channels"
+msgstr "Avançat - capaç de crear canals de grups de foro"
-#: ../../include/channel.php:1231
-msgid "School/education:"
-msgstr "Escola/educació:"
+#: ../../include/permissions.php:40
+msgid "Can chat with me (when available)"
+msgstr "Pot xatejar amb mi (si estic disponible)"
-#: ../../include/channel.php:1251
-msgid "Like this thing"
-msgstr "M'agrada això"
+#: ../../include/permissions.php:41
+msgid "Can write to my file storage and photos"
+msgstr "Pot escriure al meu magatzem d'arxius i fotos"
+
+#: ../../include/permissions.php:42
+msgid "Can edit my webpages"
+msgstr "Pot editar les meves pàgines web"
+
+#: ../../include/permissions.php:44
+msgid "Somewhat advanced - very useful in open communities"
+msgstr "Quelcom avançat - molt útil en comunitats obertes"
+
+#: ../../include/permissions.php:46
+msgid "Can administer my channel resources"
+msgstr "Pot administrar els meus recursos del canal"
+
+#: ../../include/permissions.php:46
+msgid ""
+"Extremely advanced. Leave this alone unless you know what you are doing"
+msgstr "Extremadament avançat. No toquis res si no saps que estàs fent"
#: ../../include/features.php:48
msgid "General Features"
@@ -8718,420 +8528,861 @@ msgid "Provide managed web pages on your channel"
msgstr "Proporcionar pàgines web gestionades al seu canal"
#: ../../include/features.php:55
+msgid "Provide a wiki for your channel"
+msgstr ""
+
+#: ../../include/features.php:56
msgid "Hide Rating"
msgstr "Amaga la Valoració"
-#: ../../include/features.php:55
+#: ../../include/features.php:56
msgid ""
"Hide the rating buttons on your channel and profile pages. Note: People can "
"still rate you somewhere else."
msgstr "Amaga el botó de valoracions al teu canal i pàgines del perfil. Nota: Et poden continuar valorant en altres llocs."
-#: ../../include/features.php:56
+#: ../../include/features.php:57
msgid "Private Notes"
msgstr "Notes Privades"
-#: ../../include/features.php:56
+#: ../../include/features.php:57
msgid "Enables a tool to store notes and reminders (note: not encrypted)"
msgstr "Activa l'eina per guardar notes i recordatoris (nota:no està encriptat)"
-#: ../../include/features.php:57
+#: ../../include/features.php:58
msgid "Navigation Channel Select"
msgstr "Navegació pel Selector de Canals"
-#: ../../include/features.php:57
+#: ../../include/features.php:58
msgid "Change channels directly from within the navigation dropdown menu"
msgstr "Canvieu els canals directament des del menú desplegable de navegació"
-#: ../../include/features.php:58
+#: ../../include/features.php:59
msgid "Photo Location"
msgstr "Ubicació de la Foto"
-#: ../../include/features.php:58
+#: ../../include/features.php:59
msgid "If location data is available on uploaded photos, link this to a map."
msgstr "Si les dades d'ubicació estàn disponibles a les fotos pujades, vincular a un mapa."
-#: ../../include/features.php:59
+#: ../../include/features.php:60
msgid "Access Controlled Chatrooms"
msgstr "Accés Controlat a les Sales de Xat"
-#: ../../include/features.php:59
+#: ../../include/features.php:60
msgid "Provide chatrooms and chat services with access control."
msgstr "Proveeix sales de Xat i serveis de Xat amb control d'accés."
-#: ../../include/features.php:60
+#: ../../include/features.php:61
msgid "Smart Birthdays"
msgstr "Aniversaris Intel·ligents"
-#: ../../include/features.php:60
+#: ../../include/features.php:61
msgid ""
"Make birthday events timezone aware in case your friends are scattered "
"across the planet."
msgstr "Fes, conscients de la zona horària, els esdeveniments d'aniversari, en cas que els teus amics estiguin dispersos per tot el planeta."
-#: ../../include/features.php:61
+#: ../../include/features.php:62
msgid "Expert Mode"
msgstr "Manera Experta"
-#: ../../include/features.php:61
+#: ../../include/features.php:62
msgid "Enable Expert Mode to provide advanced configuration options"
msgstr "Activar Mode Expert per a proporcionar opcions avançades de configuració"
-#: ../../include/features.php:62
+#: ../../include/features.php:63
msgid "Premium Channel"
msgstr "Privilegis del Canal"
-#: ../../include/features.php:62
+#: ../../include/features.php:63
msgid ""
"Allows you to set restrictions and terms on those that connect with your "
"channel"
msgstr "Li permet establir restriccions i els termes en els quals es connecten amb el seu canal"
-#: ../../include/features.php:67
+#: ../../include/features.php:68
msgid "Post Composition Features"
msgstr "Característiques de Composició d'Entrades"
-#: ../../include/features.php:70
+#: ../../include/features.php:71
msgid "Large Photos"
msgstr "Grans Fotos"
-#: ../../include/features.php:70
+#: ../../include/features.php:71
msgid ""
"Include large (1024px) photo thumbnails in posts. If not enabled, use small "
"(640px) photo thumbnails"
msgstr "Inclou gran (1024px) foto de miniatura a les entrades. Si no està activat, empra petita (640px) foto de miniatura."
-#: ../../include/features.php:71
+#: ../../include/features.php:72
msgid "Automatically import channel content from other channels or feeds"
msgstr "Importa automàticament el contingut del canal des de altres canals o feeds"
-#: ../../include/features.php:72
+#: ../../include/features.php:73
msgid "Even More Encryption"
msgstr "Encara Més Encriptació"
-#: ../../include/features.php:72
+#: ../../include/features.php:73
msgid ""
"Allow optional encryption of content end-to-end with a shared secret key"
msgstr "Permet l'encripció opcional del contingut extrem-a-extrem amb clau secreta compartida"
-#: ../../include/features.php:73
+#: ../../include/features.php:74
msgid "Enable Voting Tools"
msgstr "Habilitar Eines de Votació"
-#: ../../include/features.php:73
+#: ../../include/features.php:74
msgid "Provide a class of post which others can vote on"
msgstr "Proporcionar una classe d'entrada que altres puguin votar"
-#: ../../include/features.php:74
+#: ../../include/features.php:75
msgid "Delayed Posting"
msgstr "Retarda Publicació"
-#: ../../include/features.php:74
+#: ../../include/features.php:75
msgid "Allow posts to be published at a later date"
msgstr "Permet que les publicacions es publiquin en data posterior"
-#: ../../include/features.php:75
+#: ../../include/features.php:76
msgid "Suppress Duplicate Posts/Comments"
msgstr "Suprimeix Duplicats de Publicacions/Comentaris"
-#: ../../include/features.php:75
+#: ../../include/features.php:76
msgid ""
"Prevent posts with identical content to be published with less than two "
"minutes in between submissions."
msgstr "Evita que publicacions amb identic contingut siguin publicades amb menys de dos minuts entre entregues."
-#: ../../include/features.php:81
+#: ../../include/features.php:82
msgid "Network and Stream Filtering"
msgstr "Filtrat de Xarxa i Flux"
-#: ../../include/features.php:82
+#: ../../include/features.php:83
msgid "Search by Date"
msgstr "Cerca per Data"
-#: ../../include/features.php:82
+#: ../../include/features.php:83
msgid "Ability to select posts by date ranges"
msgstr "Capacitat per seleccionar entrades per rang de dates"
-#: ../../include/features.php:83 ../../include/group.php:311
+#: ../../include/features.php:84 ../../include/group.php:311
msgid "Privacy Groups"
msgstr "Grup Privat"
-#: ../../include/features.php:83
+#: ../../include/features.php:84
msgid "Enable management and selection of privacy groups"
msgstr "Habilita gestió i selecció de grups privats"
-#: ../../include/features.php:84
+#: ../../include/features.php:85 ../../include/widgets.php:281
+msgid "Saved Searches"
+msgstr "Cerques Guardades"
+
+#: ../../include/features.php:85
msgid "Save search terms for re-use"
msgstr "Guardar els termin de la cerca per a re-usar"
-#: ../../include/features.php:85
+#: ../../include/features.php:86
msgid "Network Personal Tab"
msgstr "Pestanya Personal de Xarxa"
-#: ../../include/features.php:85
+#: ../../include/features.php:86
msgid "Enable tab to display only Network posts that you've interacted on"
msgstr "Activa la pestanya per mostrar només les entrades de xarxa en les que has intervingut"
-#: ../../include/features.php:86
+#: ../../include/features.php:87
msgid "Network New Tab"
msgstr "Pestanya Nou a la Xarxa"
-#: ../../include/features.php:86
+#: ../../include/features.php:87
msgid "Enable tab to display all new Network activity"
msgstr "Activa pestanya per mostrar tota l'activitat nova de la Xarxa"
-#: ../../include/features.php:87
+#: ../../include/features.php:88
msgid "Affinity Tool"
msgstr "Eina d'Afinitat"
-#: ../../include/features.php:87
+#: ../../include/features.php:88
msgid "Filter stream activity by depth of relationships"
msgstr "Filtre d'activitat del flux per importància de la relació"
-#: ../../include/features.php:88
+#: ../../include/features.php:89
msgid "Connection Filtering"
msgstr "Filtre de Connexió"
-#: ../../include/features.php:88
+#: ../../include/features.php:89
msgid "Filter incoming posts from connections based on keywords/content"
msgstr "Filtre de missatges d'entrada de conexions, basat en paraules clau/contingut "
-#: ../../include/features.php:89
+#: ../../include/features.php:90
msgid "Show channel suggestions"
msgstr "Mostra suggerencies de canals"
-#: ../../include/features.php:94
+#: ../../include/features.php:95
msgid "Post/Comment Tools"
msgstr "Eina d'Entrades/Comentaris"
-#: ../../include/features.php:95
+#: ../../include/features.php:96
msgid "Community Tagging"
msgstr "Etiquetat per la Comunitat"
-#: ../../include/features.php:95
+#: ../../include/features.php:96
msgid "Ability to tag existing posts"
msgstr "Capacitat d'etiquetar entrades existents"
-#: ../../include/features.php:96
+#: ../../include/features.php:97
msgid "Post Categories"
msgstr "Categories d'Entrades"
-#: ../../include/features.php:96
+#: ../../include/features.php:97
msgid "Add categories to your posts"
msgstr "Afegeix categoria a la teva entrada"
-#: ../../include/features.php:97
+#: ../../include/features.php:98
msgid "Emoji Reactions"
-msgstr ""
+msgstr "Reaccions dels Emoji"
-#: ../../include/features.php:97
+#: ../../include/features.php:98
msgid "Add emoji reaction ability to posts"
-msgstr ""
+msgstr "Afegeix un emoji habilitat per reaccionar a entrades"
-#: ../../include/features.php:98
+#: ../../include/features.php:99 ../../include/widgets.php:310
+#: ../../include/contact_widgets.php:53
+msgid "Saved Folders"
+msgstr "Carpetes Guardades"
+
+#: ../../include/features.php:99
msgid "Ability to file posts under folders"
msgstr "Capacitat de arxivar entrades en les carpetes"
-#: ../../include/features.php:99
+#: ../../include/features.php:100
msgid "Dislike Posts"
msgstr "No Agrada l'Entrada"
-#: ../../include/features.php:99
+#: ../../include/features.php:100
msgid "Ability to dislike posts/comments"
msgstr "Capacitat per marcar amb \"No Agrada\" les entrades/comentaris"
-#: ../../include/features.php:100
+#: ../../include/features.php:101
msgid "Star Posts"
msgstr "Entrades Excel·lents"
-#: ../../include/features.php:100
+#: ../../include/features.php:101
msgid "Ability to mark special posts with a star indicator"
msgstr "Capacitat per marcar entrades especials amb l'indicador d'excel·lencia"
-#: ../../include/features.php:101
+#: ../../include/features.php:102
msgid "Tag Cloud"
msgstr "Núvol d'Etiquetes."
-#: ../../include/features.php:101
+#: ../../include/features.php:102
msgid "Provide a personal tag cloud on your channel page"
msgstr "Proporcionar un núvol d'etiquetes personals a la teva pàgina de canal"
-#: ../../include/oembed.php:324
-msgid "Embedded content"
-msgstr "Contingut embegut"
+#: ../../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 grup esborrat amb aquest nom fou reviscolat. Els permisos dels items existents <strong>poden</strong> aplicar-se a aquest grup i qualsevol membre futur. Si no es això el que vols, si et plau, crea un altre grup amb un nom diferent."
-#: ../../include/oembed.php:333
-msgid "Embedding disabled"
-msgstr "Incorporació desactivada"
+#: ../../include/group.php:248
+msgid "Add new connections to this privacy group"
+msgstr "Afegir noves connexions a aquest grup privat"
-#: ../../include/acl_selectors.php:271
-msgid "Who can see this?"
-msgstr "Qui pot veure això?"
+#: ../../include/group.php:289
+msgid "edit"
+msgstr "edita"
-#: ../../include/acl_selectors.php:272
-msgid "Custom selection"
-msgstr "Selecció a mida"
+#: ../../include/group.php:312
+msgid "Edit group"
+msgstr "Editar grup"
-#: ../../include/acl_selectors.php:273
-msgid ""
-"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit"
-" the scope of \"Show\"."
-msgstr "Selecciona \"Mostrar\" per permetre la visualització. \"No Mostrar\" et permet obviar i limitar l'abast de \"Mostrar\"."
+#: ../../include/group.php:313
+msgid "Add privacy group"
+msgstr "Afegir grup privat"
-#: ../../include/acl_selectors.php:274
-msgid "Show"
-msgstr "Mostra"
+#: ../../include/group.php:314
+msgid "Channels not in any privacy group"
+msgstr "Sense canals en grups privats"
-#: ../../include/acl_selectors.php:275
-msgid "Don't show"
-msgstr "No mostrar"
+#: ../../include/group.php:316 ../../include/widgets.php:282
+msgid "add"
+msgstr "afegeix"
-#: ../../include/acl_selectors.php:281
-msgid "Other networks and post services"
-msgstr "Altres xarxes i serveis de correu"
+#: ../../include/event.php:22 ../../include/event.php:69
+#: ../../include/bb2diaspora.php:485
+msgid "l F d, Y \\@ g:i A"
+msgstr "l d \\d\\e/\\d' F de Y \\@ H:i T"
-#: ../../include/acl_selectors.php:311
-#, php-format
-msgid ""
-"Post permissions %s cannot be changed %s after a post is shared.</br />These"
-" permissions set who is allowed to view the post."
-msgstr "Els permisos d'entrada %s no poden esser canviats %s posteriorment a que una entrada ja està compartida. </br />Aquest ajust dels permisos indica qui pot veure l'entrada."
+#: ../../include/event.php:30 ../../include/event.php:73
+#: ../../include/bb2diaspora.php:491
+msgid "Starts:"
+msgstr "Inicia:"
-#: ../../include/auth.php:105
-msgid "Logged out."
-msgstr "Sortir."
+#: ../../include/event.php:40 ../../include/event.php:77
+#: ../../include/bb2diaspora.php:499
+msgid "Finishes:"
+msgstr "Acaba:"
-#: ../../include/auth.php:212
-msgid "Failed authentication"
-msgstr "Autenticació fallida"
+#: ../../include/event.php:814
+msgid "This event has been added to your calendar."
+msgstr "Aquest succés ha estat afegit al teu calendari."
-#: ../../include/datetime.php:135
-msgid "Birthday"
-msgstr "Aniversari"
+#: ../../include/event.php:1014
+msgid "Not specified"
+msgstr "Sense especificar"
-#: ../../include/datetime.php:137
-msgid "Age: "
-msgstr "Edat:"
+#: ../../include/event.php:1015
+msgid "Needs Action"
+msgstr "Necessita una Acció"
-#: ../../include/datetime.php:139
-msgid "YYYY-MM-DD or MM-DD"
-msgstr "YYYY-MM-DD o MM-DD"
+#: ../../include/event.php:1016
+msgid "Completed"
+msgstr "Completat"
-#: ../../include/datetime.php:272 ../../boot.php:2470
-msgid "never"
-msgstr "mai"
+#: ../../include/event.php:1017
+msgid "In Process"
+msgstr "En Procès"
-#: ../../include/datetime.php:278
-msgid "less than a second ago"
-msgstr "fa menys d'un segon"
+#: ../../include/event.php:1018
+msgid "Cancelled"
+msgstr "Cancel·lat"
-#: ../../include/datetime.php:296
+#: ../../include/account.php:28
+msgid "Not a valid email address"
+msgstr "Adreça de correu electrònic no vàlida"
+
+#: ../../include/account.php:30
+msgid "Your email domain is not among those allowed on this site"
+msgstr "El seu domini de correu electrònic no es troba entre els permesos en aquest lloc"
+
+#: ../../include/account.php:36
+msgid "Your email address is already registered at this site."
+msgstr "La teva adreça de correu electrònic ja esta registrada en aquest lloc"
+
+#: ../../include/account.php:68
+msgid "An invitation is required."
+msgstr "Es requereix Invitació"
+
+#: ../../include/account.php:72
+msgid "Invitation could not be verified."
+msgstr "L'invitació no ha pogut ser verificada"
+
+#: ../../include/account.php:122
+msgid "Please enter the required information."
+msgstr "Entra la informació sol·licitada"
+
+#: ../../include/account.php:189
+msgid "Failed to store account information."
+msgstr "Ha fallat guardar la informació del compte"
+
+#: ../../include/account.php:249
#, php-format
-msgctxt "e.g. 22 hours ago, 1 minute ago"
-msgid "%1$d %2$s ago"
-msgstr "Fa %1$d %2$s"
+msgid "Registration confirmation for %s"
+msgstr "Inscripció confirmada per %s"
-#: ../../include/datetime.php:307
-msgctxt "relative_date"
-msgid "year"
-msgid_plural "years"
-msgstr[0] "any"
-msgstr[1] "anys"
+#: ../../include/account.php:315
+#, php-format
+msgid "Registration request at %s"
+msgstr "Sol·licitud d'inscripció a %s"
-#: ../../include/datetime.php:310
-msgctxt "relative_date"
-msgid "month"
-msgid_plural "months"
-msgstr[0] "mes"
-msgstr[1] "mesos "
+#: ../../include/account.php:339
+msgid "your registration password"
+msgstr "la teva contrasenya registrada"
-#: ../../include/datetime.php:313
-msgctxt "relative_date"
-msgid "week"
-msgid_plural "weeks"
-msgstr[0] "setmana"
-msgstr[1] "setmanes"
+#: ../../include/account.php:342 ../../include/account.php:402
+#, php-format
+msgid "Registration details for %s"
+msgstr "Detalls de l'inscripció per %s"
-#: ../../include/datetime.php:316
-msgctxt "relative_date"
-msgid "day"
-msgid_plural "days"
-msgstr[0] "dia"
-msgstr[1] "dies"
+#: ../../include/account.php:414
+msgid "Account approved."
+msgstr "Compte aprovat."
-#: ../../include/datetime.php:319
-msgctxt "relative_date"
-msgid "hour"
-msgid_plural "hours"
-msgstr[0] "hora"
-msgstr[1] "hores"
+#: ../../include/account.php:454
+#, php-format
+msgid "Registration revoked for %s"
+msgstr "Inscripció revocada per %s"
-#: ../../include/datetime.php:322
-msgctxt "relative_date"
-msgid "minute"
-msgid_plural "minutes"
-msgstr[0] "minut"
-msgstr[1] "minuts"
+#: ../../include/account.php:739 ../../include/account.php:741
+msgid "Click here to upgrade."
+msgstr "Feu clic aquí per actualitzar."
-#: ../../include/datetime.php:325
-msgctxt "relative_date"
-msgid "second"
-msgid_plural "seconds"
-msgstr[0] "segon"
-msgstr[1] "segons"
+#: ../../include/account.php:747
+msgid "This action exceeds the limits set by your subscription plan."
+msgstr "Aquesta acció és superior als límits establerts pel seu pla de subscripció."
-#: ../../include/datetime.php:562
+#: ../../include/account.php:752
+msgid "This action is not available under your subscription plan."
+msgstr "Aquesta acció no està disponible en el seu pla de subscripció."
+
+#: ../../include/follow.php:27
+msgid "Channel is blocked on this site."
+msgstr "El canal està bloquejat en aquest lloc."
+
+#: ../../include/follow.php:32
+msgid "Channel location missing."
+msgstr "Ubicació del canal perduda."
+
+#: ../../include/follow.php:80
+msgid "Response from remote channel was incomplete."
+msgstr "La resposta del canal remot fou incompleta."
+
+#: ../../include/follow.php:97
+msgid "Channel was deleted and no longer exists."
+msgstr "El canal fou esborrat i actualment no existeix."
+
+#: ../../include/follow.php:147 ../../include/follow.php:183
+msgid "Protocol disabled."
+msgstr "Protocol desactivat."
+
+#: ../../include/follow.php:171
+msgid "Channel discovery failed."
+msgstr "Descobriment de canal fallit."
+
+#: ../../include/follow.php:210
+msgid "Cannot connect to yourself."
+msgstr "No pots connectar amb tu mateix."
+
+#: ../../include/attach.php:247 ../../include/attach.php:333
+msgid "Item was not found."
+msgstr "Article no trobat."
+
+#: ../../include/attach.php:499
+msgid "No source file."
+msgstr "No hi ha arxiu d'origen."
+
+#: ../../include/attach.php:521
+msgid "Cannot locate file to replace"
+msgstr "No trobo l'arxiu a reemplaçar"
+
+#: ../../include/attach.php:539
+msgid "Cannot locate file to revise/update"
+msgstr "No trobo l'arxiu a revisar/actualitzar"
+
+#: ../../include/attach.php:674
#, php-format
-msgid "%1$s's birthday"
-msgstr "Aniversari de %1$s"
+msgid "File exceeds size limit of %d"
+msgstr "L'arxiu excedeix la mida limit de %d"
-#: ../../include/datetime.php:563
+#: ../../include/attach.php:688
#, php-format
-msgid "Happy Birthday %1$s"
-msgstr "Feliç Aniversari %1$s"
+msgid "You have reached your limit of %1$.0f Mbytes attachment storage."
+msgstr "Has arribat al teu límit de %1$.0f Mbytes de emagatzematge d'adjunts."
-#: ../../include/group.php:26
+#: ../../include/attach.php:846
+msgid "File upload failed. Possible system limit or action terminated."
+msgstr "Pujada del arxiu fallida. Possible límit del sistema o acció interrompuda."
+
+#: ../../include/attach.php:859
+msgid "Stored file could not be verified. Upload failed."
+msgstr "L'arxiu guardat no es pot verificar. Pujada fallida."
+
+#: ../../include/attach.php:915 ../../include/attach.php:931
+msgid "Path not available."
+msgstr "Trajectòria no disponible"
+
+#: ../../include/attach.php:977 ../../include/attach.php:1129
+msgid "Empty pathname"
+msgstr "Trajèctoria vuida."
+
+#: ../../include/attach.php:1003
+msgid "duplicate filename or path"
+msgstr "Nom o trajectòria duplicat"
+
+#: ../../include/attach.php:1025
+msgid "Path not found."
+msgstr "Trajectòria no trobada."
+
+#: ../../include/attach.php:1083
+msgid "mkdir failed."
+msgstr "mkdir va fracassar."
+
+#: ../../include/attach.php:1087
+msgid "database storage failed."
+msgstr "Arxiu de base de dades va fallar."
+
+#: ../../include/attach.php:1135
+msgid "Empty path"
+msgstr "Trajèctoria vuida"
+
+#: ../../include/bbcode.php:123 ../../include/bbcode.php:878
+#: ../../include/bbcode.php:881 ../../include/bbcode.php:886
+#: ../../include/bbcode.php:889 ../../include/bbcode.php:892
+#: ../../include/bbcode.php:895 ../../include/bbcode.php:900
+#: ../../include/bbcode.php:903 ../../include/bbcode.php:908
+#: ../../include/bbcode.php:911 ../../include/bbcode.php:914
+#: ../../include/bbcode.php:917
+msgid "Image/photo"
+msgstr "Imatge/foto"
+
+#: ../../include/bbcode.php:162 ../../include/bbcode.php:928
+msgid "Encrypted content"
+msgstr "Contingut encriptat"
+
+#: ../../include/bbcode.php:178
+#, php-format
+msgid "Install %s element: "
+msgstr "Instal·la l'element %s:"
+
+#: ../../include/bbcode.php:182
+#, php-format
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 grup esborrat amb aquest nom fou reviscolat. Els permisos dels items existents <strong>poden</strong> aplicar-se a aquest grup i qualsevol membre futur. Si no es això el que vols, si et plau, crea un altre grup amb un nom diferent."
+"This post contains an installable %s element, however you lack permissions "
+"to install it on this site."
+msgstr "Aquesta entrada contè un element %s instal·lable, potser manques de permissos per instal·lar-lo en aquest lloc."
-#: ../../include/group.php:248
-msgid "Add new connections to this privacy group"
-msgstr "Afegir noves connexions a aquest grup privat"
+#: ../../include/bbcode.php:261
+#, php-format
+msgid "%1$s wrote the following %2$s %3$s"
+msgstr "%1$s va escriure el següent %2$s %3$s"
-#: ../../include/group.php:289
-msgid "edit"
-msgstr "edita"
+#: ../../include/bbcode.php:338 ../../include/bbcode.php:346
+msgid "Click to open/close"
+msgstr "Clic per obrir/tancar"
-#: ../../include/group.php:312
-msgid "Edit group"
-msgstr "Editar grup"
+#: ../../include/bbcode.php:346
+msgid "spoiler"
+msgstr "xafa guitarres"
-#: ../../include/group.php:313
-msgid "Add privacy group"
-msgstr "Afegir grup privat"
+#: ../../include/bbcode.php:619
+msgid "Different viewers will see this text differently"
+msgstr "Diferents observadors veuran aquest text de diferents formes"
-#: ../../include/group.php:314
-msgid "Channels not in any privacy group"
-msgstr "Sense canals en grups privats"
+#: ../../include/bbcode.php:866
+msgid "$1 wrote:"
+msgstr "$1 va escriure:"
+
+#: ../../include/items.php:897 ../../include/items.php:942
+msgid "(Unknown)"
+msgstr "(Desconegut)"
+
+#: ../../include/items.php:1141
+msgid "Visible to anybody on the internet."
+msgstr "Visible per tothom a la Internet"
+
+#: ../../include/items.php:1143
+msgid "Visible to you only."
+msgstr "Visible només per tú."
+
+#: ../../include/items.php:1145
+msgid "Visible to anybody in this network."
+msgstr "Visible per tothom en aquesta xarxa."
+
+#: ../../include/items.php:1147
+msgid "Visible to anybody authenticated."
+msgstr "Visible per tothom autenticat."
+
+#: ../../include/items.php:1149
+#, php-format
+msgid "Visible to anybody on %s."
+msgstr "Visible per a tothom a %s."
+
+#: ../../include/items.php:1151
+msgid "Visible to all connections."
+msgstr "Visible per a totes les connexions."
+
+#: ../../include/items.php:1153
+msgid "Visible to approved connections."
+msgstr "Visible per a les connexions aprovades."
+
+#: ../../include/items.php:1155
+msgid "Visible to specific connections."
+msgstr "Visible per a específiques connexions."
+
+#: ../../include/items.php:3918
+msgid "Privacy group is empty."
+msgstr "El grup privat està vuit."
+
+#: ../../include/items.php:3925
+#, php-format
+msgid "Privacy group: %s"
+msgstr "Grup privat: %s"
+
+#: ../../include/items.php:3937
+msgid "Connection not found."
+msgstr "Connexió no trobada."
+
+#: ../../include/items.php:4290
+msgid "profile photo"
+msgstr "foto del perfil"
+
+#: ../../include/oembed.php:336
+msgid "Embedded content"
+msgstr "Contingut embegut"
+
+#: ../../include/oembed.php:345
+msgid "Embedding disabled"
+msgstr "Incorporació desactivada"
+
+#: ../../include/widgets.php:103
+msgid "System"
+msgstr "Sistema"
+
+#: ../../include/widgets.php:106
+msgid "New App"
+msgstr "Nova App"
+
+#: ../../include/widgets.php:154
+msgid "Suggestions"
+msgstr "Suggerencies"
+
+#: ../../include/widgets.php:155
+msgid "See more..."
+msgstr "Veure més....."
+
+#: ../../include/widgets.php:175
+#, php-format
+msgid "You have %1$.0f of %2$.0f allowed connections."
+msgstr "Tens %1$.0f de %2$.0f connexions permeses."
+
+#: ../../include/widgets.php:181
+msgid "Add New Connection"
+msgstr "Afegeix una Nova Connexió"
+
+#: ../../include/widgets.php:182
+msgid "Enter channel address"
+msgstr "Introdueix l'adreça del canal"
+
+#: ../../include/widgets.php:183
+msgid "Examples: bob@example.com, https://example.com/barbara"
+msgstr "Exemples: bob@example.com, https://exemple.com/barbara"
+
+#: ../../include/widgets.php:199
+msgid "Notes"
+msgstr "Notes"
+
+#: ../../include/widgets.php:273
+msgid "Remove term"
+msgstr "Plaç de remoció"
+
+#: ../../include/widgets.php:313 ../../include/widgets.php:432
+#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94
+msgid "Everything"
+msgstr "Tot"
+
+#: ../../include/widgets.php:354
+msgid "Archives"
+msgstr "Arxius"
+
+#: ../../include/widgets.php:516
+msgid "Refresh"
+msgstr "Refresc"
+
+#: ../../include/widgets.php:556
+msgid "Account settings"
+msgstr "Ajustos de Compte"
+
+#: ../../include/widgets.php:562
+msgid "Channel settings"
+msgstr "Ajustos de Canal"
+
+#: ../../include/widgets.php:571
+msgid "Additional features"
+msgstr "Característiques addicionals"
+
+#: ../../include/widgets.php:578
+msgid "Feature/Addon settings"
+msgstr "Ajustos de Complements"
+
+#: ../../include/widgets.php:584
+msgid "Display settings"
+msgstr "Ajustos de pantalla"
+
+#: ../../include/widgets.php:591
+msgid "Manage locations"
+msgstr "Gestiona ubicacions"
+
+#: ../../include/widgets.php:600
+msgid "Export channel"
+msgstr "Exportat canal"
+
+#: ../../include/widgets.php:607
+msgid "Connected apps"
+msgstr "Apps connectades"
+
+#: ../../include/widgets.php:631
+msgid "Premium Channel Settings"
+msgstr "Ajustos Premium de Canal"
+
+#: ../../include/widgets.php:660
+msgid "Private Mail Menu"
+msgstr "Menú de Correu Privat"
+
+#: ../../include/widgets.php:662
+msgid "Combined View"
+msgstr "Vista Combinada"
+
+#: ../../include/widgets.php:694 ../../include/widgets.php:706
+msgid "Conversations"
+msgstr "Conversacions"
+
+#: ../../include/widgets.php:698
+msgid "Received Messages"
+msgstr "Missatges Rebuts"
+
+#: ../../include/widgets.php:702
+msgid "Sent Messages"
+msgstr "Missatges Enviats"
+
+#: ../../include/widgets.php:716
+msgid "No messages."
+msgstr "Sense missatges."
+
+#: ../../include/widgets.php:734
+msgid "Delete conversation"
+msgstr "Conversació esborrada"
+
+#: ../../include/widgets.php:760
+msgid "Events Tools"
+msgstr "Eina d'Esdeveniments"
+
+#: ../../include/widgets.php:761
+msgid "Export Calendar"
+msgstr "Exportar Calendari"
+
+#: ../../include/widgets.php:762
+msgid "Import Calendar"
+msgstr "Importar Calendari"
+
+#: ../../include/widgets.php:840
+msgid "Overview"
+msgstr "Visió General"
+
+#: ../../include/widgets.php:847
+msgid "Chat Members"
+msgstr "Membres de la Sala de Xat"
+
+#: ../../include/widgets.php:869
+msgid "Wiki List"
+msgstr "Llista de Wikis"
+
+#: ../../include/widgets.php:907
+msgid "Wiki Pages"
+msgstr "Pàgines de Wikis"
+
+#: ../../include/widgets.php:942
+msgid "Bookmarked Chatrooms"
+msgstr "Sales de Xat Favorites"
+
+#: ../../include/widgets.php:965
+msgid "Suggested Chatrooms"
+msgstr "Sales de Xat Suggerides"
+
+#: ../../include/widgets.php:1111 ../../include/widgets.php:1223
+msgid "photo/image"
+msgstr "foto/imatge"
+
+#: ../../include/widgets.php:1166
+msgid "Click to show more"
+msgstr "Fes clic per veure més"
+
+#: ../../include/widgets.php:1317
+msgid "Rating Tools"
+msgstr "Eines de Valoració"
+
+#: ../../include/widgets.php:1321 ../../include/widgets.php:1323
+msgid "Rate Me"
+msgstr "Valora'm"
+
+#: ../../include/widgets.php:1326
+msgid "View Ratings"
+msgstr "Veure Valoracions"
+
+#: ../../include/widgets.php:1410
+msgid "Forums"
+msgstr "Forums"
+
+#: ../../include/widgets.php:1439
+msgid "Tasks"
+msgstr "Tasques"
+
+#: ../../include/widgets.php:1448
+msgid "Documentation"
+msgstr "Documentació"
+
+#: ../../include/widgets.php:1450
+msgid "Project/Site Information"
+msgstr "Informació del Projecte/Lloc"
+
+#: ../../include/widgets.php:1451
+msgid "For Members"
+msgstr "Per Membres"
+
+#: ../../include/widgets.php:1452
+msgid "For Administrators"
+msgstr "Per Administradors"
+
+#: ../../include/widgets.php:1453
+msgid "For Developers"
+msgstr "Per Desenvolupadors"
+
+#: ../../include/widgets.php:1477 ../../include/widgets.php:1515
+msgid "Member registrations waiting for confirmation"
+msgstr "Una inscripció per a ser membre està esperant confirmació"
+
+#: ../../include/widgets.php:1483
+msgid "Inspect queue"
+msgstr "Revisa cua"
+
+#: ../../include/widgets.php:1485
+msgid "DB updates"
+msgstr "Actualitzacions de Base de Dades"
+
+#: ../../include/widgets.php:1511
+msgid "Plugin Features"
+msgstr "Característiques del Plugin"
+
+#: ../../include/activities.php:41
+msgid " and "
+msgstr "i"
+
+#: ../../include/activities.php:49
+msgid "public profile"
+msgstr "Perfil públic"
+
+#: ../../include/activities.php:58
+#, php-format
+msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
+msgstr "%1$s canviat %2$s a &ldquo;%3$s&rdquo;"
+
+#: ../../include/activities.php:59
+#, php-format
+msgid "Visit %1$s's %2$s"
+msgstr "Visita %1$s en %2$s"
+
+#: ../../include/activities.php:62
+#, php-format
+msgid "%1$s has an updated %2$s, changing %3$s."
+msgstr "%1$s Ha actualitzat %2$s, canviant %3$s."
+
+#: ../../include/bb2diaspora.php:398
+msgid "Attachments:"
+msgstr "Adjuntat:"
+
+#: ../../include/bb2diaspora.php:487
+msgid "$Projectname event notification:"
+msgstr "Notificació d'esdeveniment de $Projectname"
#: ../../include/js_strings.php:5
msgid "Delete this item?"
msgstr "Esborrar aquest item?"
#: ../../include/js_strings.php:8
-msgid "[-] show less"
-msgstr "[-] mostra menys"
+#, php-format
+msgid "%s show less"
+msgstr ""
#: ../../include/js_strings.php:9
-msgid "[+] expand"
-msgstr "[+] expandeix"
+#, php-format
+msgid "%s expand"
+msgstr ""
#: ../../include/js_strings.php:10
-msgid "[-] collapse"
-msgstr "[-] colapsa"
+#, php-format
+msgid "%s collapse"
+msgstr ""
#: ../../include/js_strings.php:11
msgid "Password too short"
@@ -9361,277 +9612,222 @@ msgctxt "calendar"
msgid "All day"
msgstr "Tot el dia"
-#: ../../include/network.php:657
-msgid "view full size"
-msgstr "Veure a mida competa"
-
-#: ../../include/network.php:1885
-msgid "No Subject"
-msgstr "Sense Assumpte"
-
-#: ../../include/network.php:2146 ../../include/network.php:2147
-msgid "Friendica"
-msgstr "Friendica"
-
-#: ../../include/network.php:2148
-msgid "OStatus"
-msgstr "OStatus"
-
-#: ../../include/network.php:2149
-msgid "GNU-Social"
-msgstr "GNU-Social"
-
-#: ../../include/network.php:2150
-msgid "RSS/Atom"
-msgstr "RSS/Atom"
-
-#: ../../include/network.php:2152
-msgid "Diaspora"
-msgstr "Diaspora"
-
-#: ../../include/network.php:2153
-msgid "Facebook"
-msgstr "Facebook"
-
-#: ../../include/network.php:2154
-msgid "Zot"
-msgstr "Zot"
-
-#: ../../include/network.php:2155
-msgid "LinkedIn"
-msgstr "LinkedIn"
-
-#: ../../include/network.php:2156
-msgid "XMPP/IM"
-msgstr "XMPP/IM"
-
-#: ../../include/network.php:2157
-msgid "MySpace"
-msgstr "MySpace"
-
-#: ../../include/photos.php:110
+#: ../../include/contact_widgets.php:11
#, php-format
-msgid "Image exceeds website size limit of %lu bytes"
-msgstr "La imatge excedeix la mida limit pel lloc web en %lu bytes"
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] "%d invitació disponible"
+msgstr[1] "%d invitacions disponibles"
-#: ../../include/photos.php:117
-msgid "Image file is empty."
-msgstr "El fitxer d'imatge esta buit."
+#: ../../include/contact_widgets.php:19
+msgid "Find Channels"
+msgstr "Troba Canals"
-#: ../../include/photos.php:255
-msgid "Photo storage failed."
-msgstr "Fracassà l'emmagatzematge de la Foto"
+#: ../../include/contact_widgets.php:20
+msgid "Enter name or interest"
+msgstr "Entra un nom o interes"
-#: ../../include/photos.php:295
-msgid "a new photo"
-msgstr "Una foto nova"
+#: ../../include/contact_widgets.php:21
+msgid "Connect/Follow"
+msgstr "Conecta/Segueix"
-#: ../../include/photos.php:299
-#, php-format
-msgctxt "photo_upload"
-msgid "%1$s posted %2$s to %3$s"
-msgstr "%1$s enviat %2$s a %3$s"
+#: ../../include/contact_widgets.php:22
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr "Exemples: Lionel Messi, Futbolista"
-#: ../../include/photos.php:506
-msgid "Upload New Photos"
-msgstr "Puja Noves Fotos"
+#: ../../include/contact_widgets.php:26
+msgid "Random Profile"
+msgstr "Perfil Aleatori"
-#: ../../include/zot.php:699
-msgid "Invalid data packet"
-msgstr "paquet de dades invàlid"
+#: ../../include/contact_widgets.php:27
+msgid "Invite Friends"
+msgstr "Convida Amics"
-#: ../../include/zot.php:715
-msgid "Unable to verify channel signature"
-msgstr "No es pot verificar la signatura del canal"
+#: ../../include/contact_widgets.php:29
+msgid "Advanced example: name=fred and country=iceland"
+msgstr "Exemple avançat: nom=pep i pais=eire"
-#: ../../include/zot.php:2363
+#: ../../include/contact_widgets.php:122
#, php-format
-msgid "Unable to verify site signature for %s"
-msgstr "No es pot verificar la signatura del lloc per %s"
-
-#: ../../include/zot.php:3712
-msgid "invalid target signature"
-msgstr "Signatura objectiu invàlida"
-
-#: ../../include/page_widgets.php:6
-msgid "New Page"
-msgstr "Pàgina Nova"
-
-#: ../../include/page_widgets.php:43
-msgid "Title"
-msgstr "Títol"
-
-#: ../../include/permissions.php:26
-msgid "Can view my normal stream and posts"
-msgstr "Pot veure el flux i entrades normals"
-
-#: ../../include/permissions.php:27
-msgid "Can view my default channel profile"
-msgstr "Pot veure el meu perfil del canal per defecte"
-
-#: ../../include/permissions.php:28
-msgid "Can view my connections"
-msgstr "Pot veure les meves connexions"
-
-#: ../../include/permissions.php:29
-msgid "Can view my file storage and photos"
-msgstr "Pot veure al meu magatzem d'arxius i fotos"
+msgid "%d connection in common"
+msgid_plural "%d connections in common"
+msgstr[0] "%d connexió en comú"
+msgstr[1] "%d connexions en comú"
-#: ../../include/permissions.php:30
-msgid "Can view my webpages"
-msgstr "Pot veure les meves pàgines web"
+#: ../../include/contact_widgets.php:127
+msgid "show more"
+msgstr "mostrar més"
-#: ../../include/permissions.php:33
-msgid "Can send me their channel stream and posts"
-msgstr "Pot enviar-me el flux i entrades del seu canal"
+#: ../../include/dir_fns.php:141
+msgid "Directory Options"
+msgstr "Opcions de Directori"
-#: ../../include/permissions.php:34
-msgid "Can post on my channel page (\"wall\")"
-msgstr "Pot fer entrades a la meva pàgina de canal (\"mur\")"
+#: ../../include/dir_fns.php:143
+msgid "Safe Mode"
+msgstr "Manera Segura"
-#: ../../include/permissions.php:35
-msgid "Can comment on or like my posts"
-msgstr "Pot fer comentaris o dir si agrada en les meves entrades"
+#: ../../include/dir_fns.php:144
+msgid "Public Forums Only"
+msgstr "Només Fòrums Públics"
-#: ../../include/permissions.php:36
-msgid "Can send me private mail messages"
-msgstr "Pot enviar-me un missatge de correu privat"
+#: ../../include/dir_fns.php:145
+msgid "This Website Only"
+msgstr "Només Aquest Lloc Web"
-#: ../../include/permissions.php:37
-msgid "Can like/dislike stuff"
-msgstr "Pot dir si agrada/desagrada "
+#: ../../include/message.php:20
+msgid "No recipient provided."
+msgstr "No s'ha proporcionat bústia."
-#: ../../include/permissions.php:37
-msgid "Profiles and things other than posts/comments"
-msgstr "Perfils i altres coses a més d'entrades/comentaris"
+#: ../../include/message.php:25
+msgid "[no subject]"
+msgstr "[no subject]"
-#: ../../include/permissions.php:39
-msgid "Can forward to all my channel contacts via post @mentions"
-msgstr "Ho pot enviar a tots els meus contactes del canal via entrades @mencions"
+#: ../../include/message.php:45
+msgid "Unable to determine sender."
+msgstr "incapaç de determinar el remitent"
-#: ../../include/permissions.php:39
-msgid "Advanced - useful for creating group forum channels"
-msgstr "Avançat - capaç de crear canals de grups de foro"
+#: ../../include/message.php:222
+msgid "Stored post could not be verified."
+msgstr "L'entrada guardada no pot ser verificada"
-#: ../../include/permissions.php:40
-msgid "Can chat with me (when available)"
-msgstr "Pot xatejar amb mi (si estic disponible)"
+#: ../../include/acl_selectors.php:269
+msgid "Who can see this?"
+msgstr "Qui pot veure això?"
-#: ../../include/permissions.php:41
-msgid "Can write to my file storage and photos"
-msgstr "Pot escriure al meu magatzem d'arxius i fotos"
+#: ../../include/acl_selectors.php:270
+msgid "Custom selection"
+msgstr "Selecció a mida"
-#: ../../include/permissions.php:42
-msgid "Can edit my webpages"
-msgstr "Pot editar les meves pàgines web"
+#: ../../include/acl_selectors.php:271
+msgid ""
+"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit"
+" the scope of \"Show\"."
+msgstr "Selecciona \"Mostrar\" per permetre la visualització. \"No Mostrar\" et permet obviar i limitar l'abast de \"Mostrar\"."
-#: ../../include/permissions.php:44
-msgid "Can source my public posts in derived channels"
-msgstr "Pot mostrar l'origen de les meves entrades públiques en altres canals"
+#: ../../include/acl_selectors.php:272
+msgid "Show"
+msgstr "Mostra"
-#: ../../include/permissions.php:44
-msgid "Somewhat advanced - very useful in open communities"
-msgstr "Quelcom avançat - molt útil en comunitats obertes"
+#: ../../include/acl_selectors.php:273
+msgid "Don't show"
+msgstr "No mostrar"
-#: ../../include/permissions.php:46
-msgid "Can administer my channel resources"
-msgstr "Pot administrar els meus recursos del canal"
+#: ../../include/acl_selectors.php:279
+msgid "Other networks and post services"
+msgstr "Altres xarxes i serveis de correu"
-#: ../../include/permissions.php:46
+#: ../../include/acl_selectors.php:309
+#, php-format
msgid ""
-"Extremely advanced. Leave this alone unless you know what you are doing"
-msgstr "Extremadament avançat. No toquis res si no saps que estàs fent"
-
-#: ../../include/permissions.php:877
-msgid "Social Networking"
-msgstr "Xarxes Socials"
+"Post permissions %s cannot be changed %s after a post is shared.</br />These"
+" permissions set who is allowed to view the post."
+msgstr "Els permisos d'entrada %s no poden esser canviats %s posteriorment a que una entrada ja està compartida. </br />Aquest ajust dels permisos indica qui pot veure l'entrada."
-#: ../../include/permissions.php:877
-msgid "Social - Mostly Public"
-msgstr "Social - Principalment Públic"
+#: ../../include/datetime.php:135
+msgid "Birthday"
+msgstr "Aniversari"
-#: ../../include/permissions.php:877
-msgid "Social - Restricted"
-msgstr "Social - Restingit"
+#: ../../include/datetime.php:137
+msgid "Age: "
+msgstr "Edat:"
-#: ../../include/permissions.php:877
-msgid "Social - Private"
-msgstr "Social - Privat"
+#: ../../include/datetime.php:139
+msgid "YYYY-MM-DD or MM-DD"
+msgstr "YYYY-MM-DD o MM-DD"
-#: ../../include/permissions.php:878
-msgid "Community Forum"
-msgstr "Foro de Comunitat"
+#: ../../include/datetime.php:272 ../../boot.php:2479
+msgid "never"
+msgstr "mai"
-#: ../../include/permissions.php:878
-msgid "Forum - Mostly Public"
-msgstr "Fòrum - Principalment Públic"
+#: ../../include/datetime.php:278
+msgid "less than a second ago"
+msgstr "fa menys d'un segon"
-#: ../../include/permissions.php:878
-msgid "Forum - Restricted"
-msgstr "Fòrum - Restringit"
+#: ../../include/datetime.php:296
+#, php-format
+msgctxt "e.g. 22 hours ago, 1 minute ago"
+msgid "%1$d %2$s ago"
+msgstr "Fa %1$d %2$s"
-#: ../../include/permissions.php:878
-msgid "Forum - Private"
-msgstr "Fòrum - Privat"
+#: ../../include/datetime.php:307
+msgctxt "relative_date"
+msgid "year"
+msgid_plural "years"
+msgstr[0] "any"
+msgstr[1] "anys"
-#: ../../include/permissions.php:879
-msgid "Feed Republish"
-msgstr "Republicador"
+#: ../../include/datetime.php:310
+msgctxt "relative_date"
+msgid "month"
+msgid_plural "months"
+msgstr[0] "mes"
+msgstr[1] "mesos "
-#: ../../include/permissions.php:879
-msgid "Feed - Mostly Public"
-msgstr "Realimentador - Públic Principalment"
+#: ../../include/datetime.php:313
+msgctxt "relative_date"
+msgid "week"
+msgid_plural "weeks"
+msgstr[0] "setmana"
+msgstr[1] "setmanes"
-#: ../../include/permissions.php:879
-msgid "Feed - Restricted"
-msgstr "Retroalimentador - Restringit"
+#: ../../include/datetime.php:316
+msgctxt "relative_date"
+msgid "day"
+msgid_plural "days"
+msgstr[0] "dia"
+msgstr[1] "dies"
-#: ../../include/permissions.php:880
-msgid "Special Purpose"
-msgstr "Objectiu Especial"
+#: ../../include/datetime.php:319
+msgctxt "relative_date"
+msgid "hour"
+msgid_plural "hours"
+msgstr[0] "hora"
+msgstr[1] "hores"
-#: ../../include/permissions.php:880
-msgid "Special - Celebrity/Soapbox"
-msgstr "Espacial - Celebritat/Plataforma"
+#: ../../include/datetime.php:322
+msgctxt "relative_date"
+msgid "minute"
+msgid_plural "minutes"
+msgstr[0] "minut"
+msgstr[1] "minuts"
-#: ../../include/permissions.php:880
-msgid "Special - Group Repository"
-msgstr "Especial - Repositori d'un Grup"
+#: ../../include/datetime.php:325
+msgctxt "relative_date"
+msgid "second"
+msgid_plural "seconds"
+msgstr[0] "segon"
+msgstr[1] "segons"
-#: ../../include/permissions.php:881
-msgid "Custom/Expert Mode"
-msgstr "Personalitzat/Manera Experta"
+#: ../../include/datetime.php:562
+#, php-format
+msgid "%1$s's birthday"
+msgstr "Aniversari de %1$s"
-#: ../../include/activities.php:41
-msgid " and "
-msgstr "i"
+#: ../../include/datetime.php:563
+#, php-format
+msgid "Happy Birthday %1$s"
+msgstr "Feliç Aniversari %1$s"
-#: ../../include/activities.php:49
-msgid "public profile"
-msgstr "Perfil públic"
+#: ../../include/api.php:1327
+msgid "Public Timeline"
+msgstr "Línia de Temps Pública"
-#: ../../include/activities.php:58
-#, php-format
-msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
-msgstr "%1$s canviat %2$s a &ldquo;%3$s&rdquo;"
+#: ../../include/zot.php:697
+msgid "Invalid data packet"
+msgstr "paquet de dades invàlid"
-#: ../../include/activities.php:59
-#, php-format
-msgid "Visit %1$s's %2$s"
-msgstr "Visita %1$s en %2$s"
+#: ../../include/zot.php:713
+msgid "Unable to verify channel signature"
+msgstr "No es pot verificar la signatura del canal"
-#: ../../include/activities.php:62
+#: ../../include/zot.php:2326
#, php-format
-msgid "%1$s has an updated %2$s, changing %3$s."
-msgstr "%1$s Ha actualitzat %2$s, canviant %3$s."
-
-#: ../../include/bb2diaspora.php:398
-msgid "Attachments:"
-msgstr "Adjuntat:"
+msgid "Unable to verify site signature for %s"
+msgstr "No es pot verificar la signatura del lloc per %s"
-#: ../../include/bb2diaspora.php:487
-msgid "$Projectname event notification:"
-msgstr "Notificació d'esdeveniment de $Projectname"
+#: ../../include/zot.php:3703
+msgid "invalid target signature"
+msgstr "Signatura objectiu invàlida"
#: ../../view/theme/redbasic/php/config.php:82
msgid "Focus (Hubzilla default)"
@@ -9769,62 +9965,66 @@ msgstr "Ajusta la mida de la foto del autor a la conversa"
msgid "Set size of followup author photos"
msgstr "Ajusta la mida del seguidor de les fotos de l'autor"
-#: ../../boot.php:1162
+#: ../../boot.php:1163
#, php-format
msgctxt "opensearch"
msgid "Search %1$s (%2$s)"
msgstr "Cerca %1$s(%2$s)"
-#: ../../boot.php:1162
+#: ../../boot.php:1163
msgctxt "opensearch"
msgid "$Projectname"
msgstr "$Projectname"
-#: ../../boot.php:1480
+#: ../../boot.php:1481
#, php-format
msgid "Update %s failed. See error logs."
msgstr "L'actualització %s ha fallat. Mira el registre d'errors."
-#: ../../boot.php:1483
+#: ../../boot.php:1484
#, php-format
msgid "Update Error at %s"
msgstr "Error d'Actualització a %s"
-#: ../../boot.php:1684
+#: ../../boot.php:1685
msgid ""
"Create an account to access services and applications within the Hubzilla"
msgstr "Crea un compte per accedir als serveis i aplicacions dins de Hubzilla"
#: ../../boot.php:1706
+msgid "Login/Email"
+msgstr ""
+
+#: ../../boot.php:1707
msgid "Password"
msgstr "Contrasenya"
-#: ../../boot.php:1707
+#: ../../boot.php:1708
msgid "Remember me"
msgstr "Recorda'm"
-#: ../../boot.php:1710
+#: ../../boot.php:1711
msgid "Forgot your password?"
msgstr "Has perdut la Contrasenya?"
-#: ../../boot.php:2276
+#: ../../boot.php:2277
msgid "toggle mobile"
msgstr "canvia a format per a mòbils"
-#: ../../boot.php:2425
+#: ../../boot.php:2432
msgid "Website SSL certificate is not valid. Please correct."
msgstr "El certificat SSL és invalid, soluciona-ho, si us plau."
-#: ../../boot.php:2428
+#: ../../boot.php:2435
#, php-format
msgid "[hubzilla] Website SSL error for %s"
msgstr "[hubzilla] Error de SSL per la web %s"
-#: ../../boot.php:2469
+#: ../../boot.php:2478
msgid "Cron/Scheduled tasks not running."
msgstr "No s'estan executant les tasques programades al cron."
-#: ../../boot.php:2473
+#: ../../boot.php:2482
#, php-format
msgid "[hubzilla] Cron tasks not running on %s"
msgstr "[hubzilla] Les tasques de Cron no rulen a %s"
diff --git a/view/ca/hstrings.php b/view/ca/hstrings.php
index 7470f8c84..d876aea80 100644
--- a/view/ca/hstrings.php
+++ b/view/ca/hstrings.php
@@ -4,8 +4,40 @@ if(! function_exists("string_plural_select_ca")) {
function string_plural_select_ca($n){
return ($n != 1);;
}}
-;
-App::$strings["parent"] = "pare";
+App::$rtl = 0;
+App::$strings["Social Networking"] = "Xarxes Socials";
+App::$strings["Social - Mostly Public"] = "Social - Principalment Públic";
+App::$strings["Social - Restricted"] = "Social - Restingit";
+App::$strings["Social - Private"] = "Social - Privat";
+App::$strings["Community Forum"] = "Foro de Comunitat";
+App::$strings["Forum - Mostly Public"] = "Fòrum - Principalment Públic";
+App::$strings["Forum - Restricted"] = "Fòrum - Restringit";
+App::$strings["Forum - Private"] = "Fòrum - Privat";
+App::$strings["Feed Republish"] = "Republicador";
+App::$strings["Feed - Mostly Public"] = "Realimentador - Públic Principalment";
+App::$strings["Feed - Restricted"] = "Retroalimentador - Restringit";
+App::$strings["Special Purpose"] = "Objectiu Especial";
+App::$strings["Special - Celebrity/Soapbox"] = "Espacial - Celebritat/Plataforma";
+App::$strings["Special - Group Repository"] = "Especial - Repositori d'un Grup";
+App::$strings["Other"] = "Altres";
+App::$strings["Custom/Expert Mode"] = "Personalitzat/Manera Experta";
+App::$strings["Can view my channel stream and posts"] = "";
+App::$strings["Can send me their channel stream and posts"] = "Pot enviar-me el flux i entrades del seu canal";
+App::$strings["Can view my default channel profile"] = "Pot veure el meu perfil del canal per defecte";
+App::$strings["Can view my connections"] = "Pot veure les meves connexions";
+App::$strings["Can view my file storage and photos"] = "Pot veure al meu magatzem d'arxius i fotos";
+App::$strings["Can upload/modify my file storage and photos"] = "";
+App::$strings["Can view my channel webpages"] = "";
+App::$strings["Can create/edit my channel webpages"] = "";
+App::$strings["Can post on my channel (wall) page"] = "";
+App::$strings["Can comment on or like my posts"] = "Pot fer comentaris o dir si agrada en les meves entrades";
+App::$strings["Can send me private mail messages"] = "Pot enviar-me un missatge de correu privat";
+App::$strings["Can like/dislike profiles and profile things"] = "";
+App::$strings["Can forward to all my channel connections via @+ mentions in posts"] = "";
+App::$strings["Can chat with me"] = "";
+App::$strings["Can source my public posts in derived channels"] = "Pot mostrar l'origen de les meves entrades públiques en altres canals";
+App::$strings["Can administer my channel"] = "";
+App::$strings["parent"] = "amunt";
App::$strings["Collection"] = "Col·lecció";
App::$strings["Principal"] = "Principal";
App::$strings["Addressbook"] = "Llista d'Adreçes";
@@ -37,63 +69,8 @@ App::$strings["Remote authentication blocked. You are logged into this site loca
App::$strings["Welcome %s. Remote authentication successful."] = "Benvingut %s. Autenticació remota reeixida.";
App::$strings["Requested profile is not available."] = "El perfil demanat no està disponible.";
App::$strings["Some blurb about what to do when you're new here"] = "Algunes propostes sobre el que cal fer quan ets nou aquí";
-App::$strings["Block Name"] = "Nom del Bloc";
-App::$strings["Blocks"] = "Bloc";
-App::$strings["Block Title"] = "Títol del bloc";
-App::$strings["Created"] = "Creat";
-App::$strings["Edited"] = "Editat";
-App::$strings["Share"] = "Compartir";
-App::$strings["View"] = "Mostra";
-App::$strings["Channel not found."] = "Canal no trobat.";
-App::$strings["Permissions denied."] = "Permís denegat.";
-App::$strings["l, F j"] = "l, F j";
-App::$strings["Link to Source"] = "Enllaç a la Font";
-App::$strings["Edit Event"] = "Editar l'Esdeveniment";
-App::$strings["Create Event"] = "Crear Esdeveniment";
-App::$strings["Previous"] = "Anterior";
-App::$strings["Next"] = "Pròxim";
-App::$strings["Export"] = "Exporta";
-App::$strings["Import"] = "Importar";
-App::$strings["Submit"] = "Enviar";
-App::$strings["Today"] = "Avui";
-App::$strings["You must be logged in to see this page."] = "Has d'estar identificat per a veure aquesta pàgina.";
-App::$strings["Posts and comments"] = "Entrades i comentaris";
-App::$strings["Only posts"] = "Només entrades";
-App::$strings["Insufficient permissions. Request redirected to profile page."] = "Permisos insuficients. Petició redirigida a la pàgina del perfil.";
-App::$strings["Room not found"] = "No s'ha trobat la sala";
-App::$strings["Leave Room"] = "Abandona la sala";
-App::$strings["Delete Room"] = "Esborra Sala";
-App::$strings["I am away right now"] = "Absent";
-App::$strings["I am online"] = "Estic connectat/da";
-App::$strings["Bookmark this room"] = "Fes favorit aquest xat";
-App::$strings["Please enter a link URL:"] = "Si us plau entra l'enllaç URL:";
-App::$strings["Encrypt text"] = "Text encriptat";
-App::$strings["Insert web link"] = "Insereix enllaç web";
-App::$strings["Feature disabled."] = "Funcionalitat desactivada.";
-App::$strings["New Chatroom"] = "Nova sala per a Xerrar";
-App::$strings["Chatroom name"] = "Nom de la sala de xat";
-App::$strings["Expiration of chats (minutes)"] = "Expiració dels chats (minuts)";
-App::$strings["Permissions"] = "Permisos ";
-App::$strings["%1\$s's Chatrooms"] = "%1\$s de Xats";
-App::$strings["No chatrooms available"] = "No hi ha sales de xat disponibles";
-App::$strings["Create New"] = "Crear Nou";
-App::$strings["Expiration"] = "Expiració";
-App::$strings["min"] = "min";
App::$strings["Away"] = "Absent";
App::$strings["Online"] = "En connexió";
-App::$strings["Invalid item."] = "Article invàlid.";
-App::$strings["Bookmark added"] = "Favorit afegit";
-App::$strings["My Bookmarks"] = "Els Meus Favorits";
-App::$strings["My Connections Bookmarks"] = "Les connexions dels meus Favorits";
-App::$strings["Continue"] = "Continua";
-App::$strings["Premium Channel Setup"] = "Configuració de Canals Premium";
-App::$strings["Enable premium channel connection restrictions"] = "Habilita les restriccions de connexió del canal premium";
-App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Si us plau, introdueixi les restriccions o condicions, com ara el rebut de PayPal, les pautes d'ús, etc.";
-App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Aquest canal pot requerir passos addicionals o reconeixement de les següents condicions abans de connectar:";
-App::$strings["Potential connections will then see the following text before proceeding:"] = "Connexions potencials veuran el següent text abans de continuar:";
-App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "En continuar, certifico que he complert amb totes les instruccions proporcionades en aquesta pàgina.";
-App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(No s'han proporcionat instruccions específiques pel propietari del canal.)";
-App::$strings["Restricted or Premium Channel"] = "Canal Restringit o Premium";
App::$strings["Could not access contact record."] = "No s'ha pogut accedir al llibre de contactes.";
App::$strings["Could not locate selected profile."] = "No s'ha trobat el perfil indicat.";
App::$strings["Connection updated."] = "S'ha actualitzat la connexió.";
@@ -158,6 +135,7 @@ App::$strings["Do not import posts with this text"] = "No importar entrades amb
App::$strings["This information is public!"] = "Aquesta informació es pública!";
App::$strings["Connection Pending Approval"] = "Connexió Pendent d'Aprovació";
App::$strings["inherited"] = "heretat";
+App::$strings["Submit"] = "Enviar";
App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Tria el perfil que vols mostrar a %s quan es vegi el perfil segur.";
App::$strings["Their Settings"] = "Els seus Ajustos";
App::$strings["My Settings"] = "Els Meus Ajustos";
@@ -166,6 +144,30 @@ App::$strings["Some permissions may be inherited from your channel's <a href=\"s
App::$strings["Some permissions may be inherited from your channel's <a href=\"settings\"><strong>privacy settings</strong></a>, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Alguns permisos poden ser heretats dels teus canals <a href=\"settings\"><strong>ajustos de privacitat</strong></a>, Els quals tenen més prioritat que els ajustos individuals. <strong>Pots</strong> canviar aquests ajustos aquí pero no tindran cap impacte fins que no canviis els ajustos heretats.";
App::$strings["Last update:"] = "Darrera actualització:";
App::$strings["Public access denied."] = "Accés públic denegat.";
+App::$strings["Item not found."] = "Element no trobat.";
+App::$strings["First Name"] = "Nom";
+App::$strings["Last Name"] = "Cognoms";
+App::$strings["Nickname"] = "Àlies";
+App::$strings["Full Name"] = "Nom Sencer";
+App::$strings["Email"] = "Correu electrónic";
+App::$strings["Profile Photo"] = "Foto del Perfil";
+App::$strings["Profile Photo 16px"] = "Foto del Perfil 16px";
+App::$strings["Profile Photo 32px"] = "Foto del Perfil 32px";
+App::$strings["Profile Photo 48px"] = "Foto del Perfil 48px";
+App::$strings["Profile Photo 64px"] = "Foto del Perfil 64px";
+App::$strings["Profile Photo 80px"] = "Foto del Perfil 80px";
+App::$strings["Profile Photo 128px"] = "Foto del Perfil 128px";
+App::$strings["Timezone"] = "Zona horària";
+App::$strings["Homepage URL"] = "URL de la pàgina d'inici";
+App::$strings["Language"] = "Idioma";
+App::$strings["Birth Year"] = "Any de Naixement";
+App::$strings["Birth Month"] = "Mes de Naixement";
+App::$strings["Birth Day"] = "Dia de Naixement";
+App::$strings["Birthdate"] = "Aniversari";
+App::$strings["Gender"] = "Gènere";
+App::$strings["Male"] = "Masculí";
+App::$strings["Female"] = "Femení";
+App::$strings["Channel added."] = "S'ha afegit el canal.";
App::$strings["%d rating"] = array(
0 => "%d valoració",
1 => "%d valoracions",
@@ -196,13 +198,74 @@ App::$strings["Reverse Alphabetic"] = "Alfabètic Invers";
App::$strings["Newest to Oldest"] = "De més Nou a més Vell";
App::$strings["Oldest to Newest"] = "De més Antic a més Nou";
App::$strings["No entries (some entries may be hidden)."] = "Sense entrades (algunes podrien estar amagades).";
-App::$strings["Item not found."] = "Element no trobat.";
+App::$strings["Continue"] = "Continua";
+App::$strings["Premium Channel Setup"] = "Configuració de Canals Premium";
+App::$strings["Enable premium channel connection restrictions"] = "Habilita les restriccions de connexió del canal premium";
+App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Si us plau, introdueixi les restriccions o condicions, com ara el rebut de PayPal, les pautes d'ús, etc.";
+App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Aquest canal pot requerir passos addicionals o reconeixement de les següents condicions abans de connectar:";
+App::$strings["Potential connections will then see the following text before proceeding:"] = "Connexions potencials veuran el següent text abans de continuar:";
+App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "En continuar, certifico que he complert amb totes les instruccions proporcionades en aquesta pàgina.";
+App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(No s'han proporcionat instruccions específiques pel propietari del canal.)";
+App::$strings["Restricted or Premium Channel"] = "Canal Restringit o Premium";
+App::$strings["Calendar entries imported."] = "Entrades de Calendari importades.";
+App::$strings["No calendar entries found."] = "No es troben entrades decalendari.";
+App::$strings["Event can not end before it has started."] = "L'esdeveniment ha de començar abans d'acabar.";
+App::$strings["Unable to generate preview."] = "No s'ha pogut generar la vista prèvia.";
+App::$strings["Event title and start time are required."] = "Cal indicar l'inici i el final de l'esdeveniment.";
+App::$strings["Event not found."] = "No s'ha trobat l'esdeveniment.";
+App::$strings["event"] = "succés";
+App::$strings["Edit event title"] = "Edita el títol d'esdeveniment";
+App::$strings["Event title"] = "Títol esdeveniment";
+App::$strings["Required"] = "Requerit";
+App::$strings["Categories (comma-separated list)"] = "Categories (llista separada per comes)";
+App::$strings["Edit Category"] = "Editar Categoria";
+App::$strings["Category"] = "Categoria";
+App::$strings["Edit start date and time"] = "Editar data i hora d'inici";
+App::$strings["Start date and time"] = "Data i hora d'inici";
+App::$strings["Finish date and time are not known or not relevant"] = "L'ora de finalització no es coneix o es irrelevant.";
+App::$strings["Edit finish date and time"] = "Editar la data i hora de finalització";
+App::$strings["Finish date and time"] = "Data i hora de finalització";
+App::$strings["Adjust for viewer timezone"] = "Ajusta a la zona horària del visitant.";
+App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "És important per esdeveniments locals, però pels globals no és pràctic.";
+App::$strings["Edit Description"] = "Editar la Descripció";
+App::$strings["Description"] = "Descripció";
+App::$strings["Edit Location"] = "Editar la localització";
+App::$strings["Location"] = "Localització";
+App::$strings["Share this event"] = "Comparteix aquest esdeveniment";
+App::$strings["Preview"] = "Avanç";
+App::$strings["Permission settings"] = "Ajustos de permisos";
+App::$strings["Advanced Options"] = "Opcions Avançades";
+App::$strings["l, F j"] = "l, j \\d\\e/\\d' F";
+App::$strings["Edit event"] = "Edita l'esdeveniment";
+App::$strings["Delete event"] = "Esborra l'esdeveniment";
+App::$strings["Link to Source"] = "Enllaç a la Font";
+App::$strings["calendar"] = "calendari";
+App::$strings["Edit Event"] = "Editar l'Esdeveniment";
+App::$strings["Create Event"] = "Crear Esdeveniment";
+App::$strings["Previous"] = "Anterior";
+App::$strings["Next"] = "Pròxim";
+App::$strings["Export"] = "Exporta";
+App::$strings["View"] = "Mostra";
+App::$strings["Month"] = "";
+App::$strings["Week"] = "";
+App::$strings["Day"] = "";
+App::$strings["Today"] = "Avui";
+App::$strings["Event removed"] = "S'ha eliminat l'esdeveniment";
+App::$strings["Failed to remove event"] = "No s'ha pogut esborrar l'esdeveniment";
+App::$strings["Bookmark added"] = "Favorit afegit";
+App::$strings["My Bookmarks"] = "Els Meus Favorits";
+App::$strings["My Connections Bookmarks"] = "Les connexions dels meus Favorits";
App::$strings["Item not found"] = "No s'ha trobat l'element";
-App::$strings["Title (optional)"] = "Títol (opcional)";
-App::$strings["Edit Block"] = "Editar Bloc";
-App::$strings["No channel."] = "No s'ha trobat el canal";
-App::$strings["Common connections"] = "Connexions en comú";
-App::$strings["No connections in common."] = "No hi ha connexions en comú.";
+App::$strings["Item is not editable"] = "Article no editable";
+App::$strings["Edit post"] = "Modifica l'entrada";
+App::$strings["Photos"] = "Fotos";
+App::$strings["Cancel"] = "Cancel·la";
+App::$strings["Invalid item."] = "Article invàlid.";
+App::$strings["Channel not found."] = "Canal no trobat.";
+App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.";
+App::$strings["Save to Folder:"] = "Guardar en la Carpeta";
+App::$strings["- select -"] = "- selecciona -";
+App::$strings["Save"] = "Guardar";
App::$strings["Blocked"] = "Bloquejades";
App::$strings["Ignored"] = "Ignorades";
App::$strings["Hidden"] = "Amagades";
@@ -254,51 +317,38 @@ App::$strings["select a photo from your photo albums"] = "tria una foto del teu
App::$strings["Crop Image"] = "Retalla Imatge";
App::$strings["Please adjust the image cropping for optimum viewing."] = "Si us plau, retalla la imatge per a una optima visualització";
App::$strings["Done Editing"] = "Edició Feta";
-App::$strings["Item is not editable"] = "Article no editable";
-App::$strings["Edit post"] = "Modifica l'entrada";
-App::$strings["Calendar entries imported."] = "Entrades de Calendari importades.";
-App::$strings["No calendar entries found."] = "No es troben entrades decalendari.";
-App::$strings["Event can not end before it has started."] = "L'esdeveniment ha de començar abans d'acabar.";
-App::$strings["Unable to generate preview."] = "No s'ha pogut generar la vista prèvia.";
-App::$strings["Event title and start time are required."] = "Cal indicar l'inici i el final de l'esdeveniment.";
-App::$strings["Event not found."] = "No s'ha trobat l'esdeveniment.";
-App::$strings["event"] = "succés";
-App::$strings["Edit event title"] = "Edita el títol d'esdeveniment";
-App::$strings["Event title"] = "Títol esdeveniment";
-App::$strings["Required"] = "Requerit";
-App::$strings["Categories (comma-separated list)"] = "Categories (llista separada per comes)";
-App::$strings["Edit Category"] = "Editar Categoria";
-App::$strings["Category"] = "Categoria";
-App::$strings["Edit start date and time"] = "Editar data i hora d'inici";
-App::$strings["Start date and time"] = "Data i hora d'inici";
-App::$strings["Finish date and time are not known or not relevant"] = "L'ora de finalització no es coneix o es irrelevant.";
-App::$strings["Edit finish date and time"] = "Editar la data i hora de finalització";
-App::$strings["Finish date and time"] = "Data i hora de finalització";
-App::$strings["Adjust for viewer timezone"] = "Ajusta a la zona horària del visitant.";
-App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "És important per esdeveniments locals, però pels globals no és pràctic.";
-App::$strings["Edit Description"] = "Editar la Descripció";
-App::$strings["Description"] = "Descripció";
-App::$strings["Edit Location"] = "Editar la localització";
-App::$strings["Location"] = "Localització";
-App::$strings["Share this event"] = "Comparteix aquest esdeveniment";
-App::$strings["Preview"] = "Avanç";
-App::$strings["Permission settings"] = "Ajustos de permisos";
-App::$strings["Advanced Options"] = "Opcions Avançades";
-App::$strings["Edit event"] = "Edita l'esdeveniment";
-App::$strings["Delete event"] = "Esborra l'esdeveniment";
-App::$strings["calendar"] = "calendari";
-App::$strings["Event removed"] = "S'ha eliminat l'esdeveniment";
-App::$strings["Failed to remove event"] = "No s'ha pogut esborrar l'esdeveniment";
-App::$strings["Photos"] = "Fotos";
-App::$strings["Cancel"] = "Cancel·la";
+App::$strings["webpage"] = "pàgina web";
+App::$strings["block"] = "bloc";
+App::$strings["layout"] = "disposició";
+App::$strings["menu"] = "menú";
+App::$strings["%s element installed"] = "%s element instal·lat";
+App::$strings["%s element installation failed"] = "%s instal·lació d'element va fallar";
+App::$strings["Permissions denied."] = "Permís denegat.";
+App::$strings["Import"] = "Importar";
App::$strings["This site is not a directory server"] = "Aquest lloc web no és un servidor de directori";
App::$strings["This directory server requires an access token"] = "Aquest servidor de directori requereix un token de accès";
-App::$strings["Save to Folder:"] = "Guardar en la Carpeta";
-App::$strings["- select -"] = "- selecciona -";
-App::$strings["Save"] = "Guardar";
+App::$strings["You must be logged in to see this page."] = "Has d'estar identificat per a veure aquesta pàgina.";
+App::$strings["Room not found"] = "No s'ha trobat la sala";
+App::$strings["Leave Room"] = "Abandona la sala";
+App::$strings["Delete Room"] = "Esborra Sala";
+App::$strings["I am away right now"] = "Absent";
+App::$strings["I am online"] = "Estic connectat/da";
+App::$strings["Bookmark this room"] = "Fes favorit aquest xat";
+App::$strings["Please enter a link URL:"] = "Si us plau entra l'enllaç URL:";
+App::$strings["Encrypt text"] = "Text encriptat";
+App::$strings["Insert web link"] = "Insereix enllaç web";
+App::$strings["Feature disabled."] = "Funcionalitat desactivada.";
+App::$strings["New Chatroom"] = "Nova sala per a Xerrar";
+App::$strings["Chatroom name"] = "Nom de la sala de xat";
+App::$strings["Expiration of chats (minutes)"] = "Expiració dels chats (minuts)";
+App::$strings["Permissions"] = "Permisos ";
+App::$strings["%1\$s's Chatrooms"] = "%1\$s de Xats";
+App::$strings["No chatrooms available"] = "No hi ha sales de xat disponibles";
+App::$strings["Create New"] = "Crear Nou";
+App::$strings["Expiration"] = "Expiració";
+App::$strings["min"] = "min";
App::$strings["Invalid message"] = "Missatge invàlid.";
App::$strings["no results"] = "sense resultats";
-App::$strings["Delivery report for %1\$s"] = "Informe de lliurament per %1\$s";
App::$strings["channel sync processed"] = "sincronització del canal processada";
App::$strings["queued"] = "Posat en cua";
App::$strings["posted"] = "enviat";
@@ -310,14 +360,14 @@ App::$strings["recipient not found"] = "Contenidor no trobat";
App::$strings["mail recalled"] = "Recupera el correu";
App::$strings["duplicate mail received"] = "rebut correu duplicat";
App::$strings["mail delivered"] = "correu entregat";
+App::$strings["Delivery report for %1\$s"] = "Informe de lliurament per %1\$s";
+App::$strings["Options"] = "";
+App::$strings["Redeliver"] = "";
App::$strings["Layout Name"] = "Nom del Format Gràfic";
App::$strings["Layout Description (Optional)"] = "Descripció del Format (Opcional)";
App::$strings["Edit Layout"] = "Edita Format Gràfic";
App::$strings["Page link"] = "Enllaç de la pàgina";
App::$strings["Edit Webpage"] = "Edita la Pàgina Web";
-App::$strings["Channel added."] = "S'ha afegit el canal.";
-App::$strings["network"] = "xarxa";
-App::$strings["RSS"] = "RSS";
App::$strings["Privacy group created."] = "Creat grup privat.";
App::$strings["Could not create privacy group."] = "No es pot crear el grup privat.";
App::$strings["Privacy group not found."] = "No es troben grups privats.";
@@ -331,16 +381,33 @@ App::$strings["Privacy group editor"] = "Editor del grup privat";
App::$strings["Members"] = "Membres";
App::$strings["All Connected Channels"] = "Tots els Canals Connectats";
App::$strings["Click on a channel to add or remove."] = "Clic sobre el canal per afegir o esborrar.";
-App::$strings["Share content from Firefox to \$Projectname"] = "Compartir contingut des de Firefox a \$Projectname";
-App::$strings["Activate the Firefox \$Projectname provider"] = "Activar el proveïdor de \$Projectname a Firefox";
-App::$strings["Authorize application connection"] = "Autoritza la connexió de l'aplicació";
-App::$strings["Return to your app and insert this Securty Code:"] = "Torna a la teva aplicació i insereix aquest Codi de Seguretat:";
-App::$strings["Please login to continue."] = "Si et plau, identifica't per continuar.";
-App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vols autoritzar a aquesta aplicació l'accés a les teves entrades i contactes i/o a crear noves entrades com si fos tu mateix.";
+App::$strings["App installed."] = "Aplicació instal·lada.";
+App::$strings["Malformed app."] = "Aplicació amb errors";
+App::$strings["Embed code"] = "Codi embegut";
+App::$strings["Edit App"] = "Edita l'Aplicació";
+App::$strings["Create App"] = "Crea l'Aplicació";
+App::$strings["Name of app"] = "Nom de l'Aplicació";
+App::$strings["Location (URL) of app"] = "Ubicació (URL) de l'aplicació";
+App::$strings["Photo icon URL"] = "Foto icona URL";
+App::$strings["80 x 80 pixels - optional"] = "80 x 80 pixels - opcional";
+App::$strings["Categories (optional, comma separated list)"] = "Categories (opcional, lista separada per comes)";
+App::$strings["Version ID"] = "Versió ID";
+App::$strings["Price of app"] = "Preu de l'aplicació";
+App::$strings["Location (URL) to purchase app"] = "Ubicació (URL) per comprar l'aplicació";
App::$strings["Documentation Search"] = "Cerca de Documentació";
App::$strings["Help:"] = "Ajuda:";
App::$strings["Help"] = "Ajuda";
App::$strings["\$Projectname Documentation"] = "\$Projectname Documentació";
+App::$strings["Item not available."] = "Article no disponible.";
+App::$strings["Layout updated."] = "S'ha actualitzat la disposició.";
+App::$strings["Edit System Page Description"] = "Editor del Sistema de Descripció de Pàgines";
+App::$strings["Layout not found."] = "No s'ha trobat cap disposició de pàgina.";
+App::$strings["Module Name:"] = "Nom del mòdul:";
+App::$strings["Layout Help"] = "Ajuda per la disposició de pàgina";
+App::$strings["Share content from Firefox to \$Projectname"] = "Compartir contingut des de Firefox a \$Projectname";
+App::$strings["Activate the Firefox \$Projectname provider"] = "Activar el proveïdor de \$Projectname a Firefox";
+App::$strings["network"] = "xarxa";
+App::$strings["RSS"] = "RSS";
App::$strings["Permission Denied."] = "Permisos Denegats.";
App::$strings["File not found."] = "Arxiu no torbat.";
App::$strings["Edit file permissions"] = "Edita els permisos d'arxiu";
@@ -352,8 +419,100 @@ App::$strings["Copy/paste this URL to link file from a web page"] = "Copia/engan
App::$strings["Share this file"] = "Comparteix l'arxiu";
App::$strings["Show URL to this file"] = "Mostra la URL d'aquest arxiu";
App::$strings["Notify your contacts about this file"] = "Notifica als teus contactes aquest arxiu";
-App::$strings["Apps"] = "Aplicatius";
-App::$strings["Item not available."] = "Article no disponible.";
+App::$strings["Layouts"] = "Format Gràfic";
+App::$strings["Comanche page description language help"] = "Pgina d'ajuda del llenguatge Comanche";
+App::$strings["Layout Description"] = "Descripció del Disseny de la Pàgina";
+App::$strings["Created"] = "Creat";
+App::$strings["Edited"] = "Editat";
+App::$strings["Share"] = "Compartir";
+App::$strings["Download PDL file"] = "Descarrega l'arxiu PDL";
+App::$strings["Like/Dislike"] = "M'agrada / No m'agrada";
+App::$strings["This action is restricted to members."] = "Aquesta acció està restringida als membres.";
+App::$strings["Please <a href=\"rmagic\">login with your \$Projectname ID</a> or <a href=\"register\">register as a new \$Projectname member</a> to continue."] = "<a href=\"rmagic\">Entra amb la teva identitat \$Projectname</a> o <a href=\"register\">registra't a \$Projectname</a> per continuar.";
+App::$strings["Invalid request."] = "Sol·licitud invàlida.";
+App::$strings["channel"] = "canal";
+App::$strings["thing"] = "cosa";
+App::$strings["Channel unavailable."] = "El canal està inactiu.";
+App::$strings["Previous action reversed."] = "S'ha desfet l'acció anterior.";
+App::$strings["photo"] = "foto";
+App::$strings["status"] = "estat";
+App::$strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s agrada %2\$s de %3\$s";
+App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s no agrada %2\$s de %3\$s";
+App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s està d'acord amb %3\$s de %2\$s";
+App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s no està d'acord amb %3\$s de %2\$s";
+App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s s'abstén en %3\$s de %2\$s";
+App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s assistirà a %3\$s de %2\$s";
+App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s no assistirà a %3\$s de %2\$s";
+App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s potser assistirà a %3\$s de %2\$s";
+App::$strings["Action completed."] = "S'ha completat l'acció.";
+App::$strings["Thank you."] = "Gràcies.";
+App::$strings["Profile not found."] = "Perfil no trobat.";
+App::$strings["Profile deleted."] = "Perfil eliminat.";
+App::$strings["Profile-"] = "Perfil-";
+App::$strings["New profile created."] = "Nou perfil creat.";
+App::$strings["Profile unavailable to clone."] = "Perfil que no es pot clonar.";
+App::$strings["Profile unavailable to export."] = "Perfil que no es pot exportar.";
+App::$strings["Profile Name is required."] = "Es requereix el Nom del Perfil.";
+App::$strings["Marital Status"] = "Estat Marital";
+App::$strings["Romantic Partner"] = "Company/a Romàntic";
+App::$strings["Likes"] = "Agrada";
+App::$strings["Dislikes"] = "Desagrada";
+App::$strings["Work/Employment"] = "Treball/Feina";
+App::$strings["Religion"] = "Religió";
+App::$strings["Political Views"] = "Idees Polítiques";
+App::$strings["Sexual Preference"] = "Preferència Sexual";
+App::$strings["Homepage"] = "Pàgina Personal";
+App::$strings["Interests"] = "Interessos";
+App::$strings["Address"] = "Adreça";
+App::$strings["Profile updated."] = "Perfil actualitzat.";
+App::$strings["Hide your connections list from viewers of this profile"] = "Amaga dels curiosos la teva llista de connexions d'aquest perfil";
+App::$strings["Edit Profile Details"] = "Edita els Detalls del Perfil";
+App::$strings["View this profile"] = "Veure aquest perfil";
+App::$strings["Edit visibility"] = "Editar visibilitat";
+App::$strings["Profile Tools"] = "Eines per Perfils";
+App::$strings["Change cover photo"] = "Canviar la foto de portada";
+App::$strings["Change profile photo"] = "Canviar la foto del perfil";
+App::$strings["Create a new profile using these settings"] = "Crea un perfil nou amb aquests ajustos";
+App::$strings["Clone this profile"] = "Clonar aquest perfil";
+App::$strings["Delete this profile"] = "Elimina aquest perfil";
+App::$strings["Add profile things"] = "Afegeix coses al perfil";
+App::$strings["Personal"] = "Personal";
+App::$strings["Relation"] = "Relació";
+App::$strings["Miscellaneous"] = "Miscelania";
+App::$strings["Import profile from file"] = "Importa perfil des d'un arxiu";
+App::$strings["Export profile to file"] = "Exporta perfil a un arxiu";
+App::$strings["Your gender"] = "El teu gènere";
+App::$strings["Marital status"] = "Estat marital";
+App::$strings["Sexual preference"] = "Preferència sexual";
+App::$strings["Profile name"] = "Nom del perfil";
+App::$strings["This is your default profile."] = "Aquest es el teu perfil per defecte";
+App::$strings["Your full name"] = "El teu nom complet";
+App::$strings["Title/Description"] = "Títol/Descripció";
+App::$strings["Street address"] = "Carrer";
+App::$strings["Locality/City"] = "Població/Ciutat";
+App::$strings["Region/State"] = "Regió/Estat";
+App::$strings["Postal/Zip code"] = "Codi Postal";
+App::$strings["Country"] = "País";
+App::$strings["Who (if applicable)"] = "Qui (si es aplicable)";
+App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Examples: cathy123, Cathy Williams, cathy@example.com";
+App::$strings["Since (date)"] = "Des de (data)";
+App::$strings["Tell us about yourself"] = "Quelcom sobre tu";
+App::$strings["Hometown"] = "Ciutat Natal";
+App::$strings["Political views"] = "Idees polítiques";
+App::$strings["Religious views"] = "Creences religioses";
+App::$strings["Keywords used in directory listings"] = "Paraules clau emprades en els llistats de directoris";
+App::$strings["Example: fishing photography software"] = "Exemple: software de fotografia submarina";
+App::$strings["Musical interests"] = "Interessos Musicals";
+App::$strings["Books, literature"] = "Llibres, literatura";
+App::$strings["Television"] = "Televisió";
+App::$strings["Film/Dance/Culture/Entertainment"] = "Pel·lícules/Dansa/Cultura/Entreteniment";
+App::$strings["Hobbies/Interests"] = "Aficions/Interessos";
+App::$strings["Love/Romance"] = "Amor/Romace";
+App::$strings["School/Education"] = "Escola/Educació";
+App::$strings["Contact information and social networks"] = "Informació de contacte i xarxes socials";
+App::$strings["My other channels"] = "Els meus altres canals";
+App::$strings["Profile Image"] = "Imatge del Perfil";
+App::$strings["Edit Profiles"] = "Editar Perfils";
App::$strings["Your service plan only allows %d channels."] = "El teu paquet de serveis només admet %d canals.";
App::$strings["Nothing to import."] = "No hi ha res a importar.";
App::$strings["Unable to download data from old server"] = "No s'han pogut descarregar les dades del servidor antic";
@@ -374,6 +533,8 @@ App::$strings["For either option, please choose whether to make this hub your ne
App::$strings["Make this hub my primary location"] = "Fes d'aquest node la meva ubicació primària";
App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importa les entrades existents si es possible (experimental - limitat per la memòria disponible";
App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Aquest procès pot trigar minuts en completar. Si et plau envia el formulari només una vegada i manté aquesta pàgina oberta fins que finalitzi.";
+App::$strings["\$Projectname"] = "\$Projectname";
+App::$strings["Welcome to %s"] = "Benvingut a %s";
App::$strings["Unable to locate original post."] = "No s'ha pogut trobar l'entrada original.";
App::$strings["Empty post discarded."] = "S'ha descartat l'entrada perquè no té contingut.";
App::$strings["Executable content type not permitted to this channel."] = "No està permès el contingut de tipus executable en aquest canal.";
@@ -382,60 +543,76 @@ App::$strings["System error. Post not saved."] = "Hi ha hagut un error del siste
App::$strings["Unable to obtain post information from database."] = "No s'ha pogut obtenir informació de l'entrada a la base de dades.";
App::$strings["You have reached your limit of %1$.0f top level posts."] = "Has assolit el teu límit de %1$.0f entrades (descomptant comentaris).";
App::$strings["You have reached your limit of %1$.0f webpages."] = "Has assolit el teu limit de %1$.0f pàgines web.";
-App::$strings["Layouts"] = "Format Gràfic";
-App::$strings["Comanche page description language help"] = "Pgina d'ajuda del llenguatge Comanche";
-App::$strings["Layout Description"] = "Descripció del Disseny de la Pàgina";
-App::$strings["Download PDL file"] = "Descarrega l'arxiu PDL";
-App::$strings["\$Projectname"] = "\$Projectname";
-App::$strings["Welcome to %s"] = "Benvingut a %s";
-App::$strings["First Name"] = "Nom";
-App::$strings["Last Name"] = "Cognoms";
-App::$strings["Nickname"] = "Àlies";
-App::$strings["Full Name"] = "Nom Sencer";
-App::$strings["Email"] = "Correu electrónic";
-App::$strings["Profile Photo"] = "Foto del Perfil";
-App::$strings["Profile Photo 16px"] = "Foto del Perfil 16px";
-App::$strings["Profile Photo 32px"] = "Foto del Perfil 32px";
-App::$strings["Profile Photo 48px"] = "Foto del Perfil 48px";
-App::$strings["Profile Photo 64px"] = "Foto del Perfil 64px";
-App::$strings["Profile Photo 80px"] = "Foto del Perfil 80px";
-App::$strings["Profile Photo 128px"] = "Foto del Perfil 128px";
-App::$strings["Timezone"] = "Zona horària";
-App::$strings["Homepage URL"] = "URL de la pàgina d'inici";
-App::$strings["Language"] = "Idioma";
-App::$strings["Birth Year"] = "Any de Naixement";
-App::$strings["Birth Month"] = "Mes de Naixement";
-App::$strings["Birth Day"] = "Dia de Naixement";
-App::$strings["Birthdate"] = "Aniversari";
-App::$strings["Gender"] = "Gènere";
-App::$strings["Male"] = "Masculí";
-App::$strings["Female"] = "Femení";
-App::$strings["webpage"] = "pàgina web";
-App::$strings["block"] = "bloc";
-App::$strings["layout"] = "disposició";
-App::$strings["menu"] = "menú";
-App::$strings["%s element installed"] = "%s element instal·lat";
-App::$strings["%s element installation failed"] = "%s instal·lació d'element va fallar";
-App::$strings["Like/Dislike"] = "M'agrada / No m'agrada";
-App::$strings["This action is restricted to members."] = "Aquesta acció està restringida als membres.";
-App::$strings["Please <a href=\"rmagic\">login with your \$Projectname ID</a> or <a href=\"register\">register as a new \$Projectname member</a> to continue."] = "<a href=\"rmagic\">Entra amb la teva identitat \$Projectname</a> o <a href=\"register\">registra't a \$Projectname</a> per continuar.";
-App::$strings["Invalid request."] = "Sol·licitud invàlida.";
-App::$strings["channel"] = "canal";
-App::$strings["thing"] = "cosa";
-App::$strings["Channel unavailable."] = "El canal està inactiu.";
-App::$strings["Previous action reversed."] = "S'ha desfet l'acció anterior.";
-App::$strings["photo"] = "foto";
-App::$strings["status"] = "estat";
-App::$strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s agrada %2\$s de %3\$s";
-App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s no agrada %2\$s de %3\$s";
-App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s està d'acord amb %3\$s de %2\$s";
-App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s no està d'acord amb %3\$s de %2\$s";
-App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s s'abstén en %3\$s de %2\$s";
-App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s assistirà a %3\$s de %2\$s";
-App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s no assistirà a %3\$s de %2\$s";
-App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s potser assistirà a %3\$s de %2\$s";
-App::$strings["Action completed."] = "S'ha completat l'acció.";
-App::$strings["Thank you."] = "Gràcies.";
+App::$strings["Page owner information could not be retrieved."] = "La informació del propietari de la pàgina no va poder ser recuperada";
+App::$strings["Profile Photos"] = "Fotos del Perfil";
+App::$strings["Album not found."] = "Àlbum no trobat";
+App::$strings["Delete Album"] = "Esborra Àlbum";
+App::$strings["Multiple storage folders exist with this album name, but within different directories. Please remove the desired folder or folders using the Files manager"] = "Existeixen moltes carpetes de emmagatzemament amb aquest nom d'àlbum, però en diferents directoris. Si us plau esborra la carpeta o carpetes amb el gestor d'arxius.";
+App::$strings["Delete Photo"] = "Esborra Foto";
+App::$strings["No photos selected"] = "No has seleccionat fotos";
+App::$strings["Access to this item is restricted."] = "L'accés a aquest element esta restringit.";
+App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "S'estan fent servir %1$.2f MB de %2$.2f MB de l'espai per a imatges.";
+App::$strings["%1$.2f MB photo storage used."] = "S'estan fent servir %1$.2f MB de l'espai per a imatges.";
+App::$strings["Upload Photos"] = "Puja imatges";
+App::$strings["Enter an album name"] = "Escriu el nom del àlbum";
+App::$strings["or select an existing album (doubleclick)"] = "o bé fes doble clic a un d'existent";
+App::$strings["Create a status post for this upload"] = "Genera una entrada a partir de la pujada";
+App::$strings["Caption (optional):"] = "Subtítol (opcional):";
+App::$strings["Description (optional):"] = "Descripció (opcional):";
+App::$strings["Album name could not be decoded"] = "No s'ha pogut descodificar el nom de l'àlbum";
+App::$strings["Contact Photos"] = "Imatges de contactes";
+App::$strings["Show Newest First"] = "Ordena de més nou a més antic";
+App::$strings["Show Oldest First"] = "Ordena de més antic a més nou";
+App::$strings["View Photo"] = "Mostra la imatge";
+App::$strings["Edit Album"] = "Modifica l'àlbum";
+App::$strings["Permission denied. Access to this item may be restricted."] = "S'ha denegat el permís. Pot ser que l'accés estigui restringit.";
+App::$strings["Photo not available"] = "La imatge no està disponible";
+App::$strings["Use as profile photo"] = "Fes-la imatge de perfil";
+App::$strings["Use as cover photo"] = "Emprar com a foto de portada";
+App::$strings["Private Photo"] = "Imatge privada";
+App::$strings["View Full Size"] = "Mostra a mida completa";
+App::$strings["Remove"] = "Esborra";
+App::$strings["Edit photo"] = "Modifica la imatge";
+App::$strings["Rotate CW (right)"] = "Tomba cap a la dreta";
+App::$strings["Rotate CCW (left)"] = "Tomba cap a l'esquerra";
+App::$strings["Enter a new album name"] = "Escriu el nom del nou àlbum";
+App::$strings["or select an existing one (doubleclick)"] = "o bé fes doble clic a un d'existent";
+App::$strings["Caption"] = "Llegenda";
+App::$strings["Add a Tag"] = "Afegeix una etiqueta";
+App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Exemple: @joan, @Paula_Peris, @mar@exemple.org";
+App::$strings["Flag as adult in album view"] = "Marca com a contingut adult";
+App::$strings["I like this (toggle)"] = "M'agrada això (canvia)";
+App::$strings["I don't like this (toggle)"] = "No m'agrada això (canvia)";
+App::$strings["Please wait"] = "Si us plau, espera";
+App::$strings["This is you"] = "Ets tú";
+App::$strings["Comment"] = "Comentari";
+App::$strings["__ctx:title__ Likes"] = "Agrada";
+App::$strings["__ctx:title__ Dislikes"] = "Desagrada";
+App::$strings["__ctx:title__ Agree"] = "Acord";
+App::$strings["__ctx:title__ Disagree"] = "Desacord";
+App::$strings["__ctx:title__ Abstain"] = "Abstenirse";
+App::$strings["__ctx:title__ Attending"] = "Assistint";
+App::$strings["__ctx:title__ Not attending"] = "Desassistint";
+App::$strings["__ctx:title__ Might attend"] = "Podrien assistir";
+App::$strings["View all"] = "Veure tot";
+App::$strings["__ctx:noun__ Like"] = array(
+ 0 => "Agrada",
+ 1 => "Agraden",
+);
+App::$strings["__ctx:noun__ Dislike"] = array(
+ 0 => "Desagrada",
+ 1 => "Desagrada",
+);
+App::$strings["Photo Tools"] = "Eines per Fotos";
+App::$strings["In This Photo:"] = "Hi apareixen:";
+App::$strings["Map"] = "Mapa";
+App::$strings["__ctx:noun__ Likes"] = "Agrada";
+App::$strings["__ctx:noun__ Dislikes"] = "Desagrada";
+App::$strings["Close"] = "Tanca";
+App::$strings["View Album"] = "Mostra'n l'àlbum";
+App::$strings["Recent Photos"] = "Imatges recents";
+App::$strings["Remote privacy information not available."] = "informació privada remota no disponible.";
+App::$strings["Visible to:"] = "Visible per:";
App::$strings["Import completed"] = "S'ha completat la importació";
App::$strings["Import Items"] = "Importa Articles";
App::$strings["Use this form to import existing posts and content from an export file."] = "Empra aquest formulari per importar entrades existents i contingut d'un arxiu d'exportació.";
@@ -458,15 +635,12 @@ App::$strings["1. Register at any \$Projectname location (they are all inter-con
App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Escriu la meva adreça de xarxa al \$Projectname, a la barra de cerca del lloc.";
App::$strings["or visit"] = "o visitar";
App::$strings["3. Click [Connect]"] = "3. Clicar [Conectar]";
-App::$strings["Remote privacy information not available."] = "informació privada remota no disponible.";
-App::$strings["Visible to:"] = "Visible per:";
App::$strings["Location not found."] = "Situació que no es troba.";
App::$strings["Location lookup failed."] = "Ha fallat la cerca d'ubicació.";
App::$strings["Please select another location to become primary before removing the primary location."] = "Seleccioneu una altra ubicació per esdevenir primària abans de retirar la ubicació principal.";
App::$strings["Syncing locations"] = "Sincronitza ubicacions";
App::$strings["No locations found."] = "No es troben els llocs.";
App::$strings["Manage Channel Locations"] = "Gestionar Ubicacions de Canal";
-App::$strings["Address"] = "Adreça";
App::$strings["Primary"] = "Primari";
App::$strings["Drop"] = "Menysprea";
App::$strings["Sync Now"] = "Sincronitza Ara";
@@ -507,22 +681,6 @@ App::$strings["Make Default"] = "Estableix com a Predeterminat";
App::$strings["%d new messages"] = "%d missatges nous";
App::$strings["%d new introductions"] = "%d noves presentacions";
App::$strings["Delegated Channel"] = "Canal Delegat";
-App::$strings["No valid account found."] = "No es troba un compte vàlid.";
-App::$strings["Password reset request issued. Check your email."] = "Sol·licitud de restabliment de contrasenya emesa. Consulta el teu correu electrònic.";
-App::$strings["Site Member (%s)"] = "Lloc d'Usuari (%s)";
-App::$strings["Password reset requested at %s"] = "S'ha soŀlicitat restablir la contrasenya al hub %s";
-App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Ha fallat el restabliment de contrasenya perquè la no s'ha pogut verificar soŀlicitud. Pot ser que ja ho hàgiu soŀlicitat abans.";
-App::$strings["Password Reset"] = "Restabliment de contrasenya";
-App::$strings["Your password has been reset as requested."] = "S'ha restablert la vostra contrasenya.";
-App::$strings["Your new password is"] = "La nova contrasenya és";
-App::$strings["Save or copy your new password - and then"] = "Desa o copia la nova contrasenya, i després";
-App::$strings["click here to login"] = "fes clic aquí per iniciar sessió";
-App::$strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Pots canviar la contrasenya a la pàgina <em>Paràmetres</em>, un cop iniciada la sessió.";
-App::$strings["Your password has changed at %s"] = "La teva contrasenya a %s ha canviat";
-App::$strings["Forgot your Password?"] = "No recordes la contrasenya?";
-App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Escriu la teva adreça de correu electrònic i envia per restablir la contrasenya. Després revisa el seu correu electrònic per obtenir més instruccions.";
-App::$strings["Email Address"] = "Adreça electrònica";
-App::$strings["Reset"] = "Reajustar";
App::$strings["Unable to update menu."] = "No s'ha pogut actualitzar el menú.";
App::$strings["Unable to create menu."] = "No s'ha pogut crear el menú.";
App::$strings["Menu Name"] = "Nom del menú";
@@ -547,13 +705,25 @@ App::$strings["Menu title"] = "Títol del menú";
App::$strings["Menu title as seen by others"] = "Títol del menú vist pels altres";
App::$strings["Allow bookmarks"] = "Marcadors permesos";
App::$strings["Not found."] = "No trobat.";
+App::$strings["No valid account found."] = "No es troba un compte vàlid.";
+App::$strings["Password reset request issued. Check your email."] = "Sol·licitud de restabliment de contrasenya emesa. Consulta el teu correu electrònic.";
+App::$strings["Site Member (%s)"] = "Lloc d'Usuari (%s)";
+App::$strings["Password reset requested at %s"] = "S'ha soŀlicitat restablir la contrasenya al hub %s";
+App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Ha fallat el restabliment de contrasenya perquè la no s'ha pogut verificar soŀlicitud. Pot ser que ja ho hàgiu soŀlicitat abans.";
+App::$strings["Password Reset"] = "Restabliment de contrasenya";
+App::$strings["Your password has been reset as requested."] = "S'ha restablert la vostra contrasenya.";
+App::$strings["Your new password is"] = "La nova contrasenya és";
+App::$strings["Save or copy your new password - and then"] = "Desa o copia la nova contrasenya, i després";
+App::$strings["click here to login"] = "fes clic aquí per iniciar sessió";
+App::$strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Pots canviar la contrasenya a la pàgina <em>Paràmetres</em>, un cop iniciada la sessió.";
+App::$strings["Your password has changed at %s"] = "La teva contrasenya a %s ha canviat";
+App::$strings["Forgot your Password?"] = "No recordes la contrasenya?";
+App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Escriu la teva adreça de correu electrònic i envia per restablir la contrasenya. Després revisa el seu correu electrònic per obtenir més instruccions.";
+App::$strings["Email Address"] = "Adreça electrònica";
+App::$strings["Reset"] = "Reajustar";
App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s es %2\$s";
App::$strings["Mood"] = "Ànim";
App::$strings["Set your current mood and tell your friends"] = "Estableix el teu estat d'ànim actual i digues-li als teus amics";
-App::$strings["Profile Match"] = "Perfils compatibles";
-App::$strings["No keywords to match. Please add keywords to your default profile."] = "No tens paraules clau al perfil principal per poder cercar perfils semblants.";
-App::$strings["is interested in:"] = "té interès en:";
-App::$strings["No matches"] = "No s'han trobat perfils compatibles";
App::$strings["No such group"] = "No existeix el grup";
App::$strings["No such channel"] = "No existeix el canal";
App::$strings["forum"] = "fòrum";
@@ -563,6 +733,13 @@ App::$strings["Privacy group: "] = "Grup privat:";
App::$strings["Invalid connection."] = "La connexió és invàlida.";
App::$strings["No more system notifications."] = "No hi ha més notificacions del sistema.";
App::$strings["System Notifications"] = "Notificacions del sistema";
+App::$strings["Profile Match"] = "Perfils compatibles";
+App::$strings["No keywords to match. Please add keywords to your default profile."] = "No tens paraules clau al perfil principal per poder cercar perfils semblants.";
+App::$strings["is interested in:"] = "té interès en:";
+App::$strings["No matches"] = "No s'han trobat perfils compatibles";
+App::$strings["Posts and comments"] = "Entrades i comentaris";
+App::$strings["Only posts"] = "Només entrades";
+App::$strings["Insufficient permissions. Request redirected to profile page."] = "Permisos insuficients. Petició redirigida a la pàgina del perfil.";
App::$strings["Unable to create element."] = "Incapaç de crear l'element.";
App::$strings["Unable to update menu element."] = "Incapaç d'actualitzar un element del menú.";
App::$strings["Unable to add menu element."] = "Incapaç d'afegir l'element del menú.";
@@ -592,203 +769,6 @@ App::$strings["Menu item deleted."] = "Article del menú eliminat.";
App::$strings["Menu item could not be deleted."] = "Article del menú no es pot eliminar.";
App::$strings["Edit Menu Element"] = "Editar Element del Menú";
App::$strings["Link text"] = "Enllaç de text";
-App::$strings["Name or caption"] = "Nom o llegenda";
-App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Exemples: \"Pep Gomila\", \"Manel i els seus Cavalls\", \"Fútbol\", \"Grup d'Aviadors\"";
-App::$strings["Choose a short nickname"] = "Tria un àlies curt";
-App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "El teu àlies serà emprat per crear un nom fàcil per recordar l'adreça del canal p.e. àlies%s";
-App::$strings["Channel role and privacy"] = "Funció i privacitat del canal";
-App::$strings["Select a channel role with your privacy requirements."] = "Tria una funció pel canal amb els teus requisits de privacitat.";
-App::$strings["Read more about roles"] = "Llegix més sobre els rols";
-App::$strings["Create Channel"] = "Crea un Canal";
-App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "Un canal es la tva identitat en aquesta xarxa. Pot representar una persona, un bloc, o un fòrum per anomenar alguns. Els canals poden connectar-se amb altres canals per compartir informació amb permisos molt detallats.";
-App::$strings["or <a href=\"import\">import an existing channel</a> from another location."] = "o <a href=\"import\">importa un canal existent</a> des d'un altre ubicació.";
-App::$strings["Invalid request identifier."] = "Sol·licitud d'identificació invàlida.";
-App::$strings["Discard"] = "Descarta";
-App::$strings["Mark all system notifications seen"] = "Marca totes les notificacions vistes";
-App::$strings["Page owner information could not be retrieved."] = "La informació del propietari de la pàgina no va poder ser recuperada";
-App::$strings["Profile Photos"] = "Fotos del Perfil";
-App::$strings["Album not found."] = "Àlbum no trobat";
-App::$strings["Delete Album"] = "Esborra Àlbum";
-App::$strings["Multiple storage folders exist with this album name, but within different directories. Please remove the desired folder or folders using the Files manager"] = "Existeixen moltes carpetes de emmagatzemament amb aquest nom d'àlbum, però en diferents directoris. Si us plau esborra la carpeta o carpetes amb el gestor d'arxius.";
-App::$strings["Delete Photo"] = "Esborra Foto";
-App::$strings["No photos selected"] = "No has seleccionat fotos";
-App::$strings["Access to this item is restricted."] = "L'accés a aquest element esta restringit.";
-App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "S'estan fent servir %1$.2f MB de %2$.2f MB de l'espai per a imatges.";
-App::$strings["%1$.2f MB photo storage used."] = "S'estan fent servir %1$.2f MB de l'espai per a imatges.";
-App::$strings["Upload Photos"] = "Puja imatges";
-App::$strings["Enter an album name"] = "Escriu el nom del àlbum";
-App::$strings["or select an existing album (doubleclick)"] = "o bé fes doble clic a un d'existent";
-App::$strings["Create a status post for this upload"] = "Genera una entrada a partir de la pujada";
-App::$strings["Caption (optional):"] = "Subtítol (opcional):";
-App::$strings["Description (optional):"] = "Descripció (opcional):";
-App::$strings["Album name could not be decoded"] = "No s'ha pogut descodificar el nom de l'àlbum";
-App::$strings["Contact Photos"] = "Imatges de contactes";
-App::$strings["Show Newest First"] = "Ordena de més nou a més antic";
-App::$strings["Show Oldest First"] = "Ordena de més antic a més nou";
-App::$strings["View Photo"] = "Mostra la imatge";
-App::$strings["Edit Album"] = "Modifica l'àlbum";
-App::$strings["Permission denied. Access to this item may be restricted."] = "S'ha denegat el permís. Pot ser que l'accés estigui restringit.";
-App::$strings["Photo not available"] = "La imatge no està disponible";
-App::$strings["Use as profile photo"] = "Fes-la imatge de perfil";
-App::$strings["Use as cover photo"] = "Emprar com a foto de portada";
-App::$strings["Private Photo"] = "Imatge privada";
-App::$strings["View Full Size"] = "Mostra a mida completa";
-App::$strings["Remove"] = "Esborra";
-App::$strings["Edit photo"] = "Modifica la imatge";
-App::$strings["Rotate CW (right)"] = "Tomba cap a la dreta";
-App::$strings["Rotate CCW (left)"] = "Tomba cap a l'esquerra";
-App::$strings["Enter a new album name"] = "Escriu el nom del nou àlbum";
-App::$strings["or select an existing one (doubleclick)"] = "o bé fes doble clic a un d'existent";
-App::$strings["Caption"] = "Llegenda";
-App::$strings["Add a Tag"] = "Afegeix una etiqueta";
-App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Exemple: @joan, @Paula_Peris, @mar@exemple.org";
-App::$strings["Flag as adult in album view"] = "Marca com a contingut adult";
-App::$strings["I like this (toggle)"] = "M'agrada això (canvia)";
-App::$strings["I don't like this (toggle)"] = "No m'agrada això (canvia)";
-App::$strings["Please wait"] = "Si us plau, espera";
-App::$strings["This is you"] = "Ets tú";
-App::$strings["Comment"] = "Comentari";
-App::$strings["__ctx:title__ Likes"] = "Agrada";
-App::$strings["__ctx:title__ Dislikes"] = "Desagrada";
-App::$strings["__ctx:title__ Agree"] = "Acord";
-App::$strings["__ctx:title__ Disagree"] = "Desacord";
-App::$strings["__ctx:title__ Abstain"] = "Abstenirse";
-App::$strings["__ctx:title__ Attending"] = "Assistint";
-App::$strings["__ctx:title__ Not attending"] = "Desassistint";
-App::$strings["__ctx:title__ Might attend"] = "Podrien assistir";
-App::$strings["View all"] = "Veure tot";
-App::$strings["__ctx:noun__ Like"] = array(
- 0 => "Agrada",
- 1 => "Agraden",
-);
-App::$strings["__ctx:noun__ Dislike"] = array(
- 0 => "Desagrada",
- 1 => "Desagrada",
-);
-App::$strings["Photo Tools"] = "Eines per Fotos";
-App::$strings["In This Photo:"] = "Hi apareixen:";
-App::$strings["Map"] = "Mapa";
-App::$strings["__ctx:noun__ Likes"] = "Agrada";
-App::$strings["__ctx:noun__ Dislikes"] = "Desagrada";
-App::$strings["Close"] = "Tanca";
-App::$strings["View Album"] = "Mostra'n l'àlbum";
-App::$strings["Recent Photos"] = "Imatges recents";
-App::$strings["sent you a private message"] = "Se t'ha enviat un missatge privat";
-App::$strings["added your channel"] = "el teu canal s'ha afegit";
-App::$strings["g A l F d"] = "g A l F d";
-App::$strings["[today]"] = "[avui]";
-App::$strings["posted an event"] = "enviat un esdeveniment";
-App::$strings["Unable to find your hub."] = "No es possible trobar el node";
-App::$strings["Post successful."] = "Entrada realitzada amb èxit. ";
-App::$strings["OpenID protocol error. No ID returned."] = "Error del protocol OpenID. No ha retornat ID";
-App::$strings["Login failed."] = "Identificació fallida.";
-App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.";
-App::$strings["This setting requires special processing and editing has been blocked."] = "Aquest ajust requereix un procés espedial i l'edició esta bloquejada.";
-App::$strings["Configuration Editor"] = "Editor de Configuració";
-App::$strings["Warning: Changing some settings could render your channel inoperable. Please leave this page unless you are comfortable with and knowledgeable about how to correctly use this feature."] = "atenció: Realitzar segons quins ajustos pot fer el canal inoperable. Deixa aquesta pàgina si no estas segur i tens suficients coneixements sobre l'ús correcte d'aquesta característica.";
-App::$strings["Layout updated."] = "S'ha actualitzat la disposició.";
-App::$strings["Edit System Page Description"] = "Editor del Sistema de Descripció de Pàgines";
-App::$strings["Layout not found."] = "No s'ha trobat cap disposició de pàgina.";
-App::$strings["Module Name:"] = "Nom del mòdul:";
-App::$strings["Layout Help"] = "Ajuda per la disposició de pàgina";
-App::$strings["Poke"] = "Esperonar";
-App::$strings["Poke somebody"] = "Emprenyar algú";
-App::$strings["Poke/Prod"] = "Esperonat/Picat";
-App::$strings["Poke, prod or do other things to somebody"] = "emprenyar, picar o fer altres coses a algú";
-App::$strings["Recipient"] = "Destinatari";
-App::$strings["Choose what you wish to do to recipient"] = "Tria que vols fer amb el destinatari";
-App::$strings["Make this post private"] = "Fer aquesta entrada privada";
-App::$strings["Fetching URL returns error: %1\$s"] = "URL sol·licitada retorna error: %1\$s";
-App::$strings["Profile not found."] = "Perfil no trobat.";
-App::$strings["Profile deleted."] = "Perfil eliminat.";
-App::$strings["Profile-"] = "Perfil-";
-App::$strings["New profile created."] = "Nou perfil creat.";
-App::$strings["Profile unavailable to clone."] = "Perfil que no es pot clonar.";
-App::$strings["Profile unavailable to export."] = "Perfil que no es pot exportar.";
-App::$strings["Profile Name is required."] = "Es requereix el Nom del Perfil.";
-App::$strings["Marital Status"] = "Estat Marital";
-App::$strings["Romantic Partner"] = "Company/a Romàntic";
-App::$strings["Likes"] = "Agrada";
-App::$strings["Dislikes"] = "Desagrada";
-App::$strings["Work/Employment"] = "Treball/Feina";
-App::$strings["Religion"] = "Religió";
-App::$strings["Political Views"] = "Idees Polítiques";
-App::$strings["Sexual Preference"] = "Preferència Sexual";
-App::$strings["Homepage"] = "Pàgina Personal";
-App::$strings["Interests"] = "Interessos";
-App::$strings["Profile updated."] = "Perfil actualitzat.";
-App::$strings["Hide your connections list from viewers of this profile"] = "Amaga dels curiosos la teva llista de connexions d'aquest perfil";
-App::$strings["Edit Profile Details"] = "Edita els Detalls del Perfil";
-App::$strings["View this profile"] = "Veure aquest perfil";
-App::$strings["Edit visibility"] = "Editar visibilitat";
-App::$strings["Profile Tools"] = "Eines per Perfils";
-App::$strings["Change cover photo"] = "Canviar la foto de portada";
-App::$strings["Change profile photo"] = "Canviar la foto del perfil";
-App::$strings["Create a new profile using these settings"] = "Crea un perfil nou amb aquests ajustos";
-App::$strings["Clone this profile"] = "Clonar aquest perfil";
-App::$strings["Delete this profile"] = "Elimina aquest perfil";
-App::$strings["Add profile things"] = "Afegeix coses al perfil";
-App::$strings["Personal"] = "Personal";
-App::$strings["Relation"] = "Relació";
-App::$strings["Miscellaneous"] = "Miscelania";
-App::$strings["Import profile from file"] = "Importa perfil des d'un arxiu";
-App::$strings["Export profile to file"] = "Exporta perfil a un arxiu";
-App::$strings["Your gender"] = "El teu gènere";
-App::$strings["Marital status"] = "Estat marital";
-App::$strings["Sexual preference"] = "Preferència sexual";
-App::$strings["Profile name"] = "Nom del perfil";
-App::$strings["This is your default profile."] = "Aquest es el teu perfil per defecte";
-App::$strings["Your full name"] = "El teu nom complet";
-App::$strings["Title/Description"] = "Títol/Descripció";
-App::$strings["Street address"] = "Carrer";
-App::$strings["Locality/City"] = "Població/Ciutat";
-App::$strings["Region/State"] = "Regió/Estat";
-App::$strings["Postal/Zip code"] = "Codi Postal";
-App::$strings["Country"] = "País";
-App::$strings["Who (if applicable)"] = "Qui (si es aplicable)";
-App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Examples: cathy123, Cathy Williams, cathy@example.com";
-App::$strings["Since (date)"] = "Des de (data)";
-App::$strings["Tell us about yourself"] = "Quelcom sobre tu";
-App::$strings["Hometown"] = "Ciutat Natal";
-App::$strings["Political views"] = "Idees polítiques";
-App::$strings["Religious views"] = "Creences religioses";
-App::$strings["Keywords used in directory listings"] = "Paraules clau emprades en els llistats de directoris";
-App::$strings["Example: fishing photography software"] = "Exemple: software de fotografia submarina";
-App::$strings["Musical interests"] = "Interessos Musicals";
-App::$strings["Books, literature"] = "Llibres, literatura";
-App::$strings["Television"] = "Televisió";
-App::$strings["Film/Dance/Culture/Entertainment"] = "Pel·lícules/Dansa/Cultura/Entreteniment";
-App::$strings["Hobbies/Interests"] = "Aficions/Interessos";
-App::$strings["Love/Romance"] = "Amor/Romace";
-App::$strings["School/Education"] = "Escola/Educació";
-App::$strings["Contact information and social networks"] = "Informació de contacte i xarxes socials";
-App::$strings["My other channels"] = "Els meus altres canals";
-App::$strings["Profile Image"] = "Imatge del Perfil";
-App::$strings["Edit Profiles"] = "Editar Perfils";
-App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Refresca la memòria cau del navegador si la foto no s'actualitza immediatament. Dreceres: «Ctrl+F5» i «Ctrl+Maj+R»";
-App::$strings["Upload Profile Photo"] = "Puja una Foto pel Perfil";
-App::$strings["Invalid profile identifier."] = "Identificador invàlid de perfil.";
-App::$strings["Profile Visibility Editor"] = "Perfil del Editor de Visibilitat";
-App::$strings["Profile"] = "Perfil";
-App::$strings["Click on a contact to add or remove."] = "Clica sobre el contacte per afegir o esborrar.";
-App::$strings["Visible To"] = "Visible per";
-App::$strings["Public Hubs"] = "Nodes Públics";
-App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself <strong>may</strong> provide additional details."] = "Els nodes llistats permeten registrar usuaris de la xarxa \$Projectname. Com que tots els nodes estan enllaçats entre ells, la identitat és vàlida a tota la xarxa. Alguns nodes poden demanar subscripció o oferir serveis addicional de pagament. Per a més detalls, <strong>proveu</strong> de seguir els enllaços dels proveïdors.";
-App::$strings["Hub URL"] = "URL del Node";
-App::$strings["Access Type"] = "Tipus d'accés";
-App::$strings["Registration Policy"] = "Condicions de registre";
-App::$strings["Stats"] = "Estadístiques";
-App::$strings["Software"] = "Programari";
-App::$strings["Ratings"] = "Valoracions";
-App::$strings["Rate"] = "Puntua";
-App::$strings["Website:"] = "Lloc web:";
-App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Canal Remot [%s] (encara no es coneix en aquest lloc)";
-App::$strings["Rating (this information is public)"] = "Valoració (aquesta informació és pública)";
-App::$strings["Optionally explain your rating (this information is public)"] = "Opcionalment pots explicar la teva qualificació (aquesta informació és pública)";
-App::$strings["No ratings"] = "No valorat";
-App::$strings["Rating: "] = "Valoració:";
-App::$strings["Website: "] = "Lloc web:";
-App::$strings["Description: "] = "Descripció:";
App::$strings["Theme settings updated."] = "Ajustos de tema actualitzats.";
App::$strings["# Accounts"] = "# Comptes";
App::$strings["# blocked accounts"] = "# comptes bloquejats";
@@ -802,7 +782,7 @@ App::$strings["Your software should be updated"] = "El teu programari cal que s'
App::$strings["Administration"] = "Administració";
App::$strings["Summary"] = "Sumari";
App::$strings["Registered accounts"] = "Comptes registrades";
-App::$strings["Pending registrations"] = "Comptes pendents de registre";
+App::$strings["Pending registrations"] = "Comptes pendents d'inscripció";
App::$strings["Registered channels"] = "Canals registrats";
App::$strings["Active plugins"] = "Plugins actius";
App::$strings["Version"] = "Versió";
@@ -819,7 +799,7 @@ App::$strings["My site has paid access only"] = "El meu lloc te accès per pagam
App::$strings["My site has free access only"] = "El meu lloc te lliure accés";
App::$strings["My site offers free accounts with optional paid upgrades"] = "El meu lloc te comptes gratis amb opció de millores per pagament";
App::$strings["Site"] = "Lloc";
-App::$strings["Registration"] = "Registre";
+App::$strings["Registration"] = "Inscripcions";
App::$strings["File upload"] = "Pujar arxiu";
App::$strings["Policies"] = "Polítiques";
App::$strings["Advanced"] = "Avançat";
@@ -836,12 +816,12 @@ App::$strings["Allow Feeds as Connections"] = "Permetre Retroalimentadors com Co
App::$strings["(Heavy system resource usage)"] = "(Demana molts recursos del sistema)";
App::$strings["Maximum image size"] = "Mida màxima d'imatge";
App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Mida màxima en bytes d'imatges pujades. Per defecte es 0, el que vol dir sense límits.";
-App::$strings["Does this site allow new member registration?"] = "Permet aquest lloc registre de nous membres?";
+App::$strings["Does this site allow new member registration?"] = "Permet aquest lloc l'inscripció de nous membres?";
App::$strings["Invitation only"] = "Només per invitació";
-App::$strings["Only allow new member registrations with an invitation code. Above register policy must be set to Yes."] = "Només permet registre de nos membres amb codi d'invitació. A més la política de registre s'ha d'establir a Sí.";
+App::$strings["Only allow new member registrations with an invitation code. Above register policy must be set to Yes."] = "Només permet inscriure nous membres amb codi d'invitació. A més la política de registre s'ha d'establir a Sí.";
App::$strings["Which best describes the types of account offered by this hub?"] = "Que es es que millor descriu la mena de comptes oferits per aquest concentrador?";
-App::$strings["Register text"] = "text de registre";
-App::$strings["Will be displayed prominently on the registration page."] = "Es mostrarà preminentment a la pàgina de registre";
+App::$strings["Register text"] = "Text d'inscripció";
+App::$strings["Will be displayed prominently on the registration page."] = "Es mostrarà preminentment a la pàgina d'inscripció";
App::$strings["Site homepage to show visitors (default: login box)"] = "Pàgina d'inici a mostrar als visitants (per defecte: la pàgina d'identificació)";
App::$strings["example: 'public' to show public stream, 'page/sys/home' to show a system webpage called 'home' or 'include:home.html' to include a file."] = "exemple: 'públic' per a mostrar un flux públic, 'page/sys/home' per a mostrar una pàgina web dita 'home' o 'include:home.html' per a incloure un arxiu.";
App::$strings["Preserve site homepage URL"] = "Preservar URL de la pàgina web";
@@ -938,12 +918,12 @@ App::$strings["Account '%s' blocked"] = "S'ha bloquejat el compte '%s'";
App::$strings["Account '%s' unblocked"] = "S'ha desbloquejat el compte '%s'";
App::$strings["Accounts"] = "Comptes";
App::$strings["select all"] = "Sel·leciona-ho tot";
-App::$strings["Registrations waiting for confirm"] = "";
+App::$strings["Registrations waiting for confirm"] = "Inscripcions esperant confirmació";
App::$strings["Request date"] = "Data de la petició";
App::$strings["No registrations."] = "Sense registracions.";
App::$strings["Deny"] = "Denegat";
App::$strings["All Channels"] = "Tots els Canals";
-App::$strings["Register date"] = "Data de registre";
+App::$strings["Register date"] = "Data d'inscripció";
App::$strings["Last login"] = "Darrera identificació";
App::$strings["Expires"] = "Expira";
App::$strings["Service Class"] = "Classe de Servei";
@@ -1012,7 +992,7 @@ App::$strings["Logs"] = "Logs";
App::$strings["Clear"] = "Neteja";
App::$strings["Debugging"] = "Depurant";
App::$strings["Log file"] = "Arxiu de registre";
-App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = "";
+App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = "Ha de ser escribible pel servidor web. Relatiu al directori de nivell superior del servidor web";
App::$strings["Log level"] = "Nivell de registre";
App::$strings["New Profile Field"] = "Camp de Perfil Nou";
App::$strings["Field nickname"] = "Àlies de Camp";
@@ -1031,33 +1011,105 @@ App::$strings["(In addition to basic fields)"] = "( addicionalment als camps bà
App::$strings["All available fields"] = "Tots els camps disponibles";
App::$strings["Custom Fields"] = "Camps Personalitzats";
App::$strings["Create Custom Field"] = "Crear un Camp Personalitzat";
-App::$strings["App installed."] = "Aplicació instal·lada.";
-App::$strings["Malformed app."] = "Aplicació amb errors";
-App::$strings["Embed code"] = "Codi embegut";
-App::$strings["Edit App"] = "Edita l'Aplicació";
-App::$strings["Create App"] = "Crea l'Aplicació";
-App::$strings["Name of app"] = "Nom de l'Aplicació";
-App::$strings["Location (URL) of app"] = "Ubicació (URL) de l'aplicació";
-App::$strings["Photo icon URL"] = "Foto icona URL";
-App::$strings["80 x 80 pixels - optional"] = "80 x 80 pixels - opcional";
-App::$strings["Categories (optional, comma separated list)"] = "Categories (opcional, lista separada per comes)";
-App::$strings["Version ID"] = "Versió ID";
-App::$strings["Price of app"] = "Preu de l'aplicació";
-App::$strings["Location (URL) to purchase app"] = "Ubicació (URL) per comprar l'aplicació";
+App::$strings["Name or caption"] = "Nom o llegenda";
+App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Exemples: \"Pep Gomila\", \"Manel i els seus Cavalls\", \"Fútbol\", \"Grup d'Aviadors\"";
+App::$strings["Choose a short nickname"] = "Tria un àlies curt";
+App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "El teu àlies serà emprat per crear un nom fàcil per recordar l'adreça del canal p.e. àlies%s";
+App::$strings["Channel role and privacy"] = "Funció i privacitat del canal";
+App::$strings["Select a channel role with your privacy requirements."] = "Tria una funció pel canal amb els teus requisits de privacitat.";
+App::$strings["Read more about roles"] = "Llegix més sobre els rols";
+App::$strings["Create Channel"] = "Crea un Canal";
+App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "Un canal es la tva identitat en aquesta xarxa. Pot representar una persona, un bloc, o un fòrum per anomenar alguns. Els canals poden connectar-se amb altres canals per compartir informació amb permisos molt detallats.";
+App::$strings["or <a href=\"import\">import an existing channel</a> from another location."] = "o <a href=\"import\">importa un canal existent</a> des d'un altre ubicació.";
+App::$strings["sent you a private message"] = "Se t'ha enviat un missatge privat";
+App::$strings["added your channel"] = "el teu canal s'ha afegit";
+App::$strings["g A l F d"] = "g A l F d";
+App::$strings["[today]"] = "[avui]";
+App::$strings["posted an event"] = "enviat un esdeveniment";
+App::$strings["Invalid request identifier."] = "Sol·licitud d'identificació invàlida.";
+App::$strings["Discard"] = "Descarta";
+App::$strings["Mark all system notifications seen"] = "Marca totes les notificacions vistes";
+App::$strings["Poke"] = "Esperonar";
+App::$strings["Poke somebody"] = "Emprenyar algú";
+App::$strings["Poke/Prod"] = "Esperonat/Picat";
+App::$strings["Poke, prod or do other things to somebody"] = "emprenyar, picar o fer altres coses a algú";
+App::$strings["Recipient"] = "Destinatari";
+App::$strings["Choose what you wish to do to recipient"] = "Tria que vols fer amb el destinatari";
+App::$strings["Make this post private"] = "Fer aquesta entrada privada";
+App::$strings["Unable to find your hub."] = "No es possible trobar el node";
+App::$strings["Post successful."] = "Entrada realitzada amb èxit. ";
+App::$strings["OpenID protocol error. No ID returned."] = "Error del protocol OpenID. No ha retornat ID";
+App::$strings["Login failed."] = "Identificació fallida.";
+App::$strings["Invalid profile identifier."] = "Identificador invàlid de perfil.";
+App::$strings["Profile Visibility Editor"] = "Perfil del Editor de Visibilitat";
+App::$strings["Profile"] = "Perfil";
+App::$strings["Click on a contact to add or remove."] = "Clica sobre el contacte per afegir o esborrar.";
+App::$strings["Visible To"] = "Visible per";
+App::$strings["This setting requires special processing and editing has been blocked."] = "Aquest ajust requereix un procés espedial i l'edició esta bloquejada.";
+App::$strings["Configuration Editor"] = "Editor de Configuració";
+App::$strings["Warning: Changing some settings could render your channel inoperable. Please leave this page unless you are comfortable with and knowledgeable about how to correctly use this feature."] = "atenció: Realitzar segons quins ajustos pot fer el canal inoperable. Deixa aquesta pàgina si no estas segur i tens suficients coneixements sobre l'ús correcte d'aquesta característica.";
+App::$strings["Fetching URL returns error: %1\$s"] = "URL sol·licitada retorna error: %1\$s";
+App::$strings["Version %s"] = "Versió %s";
+App::$strings["Installed plugins/addons/apps:"] = "Plugins/addons/apps Instal·lats:";
+App::$strings["No installed plugins/addons/apps"] = "Plugins/addons/apps no instal·lats";
+App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Aquest és un node de \$Projectname, una xarxa cooperativa mundial de llocs web descentralitzats amb gran control de la privacitat.";
+App::$strings["Tag: "] = "Etiqueta:";
+App::$strings["Last background fetch: "] = "Última actualització en rerefons:";
+App::$strings["Current load average: "] = "Càrrega actual mitja:";
+App::$strings["Running at web location"] = "Correguent en el lloc web";
+App::$strings["Please visit <a href=\"http://hubzilla.org\">hubzilla.org</a> to learn more about \$Projectname."] = "Visita <a href=\"http://hubzilla.org\">hubzilla.org</a> per saber-ne més de \$Projectname.";
+App::$strings["Bug reports and issues: please visit"] = "Per informar d'errors o problemes ves a";
+App::$strings["\$projectname issues"] = "\$projectname qüestions";
+App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Per suggerències, felicitacions i altres, envia'ns un mail a «redmatrix» [arroba] librelist [punt] com";
+App::$strings["Site Administrators"] = "Administradors del lloc";
+App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Em trobat un problema durant l'inici de sessió amb el OpenID que has facilitat. verifica l'ortografia correcta de la ID.";
+App::$strings["The error message was:"] = "El missatge d'error fou:";
+App::$strings["Authentication failed."] = "Ha fallat l'autentificació.";
+App::$strings["Remote Authentication"] = "Autentificació Remota";
+App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Introdueix la teva adreça del canal (eg canal@exemple.com)";
+App::$strings["Authenticate"] = "Autentica't";
+App::$strings["Public Hubs"] = "Nodes Públics";
+App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself <strong>may</strong> provide additional details."] = "Els nodes llistats permeten registrar usuaris de la xarxa \$Projectname. Com que tots els nodes estan enllaçats entre ells, la identitat és vàlida a tota la xarxa. Alguns nodes poden demanar subscripció o oferir serveis addicional de pagament. Per a més detalls, <strong>proveu</strong> de seguir els enllaços dels proveïdors.";
+App::$strings["Hub URL"] = "URL del Node";
+App::$strings["Access Type"] = "Tipus d'accés";
+App::$strings["Registration Policy"] = "Condicions d'inscripció";
+App::$strings["Stats"] = "Estadístiques";
+App::$strings["Software"] = "Programari";
+App::$strings["Ratings"] = "Valoracions";
+App::$strings["Rate"] = "Puntua";
+App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Refresca la memòria cau del navegador si la foto no s'actualitza immediatament. Dreceres: «Ctrl+F5» i «Ctrl+Maj+R»";
+App::$strings["Upload Profile Photo"] = "Puja una Foto pel Perfil";
+App::$strings["Block Name"] = "Nom del Bloc";
+App::$strings["Blocks"] = "Bloc";
+App::$strings["Block Title"] = "Títol del bloc";
+App::$strings["Website:"] = "Lloc web:";
+App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Canal Remot [%s] (encara no es coneix en aquest lloc)";
+App::$strings["Rating (this information is public)"] = "Valoració (aquesta informació és pública)";
+App::$strings["Optionally explain your rating (this information is public)"] = "Opcionalment pots explicar la teva qualificació (aquesta informació és pública)";
+App::$strings["No ratings"] = "No valorat";
+App::$strings["Rating: "] = "Valoració:";
+App::$strings["Website: "] = "Lloc web:";
+App::$strings["Description: "] = "Descripció:";
+App::$strings["Apps"] = "Aplicatius";
+App::$strings["Title (optional)"] = "Títol (opcional)";
+App::$strings["Edit Block"] = "Editar Bloc";
+App::$strings["No channel."] = "No s'ha trobat el canal";
+App::$strings["Common connections"] = "Connexions en comú";
+App::$strings["No connections in common."] = "No hi ha connexions en comú.";
App::$strings["Select a bookmark folder"] = "Tria una carpeta d'interès";
App::$strings["Save Bookmark"] = "Guarda Favorits";
App::$strings["URL of bookmark"] = "URL de favorit";
App::$strings["Or enter new bookmark folder name"] = "O entra un nou nom de favorit";
-App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Nombre màxim de registres diaris excedit. Si us plau, provau demà.";
-App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "El registre ha fallat. Si et plau, indica que acceptes les Condicions del Servei.";
+App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Nombre màxim d'inscripcions diaris excedit. Si us plau, provau demà.";
+App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "L'inscripció ha fallat. Si et plau, indica que acceptes les Condicions del Servei.";
App::$strings["Passwords do not match."] = "Les contrasenyes no coincideixen.";
App::$strings["Registration successful. Please check your email for validation instructions."] = "Registrat amb èxit. Si et plau revisa el teu correu electrònic per a les instruccions de validació.";
-App::$strings["Your registration is pending approval by the site owner."] = "El teu registre esta pendent de validació pel propietari del lloc.";
-App::$strings["Your registration can not be processed."] = "El teu registre no ha pogut ser processat. ";
-App::$strings["Registration on this hub is disabled."] = "El registre en aquest node està deshabilitat.";
-App::$strings["Registration on this hub is by approval only."] = "El registre en aquest node es únicament per validació.";
-App::$strings["<a href=\"pubsites\">Register at another affiliated hub.</a>"] = "<a href=\"pubsites\">Registre en altre node afiliat</a>";
-App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "El lloc ha excedit el límit màxim diari de nous comptes/registres. Provau demà.";
+App::$strings["Your registration is pending approval by the site owner."] = "La teva inscripció esta pendent de validació pel propietari del lloc.";
+App::$strings["Your registration can not be processed."] = "La teva inscripció no ha pogut ser processat. ";
+App::$strings["Registration on this hub is disabled."] = "L'inscripció en aquest node està deshabilitat.";
+App::$strings["Registration on this hub is by approval only."] = "L'inscripció en aquest node es únicament per validació.";
+App::$strings["<a href=\"pubsites\">Register at another affiliated hub.</a>"] = "<a href=\"pubsites\">Inscripció en altre node afiliat</a>";
+App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "El lloc ha excedit el límit màxim diari de nous comptes/inscripció. Provau demà.";
App::$strings["Terms of Service"] = "Condicions del Servei";
App::$strings["I accept the %s for this website"] = "Accepto el %s per a aquest lloc web";
App::$strings["I am over 13 years of age and accept the %s for this website"] = "Tinc més de 13 anys i accepto les %s d'aquest lloc web";
@@ -1068,8 +1120,8 @@ App::$strings["Please enter your invitation code"] = "Si et plau, introdueix el
App::$strings["no"] = "no";
App::$strings["yes"] = "sí";
App::$strings["Membership on this site is by invitation only."] = "La pertinença en aquest lloc es per invitació exclusivament.";
-App::$strings["Register"] = "Registre";
-App::$strings["Proceed to create your first channel"] = "Comença a crear el teu primer canal";
+App::$strings["Register"] = "Inscripció";
+App::$strings["This site may require email verification after submitting this form. If you are returned to a login page, please check your email for instructions."] = "";
App::$strings["Please login."] = "Inicia Sessió.";
App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "L'esborrat de comptes no està permès fins que transcorren 48 hores des de l'últim canvi de contrasenya.";
App::$strings["Remove This Account"] = "Esborra el compte";
@@ -1086,17 +1138,23 @@ App::$strings["This channel will be completely removed from the network. "] = "A
App::$strings["Remove this channel and all its clones from the network"] = "Elimina aquest canal i els seus clons de la xarxa";
App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Per defecte, només la instancia del canal ubicat en aquest node pot esser esborrat de la xarxa";
App::$strings["Remove Channel"] = "Elimina el canal";
-App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Em trobat un problema durant l'inici de sessió amb el OpenID que has facilitat. verifica l'ortografia correcta de la ID.";
-App::$strings["The error message was:"] = "El missatge d'error fou:";
-App::$strings["Authentication failed."] = "Ha fallat l'autentificació.";
-App::$strings["Remote Authentication"] = "Autentificació Remota";
-App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Introdueix la teva adreça del canal (eg canal@exemple.com)";
-App::$strings["Authenticate"] = "Autentica't";
+App::$strings["Export Channel"] = "Exportar Canal";
+App::$strings["Export your basic channel information to a file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new server hub, but does not contain your content."] = "Exporta la informació bàsica del canal a un arxiu. Això actua com a còpia de recolzament de les teves connexions, permisos, perfil i dades bàsiques, les quals pots emprar per traslladar aquestes dades a una altre lloc/node, però no conté el contingut del canal.";
+App::$strings["Export Content"] = "Exportar el Contingut";
+App::$strings["Export your channel information and recent content to a JSON backup that can be restored or imported to another server hub. This backs up all of your connections, permissions, profile data and several months of posts. This file may be VERY large. Please be patient - it may take several minutes for this download to begin."] = "Exporta la informació del canal i tot el contingut recent a un arxiu de recolzament JSON que por ser restaurat o importat en altre lloc/node. Això còpia totes les teves connexions, permisos, perfil i dades i mesos de entrades. L'arxiu pot ser MOLT gran. Si et plau, sigues pacient ja que pot trigar uns minuts a començar a baixar.";
+App::$strings["Export your posts from a given year."] = "Exporta les teves entrades d'un any donat.";
+App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Pots també exportar les teves entrades i conversacions d'un any o un mes en particular. Ajusta la data a la barra de direccions del navegador per seleccionar altres dates. Si la exportació falla (possiblement degut al esgotament de la memòria del node servidor), si et plau, intenta de nou la selecció d'un rang de dates més limitat.";
+App::$strings["To select all posts for a given year, such as this year, visit <a href=\"%1\$s\">%2\$s</a>"] = "Per seleccionar tots els missatges per a un any determinat, com aquest any, visiteu <a href=\"%1\$s\">%2\$s</a>";
+App::$strings["To select all posts for a given month, such as January of this year, visit <a href=\"%1\$s\">%2\$s</a>"] = "Per seleccionar tots els missatges per a un mes determinat, com el de gener d'aquest any, visiteu <a href=\"%1\$s\">%2\$s</a>";
+App::$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)."] = "Aquests arxius de contingut poden ser importats o restaurats per visitar <a href=\"%1\$s\">%2\$s</a> en qualsevol lloc que conté el teu canal. Per obtenir els millors resultats si us plau, importar o restaurar aquests en ordre de data (la més antiga primer).";
App::$strings["Items tagged with: %s"] = "Elements etiquetats amb: %s";
App::$strings["Search results for: %s"] = "Resultats de cerca per: %s";
App::$strings["No service class restrictions found."] = "No s'han trobat restriccions de clase.";
App::$strings["Name is required"] = "Es requereix un Nom";
App::$strings["Key and Secret are required"] = "Es requereix Clau (Key) i el Secret (Secret)";
+App::$strings["This channel is limited to %d tokens"] = "";
+App::$strings["Name and Password are required."] = "";
+App::$strings["Token saved."] = "";
App::$strings["Not valid email."] = "E-correu no vàlid.";
App::$strings["Protected email address. Cannot change to that email."] = "Adreça d'e-correu protegida. No es pot canviar a aquest e-correu.";
App::$strings["System failure storing new email. Please try again."] = "Fallada del sistema al guardar un nou correu. Si us plau, proba de nou.";
@@ -1129,6 +1187,12 @@ App::$strings["Confirm New Password"] = "Confirma la Nova Contrasenya";
App::$strings["Leave password fields blank unless changing"] = "Deixa els camps de contrasenya en blanc llevat que la vulguis canviar";
App::$strings["Email Address:"] = "Adreça de E-Correu:";
App::$strings["Remove this account including all its channels"] = "Esborra aquest compte inclosos tots els seus canals";
+App::$strings["Use this form to create temporary access identifiers to share things with non-members. These identities may be used in Access Control Lists and visitors may login using these credentials to access the private content."] = "";
+App::$strings["You may also provide <em>dropbox</em> style access links to friends and associates by adding the Login Password to any specific site URL as shown. Examples:"] = "";
+App::$strings["Guest Access Tokens"] = "";
+App::$strings["Login Name"] = "";
+App::$strings["Login Password"] = "";
+App::$strings["Expires (yyyy-mm-dd)"] = "";
App::$strings["Additional Features"] = "Característiques Addicionals";
App::$strings["Connector Settings"] = "Ajustos de Connector";
App::$strings["No special theme for mobile devices"] = "No emprar tema especial per aparells mòbils";
@@ -1226,7 +1290,7 @@ App::$strings["System (personal) notifications"] = "Notificacions (personals) de
App::$strings["System info messages"] = "Missatges d'informació del sistema";
App::$strings["System critical alerts"] = "Alertes crítiques del sistema";
App::$strings["New connections"] = "Noves connexions";
-App::$strings["System Registrations"] = "Registres del sistema";
+App::$strings["System Registrations"] = "Inscripcions del Sistema";
App::$strings["Also show new wall posts, private messages and connections under Notices"] = "Mostra també les entrades de mur noves, les entrades privades i les connexions a \"Notícies\"";
App::$strings["Notify me of events this many days in advance"] = "Notifica'm dels esdeveniments amb aquests dies d'antelació";
App::$strings["Must be greater than 0"] = "Ha de ser més gran que 0";
@@ -1291,7 +1355,6 @@ App::$strings["GD graphics PHP module"] = "mòdul PHP GD gràfics";
App::$strings["OpenSSL PHP module"] = "mòdul PHP OpenSSL";
App::$strings["mysqli or postgres PHP module"] = "mòdul PHP mysqli o postgres";
App::$strings["mb_string PHP module"] = "mòdul PHP mb_string";
-App::$strings["mcrypt PHP module"] = "mòdul PHP mcrypt";
App::$strings["xml PHP module"] = "Mòdul xml de PHP";
App::$strings["Apache mod_rewrite module"] = "mòdul Apache mod_rewrite";
App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Error: el mòdul mod-rewrite del servidor web Apache es requereix i no està instal·lat.";
@@ -1302,7 +1365,6 @@ App::$strings["Error: GD graphics PHP module with JPEG support required but not
App::$strings["Error: openssl PHP module required but not installed."] = "Error: el mòdul PHP openssl es requereix però no està instal·lat.";
App::$strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Error: el mòdul PHO mysqli o postgres es requereix però no està instal·lat.";
App::$strings["Error: mb_string PHP module required but not installed."] = "Error: el mòdul PHP mb_string es requereix però no està instal·lat.";
-App::$strings["Error: mcrypt PHP module required but not installed."] = "Error: el mòdul PHP mcrypt es requereix però no està instal·lat.";
App::$strings["Error: xml PHP module required for DAV but not installed."] = "Error: el mòdul xml de PHP es requereix per DAV però no està instal·lat.";
App::$strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "L'instaŀlador ha de poder crear i modificar un fitxer anomenat «.htconfig.php» a la carpeta arrel del servidor, però sembla que no ho pot fer.";
App::$strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Això sol ser un problema de permisos. Per molt que el teu usuari pugui modificar-lo, és el del servidor web qui necessita els poders de modificació.";
@@ -1314,7 +1376,7 @@ App::$strings["In order to store these compiled templates, the web server needs
App::$strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Comprova que l'usuari que executa el servidor (www-data en Apache) té permisos d'escriptura en aquesta carpeta.";
App::$strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "Nota: com a mesura de seguretat l'usuari del servidor web ha de tenir accés d'escriptura només a %s, i no a les plantilles (.tpl) que conté.";
App::$strings["%s is writable"] = "Es pot escriure a %s";
-App::$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 fa servir la carpeta «store» per a desar els fitxers pujats. Per tant, el servidor web necessita tenir permís d'escriptura en aquesta carpeta, que està a l'arrel del servidor web.";
+App::$strings["This software uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = "";
App::$strings["store is writable"] = "Es pot escriure al magatzem (store)";
App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "El certificat SSL no s'ha pogut validar. Arregla-ho o deshabilita l'accés https a aquest lloc";
App::$strings["If you have https access to your website or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"] = "Si tens accès pet https al teu lloc web o permets connexions pel port TCP 443 (port https), Has d'emprar un certificat VÀLID. NO es poden emprar certificats AUTO-SIGNATS!";
@@ -1322,6 +1384,7 @@ App::$strings["This restriction is incorporated because public posts from you ma
App::$strings["If your certificate is not recognized, members of other sites (who may themselves have valid certificates) will get a warning message on their own site complaining about security issues."] = "Si el teu certificat no és reconegut, llavors el membres d'altres hubs, encara que tinguin certificats vàlids, rebran una advertència de seguretat en carregar contingut teu.";
App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Per tant, com que perjudica la usabilitat més enllà del teu lloc, la restricció de tenir un certificat reconegut és molt important.";
App::$strings["Providers are available that issue free certificates which are browser-valid."] = "Hi ha autoritats de certificació reconegudes que ofereixen certificats gratuïts.";
+App::$strings["If you are confident that the certificate is valid and signed by a trusted authority, check to see if you have failed to install an intermediate cert. These are not normally required by browsers, but are required for server-to-server communications."] = "";
App::$strings["SSL certificate validation"] = "Validació del certificat SSL";
App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "No es poden reescriure les URL a «.htaccess». Comprova la configuració del servidor:";
App::$strings["Url rewrite is working"] = "Es poden reescriure les URL a «.htaccess»";
@@ -1333,19 +1396,20 @@ App::$strings["Files: shared with me"] = "Arxius: compartits amb jo";
App::$strings["NEW"] = "NOU";
App::$strings["Remove all files"] = "Esborra tots els arxius";
App::$strings["Remove this file"] = "Esborra l'arxiu";
-App::$strings["Version %s"] = "Versió %s";
-App::$strings["Installed plugins/addons/apps:"] = "Plugins/addons/apps Instal·lats:";
-App::$strings["No installed plugins/addons/apps"] = "Plugins/addons/apps no instal·lats";
-App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Aquest és un node de \$Projectname, una xarxa cooperativa mundial de llocs web descentralitzats amb gran control de la privacitat.";
-App::$strings["Tag: "] = "Etiqueta:";
-App::$strings["Last background fetch: "] = "Última actualització en rerefons:";
-App::$strings["Current load average: "] = "Càrrega actual mitja:";
-App::$strings["Running at web location"] = "Correguent en el lloc web";
-App::$strings["Please visit <a href=\"http://hubzilla.org\">hubzilla.org</a> to learn more about \$Projectname."] = "Visita <a href=\"http://hubzilla.org\">hubzilla.org</a> per saber-ne més de \$Projectname.";
-App::$strings["Bug reports and issues: please visit"] = "Per informar d'errors o problemes ves a";
-App::$strings["\$projectname issues"] = "\$projectname qüestions";
-App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Per suggerències, felicitacions i altres, envia'ns un mail a «redmatrix» [arroba] librelist [punt] com";
-App::$strings["Site Administrators"] = "Administradors del lloc";
+App::$strings["Thing updated"] = "S'ha actualitzat la cosa";
+App::$strings["Object store: failed"] = "No s'ha pogut emmagatzemar l'objecte";
+App::$strings["Thing added"] = "S'ha afegit la cosa";
+App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s";
+App::$strings["Show Thing"] = "Mostra la cosa";
+App::$strings["item not found."] = "no s'ha trobat l'element.";
+App::$strings["Edit Thing"] = "Edita la cosa";
+App::$strings["Select a profile"] = "Tria un perfil";
+App::$strings["Post an activity"] = "Publica una activitat";
+App::$strings["Only sends to viewers of the applicable profile"] = "S'envia només a visitants del perfil corresponent";
+App::$strings["Name of thing e.g. something"] = "Nom de la cosa. Exemple: patata";
+App::$strings["URL of thing (optional)"] = "Adreça URL de la cosa (opcional)";
+App::$strings["URL for photo of thing (optional)"] = "Adreça URL de la foto d'una cosa (opcional)";
+App::$strings["Add Thing to your Profile"] = "Afegeix una cosa al teu perfil";
App::$strings["Failed to create source. No channel selected."] = "Error en crear l'origen. Cap canal seleccionat.";
App::$strings["Source created."] = "Origen creat.";
App::$strings["Source updated."] = "Origen actualitzat.";
@@ -1373,60 +1437,38 @@ App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha etiquetat %3\
App::$strings["Tag removed"] = "S'ha tret l'etiqueta";
App::$strings["Remove Item Tag"] = "Elimina l'etiqueta d'element";
App::$strings["Select a tag to remove: "] = "Tria l'etiqueta a eliminar:";
-App::$strings["Thing updated"] = "S'ha actualitzat la cosa";
-App::$strings["Object store: failed"] = "No s'ha pogut emmagatzemar l'objecte";
-App::$strings["Thing added"] = "S'ha afegit la cosa";
-App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s";
-App::$strings["Show Thing"] = "Mostra la cosa";
-App::$strings["item not found."] = "no s'ha trobat l'element.";
-App::$strings["Edit Thing"] = "Edita la cosa";
-App::$strings["Select a profile"] = "Tria un perfil";
-App::$strings["Post an activity"] = "Publica una activitat";
-App::$strings["Only sends to viewers of the applicable profile"] = "S'envia només a visitants del perfil corresponent";
-App::$strings["Name of thing e.g. something"] = "Nom de la cosa. Exemple: patata";
-App::$strings["URL of thing (optional)"] = "Adreça URL de la cosa (opcional)";
-App::$strings["URL for photo of thing (optional)"] = "Adreça URL de la foto d'una cosa (opcional)";
-App::$strings["Add Thing to your Profile"] = "Afegeix una cosa al teu perfil";
-App::$strings["Export Channel"] = "Exportar Canal";
-App::$strings["Export your basic channel information to a file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new server hub, but does not contain your content."] = "Exporta la informació bàsica del canal a un arxiu. Això actua com a còpia de recolzament de les teves connexions, permisos, perfil i dades bàsiques, les quals pots emprar per traslladar aquestes dades a una altre lloc/node, però no conté el contingut del canal.";
-App::$strings["Export Content"] = "Exportar el Contingut";
-App::$strings["Export your channel information and recent content to a JSON backup that can be restored or imported to another server hub. This backs up all of your connections, permissions, profile data and several months of posts. This file may be VERY large. Please be patient - it may take several minutes for this download to begin."] = "Exporta la informació del canal i tot el contingut recent a un arxiu de recolzament JSON que por ser restaurat o importat en altre lloc/node. Això còpia totes les teves connexions, permisos, perfil i dades i mesos de entrades. L'arxiu pot ser MOLT gran. Si et plau, sigues pacient ja que pot trigar uns minuts a començar a baixar.";
-App::$strings["Export your posts from a given year."] = "Exporta les teves entrades d'un any donat.";
-App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Pots també exportar les teves entrades i conversacions d'un any o un mes en particular. Ajusta la data a la barra de direccions del navegador per seleccionar altres dates. Si la exportació falla (possiblement degut al esgotament de la memòria del node servidor), si et plau, intenta de nou la selecció d'un rang de dates més limitat.";
-App::$strings["To select all posts for a given year, such as this year, visit <a href=\"%1\$s\">%2\$s</a>"] = "Per seleccionar tots els missatges per a un any determinat, com aquest any, visiteu <a href=\"%1\$s\">%2\$s</a>";
-App::$strings["To select all posts for a given month, such as January of this year, visit <a href=\"%1\$s\">%2\$s</a>"] = "Per seleccionar tots els missatges per a un mes determinat, com el de gener d'aquest any, visiteu <a href=\"%1\$s\">%2\$s</a>";
-App::$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)."] = "Aquests arxius de contingut poden ser importats o restaurats per visitar <a href=\"%1\$s\">%2\$s</a> en qualsevol lloc que conté el teu canal. Per obtenir els millors resultats si us plau, importar o restaurar aquests en ordre de data (la més antiga primer).";
-App::$strings["No connections."] = "Sense connexions.";
-App::$strings["Visit %s's profile [%s]"] = "Visita el perfil [%s] de %s";
-App::$strings["View Connections"] = "Veure Connexions";
-App::$strings["Source of Item"] = "Origen de l'article";
App::$strings["Webpages"] = "Pàgines web";
App::$strings["Actions"] = "Accions";
App::$strings["Page Link"] = "Enllaç a Pàgina";
App::$strings["Page Title"] = "Títol de la pàgina";
+App::$strings["Not found"] = "";
+App::$strings["Wiki"] = "Wiki";
+App::$strings["Sandbox"] = "Sandbox";
+App::$strings["\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be saved*.\""] = "";
+App::$strings["Revision Comparison"] = "Comparació de revisió";
+App::$strings["Revert"] = "Reverteix";
+App::$strings["Enter the name of your new wiki:"] = "Escriu el nom del teu nou wiki:";
+App::$strings["Enter the name of the new page:"] = "Escriu el nom de la teva nova pàgina:";
+App::$strings["Enter the new name:"] = "Escriu el nou nom:";
+App::$strings["Embed image from photo albums"] = "Embeu una imatge dels àlbums de fotos";
+App::$strings["Embed an image from your albums"] = "Embeu una imatge dels teus àlbums";
+App::$strings["OK"] = "OK";
+App::$strings["Choose images to embed"] = "Tria una imatge per a embeure-la";
+App::$strings["Choose an album"] = "Tria un àlbum";
+App::$strings["Choose a different album..."] = "Tria un àlbum diferent...";
+App::$strings["Error getting album list"] = "Ha ocorregut un error quan treia la llista de àlbums";
+App::$strings["Error getting photo link"] = "Ha ocorregut un error quan treia l'enllaç a la foto";
+App::$strings["Error getting album"] = "Ha ocorregut un error treient l'àlbum";
+App::$strings["No connections."] = "Sense connexions.";
+App::$strings["Visit %s's profile [%s]"] = "Visita el perfil [%s] de %s";
+App::$strings["View Connections"] = "Veure Connexions";
+App::$strings["Source of Item"] = "Origen de l'article";
+App::$strings["Authorize application connection"] = "Autoritza la connexió de l'aplicació";
+App::$strings["Return to your app and insert this Securty Code:"] = "Torna a la teva aplicació i insereix aquest Codi de Seguretat:";
+App::$strings["Please login to continue."] = "Si et plau, identifica't per continuar.";
+App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vols autoritzar a aquesta aplicació l'accés a les teves entrades i contactes i/o a crear noves entrades com si fos tu mateix.";
App::$strings["Xchan Lookup"] = "Cerca a xchan";
App::$strings["Lookup xchan beginning with (or webbie): "] = "Cerca a xchan començant per (o webbie)";
-App::$strings["Site Admin"] = "Administració";
-App::$strings["Bug Report"] = "Informe d'Errors";
-App::$strings["View Bookmarks"] = "Veure Marcadors";
-App::$strings["My Chatrooms"] = "Les meves Sales de Xat";
-App::$strings["Firefox Share"] = "Compartir amb Firefox";
-App::$strings["Remote Diagnostics"] = "Diagnòstics Remots";
-App::$strings["Suggest Channels"] = "Suggerir Canals";
-App::$strings["Login"] = "Identifica't";
-App::$strings["Grid"] = "Malla";
-App::$strings["Channel Home"] = "Canal Personal";
-App::$strings["Events"] = "Esdeveniments";
-App::$strings["Directory"] = "Directori";
-App::$strings["Mail"] = "Correu";
-App::$strings["Chat"] = "Xerrar";
-App::$strings["Probe"] = "Sondeig";
-App::$strings["Suggest"] = "Suggeriment";
-App::$strings["Random Channel"] = "Canal Aleatori";
-App::$strings["Invite"] = "Convida";
-App::$strings["Features"] = "Funcionalitats";
-App::$strings["Post"] = "Entrada";
-App::$strings["Purchase"] = "Compra";
App::$strings["Missing room name"] = "Perdut el nom de la sala";
App::$strings["Duplicate room name"] = "Nom de la sala duplicat";
App::$strings["Invalid room specifier."] = "Especificació de la sala invàlida.";
@@ -1474,6 +1516,27 @@ App::$strings["Please visit %s to approve or reject the suggestion."] = "Per fav
App::$strings["[Hubzilla:Notify]"] = "[Hubzilla:Notificació]";
App::$strings["created a new post"] = "Creada una nova entrada";
App::$strings["commented on %s's post"] = "comentat a l'entrada de %s";
+App::$strings["Site Admin"] = "Administració";
+App::$strings["Bug Report"] = "Informe d'Errors";
+App::$strings["View Bookmarks"] = "Veure Marcadors";
+App::$strings["My Chatrooms"] = "Les meves Sales de Xat";
+App::$strings["Firefox Share"] = "Compartir amb Firefox";
+App::$strings["Remote Diagnostics"] = "Diagnòstics Remots";
+App::$strings["Suggest Channels"] = "Suggerir Canals";
+App::$strings["Login"] = "Identifica't";
+App::$strings["Grid"] = "Malla";
+App::$strings["Channel Home"] = "Canal Personal";
+App::$strings["Events"] = "Esdeveniments";
+App::$strings["Directory"] = "Directori";
+App::$strings["Mail"] = "Correu";
+App::$strings["Chat"] = "Xerrar";
+App::$strings["Probe"] = "Sondeig";
+App::$strings["Suggest"] = "Suggeriment";
+App::$strings["Random Channel"] = "Canal Aleatori";
+App::$strings["Invite"] = "Convida";
+App::$strings["Features"] = "Funcionalitats";
+App::$strings["Post"] = "Entrada";
+App::$strings["Purchase"] = "Compra";
App::$strings["Private Message"] = "Missatge Privat";
App::$strings["Select"] = "Selecciona";
App::$strings["Save to Folder"] = "Guardar en la Carpeta";
@@ -1510,7 +1573,7 @@ App::$strings["Expires: %s"] = "Expira: %s";
App::$strings["Save Bookmarks"] = "Guarda Favorits";
App::$strings["Add to Calendar"] = "Afegeix al Calendari";
App::$strings["Mark all seen"] = "Marca tot com ja vist";
-App::$strings["[+] show all"] = "[+] mostra tot";
+App::$strings["%s show all"] = "";
App::$strings["Bold"] = "Negreta";
App::$strings["Italic"] = "Italica";
App::$strings["Underline"] = "Subratllat";
@@ -1519,205 +1582,30 @@ App::$strings["Code"] = "Codi";
App::$strings["Image"] = "Imatge";
App::$strings["Insert Link"] = "Insereix Enllaç";
App::$strings["Video"] = "Video";
+App::$strings["Visible to your default audience"] = "Visible per a la teva audiència ";
+App::$strings["Only me"] = "Només jo";
+App::$strings["Public"] = "Públic";
+App::$strings["Anybody in the \$Projectname network"] = "Ningú a la xarxa \$Projectname";
+App::$strings["Any account on %s"] = "Qualsevol compte a %s";
+App::$strings["Any of my connections"] = "Qualsevol de les meves connexions";
+App::$strings["Only connections I specifically allow"] = "Només les connexions que permeto específicament";
+App::$strings["Anybody authenticated (could include visitors from other networks)"] = "Qualsevol persona autenticada (podria incloure als usuaris d'altres xarxes)";
+App::$strings["Any connections including those who haven't yet been approved"] = "Qualsevol connexió incloent aquells que encara no han estat aprovats";
+App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "Aquest és l'ajust per defecte per al públic del seu flux normal i entrades.";
+App::$strings["This is your default setting for who can view your default channel profile"] = "Aquesta és la configuració per defecte per a qui pugui veure el teu perfil per defecte del canal";
+App::$strings["This is your default setting for who can view your connections"] = "Aquesta és la configuració per defecte per a qui pugui veure les teves connexions";
+App::$strings["This is your default setting for who can view your file storage and photos"] = "Aquesta és la configuració per defecte per a qui pugui veure els teus arxius i fotos";
+App::$strings["This is your default setting for the audience of your webpages"] = "Aquests son els ajustos per defecte de l'audiència de les teves pàgines web";
App::$strings["No username found in import file."] = "No s'ha trobat nom d'usuari a l'arxiu d'importació.";
App::$strings["Unable to create a unique channel address. Import failed."] = "No s'ha pogut importar el canal perquè l'adreça única de canal no s'ha pogut crear.";
App::$strings["Cannot locate DNS info for database server '%s'"] = "No s'ha trobat informació de DNS pel servidor de base de dades '%s'";
-App::$strings["Categories"] = "Categories";
-App::$strings["Tags"] = "Etiquetes";
-App::$strings["Keywords"] = "Paraules clau";
-App::$strings["have"] = "tinc";
-App::$strings["has"] = "tens";
-App::$strings["want"] = "vull";
-App::$strings["wants"] = "vols";
-App::$strings["likes"] = "agrada";
-App::$strings["dislikes"] = "desagrada";
-App::$strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
-App::$strings["Starts:"] = "Inicia:";
-App::$strings["Finishes:"] = "Acaba:";
-App::$strings["This event has been added to your calendar."] = "Aquest succés ha estat afegit al teu calendari.";
-App::$strings["Not specified"] = "Sense especificar";
-App::$strings["Needs Action"] = "Necessita una Acció";
-App::$strings["Completed"] = "Completat";
-App::$strings["In Process"] = "En Procès";
-App::$strings["Cancelled"] = "Cancel·lat";
-App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "No s'ha pogut importar el canal perquè l'identificador del canal no s'ha pogut duplicar en aquest servidor.";
-App::$strings["Channel clone failed. Import failed."] = "No s'ha pogut importar el canal perquè el canal no s'ha pogut clonar.";
-App::$strings["(Unknown)"] = "(Desconegut)";
-App::$strings["Visible to anybody on the internet."] = "Visible per tothom a la Internet";
-App::$strings["Visible to you only."] = "Visible només per tú.";
-App::$strings["Visible to anybody in this network."] = "Visible per tothom en aquesta xarxa.";
-App::$strings["Visible to anybody authenticated."] = "Visible per tothom autenticat.";
-App::$strings["Visible to anybody on %s."] = "Visible per a tothom a %s.";
-App::$strings["Visible to all connections."] = "Visible per a totes les connexions.";
-App::$strings["Visible to approved connections."] = "Visible per a les connexions aprovades.";
-App::$strings["Visible to specific connections."] = "Visible per a específiques connexions.";
-App::$strings["Privacy group is empty."] = "El grup privat està vuit.";
-App::$strings["Privacy group: %s"] = "Grup privat: %s";
-App::$strings["Connection not found."] = "Connexió no trobada.";
-App::$strings["profile photo"] = "foto del perfil";
-App::$strings["No recipient provided."] = "No s'ha proporcionat bústia.";
-App::$strings["[no subject]"] = "[no subject]";
-App::$strings["Unable to determine sender."] = "incapaç de determinar el remitent";
-App::$strings["Stored post could not be verified."] = "L'entrada guardada no pot ser verificada";
-App::$strings["prev"] = "prev";
-App::$strings["first"] = "primer";
-App::$strings["last"] = "últim";
-App::$strings["next"] = "pròxim";
-App::$strings["older"] = "el més antic";
-App::$strings["newer"] = "El més nou";
-App::$strings["No connections"] = "Sense Connexions";
-App::$strings["View all %s connections"] = "Veure totes les connexions de %s";
-App::$strings["poke"] = "esperona";
-App::$strings["poked"] = "esperonat";
-App::$strings["ping"] = "coloca";
-App::$strings["pinged"] = "colocat";
-App::$strings["prod"] = "picar";
-App::$strings["prodded"] = "picat";
-App::$strings["slap"] = "bufetada";
-App::$strings["slapped"] = "bufetejat";
-App::$strings["finger"] = "senyal";
-App::$strings["fingered"] = "senyalat";
-App::$strings["rebuff"] = "menyspreu";
-App::$strings["rebuffed"] = "menyspreuat";
-App::$strings["happy"] = "feliç";
-App::$strings["sad"] = "trist";
-App::$strings["mellow"] = "melós";
-App::$strings["tired"] = "cansat";
-App::$strings["perky"] = "turgent";
-App::$strings["angry"] = "enfadat";
-App::$strings["stupefied"] = "estupefacte";
-App::$strings["puzzled"] = "perplexe";
-App::$strings["interested"] = "Interessat";
-App::$strings["bitter"] = "amargat";
-App::$strings["cheerful"] = "feliç";
-App::$strings["alive"] = "viu";
-App::$strings["annoyed"] = "molest";
-App::$strings["anxious"] = "ansiós";
-App::$strings["cranky"] = "malagaitós";
-App::$strings["disturbed"] = "transtornat";
-App::$strings["frustrated"] = "frustrat";
-App::$strings["depressed"] = "deprimit";
-App::$strings["motivated"] = "motivat";
-App::$strings["relaxed"] = "relaxat";
-App::$strings["surprised"] = "sorprès";
-App::$strings["Monday"] = "Dilluns";
-App::$strings["Tuesday"] = "Dimarts";
-App::$strings["Wednesday"] = "Dimecres";
-App::$strings["Thursday"] = "Dijous";
-App::$strings["Friday"] = "Divendres";
-App::$strings["Saturday"] = "Dissabte";
-App::$strings["Sunday"] = "Diumenge";
-App::$strings["January"] = "Gener";
-App::$strings["February"] = "Febrer";
-App::$strings["March"] = "Març";
-App::$strings["April"] = "Abril";
-App::$strings["May"] = "Maig";
-App::$strings["June"] = "Juny";
-App::$strings["July"] = "Juliol";
-App::$strings["August"] = "Agost";
-App::$strings["September"] = "Setembre";
-App::$strings["October"] = "Octubre";
-App::$strings["November"] = "Novembre";
-App::$strings["December"] = "Desembre";
-App::$strings["Unknown Attachment"] = "Adjunt Desconegut";
-App::$strings["unknown"] = "desconegut";
-App::$strings["remove category"] = "elimina categoria";
-App::$strings["remove from file"] = "elimina del arxiu";
-App::$strings["default"] = "per defecte";
-App::$strings["Page layout"] = "Format de la pàgina";
-App::$strings["You can create your own with the layouts tool"] = "Pots crear el teu propi amb l'editor de format de pàgina.";
-App::$strings["Page content type"] = "Tipus de contingut de la pàgina";
-App::$strings["Select an alternate language"] = "Tria un idioma alternatiu";
-App::$strings["activity"] = "activitat";
-App::$strings["Design Tools"] = "Eines de disseny";
-App::$strings["Pages"] = "Pàgines";
-App::$strings["System"] = "Sistema";
-App::$strings["New App"] = "Nova App";
-App::$strings["Suggestions"] = "Suggerencies";
-App::$strings["See more..."] = "Veure més.....";
-App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Tens %1$.0f de %2$.0f connexions permeses.";
-App::$strings["Add New Connection"] = "Afegeix una Nova Connexió";
-App::$strings["Enter channel address"] = "Introdueix l'adreça del canal";
-App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Exemples: bob@example.com, https://exemple.com/barbara";
-App::$strings["Notes"] = "Notes";
-App::$strings["Remove term"] = "Plaç de remoció";
-App::$strings["Saved Searches"] = "Cerques Guardades";
-App::$strings["add"] = "afegeix";
-App::$strings["Saved Folders"] = "Carpetes Guardades";
-App::$strings["Everything"] = "Tot";
-App::$strings["Archives"] = "Arxius";
-App::$strings["Refresh"] = "Refresc";
-App::$strings["Account settings"] = "Ajustos de Compte";
-App::$strings["Channel settings"] = "Ajustos de Canal";
-App::$strings["Additional features"] = "Característiques addicionals";
-App::$strings["Feature/Addon settings"] = "Ajustos de Complements";
-App::$strings["Display settings"] = "Ajustos de pantalla";
-App::$strings["Manage locations"] = "Gestiona ubicacions";
-App::$strings["Export channel"] = "Exportat canal";
-App::$strings["Connected apps"] = "Apps connectades";
-App::$strings["Premium Channel Settings"] = "Ajustos Premium de Canal";
-App::$strings["Private Mail Menu"] = "Menú de Correu Privat";
-App::$strings["Combined View"] = "Vista Combinada";
-App::$strings["Inbox"] = "Safata d'entrada";
-App::$strings["Outbox"] = "Safata de sortida";
-App::$strings["New Message"] = "Nou Missatge";
-App::$strings["Conversations"] = "Conversacions";
-App::$strings["Received Messages"] = "Missatges Rebuts";
-App::$strings["Sent Messages"] = "Missatges Enviats";
-App::$strings["No messages."] = "Sense missatges.";
-App::$strings["Delete conversation"] = "Conversació esborrada";
-App::$strings["Events Menu"] = "Menú d'Esdeveniments";
-App::$strings["Day View"] = "Vista de Dia";
-App::$strings["Week View"] = "Vista de Setmana";
-App::$strings["Month View"] = "Vista de Mes";
-App::$strings["Events Tools"] = "Eina d'Esdeveniments";
-App::$strings["Export Calendar"] = "Exportar Calendari";
-App::$strings["Import Calendar"] = "Importar Calendari";
-App::$strings["Chatrooms"] = "Sala per Xerrar";
-App::$strings["Overview"] = "Visió General";
-App::$strings["Chat Members"] = "Membres de la Sala de Xat";
-App::$strings["Bookmarked Chatrooms"] = "Sales de Xat Favorites";
-App::$strings["Suggested Chatrooms"] = "Sales de Xat Suggerides";
-App::$strings["photo/image"] = "foto/imatge";
-App::$strings["Click to show more"] = "Fes clic per veure més";
-App::$strings["Rating Tools"] = "Eines de Valoració";
-App::$strings["Rate Me"] = "Valora'm";
-App::$strings["View Ratings"] = "Veure Valoracions";
-App::$strings["Forums"] = "Forums";
-App::$strings["Tasks"] = "Tasques";
-App::$strings["Documentation"] = "Documentació";
-App::$strings["Project/Site Information"] = "Informació del Projecte/Lloc";
-App::$strings["For Members"] = "Per Membres";
-App::$strings["For Administrators"] = "Per Administradors";
-App::$strings["For Developers"] = "Per Desenvolupadors";
-App::$strings["Member registrations waiting for confirmation"] = "Una inscripció per a ser membre està esperant confirmació";
-App::$strings["Inspect queue"] = "Revisa cua";
-App::$strings["DB updates"] = "Actualitzacions de Base de Dades";
-App::$strings["Admin"] = "Admin";
-App::$strings["Plugin Features"] = "Característiques del Plugin";
-App::$strings["Channel is blocked on this site."] = "El canal està bloquejat en aquest lloc.";
-App::$strings["Channel location missing."] = "Ubicació del canal perduda.";
-App::$strings["Response from remote channel was incomplete."] = "La resposta del canal remot fou incompleta.";
-App::$strings["Channel was deleted and no longer exists."] = "El canal fou esborrat i actualment no existeix.";
-App::$strings["Protocol disabled."] = "Protocol desactivat.";
-App::$strings["Channel discovery failed."] = "Descobriment de canal fallit.";
-App::$strings["Cannot connect to yourself."] = "No pots connectar amb tu mateix.";
-App::$strings["%1\$s's bookmarks"] = "%1\$s de marcadors";
-App::$strings["Public Timeline"] = "Línia de Temps Pública";
-App::$strings["Image/photo"] = "Imatge/foto";
-App::$strings["Encrypted content"] = "Contingut encriptat";
-App::$strings["Install %s element: "] = "Instal·la l'element %s:";
-App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Aquesta entrada contè un element %s instal·lable, potser manques de permissos per instal·lar-lo en aquest lloc.";
-App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s va escriure el següent %2\$s %3\$s";
-App::$strings["Click to open/close"] = "Clic per obrir/tancar";
-App::$strings["spoiler"] = "xafa guitarres";
-App::$strings["Different viewers will see this text differently"] = "Diferents observadors veuran aquest text de diferents formes";
-App::$strings["$1 wrote:"] = "$1 va escriure:";
-App::$strings["Directory Options"] = "Opcions de Directori";
-App::$strings["Safe Mode"] = "Manera Segura";
-App::$strings["Public Forums Only"] = "Només Fòrums Públics";
-App::$strings["This Website Only"] = "Només Aquest Lloc Web";
-App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "El formulario de la cadena de seguridad no era correcto. Esto probablemente ocurrió porque el formulario se ha abierto durante demasiado tiempo (> 3 horas) antes de enviarlo.";
+App::$strings["Image exceeds website size limit of %lu bytes"] = "La imatge excedeix la mida limit pel lloc web en %lu bytes";
+App::$strings["Image file is empty."] = "El fitxer d'imatge esta buit.";
+App::$strings["Photo storage failed."] = "Fracassà l'emmagatzematge de la Foto";
+App::$strings["a new photo"] = "Una foto nova";
+App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s enviat %2\$s a %3\$s";
+App::$strings["Photo Albums"] = "Albums de Fotos";
+App::$strings["Upload New Photos"] = "Puja Noves Fotos";
App::$strings["Logout"] = "Desconectar";
App::$strings["End this session"] = "Finalitza aquesta sessió";
App::$strings["Home"] = "Inici";
@@ -1732,6 +1620,7 @@ App::$strings["Your chatrooms"] = "Les teves sales de xerrar";
App::$strings["Bookmarks"] = "Marcadors";
App::$strings["Your bookmarks"] = "Els teus marcadors";
App::$strings["Your webpages"] = "Les teves pàgines web";
+App::$strings["Your wiki"] = "";
App::$strings["Sign in"] = "Signatura";
App::$strings["%s - click to logout"] = "%s - click per desconectar";
App::$strings["Remote authentication"] = "Autenticació remota";
@@ -1752,36 +1641,87 @@ App::$strings["See all notifications"] = "Veure totes les Notificacions";
App::$strings["Private mail"] = "Correu privat";
App::$strings["See all private messages"] = "Veure tots els missatges privats";
App::$strings["Mark all private messages seen"] = "Marcar tots els missatges privats vistos";
+App::$strings["Inbox"] = "Safata d'entrada";
+App::$strings["Outbox"] = "Safata de sortida";
+App::$strings["New Message"] = "Nou Missatge";
App::$strings["Event Calendar"] = "Calendari d'Events";
App::$strings["See all events"] = "Veure tots els esdeveniments";
App::$strings["Mark all events seen"] = "Marcar tots els esdeveniments vistos";
App::$strings["Manage Your Channels"] = "Gestiona els Teus Canals";
App::$strings["Account/Channel Settings"] = "Ajustos de Compte/Canal";
+App::$strings["Admin"] = "Admin";
App::$strings["Site Setup and Configuration"] = "Ajustos i Configuració del Lloc";
App::$strings["Loading..."] = "Carregant...";
App::$strings["@name, #tag, ?doc, content"] = "@nom, #etiqueta, ?doc, contingut";
App::$strings["Please wait..."] = "Si us plau, espera.......";
+App::$strings["view full size"] = "Veure a mida competa";
+App::$strings["Administrator"] = "Administrador";
+App::$strings["No Subject"] = "Sense Assumpte";
+App::$strings["Friendica"] = "Friendica";
+App::$strings["OStatus"] = "OStatus";
+App::$strings["GNU-Social"] = "GNU-Social";
+App::$strings["RSS/Atom"] = "RSS/Atom";
+App::$strings["Diaspora"] = "Diaspora";
+App::$strings["Facebook"] = "Facebook";
+App::$strings["Zot"] = "Zot";
+App::$strings["LinkedIn"] = "LinkedIn";
+App::$strings["XMPP/IM"] = "XMPP/IM";
+App::$strings["MySpace"] = "MySpace";
+App::$strings["New Page"] = "Pàgina Nova";
+App::$strings["Title"] = "Títol";
+App::$strings["Categories"] = "Categories";
+App::$strings["Tags"] = "Etiquetes";
+App::$strings["Keywords"] = "Paraules clau";
+App::$strings["have"] = "tinc";
+App::$strings["has"] = "tens";
+App::$strings["want"] = "vull";
+App::$strings["wants"] = "vols";
+App::$strings["likes"] = "agrada";
+App::$strings["dislikes"] = "desagrada";
+App::$strings["Unable to obtain identity information from database"] = "Incapaç de trobar l'informació d'identitat a la base de dades";
+App::$strings["Empty name"] = "Nom buit";
+App::$strings["Name too long"] = "Nom massa llarg";
+App::$strings["No account identifier"] = "Sense identificador de compte";
+App::$strings["Nickname is required."] = "Alies/malnom es requerit.";
+App::$strings["Reserved nickname. Please choose another."] = "Àlies reservat. Tria un altre.";
+App::$strings["Nickname has unsupported characters or is already being used on this site."] = "L'álies te caracters no soportats o ja esta en ús en aquest lloc";
+App::$strings["Unable to retrieve created identity"] = "No es pot recuperar la identitat creada";
+App::$strings["Default Profile"] = "Perfil per Defecte";
+App::$strings["Requested channel is not available."] = "El canal demanat no està disponible.";
+App::$strings["Create New Profile"] = "Crear un Perfil Nou";
+App::$strings["Visible to everybody"] = "Visible per tothom";
+App::$strings["Gender:"] = "Gènere:";
+App::$strings["Status:"] = "Estatus:";
+App::$strings["Homepage:"] = "Pàgina Personal:";
+App::$strings["Online Now"] = "Ara en Linia";
+App::$strings["Like this channel"] = "M'agrada aquest canal";
+App::$strings["j F, Y"] = "j F, Y";
+App::$strings["j F"] = "j F";
+App::$strings["Birthday:"] = "Aniversari:";
+App::$strings["for %1\$d %2\$s"] = "per %1\$d %2\$s";
+App::$strings["Sexual Preference:"] = "Preferència Sexual:";
+App::$strings["Tags:"] = "Etiquetes:";
+App::$strings["Political Views:"] = "Idees Polítiques:";
+App::$strings["Religion:"] = "Religió:";
+App::$strings["Hobbies/Interests:"] = "Aficions/Interessos:";
+App::$strings["Likes:"] = "Agrada:";
+App::$strings["Dislikes:"] = "Desagrada:";
+App::$strings["Contact information and Social Networks:"] = "Informació de contacte i Xarxes Socials:";
+App::$strings["My other channels:"] = "Els meus altres canals:";
+App::$strings["Musical interests:"] = "Interessos Musicals:";
+App::$strings["Books, literature:"] = "Llibres, literatura:";
+App::$strings["Television:"] = "Televisió:";
+App::$strings["Film/dance/culture/entertainment:"] = "Películes/Dança/Cultura/Entreteniment:";
+App::$strings["Love/Romance:"] = "Amor/Romace:";
+App::$strings["Work/employment:"] = "Treball/feina:";
+App::$strings["School/education:"] = "Escola/educació:";
+App::$strings["Like this thing"] = "M'agrada això";
App::$strings["New window"] = "Nova finestra";
App::$strings["Open the selected location in a different window or browser tab"] = "Obrir la localització seleccionada en un altre finestra o pestanya del navegador";
App::$strings["User '%s' deleted"] = "usuari '%s' esborrat";
-App::$strings["%d invitation available"] = array(
- 0 => "%d invitació disponible",
- 1 => "%d invitacions disponibles",
-);
-App::$strings["Find Channels"] = "Troba Canals";
-App::$strings["Enter name or interest"] = "Entra un nom o interes";
-App::$strings["Connect/Follow"] = "Conecta/Segueix";
-App::$strings["Examples: Robert Morgenstein, Fishing"] = "Exemples: Lionel Messi, Futbolista";
-App::$strings["Random Profile"] = "Perfil Aleatori";
-App::$strings["Invite Friends"] = "Convida Amics";
-App::$strings["Advanced example: name=fred and country=iceland"] = "Exemple avançat: nom=pep i pais=eire";
-App::$strings["%d connection in common"] = array(
- 0 => "%d connexió en comú",
- 1 => "%d connexions en comú",
-);
-App::$strings["show more"] = "mostrar més";
App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s esta ara connectat amb %2\$s";
App::$strings["%1\$s poked %2\$s"] = "%1\$s a esperonat %2\$s";
+App::$strings["poked"] = "esperonat";
App::$strings["View %s's profile @ %s"] = "Vista %s del perfil @ %s";
App::$strings["Categories:"] = "Categories:";
App::$strings["Filed under:"] = "Arxivar a:";
@@ -1820,7 +1760,6 @@ App::$strings["Post as"] = "Envia com";
App::$strings["Toggle voting"] = "Commutar votació";
App::$strings["Categories (optional, comma-separated list)"] = "Categories (opcional, llista separada per comes)";
App::$strings["Set publish date"] = "Ajusta la data de publicació";
-App::$strings["OK"] = "OK";
App::$strings["Discover"] = "Descobrir";
App::$strings["Imported public streams"] = "Importar fluxos públics";
App::$strings["Commented Order"] = "Ordenar per Comentaris";
@@ -1836,8 +1775,8 @@ App::$strings["Posts flagged as SPAM"] = "Entrades marcades com a SPAM";
App::$strings["Status Messages and Posts"] = "Estat dels Missatges i Entrades";
App::$strings["About"] = "El Meu Perfil";
App::$strings["Profile Details"] = "Detalls del Perfil";
-App::$strings["Photo Albums"] = "Albums de Fotos";
App::$strings["Files and Storage"] = "Arxius i Emmagatzegament";
+App::$strings["Chatrooms"] = "Sala per Xerrar";
App::$strings["Saved Bookmarks"] = "Marcadors Guardats";
App::$strings["Manage Webpages"] = "Gestió de Pàgines Web";
App::$strings["__ctx:noun__ Attending"] = array(
@@ -1864,6 +1803,8 @@ App::$strings["__ctx:noun__ Abstain"] = array(
0 => "Abstenirse",
1 => "Abstenirse",
);
+App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "No s'ha pogut importar el canal perquè l'identificador del canal no s'ha pogut duplicar en aquest servidor.";
+App::$strings["Channel clone failed. Import failed."] = "No s'ha pogut importar el canal perquè el canal no s'ha pogut clonar.";
App::$strings["Frequently"] = "Freqüentment";
App::$strings["Hourly"] = "Horariament";
App::$strings["Twice daily"] = "Dos vegades al dia";
@@ -1880,7 +1821,6 @@ App::$strings["Transsexual"] = "Transsexual";
App::$strings["Hermaphrodite"] = "Hermafrodita";
App::$strings["Neuter"] = "Neutre";
App::$strings["Non-specific"] = "Indefinit";
-App::$strings["Other"] = "Altres";
App::$strings["Undecided"] = "Indecís";
App::$strings["Males"] = "Homes";
App::$strings["Females"] = "Dones";
@@ -1925,91 +1865,95 @@ App::$strings["Uncertain"] = "Incert";
App::$strings["It's complicated"] = "Es Complicat";
App::$strings["Don't care"] = "No Et Fa Res";
App::$strings["Ask me"] = "Pregunta";
-App::$strings["Visible to your default audience"] = "Visible per a la teva audiència ";
-App::$strings["Only me"] = "Només jo";
-App::$strings["Public"] = "Públic";
-App::$strings["Anybody in the \$Projectname network"] = "Ningú a la xarxa \$Projectname";
-App::$strings["Any account on %s"] = "Qualsevol compte a %s";
-App::$strings["Any of my connections"] = "Qualsevol de les meves connexions";
-App::$strings["Only connections I specifically allow"] = "Només les connexions que permeto específicament";
-App::$strings["Anybody authenticated (could include visitors from other networks)"] = "Qualsevol persona autenticada (podria incloure als usuaris d'altres xarxes)";
-App::$strings["Any connections including those who haven't yet been approved"] = "Qualsevol connexió incloent aquells que encara no han estat aprovats";
-App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "Aquest és l'ajust per defecte per al públic del seu flux normal i entrades.";
-App::$strings["This is your default setting for who can view your default channel profile"] = "Aquesta és la configuració per defecte per a qui pugui veure el teu perfil per defecte del canal";
-App::$strings["This is your default setting for who can view your connections"] = "Aquesta és la configuració per defecte per a qui pugui veure les teves connexions";
-App::$strings["This is your default setting for who can view your file storage and photos"] = "Aquesta és la configuració per defecte per a qui pugui veure els teus arxius i fotos";
-App::$strings["This is your default setting for the audience of your webpages"] = "Aquests son els ajustos per defecte de l'audiència de les teves pàgines web";
-App::$strings["Not a valid email address"] = "Adreça de correu electrònic no vàlida";
-App::$strings["Your email domain is not among those allowed on this site"] = "El seu domini de correu electrònic no es troba entre els permesos en aquest lloc";
-App::$strings["Your email address is already registered at this site."] = "La teva adreça de correu electrònic ja esta registrada en aquest lloc";
-App::$strings["An invitation is required."] = "Es requereix Invitació";
-App::$strings["Invitation could not be verified."] = "L'invitació no ha pogut ser verificada";
-App::$strings["Please enter the required information."] = "Entra la informació sol·licitada";
-App::$strings["Failed to store account information."] = "Ha fallat guardar la informació del compte";
-App::$strings["Registration confirmation for %s"] = "Registre confirmat per %s";
-App::$strings["Registration request at %s"] = "Sol·licitud de registre a %s";
-App::$strings["Administrator"] = "Administrador";
-App::$strings["your registration password"] = "la teva contrasenya registrada";
-App::$strings["Registration details for %s"] = "Detalls del registre per %s";
-App::$strings["Account approved."] = "Compte aprovat.";
-App::$strings["Registration revoked for %s"] = "Registre revocat per %s";
-App::$strings["Account verified. Please login."] = "Compte verificat. Si us plau, inicia sessió.";
-App::$strings["Click here to upgrade."] = "Feu clic aquí per actualitzar.";
-App::$strings["This action exceeds the limits set by your subscription plan."] = "Aquesta acció és superior als límits establerts pel seu pla de subscripció.";
-App::$strings["This action is not available under your subscription plan."] = "Aquesta acció no està disponible en el seu pla de subscripció.";
-App::$strings["Item was not found."] = "Article no trobat.";
-App::$strings["No source file."] = "No hi ha arxiu d'origen.";
-App::$strings["Cannot locate file to replace"] = "No trobo l'arxiu a reemplaçar";
-App::$strings["Cannot locate file to revise/update"] = "No trobo l'arxiu a revisar/actualitzar";
-App::$strings["File exceeds size limit of %d"] = "L'arxiu excedeix la mida limit de %d";
-App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Has arribat al teu límit de %1$.0f Mbytes de emagatzematge d'adjunts.";
-App::$strings["File upload failed. Possible system limit or action terminated."] = "Pujada del arxiu fallida. Possible límit del sistema o acció interrompuda.";
-App::$strings["Stored file could not be verified. Upload failed."] = "L'arxiu guardat no es pot verificar. Pujada fallida.";
-App::$strings["Path not available."] = "Trajectòria no disponible";
-App::$strings["Empty pathname"] = "Trajèctoria vuida.";
-App::$strings["duplicate filename or path"] = "Nom o trajectòria duplicat";
-App::$strings["Path not found."] = "Trajectòria no trobada.";
-App::$strings["mkdir failed."] = "mkdir va fracassar.";
-App::$strings["database storage failed."] = "Arxiu de base de dades va fallar.";
-App::$strings["Empty path"] = "Trajèctoria vuida";
-App::$strings["Unable to obtain identity information from database"] = "Incapaç de trobar l'informació d'identitat a la base de dades";
-App::$strings["Empty name"] = "Nom buit";
-App::$strings["Name too long"] = "Nom massa llarg";
-App::$strings["No account identifier"] = "Sense identificador de compte";
-App::$strings["Nickname is required."] = "Alies/malnom es requerit.";
-App::$strings["Reserved nickname. Please choose another."] = "Àlies reservat. Tria un altre.";
-App::$strings["Nickname has unsupported characters or is already being used on this site."] = "L'álies te caracters no soportats o ja esta en ús en aquest lloc";
-App::$strings["Unable to retrieve created identity"] = "No es pot recuperar la identitat creada";
-App::$strings["Default Profile"] = "Perfil per Defecte";
-App::$strings["Requested channel is not available."] = "El canal demanat no està disponible.";
-App::$strings["Create New Profile"] = "Crear un Perfil Nou";
-App::$strings["Visible to everybody"] = "Visible per tothom";
-App::$strings["Gender:"] = "Gènere:";
-App::$strings["Status:"] = "Estatus:";
-App::$strings["Homepage:"] = "Pàgina Personal:";
-App::$strings["Online Now"] = "Ara en Linia";
-App::$strings["Like this channel"] = "M'agrada aquest canal";
-App::$strings["j F, Y"] = "j F, Y";
-App::$strings["j F"] = "j F";
-App::$strings["Birthday:"] = "Aniversari:";
-App::$strings["for %1\$d %2\$s"] = "per %1\$d %2\$s";
-App::$strings["Sexual Preference:"] = "Preferència Sexual:";
-App::$strings["Tags:"] = "Etiquetes:";
-App::$strings["Political Views:"] = "Idees Polítiques:";
-App::$strings["Religion:"] = "Religió:";
-App::$strings["Hobbies/Interests:"] = "Aficions/Interessos:";
-App::$strings["Likes:"] = "Agrada:";
-App::$strings["Dislikes:"] = "Desagrada:";
-App::$strings["Contact information and Social Networks:"] = "Informació de contacte i Xarxes Socials:";
-App::$strings["My other channels:"] = "Els meus altres canals:";
-App::$strings["Musical interests:"] = "Interessos Musicals:";
-App::$strings["Books, literature:"] = "Llibres, literatura:";
-App::$strings["Television:"] = "Televisió:";
-App::$strings["Film/dance/culture/entertainment:"] = "Películes/Dança/Cultura/Entreteniment:";
-App::$strings["Love/Romance:"] = "Amor/Romace:";
-App::$strings["Work/employment:"] = "Treball/feina:";
-App::$strings["School/education:"] = "Escola/educació:";
-App::$strings["Like this thing"] = "M'agrada això";
+App::$strings["%1\$s's bookmarks"] = "%1\$s de marcadors";
+App::$strings["guest:"] = "";
+App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "El formulario de la cadena de seguridad no era correcto. Esto probablemente ocurrió porque el formulario se ha abierto durante demasiado tiempo (> 3 horas) antes de enviarlo.";
+App::$strings["prev"] = "prev";
+App::$strings["first"] = "primer";
+App::$strings["last"] = "últim";
+App::$strings["next"] = "pròxim";
+App::$strings["older"] = "el més antic";
+App::$strings["newer"] = "El més nou";
+App::$strings["No connections"] = "Sense Connexions";
+App::$strings["View all %s connections"] = "Veure totes les connexions de %s";
+App::$strings["poke"] = "esperona";
+App::$strings["ping"] = "coloca";
+App::$strings["pinged"] = "colocat";
+App::$strings["prod"] = "picar";
+App::$strings["prodded"] = "picat";
+App::$strings["slap"] = "bufetada";
+App::$strings["slapped"] = "bufetejat";
+App::$strings["finger"] = "senyal";
+App::$strings["fingered"] = "senyalat";
+App::$strings["rebuff"] = "menyspreu";
+App::$strings["rebuffed"] = "menyspreuat";
+App::$strings["happy"] = "feliç";
+App::$strings["sad"] = "trist";
+App::$strings["mellow"] = "melós";
+App::$strings["tired"] = "cansat";
+App::$strings["perky"] = "turgent";
+App::$strings["angry"] = "enfadat";
+App::$strings["stupefied"] = "estupefacte";
+App::$strings["puzzled"] = "perplexe";
+App::$strings["interested"] = "Interessat";
+App::$strings["bitter"] = "amargat";
+App::$strings["cheerful"] = "feliç";
+App::$strings["alive"] = "viu";
+App::$strings["annoyed"] = "molest";
+App::$strings["anxious"] = "ansiós";
+App::$strings["cranky"] = "malagaitós";
+App::$strings["disturbed"] = "transtornat";
+App::$strings["frustrated"] = "frustrat";
+App::$strings["depressed"] = "deprimit";
+App::$strings["motivated"] = "motivat";
+App::$strings["relaxed"] = "relaxat";
+App::$strings["surprised"] = "sorprès";
+App::$strings["Monday"] = "Dilluns";
+App::$strings["Tuesday"] = "Dimarts";
+App::$strings["Wednesday"] = "Dimecres";
+App::$strings["Thursday"] = "Dijous";
+App::$strings["Friday"] = "Divendres";
+App::$strings["Saturday"] = "Dissabte";
+App::$strings["Sunday"] = "Diumenge";
+App::$strings["January"] = "Gener";
+App::$strings["February"] = "Febrer";
+App::$strings["March"] = "Març";
+App::$strings["April"] = "Abril";
+App::$strings["May"] = "Maig";
+App::$strings["June"] = "Juny";
+App::$strings["July"] = "Juliol";
+App::$strings["August"] = "Agost";
+App::$strings["September"] = "Setembre";
+App::$strings["October"] = "Octubre";
+App::$strings["November"] = "Novembre";
+App::$strings["December"] = "Desembre";
+App::$strings["Unknown Attachment"] = "Adjunt Desconegut";
+App::$strings["unknown"] = "desconegut";
+App::$strings["remove category"] = "elimina categoria";
+App::$strings["remove from file"] = "elimina del arxiu";
+App::$strings["default"] = "per defecte";
+App::$strings["Page layout"] = "Format de la pàgina";
+App::$strings["You can create your own with the layouts tool"] = "Pots crear el teu propi amb l'editor de format de pàgina.";
+App::$strings["Page content type"] = "Tipus de contingut de la pàgina";
+App::$strings["Select an alternate language"] = "Tria un idioma alternatiu";
+App::$strings["activity"] = "activitat";
+App::$strings["Design Tools"] = "Eines de disseny";
+App::$strings["Pages"] = "Pàgines";
+App::$strings["Logged out."] = "Sortir.";
+App::$strings["Failed authentication"] = "Autenticació fallida";
+App::$strings["Can view my normal stream and posts"] = "Pot veure el flux i entrades normals";
+App::$strings["Can view my webpages"] = "Pot veure les meves pàgines web";
+App::$strings["Can post on my channel page (\"wall\")"] = "Pot fer entrades a la meva pàgina de canal (\"mur\")";
+App::$strings["Can like/dislike stuff"] = "Pot dir si agrada/desagrada ";
+App::$strings["Profiles and things other than posts/comments"] = "Perfils i altres coses a més d'entrades/comentaris";
+App::$strings["Can forward to all my channel contacts via post @mentions"] = "Ho pot enviar a tots els meus contactes del canal via entrades @mencions";
+App::$strings["Advanced - useful for creating group forum channels"] = "Avançat - capaç de crear canals de grups de foro";
+App::$strings["Can chat with me (when available)"] = "Pot xatejar amb mi (si estic disponible)";
+App::$strings["Can write to my file storage and photos"] = "Pot escriure al meu magatzem d'arxius i fotos";
+App::$strings["Can edit my webpages"] = "Pot editar les meves pàgines web";
+App::$strings["Somewhat advanced - very useful in open communities"] = "Quelcom avançat - molt útil en comunitats obertes";
+App::$strings["Can administer my channel resources"] = "Pot administrar els meus recursos del canal";
+App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Extremadament avançat. No toquis res si no saps que estàs fent";
App::$strings["General Features"] = "Característiques Generals";
App::$strings["Content Expiration"] = "Expiració del Contingut";
App::$strings["Remove posts/comments and/or private messages at a future time"] = "eliminarà entrades/comentaris i/o missatges privats en un període determinat de temps.";
@@ -2021,6 +1965,7 @@ App::$strings["Profile Import/Export"] = "Importar/Exportar Perfil";
App::$strings["Save and load profile details across sites/channels"] = "Guarda i carrega els detalls del perfil al llarg dels llocs/canals";
App::$strings["Web Pages"] = "Pàgines Web";
App::$strings["Provide managed web pages on your channel"] = "Proporcionar pàgines web gestionades al seu canal";
+App::$strings["Provide a wiki for your channel"] = "";
App::$strings["Hide Rating"] = "Amaga la Valoració";
App::$strings["Hide the rating buttons on your channel and profile pages. Note: People can still rate you somewhere else."] = "Amaga el botó de valoracions al teu canal i pàgines del perfil. Nota: Et poden continuar valorant en altres llocs.";
App::$strings["Private Notes"] = "Notes Privades";
@@ -2054,6 +1999,7 @@ App::$strings["Search by Date"] = "Cerca per Data";
App::$strings["Ability to select posts by date ranges"] = "Capacitat per seleccionar entrades per rang de dates";
App::$strings["Privacy Groups"] = "Grup Privat";
App::$strings["Enable management and selection of privacy groups"] = "Habilita gestió i selecció de grups privats";
+App::$strings["Saved Searches"] = "Cerques Guardades";
App::$strings["Save search terms for re-use"] = "Guardar els termin de la cerca per a re-usar";
App::$strings["Network Personal Tab"] = "Pestanya Personal de Xarxa";
App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Activa la pestanya per mostrar només les entrades de xarxa en les que has intervingut";
@@ -2069,8 +2015,9 @@ App::$strings["Community Tagging"] = "Etiquetat per la Comunitat";
App::$strings["Ability to tag existing posts"] = "Capacitat d'etiquetar entrades existents";
App::$strings["Post Categories"] = "Categories d'Entrades";
App::$strings["Add categories to your posts"] = "Afegeix categoria a la teva entrada";
-App::$strings["Emoji Reactions"] = "";
-App::$strings["Add emoji reaction ability to posts"] = "";
+App::$strings["Emoji Reactions"] = "Reaccions dels Emoji";
+App::$strings["Add emoji reaction ability to posts"] = "Afegeix un emoji habilitat per reaccionar a entrades";
+App::$strings["Saved Folders"] = "Carpetes Guardades";
App::$strings["Ability to file posts under folders"] = "Capacitat de arxivar entrades en les carpetes";
App::$strings["Dislike Posts"] = "No Agrada l'Entrada";
App::$strings["Ability to dislike posts/comments"] = "Capacitat per marcar amb \"No Agrada\" les entrades/comentaris";
@@ -2078,63 +2025,149 @@ App::$strings["Star Posts"] = "Entrades Excel·lents";
App::$strings["Ability to mark special posts with a star indicator"] = "Capacitat per marcar entrades especials amb l'indicador d'excel·lencia";
App::$strings["Tag Cloud"] = "Núvol d'Etiquetes.";
App::$strings["Provide a personal tag cloud on your channel page"] = "Proporcionar un núvol d'etiquetes personals a la teva pàgina de canal";
-App::$strings["Embedded content"] = "Contingut embegut";
-App::$strings["Embedding disabled"] = "Incorporació desactivada";
-App::$strings["Who can see this?"] = "Qui pot veure això?";
-App::$strings["Custom selection"] = "Selecció a mida";
-App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Selecciona \"Mostrar\" per permetre la visualització. \"No Mostrar\" et permet obviar i limitar l'abast de \"Mostrar\".";
-App::$strings["Show"] = "Mostra";
-App::$strings["Don't show"] = "No mostrar";
-App::$strings["Other networks and post services"] = "Altres xarxes i serveis de correu";
-App::$strings["Post permissions %s cannot be changed %s after a post is shared.</br />These permissions set who is allowed to view the post."] = "Els permisos d'entrada %s no poden esser canviats %s posteriorment a que una entrada ja està compartida. </br />Aquest ajust dels permisos indica qui pot veure l'entrada.";
-App::$strings["Logged out."] = "Sortir.";
-App::$strings["Failed authentication"] = "Autenticació fallida";
-App::$strings["Birthday"] = "Aniversari";
-App::$strings["Age: "] = "Edat:";
-App::$strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD o MM-DD";
-App::$strings["never"] = "mai";
-App::$strings["less than a second ago"] = "fa menys d'un segon";
-App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "Fa %1\$d %2\$s";
-App::$strings["__ctx:relative_date__ year"] = array(
- 0 => "any",
- 1 => "anys",
-);
-App::$strings["__ctx:relative_date__ month"] = array(
- 0 => "mes",
- 1 => "mesos ",
-);
-App::$strings["__ctx:relative_date__ week"] = array(
- 0 => "setmana",
- 1 => "setmanes",
-);
-App::$strings["__ctx:relative_date__ day"] = array(
- 0 => "dia",
- 1 => "dies",
-);
-App::$strings["__ctx:relative_date__ hour"] = array(
- 0 => "hora",
- 1 => "hores",
-);
-App::$strings["__ctx:relative_date__ minute"] = array(
- 0 => "minut",
- 1 => "minuts",
-);
-App::$strings["__ctx:relative_date__ second"] = array(
- 0 => "segon",
- 1 => "segons",
-);
-App::$strings["%1\$s's birthday"] = "Aniversari de %1\$s";
-App::$strings["Happy Birthday %1\$s"] = "Feliç Aniversari %1\$s";
App::$strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un grup esborrat amb aquest nom fou reviscolat. Els permisos dels items existents <strong>poden</strong> aplicar-se a aquest grup i qualsevol membre futur. Si no es això el que vols, si et plau, crea un altre grup amb un nom diferent.";
App::$strings["Add new connections to this privacy group"] = "Afegir noves connexions a aquest grup privat";
App::$strings["edit"] = "edita";
App::$strings["Edit group"] = "Editar grup";
App::$strings["Add privacy group"] = "Afegir grup privat";
App::$strings["Channels not in any privacy group"] = "Sense canals en grups privats";
+App::$strings["add"] = "afegeix";
+App::$strings["l F d, Y \\@ g:i A"] = "l d \\d\\e/\\d' F de Y \\@ H:i T";
+App::$strings["Starts:"] = "Inicia:";
+App::$strings["Finishes:"] = "Acaba:";
+App::$strings["This event has been added to your calendar."] = "Aquest succés ha estat afegit al teu calendari.";
+App::$strings["Not specified"] = "Sense especificar";
+App::$strings["Needs Action"] = "Necessita una Acció";
+App::$strings["Completed"] = "Completat";
+App::$strings["In Process"] = "En Procès";
+App::$strings["Cancelled"] = "Cancel·lat";
+App::$strings["Not a valid email address"] = "Adreça de correu electrònic no vàlida";
+App::$strings["Your email domain is not among those allowed on this site"] = "El seu domini de correu electrònic no es troba entre els permesos en aquest lloc";
+App::$strings["Your email address is already registered at this site."] = "La teva adreça de correu electrònic ja esta registrada en aquest lloc";
+App::$strings["An invitation is required."] = "Es requereix Invitació";
+App::$strings["Invitation could not be verified."] = "L'invitació no ha pogut ser verificada";
+App::$strings["Please enter the required information."] = "Entra la informació sol·licitada";
+App::$strings["Failed to store account information."] = "Ha fallat guardar la informació del compte";
+App::$strings["Registration confirmation for %s"] = "Inscripció confirmada per %s";
+App::$strings["Registration request at %s"] = "Sol·licitud d'inscripció a %s";
+App::$strings["your registration password"] = "la teva contrasenya registrada";
+App::$strings["Registration details for %s"] = "Detalls de l'inscripció per %s";
+App::$strings["Account approved."] = "Compte aprovat.";
+App::$strings["Registration revoked for %s"] = "Inscripció revocada per %s";
+App::$strings["Click here to upgrade."] = "Feu clic aquí per actualitzar.";
+App::$strings["This action exceeds the limits set by your subscription plan."] = "Aquesta acció és superior als límits establerts pel seu pla de subscripció.";
+App::$strings["This action is not available under your subscription plan."] = "Aquesta acció no està disponible en el seu pla de subscripció.";
+App::$strings["Channel is blocked on this site."] = "El canal està bloquejat en aquest lloc.";
+App::$strings["Channel location missing."] = "Ubicació del canal perduda.";
+App::$strings["Response from remote channel was incomplete."] = "La resposta del canal remot fou incompleta.";
+App::$strings["Channel was deleted and no longer exists."] = "El canal fou esborrat i actualment no existeix.";
+App::$strings["Protocol disabled."] = "Protocol desactivat.";
+App::$strings["Channel discovery failed."] = "Descobriment de canal fallit.";
+App::$strings["Cannot connect to yourself."] = "No pots connectar amb tu mateix.";
+App::$strings["Item was not found."] = "Article no trobat.";
+App::$strings["No source file."] = "No hi ha arxiu d'origen.";
+App::$strings["Cannot locate file to replace"] = "No trobo l'arxiu a reemplaçar";
+App::$strings["Cannot locate file to revise/update"] = "No trobo l'arxiu a revisar/actualitzar";
+App::$strings["File exceeds size limit of %d"] = "L'arxiu excedeix la mida limit de %d";
+App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Has arribat al teu límit de %1$.0f Mbytes de emagatzematge d'adjunts.";
+App::$strings["File upload failed. Possible system limit or action terminated."] = "Pujada del arxiu fallida. Possible límit del sistema o acció interrompuda.";
+App::$strings["Stored file could not be verified. Upload failed."] = "L'arxiu guardat no es pot verificar. Pujada fallida.";
+App::$strings["Path not available."] = "Trajectòria no disponible";
+App::$strings["Empty pathname"] = "Trajèctoria vuida.";
+App::$strings["duplicate filename or path"] = "Nom o trajectòria duplicat";
+App::$strings["Path not found."] = "Trajectòria no trobada.";
+App::$strings["mkdir failed."] = "mkdir va fracassar.";
+App::$strings["database storage failed."] = "Arxiu de base de dades va fallar.";
+App::$strings["Empty path"] = "Trajèctoria vuida";
+App::$strings["Image/photo"] = "Imatge/foto";
+App::$strings["Encrypted content"] = "Contingut encriptat";
+App::$strings["Install %s element: "] = "Instal·la l'element %s:";
+App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Aquesta entrada contè un element %s instal·lable, potser manques de permissos per instal·lar-lo en aquest lloc.";
+App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s va escriure el següent %2\$s %3\$s";
+App::$strings["Click to open/close"] = "Clic per obrir/tancar";
+App::$strings["spoiler"] = "xafa guitarres";
+App::$strings["Different viewers will see this text differently"] = "Diferents observadors veuran aquest text de diferents formes";
+App::$strings["$1 wrote:"] = "$1 va escriure:";
+App::$strings["(Unknown)"] = "(Desconegut)";
+App::$strings["Visible to anybody on the internet."] = "Visible per tothom a la Internet";
+App::$strings["Visible to you only."] = "Visible només per tú.";
+App::$strings["Visible to anybody in this network."] = "Visible per tothom en aquesta xarxa.";
+App::$strings["Visible to anybody authenticated."] = "Visible per tothom autenticat.";
+App::$strings["Visible to anybody on %s."] = "Visible per a tothom a %s.";
+App::$strings["Visible to all connections."] = "Visible per a totes les connexions.";
+App::$strings["Visible to approved connections."] = "Visible per a les connexions aprovades.";
+App::$strings["Visible to specific connections."] = "Visible per a específiques connexions.";
+App::$strings["Privacy group is empty."] = "El grup privat està vuit.";
+App::$strings["Privacy group: %s"] = "Grup privat: %s";
+App::$strings["Connection not found."] = "Connexió no trobada.";
+App::$strings["profile photo"] = "foto del perfil";
+App::$strings["Embedded content"] = "Contingut embegut";
+App::$strings["Embedding disabled"] = "Incorporació desactivada";
+App::$strings["System"] = "Sistema";
+App::$strings["New App"] = "Nova App";
+App::$strings["Suggestions"] = "Suggerencies";
+App::$strings["See more..."] = "Veure més.....";
+App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Tens %1$.0f de %2$.0f connexions permeses.";
+App::$strings["Add New Connection"] = "Afegeix una Nova Connexió";
+App::$strings["Enter channel address"] = "Introdueix l'adreça del canal";
+App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Exemples: bob@example.com, https://exemple.com/barbara";
+App::$strings["Notes"] = "Notes";
+App::$strings["Remove term"] = "Plaç de remoció";
+App::$strings["Everything"] = "Tot";
+App::$strings["Archives"] = "Arxius";
+App::$strings["Refresh"] = "Refresc";
+App::$strings["Account settings"] = "Ajustos de Compte";
+App::$strings["Channel settings"] = "Ajustos de Canal";
+App::$strings["Additional features"] = "Característiques addicionals";
+App::$strings["Feature/Addon settings"] = "Ajustos de Complements";
+App::$strings["Display settings"] = "Ajustos de pantalla";
+App::$strings["Manage locations"] = "Gestiona ubicacions";
+App::$strings["Export channel"] = "Exportat canal";
+App::$strings["Connected apps"] = "Apps connectades";
+App::$strings["Premium Channel Settings"] = "Ajustos Premium de Canal";
+App::$strings["Private Mail Menu"] = "Menú de Correu Privat";
+App::$strings["Combined View"] = "Vista Combinada";
+App::$strings["Conversations"] = "Conversacions";
+App::$strings["Received Messages"] = "Missatges Rebuts";
+App::$strings["Sent Messages"] = "Missatges Enviats";
+App::$strings["No messages."] = "Sense missatges.";
+App::$strings["Delete conversation"] = "Conversació esborrada";
+App::$strings["Events Tools"] = "Eina d'Esdeveniments";
+App::$strings["Export Calendar"] = "Exportar Calendari";
+App::$strings["Import Calendar"] = "Importar Calendari";
+App::$strings["Overview"] = "Visió General";
+App::$strings["Chat Members"] = "Membres de la Sala de Xat";
+App::$strings["Wiki List"] = "Llista de Wikis";
+App::$strings["Wiki Pages"] = "Pàgines de Wikis";
+App::$strings["Bookmarked Chatrooms"] = "Sales de Xat Favorites";
+App::$strings["Suggested Chatrooms"] = "Sales de Xat Suggerides";
+App::$strings["photo/image"] = "foto/imatge";
+App::$strings["Click to show more"] = "Fes clic per veure més";
+App::$strings["Rating Tools"] = "Eines de Valoració";
+App::$strings["Rate Me"] = "Valora'm";
+App::$strings["View Ratings"] = "Veure Valoracions";
+App::$strings["Forums"] = "Forums";
+App::$strings["Tasks"] = "Tasques";
+App::$strings["Documentation"] = "Documentació";
+App::$strings["Project/Site Information"] = "Informació del Projecte/Lloc";
+App::$strings["For Members"] = "Per Membres";
+App::$strings["For Administrators"] = "Per Administradors";
+App::$strings["For Developers"] = "Per Desenvolupadors";
+App::$strings["Member registrations waiting for confirmation"] = "Una inscripció per a ser membre està esperant confirmació";
+App::$strings["Inspect queue"] = "Revisa cua";
+App::$strings["DB updates"] = "Actualitzacions de Base de Dades";
+App::$strings["Plugin Features"] = "Característiques del Plugin";
+App::$strings[" and "] = "i";
+App::$strings["public profile"] = "Perfil públic";
+App::$strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s canviat %2\$s a &ldquo;%3\$s&rdquo;";
+App::$strings["Visit %1\$s's %2\$s"] = "Visita %1\$s en %2\$s";
+App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s Ha actualitzat %2\$s, canviant %3\$s.";
+App::$strings["Attachments:"] = "Adjuntat:";
+App::$strings["\$Projectname event notification:"] = "Notificació d'esdeveniment de \$Projectname";
App::$strings["Delete this item?"] = "Esborrar aquest item?";
-App::$strings["[-] show less"] = "[-] mostra menys";
-App::$strings["[+] expand"] = "[+] expandeix";
-App::$strings["[-] collapse"] = "[-] colapsa";
+App::$strings["%s show less"] = "";
+App::$strings["%s expand"] = "";
+App::$strings["%s collapse"] = "";
App::$strings["Password too short"] = "Contrasenya massa curta";
App::$strings["Passwords do not match"] = "Les paraules de pas no coincideixen";
App::$strings["everybody"] = "tothom";
@@ -2189,72 +2222,78 @@ App::$strings["__ctx:calendar__ month"] = "mes";
App::$strings["__ctx:calendar__ week"] = "setmana";
App::$strings["__ctx:calendar__ day"] = "dia";
App::$strings["__ctx:calendar__ All day"] = "Tot el dia";
-App::$strings["view full size"] = "Veure a mida competa";
-App::$strings["No Subject"] = "Sense Assumpte";
-App::$strings["Friendica"] = "Friendica";
-App::$strings["OStatus"] = "OStatus";
-App::$strings["GNU-Social"] = "GNU-Social";
-App::$strings["RSS/Atom"] = "RSS/Atom";
-App::$strings["Diaspora"] = "Diaspora";
-App::$strings["Facebook"] = "Facebook";
-App::$strings["Zot"] = "Zot";
-App::$strings["LinkedIn"] = "LinkedIn";
-App::$strings["XMPP/IM"] = "XMPP/IM";
-App::$strings["MySpace"] = "MySpace";
-App::$strings["Image exceeds website size limit of %lu bytes"] = "La imatge excedeix la mida limit pel lloc web en %lu bytes";
-App::$strings["Image file is empty."] = "El fitxer d'imatge esta buit.";
-App::$strings["Photo storage failed."] = "Fracassà l'emmagatzematge de la Foto";
-App::$strings["a new photo"] = "Una foto nova";
-App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s enviat %2\$s a %3\$s";
-App::$strings["Upload New Photos"] = "Puja Noves Fotos";
+App::$strings["%d invitation available"] = array(
+ 0 => "%d invitació disponible",
+ 1 => "%d invitacions disponibles",
+);
+App::$strings["Find Channels"] = "Troba Canals";
+App::$strings["Enter name or interest"] = "Entra un nom o interes";
+App::$strings["Connect/Follow"] = "Conecta/Segueix";
+App::$strings["Examples: Robert Morgenstein, Fishing"] = "Exemples: Lionel Messi, Futbolista";
+App::$strings["Random Profile"] = "Perfil Aleatori";
+App::$strings["Invite Friends"] = "Convida Amics";
+App::$strings["Advanced example: name=fred and country=iceland"] = "Exemple avançat: nom=pep i pais=eire";
+App::$strings["%d connection in common"] = array(
+ 0 => "%d connexió en comú",
+ 1 => "%d connexions en comú",
+);
+App::$strings["show more"] = "mostrar més";
+App::$strings["Directory Options"] = "Opcions de Directori";
+App::$strings["Safe Mode"] = "Manera Segura";
+App::$strings["Public Forums Only"] = "Només Fòrums Públics";
+App::$strings["This Website Only"] = "Només Aquest Lloc Web";
+App::$strings["No recipient provided."] = "No s'ha proporcionat bústia.";
+App::$strings["[no subject]"] = "[no subject]";
+App::$strings["Unable to determine sender."] = "incapaç de determinar el remitent";
+App::$strings["Stored post could not be verified."] = "L'entrada guardada no pot ser verificada";
+App::$strings["Who can see this?"] = "Qui pot veure això?";
+App::$strings["Custom selection"] = "Selecció a mida";
+App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Selecciona \"Mostrar\" per permetre la visualització. \"No Mostrar\" et permet obviar i limitar l'abast de \"Mostrar\".";
+App::$strings["Show"] = "Mostra";
+App::$strings["Don't show"] = "No mostrar";
+App::$strings["Other networks and post services"] = "Altres xarxes i serveis de correu";
+App::$strings["Post permissions %s cannot be changed %s after a post is shared.</br />These permissions set who is allowed to view the post."] = "Els permisos d'entrada %s no poden esser canviats %s posteriorment a que una entrada ja està compartida. </br />Aquest ajust dels permisos indica qui pot veure l'entrada.";
+App::$strings["Birthday"] = "Aniversari";
+App::$strings["Age: "] = "Edat:";
+App::$strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD o MM-DD";
+App::$strings["never"] = "mai";
+App::$strings["less than a second ago"] = "fa menys d'un segon";
+App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "Fa %1\$d %2\$s";
+App::$strings["__ctx:relative_date__ year"] = array(
+ 0 => "any",
+ 1 => "anys",
+);
+App::$strings["__ctx:relative_date__ month"] = array(
+ 0 => "mes",
+ 1 => "mesos ",
+);
+App::$strings["__ctx:relative_date__ week"] = array(
+ 0 => "setmana",
+ 1 => "setmanes",
+);
+App::$strings["__ctx:relative_date__ day"] = array(
+ 0 => "dia",
+ 1 => "dies",
+);
+App::$strings["__ctx:relative_date__ hour"] = array(
+ 0 => "hora",
+ 1 => "hores",
+);
+App::$strings["__ctx:relative_date__ minute"] = array(
+ 0 => "minut",
+ 1 => "minuts",
+);
+App::$strings["__ctx:relative_date__ second"] = array(
+ 0 => "segon",
+ 1 => "segons",
+);
+App::$strings["%1\$s's birthday"] = "Aniversari de %1\$s";
+App::$strings["Happy Birthday %1\$s"] = "Feliç Aniversari %1\$s";
+App::$strings["Public Timeline"] = "Línia de Temps Pública";
App::$strings["Invalid data packet"] = "paquet de dades invàlid";
App::$strings["Unable to verify channel signature"] = "No es pot verificar la signatura del canal";
App::$strings["Unable to verify site signature for %s"] = "No es pot verificar la signatura del lloc per %s";
App::$strings["invalid target signature"] = "Signatura objectiu invàlida";
-App::$strings["New Page"] = "Pàgina Nova";
-App::$strings["Title"] = "Títol";
-App::$strings["Can view my normal stream and posts"] = "Pot veure el flux i entrades normals";
-App::$strings["Can view my default channel profile"] = "Pot veure el meu perfil del canal per defecte";
-App::$strings["Can view my connections"] = "Pot veure les meves connexions";
-App::$strings["Can view my file storage and photos"] = "Pot veure al meu magatzem d'arxius i fotos";
-App::$strings["Can view my webpages"] = "Pot veure les meves pàgines web";
-App::$strings["Can send me their channel stream and posts"] = "Pot enviar-me el flux i entrades del seu canal";
-App::$strings["Can post on my channel page (\"wall\")"] = "Pot fer entrades a la meva pàgina de canal (\"mur\")";
-App::$strings["Can comment on or like my posts"] = "Pot fer comentaris o dir si agrada en les meves entrades";
-App::$strings["Can send me private mail messages"] = "Pot enviar-me un missatge de correu privat";
-App::$strings["Can like/dislike stuff"] = "Pot dir si agrada/desagrada ";
-App::$strings["Profiles and things other than posts/comments"] = "Perfils i altres coses a més d'entrades/comentaris";
-App::$strings["Can forward to all my channel contacts via post @mentions"] = "Ho pot enviar a tots els meus contactes del canal via entrades @mencions";
-App::$strings["Advanced - useful for creating group forum channels"] = "Avançat - capaç de crear canals de grups de foro";
-App::$strings["Can chat with me (when available)"] = "Pot xatejar amb mi (si estic disponible)";
-App::$strings["Can write to my file storage and photos"] = "Pot escriure al meu magatzem d'arxius i fotos";
-App::$strings["Can edit my webpages"] = "Pot editar les meves pàgines web";
-App::$strings["Can source my public posts in derived channels"] = "Pot mostrar l'origen de les meves entrades públiques en altres canals";
-App::$strings["Somewhat advanced - very useful in open communities"] = "Quelcom avançat - molt útil en comunitats obertes";
-App::$strings["Can administer my channel resources"] = "Pot administrar els meus recursos del canal";
-App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Extremadament avançat. No toquis res si no saps que estàs fent";
-App::$strings["Social Networking"] = "Xarxes Socials";
-App::$strings["Social - Mostly Public"] = "Social - Principalment Públic";
-App::$strings["Social - Restricted"] = "Social - Restingit";
-App::$strings["Social - Private"] = "Social - Privat";
-App::$strings["Community Forum"] = "Foro de Comunitat";
-App::$strings["Forum - Mostly Public"] = "Fòrum - Principalment Públic";
-App::$strings["Forum - Restricted"] = "Fòrum - Restringit";
-App::$strings["Forum - Private"] = "Fòrum - Privat";
-App::$strings["Feed Republish"] = "Republicador";
-App::$strings["Feed - Mostly Public"] = "Realimentador - Públic Principalment";
-App::$strings["Feed - Restricted"] = "Retroalimentador - Restringit";
-App::$strings["Special Purpose"] = "Objectiu Especial";
-App::$strings["Special - Celebrity/Soapbox"] = "Espacial - Celebritat/Plataforma";
-App::$strings["Special - Group Repository"] = "Especial - Repositori d'un Grup";
-App::$strings["Custom/Expert Mode"] = "Personalitzat/Manera Experta";
-App::$strings[" and "] = "i";
-App::$strings["public profile"] = "Perfil públic";
-App::$strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s canviat %2\$s a &ldquo;%3\$s&rdquo;";
-App::$strings["Visit %1\$s's %2\$s"] = "Visita %1\$s en %2\$s";
-App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s Ha actualitzat %2\$s, canviant %3\$s.";
-App::$strings["Attachments:"] = "Adjuntat:";
-App::$strings["\$Projectname event notification:"] = "Notificació d'esdeveniment de \$Projectname";
App::$strings["Focus (Hubzilla default)"] = "Focus (Hubzilla per defecte)";
App::$strings["Theme settings"] = "Ajustos de tema";
App::$strings["Select scheme"] = "Tria esquema";
@@ -2294,6 +2333,7 @@ App::$strings["__ctx:opensearch__ \$Projectname"] = "\$Projectname";
App::$strings["Update %s failed. See error logs."] = "L'actualització %s ha fallat. Mira el registre d'errors.";
App::$strings["Update Error at %s"] = "Error d'Actualització a %s";
App::$strings["Create an account to access services and applications within the Hubzilla"] = "Crea un compte per accedir als serveis i aplicacions dins de Hubzilla";
+App::$strings["Login/Email"] = "";
App::$strings["Password"] = "Contrasenya";
App::$strings["Remember me"] = "Recorda'm";
App::$strings["Forgot your password?"] = "Has perdut la Contrasenya?";
diff --git a/view/fr/hmessages.po b/view/fr/hmessages.po
index 73d711700..0fb50f0ca 100644
--- a/view/fr/hmessages.po
+++ b/view/fr/hmessages.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Redmatrix\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-06-10 00:02-0700\n"
-"PO-Revision-Date: 2016-06-10 09:14+0000\n"
+"POT-Creation-Date: 2016-07-22 00:02-0700\n"
+"PO-Revision-Date: 2016-07-25 08:54+0000\n"
"Last-Translator: fabrixxm <fabrix.xm@gmail.com>\n"
"Language-Team: French (http://www.transifex.com/Friendica/red-matrix/language/fr/)\n"
"MIME-Version: 1.0\n"
@@ -19,11 +19,156 @@ msgstr ""
"Language: fr\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+#: ../../Zotlabs/Access/PermissionRoles.php:182
+#: ../../include/permissions.php:904
+msgid "Social Networking"
+msgstr "Réseau social"
+
+#: ../../Zotlabs/Access/PermissionRoles.php:183
+#: ../../include/permissions.php:904
+msgid "Social - Mostly Public"
+msgstr "Social - surtout public"
+
+#: ../../Zotlabs/Access/PermissionRoles.php:184
+#: ../../include/permissions.php:904
+msgid "Social - Restricted"
+msgstr "Social - restreint"
+
+#: ../../Zotlabs/Access/PermissionRoles.php:185
+#: ../../include/permissions.php:904
+msgid "Social - Private"
+msgstr "Social - privé"
+
+#: ../../Zotlabs/Access/PermissionRoles.php:188
+#: ../../include/permissions.php:905
+msgid "Community Forum"
+msgstr "Forum communautaire"
+
+#: ../../Zotlabs/Access/PermissionRoles.php:189
+#: ../../include/permissions.php:905
+msgid "Forum - Mostly Public"
+msgstr "Forum - surtout public"
+
+#: ../../Zotlabs/Access/PermissionRoles.php:190
+#: ../../include/permissions.php:905
+msgid "Forum - Restricted"
+msgstr "Forum - restreint"
+
+#: ../../Zotlabs/Access/PermissionRoles.php:191
+#: ../../include/permissions.php:905
+msgid "Forum - Private"
+msgstr "Forum - privé"
+
+#: ../../Zotlabs/Access/PermissionRoles.php:194
+#: ../../include/permissions.php:906
+msgid "Feed Republish"
+msgstr "Republication de flux"
+
+#: ../../Zotlabs/Access/PermissionRoles.php:195
+#: ../../include/permissions.php:906
+msgid "Feed - Mostly Public"
+msgstr "Flux - surtout public"
+
+#: ../../Zotlabs/Access/PermissionRoles.php:196
+#: ../../include/permissions.php:906
+msgid "Feed - Restricted"
+msgstr "Flux - restreint"
+
+#: ../../Zotlabs/Access/PermissionRoles.php:199
+#: ../../include/permissions.php:907
+msgid "Special Purpose"
+msgstr "Utilisation spécifique"
+
+#: ../../Zotlabs/Access/PermissionRoles.php:200
+#: ../../include/permissions.php:907
+msgid "Special - Celebrity/Soapbox"
+msgstr "Spécial - célébrité/promotion"
+
+#: ../../Zotlabs/Access/PermissionRoles.php:201
+#: ../../include/permissions.php:907
+msgid "Special - Group Repository"
+msgstr "Spécial - dépôt partagé"
+
+#: ../../Zotlabs/Access/PermissionRoles.php:204 ../../include/selectors.php:49
+#: ../../include/selectors.php:66 ../../include/selectors.php:104
+#: ../../include/selectors.php:140 ../../include/permissions.php:908
+msgid "Other"
+msgstr "Autre"
+
+#: ../../Zotlabs/Access/PermissionRoles.php:205
+#: ../../include/permissions.php:908
+msgid "Custom/Expert Mode"
+msgstr "Mode expert/spécifique"
+
+#: ../../Zotlabs/Access/Permissions.php:30
+msgid "Can view my channel stream and posts"
+msgstr ""
+
+#: ../../Zotlabs/Access/Permissions.php:31 ../../include/permissions.php:33
+msgid "Can send me their channel stream and posts"
+msgstr "Peuvent m'envoyer leur flux et les publications de leur canal"
+
+#: ../../Zotlabs/Access/Permissions.php:32 ../../include/permissions.php:27
+msgid "Can view my default channel profile"
+msgstr "Peut voir le profil du canal par défaut."
+
+#: ../../Zotlabs/Access/Permissions.php:33 ../../include/permissions.php:28
+msgid "Can view my connections"
+msgstr "Peut voir mes contacts"
+
+#: ../../Zotlabs/Access/Permissions.php:34 ../../include/permissions.php:29
+msgid "Can view my file storage and photos"
+msgstr "Peut voir mes fichiers et photos"
+
+#: ../../Zotlabs/Access/Permissions.php:35
+msgid "Can upload/modify my file storage and photos"
+msgstr ""
+
+#: ../../Zotlabs/Access/Permissions.php:36
+msgid "Can view my channel webpages"
+msgstr ""
+
+#: ../../Zotlabs/Access/Permissions.php:37
+msgid "Can create/edit my channel webpages"
+msgstr ""
+
+#: ../../Zotlabs/Access/Permissions.php:38
+msgid "Can post on my channel (wall) page"
+msgstr ""
+
+#: ../../Zotlabs/Access/Permissions.php:39 ../../include/permissions.php:35
+msgid "Can comment on or like my posts"
+msgstr "Peuvent commenter et/ou aimer mes publications"
+
+#: ../../Zotlabs/Access/Permissions.php:40 ../../include/permissions.php:36
+msgid "Can send me private mail messages"
+msgstr "Peuvent m'envoyer des messages privés"
+
+#: ../../Zotlabs/Access/Permissions.php:41
+msgid "Can like/dislike profiles and profile things"
+msgstr ""
+
+#: ../../Zotlabs/Access/Permissions.php:42
+msgid "Can forward to all my channel connections via @+ mentions in posts"
+msgstr ""
+
+#: ../../Zotlabs/Access/Permissions.php:43
+msgid "Can chat with me"
+msgstr ""
+
+#: ../../Zotlabs/Access/Permissions.php:44 ../../include/permissions.php:44
+msgid "Can source my public posts in derived channels"
+msgstr "Peut rediriger mes publications publiques vers des canaux dérivés"
+
+#: ../../Zotlabs/Access/Permissions.php:45
+msgid "Can administer my channel"
+msgstr ""
+
#: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:239
msgid "parent"
msgstr "retour"
-#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2620
+#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2605
msgid "Collection"
msgstr "Groupe de contacts"
@@ -47,16 +192,17 @@ msgstr "Calendrier - Messages entrants"
msgid "Schedule Outbox"
msgstr "Calendrier - Messages sortants"
-#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:798
-#: ../../Zotlabs/Module/Photos.php:1243 ../../Zotlabs/Lib/Apps.php:486
-#: ../../Zotlabs/Lib/Apps.php:561 ../../include/widgets.php:1505
-#: ../../include/conversation.php:1032
+#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:796
+#: ../../Zotlabs/Module/Photos.php:1241
+#: ../../Zotlabs/Module/Embedphotos.php:147 ../../Zotlabs/Lib/Apps.php:490
+#: ../../Zotlabs/Lib/Apps.php:565 ../../include/conversation.php:1035
+#: ../../include/widgets.php:1599
msgid "Unknown"
msgstr "Inconnu"
#: ../../Zotlabs/Storage/Browser.php:226 ../../Zotlabs/Module/Fbrowser.php:85
-#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:93
-#: ../../include/conversation.php:1639
+#: ../../Zotlabs/Lib/Apps.php:217 ../../include/nav.php:93
+#: ../../include/conversation.php:1654
msgid "Files"
msgstr "Fichiers"
@@ -69,22 +215,23 @@ msgid "Shared"
msgstr "Partagé"
#: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:306
-#: ../../Zotlabs/Module/Blocks.php:156 ../../Zotlabs/Module/Layouts.php:182
-#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/New_channel.php:142
-#: ../../Zotlabs/Module/Webpages.php:186
+#: ../../Zotlabs/Module/Layouts.php:184 ../../Zotlabs/Module/Menu.php:118
+#: ../../Zotlabs/Module/New_channel.php:142
+#: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Webpages.php:193
msgid "Create"
msgstr "Créer"
#: ../../Zotlabs/Storage/Browser.php:231 ../../Zotlabs/Storage/Browser.php:308
#: ../../Zotlabs/Module/Cover_photo.php:357
-#: ../../Zotlabs/Module/Photos.php:825 ../../Zotlabs/Module/Photos.php:1364
-#: ../../Zotlabs/Module/Profile_photo.php:368 ../../include/widgets.php:1518
+#: ../../Zotlabs/Module/Photos.php:823 ../../Zotlabs/Module/Photos.php:1362
+#: ../../Zotlabs/Module/Profile_photo.php:390
+#: ../../Zotlabs/Module/Embedphotos.php:159 ../../include/widgets.php:1612
msgid "Upload"
msgstr "Envoyer"
#: ../../Zotlabs/Storage/Browser.php:235 ../../Zotlabs/Module/Chat.php:247
-#: ../../Zotlabs/Module/Admin.php:1223 ../../Zotlabs/Module/Settings.php:592
-#: ../../Zotlabs/Module/Settings.php:618
+#: ../../Zotlabs/Module/Admin.php:1223 ../../Zotlabs/Module/Settings.php:646
+#: ../../Zotlabs/Module/Settings.php:672
#: ../../Zotlabs/Module/Sharedwithme.php:99
msgid "Name"
msgstr "Nom"
@@ -94,7 +241,7 @@ msgid "Type"
msgstr "Type"
#: ../../Zotlabs/Storage/Browser.php:237
-#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1344
+#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1324
msgid "Size"
msgstr "Taille"
@@ -103,34 +250,32 @@ msgstr "Taille"
msgid "Last Modified"
msgstr "Modifié le"
-#: ../../Zotlabs/Storage/Browser.php:240 ../../Zotlabs/Module/Blocks.php:157
-#: ../../Zotlabs/Module/Editblock.php:109
+#: ../../Zotlabs/Storage/Browser.php:240 ../../Zotlabs/Module/Editpost.php:84
#: ../../Zotlabs/Module/Connections.php:290
#: ../../Zotlabs/Module/Connections.php:310
-#: ../../Zotlabs/Module/Editpost.php:84
-#: ../../Zotlabs/Module/Editlayout.php:113
-#: ../../Zotlabs/Module/Editwebpage.php:146
-#: ../../Zotlabs/Module/Layouts.php:190 ../../Zotlabs/Module/Menu.php:112
-#: ../../Zotlabs/Module/Admin.php:2113 ../../Zotlabs/Module/Settings.php:652
-#: ../../Zotlabs/Module/Thing.php:260 ../../Zotlabs/Module/Webpages.php:187
-#: ../../Zotlabs/Lib/Apps.php:337 ../../Zotlabs/Lib/ThreadItem.php:106
-#: ../../include/channel.php:937 ../../include/channel.php:941
-#: ../../include/menu.php:108 ../../include/page_widgets.php:8
-#: ../../include/page_widgets.php:36
+#: ../../Zotlabs/Module/Editlayout.php:114
+#: ../../Zotlabs/Module/Editwebpage.php:145
+#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Menu.php:112
+#: ../../Zotlabs/Module/Admin.php:2113 ../../Zotlabs/Module/Blocks.php:160
+#: ../../Zotlabs/Module/Editblock.php:109
+#: ../../Zotlabs/Module/Settings.php:706 ../../Zotlabs/Module/Thing.php:260
+#: ../../Zotlabs/Module/Webpages.php:194 ../../Zotlabs/Lib/Apps.php:341
+#: ../../Zotlabs/Lib/ThreadItem.php:106 ../../include/page_widgets.php:9
+#: ../../include/page_widgets.php:39 ../../include/channel.php:976
+#: ../../include/channel.php:980 ../../include/menu.php:108
msgid "Edit"
msgstr "Modifier"
-#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Blocks.php:159
-#: ../../Zotlabs/Module/Connedit.php:572
-#: ../../Zotlabs/Module/Editblock.php:134
+#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Connedit.php:602
#: ../../Zotlabs/Module/Connections.php:263
-#: ../../Zotlabs/Module/Editlayout.php:136
-#: ../../Zotlabs/Module/Editwebpage.php:170 ../../Zotlabs/Module/Group.php:177
-#: ../../Zotlabs/Module/Photos.php:1173 ../../Zotlabs/Module/Admin.php:1039
+#: ../../Zotlabs/Module/Editlayout.php:137
+#: ../../Zotlabs/Module/Editwebpage.php:169 ../../Zotlabs/Module/Group.php:177
+#: ../../Zotlabs/Module/Photos.php:1171 ../../Zotlabs/Module/Admin.php:1039
#: ../../Zotlabs/Module/Admin.php:1213 ../../Zotlabs/Module/Admin.php:2114
-#: ../../Zotlabs/Module/Settings.php:653 ../../Zotlabs/Module/Thing.php:261
-#: ../../Zotlabs/Module/Webpages.php:189 ../../Zotlabs/Lib/Apps.php:338
-#: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:657
+#: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Editblock.php:134
+#: ../../Zotlabs/Module/Settings.php:707 ../../Zotlabs/Module/Thing.php:261
+#: ../../Zotlabs/Module/Webpages.php:196 ../../Zotlabs/Lib/Apps.php:342
+#: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:660
msgid "Delete"
msgstr "Supprimer"
@@ -156,74 +301,73 @@ msgstr "Nouveau dossier"
msgid "Upload file"
msgstr "Téléverser un fichier"
-#: ../../Zotlabs/Web/WebServer.php:120 ../../Zotlabs/Module/Dreport.php:10
-#: ../../Zotlabs/Module/Dreport.php:49 ../../Zotlabs/Module/Group.php:72
-#: ../../Zotlabs/Module/Like.php:284 ../../Zotlabs/Module/Import_items.php:112
+#: ../../Zotlabs/Web/WebServer.php:127 ../../Zotlabs/Module/Dreport.php:10
+#: ../../Zotlabs/Module/Dreport.php:66 ../../Zotlabs/Module/Group.php:72
+#: ../../Zotlabs/Module/Like.php:283 ../../Zotlabs/Module/Import_items.php:114
#: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:62
-#: ../../include/items.php:385
+#: ../../include/items.php:384
msgid "Permission denied"
msgstr "Accès refusé"
-#: ../../Zotlabs/Web/WebServer.php:121 ../../Zotlabs/Web/Router.php:65
-#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Blocks.php:73
-#: ../../Zotlabs/Module/Blocks.php:80 ../../Zotlabs/Module/Channel.php:105
-#: ../../Zotlabs/Module/Channel.php:226 ../../Zotlabs/Module/Channel.php:267
-#: ../../Zotlabs/Module/Chat.php:100 ../../Zotlabs/Module/Chat.php:105
-#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Block.php:26
-#: ../../Zotlabs/Module/Block.php:76 ../../Zotlabs/Module/Bookmarks.php:61
-#: ../../Zotlabs/Module/Connedit.php:366 ../../Zotlabs/Module/Editblock.php:67
-#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Connections.php:33
+#: ../../Zotlabs/Web/WebServer.php:128 ../../Zotlabs/Web/Router.php:65
+#: ../../Zotlabs/Module/Achievements.php:34
+#: ../../Zotlabs/Module/Connedit.php:390 ../../Zotlabs/Module/Id.php:76
+#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Events.php:264
+#: ../../Zotlabs/Module/Bookmarks.php:61 ../../Zotlabs/Module/Editpost.php:17
+#: ../../Zotlabs/Module/Page.php:35 ../../Zotlabs/Module/Page.php:91
+#: ../../Zotlabs/Module/Connections.php:33
#: ../../Zotlabs/Module/Cover_photo.php:277
-#: ../../Zotlabs/Module/Cover_photo.php:290
-#: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Events.php:265
-#: ../../Zotlabs/Module/Editlayout.php:67
+#: ../../Zotlabs/Module/Cover_photo.php:290 ../../Zotlabs/Module/Chat.php:100
+#: ../../Zotlabs/Module/Chat.php:105 ../../Zotlabs/Module/Editlayout.php:67
#: ../../Zotlabs/Module/Editlayout.php:90
-#: ../../Zotlabs/Module/Editwebpage.php:69
-#: ../../Zotlabs/Module/Editwebpage.php:90
-#: ../../Zotlabs/Module/Editwebpage.php:105
-#: ../../Zotlabs/Module/Editwebpage.php:127 ../../Zotlabs/Module/Group.php:13
-#: ../../Zotlabs/Module/Api.php:13 ../../Zotlabs/Module/Api.php:18
-#: ../../Zotlabs/Module/Filestorage.php:24
-#: ../../Zotlabs/Module/Filestorage.php:79
-#: ../../Zotlabs/Module/Filestorage.php:94
-#: ../../Zotlabs/Module/Filestorage.php:121 ../../Zotlabs/Module/Item.php:210
-#: ../../Zotlabs/Module/Item.php:218 ../../Zotlabs/Module/Item.php:1070
+#: ../../Zotlabs/Module/Editwebpage.php:68
+#: ../../Zotlabs/Module/Editwebpage.php:89
+#: ../../Zotlabs/Module/Editwebpage.php:104
+#: ../../Zotlabs/Module/Editwebpage.php:126 ../../Zotlabs/Module/Group.php:13
+#: ../../Zotlabs/Module/Appman.php:75 ../../Zotlabs/Module/Pdledit.php:26
+#: ../../Zotlabs/Module/Filestorage.php:23
+#: ../../Zotlabs/Module/Filestorage.php:78
+#: ../../Zotlabs/Module/Filestorage.php:93
+#: ../../Zotlabs/Module/Filestorage.php:120
#: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78
-#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Id.php:76
-#: ../../Zotlabs/Module/Like.php:181 ../../Zotlabs/Module/Invite.php:17
-#: ../../Zotlabs/Module/Invite.php:91 ../../Zotlabs/Module/Locs.php:87
-#: ../../Zotlabs/Module/Mail.php:129 ../../Zotlabs/Module/Manage.php:10
-#: ../../Zotlabs/Module/Menu.php:78 ../../Zotlabs/Module/Message.php:18
-#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Network.php:17
+#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Like.php:181
+#: ../../Zotlabs/Module/Profiles.php:203 ../../Zotlabs/Module/Profiles.php:601
+#: ../../Zotlabs/Module/Item.php:213 ../../Zotlabs/Module/Item.php:221
+#: ../../Zotlabs/Module/Item.php:1071 ../../Zotlabs/Module/Photos.php:73
+#: ../../Zotlabs/Module/Invite.php:17 ../../Zotlabs/Module/Invite.php:91
+#: ../../Zotlabs/Module/Locs.php:87 ../../Zotlabs/Module/Mail.php:121
+#: ../../Zotlabs/Module/Manage.php:10 ../../Zotlabs/Module/Menu.php:78
+#: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Mood.php:116
+#: ../../Zotlabs/Module/Network.php:15 ../../Zotlabs/Module/Channel.php:104
+#: ../../Zotlabs/Module/Channel.php:225 ../../Zotlabs/Module/Channel.php:266
#: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/New_channel.php:77
#: ../../Zotlabs/Module/New_channel.php:104
-#: ../../Zotlabs/Module/Notifications.php:70
-#: ../../Zotlabs/Module/Photos.php:75 ../../Zotlabs/Module/Page.php:35
-#: ../../Zotlabs/Module/Page.php:90 ../../Zotlabs/Module/Pdledit.php:26
-#: ../../Zotlabs/Module/Poke.php:137 ../../Zotlabs/Module/Profile.php:68
-#: ../../Zotlabs/Module/Profile.php:76 ../../Zotlabs/Module/Profiles.php:203
-#: ../../Zotlabs/Module/Profiles.php:601
-#: ../../Zotlabs/Module/Profile_photo.php:256
-#: ../../Zotlabs/Module/Profile_photo.php:269
-#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Appman.php:75
-#: ../../Zotlabs/Module/Register.php:77 ../../Zotlabs/Module/Regmod.php:21
+#: ../../Zotlabs/Module/Notifications.php:70 ../../Zotlabs/Module/Poke.php:137
+#: ../../Zotlabs/Module/Profile.php:68 ../../Zotlabs/Module/Profile.php:76
+#: ../../Zotlabs/Module/Block.php:26 ../../Zotlabs/Module/Block.php:76
+#: ../../Zotlabs/Module/Profile_photo.php:265
+#: ../../Zotlabs/Module/Profile_photo.php:278
+#: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80
+#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Editblock.php:67
+#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Register.php:77
+#: ../../Zotlabs/Module/Regmod.php:21
#: ../../Zotlabs/Module/Service_limits.php:11
-#: ../../Zotlabs/Module/Settings.php:572 ../../Zotlabs/Module/Setup.php:215
-#: ../../Zotlabs/Module/Sharedwithme.php:11
+#: ../../Zotlabs/Module/Settings.php:626 ../../Zotlabs/Module/Setup.php:215
+#: ../../Zotlabs/Module/Sharedwithme.php:11 ../../Zotlabs/Module/Thing.php:274
+#: ../../Zotlabs/Module/Thing.php:294 ../../Zotlabs/Module/Thing.php:331
#: ../../Zotlabs/Module/Sources.php:74 ../../Zotlabs/Module/Suggest.php:30
-#: ../../Zotlabs/Module/Thing.php:274 ../../Zotlabs/Module/Thing.php:294
-#: ../../Zotlabs/Module/Thing.php:331
-#: ../../Zotlabs/Module/Viewconnections.php:25
-#: ../../Zotlabs/Module/Viewconnections.php:30
-#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Webpages.php:74
-#: ../../Zotlabs/Lib/Chatroom.php:137 ../../include/items.php:3438
-#: ../../include/attach.php:141 ../../include/attach.php:189
-#: ../../include/attach.php:252 ../../include/attach.php:266
-#: ../../include/attach.php:273 ../../include/attach.php:338
-#: ../../include/attach.php:352 ../../include/attach.php:359
-#: ../../include/attach.php:437 ../../include/attach.php:895
-#: ../../include/attach.php:966 ../../include/attach.php:1118
-#: ../../include/photos.php:27
+#: ../../Zotlabs/Module/Webpages.php:73
+#: ../../Zotlabs/Module/Viewconnections.php:28
+#: ../../Zotlabs/Module/Viewconnections.php:33
+#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Api.php:13
+#: ../../Zotlabs/Module/Api.php:18 ../../Zotlabs/Lib/Chatroom.php:137
+#: ../../include/photos.php:27 ../../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:439
+#: ../../include/attach.php:901 ../../include/attach.php:972
+#: ../../include/attach.php:1124 ../../include/items.php:3448
msgid "Permission denied."
msgstr "Permission refusée."
@@ -231,9 +375,9 @@ msgstr "Permission refusée."
msgid "Not Found"
msgstr "Introuvable"
-#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Block.php:79
-#: ../../Zotlabs/Module/Display.php:117 ../../Zotlabs/Module/Help.php:97
-#: ../../Zotlabs/Module/Page.php:93
+#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Display.php:118
+#: ../../Zotlabs/Module/Page.php:94 ../../Zotlabs/Module/Help.php:97
+#: ../../Zotlabs/Module/Block.php:79
msgid "Page not found."
msgstr "Page introuvable."
@@ -249,13 +393,13 @@ msgstr "Authentification distante bloquée. Vous êtes connecté(e) sur ce site
msgid "Welcome %s. Remote authentication successful."
msgstr "Bienvenue %s. L'authentification distante a fonctionné."
-#: ../../Zotlabs/Module/Achievements.php:15 ../../Zotlabs/Module/Blocks.php:33
-#: ../../Zotlabs/Module/Connect.php:17 ../../Zotlabs/Module/Editblock.php:31
-#: ../../Zotlabs/Module/Editlayout.php:31
-#: ../../Zotlabs/Module/Editwebpage.php:33
-#: ../../Zotlabs/Module/Filestorage.php:60 ../../Zotlabs/Module/Hcard.php:12
-#: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Profile.php:20
-#: ../../Zotlabs/Module/Webpages.php:34 ../../include/channel.php:837
+#: ../../Zotlabs/Module/Achievements.php:15
+#: ../../Zotlabs/Module/Connect.php:17 ../../Zotlabs/Module/Editlayout.php:31
+#: ../../Zotlabs/Module/Editwebpage.php:32 ../../Zotlabs/Module/Hcard.php:12
+#: ../../Zotlabs/Module/Filestorage.php:59 ../../Zotlabs/Module/Layouts.php:31
+#: ../../Zotlabs/Module/Profile.php:20 ../../Zotlabs/Module/Blocks.php:33
+#: ../../Zotlabs/Module/Editblock.php:31 ../../Zotlabs/Module/Webpages.php:33
+#: ../../include/channel.php:876
msgid "Requested profile is not available."
msgstr "Profil demandé non disponible."
@@ -263,229 +407,6 @@ msgstr "Profil demandé non disponible."
msgid "Some blurb about what to do when you're new here"
msgstr "Quelques mots sur quoi faire quand on est nouveau ici"
-#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:152
-#: ../../Zotlabs/Module/Editblock.php:108
-msgid "Block Name"
-msgstr "Nom du Bloc"
-
-#: ../../Zotlabs/Module/Blocks.php:151 ../../include/text.php:2265
-msgid "Blocks"
-msgstr "Blocs"
-
-#: ../../Zotlabs/Module/Blocks.php:153
-msgid "Block Title"
-msgstr "Titre du bloc"
-
-#: ../../Zotlabs/Module/Blocks.php:154 ../../Zotlabs/Module/Layouts.php:188
-#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Webpages.php:198
-#: ../../include/page_widgets.php:44
-msgid "Created"
-msgstr "Créé(e)"
-
-#: ../../Zotlabs/Module/Blocks.php:155 ../../Zotlabs/Module/Layouts.php:189
-#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Webpages.php:199
-#: ../../include/page_widgets.php:45
-msgid "Edited"
-msgstr "Modifié(e)"
-
-#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:191
-#: ../../Zotlabs/Module/Photos.php:1072 ../../Zotlabs/Module/Webpages.php:188
-#: ../../include/conversation.php:1208
-msgid "Share"
-msgstr "Partager"
-
-#: ../../Zotlabs/Module/Blocks.php:163 ../../Zotlabs/Module/Layouts.php:195
-#: ../../Zotlabs/Module/Pubsites.php:47 ../../Zotlabs/Module/Webpages.php:193
-#: ../../include/page_widgets.php:39
-msgid "View"
-msgstr "Voir"
-
-#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Block.php:43
-#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Wall_upload.php:33
-msgid "Channel not found."
-msgstr "Canal introuvable."
-
-#: ../../Zotlabs/Module/Cal.php:69
-msgid "Permissions denied."
-msgstr "Permissions refusées."
-
-#: ../../Zotlabs/Module/Cal.php:259 ../../Zotlabs/Module/Events.php:588
-msgid "l, F j"
-msgstr "l, F j"
-
-#: ../../Zotlabs/Module/Cal.php:308 ../../Zotlabs/Module/Events.php:637
-#: ../../include/text.php:1732
-msgid "Link to Source"
-msgstr "Lien vers la Source"
-
-#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665
-msgid "Edit Event"
-msgstr "Modifier l'événement"
-
-#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665
-msgid "Create Event"
-msgstr "Créer un événement"
-
-#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339
-#: ../../Zotlabs/Module/Events.php:666 ../../Zotlabs/Module/Events.php:673
-#: ../../Zotlabs/Module/Photos.php:949
-msgid "Previous"
-msgstr "Précédent"
-
-#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340
-#: ../../Zotlabs/Module/Events.php:667 ../../Zotlabs/Module/Events.php:674
-#: ../../Zotlabs/Module/Photos.php:958 ../../Zotlabs/Module/Setup.php:267
-msgid "Next"
-msgstr "Suivant"
-
-#: ../../Zotlabs/Module/Cal.php:334 ../../Zotlabs/Module/Events.php:668
-#: ../../include/widgets.php:755
-msgid "Export"
-msgstr "Export"
-
-#: ../../Zotlabs/Module/Cal.php:337 ../../Zotlabs/Module/Events.php:671
-#: ../../include/widgets.php:756
-msgid "Import"
-msgstr "Import"
-
-#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Chat.php:196
-#: ../../Zotlabs/Module/Chat.php:238 ../../Zotlabs/Module/Connect.php:98
-#: ../../Zotlabs/Module/Connedit.php:731 ../../Zotlabs/Module/Events.php:475
-#: ../../Zotlabs/Module/Events.php:672 ../../Zotlabs/Module/Group.php:85
-#: ../../Zotlabs/Module/Filestorage.php:162
-#: ../../Zotlabs/Module/Import.php:550
-#: ../../Zotlabs/Module/Import_items.php:120
-#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121
-#: ../../Zotlabs/Module/Mail.php:378 ../../Zotlabs/Module/Mood.php:139
-#: ../../Zotlabs/Module/Mitem.php:235 ../../Zotlabs/Module/Photos.php:677
-#: ../../Zotlabs/Module/Photos.php:1052 ../../Zotlabs/Module/Photos.php:1092
-#: ../../Zotlabs/Module/Photos.php:1210 ../../Zotlabs/Module/Pconfig.php:107
-#: ../../Zotlabs/Module/Pdledit.php:66 ../../Zotlabs/Module/Poke.php:186
-#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Rate.php:170
-#: ../../Zotlabs/Module/Admin.php:492 ../../Zotlabs/Module/Admin.php:688
-#: ../../Zotlabs/Module/Admin.php:771 ../../Zotlabs/Module/Admin.php:1032
-#: ../../Zotlabs/Module/Admin.php:1211 ../../Zotlabs/Module/Admin.php:1421
-#: ../../Zotlabs/Module/Admin.php:1648 ../../Zotlabs/Module/Admin.php:1733
-#: ../../Zotlabs/Module/Admin.php:2116 ../../Zotlabs/Module/Appman.php:126
-#: ../../Zotlabs/Module/Settings.php:590 ../../Zotlabs/Module/Settings.php:703
-#: ../../Zotlabs/Module/Settings.php:731 ../../Zotlabs/Module/Settings.php:754
-#: ../../Zotlabs/Module/Settings.php:842
-#: ../../Zotlabs/Module/Settings.php:1034 ../../Zotlabs/Module/Setup.php:312
-#: ../../Zotlabs/Module/Setup.php:353 ../../Zotlabs/Module/Sources.php:114
-#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Thing.php:316
-#: ../../Zotlabs/Module/Thing.php:362 ../../Zotlabs/Module/Xchan.php:15
-#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/widgets.php:757
-#: ../../include/widgets.php:769 ../../include/js_strings.php:22
-#: ../../view/theme/redbasic/php/config.php:99
-msgid "Submit"
-msgstr "Envoyer"
-
-#: ../../Zotlabs/Module/Cal.php:341 ../../Zotlabs/Module/Events.php:675
-msgid "Today"
-msgstr "Aujourd'hui"
-
-#: ../../Zotlabs/Module/Channel.php:29 ../../Zotlabs/Module/Chat.php:25
-msgid "You must be logged in to see this page."
-msgstr "Vous devez vous connecter pour voir cette page."
-
-#: ../../Zotlabs/Module/Channel.php:41
-msgid "Posts and comments"
-msgstr ""
-
-#: ../../Zotlabs/Module/Channel.php:42
-msgid "Only posts"
-msgstr ""
-
-#: ../../Zotlabs/Module/Channel.php:102
-msgid "Insufficient permissions. Request redirected to profile page."
-msgstr "Permissions insuffisantes. Demande redirigée vers la page du profil."
-
-#: ../../Zotlabs/Module/Chat.php:181
-msgid "Room not found"
-msgstr "Salon introuvable"
-
-#: ../../Zotlabs/Module/Chat.php:197
-msgid "Leave Room"
-msgstr "Quitter le salon"
-
-#: ../../Zotlabs/Module/Chat.php:198
-msgid "Delete Room"
-msgstr ""
-
-#: ../../Zotlabs/Module/Chat.php:199
-msgid "I am away right now"
-msgstr "Je suis absent en ce moment"
-
-#: ../../Zotlabs/Module/Chat.php:200
-msgid "I am online"
-msgstr "Je suis en ligne"
-
-#: ../../Zotlabs/Module/Chat.php:202
-msgid "Bookmark this room"
-msgstr "Marquer ce salon comme favori"
-
-#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:205
-#: ../../Zotlabs/Module/Mail.php:314 ../../include/conversation.php:1176
-msgid "Please enter a link URL:"
-msgstr "Merci d'entrer l'URL d'un lien&nbsp;:"
-
-#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:258
-#: ../../Zotlabs/Module/Mail.php:383 ../../Zotlabs/Lib/ThreadItem.php:722
-#: ../../include/conversation.php:1256
-msgid "Encrypt text"
-msgstr "Chiffrer le texte"
-
-#: ../../Zotlabs/Module/Chat.php:207 ../../Zotlabs/Module/Editblock.php:111
-#: ../../Zotlabs/Module/Editwebpage.php:147 ../../Zotlabs/Module/Mail.php:252
-#: ../../Zotlabs/Module/Mail.php:377 ../../include/conversation.php:1143
-msgid "Insert web link"
-msgstr "Insérer lien web"
-
-#: ../../Zotlabs/Module/Chat.php:218
-msgid "Feature disabled."
-msgstr ""
-
-#: ../../Zotlabs/Module/Chat.php:232
-msgid "New Chatroom"
-msgstr "Nouveau salon de discussion"
-
-#: ../../Zotlabs/Module/Chat.php:233
-msgid "Chatroom name"
-msgstr ""
-
-#: ../../Zotlabs/Module/Chat.php:234
-msgid "Expiration of chats (minutes)"
-msgstr "Expiration des discussions (en minutes)"
-
-#: ../../Zotlabs/Module/Chat.php:235 ../../Zotlabs/Module/Filestorage.php:153
-#: ../../Zotlabs/Module/Photos.php:671 ../../Zotlabs/Module/Photos.php:1045
-#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:359
-#: ../../include/acl_selectors.php:283
-msgid "Permissions"
-msgstr "Autorisations"
-
-#: ../../Zotlabs/Module/Chat.php:246
-#, php-format
-msgid "%1$s's Chatrooms"
-msgstr "Salons de %1$s"
-
-#: ../../Zotlabs/Module/Chat.php:251
-msgid "No chatrooms available"
-msgstr ""
-
-#: ../../Zotlabs/Module/Chat.php:252 ../../Zotlabs/Module/Manage.php:143
-#: ../../Zotlabs/Module/Profiles.php:778
-msgid "Create New"
-msgstr ""
-
-#: ../../Zotlabs/Module/Chat.php:255
-msgid "Expiration"
-msgstr ""
-
-#: ../../Zotlabs/Module/Chat.php:256
-msgid "min"
-msgstr ""
-
#: ../../Zotlabs/Module/Chatsvc.php:117
msgid "Away"
msgstr "Absent"
@@ -494,65 +415,6 @@ msgstr "Absent"
msgid "Online"
msgstr "En ligne"
-#: ../../Zotlabs/Module/Block.php:31 ../../Zotlabs/Module/Page.php:40
-msgid "Invalid item."
-msgstr "Élément invalide."
-
-#: ../../Zotlabs/Module/Bookmarks.php:53
-msgid "Bookmark added"
-msgstr "Favori ajouté"
-
-#: ../../Zotlabs/Module/Bookmarks.php:75
-msgid "My Bookmarks"
-msgstr "Mes Favoris"
-
-#: ../../Zotlabs/Module/Bookmarks.php:86
-msgid "My Connections Bookmarks"
-msgstr "Favoris de mes contacts"
-
-#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109
-msgid "Continue"
-msgstr "Continuer"
-
-#: ../../Zotlabs/Module/Connect.php:90
-msgid "Premium Channel Setup"
-msgstr "Configuration du canal VIP"
-
-#: ../../Zotlabs/Module/Connect.php:92
-msgid "Enable premium channel connection restrictions"
-msgstr "Activer les restrictions liées au canal VIP"
-
-#: ../../Zotlabs/Module/Connect.php:93
-msgid ""
-"Please enter your restrictions or conditions, such as paypal receipt, usage "
-"guidelines, etc."
-msgstr "Merci de saisir les restrictions et/ou conditions - reçu Paypal, transaction Bitcoin, ligne de conduite, ..."
-
-#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115
-msgid ""
-"This channel may require additional steps or acknowledgement of the "
-"following conditions prior to connecting:"
-msgstr "Avant d'autoriser la mise en relation, ce canal attire votre attention sur les conditions suivantes&nbsp;:"
-
-#: ../../Zotlabs/Module/Connect.php:96
-msgid ""
-"Potential connections will then see the following text before proceeding:"
-msgstr "Les contacts potentiels verront ce qui suit avant de pouvoir continuer&nbsp;:"
-
-#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118
-msgid ""
-"By continuing, I certify that I have complied with any instructions provided"
-" on this page."
-msgstr "En continuant, je certifie que je me suis conformé à toutes les instructions indiquées sur cette page."
-
-#: ../../Zotlabs/Module/Connect.php:106
-msgid "(No specific instructions have been provided by the channel owner.)"
-msgstr "(Aucune instruction spécifique n'a été fournie par le propriétaire du canal.)"
-
-#: ../../Zotlabs/Module/Connect.php:114
-msgid "Restricted or Premium Channel"
-msgstr "Canal VIP ou restreint"
-
#: ../../Zotlabs/Module/Connedit.php:80
msgid "Could not access contact record."
msgstr "Impossible d'accéder aux détails du contact."
@@ -561,317 +423,350 @@ msgstr "Impossible d'accéder aux détails du contact."
msgid "Could not locate selected profile."
msgstr "Impossible de localiser le profil sélectionné."
-#: ../../Zotlabs/Module/Connedit.php:227
+#: ../../Zotlabs/Module/Connedit.php:248
msgid "Connection updated."
msgstr "Contact mis à jour."
-#: ../../Zotlabs/Module/Connedit.php:229
+#: ../../Zotlabs/Module/Connedit.php:250
msgid "Failed to update connection record."
msgstr "Impossible de mettre à jour les détails du contact."
-#: ../../Zotlabs/Module/Connedit.php:276
+#: ../../Zotlabs/Module/Connedit.php:300
msgid "is now connected to"
msgstr "est maintenant connecté avec"
-#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Connedit.php:654
-#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460
-#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Api.php:89
-#: ../../Zotlabs/Module/Filestorage.php:157
-#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100
-#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158
-#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232
-#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666
-#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:459
-#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581
+#: ../../Zotlabs/Module/Connedit.php:403 ../../Zotlabs/Module/Connedit.php:685
+#: ../../Zotlabs/Module/Events.php:458 ../../Zotlabs/Module/Events.php:459
+#: ../../Zotlabs/Module/Events.php:468
+#: ../../Zotlabs/Module/Filestorage.php:156
+#: ../../Zotlabs/Module/Filestorage.php:164
+#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Photos.php:664
+#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157
+#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:159
+#: ../../Zotlabs/Module/Mitem.php:232 ../../Zotlabs/Module/Mitem.php:233
+#: ../../Zotlabs/Module/Admin.php:459 ../../Zotlabs/Module/Removeme.php:63
+#: ../../Zotlabs/Module/Settings.php:635 ../../Zotlabs/Module/Api.php:89
#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144
#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105
-#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707
+#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1708
msgid "No"
msgstr "Non"
-#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Events.php:459
-#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:469
-#: ../../Zotlabs/Module/Api.php:88 ../../Zotlabs/Module/Filestorage.php:157
-#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100
-#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158
-#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232
-#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666
-#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:461
-#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581
+#: ../../Zotlabs/Module/Connedit.php:403 ../../Zotlabs/Module/Events.php:458
+#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:468
+#: ../../Zotlabs/Module/Filestorage.php:156
+#: ../../Zotlabs/Module/Filestorage.php:164
+#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Photos.php:664
+#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157
+#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:159
+#: ../../Zotlabs/Module/Mitem.php:232 ../../Zotlabs/Module/Mitem.php:233
+#: ../../Zotlabs/Module/Admin.php:461 ../../Zotlabs/Module/Removeme.php:63
+#: ../../Zotlabs/Module/Settings.php:635 ../../Zotlabs/Module/Api.php:88
#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144
#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105
-#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707
+#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1708
msgid "Yes"
msgstr "Oui"
-#: ../../Zotlabs/Module/Connedit.php:411
+#: ../../Zotlabs/Module/Connedit.php:435
msgid "Could not access address book record."
msgstr "Impossible d'accéder aux détails du carnet d'adresses."
-#: ../../Zotlabs/Module/Connedit.php:425
+#: ../../Zotlabs/Module/Connedit.php:455
msgid "Refresh failed - channel is currently unavailable."
msgstr "Actualisation impossible - le canal est indisponible."
-#: ../../Zotlabs/Module/Connedit.php:440 ../../Zotlabs/Module/Connedit.php:449
-#: ../../Zotlabs/Module/Connedit.php:458 ../../Zotlabs/Module/Connedit.php:467
-#: ../../Zotlabs/Module/Connedit.php:480
+#: ../../Zotlabs/Module/Connedit.php:470 ../../Zotlabs/Module/Connedit.php:479
+#: ../../Zotlabs/Module/Connedit.php:488 ../../Zotlabs/Module/Connedit.php:497
+#: ../../Zotlabs/Module/Connedit.php:510
msgid "Unable to set address book parameters."
msgstr "Impossible de régler les paramètres du carnet d'adresses."
-#: ../../Zotlabs/Module/Connedit.php:503
+#: ../../Zotlabs/Module/Connedit.php:533
msgid "Connection has been removed."
msgstr "Le contact a été supprimé."
-#: ../../Zotlabs/Module/Connedit.php:519 ../../Zotlabs/Lib/Apps.php:219
-#: ../../include/nav.php:86 ../../include/conversation.php:954
+#: ../../Zotlabs/Module/Connedit.php:549 ../../Zotlabs/Lib/Apps.php:221
+#: ../../include/nav.php:86 ../../include/conversation.php:957
msgid "View Profile"
msgstr "Voir le profil"
-#: ../../Zotlabs/Module/Connedit.php:522
+#: ../../Zotlabs/Module/Connedit.php:552
#, php-format
msgid "View %s's profile"
msgstr "Voir le profil de %s"
-#: ../../Zotlabs/Module/Connedit.php:526
+#: ../../Zotlabs/Module/Connedit.php:556
msgid "Refresh Permissions"
msgstr "Actualiser les autorisations"
-#: ../../Zotlabs/Module/Connedit.php:529
+#: ../../Zotlabs/Module/Connedit.php:559
msgid "Fetch updated permissions"
msgstr "Récupérer les autorisations les plus récentes"
-#: ../../Zotlabs/Module/Connedit.php:533
+#: ../../Zotlabs/Module/Connedit.php:563
msgid "Recent Activity"
msgstr "Activité récente"
-#: ../../Zotlabs/Module/Connedit.php:536
+#: ../../Zotlabs/Module/Connedit.php:566
msgid "View recent posts and comments"
msgstr "Voir les publications et commentaires récents"
-#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1041
+#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1041
msgid "Unblock"
msgstr "Débloquer"
-#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1040
+#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1040
msgid "Block"
msgstr "Bloquer"
-#: ../../Zotlabs/Module/Connedit.php:543
+#: ../../Zotlabs/Module/Connedit.php:573
msgid "Block (or Unblock) all communications with this connection"
msgstr "Bloquer ou débloquer toute communication avec ce contact"
-#: ../../Zotlabs/Module/Connedit.php:544
+#: ../../Zotlabs/Module/Connedit.php:574
msgid "This connection is blocked!"
msgstr "Ce contact est bloqué&nbsp;!"
-#: ../../Zotlabs/Module/Connedit.php:548
+#: ../../Zotlabs/Module/Connedit.php:578
msgid "Unignore"
msgstr "Ne plus ignorer"
-#: ../../Zotlabs/Module/Connedit.php:548
+#: ../../Zotlabs/Module/Connedit.php:578
#: ../../Zotlabs/Module/Connections.php:277
#: ../../Zotlabs/Module/Notifications.php:55
msgid "Ignore"
msgstr "Ignorer"
-#: ../../Zotlabs/Module/Connedit.php:551
+#: ../../Zotlabs/Module/Connedit.php:581
msgid "Ignore (or Unignore) all inbound communications from this connection"
msgstr "Ignorer ou ne plus ignorer toute communication venant de ce contact"
-#: ../../Zotlabs/Module/Connedit.php:552
+#: ../../Zotlabs/Module/Connedit.php:582
msgid "This connection is ignored!"
msgstr "Ce contact est ignoré&nbsp;!"
-#: ../../Zotlabs/Module/Connedit.php:556
+#: ../../Zotlabs/Module/Connedit.php:586
msgid "Unarchive"
msgstr "Désarchiver"
-#: ../../Zotlabs/Module/Connedit.php:556
+#: ../../Zotlabs/Module/Connedit.php:586
msgid "Archive"
msgstr "Archiver"
-#: ../../Zotlabs/Module/Connedit.php:559
+#: ../../Zotlabs/Module/Connedit.php:589
msgid ""
"Archive (or Unarchive) this connection - mark channel dead but keep content"
msgstr "Archiver ou désarchiver ce contact - le marquer comme inactif mais conserver le contenu"
-#: ../../Zotlabs/Module/Connedit.php:560
+#: ../../Zotlabs/Module/Connedit.php:590
msgid "This connection is archived!"
msgstr "Ce contact est archivé&nbsp;!"
-#: ../../Zotlabs/Module/Connedit.php:564
+#: ../../Zotlabs/Module/Connedit.php:594
msgid "Unhide"
msgstr "Ne plus cacher"
-#: ../../Zotlabs/Module/Connedit.php:564
+#: ../../Zotlabs/Module/Connedit.php:594
msgid "Hide"
msgstr "Cacher"
-#: ../../Zotlabs/Module/Connedit.php:567
+#: ../../Zotlabs/Module/Connedit.php:597
msgid "Hide or Unhide this connection from your other connections"
msgstr "Cacher ou ne plus cacher ce contact vis-à-vis de vos autres contacts"
-#: ../../Zotlabs/Module/Connedit.php:568
+#: ../../Zotlabs/Module/Connedit.php:598
msgid "This connection is hidden!"
msgstr "Ce contact est caché&nbsp;!"
-#: ../../Zotlabs/Module/Connedit.php:575
+#: ../../Zotlabs/Module/Connedit.php:605
msgid "Delete this connection"
msgstr "Supprimer ce contact"
-#: ../../Zotlabs/Module/Connedit.php:590 ../../include/widgets.php:493
+#: ../../Zotlabs/Module/Connedit.php:620 ../../include/widgets.php:493
msgid "Me"
msgstr "Moi"
-#: ../../Zotlabs/Module/Connedit.php:591 ../../include/widgets.php:494
+#: ../../Zotlabs/Module/Connedit.php:621 ../../include/widgets.php:494
msgid "Family"
msgstr "Famille"
-#: ../../Zotlabs/Module/Connedit.php:592 ../../Zotlabs/Module/Settings.php:342
-#: ../../Zotlabs/Module/Settings.php:346 ../../Zotlabs/Module/Settings.php:347
-#: ../../Zotlabs/Module/Settings.php:350 ../../Zotlabs/Module/Settings.php:361
-#: ../../include/widgets.php:495 ../../include/selectors.php:123
-#: ../../include/channel.php:389 ../../include/channel.php:390
-#: ../../include/channel.php:397
+#: ../../Zotlabs/Module/Connedit.php:622 ../../Zotlabs/Module/Settings.php:391
+#: ../../Zotlabs/Module/Settings.php:395 ../../Zotlabs/Module/Settings.php:396
+#: ../../Zotlabs/Module/Settings.php:399 ../../Zotlabs/Module/Settings.php:410
+#: ../../include/channel.php:402 ../../include/channel.php:403
+#: ../../include/channel.php:410 ../../include/selectors.php:123
+#: ../../include/widgets.php:495
msgid "Friends"
msgstr "Amis"
-#: ../../Zotlabs/Module/Connedit.php:593 ../../include/widgets.php:496
+#: ../../Zotlabs/Module/Connedit.php:623 ../../include/widgets.php:496
msgid "Acquaintances"
msgstr "Connaissances"
-#: ../../Zotlabs/Module/Connedit.php:594
+#: ../../Zotlabs/Module/Connedit.php:624
#: ../../Zotlabs/Module/Connections.php:92
#: ../../Zotlabs/Module/Connections.php:107 ../../include/widgets.php:497
msgid "All"
msgstr "Tous"
-#: ../../Zotlabs/Module/Connedit.php:654
+#: ../../Zotlabs/Module/Connedit.php:685
msgid "Approve this connection"
msgstr "Autoriser ce contact"
-#: ../../Zotlabs/Module/Connedit.php:654
+#: ../../Zotlabs/Module/Connedit.php:685
msgid "Accept connection to allow communication"
msgstr "Accepter le contact pour permettre la communication"
-#: ../../Zotlabs/Module/Connedit.php:659
+#: ../../Zotlabs/Module/Connedit.php:690
msgid "Set Affinity"
msgstr "Définir le degré d'affinité"
-#: ../../Zotlabs/Module/Connedit.php:662
+#: ../../Zotlabs/Module/Connedit.php:693
msgid "Set Profile"
msgstr "Définir le profil"
-#: ../../Zotlabs/Module/Connedit.php:665
+#: ../../Zotlabs/Module/Connedit.php:696
msgid "Set Affinity & Profile"
msgstr "Définir le degré d'affinité et le profil"
-#: ../../Zotlabs/Module/Connedit.php:698
+#: ../../Zotlabs/Module/Connedit.php:745
msgid "none"
msgstr "Aucun"
-#: ../../Zotlabs/Module/Connedit.php:702 ../../include/widgets.php:614
+#: ../../Zotlabs/Module/Connedit.php:749 ../../include/widgets.php:623
msgid "Connection Default Permissions"
msgstr "Autorisations par défaut des contacts"
-#: ../../Zotlabs/Module/Connedit.php:702 ../../include/items.php:3926
+#: ../../Zotlabs/Module/Connedit.php:749 ../../include/items.php:3935
#, php-format
msgid "Connection: %s"
msgstr "Contact&nbsp;: %s"
-#: ../../Zotlabs/Module/Connedit.php:703
+#: ../../Zotlabs/Module/Connedit.php:750
msgid "Apply these permissions automatically"
msgstr "Appliquer ces permissions automatiquement"
-#: ../../Zotlabs/Module/Connedit.php:703
+#: ../../Zotlabs/Module/Connedit.php:750
msgid "Connection requests will be approved without your interaction"
msgstr "Les demandes de contact seront approuvées automatiquement"
-#: ../../Zotlabs/Module/Connedit.php:705
+#: ../../Zotlabs/Module/Connedit.php:752
msgid "This connection's primary address is"
msgstr "L'adresse principale de ce contact est"
-#: ../../Zotlabs/Module/Connedit.php:706
+#: ../../Zotlabs/Module/Connedit.php:753
msgid "Available locations:"
msgstr "Emplacements disponibles&nbsp;:"
-#: ../../Zotlabs/Module/Connedit.php:710
+#: ../../Zotlabs/Module/Connedit.php:757
msgid ""
"The permissions indicated on this page will be applied to all new "
"connections."
msgstr "Les permissions indiquées sur cette page seront appliquées à tous vos nouveaux contacts."
-#: ../../Zotlabs/Module/Connedit.php:711
+#: ../../Zotlabs/Module/Connedit.php:758
msgid "Connection Tools"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:713
+#: ../../Zotlabs/Module/Connedit.php:760
msgid "Slide to adjust your degree of friendship"
msgstr "Faites glisser pour ajuster votre proximité avec le contact"
-#: ../../Zotlabs/Module/Connedit.php:714 ../../Zotlabs/Module/Rate.php:159
+#: ../../Zotlabs/Module/Connedit.php:761 ../../Zotlabs/Module/Rate.php:159
#: ../../include/js_strings.php:20
msgid "Rating"
msgstr "Evaluation"
-#: ../../Zotlabs/Module/Connedit.php:715
+#: ../../Zotlabs/Module/Connedit.php:762
msgid "Slide to adjust your rating"
msgstr "Faîtes glisser pour ajuster votre note"
-#: ../../Zotlabs/Module/Connedit.php:716 ../../Zotlabs/Module/Connedit.php:721
+#: ../../Zotlabs/Module/Connedit.php:763 ../../Zotlabs/Module/Connedit.php:768
msgid "Optionally explain your rating"
msgstr "Explication facultative de votre évaluation"
-#: ../../Zotlabs/Module/Connedit.php:718
+#: ../../Zotlabs/Module/Connedit.php:765
msgid "Custom Filter"
msgstr "Filtre personnalisé"
-#: ../../Zotlabs/Module/Connedit.php:719
+#: ../../Zotlabs/Module/Connedit.php:766
msgid "Only import posts with this text"
msgstr "N'importer que les publications comprenant ce texte"
-#: ../../Zotlabs/Module/Connedit.php:719 ../../Zotlabs/Module/Connedit.php:720
+#: ../../Zotlabs/Module/Connedit.php:766 ../../Zotlabs/Module/Connedit.php:767
msgid ""
"words one per line or #tags or /patterns/ or lang=xx, leave blank to import "
"all posts"
msgstr "un mot par ligne ou #étiquettes ou /motif/ ou lang=xx, laisser vide pour importer toutes les publications"
-#: ../../Zotlabs/Module/Connedit.php:720
+#: ../../Zotlabs/Module/Connedit.php:767
msgid "Do not import posts with this text"
msgstr "Ne pas importer les publications comprenant ce texte"
-#: ../../Zotlabs/Module/Connedit.php:722
+#: ../../Zotlabs/Module/Connedit.php:769
msgid "This information is public!"
msgstr "Cette information est publique&nbsp;!"
-#: ../../Zotlabs/Module/Connedit.php:727
+#: ../../Zotlabs/Module/Connedit.php:774
msgid "Connection Pending Approval"
msgstr "Contact en attente d'approbation"
-#: ../../Zotlabs/Module/Connedit.php:730
+#: ../../Zotlabs/Module/Connedit.php:777
msgid "inherited"
msgstr "héritée"
-#: ../../Zotlabs/Module/Connedit.php:732
+#: ../../Zotlabs/Module/Connedit.php:778 ../../Zotlabs/Module/Connect.php:98
+#: ../../Zotlabs/Module/Events.php:474 ../../Zotlabs/Module/Cal.php:338
+#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:238
+#: ../../Zotlabs/Module/Group.php:85 ../../Zotlabs/Module/Appman.php:126
+#: ../../Zotlabs/Module/Pdledit.php:66
+#: ../../Zotlabs/Module/Filestorage.php:161
+#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Import.php:560
+#: ../../Zotlabs/Module/Photos.php:675 ../../Zotlabs/Module/Photos.php:1050
+#: ../../Zotlabs/Module/Photos.php:1090 ../../Zotlabs/Module/Photos.php:1208
+#: ../../Zotlabs/Module/Import_items.php:122
+#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121
+#: ../../Zotlabs/Module/Mail.php:370 ../../Zotlabs/Module/Mood.php:139
+#: ../../Zotlabs/Module/Mitem.php:235 ../../Zotlabs/Module/Admin.php:492
+#: ../../Zotlabs/Module/Admin.php:688 ../../Zotlabs/Module/Admin.php:771
+#: ../../Zotlabs/Module/Admin.php:1032 ../../Zotlabs/Module/Admin.php:1211
+#: ../../Zotlabs/Module/Admin.php:1421 ../../Zotlabs/Module/Admin.php:1648
+#: ../../Zotlabs/Module/Admin.php:1733 ../../Zotlabs/Module/Admin.php:2116
+#: ../../Zotlabs/Module/Poke.php:186 ../../Zotlabs/Module/Pconfig.php:107
+#: ../../Zotlabs/Module/Rate.php:170 ../../Zotlabs/Module/Settings.php:644
+#: ../../Zotlabs/Module/Settings.php:757 ../../Zotlabs/Module/Settings.php:806
+#: ../../Zotlabs/Module/Settings.php:832 ../../Zotlabs/Module/Settings.php:855
+#: ../../Zotlabs/Module/Settings.php:943
+#: ../../Zotlabs/Module/Settings.php:1129 ../../Zotlabs/Module/Setup.php:312
+#: ../../Zotlabs/Module/Setup.php:353 ../../Zotlabs/Module/Thing.php:316
+#: ../../Zotlabs/Module/Thing.php:362 ../../Zotlabs/Module/Sources.php:114
+#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Xchan.php:15
+#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/widgets.php:763
+#: ../../include/js_strings.php:22 ../../view/theme/redbasic/php/config.php:99
+msgid "Submit"
+msgstr "Envoyer"
+
+#: ../../Zotlabs/Module/Connedit.php:779
#, php-format
msgid ""
"Please choose the profile you would like to display to %s when viewing your "
"profile securely."
msgstr "Merci de choisir le profil que vous souhaitez montrer quand %s visite votre profil de manière authentifiée."
-#: ../../Zotlabs/Module/Connedit.php:734
+#: ../../Zotlabs/Module/Connedit.php:781
msgid "Their Settings"
msgstr "Leurs paramètres"
-#: ../../Zotlabs/Module/Connedit.php:735
+#: ../../Zotlabs/Module/Connedit.php:782
msgid "My Settings"
msgstr "Mes paramètres"
-#: ../../Zotlabs/Module/Connedit.php:737
+#: ../../Zotlabs/Module/Connedit.php:784
msgid "Individual Permissions"
msgstr "Permissions individuelles"
-#: ../../Zotlabs/Module/Connedit.php:738
+#: ../../Zotlabs/Module/Connedit.php:785
msgid ""
"Some permissions may be inherited from your channel's <a "
"href=\"settings\"><strong>privacy settings</strong></a>, which have higher "
@@ -879,7 +774,7 @@ msgid ""
" settings here."
msgstr "Certaines permissions peuvent être héritées de vos <a href=\"settings\">paramètres de confidentialité</a> de canal, lesquels sont prioritaires sur les réglages individuels. Vous pouvez modifier ces permissions ici mais cela n'aura aucun effet à moins de changer les paramètres hérités."
-#: ../../Zotlabs/Module/Connedit.php:739
+#: ../../Zotlabs/Module/Connedit.php:786
msgid ""
"Some permissions may be inherited from your channel's <a "
"href=\"settings\"><strong>privacy settings</strong></a>, which have higher "
@@ -887,17 +782,121 @@ msgid ""
"they wont have any impact unless the inherited setting changes."
msgstr "Certaines permissions peuvent être héritées de vos <a href=\"settings\">paramètres de confidentialité</a> de canal, lesquels sont prioritaires sur les réglages individuels. Vous pouvez modifier ces permissions ici mais cela n'aura aucun effet à moins de changer les paramètres hérités."
-#: ../../Zotlabs/Module/Connedit.php:740
+#: ../../Zotlabs/Module/Connedit.php:787
msgid "Last update:"
msgstr "Dernière mise à jour&nbsp;:"
-#: ../../Zotlabs/Module/Directory.php:63 ../../Zotlabs/Module/Display.php:17
-#: ../../Zotlabs/Module/Photos.php:522 ../../Zotlabs/Module/Ratings.php:86
+#: ../../Zotlabs/Module/Display.php:17 ../../Zotlabs/Module/Directory.php:63
+#: ../../Zotlabs/Module/Photos.php:520 ../../Zotlabs/Module/Ratings.php:86
#: ../../Zotlabs/Module/Search.php:17
-#: ../../Zotlabs/Module/Viewconnections.php:20
+#: ../../Zotlabs/Module/Viewconnections.php:23
msgid "Public access denied."
msgstr "Accès public refusé."
+#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:32
+#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1255
+#: ../../Zotlabs/Module/Admin.php:1561 ../../Zotlabs/Module/Thing.php:89
+#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3369
+msgid "Item not found."
+msgstr "Élément introuvable"
+
+#: ../../Zotlabs/Module/Id.php:13
+msgid "First Name"
+msgstr "Prénom"
+
+#: ../../Zotlabs/Module/Id.php:14
+msgid "Last Name"
+msgstr "Nom de famille"
+
+#: ../../Zotlabs/Module/Id.php:15
+msgid "Nickname"
+msgstr "Surnom"
+
+#: ../../Zotlabs/Module/Id.php:16
+msgid "Full Name"
+msgstr "Nom complet"
+
+#: ../../Zotlabs/Module/Id.php:17 ../../Zotlabs/Module/Id.php:18
+#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047
+#: ../../include/network.php:2203
+msgid "Email"
+msgstr "Courriel"
+
+#: ../../Zotlabs/Module/Id.php:19 ../../Zotlabs/Module/Id.php:20
+#: ../../Zotlabs/Module/Id.php:21 ../../Zotlabs/Lib/Apps.php:238
+msgid "Profile Photo"
+msgstr "Photo du Profil"
+
+#: ../../Zotlabs/Module/Id.php:22
+msgid "Profile Photo 16px"
+msgstr "Photo de profil 16px"
+
+#: ../../Zotlabs/Module/Id.php:23
+msgid "Profile Photo 32px"
+msgstr "Photo de profil 32px"
+
+#: ../../Zotlabs/Module/Id.php:24
+msgid "Profile Photo 48px"
+msgstr "Photo de profil 48px"
+
+#: ../../Zotlabs/Module/Id.php:25
+msgid "Profile Photo 64px"
+msgstr "Photo de profil 64px"
+
+#: ../../Zotlabs/Module/Id.php:26
+msgid "Profile Photo 80px"
+msgstr "Photo de profil 80px"
+
+#: ../../Zotlabs/Module/Id.php:27
+msgid "Profile Photo 128px"
+msgstr "Photo de profil 128px"
+
+#: ../../Zotlabs/Module/Id.php:28
+msgid "Timezone"
+msgstr "Fuseau horaire"
+
+#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:731
+msgid "Homepage URL"
+msgstr "URL de mon site Internet&nbsp;:"
+
+#: ../../Zotlabs/Module/Id.php:30 ../../Zotlabs/Lib/Apps.php:236
+msgid "Language"
+msgstr "Langue"
+
+#: ../../Zotlabs/Module/Id.php:31
+msgid "Birth Year"
+msgstr "Année de naissance"
+
+#: ../../Zotlabs/Module/Id.php:32
+msgid "Birth Month"
+msgstr "Mois de naissance"
+
+#: ../../Zotlabs/Module/Id.php:33
+msgid "Birth Day"
+msgstr "Jour de naissance"
+
+#: ../../Zotlabs/Module/Id.php:34
+msgid "Birthdate"
+msgstr "Date de naissance"
+
+#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:454
+msgid "Gender"
+msgstr "Sexe"
+
+#: ../../Zotlabs/Module/Id.php:108 ../../include/selectors.php:49
+#: ../../include/selectors.php:66
+msgid "Male"
+msgstr "Homme"
+
+#: ../../Zotlabs/Module/Id.php:110 ../../include/selectors.php:49
+#: ../../include/selectors.php:66
+msgid "Female"
+msgstr "Femme"
+
+#: ../../Zotlabs/Module/Follow.php:34
+msgid "Channel added."
+msgstr "Canal ajouté."
+
#: ../../Zotlabs/Module/Directory.php:243
#, php-format
msgid "%d rating"
@@ -917,12 +916,12 @@ msgstr "État&nbsp;:"
msgid "Homepage: "
msgstr "Site web&nbsp;:"
-#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1183
+#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1223
msgid "Age:"
msgstr "Age&nbsp;:"
-#: ../../Zotlabs/Module/Directory.php:311 ../../include/event.php:52
-#: ../../include/event.php:84 ../../include/channel.php:1027
+#: ../../Zotlabs/Module/Directory.php:311 ../../include/channel.php:1066
+#: ../../include/event.php:52 ../../include/event.php:84
#: ../../include/bb2diaspora.php:507
msgid "Location:"
msgstr "Emplacement&nbsp;:"
@@ -931,18 +930,18 @@ msgstr "Emplacement&nbsp;:"
msgid "Description:"
msgstr "Description&nbsp;:"
-#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1199
+#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1239
msgid "Hometown:"
msgstr "Ville natale&nbsp;:"
-#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1207
+#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1247
msgid "About:"
msgstr "À propos&nbsp;:"
#: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68
-#: ../../Zotlabs/Module/Suggest.php:56 ../../include/widgets.php:147
-#: ../../include/widgets.php:184 ../../include/connections.php:78
-#: ../../include/conversation.php:956 ../../include/channel.php:1012
+#: ../../Zotlabs/Module/Suggest.php:56 ../../include/channel.php:1051
+#: ../../include/connections.php:78 ../../include/conversation.php:959
+#: ../../include/widgets.php:147 ../../include/widgets.php:184
msgid "Connect"
msgstr "Ajouter/Suivre"
@@ -1018,38 +1017,322 @@ msgstr "Du moins récent du plus récent"
msgid "No entries (some entries may be hidden)."
msgstr "Pas d'entrées (certaines peuvent être cachées)."
-#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:33
-#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1255
-#: ../../Zotlabs/Module/Admin.php:1561 ../../Zotlabs/Module/Thing.php:89
-#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3359
-msgid "Item not found."
-msgstr "Élément introuvable"
+#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109
+msgid "Continue"
+msgstr "Continuer"
+
+#: ../../Zotlabs/Module/Connect.php:90
+msgid "Premium Channel Setup"
+msgstr "Configuration du canal VIP"
+
+#: ../../Zotlabs/Module/Connect.php:92
+msgid "Enable premium channel connection restrictions"
+msgstr "Activer les restrictions liées au canal VIP"
+
+#: ../../Zotlabs/Module/Connect.php:93
+msgid ""
+"Please enter your restrictions or conditions, such as paypal receipt, usage "
+"guidelines, etc."
+msgstr "Merci de saisir les restrictions et/ou conditions - reçu Paypal, transaction Bitcoin, ligne de conduite, ..."
+
+#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115
+msgid ""
+"This channel may require additional steps or acknowledgement of the "
+"following conditions prior to connecting:"
+msgstr "Avant d'autoriser la mise en relation, ce canal attire votre attention sur les conditions suivantes&nbsp;:"
+
+#: ../../Zotlabs/Module/Connect.php:96
+msgid ""
+"Potential connections will then see the following text before proceeding:"
+msgstr "Les contacts potentiels verront ce qui suit avant de pouvoir continuer&nbsp;:"
+
+#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118
+msgid ""
+"By continuing, I certify that I have complied with any instructions provided"
+" on this page."
+msgstr "En continuant, je certifie que je me suis conformé à toutes les instructions indiquées sur cette page."
+
+#: ../../Zotlabs/Module/Connect.php:106
+msgid "(No specific instructions have been provided by the channel owner.)"
+msgstr "(Aucune instruction spécifique n'a été fournie par le propriétaire du canal.)"
+
+#: ../../Zotlabs/Module/Connect.php:114
+msgid "Restricted or Premium Channel"
+msgstr "Canal VIP ou restreint"
+
+#: ../../Zotlabs/Module/Events.php:25
+msgid "Calendar entries imported."
+msgstr "Entrées du calendrier importées."
+
+#: ../../Zotlabs/Module/Events.php:27
+msgid "No calendar entries found."
+msgstr "Aucune entrée du calendrier trouvée."
+
+#: ../../Zotlabs/Module/Events.php:104
+msgid "Event can not end before it has started."
+msgstr "La fin de l'événement ne peut être antérieure à son début."
+
+#: ../../Zotlabs/Module/Events.php:106 ../../Zotlabs/Module/Events.php:115
+#: ../../Zotlabs/Module/Events.php:135
+msgid "Unable to generate preview."
+msgstr "Impossible de générer l'aperçu."
+
+#: ../../Zotlabs/Module/Events.php:113
+msgid "Event title and start time are required."
+msgstr "Un titre et une date de début sont requises pour l'événement."
+
+#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258
+msgid "Event not found."
+msgstr "Événement introuvable."
+
+#: ../../Zotlabs/Module/Events.php:253 ../../Zotlabs/Module/Like.php:372
+#: ../../Zotlabs/Module/Tagger.php:51 ../../include/conversation.php:123
+#: ../../include/text.php:1924 ../../include/event.php:951
+msgid "event"
+msgstr "événement"
+
+#: ../../Zotlabs/Module/Events.php:448
+msgid "Edit event title"
+msgstr "Modifier le titre de l'événement"
+
+#: ../../Zotlabs/Module/Events.php:448
+msgid "Event title"
+msgstr "Titre de l'événement"
+
+#: ../../Zotlabs/Module/Events.php:448 ../../Zotlabs/Module/Events.php:453
+#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116
+#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713
+#: ../../include/datetime.php:245
+msgid "Required"
+msgstr "Requis"
+
+#: ../../Zotlabs/Module/Events.php:450
+msgid "Categories (comma-separated list)"
+msgstr "Catégories (séparées par des virgules)"
+
+#: ../../Zotlabs/Module/Events.php:451
+msgid "Edit Category"
+msgstr "Modifier la catégorie"
+
+#: ../../Zotlabs/Module/Events.php:451
+msgid "Category"
+msgstr "Catégorie"
+
+#: ../../Zotlabs/Module/Events.php:454
+msgid "Edit start date and time"
+msgstr "Modifier la date et l'heure de début"
+
+#: ../../Zotlabs/Module/Events.php:454
+msgid "Start date and time"
+msgstr "Date et heure de début"
+
+#: ../../Zotlabs/Module/Events.php:455 ../../Zotlabs/Module/Events.php:458
+msgid "Finish date and time are not known or not relevant"
+msgstr "Date et heure de fin inconnues ou sans objet"
+
+#: ../../Zotlabs/Module/Events.php:457
+msgid "Edit finish date and time"
+msgstr "Modifier la date et l'heure de fin"
+
+#: ../../Zotlabs/Module/Events.php:457
+msgid "Finish date and time"
+msgstr "Date et heure de fin"
+
+#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460
+msgid "Adjust for viewer timezone"
+msgstr "Ajuster au fuseau horaire du visiteur"
+
+#: ../../Zotlabs/Module/Events.php:459
+msgid ""
+"Important for events that happen in a particular place. Not practical for "
+"global holidays."
+msgstr "Important pour les événements se tenant en un lieu particulier. Pas pratique pour les vacances communes à de nombreux pays dans le monde."
+
+#: ../../Zotlabs/Module/Events.php:461
+msgid "Edit Description"
+msgstr "Modifier la description"
+
+#: ../../Zotlabs/Module/Events.php:461 ../../Zotlabs/Module/Appman.php:117
+#: ../../Zotlabs/Module/Rbmark.php:101
+msgid "Description"
+msgstr "Description"
+
+#: ../../Zotlabs/Module/Events.php:463
+msgid "Edit Location"
+msgstr "Modifier l'emplacement"
+
+#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Profiles.php:477
+#: ../../Zotlabs/Module/Profiles.php:698 ../../Zotlabs/Module/Locs.php:117
+#: ../../Zotlabs/Module/Pubsites.php:41 ../../include/js_strings.php:25
+msgid "Location"
+msgstr "Emplacement"
+
+#: ../../Zotlabs/Module/Events.php:466 ../../Zotlabs/Module/Events.php:468
+msgid "Share this event"
+msgstr "Partager cet événement"
+
+#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Photos.php:1091
+#: ../../Zotlabs/Module/Webpages.php:201 ../../Zotlabs/Lib/ThreadItem.php:719
+#: ../../include/page_widgets.php:43 ../../include/conversation.php:1198
+msgid "Preview"
+msgstr "Aperçu"
+
+#: ../../Zotlabs/Module/Events.php:470 ../../include/conversation.php:1247
+msgid "Permission settings"
+msgstr "Gérer les autorisations"
+
+#: ../../Zotlabs/Module/Events.php:475
+msgid "Advanced Options"
+msgstr "Options avancées"
+
+#: ../../Zotlabs/Module/Events.php:587 ../../Zotlabs/Module/Cal.php:259
+msgid "l, F j"
+msgstr "l, F j"
+
+#: ../../Zotlabs/Module/Events.php:609
+msgid "Edit event"
+msgstr "Modifier l'événement"
+
+#: ../../Zotlabs/Module/Events.php:611
+msgid "Delete event"
+msgstr "Supprimer l'événement"
+
+#: ../../Zotlabs/Module/Events.php:636 ../../Zotlabs/Module/Cal.php:308
+#: ../../include/text.php:1712
+msgid "Link to Source"
+msgstr "Lien vers la Source"
+
+#: ../../Zotlabs/Module/Events.php:645
+msgid "calendar"
+msgstr "calendrier"
+
+#: ../../Zotlabs/Module/Events.php:664 ../../Zotlabs/Module/Cal.php:331
+msgid "Edit Event"
+msgstr "Modifier l'événement"
+
+#: ../../Zotlabs/Module/Events.php:664 ../../Zotlabs/Module/Cal.php:331
+msgid "Create Event"
+msgstr "Créer un événement"
+
+#: ../../Zotlabs/Module/Events.php:665 ../../Zotlabs/Module/Events.php:674
+#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339
+#: ../../Zotlabs/Module/Photos.php:947
+msgid "Previous"
+msgstr "Précédent"
+
+#: ../../Zotlabs/Module/Events.php:666 ../../Zotlabs/Module/Events.php:675
+#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340
+#: ../../Zotlabs/Module/Photos.php:956 ../../Zotlabs/Module/Setup.php:267
+msgid "Next"
+msgstr "Suivant"
+
+#: ../../Zotlabs/Module/Events.php:667 ../../Zotlabs/Module/Cal.php:334
+msgid "Export"
+msgstr "Export"
+
+#: ../../Zotlabs/Module/Events.php:670 ../../Zotlabs/Module/Layouts.php:197
+#: ../../Zotlabs/Module/Pubsites.php:47 ../../Zotlabs/Module/Blocks.php:166
+#: ../../Zotlabs/Module/Webpages.php:200 ../../include/page_widgets.php:42
+msgid "View"
+msgstr "Voir"
+
+#: ../../Zotlabs/Module/Events.php:671
+msgid "Month"
+msgstr ""
+
+#: ../../Zotlabs/Module/Events.php:672
+msgid "Week"
+msgstr ""
+
+#: ../../Zotlabs/Module/Events.php:673
+msgid "Day"
+msgstr ""
+
+#: ../../Zotlabs/Module/Events.php:676 ../../Zotlabs/Module/Cal.php:341
+msgid "Today"
+msgstr "Aujourd'hui"
+
+#: ../../Zotlabs/Module/Events.php:707
+msgid "Event removed"
+msgstr "Événement supprimé"
+
+#: ../../Zotlabs/Module/Events.php:710
+msgid "Failed to remove event"
+msgstr "Impossible de supprimer l'événement"
+
+#: ../../Zotlabs/Module/Bookmarks.php:53
+msgid "Bookmark added"
+msgstr "Favori ajouté"
+
+#: ../../Zotlabs/Module/Bookmarks.php:75
+msgid "My Bookmarks"
+msgstr "Mes Favoris"
+
+#: ../../Zotlabs/Module/Bookmarks.php:86
+msgid "My Connections Bookmarks"
+msgstr "Favoris de mes contacts"
-#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95
#: ../../Zotlabs/Module/Editpost.php:24 ../../Zotlabs/Module/Editlayout.php:79
-#: ../../Zotlabs/Module/Editwebpage.php:81
+#: ../../Zotlabs/Module/Editwebpage.php:80
+#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95
msgid "Item not found"
msgstr "Élément introuvable"
-#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1228
-msgid "Title (optional)"
-msgstr "Titre (facultatif)"
+#: ../../Zotlabs/Module/Editpost.php:35
+msgid "Item is not editable"
+msgstr "Elément non modifiable"
-#: ../../Zotlabs/Module/Editblock.php:133
-msgid "Edit Block"
-msgstr "Modifier le bloc"
+#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:134
+msgid "Edit post"
+msgstr "Modifier la publication"
-#: ../../Zotlabs/Module/Common.php:14
-msgid "No channel."
-msgstr "Pas de canal."
+#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222
+#: ../../include/nav.php:92 ../../include/conversation.php:1647
+msgid "Photos"
+msgstr "Photos"
-#: ../../Zotlabs/Module/Common.php:43
-msgid "Common connections"
-msgstr "Contacts en commun"
+#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88
+#: ../../Zotlabs/Module/Admin.php:1406 ../../Zotlabs/Module/Settings.php:645
+#: ../../Zotlabs/Module/Settings.php:671 ../../Zotlabs/Module/Tagrm.php:15
+#: ../../Zotlabs/Module/Tagrm.php:138 ../../Zotlabs/Module/Wiki.php:166
+#: ../../Zotlabs/Module/Wiki.php:202 ../../include/conversation.php:1235
+#: ../../include/conversation.php:1274
+msgid "Cancel"
+msgstr "Annuler"
-#: ../../Zotlabs/Module/Common.php:48
-msgid "No connections in common."
-msgstr "Pas de contacts en commun."
+#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31
+msgid "Invalid item."
+msgstr "Élément invalide."
+
+#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Cal.php:62
+#: ../../Zotlabs/Module/Block.php:43 ../../Zotlabs/Module/Wall_upload.php:33
+msgid "Channel not found."
+msgstr "Canal introuvable."
+
+#: ../../Zotlabs/Module/Page.php:131
+msgid ""
+"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod "
+"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,"
+" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo "
+"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse "
+"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat "
+"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
+msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
+
+#: ../../Zotlabs/Module/Filer.php:52
+msgid "Save to Folder:"
+msgstr "Classer dans le dossier&nbsp;:"
+
+#: ../../Zotlabs/Module/Filer.php:52
+msgid "- select -"
+msgstr "- choisir -"
+
+#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033
+#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32
+#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:926
+#: ../../include/text.php:938 ../../include/widgets.php:201
+msgid "Save"
+msgstr "Enregistrer"
#: ../../Zotlabs/Module/Connections.php:56
#: ../../Zotlabs/Module/Connections.php:161
@@ -1077,7 +1360,7 @@ msgstr "Archivé"
#: ../../Zotlabs/Module/Connections.php:76
#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116
-#: ../../include/conversation.php:1535
+#: ../../include/conversation.php:1550
msgid "New"
msgstr "Nouveautés"
@@ -1164,15 +1447,15 @@ msgstr "Ignorer le contact"
msgid "Recent activity"
msgstr "Activité récente"
-#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:208
-#: ../../include/text.php:875 ../../include/nav.php:186
+#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:209
+#: ../../include/nav.php:188 ../../include/text.php:855
msgid "Connections"
msgstr "Contacts"
#: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44
-#: ../../Zotlabs/Lib/Apps.php:228 ../../include/text.php:945
-#: ../../include/text.php:957 ../../include/nav.php:165
-#: ../../include/acl_selectors.php:276
+#: ../../Zotlabs/Lib/Apps.php:230 ../../include/nav.php:167
+#: ../../include/text.php:925 ../../include/text.php:937
+#: ../../include/acl_selectors.php:274
msgid "Search"
msgstr "Recherche"
@@ -1185,7 +1468,7 @@ msgid "Connections search"
msgstr "Chercher des contacts"
#: ../../Zotlabs/Module/Cover_photo.php:58
-#: ../../Zotlabs/Module/Profile_photo.php:79
+#: ../../Zotlabs/Module/Profile_photo.php:61
msgid "Image uploaded but image cropping failed."
msgstr "L'image a été téléversée, mais le recadrage a échoué."
@@ -1195,66 +1478,66 @@ msgid "Cover Photos"
msgstr "Photos de couverture"
#: ../../Zotlabs/Module/Cover_photo.php:154
-#: ../../Zotlabs/Module/Profile_photo.php:133
+#: ../../Zotlabs/Module/Profile_photo.php:135
msgid "Image resize failed."
msgstr "Le redimensionnement de l'image a échoué."
#: ../../Zotlabs/Module/Cover_photo.php:168
-#: ../../Zotlabs/Module/Profile_photo.php:192 ../../include/photos.php:144
+#: ../../Zotlabs/Module/Profile_photo.php:196 ../../include/photos.php:148
msgid "Unable to process image"
msgstr "Impossible de traiter l'image"
#: ../../Zotlabs/Module/Cover_photo.php:192
-#: ../../Zotlabs/Module/Profile_photo.php:217
+#: ../../Zotlabs/Module/Profile_photo.php:223
msgid "Image upload failed."
msgstr "Le téléversement de l'image a échoué."
#: ../../Zotlabs/Module/Cover_photo.php:210
-#: ../../Zotlabs/Module/Profile_photo.php:236
+#: ../../Zotlabs/Module/Profile_photo.php:242
msgid "Unable to process image."
msgstr "Impossible de traîter l'image."
-#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4270
+#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4283
msgid "female"
msgstr "femme"
-#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4271
+#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4284
#, php-format
msgid "%1$s updated her %2$s"
msgstr "%1$s a mis à jour son %2$s"
-#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4272
+#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4285
msgid "male"
msgstr "homme"
-#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4273
+#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4286
#, php-format
msgid "%1$s updated his %2$s"
msgstr "%1$s a mis à jour son %2$s"
-#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4275
+#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4288
#, php-format
msgid "%1$s updated their %2$s"
msgstr "%1$s a mis a jour sa %2$s"
-#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1661
+#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1726
msgid "cover photo"
msgstr "Photo principale"
#: ../../Zotlabs/Module/Cover_photo.php:303
#: ../../Zotlabs/Module/Cover_photo.php:318
-#: ../../Zotlabs/Module/Profile_photo.php:283
-#: ../../Zotlabs/Module/Profile_photo.php:324
+#: ../../Zotlabs/Module/Profile_photo.php:300
+#: ../../Zotlabs/Module/Profile_photo.php:341
msgid "Photo not available."
msgstr "Photo inaccessible."
#: ../../Zotlabs/Module/Cover_photo.php:354
-#: ../../Zotlabs/Module/Profile_photo.php:365
+#: ../../Zotlabs/Module/Profile_photo.php:387
msgid "Upload File:"
msgstr "Téléverser fichier&nbsp;:"
#: ../../Zotlabs/Module/Cover_photo.php:355
-#: ../../Zotlabs/Module/Profile_photo.php:366
+#: ../../Zotlabs/Module/Profile_photo.php:388
msgid "Select a profile:"
msgstr "Choisir un profil&nbsp;:"
@@ -1263,315 +1546,256 @@ msgid "Upload Cover Photo"
msgstr "Téléverser une photo de couverture"
#: ../../Zotlabs/Module/Cover_photo.php:361
-#: ../../Zotlabs/Module/Profile_photo.php:374
-#: ../../Zotlabs/Module/Settings.php:985
+#: ../../Zotlabs/Module/Profile_photo.php:396
+#: ../../Zotlabs/Module/Settings.php:1080
msgid "or"
msgstr "ou"
#: ../../Zotlabs/Module/Cover_photo.php:361
-#: ../../Zotlabs/Module/Profile_photo.php:374
+#: ../../Zotlabs/Module/Profile_photo.php:396
msgid "skip this step"
msgstr "passer cette étape"
#: ../../Zotlabs/Module/Cover_photo.php:361
-#: ../../Zotlabs/Module/Profile_photo.php:374
+#: ../../Zotlabs/Module/Profile_photo.php:396
msgid "select a photo from your photo albums"
msgstr "choisir une photo dans vos albums"
#: ../../Zotlabs/Module/Cover_photo.php:377
-#: ../../Zotlabs/Module/Profile_photo.php:390
+#: ../../Zotlabs/Module/Profile_photo.php:415
msgid "Crop Image"
msgstr "Recadrer l'image"
#: ../../Zotlabs/Module/Cover_photo.php:378
-#: ../../Zotlabs/Module/Profile_photo.php:391
+#: ../../Zotlabs/Module/Profile_photo.php:416
msgid "Please adjust the image cropping for optimum viewing."
msgstr "Merci d'ajuster le cadre pour une visualisation optimale."
#: ../../Zotlabs/Module/Cover_photo.php:380
-#: ../../Zotlabs/Module/Profile_photo.php:393
+#: ../../Zotlabs/Module/Profile_photo.php:418
msgid "Done Editing"
msgstr "J'ai terminé"
-#: ../../Zotlabs/Module/Editpost.php:35
-msgid "Item is not editable"
-msgstr "Elément non modifiable"
-
-#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:135
-msgid "Edit post"
-msgstr "Modifier la publication"
-
-#: ../../Zotlabs/Module/Events.php:26
-msgid "Calendar entries imported."
-msgstr "Entrées du calendrier importées."
-
-#: ../../Zotlabs/Module/Events.php:28
-msgid "No calendar entries found."
-msgstr "Aucune entrée du calendrier trouvée."
-
-#: ../../Zotlabs/Module/Events.php:105
-msgid "Event can not end before it has started."
-msgstr "La fin de l'événement ne peut être antérieure à son début."
-
-#: ../../Zotlabs/Module/Events.php:107 ../../Zotlabs/Module/Events.php:116
-#: ../../Zotlabs/Module/Events.php:136
-msgid "Unable to generate preview."
-msgstr "Impossible de générer l'aperçu."
-
-#: ../../Zotlabs/Module/Events.php:114
-msgid "Event title and start time are required."
-msgstr "Un titre et une date de début sont requises pour l'événement."
-
-#: ../../Zotlabs/Module/Events.php:134 ../../Zotlabs/Module/Events.php:259
-msgid "Event not found."
-msgstr "Événement introuvable."
-
-#: ../../Zotlabs/Module/Events.php:254 ../../Zotlabs/Module/Like.php:373
-#: ../../Zotlabs/Module/Tagger.php:51 ../../include/event.php:949
-#: ../../include/text.php:1943 ../../include/conversation.php:123
-msgid "event"
-msgstr "événement"
-
-#: ../../Zotlabs/Module/Events.php:449
-msgid "Edit event title"
-msgstr "Modifier le titre de l'événement"
-
-#: ../../Zotlabs/Module/Events.php:449
-msgid "Event title"
-msgstr "Titre de l'événement"
-
-#: ../../Zotlabs/Module/Events.php:449 ../../Zotlabs/Module/Events.php:454
-#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713
-#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116
-#: ../../include/datetime.php:245
-msgid "Required"
-msgstr "Requis"
-
-#: ../../Zotlabs/Module/Events.php:451
-msgid "Categories (comma-separated list)"
-msgstr "Catégories (séparées par des virgules)"
+#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192
+msgid "webpage"
+msgstr "pages web"
-#: ../../Zotlabs/Module/Events.php:452
-msgid "Edit Category"
-msgstr "Modifier la catégorie"
+#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198
+msgid "block"
+msgstr "bloquer"
-#: ../../Zotlabs/Module/Events.php:452
-msgid "Category"
-msgstr "Catégorie"
+#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195
+msgid "layout"
+msgstr "mise en page"
-#: ../../Zotlabs/Module/Events.php:455
-msgid "Edit start date and time"
-msgstr "Modifier la date et l'heure de début"
+#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201
+msgid "menu"
+msgstr "menu"
-#: ../../Zotlabs/Module/Events.php:455
-msgid "Start date and time"
-msgstr "Date et heure de début"
+#: ../../Zotlabs/Module/Impel.php:187
+#, php-format
+msgid "%s element installed"
+msgstr "Elément %s installé"
-#: ../../Zotlabs/Module/Events.php:456 ../../Zotlabs/Module/Events.php:459
-msgid "Finish date and time are not known or not relevant"
-msgstr "Date et heure de fin inconnues ou sans objet"
+#: ../../Zotlabs/Module/Impel.php:190
+#, php-format
+msgid "%s element installation failed"
+msgstr "L'installation de l'élément %s a échoué"
-#: ../../Zotlabs/Module/Events.php:458
-msgid "Edit finish date and time"
-msgstr "Modifier la date et l'heure de fin"
+#: ../../Zotlabs/Module/Cal.php:69
+msgid "Permissions denied."
+msgstr "Permissions refusées."
-#: ../../Zotlabs/Module/Events.php:458
-msgid "Finish date and time"
-msgstr "Date et heure de fin"
+#: ../../Zotlabs/Module/Cal.php:337
+msgid "Import"
+msgstr "Import"
-#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:461
-msgid "Adjust for viewer timezone"
-msgstr "Ajuster au fuseau horaire du visiteur"
+#: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49
+msgid "This site is not a directory server"
+msgstr "Ce site n'est pas un serveur d'annuaire"
-#: ../../Zotlabs/Module/Events.php:460
-msgid ""
-"Important for events that happen in a particular place. Not practical for "
-"global holidays."
-msgstr "Important pour les événements se tenant en un lieu particulier. Pas pratique pour les vacances communes à de nombreux pays dans le monde."
+#: ../../Zotlabs/Module/Dirsearch.php:33
+msgid "This directory server requires an access token"
+msgstr "Ce serveur d'annuaire requiert un jeton d'accès"
-#: ../../Zotlabs/Module/Events.php:462
-msgid "Edit Description"
-msgstr "Modifier la description"
+#: ../../Zotlabs/Module/Chat.php:25 ../../Zotlabs/Module/Channel.php:28
+#: ../../Zotlabs/Module/Wiki.php:20
+msgid "You must be logged in to see this page."
+msgstr "Vous devez vous connecter pour voir cette page."
-#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Appman.php:117
-#: ../../Zotlabs/Module/Rbmark.php:101
-msgid "Description"
-msgstr "Description"
+#: ../../Zotlabs/Module/Chat.php:181
+msgid "Room not found"
+msgstr "Salon introuvable"
-#: ../../Zotlabs/Module/Events.php:464
-msgid "Edit Location"
-msgstr "Modifier l'emplacement"
+#: ../../Zotlabs/Module/Chat.php:197
+msgid "Leave Room"
+msgstr "Quitter le salon"
-#: ../../Zotlabs/Module/Events.php:464 ../../Zotlabs/Module/Locs.php:117
-#: ../../Zotlabs/Module/Profiles.php:477 ../../Zotlabs/Module/Profiles.php:698
-#: ../../Zotlabs/Module/Pubsites.php:41 ../../include/js_strings.php:25
-msgid "Location"
-msgstr "Emplacement"
+#: ../../Zotlabs/Module/Chat.php:198
+msgid "Delete Room"
+msgstr ""
-#: ../../Zotlabs/Module/Events.php:467 ../../Zotlabs/Module/Events.php:469
-msgid "Share this event"
-msgstr "Partager cet événement"
+#: ../../Zotlabs/Module/Chat.php:199
+msgid "I am away right now"
+msgstr "Je suis absent en ce moment"
-#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Photos.php:1093
-#: ../../Zotlabs/Module/Webpages.php:194 ../../Zotlabs/Lib/ThreadItem.php:719
-#: ../../include/conversation.php:1187 ../../include/page_widgets.php:40
-msgid "Preview"
-msgstr "Aperçu"
+#: ../../Zotlabs/Module/Chat.php:200
+msgid "I am online"
+msgstr "Je suis en ligne"
-#: ../../Zotlabs/Module/Events.php:471 ../../include/conversation.php:1232
-msgid "Permission settings"
-msgstr "Gérer les autorisations"
+#: ../../Zotlabs/Module/Chat.php:202
+msgid "Bookmark this room"
+msgstr "Marquer ce salon comme favori"
-#: ../../Zotlabs/Module/Events.php:476
-msgid "Advanced Options"
-msgstr "Options avancées"
+#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:197
+#: ../../Zotlabs/Module/Mail.php:306 ../../include/conversation.php:1181
+msgid "Please enter a link URL:"
+msgstr "Merci d'entrer l'URL d'un lien&nbsp;:"
-#: ../../Zotlabs/Module/Events.php:610
-msgid "Edit event"
-msgstr "Modifier l'événement"
+#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:250
+#: ../../Zotlabs/Module/Mail.php:375 ../../Zotlabs/Lib/ThreadItem.php:722
+#: ../../include/conversation.php:1271
+msgid "Encrypt text"
+msgstr "Chiffrer le texte"
-#: ../../Zotlabs/Module/Events.php:612
-msgid "Delete event"
-msgstr "Supprimer l'événement"
+#: ../../Zotlabs/Module/Chat.php:207 ../../Zotlabs/Module/Editwebpage.php:146
+#: ../../Zotlabs/Module/Mail.php:244 ../../Zotlabs/Module/Mail.php:369
+#: ../../Zotlabs/Module/Editblock.php:111 ../../include/conversation.php:1146
+msgid "Insert web link"
+msgstr "Insérer lien web"
-#: ../../Zotlabs/Module/Events.php:646
-msgid "calendar"
-msgstr "calendrier"
+#: ../../Zotlabs/Module/Chat.php:218
+msgid "Feature disabled."
+msgstr ""
-#: ../../Zotlabs/Module/Events.php:706
-msgid "Event removed"
-msgstr "Événement supprimé"
+#: ../../Zotlabs/Module/Chat.php:232
+msgid "New Chatroom"
+msgstr "Nouveau salon de discussion"
-#: ../../Zotlabs/Module/Events.php:709
-msgid "Failed to remove event"
-msgstr "Impossible de supprimer l'événement"
+#: ../../Zotlabs/Module/Chat.php:233
+msgid "Chatroom name"
+msgstr ""
-#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:220
-#: ../../include/nav.php:92 ../../include/conversation.php:1632
-msgid "Photos"
-msgstr "Photos"
+#: ../../Zotlabs/Module/Chat.php:234
+msgid "Expiration of chats (minutes)"
+msgstr "Expiration des discussions (en minutes)"
-#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88
-#: ../../Zotlabs/Module/Admin.php:1406 ../../Zotlabs/Module/Settings.php:591
-#: ../../Zotlabs/Module/Settings.php:617 ../../Zotlabs/Module/Tagrm.php:15
-#: ../../Zotlabs/Module/Tagrm.php:138 ../../include/conversation.php:1259
-msgid "Cancel"
-msgstr "Annuler"
+#: ../../Zotlabs/Module/Chat.php:235 ../../Zotlabs/Module/Filestorage.php:152
+#: ../../Zotlabs/Module/Photos.php:669 ../../Zotlabs/Module/Photos.php:1043
+#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:359
+#: ../../include/acl_selectors.php:281
+msgid "Permissions"
+msgstr "Autorisations"
-#: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49
-msgid "This site is not a directory server"
-msgstr "Ce site n'est pas un serveur d'annuaire"
+#: ../../Zotlabs/Module/Chat.php:246
+#, php-format
+msgid "%1$s's Chatrooms"
+msgstr "Salons de %1$s"
-#: ../../Zotlabs/Module/Dirsearch.php:33
-msgid "This directory server requires an access token"
-msgstr "Ce serveur d'annuaire requiert un jeton d'accès"
+#: ../../Zotlabs/Module/Chat.php:251
+msgid "No chatrooms available"
+msgstr ""
-#: ../../Zotlabs/Module/Filer.php:52
-msgid "Save to Folder:"
-msgstr "Classer dans le dossier&nbsp;:"
+#: ../../Zotlabs/Module/Chat.php:252 ../../Zotlabs/Module/Profiles.php:778
+#: ../../Zotlabs/Module/Manage.php:143
+msgid "Create New"
+msgstr ""
-#: ../../Zotlabs/Module/Filer.php:52
-msgid "- select -"
-msgstr "- choisir -"
+#: ../../Zotlabs/Module/Chat.php:255
+msgid "Expiration"
+msgstr ""
-#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033
-#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32
-#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:946
-#: ../../include/text.php:958 ../../include/widgets.php:201
-msgid "Save"
-msgstr "Enregistrer"
+#: ../../Zotlabs/Module/Chat.php:256
+msgid "min"
+msgstr ""
-#: ../../Zotlabs/Module/Dreport.php:27
+#: ../../Zotlabs/Module/Dreport.php:44
msgid "Invalid message"
msgstr "Message non valide"
-#: ../../Zotlabs/Module/Dreport.php:59
+#: ../../Zotlabs/Module/Dreport.php:76
msgid "no results"
msgstr "aucun résultat"
-#: ../../Zotlabs/Module/Dreport.php:64
-#, php-format
-msgid "Delivery report for %1$s"
-msgstr "Rapport de distribution pour %1$s"
-
-#: ../../Zotlabs/Module/Dreport.php:78
+#: ../../Zotlabs/Module/Dreport.php:91
msgid "channel sync processed"
msgstr "Synchro de canal effectuée"
-#: ../../Zotlabs/Module/Dreport.php:82
+#: ../../Zotlabs/Module/Dreport.php:95
msgid "queued"
msgstr "mis dans la file d'attente"
-#: ../../Zotlabs/Module/Dreport.php:86
+#: ../../Zotlabs/Module/Dreport.php:99
msgid "posted"
msgstr "publié"
-#: ../../Zotlabs/Module/Dreport.php:90
+#: ../../Zotlabs/Module/Dreport.php:103
msgid "accepted for delivery"
msgstr "accepté pour la distribution"
-#: ../../Zotlabs/Module/Dreport.php:94
+#: ../../Zotlabs/Module/Dreport.php:107
msgid "updated"
msgstr "mis à jour"
-#: ../../Zotlabs/Module/Dreport.php:97
+#: ../../Zotlabs/Module/Dreport.php:110
msgid "update ignored"
msgstr "mise à jour ignorée"
-#: ../../Zotlabs/Module/Dreport.php:100
+#: ../../Zotlabs/Module/Dreport.php:113
msgid "permission denied"
msgstr "permission refusée"
-#: ../../Zotlabs/Module/Dreport.php:104
+#: ../../Zotlabs/Module/Dreport.php:117
msgid "recipient not found"
msgstr "destinataire introuvable"
-#: ../../Zotlabs/Module/Dreport.php:107
+#: ../../Zotlabs/Module/Dreport.php:120
msgid "mail recalled"
msgstr "courriel rappelé"
-#: ../../Zotlabs/Module/Dreport.php:110
+#: ../../Zotlabs/Module/Dreport.php:123
msgid "duplicate mail received"
msgstr "courriel reçu en double"
-#: ../../Zotlabs/Module/Dreport.php:113
+#: ../../Zotlabs/Module/Dreport.php:126
msgid "mail delivered"
msgstr "courriel distribué"
-#: ../../Zotlabs/Module/Editlayout.php:126
-#: ../../Zotlabs/Module/Layouts.php:127 ../../Zotlabs/Module/Layouts.php:186
+#: ../../Zotlabs/Module/Dreport.php:146
+#, php-format
+msgid "Delivery report for %1$s"
+msgstr "Rapport de distribution pour %1$s"
+
+#: ../../Zotlabs/Module/Dreport.php:149
+msgid "Options"
+msgstr ""
+
+#: ../../Zotlabs/Module/Dreport.php:150
+msgid "Redeliver"
+msgstr ""
+
+#: ../../Zotlabs/Module/Editlayout.php:127
+#: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188
msgid "Layout Name"
msgstr "Nom de la mise en page"
-#: ../../Zotlabs/Module/Editlayout.php:127
-#: ../../Zotlabs/Module/Layouts.php:130
+#: ../../Zotlabs/Module/Editlayout.php:128
+#: ../../Zotlabs/Module/Layouts.php:131
msgid "Layout Description (Optional)"
msgstr "Description de la mise en page (facultatif)"
-#: ../../Zotlabs/Module/Editlayout.php:135
+#: ../../Zotlabs/Module/Editlayout.php:136
msgid "Edit Layout"
msgstr "Modifier la mise en page"
-#: ../../Zotlabs/Module/Editwebpage.php:143
+#: ../../Zotlabs/Module/Editwebpage.php:142
msgid "Page link"
msgstr ""
-#: ../../Zotlabs/Module/Editwebpage.php:169
+#: ../../Zotlabs/Module/Editwebpage.php:168
msgid "Edit Webpage"
msgstr "Modifier la page web"
-#: ../../Zotlabs/Module/Follow.php:34
-msgid "Channel added."
-msgstr "Canal ajouté."
-
-#: ../../Zotlabs/Module/Acl.php:227
-msgid "network"
-msgstr "réseau"
-
-#: ../../Zotlabs/Module/Acl.php:237
-msgid "RSS"
-msgstr "RSS"
-
#: ../../Zotlabs/Module/Group.php:24
msgid "Privacy group created."
msgstr "Groupe d'accès créé."
@@ -1581,7 +1805,7 @@ msgid "Could not create privacy group."
msgstr "Impossible de créer le groupe d'accès."
#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141
-#: ../../include/items.php:3893
+#: ../../include/items.php:3902
msgid "Privacy group not found."
msgstr "Groupe d'accès introuvable."
@@ -1625,31 +1849,57 @@ msgstr "Tous les canaux connectés"
msgid "Click on a channel to add or remove."
msgstr "Cliquer sur un canal pour l'ajouter ou le supprimer"
-#: ../../Zotlabs/Module/Ffsapi.php:12
-msgid "Share content from Firefox to $Projectname"
-msgstr "Partager du contenu depuis Firefox avec $Projectname"
+#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53
+msgid "App installed."
+msgstr "Application installée."
-#: ../../Zotlabs/Module/Ffsapi.php:15
-msgid "Activate the Firefox $Projectname provider"
-msgstr "Activer le connecteur $Projectname pour Firefox"
+#: ../../Zotlabs/Module/Appman.php:46
+msgid "Malformed app."
+msgstr "Erreur de l'application - Malformée."
-#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85
-msgid "Authorize application connection"
-msgstr "Autoriser l'application à se connecter"
+#: ../../Zotlabs/Module/Appman.php:104
+msgid "Embed code"
+msgstr "Imbriquer le code"
-#: ../../Zotlabs/Module/Api.php:62
-msgid "Return to your app and insert this Securty Code:"
-msgstr "Merci de retourner vers votre application, et d'y insérer ce Code de Sécurité&nbsp;:"
+#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107
+msgid "Edit App"
+msgstr "Modifier l'application"
-#: ../../Zotlabs/Module/Api.php:72
-msgid "Please login to continue."
-msgstr "Merci de vous identifier pour continuer."
+#: ../../Zotlabs/Module/Appman.php:110
+msgid "Create App"
+msgstr "Créer une application"
-#: ../../Zotlabs/Module/Api.php:87
-msgid ""
-"Do you want to authorize this application to access your posts and contacts,"
-" and/or create new posts for you?"
-msgstr "Voulez-vous autoriser cette application à accéder à vos publications et contacts, et/ou à publier en votre nom?"
+#: ../../Zotlabs/Module/Appman.php:115
+msgid "Name of app"
+msgstr "Nom de l'application"
+
+#: ../../Zotlabs/Module/Appman.php:116
+msgid "Location (URL) of app"
+msgstr "Emplacement (URL) de l'application"
+
+#: ../../Zotlabs/Module/Appman.php:118
+msgid "Photo icon URL"
+msgstr "URL de l'icône à utiliser pour cette photo"
+
+#: ../../Zotlabs/Module/Appman.php:118
+msgid "80 x 80 pixels - optional"
+msgstr "80 x 80 pixels - facultatif"
+
+#: ../../Zotlabs/Module/Appman.php:119
+msgid "Categories (optional, comma separated list)"
+msgstr ""
+
+#: ../../Zotlabs/Module/Appman.php:120
+msgid "Version ID"
+msgstr "Identifiant de version"
+
+#: ../../Zotlabs/Module/Appman.php:121
+msgid "Price of app"
+msgstr "Prix de l'application"
+
+#: ../../Zotlabs/Module/Appman.php:122
+msgid "Location (URL) to purchase app"
+msgstr "Emplacement (URL) pour l'achat de l'application"
#: ../../Zotlabs/Module/Help.php:26
msgid "Documentation Search"
@@ -1661,8 +1911,8 @@ msgid "Help:"
msgstr "Aide&nbsp;:"
#: ../../Zotlabs/Module/Help.php:85 ../../Zotlabs/Module/Help.php:90
-#: ../../Zotlabs/Module/Layouts.php:183 ../../Zotlabs/Lib/Apps.php:223
-#: ../../include/nav.php:159
+#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Lib/Apps.php:225
+#: ../../include/nav.php:161
msgid "Help"
msgstr "Aide"
@@ -1670,133 +1920,565 @@ msgstr "Aide"
msgid "$Projectname Documentation"
msgstr "Documentation $Projectname"
-#: ../../Zotlabs/Module/Filestorage.php:88
+#: ../../Zotlabs/Module/Attach.php:13
+msgid "Item not available."
+msgstr "Élément indisponible."
+
+#: ../../Zotlabs/Module/Pdledit.php:18
+msgid "Layout updated."
+msgstr "Mise en page mise à jour."
+
+#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61
+msgid "Edit System Page Description"
+msgstr "Modifier la description de la page du système"
+
+#: ../../Zotlabs/Module/Pdledit.php:56
+msgid "Layout not found."
+msgstr "Mise en page introuvable."
+
+#: ../../Zotlabs/Module/Pdledit.php:62
+msgid "Module Name:"
+msgstr "Nom du module&nbsp;:"
+
+#: ../../Zotlabs/Module/Pdledit.php:63
+msgid "Layout Help"
+msgstr "Aide à la mise en page"
+
+#: ../../Zotlabs/Module/Ffsapi.php:12
+msgid "Share content from Firefox to $Projectname"
+msgstr "Partager du contenu depuis Firefox avec $Projectname"
+
+#: ../../Zotlabs/Module/Ffsapi.php:15
+msgid "Activate the Firefox $Projectname provider"
+msgstr "Activer le connecteur $Projectname pour Firefox"
+
+#: ../../Zotlabs/Module/Acl.php:312
+msgid "network"
+msgstr "réseau"
+
+#: ../../Zotlabs/Module/Acl.php:322
+msgid "RSS"
+msgstr "RSS"
+
+#: ../../Zotlabs/Module/Filestorage.php:87
msgid "Permission Denied."
msgstr "Permission refusée."
-#: ../../Zotlabs/Module/Filestorage.php:104
+#: ../../Zotlabs/Module/Filestorage.php:103
msgid "File not found."
msgstr "Fichier introuvable."
-#: ../../Zotlabs/Module/Filestorage.php:147
+#: ../../Zotlabs/Module/Filestorage.php:146
msgid "Edit file permissions"
msgstr "Modifier les autorisations d'accès au fichier"
-#: ../../Zotlabs/Module/Filestorage.php:156
+#: ../../Zotlabs/Module/Filestorage.php:155
msgid "Set/edit permissions"
msgstr "Définir/modifier les autorisations"
-#: ../../Zotlabs/Module/Filestorage.php:157
+#: ../../Zotlabs/Module/Filestorage.php:156
msgid "Include all files and sub folders"
msgstr "Inclure tous fichiers et sous-répertoires"
-#: ../../Zotlabs/Module/Filestorage.php:158
+#: ../../Zotlabs/Module/Filestorage.php:157
msgid "Return to file list"
msgstr "Retourner à la liste des fichiers"
-#: ../../Zotlabs/Module/Filestorage.php:160
+#: ../../Zotlabs/Module/Filestorage.php:159
msgid "Copy/paste this code to attach file to a post"
msgstr "Copiez/collez ce code pour joindre le fichier à une publication"
-#: ../../Zotlabs/Module/Filestorage.php:161
+#: ../../Zotlabs/Module/Filestorage.php:160
msgid "Copy/paste this URL to link file from a web page"
msgstr "Copiez/collez cette URL pour pointer vers ce fichier depuis une page web"
-#: ../../Zotlabs/Module/Filestorage.php:163
+#: ../../Zotlabs/Module/Filestorage.php:162
msgid "Share this file"
msgstr "Partager ce fichier"
-#: ../../Zotlabs/Module/Filestorage.php:164
+#: ../../Zotlabs/Module/Filestorage.php:163
msgid "Show URL to this file"
msgstr "Montrer l'URL de ce fichier"
-#: ../../Zotlabs/Module/Filestorage.php:165
+#: ../../Zotlabs/Module/Filestorage.php:164
msgid "Notify your contacts about this file"
msgstr "Notifier vos contacts à propos de ce fichier"
-#: ../../Zotlabs/Module/Apps.php:47 ../../include/widgets.php:102
-#: ../../include/nav.php:163
-msgid "Apps"
-msgstr "Applications"
+#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2240
+msgid "Layouts"
+msgstr "Mises-en-page"
-#: ../../Zotlabs/Module/Attach.php:13
-msgid "Item not available."
-msgstr "Élément indisponible."
+#: ../../Zotlabs/Module/Layouts.php:185
+msgid "Comanche page description language help"
+msgstr "Aide sur le langage de description de page Comanche"
+
+#: ../../Zotlabs/Module/Layouts.php:189
+msgid "Layout Description"
+msgstr "Description de la mise en page"
+
+#: ../../Zotlabs/Module/Layouts.php:190 ../../Zotlabs/Module/Menu.php:114
+#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Webpages.php:205
+#: ../../include/page_widgets.php:47
+msgid "Created"
+msgstr "Créé(e)"
+
+#: ../../Zotlabs/Module/Layouts.php:191 ../../Zotlabs/Module/Menu.php:115
+#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Webpages.php:206
+#: ../../include/page_widgets.php:48
+msgid "Edited"
+msgstr "Modifié(e)"
+
+#: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Module/Photos.php:1070
+#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Webpages.php:195
+#: ../../include/conversation.php:1219
+msgid "Share"
+msgstr "Partager"
+
+#: ../../Zotlabs/Module/Layouts.php:194
+msgid "Download PDL file"
+msgstr "Télécharger le fichier PDL"
+
+#: ../../Zotlabs/Module/Like.php:19
+msgid "Like/Dislike"
+msgstr "Aime/n'aime pas"
+
+#: ../../Zotlabs/Module/Like.php:24
+msgid "This action is restricted to members."
+msgstr "Cette action est réservée aux membres."
+
+#: ../../Zotlabs/Module/Like.php:25
+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 "S'il vous plait, <a href=\"rmagic\">identifiez vous avec votre identifant de $Projectname </a> ou <a href=\"register\">inscrivez vous comme nouveau membre de $Projectname </a> pour continuer."
+
+#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131
+#: ../../Zotlabs/Module/Like.php:169
+msgid "Invalid request."
+msgstr "Requête invalide."
+
+#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126
+msgid "channel"
+msgstr "canal"
+
+#: ../../Zotlabs/Module/Like.php:146
+msgid "thing"
+msgstr "chose"
+
+#: ../../Zotlabs/Module/Like.php:192
+msgid "Channel unavailable."
+msgstr "Canal indisponible."
+
+#: ../../Zotlabs/Module/Like.php:240
+msgid "Previous action reversed."
+msgstr "Action précédente annulée."
+
+#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87
+#: ../../Zotlabs/Module/Tagger.php:47 ../../include/conversation.php:120
+#: ../../include/text.php:1921
+msgid "photo"
+msgstr "photo"
+
+#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87
+#: ../../include/conversation.php:148 ../../include/text.php:1927
+msgid "status"
+msgstr "état"
+
+#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:164
+#, php-format
+msgid "%1$s likes %2$s's %3$s"
+msgstr "%1$s aime %3$s de %2$s"
+
+#: ../../Zotlabs/Module/Like.php:421 ../../include/conversation.php:167
+#, php-format
+msgid "%1$s doesn't like %2$s's %3$s"
+msgstr "%1$s n'aime pas %3$s de %2$s"
+
+#: ../../Zotlabs/Module/Like.php:423
+#, php-format
+msgid "%1$s agrees with %2$s's %3$s"
+msgstr "%1$s approuve %3$s de %2$s"
+
+#: ../../Zotlabs/Module/Like.php:425
+#, php-format
+msgid "%1$s doesn't agree with %2$s's %3$s"
+msgstr "%1$s n'est pas d'accord avec %3$s de %2$s"
+
+#: ../../Zotlabs/Module/Like.php:427
+#, php-format
+msgid "%1$s abstains from a decision on %2$s's %3$s"
+msgstr "%1$s s'abstient de toute décision sur le %3$s de %2$s"
+
+#: ../../Zotlabs/Module/Like.php:429
+#, php-format
+msgid "%1$s is attending %2$s's %3$s"
+msgstr "%1$s participe à %3$s de %2$s"
+
+#: ../../Zotlabs/Module/Like.php:431
+#, php-format
+msgid "%1$s is not attending %2$s's %3$s"
+msgstr "%1$s ne participe pas à %3$s de %2$s"
+
+#: ../../Zotlabs/Module/Like.php:433
+#, php-format
+msgid "%1$s may attend %2$s's %3$s"
+msgstr "%1$s participe peut-être à %3$s de %2$s"
+
+#: ../../Zotlabs/Module/Like.php:536
+msgid "Action completed."
+msgstr "Action terminée."
+
+#: ../../Zotlabs/Module/Like.php:537
+msgid "Thank you."
+msgstr "Merci."
+
+#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189
+#: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625
+msgid "Profile not found."
+msgstr "Profil introuvable."
+
+#: ../../Zotlabs/Module/Profiles.php:44
+msgid "Profile deleted."
+msgstr "Profil supprimé."
+
+#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104
+msgid "Profile-"
+msgstr "Profil-"
+
+#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132
+msgid "New profile created."
+msgstr "Nouveau profil créé."
+
+#: ../../Zotlabs/Module/Profiles.php:110
+msgid "Profile unavailable to clone."
+msgstr "Profil impossible à cloner."
+
+#: ../../Zotlabs/Module/Profiles.php:151
+msgid "Profile unavailable to export."
+msgstr "Impossible d'exporter le profil."
+
+#: ../../Zotlabs/Module/Profiles.php:256
+msgid "Profile Name is required."
+msgstr "Le nom du profil est obligatoire."
+
+#: ../../Zotlabs/Module/Profiles.php:427
+msgid "Marital Status"
+msgstr "Statut marital"
+
+#: ../../Zotlabs/Module/Profiles.php:431
+msgid "Romantic Partner"
+msgstr "Partenaire amoureux"
+
+#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736
+msgid "Likes"
+msgstr "Aime"
-#: ../../Zotlabs/Module/Import.php:32
+#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737
+msgid "Dislikes"
+msgstr "N'aime pas"
+
+#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744
+msgid "Work/Employment"
+msgstr "Travail/Occupation"
+
+#: ../../Zotlabs/Module/Profiles.php:446
+msgid "Religion"
+msgstr "Religion/Croyance"
+
+#: ../../Zotlabs/Module/Profiles.php:450
+msgid "Political Views"
+msgstr "Opinions politiques"
+
+#: ../../Zotlabs/Module/Profiles.php:458
+msgid "Sexual Preference"
+msgstr "Préférences sexuelle"
+
+#: ../../Zotlabs/Module/Profiles.php:462
+msgid "Homepage"
+msgstr "Site Internet"
+
+#: ../../Zotlabs/Module/Profiles.php:466
+msgid "Interests"
+msgstr "Centres d'intérêt"
+
+#: ../../Zotlabs/Module/Profiles.php:470 ../../Zotlabs/Module/Locs.php:118
+#: ../../Zotlabs/Module/Admin.php:1224
+msgid "Address"
+msgstr "Adresse"
+
+#: ../../Zotlabs/Module/Profiles.php:560
+msgid "Profile updated."
+msgstr "Profil mis à jour."
+
+#: ../../Zotlabs/Module/Profiles.php:644
+msgid "Hide your connections list from viewers of this profile"
+msgstr ""
+
+#: ../../Zotlabs/Module/Profiles.php:686
+msgid "Edit Profile Details"
+msgstr "Modifier les détails du profil"
+
+#: ../../Zotlabs/Module/Profiles.php:688
+msgid "View this profile"
+msgstr "Voir ce profil"
+
+#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771
+#: ../../include/channel.php:998
+msgid "Edit visibility"
+msgstr "Changer la visibilité"
+
+#: ../../Zotlabs/Module/Profiles.php:690
+msgid "Profile Tools"
+msgstr ""
+
+#: ../../Zotlabs/Module/Profiles.php:691
+msgid "Change cover photo"
+msgstr ""
+
+#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:969
+msgid "Change profile photo"
+msgstr "Changer la photo du profil"
+
+#: ../../Zotlabs/Module/Profiles.php:693
+msgid "Create a new profile using these settings"
+msgstr "Créer un nouveau profil avec ces paramètres"
+
+#: ../../Zotlabs/Module/Profiles.php:694
+msgid "Clone this profile"
+msgstr "Cloner ce profil"
+
+#: ../../Zotlabs/Module/Profiles.php:695
+msgid "Delete this profile"
+msgstr "Supprimer ce profil"
+
+#: ../../Zotlabs/Module/Profiles.php:696
+msgid "Add profile things"
+msgstr "Ajouter des éléments de profil"
+
+#: ../../Zotlabs/Module/Profiles.php:697 ../../include/conversation.php:1541
+#: ../../include/widgets.php:105
+msgid "Personal"
+msgstr "Me concernant"
+
+#: ../../Zotlabs/Module/Profiles.php:699
+msgid "Relation"
+msgstr ""
+
+#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48
+msgid "Miscellaneous"
+msgstr "Divers"
+
+#: ../../Zotlabs/Module/Profiles.php:702
+msgid "Import profile from file"
+msgstr "Importer le profil à partir d'un fichier"
+
+#: ../../Zotlabs/Module/Profiles.php:703
+msgid "Export profile to file"
+msgstr "Exporter le profil vers un fichier."
+
+#: ../../Zotlabs/Module/Profiles.php:704
+msgid "Your gender"
+msgstr ""
+
+#: ../../Zotlabs/Module/Profiles.php:705
+msgid "Marital status"
+msgstr ""
+
+#: ../../Zotlabs/Module/Profiles.php:706
+msgid "Sexual preference"
+msgstr ""
+
+#: ../../Zotlabs/Module/Profiles.php:709
+msgid "Profile name"
+msgstr ""
+
+#: ../../Zotlabs/Module/Profiles.php:711
+msgid "This is your default profile."
+msgstr "Ceci est votre profil par défaut."
+
+#: ../../Zotlabs/Module/Profiles.php:713
+msgid "Your full name"
+msgstr ""
+
+#: ../../Zotlabs/Module/Profiles.php:714
+msgid "Title/Description"
+msgstr "Titre/description"
+
+#: ../../Zotlabs/Module/Profiles.php:717
+msgid "Street address"
+msgstr ""
+
+#: ../../Zotlabs/Module/Profiles.php:718
+msgid "Locality/City"
+msgstr "Ville"
+
+#: ../../Zotlabs/Module/Profiles.php:719
+msgid "Region/State"
+msgstr "Région"
+
+#: ../../Zotlabs/Module/Profiles.php:720
+msgid "Postal/Zip code"
+msgstr ""
+
+#: ../../Zotlabs/Module/Profiles.php:721
+msgid "Country"
+msgstr "Pays"
+
+#: ../../Zotlabs/Module/Profiles.php:726
+msgid "Who (if applicable)"
+msgstr "Qui (si applicable)"
+
+#: ../../Zotlabs/Module/Profiles.php:726
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+msgstr "Exemples&nbsp;: marie123, Marie Deschamps, marie@exemple.com"
+
+#: ../../Zotlabs/Module/Profiles.php:727
+msgid "Since (date)"
+msgstr ""
+
+#: ../../Zotlabs/Module/Profiles.php:730
+msgid "Tell us about yourself"
+msgstr ""
+
+#: ../../Zotlabs/Module/Profiles.php:732
+msgid "Hometown"
+msgstr "Ville de naissance"
+
+#: ../../Zotlabs/Module/Profiles.php:733
+msgid "Political views"
+msgstr ""
+
+#: ../../Zotlabs/Module/Profiles.php:734
+msgid "Religious views"
+msgstr ""
+
+#: ../../Zotlabs/Module/Profiles.php:735
+msgid "Keywords used in directory listings"
+msgstr ""
+
+#: ../../Zotlabs/Module/Profiles.php:735
+msgid "Example: fishing photography software"
+msgstr "Exemple&nbsp;: escrime photographie modélisme"
+
+#: ../../Zotlabs/Module/Profiles.php:738
+msgid "Musical interests"
+msgstr "Goûts musicaux"
+
+#: ../../Zotlabs/Module/Profiles.php:739
+msgid "Books, literature"
+msgstr "Livres, littérature"
+
+#: ../../Zotlabs/Module/Profiles.php:740
+msgid "Television"
+msgstr "Télévision"
+
+#: ../../Zotlabs/Module/Profiles.php:741
+msgid "Film/Dance/Culture/Entertainment"
+msgstr ""
+
+#: ../../Zotlabs/Module/Profiles.php:742
+msgid "Hobbies/Interests"
+msgstr "Loisirs/Centres d'intêret"
+
+#: ../../Zotlabs/Module/Profiles.php:743
+msgid "Love/Romance"
+msgstr ""
+
+#: ../../Zotlabs/Module/Profiles.php:745
+msgid "School/Education"
+msgstr ""
+
+#: ../../Zotlabs/Module/Profiles.php:746
+msgid "Contact information and social networks"
+msgstr ""
+
+#: ../../Zotlabs/Module/Profiles.php:747
+msgid "My other channels"
+msgstr "Mes autres canaux"
+
+#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:994
+msgid "Profile Image"
+msgstr "Image du profil"
+
+#: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:88
+#: ../../include/channel.php:976
+msgid "Edit Profiles"
+msgstr "Modifier les profils"
+
+#: ../../Zotlabs/Module/Import.php:33
#, php-format
msgid "Your service plan only allows %d channels."
msgstr "Votre forfait n'autorise que %d canaux."
-#: ../../Zotlabs/Module/Import.php:70 ../../Zotlabs/Module/Import_items.php:42
+#: ../../Zotlabs/Module/Import.php:71 ../../Zotlabs/Module/Import_items.php:42
msgid "Nothing to import."
msgstr "Rien à importer."
-#: ../../Zotlabs/Module/Import.php:94 ../../Zotlabs/Module/Import_items.php:66
+#: ../../Zotlabs/Module/Import.php:95 ../../Zotlabs/Module/Import_items.php:66
msgid "Unable to download data from old server"
msgstr "Impossible de récupérer les données de l'ancien serveur"
-#: ../../Zotlabs/Module/Import.php:100
+#: ../../Zotlabs/Module/Import.php:101
#: ../../Zotlabs/Module/Import_items.php:72
msgid "Imported file is empty."
msgstr "Le fichier importé est vide."
-#: ../../Zotlabs/Module/Import.php:122
-#: ../../Zotlabs/Module/Import_items.php:86
+#: ../../Zotlabs/Module/Import.php:123
+#: ../../Zotlabs/Module/Import_items.php:88
#, php-format
msgid "Warning: Database versions differ by %1$d updates."
msgstr "Attention&nbsp;: les versions de bases de données diffèrent de %1$d mises à jour."
-#: ../../Zotlabs/Module/Import.php:150 ../../include/import.php:86
+#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107
msgid "Cloned channel not found. Import failed."
msgstr "Canal cloné non trouvé. Echec de l'import."
-#: ../../Zotlabs/Module/Import.php:160
+#: ../../Zotlabs/Module/Import.php:163
msgid "No channel. Import failed."
msgstr "Pas de canal. Echec de l'import."
-#: ../../Zotlabs/Module/Import.php:510
+#: ../../Zotlabs/Module/Import.php:520
#: ../../include/Import/import_diaspora.php:142
msgid "Import completed."
msgstr "L'import est terminé."
-#: ../../Zotlabs/Module/Import.php:532
+#: ../../Zotlabs/Module/Import.php:542
msgid "You must be logged in to use this feature."
msgstr "Vous devez vous connecter pour utiliser cette fonctionnalité."
-#: ../../Zotlabs/Module/Import.php:537
+#: ../../Zotlabs/Module/Import.php:547
msgid "Import Channel"
msgstr "Importation de canal"
-#: ../../Zotlabs/Module/Import.php:538
+#: ../../Zotlabs/Module/Import.php:548
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 "Utilisez ce formulaire pour importer un canal existant sur un autre serveur. Vous pouvez récupérer l'identité du canal sur l'ancien serveur directement par le réseau, ou bien fournir un fichier d'export/import."
-#: ../../Zotlabs/Module/Import.php:539
-#: ../../Zotlabs/Module/Import_items.php:119
+#: ../../Zotlabs/Module/Import.php:549
+#: ../../Zotlabs/Module/Import_items.php:121
msgid "File to Upload"
msgstr "Fichier à envoyer"
-#: ../../Zotlabs/Module/Import.php:540
+#: ../../Zotlabs/Module/Import.php:550
msgid "Or provide the old server/hub details"
msgstr "Ou fournissez les détails de l'ancien serveur/hub"
-#: ../../Zotlabs/Module/Import.php:541
+#: ../../Zotlabs/Module/Import.php:551
msgid "Your old identity address (xyz@example.com)"
msgstr "Votre ancienne identité (zyx@exemple.com)"
-#: ../../Zotlabs/Module/Import.php:542
+#: ../../Zotlabs/Module/Import.php:552
msgid "Your old login email address"
msgstr "Votre ancienne adresse de courriel"
-#: ../../Zotlabs/Module/Import.php:543
+#: ../../Zotlabs/Module/Import.php:553
msgid "Your old login password"
msgstr "Votre ancien mot de passe"
-#: ../../Zotlabs/Module/Import.php:544
+#: ../../Zotlabs/Module/Import.php:554
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"
@@ -1804,304 +2486,369 @@ msgid ""
"primary location for files, photos, and media."
msgstr "Quelle que soit l'option choisie, merci de décider si ce hub sera votre nouvelle adresse primaire, ou si votre ancien hub continuera à jouer ce rôle. Vous pourrez publier depuis l'emplacement de votre choix, mais une seule peut être déclarée comme stockage primaire de vos fichiers/photos/media."
-#: ../../Zotlabs/Module/Import.php:545
+#: ../../Zotlabs/Module/Import.php:555
msgid "Make this hub my primary location"
msgstr "Faire de ce hub mon emplacement primaire"
-#: ../../Zotlabs/Module/Import.php:546
+#: ../../Zotlabs/Module/Import.php:556
msgid ""
"Import existing posts if possible (experimental - limited by available "
"memory"
msgstr "Importer les publications existantes si possible (expérimental - limité par la mémoire disponible)"
-#: ../../Zotlabs/Module/Import.php:547
+#: ../../Zotlabs/Module/Import.php:557
msgid ""
"This process may take several minutes to complete. Please submit the form "
"only once and leave this page open until finished."
msgstr "Ce processus peut prendre plusieurs minutes. Merci de ne valider le formulaire qu'une seule fois et de laisser cette page ouverte jusqu'à la fin."
-#: ../../Zotlabs/Module/Item.php:178
+#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82
+#: ../../Zotlabs/Module/Siteinfo.php:48
+msgid "$Projectname"
+msgstr "$Projectname"
+
+#: ../../Zotlabs/Module/Home.php:92
+#, php-format
+msgid "Welcome to %s"
+msgstr "Bienvenue sur %s"
+
+#: ../../Zotlabs/Module/Item.php:179
msgid "Unable to locate original post."
msgstr "Impossible de localiser la publication initiale."
-#: ../../Zotlabs/Module/Item.php:427
+#: ../../Zotlabs/Module/Item.php:432
msgid "Empty post discarded."
msgstr "Publication vide annulée."
-#: ../../Zotlabs/Module/Item.php:467
+#: ../../Zotlabs/Module/Item.php:472
msgid "Executable content type not permitted to this channel."
msgstr "Les contenus de type 'exécutable' ne sont pas autorisés sur ce canal."
-#: ../../Zotlabs/Module/Item.php:847
+#: ../../Zotlabs/Module/Item.php:856
msgid "Duplicate post suppressed."
msgstr "Publication en doublon supprimée."
-#: ../../Zotlabs/Module/Item.php:977
+#: ../../Zotlabs/Module/Item.php:989
msgid "System error. Post not saved."
msgstr "Erreur système. Publication non sauvegardée."
-#: ../../Zotlabs/Module/Item.php:1241
+#: ../../Zotlabs/Module/Item.php:1242
msgid "Unable to obtain post information from database."
msgstr "Impossible d'obtenir les informations de publication depuis la base de données."
-#: ../../Zotlabs/Module/Item.php:1248
+#: ../../Zotlabs/Module/Item.php:1249
#, php-format
msgid "You have reached your limit of %1$.0f top level posts."
msgstr "Vous avez atteint votre limite de %1$.0f contributions \"racines\"."
-#: ../../Zotlabs/Module/Item.php:1255
+#: ../../Zotlabs/Module/Item.php:1256
#, php-format
msgid "You have reached your limit of %1$.0f webpages."
msgstr "Vous avez atteint votre limite de %1$.0f pages web."
-#: ../../Zotlabs/Module/Layouts.php:181 ../../include/text.php:2267
-msgid "Layouts"
-msgstr "Mises-en-page"
+#: ../../Zotlabs/Module/Photos.php:82
+msgid "Page owner information could not be retrieved."
+msgstr "Impossible d'obtenir des informations sur le propriétaire de la page."
-#: ../../Zotlabs/Module/Layouts.php:183
-msgid "Comanche page description language help"
-msgstr "Aide sur le langage de description de page Comanche"
+#: ../../Zotlabs/Module/Photos.php:97 ../../Zotlabs/Module/Photos.php:741
+#: ../../Zotlabs/Module/Profile_photo.php:115
+#: ../../Zotlabs/Module/Profile_photo.php:212
+#: ../../Zotlabs/Module/Profile_photo.php:311
+#: ../../include/photo/photo_driver.php:718
+msgid "Profile Photos"
+msgstr "Photos du profil"
-#: ../../Zotlabs/Module/Layouts.php:187
-msgid "Layout Description"
-msgstr "Description de la mise en page"
+#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:147
+msgid "Album not found."
+msgstr "Album introuvable."
-#: ../../Zotlabs/Module/Layouts.php:192
-msgid "Download PDL file"
-msgstr "Télécharger le fichier PDL"
+#: ../../Zotlabs/Module/Photos.php:130
+msgid "Delete Album"
+msgstr "Supprimer l'album"
-#: ../../Zotlabs/Module/Home.php:61 ../../Zotlabs/Module/Home.php:69
-#: ../../Zotlabs/Module/Siteinfo.php:65
-msgid "$Projectname"
-msgstr "$Projectname"
+#: ../../Zotlabs/Module/Photos.php:151
+msgid ""
+"Multiple storage folders exist with this album name, but within different "
+"directories. Please remove the desired folder or folders using the Files "
+"manager"
+msgstr ""
-#: ../../Zotlabs/Module/Home.php:79
+#: ../../Zotlabs/Module/Photos.php:208 ../../Zotlabs/Module/Photos.php:1051
+msgid "Delete Photo"
+msgstr "Supprimer la photo"
+
+#: ../../Zotlabs/Module/Photos.php:531
+msgid "No photos selected"
+msgstr "Aucune photo selectionnée"
+
+#: ../../Zotlabs/Module/Photos.php:580
+msgid "Access to this item is restricted."
+msgstr "L'accès à l'élément est restreint."
+
+#: ../../Zotlabs/Module/Photos.php:619
#, php-format
-msgid "Welcome to %s"
-msgstr "Bienvenue sur %s"
+msgid "%1$.2f MB of %2$.2f MB photo storage used."
+msgstr "Vous avez utilisé %1$.2f mégaoctets sur les %2$.2f autorisés pour le stockage des photos."
-#: ../../Zotlabs/Module/Id.php:13
-msgid "First Name"
-msgstr "Prénom"
+#: ../../Zotlabs/Module/Photos.php:622
+#, php-format
+msgid "%1$.2f MB photo storage used."
+msgstr "%1$.2f méga-octets utilisés pour le stockage des photos."
-#: ../../Zotlabs/Module/Id.php:14
-msgid "Last Name"
-msgstr "Nom de famille"
+#: ../../Zotlabs/Module/Photos.php:658
+msgid "Upload Photos"
+msgstr "Téléverser des photos"
-#: ../../Zotlabs/Module/Id.php:15
-msgid "Nickname"
-msgstr "Surnom"
+#: ../../Zotlabs/Module/Photos.php:662
+msgid "Enter an album name"
+msgstr "Entrer un nom d'album"
-#: ../../Zotlabs/Module/Id.php:16
-msgid "Full Name"
-msgstr "Nom complet"
+#: ../../Zotlabs/Module/Photos.php:663
+msgid "or select an existing album (doubleclick)"
+msgstr "ou sélectionner un album existant (double-clic)"
-#: ../../Zotlabs/Module/Id.php:17 ../../Zotlabs/Module/Id.php:18
-#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047
-#: ../../include/network.php:2151 ../../boot.php:1705
-msgid "Email"
-msgstr "Courriel"
+#: ../../Zotlabs/Module/Photos.php:664
+msgid "Create a status post for this upload"
+msgstr "Créer une publication de statut pour cet envoi"
-#: ../../Zotlabs/Module/Id.php:19 ../../Zotlabs/Module/Id.php:20
-#: ../../Zotlabs/Module/Id.php:21 ../../Zotlabs/Lib/Apps.php:236
-msgid "Profile Photo"
-msgstr "Photo du Profil"
+#: ../../Zotlabs/Module/Photos.php:665
+msgid "Caption (optional):"
+msgstr "Légende (facultative)"
-#: ../../Zotlabs/Module/Id.php:22
-msgid "Profile Photo 16px"
-msgstr "Photo de profil 16px"
+#: ../../Zotlabs/Module/Photos.php:666
+msgid "Description (optional):"
+msgstr "Description (facultative)"
-#: ../../Zotlabs/Module/Id.php:23
-msgid "Profile Photo 32px"
-msgstr "Photo de profil 32px"
+#: ../../Zotlabs/Module/Photos.php:693
+msgid "Album name could not be decoded"
+msgstr "Le nom de l'Album n'a pu être décodé"
-#: ../../Zotlabs/Module/Id.php:24
-msgid "Profile Photo 48px"
-msgstr "Photo de profil 48px"
+#: ../../Zotlabs/Module/Photos.php:741
+msgid "Contact Photos"
+msgstr "Photos de contact"
-#: ../../Zotlabs/Module/Id.php:25
-msgid "Profile Photo 64px"
-msgstr "Photo de profil 64px"
+#: ../../Zotlabs/Module/Photos.php:764
+msgid "Show Newest First"
+msgstr "Les plus récent(e)s en premier"
-#: ../../Zotlabs/Module/Id.php:26
-msgid "Profile Photo 80px"
-msgstr "Photo de profil 80px"
+#: ../../Zotlabs/Module/Photos.php:766
+msgid "Show Oldest First"
+msgstr "Les moins récent(e)s en premier"
-#: ../../Zotlabs/Module/Id.php:27
-msgid "Profile Photo 128px"
-msgstr "Photo de profil 128px"
+#: ../../Zotlabs/Module/Photos.php:790 ../../Zotlabs/Module/Photos.php:1329
+#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1593
+msgid "View Photo"
+msgstr "Voir la photo"
-#: ../../Zotlabs/Module/Id.php:28
-msgid "Timezone"
-msgstr "Fuseau horaire"
+#: ../../Zotlabs/Module/Photos.php:821
+#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1610
+msgid "Edit Album"
+msgstr "Modifier l'album"
-#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:731
-msgid "Homepage URL"
-msgstr "URL de mon site Internet&nbsp;:"
+#: ../../Zotlabs/Module/Photos.php:868
+msgid "Permission denied. Access to this item may be restricted."
+msgstr "Permission refusée. L'accès à cet élément peut avoir été restreint."
-#: ../../Zotlabs/Module/Id.php:30 ../../Zotlabs/Lib/Apps.php:234
-msgid "Language"
-msgstr "Langue"
+#: ../../Zotlabs/Module/Photos.php:870
+msgid "Photo not available"
+msgstr "Photo non disponible"
-#: ../../Zotlabs/Module/Id.php:31
-msgid "Birth Year"
-msgstr "Année de naissance"
+#: ../../Zotlabs/Module/Photos.php:928
+msgid "Use as profile photo"
+msgstr "Utiliser comme photo du profil"
-#: ../../Zotlabs/Module/Id.php:32
-msgid "Birth Month"
-msgstr "Mois de naissance"
+#: ../../Zotlabs/Module/Photos.php:929
+msgid "Use as cover photo"
+msgstr ""
-#: ../../Zotlabs/Module/Id.php:33
-msgid "Birth Day"
-msgstr "Jour de naissance"
+#: ../../Zotlabs/Module/Photos.php:936
+msgid "Private Photo"
+msgstr "Photo privée"
-#: ../../Zotlabs/Module/Id.php:34
-msgid "Birthdate"
-msgstr "Date de naissance"
+#: ../../Zotlabs/Module/Photos.php:951
+msgid "View Full Size"
+msgstr "Voir en taille réelle"
-#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:454
-msgid "Gender"
-msgstr "Sexe"
+#: ../../Zotlabs/Module/Photos.php:996 ../../Zotlabs/Module/Admin.php:1437
+#: ../../Zotlabs/Module/Tagrm.php:137
+msgid "Remove"
+msgstr "Retirer"
-#: ../../Zotlabs/Module/Id.php:108 ../../include/selectors.php:49
-#: ../../include/selectors.php:66
-msgid "Male"
-msgstr "Homme"
+#: ../../Zotlabs/Module/Photos.php:1030
+msgid "Edit photo"
+msgstr "Modifier la photo"
-#: ../../Zotlabs/Module/Id.php:110 ../../include/selectors.php:49
-#: ../../include/selectors.php:66
-msgid "Female"
-msgstr "Femme"
+#: ../../Zotlabs/Module/Photos.php:1032
+msgid "Rotate CW (right)"
+msgstr "Rotation horaire (droite)"
-#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192
-msgid "webpage"
-msgstr "pages web"
+#: ../../Zotlabs/Module/Photos.php:1033
+msgid "Rotate CCW (left)"
+msgstr "Rotation anti-horaire (gauche)"
-#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198
-msgid "block"
-msgstr "bloquer"
+#: ../../Zotlabs/Module/Photos.php:1036
+msgid "Enter a new album name"
+msgstr "Entrer un nouveau nom d'album"
-#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195
-msgid "layout"
-msgstr "mise en page"
+#: ../../Zotlabs/Module/Photos.php:1037
+msgid "or select an existing one (doubleclick)"
+msgstr "ou en sélectionner un existant (double-clic)"
-#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201
-msgid "menu"
-msgstr "menu"
+#: ../../Zotlabs/Module/Photos.php:1040
+msgid "Caption"
+msgstr "Titre/légende"
-#: ../../Zotlabs/Module/Impel.php:196
-#, php-format
-msgid "%s element installed"
-msgstr "Elément %s installé"
+#: ../../Zotlabs/Module/Photos.php:1042
+msgid "Add a Tag"
+msgstr "Ajouter une étiquette"
-#: ../../Zotlabs/Module/Impel.php:199
-#, php-format
-msgid "%s element installation failed"
-msgstr "L'installation de l'élément %s a échoué"
+#: ../../Zotlabs/Module/Photos.php:1046
+msgid "Example: @bob, @Barbara_Jensen, @jim@example.com"
+msgstr "Exemple&nbsp;: @marc, @Barbara_Jensen, @charles@exemple.com, #Ile_de_France, #marathon"
-#: ../../Zotlabs/Module/Like.php:19
-msgid "Like/Dislike"
-msgstr "Aime/n'aime pas"
+#: ../../Zotlabs/Module/Photos.php:1049
+msgid "Flag as adult in album view"
+msgstr "Marquer comme \"adulte\" dans l'affichage de l'album"
-#: ../../Zotlabs/Module/Like.php:24
-msgid "This action is restricted to members."
-msgstr "Cette action est réservée aux membres."
+#: ../../Zotlabs/Module/Photos.php:1068 ../../Zotlabs/Lib/ThreadItem.php:261
+msgid "I like this (toggle)"
+msgstr "J'aime (oui/non)"
-#: ../../Zotlabs/Module/Like.php:25
-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 "S'il vous plait, <a href=\"rmagic\">identifiez vous avec votre identifant de $Projectname </a> ou <a href=\"register\">inscrivez vous comme nouveau membre de $Projectname </a> pour continuer."
+#: ../../Zotlabs/Module/Photos.php:1069 ../../Zotlabs/Lib/ThreadItem.php:262
+msgid "I don't like this (toggle)"
+msgstr "Je n'aime pas (oui/non)"
-#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131
-#: ../../Zotlabs/Module/Like.php:169
-msgid "Invalid request."
-msgstr "Requête invalide."
+#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:397
+#: ../../include/conversation.php:743
+msgid "Please wait"
+msgstr "Merci de patienter"
-#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126
-msgid "channel"
-msgstr "canal"
+#: ../../Zotlabs/Module/Photos.php:1087 ../../Zotlabs/Module/Photos.php:1205
+#: ../../Zotlabs/Lib/ThreadItem.php:707
+msgid "This is you"
+msgstr "C'est vous"
-#: ../../Zotlabs/Module/Like.php:146
-msgid "thing"
-msgstr "chose"
+#: ../../Zotlabs/Module/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207
+#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6
+msgid "Comment"
+msgstr "Commenter"
-#: ../../Zotlabs/Module/Like.php:192
-msgid "Channel unavailable."
-msgstr "Canal indisponible."
+#: ../../Zotlabs/Module/Photos.php:1105 ../../include/conversation.php:577
+msgctxt "title"
+msgid "Likes"
+msgstr "Aime"
-#: ../../Zotlabs/Module/Like.php:240
-msgid "Previous action reversed."
-msgstr "Action précédente annulée."
+#: ../../Zotlabs/Module/Photos.php:1105 ../../include/conversation.php:577
+msgctxt "title"
+msgid "Dislikes"
+msgstr "N'aime pas"
-#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87
-#: ../../Zotlabs/Module/Tagger.php:47 ../../include/text.php:1940
-#: ../../include/conversation.php:120
-msgid "photo"
-msgstr "photo"
+#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578
+msgctxt "title"
+msgid "Agree"
+msgstr "D'accord"
-#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87
-#: ../../include/text.php:1946 ../../include/conversation.php:148
-msgid "status"
-msgstr "état"
+#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578
+msgctxt "title"
+msgid "Disagree"
+msgstr "Pas d'accord"
-#: ../../Zotlabs/Module/Like.php:420 ../../include/conversation.php:164
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "%1$s aime %3$s de %2$s"
+#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578
+msgctxt "title"
+msgid "Abstain"
+msgstr "Abstention"
-#: ../../Zotlabs/Module/Like.php:422 ../../include/conversation.php:167
-#, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
-msgstr "%1$s n'aime pas %3$s de %2$s"
+#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579
+msgctxt "title"
+msgid "Attending"
+msgstr "Participations"
-#: ../../Zotlabs/Module/Like.php:424
-#, php-format
-msgid "%1$s agrees with %2$s's %3$s"
-msgstr "%1$s approuve %3$s de %2$s"
+#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579
+msgctxt "title"
+msgid "Not attending"
+msgstr "Non-participations"
-#: ../../Zotlabs/Module/Like.php:426
-#, php-format
-msgid "%1$s doesn't agree with %2$s's %3$s"
-msgstr "%1$s n'est pas d'accord avec %3$s de %2$s"
+#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579
+msgctxt "title"
+msgid "Might attend"
+msgstr "Participation possible"
-#: ../../Zotlabs/Module/Like.php:428
-#, php-format
-msgid "%1$s abstains from a decision on %2$s's %3$s"
-msgstr "%1$s s'abstient de toute décision sur le %3$s de %2$s"
+#: ../../Zotlabs/Module/Photos.php:1124 ../../Zotlabs/Module/Photos.php:1136
+#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193
+#: ../../include/conversation.php:1738
+msgid "View all"
+msgstr "Voir tout"
-#: ../../Zotlabs/Module/Like.php:430
-#, php-format
-msgid "%1$s is attending %2$s's %3$s"
-msgstr "%1$s participe à %3$s de %2$s"
+#: ../../Zotlabs/Module/Photos.php:1128 ../../Zotlabs/Lib/ThreadItem.php:185
+#: ../../include/taxonomy.php:403 ../../include/channel.php:1198
+#: ../../include/conversation.php:1762
+msgctxt "noun"
+msgid "Like"
+msgid_plural "Likes"
+msgstr[0] "Aime"
+msgstr[1] "Aime"
-#: ../../Zotlabs/Module/Like.php:432
-#, php-format
-msgid "%1$s is not attending %2$s's %3$s"
-msgstr "%1$s ne participe pas à %3$s de %2$s"
+#: ../../Zotlabs/Module/Photos.php:1133 ../../Zotlabs/Lib/ThreadItem.php:190
+#: ../../include/conversation.php:1765
+msgctxt "noun"
+msgid "Dislike"
+msgid_plural "Dislikes"
+msgstr[0] "N'aime pas"
+msgstr[1] "N'aime pas"
-#: ../../Zotlabs/Module/Like.php:434
-#, php-format
-msgid "%1$s may attend %2$s's %3$s"
-msgstr "%1$s participe peut-être à %3$s de %2$s"
+#: ../../Zotlabs/Module/Photos.php:1233
+msgid "Photo Tools"
+msgstr ""
-#: ../../Zotlabs/Module/Like.php:537
-msgid "Action completed."
-msgstr "Action terminée."
+#: ../../Zotlabs/Module/Photos.php:1242
+msgid "In This Photo:"
+msgstr "Dans cette photo&nbsp;:"
-#: ../../Zotlabs/Module/Like.php:538
-msgid "Thank you."
-msgstr "Merci."
+#: ../../Zotlabs/Module/Photos.php:1247
+msgid "Map"
+msgstr "Carte"
-#: ../../Zotlabs/Module/Import_items.php:102
+#: ../../Zotlabs/Module/Photos.php:1255 ../../Zotlabs/Lib/ThreadItem.php:386
+msgctxt "noun"
+msgid "Likes"
+msgstr "Aime"
+
+#: ../../Zotlabs/Module/Photos.php:1256 ../../Zotlabs/Lib/ThreadItem.php:387
+msgctxt "noun"
+msgid "Dislikes"
+msgstr "N'aime pas"
+
+#: ../../Zotlabs/Module/Photos.php:1261 ../../Zotlabs/Lib/ThreadItem.php:392
+#: ../../include/acl_selectors.php:283
+msgid "Close"
+msgstr "Fermer"
+
+#: ../../Zotlabs/Module/Photos.php:1335
+msgid "View Album"
+msgstr "Voir l'album"
+
+#: ../../Zotlabs/Module/Photos.php:1346 ../../Zotlabs/Module/Photos.php:1359
+#: ../../Zotlabs/Module/Photos.php:1360
+msgid "Recent Photos"
+msgstr "Photos récentes"
+
+#: ../../Zotlabs/Module/Lockview.php:75
+msgid "Remote privacy information not available."
+msgstr "Les informations distantes de confidentialité ne sont pas disponibles."
+
+#: ../../Zotlabs/Module/Lockview.php:96
+msgid "Visible to:"
+msgstr "Visible par&nbsp;:"
+
+#: ../../Zotlabs/Module/Import_items.php:104
msgid "Import completed"
msgstr "L'import est terminé."
-#: ../../Zotlabs/Module/Import_items.php:117
+#: ../../Zotlabs/Module/Import_items.php:119
msgid "Import Items"
msgstr "Importer"
-#: ../../Zotlabs/Module/Import_items.php:118
+#: ../../Zotlabs/Module/Import_items.php:120
msgid ""
"Use this form to import existing posts and content from an export file."
msgstr "Utiliser ce formulaire pour importer des publications et du contenu existant d'un fichier d'export."
@@ -2147,7 +2894,7 @@ msgstr "Envoyer des invitations"
msgid "Enter email addresses, one per line:"
msgstr "Entrez les adresses de courriel, une par ligne&nbsp;:"
-#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:249
+#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:241
msgid "Your message:"
msgstr "Votre message&nbsp;:"
@@ -2176,14 +2923,6 @@ msgstr "ou rendez-vous sur"
msgid "3. Click [Connect]"
msgstr "3. Cliquez sur [Ajouter]"
-#: ../../Zotlabs/Module/Lockview.php:61
-msgid "Remote privacy information not available."
-msgstr "Les informations distantes de confidentialité ne sont pas disponibles."
-
-#: ../../Zotlabs/Module/Lockview.php:82
-msgid "Visible to:"
-msgstr "Visible par&nbsp;:"
-
#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54
msgid "Location not found."
msgstr "Emplacement introuvable."
@@ -2210,11 +2949,6 @@ msgstr "Emplacement(s) introuvable."
msgid "Manage Channel Locations"
msgstr "Gérer les emplacements des canaux"
-#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:470
-#: ../../Zotlabs/Module/Admin.php:1224
-msgid "Address"
-msgstr "Adresse"
-
#: ../../Zotlabs/Module/Locs.php:119
msgid "Primary"
msgstr ""
@@ -2257,87 +2991,87 @@ msgstr "Impossible de communiquer avec le canal demandé."
msgid "Cannot verify requested channel."
msgstr "Impossible de vérifier le canal demandé."
-#: ../../Zotlabs/Module/Mail.php:78
+#: ../../Zotlabs/Module/Mail.php:70
msgid "Selected channel has private message restrictions. Send failed."
msgstr "Le canal choisi a des restrictions quant aux messages privés. L'envoi a échoué."
-#: ../../Zotlabs/Module/Mail.php:143
+#: ../../Zotlabs/Module/Mail.php:135
msgid "Messages"
msgstr "Messages"
-#: ../../Zotlabs/Module/Mail.php:178
+#: ../../Zotlabs/Module/Mail.php:170
msgid "Message recalled."
msgstr "Message rappelé."
-#: ../../Zotlabs/Module/Mail.php:191
+#: ../../Zotlabs/Module/Mail.php:183
msgid "Conversation removed."
msgstr "Conversation supprimée."
-#: ../../Zotlabs/Module/Mail.php:206 ../../Zotlabs/Module/Mail.php:315
+#: ../../Zotlabs/Module/Mail.php:198 ../../Zotlabs/Module/Mail.php:307
msgid "Expires YYYY-MM-DD HH:MM"
msgstr "Expire le YYYY-MM-DD à HH:MM"
-#: ../../Zotlabs/Module/Mail.php:234
+#: ../../Zotlabs/Module/Mail.php:226
msgid "Requested channel is not in this network"
msgstr "Le canal demandé n'est pas sur ce réseau"
-#: ../../Zotlabs/Module/Mail.php:242
+#: ../../Zotlabs/Module/Mail.php:234
msgid "Send Private Message"
msgstr "Envoyer un message privé"
-#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368
+#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360
msgid "To:"
msgstr "À&nbsp;:"
-#: ../../Zotlabs/Module/Mail.php:246 ../../Zotlabs/Module/Mail.php:370
+#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362
msgid "Subject:"
msgstr "Objet&nbsp;:"
-#: ../../Zotlabs/Module/Mail.php:251 ../../Zotlabs/Module/Mail.php:376
-#: ../../include/conversation.php:1220
+#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368
+#: ../../include/conversation.php:1231
msgid "Attach file"
msgstr "Joindre un fichier"
-#: ../../Zotlabs/Module/Mail.php:253
+#: ../../Zotlabs/Module/Mail.php:245
msgid "Send"
msgstr "Envoyer"
-#: ../../Zotlabs/Module/Mail.php:256 ../../Zotlabs/Module/Mail.php:381
-#: ../../include/conversation.php:1251
+#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373
+#: ../../include/conversation.php:1266
msgid "Set expiration date"
msgstr "Définir la date d'expiration"
-#: ../../Zotlabs/Module/Mail.php:340
+#: ../../Zotlabs/Module/Mail.php:332
msgid "Delete message"
msgstr "Supprimer le message"
-#: ../../Zotlabs/Module/Mail.php:341
+#: ../../Zotlabs/Module/Mail.php:333
msgid "Delivery report"
msgstr "Rapport de distribution"
-#: ../../Zotlabs/Module/Mail.php:342
+#: ../../Zotlabs/Module/Mail.php:334
msgid "Recall message"
msgstr "Rappeler le message"
-#: ../../Zotlabs/Module/Mail.php:344
+#: ../../Zotlabs/Module/Mail.php:336
msgid "Message has been recalled."
msgstr "Le message a été rappelé."
-#: ../../Zotlabs/Module/Mail.php:361
+#: ../../Zotlabs/Module/Mail.php:353
msgid "Delete Conversation"
msgstr "Supprimer la conversation"
-#: ../../Zotlabs/Module/Mail.php:363
+#: ../../Zotlabs/Module/Mail.php:355
msgid ""
"No secure communications available. You <strong>may</strong> be able to "
"respond from the sender's profile page."
msgstr "Aucune communication sécurisée n'est possible. Vous pourrez <strong>peut-être</strong> répondre depuis la page de profil de l'émetteur."
-#: ../../Zotlabs/Module/Mail.php:367
+#: ../../Zotlabs/Module/Mail.php:359
msgid "Send Reply"
msgstr "Envoyer la réponse"
-#: ../../Zotlabs/Module/Mail.php:372
+#: ../../Zotlabs/Module/Mail.php:364
#, php-format
msgid "Your message for %s (%s):"
msgstr "Votre message pour %s (%s)&nbsp;:"
@@ -2352,8 +3086,8 @@ msgstr "Vous avez créé %1$.0f des %2$.0f canaux autorisés."
msgid "Create a new channel"
msgstr "Créer un nouveau canal"
-#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:213
-#: ../../include/nav.php:206
+#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214
+#: ../../include/nav.php:208
msgid "Channel Manager"
msgstr "Gérer les canaux"
@@ -2387,79 +3121,6 @@ msgstr "%d nouvelles présentations"
msgid "Delegated Channel"
msgstr ""
-#: ../../Zotlabs/Module/Lostpass.php:19
-msgid "No valid account found."
-msgstr "Aucun compte valide trouvé."
-
-#: ../../Zotlabs/Module/Lostpass.php:33
-msgid "Password reset request issued. Check your email."
-msgstr "Demande de réinitialisation du mot de passe envoyée. Vérifiez vos courriels."
-
-#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107
-#, php-format
-msgid "Site Member (%s)"
-msgstr "Membre du site (%s)"
-
-#: ../../Zotlabs/Module/Lostpass.php:44
-#, php-format
-msgid "Password reset requested at %s"
-msgstr "Demande de réinitialisation du mot de passe sur %s"
-
-#: ../../Zotlabs/Module/Lostpass.php:67
-msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
-msgstr "La demande n'a pas pu être vérifiée. (Peut-être l'avez vous déjà utilisée.) La réinitialisation a échoué."
-
-#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1711
-msgid "Password Reset"
-msgstr "Réinitialiser le mot de passe"
-
-#: ../../Zotlabs/Module/Lostpass.php:91
-msgid "Your password has been reset as requested."
-msgstr "Votre mot de passe a bien été réinitialisé."
-
-#: ../../Zotlabs/Module/Lostpass.php:92
-msgid "Your new password is"
-msgstr "Votre nouveau mot de passe est"
-
-#: ../../Zotlabs/Module/Lostpass.php:93
-msgid "Save or copy your new password - and then"
-msgstr "Enregistrez ou copiez votre nouveau mot de passe, puis"
-
-#: ../../Zotlabs/Module/Lostpass.php:94
-msgid "click here to login"
-msgstr "cliquez ici pour vous connecter"
-
-#: ../../Zotlabs/Module/Lostpass.php:95
-msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
-msgstr "Votre mot de passe peut être changé depuis la page des <em>Paramètres</em> une fois connecté."
-
-#: ../../Zotlabs/Module/Lostpass.php:112
-#, php-format
-msgid "Your password has changed at %s"
-msgstr "Votre mot de passe de %s a été changé"
-
-#: ../../Zotlabs/Module/Lostpass.php:127
-msgid "Forgot your Password?"
-msgstr "Mot de passe oublié&nbsp;?"
-
-#: ../../Zotlabs/Module/Lostpass.php:128
-msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"your email for further instructions."
-msgstr "Saisissez votre adresse de courriel, et validez, pour réinitialiser votre mot de passe. Vérifiez ensuite votre boîte aux lettres pour la suite des instructions."
-
-#: ../../Zotlabs/Module/Lostpass.php:129
-msgid "Email Address"
-msgstr "Adresse de courriel"
-
-#: ../../Zotlabs/Module/Lostpass.php:130
-msgid "Reset"
-msgstr "Réinitialiser"
-
#: ../../Zotlabs/Module/Menu.php:49
msgid "Unable to update menu."
msgstr "Impossible de mettre le menu à jour."
@@ -2496,7 +3157,7 @@ msgstr "Le menu pourra être utilisé pour stocker des favoris"
msgid "Submit and proceed"
msgstr "Valider et continuer"
-#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2266
+#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2239
msgid "Menus"
msgstr "Menus"
@@ -2557,13 +3218,86 @@ msgstr "Autoriser l'usage de favoris"
msgid "Not found."
msgstr "Introuvable."
+#: ../../Zotlabs/Module/Lostpass.php:19
+msgid "No valid account found."
+msgstr "Aucun compte valide trouvé."
+
+#: ../../Zotlabs/Module/Lostpass.php:33
+msgid "Password reset request issued. Check your email."
+msgstr "Demande de réinitialisation du mot de passe envoyée. Vérifiez vos courriels."
+
+#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107
+#, php-format
+msgid "Site Member (%s)"
+msgstr "Membre du site (%s)"
+
+#: ../../Zotlabs/Module/Lostpass.php:44
+#, php-format
+msgid "Password reset requested at %s"
+msgstr "Demande de réinitialisation du mot de passe sur %s"
+
+#: ../../Zotlabs/Module/Lostpass.php:67
+msgid ""
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
+msgstr "La demande n'a pas pu être vérifiée. (Peut-être l'avez vous déjà utilisée.) La réinitialisation a échoué."
+
+#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1712
+msgid "Password Reset"
+msgstr "Réinitialiser le mot de passe"
+
+#: ../../Zotlabs/Module/Lostpass.php:91
+msgid "Your password has been reset as requested."
+msgstr "Votre mot de passe a bien été réinitialisé."
+
+#: ../../Zotlabs/Module/Lostpass.php:92
+msgid "Your new password is"
+msgstr "Votre nouveau mot de passe est"
+
+#: ../../Zotlabs/Module/Lostpass.php:93
+msgid "Save or copy your new password - and then"
+msgstr "Enregistrez ou copiez votre nouveau mot de passe, puis"
+
+#: ../../Zotlabs/Module/Lostpass.php:94
+msgid "click here to login"
+msgstr "cliquez ici pour vous connecter"
+
+#: ../../Zotlabs/Module/Lostpass.php:95
+msgid ""
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
+msgstr "Votre mot de passe peut être changé depuis la page des <em>Paramètres</em> une fois connecté."
+
+#: ../../Zotlabs/Module/Lostpass.php:112
+#, php-format
+msgid "Your password has changed at %s"
+msgstr "Votre mot de passe de %s a été changé"
+
+#: ../../Zotlabs/Module/Lostpass.php:127
+msgid "Forgot your Password?"
+msgstr "Mot de passe oublié&nbsp;?"
+
+#: ../../Zotlabs/Module/Lostpass.php:128
+msgid ""
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
+msgstr "Saisissez votre adresse de courriel, et validez, pour réinitialiser votre mot de passe. Vérifiez ensuite votre boîte aux lettres pour la suite des instructions."
+
+#: ../../Zotlabs/Module/Lostpass.php:129
+msgid "Email Address"
+msgstr "Adresse de courriel"
+
+#: ../../Zotlabs/Module/Lostpass.php:130
+msgid "Reset"
+msgstr "Réinitialiser"
+
#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260
#, php-format
msgctxt "mood"
msgid "%1$s is %2$s"
msgstr "%1$s est %2$s"
-#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:225
+#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227
msgid "Mood"
msgstr "Humeur"
@@ -2571,47 +3305,31 @@ msgstr "Humeur"
msgid "Set your current mood and tell your friends"
msgstr "Indiquez votre humeur du moment à vos amis"
-#: ../../Zotlabs/Module/Match.php:26
-msgid "Profile Match"
-msgstr "Profils similaires"
-
-#: ../../Zotlabs/Module/Match.php:35
-msgid "No keywords to match. Please add keywords to your default profile."
-msgstr "Aucun mot-clef à comparer. Merci d'ajouter des mots-clefs à votre profil par défaut."
-
-#: ../../Zotlabs/Module/Match.php:67
-msgid "is interested in:"
-msgstr "s'intéresse à&nbsp;:"
-
-#: ../../Zotlabs/Module/Match.php:74
-msgid "No matches"
-msgstr "Pas de correspondance"
-
-#: ../../Zotlabs/Module/Network.php:96
+#: ../../Zotlabs/Module/Network.php:94
msgid "No such group"
msgstr "Groupe introuvable"
-#: ../../Zotlabs/Module/Network.php:136
+#: ../../Zotlabs/Module/Network.php:134
msgid "No such channel"
msgstr "Canal introuvable"
-#: ../../Zotlabs/Module/Network.php:141
+#: ../../Zotlabs/Module/Network.php:139
msgid "forum"
msgstr "forum"
-#: ../../Zotlabs/Module/Network.php:153
+#: ../../Zotlabs/Module/Network.php:151
msgid "Search Results For:"
msgstr "Résultats de recherche pour&nbsp;:"
-#: ../../Zotlabs/Module/Network.php:217
+#: ../../Zotlabs/Module/Network.php:215
msgid "Privacy group is empty"
msgstr "Groupe d'accès vide"
-#: ../../Zotlabs/Module/Network.php:226
+#: ../../Zotlabs/Module/Network.php:224
msgid "Privacy group: "
msgstr "Groupe d'accès&nbsp;:"
-#: ../../Zotlabs/Module/Network.php:252
+#: ../../Zotlabs/Module/Network.php:250
msgid "Invalid connection."
msgstr "Contact non valide."
@@ -2625,6 +3343,34 @@ msgstr "Pas d'autre notification du système."
msgid "System Notifications"
msgstr "Notifications du système"
+#: ../../Zotlabs/Module/Match.php:26
+msgid "Profile Match"
+msgstr "Profils similaires"
+
+#: ../../Zotlabs/Module/Match.php:35
+msgid "No keywords to match. Please add keywords to your default profile."
+msgstr "Aucun mot-clef à comparer. Merci d'ajouter des mots-clefs à votre profil par défaut."
+
+#: ../../Zotlabs/Module/Match.php:67
+msgid "is interested in:"
+msgstr "s'intéresse à&nbsp;:"
+
+#: ../../Zotlabs/Module/Match.php:74
+msgid "No matches"
+msgstr "Pas de correspondance"
+
+#: ../../Zotlabs/Module/Channel.php:40
+msgid "Posts and comments"
+msgstr ""
+
+#: ../../Zotlabs/Module/Channel.php:41
+msgid "Only posts"
+msgstr ""
+
+#: ../../Zotlabs/Module/Channel.php:101
+msgid "Insufficient permissions. Request redirected to profile page."
+msgstr "Permissions insuffisantes. Demande redirigée vers la page du profil."
+
#: ../../Zotlabs/Module/Mitem.php:52
msgid "Unable to create element."
msgstr "Impossible de créer l'entrée."
@@ -2642,7 +3388,7 @@ msgid "Menu Item Permissions"
msgstr "Permissions de l'entrée de menu"
#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227
-#: ../../Zotlabs/Module/Settings.php:1068
+#: ../../Zotlabs/Module/Settings.php:1163
msgid "(click to open/close)"
msgstr "(cliquer pour ouvrir/fermer)"
@@ -2742,845 +3488,6 @@ msgstr "Modifier l'entrée de menu"
msgid "Link text"
msgstr "Texte du lien"
-#: ../../Zotlabs/Module/New_channel.php:128
-#: ../../Zotlabs/Module/Register.php:231
-msgid "Name or caption"
-msgstr "Nom ou libellé"
-
-#: ../../Zotlabs/Module/New_channel.php:128
-#: ../../Zotlabs/Module/Register.php:231
-msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""
-msgstr "Exemples&nbsp;: \"Jérôme Dutilleul\", \"Louise et ses chevaux\", \"Football\", \"Club d'aéromodélisme\""
-
-#: ../../Zotlabs/Module/New_channel.php:130
-#: ../../Zotlabs/Module/Register.php:233
-msgid "Choose a short nickname"
-msgstr "Choisissez un alias"
-
-#: ../../Zotlabs/Module/New_channel.php:130
-#: ../../Zotlabs/Module/Register.php:233
-#, php-format
-msgid ""
-"Your nickname will be used to create an easy to remember channel address "
-"e.g. nickname%s"
-msgstr "Votre pseudo sera utilisé pour créer une adresse de canal facile à mémoriser, par ex. pseudo%s"
-
-#: ../../Zotlabs/Module/New_channel.php:132
-#: ../../Zotlabs/Module/Register.php:235
-msgid "Channel role and privacy"
-msgstr "Rôle et confidentialité du canal"
-
-#: ../../Zotlabs/Module/New_channel.php:132
-#: ../../Zotlabs/Module/Register.php:235
-msgid "Select a channel role with your privacy requirements."
-msgstr "Sélectionner un rôle de canal adapté à vos besoins de confidentialité."
-
-#: ../../Zotlabs/Module/New_channel.php:132
-#: ../../Zotlabs/Module/Register.php:235
-msgid "Read more about roles"
-msgstr "En savoir plus sur les rôles"
-
-#: ../../Zotlabs/Module/New_channel.php:135
-msgid "Create Channel"
-msgstr "Créer le canal"
-
-#: ../../Zotlabs/Module/New_channel.php:136
-msgid ""
-"A channel is your identity on this network. It can represent a person, a "
-"blog, or a forum to name a few. Channels can make connections with other "
-"channels to share information with highly detailed permissions."
-msgstr "Un canal est votre identité sur ce réseau. Il peut représenter une personne, un blog, ou un forum par exemple. Les canaux peuvent entrer en contact les uns avec les autres pour partager des informations avec des permissions d'accès très fines."
-
-#: ../../Zotlabs/Module/New_channel.php:137
-msgid ""
-"or <a href=\"import\">import an existing channel</a> from another location."
-msgstr "ou <a href=\"import\">importer un canal existant</a> d'un autre serveur."
-
-#: ../../Zotlabs/Module/Notifications.php:30
-msgid "Invalid request identifier."
-msgstr "Identifiant de requête invalide."
-
-#: ../../Zotlabs/Module/Notifications.php:39
-msgid "Discard"
-msgstr "Annuler"
-
-#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:191
-msgid "Mark all system notifications seen"
-msgstr "Marquer toutes les notifications système comme vues"
-
-#: ../../Zotlabs/Module/Photos.php:84
-msgid "Page owner information could not be retrieved."
-msgstr "Impossible d'obtenir des informations sur le propriétaire de la page."
-
-#: ../../Zotlabs/Module/Photos.php:99 ../../Zotlabs/Module/Photos.php:743
-#: ../../Zotlabs/Module/Profile_photo.php:114
-#: ../../Zotlabs/Module/Profile_photo.php:206
-#: ../../Zotlabs/Module/Profile_photo.php:294
-#: ../../include/photo/photo_driver.php:718
-msgid "Profile Photos"
-msgstr "Photos du profil"
-
-#: ../../Zotlabs/Module/Photos.php:105 ../../Zotlabs/Module/Photos.php:149
-msgid "Album not found."
-msgstr "Album introuvable."
-
-#: ../../Zotlabs/Module/Photos.php:132
-msgid "Delete Album"
-msgstr "Supprimer l'album"
-
-#: ../../Zotlabs/Module/Photos.php:153
-msgid ""
-"Multiple storage folders exist with this album name, but within different "
-"directories. Please remove the desired folder or folders using the Files "
-"manager"
-msgstr ""
-
-#: ../../Zotlabs/Module/Photos.php:210 ../../Zotlabs/Module/Photos.php:1053
-msgid "Delete Photo"
-msgstr "Supprimer la photo"
-
-#: ../../Zotlabs/Module/Photos.php:533
-msgid "No photos selected"
-msgstr "Aucune photo selectionnée"
-
-#: ../../Zotlabs/Module/Photos.php:582
-msgid "Access to this item is restricted."
-msgstr "L'accès à l'élément est restreint."
-
-#: ../../Zotlabs/Module/Photos.php:621
-#, php-format
-msgid "%1$.2f MB of %2$.2f MB photo storage used."
-msgstr "Vous avez utilisé %1$.2f mégaoctets sur les %2$.2f autorisés pour le stockage des photos."
-
-#: ../../Zotlabs/Module/Photos.php:624
-#, php-format
-msgid "%1$.2f MB photo storage used."
-msgstr "%1$.2f méga-octets utilisés pour le stockage des photos."
-
-#: ../../Zotlabs/Module/Photos.php:660
-msgid "Upload Photos"
-msgstr "Téléverser des photos"
-
-#: ../../Zotlabs/Module/Photos.php:664
-msgid "Enter an album name"
-msgstr "Entrer un nom d'album"
-
-#: ../../Zotlabs/Module/Photos.php:665
-msgid "or select an existing album (doubleclick)"
-msgstr "ou sélectionner un album existant (double-clic)"
-
-#: ../../Zotlabs/Module/Photos.php:666
-msgid "Create a status post for this upload"
-msgstr "Créer une publication de statut pour cet envoi"
-
-#: ../../Zotlabs/Module/Photos.php:667
-msgid "Caption (optional):"
-msgstr "Légende (facultative)"
-
-#: ../../Zotlabs/Module/Photos.php:668
-msgid "Description (optional):"
-msgstr "Description (facultative)"
-
-#: ../../Zotlabs/Module/Photos.php:695
-msgid "Album name could not be decoded"
-msgstr "Le nom de l'Album n'a pu être décodé"
-
-#: ../../Zotlabs/Module/Photos.php:743
-msgid "Contact Photos"
-msgstr "Photos de contact"
-
-#: ../../Zotlabs/Module/Photos.php:766
-msgid "Show Newest First"
-msgstr "Les plus récent(e)s en premier"
-
-#: ../../Zotlabs/Module/Photos.php:768
-msgid "Show Oldest First"
-msgstr "Les moins récent(e)s en premier"
-
-#: ../../Zotlabs/Module/Photos.php:792 ../../Zotlabs/Module/Photos.php:1331
-#: ../../include/widgets.php:1499
-msgid "View Photo"
-msgstr "Voir la photo"
-
-#: ../../Zotlabs/Module/Photos.php:823 ../../include/widgets.php:1516
-msgid "Edit Album"
-msgstr "Modifier l'album"
-
-#: ../../Zotlabs/Module/Photos.php:870
-msgid "Permission denied. Access to this item may be restricted."
-msgstr "Permission refusée. L'accès à cet élément peut avoir été restreint."
-
-#: ../../Zotlabs/Module/Photos.php:872
-msgid "Photo not available"
-msgstr "Photo non disponible"
-
-#: ../../Zotlabs/Module/Photos.php:930
-msgid "Use as profile photo"
-msgstr "Utiliser comme photo du profil"
-
-#: ../../Zotlabs/Module/Photos.php:931
-msgid "Use as cover photo"
-msgstr ""
-
-#: ../../Zotlabs/Module/Photos.php:938
-msgid "Private Photo"
-msgstr "Photo privée"
-
-#: ../../Zotlabs/Module/Photos.php:953
-msgid "View Full Size"
-msgstr "Voir en taille réelle"
-
-#: ../../Zotlabs/Module/Photos.php:998 ../../Zotlabs/Module/Admin.php:1437
-#: ../../Zotlabs/Module/Tagrm.php:137
-msgid "Remove"
-msgstr "Retirer"
-
-#: ../../Zotlabs/Module/Photos.php:1032
-msgid "Edit photo"
-msgstr "Modifier la photo"
-
-#: ../../Zotlabs/Module/Photos.php:1034
-msgid "Rotate CW (right)"
-msgstr "Rotation horaire (droite)"
-
-#: ../../Zotlabs/Module/Photos.php:1035
-msgid "Rotate CCW (left)"
-msgstr "Rotation anti-horaire (gauche)"
-
-#: ../../Zotlabs/Module/Photos.php:1038
-msgid "Enter a new album name"
-msgstr "Entrer un nouveau nom d'album"
-
-#: ../../Zotlabs/Module/Photos.php:1039
-msgid "or select an existing one (doubleclick)"
-msgstr "ou en sélectionner un existant (double-clic)"
-
-#: ../../Zotlabs/Module/Photos.php:1042
-msgid "Caption"
-msgstr "Titre/légende"
-
-#: ../../Zotlabs/Module/Photos.php:1044
-msgid "Add a Tag"
-msgstr "Ajouter une étiquette"
-
-#: ../../Zotlabs/Module/Photos.php:1048
-msgid "Example: @bob, @Barbara_Jensen, @jim@example.com"
-msgstr "Exemple&nbsp;: @marc, @Barbara_Jensen, @charles@exemple.com, #Ile_de_France, #marathon"
-
-#: ../../Zotlabs/Module/Photos.php:1051
-msgid "Flag as adult in album view"
-msgstr "Marquer comme \"adulte\" dans l'affichage de l'album"
-
-#: ../../Zotlabs/Module/Photos.php:1070 ../../Zotlabs/Lib/ThreadItem.php:261
-msgid "I like this (toggle)"
-msgstr "J'aime (oui/non)"
-
-#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:262
-msgid "I don't like this (toggle)"
-msgstr "Je n'aime pas (oui/non)"
-
-#: ../../Zotlabs/Module/Photos.php:1073 ../../Zotlabs/Lib/ThreadItem.php:397
-#: ../../include/conversation.php:740
-msgid "Please wait"
-msgstr "Merci de patienter"
-
-#: ../../Zotlabs/Module/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207
-#: ../../Zotlabs/Lib/ThreadItem.php:707
-msgid "This is you"
-msgstr "C'est vous"
-
-#: ../../Zotlabs/Module/Photos.php:1091 ../../Zotlabs/Module/Photos.php:1209
-#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6
-msgid "Comment"
-msgstr "Commenter"
-
-#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574
-msgctxt "title"
-msgid "Likes"
-msgstr "Aime"
-
-#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574
-msgctxt "title"
-msgid "Dislikes"
-msgstr "N'aime pas"
-
-#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575
-msgctxt "title"
-msgid "Agree"
-msgstr "D'accord"
-
-#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575
-msgctxt "title"
-msgid "Disagree"
-msgstr "Pas d'accord"
-
-#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575
-msgctxt "title"
-msgid "Abstain"
-msgstr "Abstention"
-
-#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576
-msgctxt "title"
-msgid "Attending"
-msgstr "Participations"
-
-#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576
-msgctxt "title"
-msgid "Not attending"
-msgstr "Non-participations"
-
-#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576
-msgctxt "title"
-msgid "Might attend"
-msgstr "Participation possible"
-
-#: ../../Zotlabs/Module/Photos.php:1126 ../../Zotlabs/Module/Photos.php:1138
-#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193
-#: ../../include/conversation.php:1717
-msgid "View all"
-msgstr "Voir tout"
-
-#: ../../Zotlabs/Module/Photos.php:1130 ../../Zotlabs/Lib/ThreadItem.php:185
-#: ../../include/taxonomy.php:403 ../../include/conversation.php:1741
-#: ../../include/channel.php:1158
-msgctxt "noun"
-msgid "Like"
-msgid_plural "Likes"
-msgstr[0] "Aime"
-msgstr[1] "Aime"
-
-#: ../../Zotlabs/Module/Photos.php:1135 ../../Zotlabs/Lib/ThreadItem.php:190
-#: ../../include/conversation.php:1744
-msgctxt "noun"
-msgid "Dislike"
-msgid_plural "Dislikes"
-msgstr[0] "N'aime pas"
-msgstr[1] "N'aime pas"
-
-#: ../../Zotlabs/Module/Photos.php:1235
-msgid "Photo Tools"
-msgstr ""
-
-#: ../../Zotlabs/Module/Photos.php:1244
-msgid "In This Photo:"
-msgstr "Dans cette photo&nbsp;:"
-
-#: ../../Zotlabs/Module/Photos.php:1249
-msgid "Map"
-msgstr "Carte"
-
-#: ../../Zotlabs/Module/Photos.php:1257 ../../Zotlabs/Lib/ThreadItem.php:386
-msgctxt "noun"
-msgid "Likes"
-msgstr "Aime"
-
-#: ../../Zotlabs/Module/Photos.php:1258 ../../Zotlabs/Lib/ThreadItem.php:387
-msgctxt "noun"
-msgid "Dislikes"
-msgstr "N'aime pas"
-
-#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:392
-#: ../../include/acl_selectors.php:285
-msgid "Close"
-msgstr "Fermer"
-
-#: ../../Zotlabs/Module/Photos.php:1337
-msgid "View Album"
-msgstr "Voir l'album"
-
-#: ../../Zotlabs/Module/Photos.php:1348 ../../Zotlabs/Module/Photos.php:1361
-#: ../../Zotlabs/Module/Photos.php:1362
-msgid "Recent Photos"
-msgstr "Photos récentes"
-
-#: ../../Zotlabs/Module/Ping.php:265
-msgid "sent you a private message"
-msgstr "vous a envoyé un message privé"
-
-#: ../../Zotlabs/Module/Ping.php:313
-msgid "added your channel"
-msgstr "a ajouté votre canal"
-
-#: ../../Zotlabs/Module/Ping.php:323
-msgid "g A l F d"
-msgstr "g A l F d"
-
-#: ../../Zotlabs/Module/Ping.php:346
-msgid "[today]"
-msgstr "[aujourd'hui]"
-
-#: ../../Zotlabs/Module/Ping.php:355
-msgid "posted an event"
-msgstr "a publié un événement"
-
-#: ../../Zotlabs/Module/Oexchange.php:27
-msgid "Unable to find your hub."
-msgstr "Impossible de trouver votre hub."
-
-#: ../../Zotlabs/Module/Oexchange.php:41
-msgid "Post successful."
-msgstr "Publication réussie."
-
-#: ../../Zotlabs/Module/Openid.php:30
-msgid "OpenID protocol error. No ID returned."
-msgstr "Erreur du protocole OpenID. Pas d'ID retourné."
-
-#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:226
-msgid "Login failed."
-msgstr "Échec de la connexion."
-
-#: ../../Zotlabs/Module/Page.php:133
-msgid ""
-"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod "
-"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,"
-" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo "
-"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse "
-"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat "
-"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
-msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
-
-#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59
-msgid "This setting requires special processing and editing has been blocked."
-msgstr "Ce paramètre nécessité un traitement spécial, les modifications ont été bloquées."
-
-#: ../../Zotlabs/Module/Pconfig.php:48
-msgid "Configuration Editor"
-msgstr "Editeur de configuration"
-
-#: ../../Zotlabs/Module/Pconfig.php:49
-msgid ""
-"Warning: Changing some settings could render your channel inoperable. Please"
-" leave this page unless you are comfortable with and knowledgeable about how"
-" to correctly use this feature."
-msgstr "Attention&nbsp;:modifier certains paramètres peut rendre votre canal inutilisable. Merci d'ignorer cette page à moins d'être suffisamment à l'aise de savoir comment utiliser correctement cette fonctionnalité."
-
-#: ../../Zotlabs/Module/Pdledit.php:18
-msgid "Layout updated."
-msgstr "Mise en page mise à jour."
-
-#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61
-msgid "Edit System Page Description"
-msgstr "Modifier la description de la page du système"
-
-#: ../../Zotlabs/Module/Pdledit.php:56
-msgid "Layout not found."
-msgstr "Mise en page introuvable."
-
-#: ../../Zotlabs/Module/Pdledit.php:62
-msgid "Module Name:"
-msgstr "Nom du module&nbsp;:"
-
-#: ../../Zotlabs/Module/Pdledit.php:63
-msgid "Layout Help"
-msgstr "Aide à la mise en page"
-
-#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:226
-#: ../../include/conversation.php:960
-msgid "Poke"
-msgstr "Tapoter"
-
-#: ../../Zotlabs/Module/Poke.php:169
-msgid "Poke somebody"
-msgstr "Taquiner quelqu'un"
-
-#: ../../Zotlabs/Module/Poke.php:172
-msgid "Poke/Prod"
-msgstr "Tapoter/Encourager"
-
-#: ../../Zotlabs/Module/Poke.php:173
-msgid "Poke, prod or do other things to somebody"
-msgstr "Taquiner, pousser ou faire autre chose à quelqu'un"
-
-#: ../../Zotlabs/Module/Poke.php:180
-msgid "Recipient"
-msgstr "Destinataire"
-
-#: ../../Zotlabs/Module/Poke.php:181
-msgid "Choose what you wish to do to recipient"
-msgstr "Choisir ce que vous voulez faire au destinataire"
-
-#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185
-msgid "Make this post private"
-msgstr "Rendre cette publication privée"
-
-#: ../../Zotlabs/Module/Probe.php:30 ../../Zotlabs/Module/Probe.php:34
-#, php-format
-msgid "Fetching URL returns error: %1$s"
-msgstr "Récupération d'URL échouée&nbsp;: %1$s"
-
-#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189
-#: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625
-msgid "Profile not found."
-msgstr "Profil introuvable."
-
-#: ../../Zotlabs/Module/Profiles.php:44
-msgid "Profile deleted."
-msgstr "Profil supprimé."
-
-#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104
-msgid "Profile-"
-msgstr "Profil-"
-
-#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132
-msgid "New profile created."
-msgstr "Nouveau profil créé."
-
-#: ../../Zotlabs/Module/Profiles.php:110
-msgid "Profile unavailable to clone."
-msgstr "Profil impossible à cloner."
-
-#: ../../Zotlabs/Module/Profiles.php:151
-msgid "Profile unavailable to export."
-msgstr "Impossible d'exporter le profil."
-
-#: ../../Zotlabs/Module/Profiles.php:256
-msgid "Profile Name is required."
-msgstr "Le nom du profil est obligatoire."
-
-#: ../../Zotlabs/Module/Profiles.php:427
-msgid "Marital Status"
-msgstr "Statut marital"
-
-#: ../../Zotlabs/Module/Profiles.php:431
-msgid "Romantic Partner"
-msgstr "Partenaire amoureux"
-
-#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736
-msgid "Likes"
-msgstr "Aime"
-
-#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737
-msgid "Dislikes"
-msgstr "N'aime pas"
-
-#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744
-msgid "Work/Employment"
-msgstr "Travail/Occupation"
-
-#: ../../Zotlabs/Module/Profiles.php:446
-msgid "Religion"
-msgstr "Religion/Croyance"
-
-#: ../../Zotlabs/Module/Profiles.php:450
-msgid "Political Views"
-msgstr "Opinions politiques"
-
-#: ../../Zotlabs/Module/Profiles.php:458
-msgid "Sexual Preference"
-msgstr "Préférences sexuelle"
-
-#: ../../Zotlabs/Module/Profiles.php:462
-msgid "Homepage"
-msgstr "Site Internet"
-
-#: ../../Zotlabs/Module/Profiles.php:466
-msgid "Interests"
-msgstr "Centres d'intérêt"
-
-#: ../../Zotlabs/Module/Profiles.php:560
-msgid "Profile updated."
-msgstr "Profil mis à jour."
-
-#: ../../Zotlabs/Module/Profiles.php:644
-msgid "Hide your connections list from viewers of this profile"
-msgstr ""
-
-#: ../../Zotlabs/Module/Profiles.php:686
-msgid "Edit Profile Details"
-msgstr "Modifier les détails du profil"
-
-#: ../../Zotlabs/Module/Profiles.php:688
-msgid "View this profile"
-msgstr "Voir ce profil"
-
-#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771
-#: ../../include/channel.php:959
-msgid "Edit visibility"
-msgstr "Changer la visibilité"
-
-#: ../../Zotlabs/Module/Profiles.php:690
-msgid "Profile Tools"
-msgstr ""
-
-#: ../../Zotlabs/Module/Profiles.php:691
-msgid "Change cover photo"
-msgstr ""
-
-#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:930
-msgid "Change profile photo"
-msgstr "Changer la photo du profil"
-
-#: ../../Zotlabs/Module/Profiles.php:693
-msgid "Create a new profile using these settings"
-msgstr "Créer un nouveau profil avec ces paramètres"
-
-#: ../../Zotlabs/Module/Profiles.php:694
-msgid "Clone this profile"
-msgstr "Cloner ce profil"
-
-#: ../../Zotlabs/Module/Profiles.php:695
-msgid "Delete this profile"
-msgstr "Supprimer ce profil"
-
-#: ../../Zotlabs/Module/Profiles.php:696
-msgid "Add profile things"
-msgstr "Ajouter des éléments de profil"
-
-#: ../../Zotlabs/Module/Profiles.php:697 ../../include/widgets.php:105
-#: ../../include/conversation.php:1526
-msgid "Personal"
-msgstr "Me concernant"
-
-#: ../../Zotlabs/Module/Profiles.php:699
-msgid "Relation"
-msgstr ""
-
-#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48
-msgid "Miscellaneous"
-msgstr "Divers"
-
-#: ../../Zotlabs/Module/Profiles.php:702
-msgid "Import profile from file"
-msgstr "Importer le profil à partir d'un fichier"
-
-#: ../../Zotlabs/Module/Profiles.php:703
-msgid "Export profile to file"
-msgstr "Exporter le profil vers un fichier."
-
-#: ../../Zotlabs/Module/Profiles.php:704
-msgid "Your gender"
-msgstr ""
-
-#: ../../Zotlabs/Module/Profiles.php:705
-msgid "Marital status"
-msgstr ""
-
-#: ../../Zotlabs/Module/Profiles.php:706
-msgid "Sexual preference"
-msgstr ""
-
-#: ../../Zotlabs/Module/Profiles.php:709
-msgid "Profile name"
-msgstr ""
-
-#: ../../Zotlabs/Module/Profiles.php:711
-msgid "This is your default profile."
-msgstr "Ceci est votre profil par défaut."
-
-#: ../../Zotlabs/Module/Profiles.php:713
-msgid "Your full name"
-msgstr ""
-
-#: ../../Zotlabs/Module/Profiles.php:714
-msgid "Title/Description"
-msgstr "Titre/description"
-
-#: ../../Zotlabs/Module/Profiles.php:717
-msgid "Street address"
-msgstr ""
-
-#: ../../Zotlabs/Module/Profiles.php:718
-msgid "Locality/City"
-msgstr "Ville"
-
-#: ../../Zotlabs/Module/Profiles.php:719
-msgid "Region/State"
-msgstr "Région"
-
-#: ../../Zotlabs/Module/Profiles.php:720
-msgid "Postal/Zip code"
-msgstr ""
-
-#: ../../Zotlabs/Module/Profiles.php:721
-msgid "Country"
-msgstr "Pays"
-
-#: ../../Zotlabs/Module/Profiles.php:726
-msgid "Who (if applicable)"
-msgstr "Qui (si applicable)"
-
-#: ../../Zotlabs/Module/Profiles.php:726
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
-msgstr "Exemples&nbsp;: marie123, Marie Deschamps, marie@exemple.com"
-
-#: ../../Zotlabs/Module/Profiles.php:727
-msgid "Since (date)"
-msgstr ""
-
-#: ../../Zotlabs/Module/Profiles.php:730
-msgid "Tell us about yourself"
-msgstr ""
-
-#: ../../Zotlabs/Module/Profiles.php:732
-msgid "Hometown"
-msgstr "Ville de naissance"
-
-#: ../../Zotlabs/Module/Profiles.php:733
-msgid "Political views"
-msgstr ""
-
-#: ../../Zotlabs/Module/Profiles.php:734
-msgid "Religious views"
-msgstr ""
-
-#: ../../Zotlabs/Module/Profiles.php:735
-msgid "Keywords used in directory listings"
-msgstr ""
-
-#: ../../Zotlabs/Module/Profiles.php:735
-msgid "Example: fishing photography software"
-msgstr "Exemple&nbsp;: escrime photographie modélisme"
-
-#: ../../Zotlabs/Module/Profiles.php:738
-msgid "Musical interests"
-msgstr "Goûts musicaux"
-
-#: ../../Zotlabs/Module/Profiles.php:739
-msgid "Books, literature"
-msgstr "Livres, littérature"
-
-#: ../../Zotlabs/Module/Profiles.php:740
-msgid "Television"
-msgstr "Télévision"
-
-#: ../../Zotlabs/Module/Profiles.php:741
-msgid "Film/Dance/Culture/Entertainment"
-msgstr ""
-
-#: ../../Zotlabs/Module/Profiles.php:742
-msgid "Hobbies/Interests"
-msgstr "Loisirs/Centres d'intêret"
-
-#: ../../Zotlabs/Module/Profiles.php:743
-msgid "Love/Romance"
-msgstr ""
-
-#: ../../Zotlabs/Module/Profiles.php:745
-msgid "School/Education"
-msgstr ""
-
-#: ../../Zotlabs/Module/Profiles.php:746
-msgid "Contact information and social networks"
-msgstr ""
-
-#: ../../Zotlabs/Module/Profiles.php:747
-msgid "My other channels"
-msgstr "Mes autres canaux"
-
-#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:955
-msgid "Profile Image"
-msgstr "Image du profil"
-
-#: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:88
-#: ../../include/channel.php:937
-msgid "Edit Profiles"
-msgstr "Modifier les profils"
-
-#: ../../Zotlabs/Module/Profile_photo.php:179
-msgid ""
-"Shift-reload the page or clear browser cache if the new photo does not "
-"display immediately."
-msgstr "Shift-rechargez votre page, ou videz le cache du navigateur si la photo ne s'affiche pas immédiatement."
-
-#: ../../Zotlabs/Module/Profile_photo.php:367
-msgid "Upload Profile Photo"
-msgstr "Téléverser une photo de profil"
-
-#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63
-msgid "Invalid profile identifier."
-msgstr "Identifiant de profil invalide."
-
-#: ../../Zotlabs/Module/Profperm.php:115
-msgid "Profile Visibility Editor"
-msgstr "Éditeur de visibilité de profil"
-
-#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1249
-msgid "Profile"
-msgstr "Profil"
-
-#: ../../Zotlabs/Module/Profperm.php:119
-msgid "Click on a contact to add or remove."
-msgstr "Cliquer sur un contact pour l'ajouter ou le retirer."
-
-#: ../../Zotlabs/Module/Profperm.php:128
-msgid "Visible To"
-msgstr "Visible par"
-
-#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1270
-msgid "Public Hubs"
-msgstr "Instances publiques"
-
-#: ../../Zotlabs/Module/Pubsites.php:25
-msgid ""
-"The listed hubs allow public registration for the $Projectname network. All "
-"hubs in the network are interlinked so membership on any of them conveys "
-"membership in the network as a whole. Some hubs may require subscription or "
-"provide tiered service plans. The hub itself <strong>may</strong> provide "
-"additional details."
-msgstr "Les sites listés permettent l'enregistrement public de comptes pour le réseau $Projectname. Tous les sites du réseau sont reliés entre eux, être membre d'un site revient à être membre de tous. Certains sites peuvent demander une souscription ou proposer différents niveaux de service. Chaque site <strong>peut</strong> fournir des détails supplémentaires."
-
-#: ../../Zotlabs/Module/Pubsites.php:31
-msgid "Hub URL"
-msgstr "URL du site"
-
-#: ../../Zotlabs/Module/Pubsites.php:31
-msgid "Access Type"
-msgstr "Type d'accès"
-
-#: ../../Zotlabs/Module/Pubsites.php:31
-msgid "Registration Policy"
-msgstr "Politique d'inscription"
-
-#: ../../Zotlabs/Module/Pubsites.php:31
-msgid "Stats"
-msgstr ""
-
-#: ../../Zotlabs/Module/Pubsites.php:31
-msgid "Software"
-msgstr ""
-
-#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103
-#: ../../include/conversation.php:959
-msgid "Ratings"
-msgstr "Evaluations"
-
-#: ../../Zotlabs/Module/Pubsites.php:38
-msgid "Rate"
-msgstr "Evaluer"
-
-#: ../../Zotlabs/Module/Rate.php:160
-msgid "Website:"
-msgstr "Site web&nbsp;:"
-
-#: ../../Zotlabs/Module/Rate.php:163
-#, php-format
-msgid "Remote Channel [%s] (not yet known on this site)"
-msgstr "Canal distant [%s] (encore inconnu sur ce site)"
-
-#: ../../Zotlabs/Module/Rate.php:164
-msgid "Rating (this information is public)"
-msgstr "Evaluation (cette information est publique)"
-
-#: ../../Zotlabs/Module/Rate.php:165
-msgid "Optionally explain your rating (this information is public)"
-msgstr "Explication facultative de votre évaluation (cette information est publique)"
-
-#: ../../Zotlabs/Module/Ratings.php:73
-msgid "No ratings"
-msgstr "Pas de note"
-
-#: ../../Zotlabs/Module/Ratings.php:104
-msgid "Rating: "
-msgstr "Evaluation&nbsp:"
-
-#: ../../Zotlabs/Module/Ratings.php:105
-msgid "Website: "
-msgstr "Site web&nbsp;:"
-
-#: ../../Zotlabs/Module/Ratings.php:107
-msgid "Description: "
-msgstr "Description&nbsp;:"
-
#: ../../Zotlabs/Module/Admin.php:77
msgid "Theme settings updated."
msgstr "Paramètres du thème mis à jour."
@@ -3666,11 +3573,11 @@ msgstr ""
msgid "Site settings updated."
msgstr "Paramètres du site sauvegardés."
-#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2841
+#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2829
msgid "Default"
msgstr "Défaut"
-#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:798
+#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:899
msgid "mobile"
msgstr "mobile"
@@ -3702,7 +3609,7 @@ msgstr "Mon site est gratuit uniquement"
msgid "My site offers free accounts with optional paid upgrades"
msgstr "Mon site offre des comptes gratuits avec des améliorations payantes facultatives"
-#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1382
+#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1476
msgid "Site"
msgstr "Site"
@@ -3990,12 +3897,12 @@ msgid "0 for no expiration of imported content"
msgstr "0 pour ne pas expirer le contenu importé"
#: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678
-#: ../../Zotlabs/Module/Settings.php:722
+#: ../../Zotlabs/Module/Settings.php:823
msgid "Off"
msgstr "Inactif"
#: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678
-#: ../../Zotlabs/Module/Settings.php:722
+#: ../../Zotlabs/Module/Settings.php:823
msgid "On"
msgstr "Actif"
@@ -4052,7 +3959,7 @@ msgid ""
"embedded content from that site is explicitly blocked."
msgstr ""
-#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1385
+#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1479
msgid "Security"
msgstr "Sécurité"
@@ -4220,7 +4127,7 @@ msgid "Account '%s' unblocked"
msgstr "Compte '%s' débloqué"
#: ../../Zotlabs/Module/Admin.php:1031 ../../Zotlabs/Module/Admin.php:1044
-#: ../../include/widgets.php:1383
+#: ../../include/widgets.php:1477
msgid "Accounts"
msgstr "Comptes"
@@ -4326,7 +4233,7 @@ msgstr "Code autorisé pour le canal '%s'"
msgid "Channel '%s' code disallowed"
msgstr "Code interdit pour le canal '%s'"
-#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1384
+#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1478
msgid "Channels"
msgstr "Canaux"
@@ -4346,7 +4253,7 @@ msgstr "Autoriser le code"
msgid "Disallow Code"
msgstr "Interdire le code"
-#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1611
+#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1626
msgid "Channel"
msgstr "Canal"
@@ -4385,7 +4292,7 @@ msgid "Enable"
msgstr "Activer"
#: ../../Zotlabs/Module/Admin.php:1330 ../../Zotlabs/Module/Admin.php:1420
-#: ../../include/widgets.php:1387
+#: ../../include/widgets.php:1481
msgid "Plugins"
msgstr "Greffons"
@@ -4394,8 +4301,8 @@ msgid "Toggle"
msgstr "(Dés)activer"
#: ../../Zotlabs/Module/Admin.php:1332 ../../Zotlabs/Module/Admin.php:1615
-#: ../../Zotlabs/Lib/Apps.php:215 ../../include/widgets.php:638
-#: ../../include/nav.php:208
+#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:210
+#: ../../include/widgets.php:647
msgid "Settings"
msgstr "Paramètres"
@@ -4451,7 +4358,7 @@ msgstr ""
msgid "Install new repo"
msgstr ""
-#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:330
+#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:334
msgid "Install"
msgstr "Installer"
@@ -4467,8 +4374,8 @@ msgstr ""
msgid "Install a New Plugin Repository"
msgstr ""
-#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:77
-#: ../../Zotlabs/Module/Settings.php:616 ../../Zotlabs/Lib/Apps.php:330
+#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:72
+#: ../../Zotlabs/Module/Settings.php:670 ../../Zotlabs/Lib/Apps.php:334
msgid "Update"
msgstr "Mise à jour"
@@ -4485,7 +4392,7 @@ msgid "Screenshot"
msgstr "Capture d'écran"
#: ../../Zotlabs/Module/Admin.php:1613 ../../Zotlabs/Module/Admin.php:1647
-#: ../../include/widgets.php:1388
+#: ../../include/widgets.php:1482
msgid "Themes"
msgstr "Thèmes"
@@ -4501,8 +4408,8 @@ msgstr "[Non maintenu]"
msgid "Log settings updated."
msgstr "Paramètres du journal mis à jour."
-#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1409
-#: ../../include/widgets.php:1419
+#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1503
+#: ../../include/widgets.php:1513
msgid "Logs"
msgstr "Journaux"
@@ -4568,7 +4475,7 @@ msgstr "Définition du champ introuvable"
msgid "Edit Profile Field"
msgstr "Modifier le champ de profil"
-#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1390
+#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1484
msgid "Profile Fields"
msgstr "Champs de profil"
@@ -4596,57 +4503,384 @@ msgstr "Champs personnalisés"
msgid "Create Custom Field"
msgstr "Créer un champ personnalisé"
-#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53
-msgid "App installed."
-msgstr "Application installée."
+#: ../../Zotlabs/Module/New_channel.php:128
+#: ../../Zotlabs/Module/Register.php:231
+msgid "Name or caption"
+msgstr "Nom ou libellé"
-#: ../../Zotlabs/Module/Appman.php:46
-msgid "Malformed app."
-msgstr "Erreur de l'application - Malformée."
+#: ../../Zotlabs/Module/New_channel.php:128
+#: ../../Zotlabs/Module/Register.php:231
+msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""
+msgstr "Exemples&nbsp;: \"Jérôme Dutilleul\", \"Louise et ses chevaux\", \"Football\", \"Club d'aéromodélisme\""
-#: ../../Zotlabs/Module/Appman.php:104
-msgid "Embed code"
-msgstr "Imbriquer le code"
+#: ../../Zotlabs/Module/New_channel.php:130
+#: ../../Zotlabs/Module/Register.php:233
+msgid "Choose a short nickname"
+msgstr "Choisissez un alias"
-#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107
-msgid "Edit App"
-msgstr "Modifier l'application"
+#: ../../Zotlabs/Module/New_channel.php:130
+#: ../../Zotlabs/Module/Register.php:233
+#, php-format
+msgid ""
+"Your nickname will be used to create an easy to remember channel address "
+"e.g. nickname%s"
+msgstr "Votre pseudo sera utilisé pour créer une adresse de canal facile à mémoriser, par ex. pseudo%s"
-#: ../../Zotlabs/Module/Appman.php:110
-msgid "Create App"
-msgstr "Créer une application"
+#: ../../Zotlabs/Module/New_channel.php:132
+#: ../../Zotlabs/Module/Register.php:235
+msgid "Channel role and privacy"
+msgstr "Rôle et confidentialité du canal"
-#: ../../Zotlabs/Module/Appman.php:115
-msgid "Name of app"
-msgstr "Nom de l'application"
+#: ../../Zotlabs/Module/New_channel.php:132
+#: ../../Zotlabs/Module/Register.php:235
+msgid "Select a channel role with your privacy requirements."
+msgstr "Sélectionner un rôle de canal adapté à vos besoins de confidentialité."
-#: ../../Zotlabs/Module/Appman.php:116
-msgid "Location (URL) of app"
-msgstr "Emplacement (URL) de l'application"
+#: ../../Zotlabs/Module/New_channel.php:132
+#: ../../Zotlabs/Module/Register.php:235
+msgid "Read more about roles"
+msgstr "En savoir plus sur les rôles"
-#: ../../Zotlabs/Module/Appman.php:118
-msgid "Photo icon URL"
-msgstr "URL de l'icône à utiliser pour cette photo"
+#: ../../Zotlabs/Module/New_channel.php:135
+msgid "Create Channel"
+msgstr "Créer le canal"
-#: ../../Zotlabs/Module/Appman.php:118
-msgid "80 x 80 pixels - optional"
-msgstr "80 x 80 pixels - facultatif"
+#: ../../Zotlabs/Module/New_channel.php:136
+msgid ""
+"A channel is your identity on this network. It can represent a person, a "
+"blog, or a forum to name a few. Channels can make connections with other "
+"channels to share information with highly detailed permissions."
+msgstr "Un canal est votre identité sur ce réseau. Il peut représenter une personne, un blog, ou un forum par exemple. Les canaux peuvent entrer en contact les uns avec les autres pour partager des informations avec des permissions d'accès très fines."
-#: ../../Zotlabs/Module/Appman.php:119
-msgid "Categories (optional, comma separated list)"
+#: ../../Zotlabs/Module/New_channel.php:137
+msgid ""
+"or <a href=\"import\">import an existing channel</a> from another location."
+msgstr "ou <a href=\"import\">importer un canal existant</a> d'un autre serveur."
+
+#: ../../Zotlabs/Module/Ping.php:265
+msgid "sent you a private message"
+msgstr "vous a envoyé un message privé"
+
+#: ../../Zotlabs/Module/Ping.php:313
+msgid "added your channel"
+msgstr "a ajouté votre canal"
+
+#: ../../Zotlabs/Module/Ping.php:323
+msgid "g A l F d"
+msgstr "g A l F d"
+
+#: ../../Zotlabs/Module/Ping.php:346
+msgid "[today]"
+msgstr "[aujourd'hui]"
+
+#: ../../Zotlabs/Module/Ping.php:355
+msgid "posted an event"
+msgstr "a publié un événement"
+
+#: ../../Zotlabs/Module/Notifications.php:30
+msgid "Invalid request identifier."
+msgstr "Identifiant de requête invalide."
+
+#: ../../Zotlabs/Module/Notifications.php:39
+msgid "Discard"
+msgstr "Annuler"
+
+#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:193
+msgid "Mark all system notifications seen"
+msgstr "Marquer toutes les notifications système comme vues"
+
+#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228
+#: ../../include/conversation.php:963
+msgid "Poke"
+msgstr "Tapoter"
+
+#: ../../Zotlabs/Module/Poke.php:169
+msgid "Poke somebody"
+msgstr "Taquiner quelqu'un"
+
+#: ../../Zotlabs/Module/Poke.php:172
+msgid "Poke/Prod"
+msgstr "Tapoter/Encourager"
+
+#: ../../Zotlabs/Module/Poke.php:173
+msgid "Poke, prod or do other things to somebody"
+msgstr "Taquiner, pousser ou faire autre chose à quelqu'un"
+
+#: ../../Zotlabs/Module/Poke.php:180
+msgid "Recipient"
+msgstr "Destinataire"
+
+#: ../../Zotlabs/Module/Poke.php:181
+msgid "Choose what you wish to do to recipient"
+msgstr "Choisir ce que vous voulez faire au destinataire"
+
+#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185
+msgid "Make this post private"
+msgstr "Rendre cette publication privée"
+
+#: ../../Zotlabs/Module/Oexchange.php:27
+msgid "Unable to find your hub."
+msgstr "Impossible de trouver votre hub."
+
+#: ../../Zotlabs/Module/Oexchange.php:41
+msgid "Post successful."
+msgstr "Publication réussie."
+
+#: ../../Zotlabs/Module/Openid.php:30
+msgid "OpenID protocol error. No ID returned."
+msgstr "Erreur du protocole OpenID. Pas d'ID retourné."
+
+#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:285
+msgid "Login failed."
+msgstr "Échec de la connexion."
+
+#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63
+msgid "Invalid profile identifier."
+msgstr "Identifiant de profil invalide."
+
+#: ../../Zotlabs/Module/Profperm.php:115
+msgid "Profile Visibility Editor"
+msgstr "Éditeur de visibilité de profil"
+
+#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1290
+msgid "Profile"
+msgstr "Profil"
+
+#: ../../Zotlabs/Module/Profperm.php:119
+msgid "Click on a contact to add or remove."
+msgstr "Cliquer sur un contact pour l'ajouter ou le retirer."
+
+#: ../../Zotlabs/Module/Profperm.php:128
+msgid "Visible To"
+msgstr "Visible par"
+
+#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59
+msgid "This setting requires special processing and editing has been blocked."
+msgstr "Ce paramètre nécessité un traitement spécial, les modifications ont été bloquées."
+
+#: ../../Zotlabs/Module/Pconfig.php:48
+msgid "Configuration Editor"
+msgstr "Editeur de configuration"
+
+#: ../../Zotlabs/Module/Pconfig.php:49
+msgid ""
+"Warning: Changing some settings could render your channel inoperable. Please"
+" leave this page unless you are comfortable with and knowledgeable about how"
+" to correctly use this feature."
+msgstr "Attention&nbsp;:modifier certains paramètres peut rendre votre canal inutilisable. Merci d'ignorer cette page à moins d'être suffisamment à l'aise de savoir comment utiliser correctement cette fonctionnalité."
+
+#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32
+#, php-format
+msgid "Fetching URL returns error: %1$s"
+msgstr "Récupération d'URL échouée&nbsp;: %1$s"
+
+#: ../../Zotlabs/Module/Siteinfo.php:19
+#, php-format
+msgid "Version %s"
+msgstr "Version %s"
+
+#: ../../Zotlabs/Module/Siteinfo.php:34
+msgid "Installed plugins/addons/apps:"
+msgstr "Greffons/extensions/applications installés&nbsp;:"
+
+#: ../../Zotlabs/Module/Siteinfo.php:36
+msgid "No installed plugins/addons/apps"
+msgstr "Aucun greffon/extension/application installé"
+
+#: ../../Zotlabs/Module/Siteinfo.php:49
+msgid ""
+"This is a hub of $Projectname - a global cooperative network of "
+"decentralized privacy enhanced websites."
+msgstr "Ceci est un serveur $Projectname - un réseau collaboratif mondial de serveurs décentralisés à la confidentialité améliorée."
+
+#: ../../Zotlabs/Module/Siteinfo.php:51
+msgid "Tag: "
+msgstr "Étiquette&nbsp;:"
+
+#: ../../Zotlabs/Module/Siteinfo.php:53
+msgid "Last background fetch: "
+msgstr "Dernière récupération en tâche de fond&nbsp;:"
+
+#: ../../Zotlabs/Module/Siteinfo.php:55
+msgid "Current load average: "
+msgstr "Charge moyenne actuelle&nbsp;:"
+
+#: ../../Zotlabs/Module/Siteinfo.php:58
+msgid "Running at web location"
+msgstr "Tourne à l'adresse internet"
+
+#: ../../Zotlabs/Module/Siteinfo.php:59
+msgid ""
+"Please visit <a href=\"http://hubzilla.org\">hubzilla.org</a> to learn more "
+"about $Projectname."
+msgstr "Merci de visiter <a href=\"http://hubzilla.org\">hubzilla.org</a> pour en apprendre davantage sur $Projectname."
+
+#: ../../Zotlabs/Module/Siteinfo.php:60
+msgid "Bug reports and issues: please visit"
+msgstr "Pour remonter bogues et problèmes, merci de visiter"
+
+#: ../../Zotlabs/Module/Siteinfo.php:62
+msgid "$projectname issues"
+msgstr "Problèmes $projectname"
+
+#: ../../Zotlabs/Module/Siteinfo.php:63
+msgid ""
+"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot "
+"com"
+msgstr "Suggestions, demandes, etc. - merci de vous adresser à \"redmatrix\" à librelist - point com"
+
+#: ../../Zotlabs/Module/Siteinfo.php:65
+msgid "Site Administrators"
+msgstr "Administrateurs du site"
+
+#: ../../Zotlabs/Module/Rmagic.php:44
+msgid ""
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
+msgstr "Nous avons rencontré un problème avec l'OpenID que vous nous avez fourni. Merci de vérifier que l'ID est correctement saisi."
+
+#: ../../Zotlabs/Module/Rmagic.php:44
+msgid "The error message was:"
+msgstr "Le message d'erreur était&nbsp;:"
+
+#: ../../Zotlabs/Module/Rmagic.php:48
+msgid "Authentication failed."
+msgstr "Échec de l'authentification."
+
+#: ../../Zotlabs/Module/Rmagic.php:88
+msgid "Remote Authentication"
+msgstr "Authentification distante"
+
+#: ../../Zotlabs/Module/Rmagic.php:89
+msgid "Enter your channel address (e.g. channel@example.com)"
+msgstr "Entrez l'adresse de votre canal (par ex. moncanal@monsite.com)"
+
+#: ../../Zotlabs/Module/Rmagic.php:90
+msgid "Authenticate"
+msgstr "Authentifier"
+
+#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1337
+msgid "Public Hubs"
+msgstr "Instances publiques"
+
+#: ../../Zotlabs/Module/Pubsites.php:25
+msgid ""
+"The listed hubs allow public registration for the $Projectname network. All "
+"hubs in the network are interlinked so membership on any of them conveys "
+"membership in the network as a whole. Some hubs may require subscription or "
+"provide tiered service plans. The hub itself <strong>may</strong> provide "
+"additional details."
+msgstr "Les sites listés permettent l'enregistrement public de comptes pour le réseau $Projectname. Tous les sites du réseau sont reliés entre eux, être membre d'un site revient à être membre de tous. Certains sites peuvent demander une souscription ou proposer différents niveaux de service. Chaque site <strong>peut</strong> fournir des détails supplémentaires."
+
+#: ../../Zotlabs/Module/Pubsites.php:31
+msgid "Hub URL"
+msgstr "URL du site"
+
+#: ../../Zotlabs/Module/Pubsites.php:31
+msgid "Access Type"
+msgstr "Type d'accès"
+
+#: ../../Zotlabs/Module/Pubsites.php:31
+msgid "Registration Policy"
+msgstr "Politique d'inscription"
+
+#: ../../Zotlabs/Module/Pubsites.php:31
+msgid "Stats"
msgstr ""
-#: ../../Zotlabs/Module/Appman.php:120
-msgid "Version ID"
-msgstr "Identifiant de version"
+#: ../../Zotlabs/Module/Pubsites.php:31
+msgid "Software"
+msgstr ""
-#: ../../Zotlabs/Module/Appman.php:121
-msgid "Price of app"
-msgstr "Prix de l'application"
+#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103
+#: ../../include/conversation.php:962
+msgid "Ratings"
+msgstr "Evaluations"
-#: ../../Zotlabs/Module/Appman.php:122
-msgid "Location (URL) to purchase app"
-msgstr "Emplacement (URL) pour l'achat de l'application"
+#: ../../Zotlabs/Module/Pubsites.php:38
+msgid "Rate"
+msgstr "Evaluer"
+
+#: ../../Zotlabs/Module/Profile_photo.php:186
+msgid ""
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
+msgstr "Shift-rechargez votre page, ou videz le cache du navigateur si la photo ne s'affiche pas immédiatement."
+
+#: ../../Zotlabs/Module/Profile_photo.php:389
+msgid "Upload Profile Photo"
+msgstr "Téléverser une photo de profil"
+
+#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:155
+#: ../../Zotlabs/Module/Editblock.php:108
+msgid "Block Name"
+msgstr "Nom du Bloc"
+
+#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2238
+msgid "Blocks"
+msgstr "Blocs"
+
+#: ../../Zotlabs/Module/Blocks.php:156
+msgid "Block Title"
+msgstr "Titre du bloc"
+
+#: ../../Zotlabs/Module/Rate.php:160
+msgid "Website:"
+msgstr "Site web&nbsp;:"
+
+#: ../../Zotlabs/Module/Rate.php:163
+#, php-format
+msgid "Remote Channel [%s] (not yet known on this site)"
+msgstr "Canal distant [%s] (encore inconnu sur ce site)"
+
+#: ../../Zotlabs/Module/Rate.php:164
+msgid "Rating (this information is public)"
+msgstr "Evaluation (cette information est publique)"
+
+#: ../../Zotlabs/Module/Rate.php:165
+msgid "Optionally explain your rating (this information is public)"
+msgstr "Explication facultative de votre évaluation (cette information est publique)"
+
+#: ../../Zotlabs/Module/Ratings.php:73
+msgid "No ratings"
+msgstr "Pas de note"
+
+#: ../../Zotlabs/Module/Ratings.php:104
+msgid "Rating: "
+msgstr "Evaluation&nbsp:"
+
+#: ../../Zotlabs/Module/Ratings.php:105
+msgid "Website: "
+msgstr "Site web&nbsp;:"
+
+#: ../../Zotlabs/Module/Ratings.php:107
+msgid "Description: "
+msgstr "Description&nbsp;:"
+
+#: ../../Zotlabs/Module/Apps.php:47 ../../include/nav.php:165
+#: ../../include/widgets.php:102
+msgid "Apps"
+msgstr "Applications"
+
+#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1243
+msgid "Title (optional)"
+msgstr "Titre (facultatif)"
+
+#: ../../Zotlabs/Module/Editblock.php:133
+msgid "Edit Block"
+msgstr "Modifier le bloc"
+
+#: ../../Zotlabs/Module/Common.php:14
+msgid "No channel."
+msgstr "Pas de canal."
+
+#: ../../Zotlabs/Module/Common.php:43
+msgid "Common connections"
+msgstr "Contacts en commun"
+
+#: ../../Zotlabs/Module/Common.php:48
+msgid "No connections in common."
+msgstr "Pas de contacts en commun."
#: ../../Zotlabs/Module/Rbmark.php:94
msgid "Select a bookmark folder"
@@ -4751,120 +4985,154 @@ msgstr "oui"
msgid "Membership on this site is by invitation only."
msgstr "L'inscription à ce site se fait uniquement sur invitation."
-#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:147
-#: ../../boot.php:1685
+#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:149
+#: ../../boot.php:1686
msgid "Register"
msgstr "S'inscrire"
-#: ../../Zotlabs/Module/Register.php:262
-msgid "Proceed to create your first channel"
-msgstr "Continuer pour créer votre premier canal"
+#: ../../Zotlabs/Module/Register.php:263
+msgid ""
+"This site may require email verification after submitting this form. If you "
+"are returned to a login page, please check your email for instructions."
+msgstr ""
#: ../../Zotlabs/Module/Regmod.php:15
msgid "Please login."
msgstr "Merci de vous connecter."
-#: ../../Zotlabs/Module/Removeaccount.php:34
+#: ../../Zotlabs/Module/Removeaccount.php:35
msgid ""
"Account removals are not allowed within 48 hours of changing the account "
"password."
msgstr "Il est impossible de supprimer un compte dans les 48 heures après avoir changé le mot de passe du compte."
-#: ../../Zotlabs/Module/Removeaccount.php:56
+#: ../../Zotlabs/Module/Removeaccount.php:57
msgid "Remove This Account"
msgstr "Supprimer ce compte"
-#: ../../Zotlabs/Module/Removeaccount.php:57
-#: ../../Zotlabs/Module/Removeme.php:59
+#: ../../Zotlabs/Module/Removeaccount.php:58
+#: ../../Zotlabs/Module/Removeme.php:61
msgid "WARNING: "
msgstr "AVERTISSEMENT&nbsp;:"
-#: ../../Zotlabs/Module/Removeaccount.php:57
+#: ../../Zotlabs/Module/Removeaccount.php:58
msgid ""
"This account and all its channels will be completely removed from the "
"network. "
msgstr "Ce compte et tous ses canaux seront entièrement supprimés du réseau."
-#: ../../Zotlabs/Module/Removeaccount.php:57
-#: ../../Zotlabs/Module/Removeme.php:59
+#: ../../Zotlabs/Module/Removeaccount.php:58
+#: ../../Zotlabs/Module/Removeme.php:61
msgid "This action is permanent and can not be undone!"
msgstr "Cette action est permanente et irréversible&nbsp;!"
-#: ../../Zotlabs/Module/Removeaccount.php:58
-#: ../../Zotlabs/Module/Removeme.php:60
+#: ../../Zotlabs/Module/Removeaccount.php:59
+#: ../../Zotlabs/Module/Removeme.php:62
msgid "Please enter your password for verification:"
msgstr "Merci de saisir votre mot de passe pour vérification&nbsp;:"
-#: ../../Zotlabs/Module/Removeaccount.php:59
+#: ../../Zotlabs/Module/Removeaccount.php:60
msgid ""
"Remove this account, all its channels and all its channel clones from the "
"network"
msgstr "Supprimer du réseau ce compte, tous ses canaux et tous les clones de ses canaux."
-#: ../../Zotlabs/Module/Removeaccount.php:59
+#: ../../Zotlabs/Module/Removeaccount.php:60
msgid ""
"By default only the instances of the channels located on this hub will be "
"removed from the network"
msgstr "Par défaut, seules les instances des canaux situés sur ce hub seront supprimées du réseau"
-#: ../../Zotlabs/Module/Removeaccount.php:60
-#: ../../Zotlabs/Module/Settings.php:705
+#: ../../Zotlabs/Module/Removeaccount.php:61
+#: ../../Zotlabs/Module/Settings.php:759
msgid "Remove Account"
msgstr "Supprimer le compte"
-#: ../../Zotlabs/Module/Removeme.php:33
+#: ../../Zotlabs/Module/Removeme.php:35
msgid ""
"Channel removals are not allowed within 48 hours of changing the account "
"password."
msgstr "Il est impossible de supprimer un canal moins de 48 heures après avoir changé le mot de passe d'un compte."
-#: ../../Zotlabs/Module/Removeme.php:58
+#: ../../Zotlabs/Module/Removeme.php:60
msgid "Remove This Channel"
msgstr "Supprimer ce canal"
-#: ../../Zotlabs/Module/Removeme.php:59
+#: ../../Zotlabs/Module/Removeme.php:61
msgid "This channel will be completely removed from the network. "
msgstr "Ce canal sera complètement supprimé du réseau."
-#: ../../Zotlabs/Module/Removeme.php:61
+#: ../../Zotlabs/Module/Removeme.php:63
msgid "Remove this channel and all its clones from the network"
msgstr "Supprimer ce canal ainsi que tous ses clones sur le réseau"
-#: ../../Zotlabs/Module/Removeme.php:61
+#: ../../Zotlabs/Module/Removeme.php:63
msgid ""
"By default only the instance of the channel located on this hub will be "
"removed from the network"
msgstr "Par défaut, seule l'instance du canal présente sur ce hub sera supprimée du réseau"
-#: ../../Zotlabs/Module/Removeme.php:62 ../../Zotlabs/Module/Settings.php:1124
+#: ../../Zotlabs/Module/Removeme.php:64 ../../Zotlabs/Module/Settings.php:1219
msgid "Remove Channel"
msgstr "Supprimer le canal"
-#: ../../Zotlabs/Module/Rmagic.php:44
+#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56
+msgid "Export Channel"
+msgstr "Exporter le canal"
+
+#: ../../Zotlabs/Module/Uexport.php:57
msgid ""
-"We encountered a problem while logging in with the OpenID you provided. "
-"Please check the correct spelling of the ID."
-msgstr "Nous avons rencontré un problème avec l'OpenID que vous nous avez fourni. Merci de vérifier que l'ID est correctement saisi."
+"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 "Exportez les principales informations de votre canal dans un fichier. Celui-ci pourra servir de sauvegarde de vos contacts, permissions, profils et données de base. Il pourra être importé sur un nouveau hub/serveur, mais n'embarquera pas vos contenus."
-#: ../../Zotlabs/Module/Rmagic.php:44
-msgid "The error message was:"
-msgstr "Le message d'erreur était&nbsp;:"
+#: ../../Zotlabs/Module/Uexport.php:58
+msgid "Export Content"
+msgstr "Exporter le contenu"
-#: ../../Zotlabs/Module/Rmagic.php:48
-msgid "Authentication failed."
-msgstr "Échec de l'authentification."
+#: ../../Zotlabs/Module/Uexport.php:59
+msgid ""
+"Export your channel information and recent content to a JSON backup that can"
+" be restored or imported to another server hub. This backs up all of your "
+"connections, permissions, profile data and several months of posts. This "
+"file may be VERY large. Please be patient - it may take several minutes for"
+" this download to begin."
+msgstr "Exportez les informations du canal et les contenus récents dans un fichier JSON. Celui-ci contiendra toutes vos relations, permissions, profils, et plusieurs mois de publications. Ce fichier peut être TRÈS gros. Armez-vous de patience - plusieurs minutes peuvent s'écouler avant que le téléchargement ne commence."
-#: ../../Zotlabs/Module/Rmagic.php:88
-msgid "Remote Authentication"
-msgstr "Authentification distante"
+#: ../../Zotlabs/Module/Uexport.php:60
+msgid "Export your posts from a given year."
+msgstr "Exporter vos publications d'une année en particulier"
-#: ../../Zotlabs/Module/Rmagic.php:89
-msgid "Enter your channel address (e.g. channel@example.com)"
-msgstr "Entrez l'adresse de votre canal (par ex. moncanal@monsite.com)"
+#: ../../Zotlabs/Module/Uexport.php:62
+msgid ""
+"You may also export your posts and conversations for a particular year or "
+"month. Adjust the date in your browser location bar to select other dates. "
+"If the export fails (possibly due to memory exhaustion on your server hub), "
+"please try again selecting a more limited date range."
+msgstr "Vous pouvez également exporter vos publications et conversations pour une année ou un mois particulier. Ajustez la date dans la barre de votre navigateur pour sélectionner d'autres dates. Si l'export échoue (possible en cas de pénurie de mémoire sur le serveur de votre hub), essayez à nouveau en sélectionnant un intervalle de dates plus petit."
-#: ../../Zotlabs/Module/Rmagic.php:90
-msgid "Authenticate"
-msgstr "Authentifier"
+#: ../../Zotlabs/Module/Uexport.php:63
+#, php-format
+msgid ""
+"To select all posts for a given year, such as this year, visit <a "
+"href=\"%1$s\">%2$s</a>"
+msgstr "Pour sélectionner toutes les publications pour une année donnée, telle que cette année, visitez <a href=\"%1$s\">%2$s</a>"
+
+#: ../../Zotlabs/Module/Uexport.php:64
+#, 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 "Pour sélectionner toutes les publications pour un mois donné, par exemple janvier, visitez <a href=\"%1$s\">%2$s</a>"
+
+#: ../../Zotlabs/Module/Uexport.php:65
+#, 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 "Ces fichiers de contenu peuvent être importés ou restaurés en visitant <a href=\"%1$s\">%2$s</a> sur n'importe quel site hébergeant votre canal. Pour de meilleurs résultats merci de les importer par ordre chronologique (les plus anciens d'abord)."
#: ../../Zotlabs/Module/Search.php:216
#, php-format
@@ -4880,609 +5148,652 @@ msgstr "Résultats de recherche pour&nbsp;: %s"
msgid "No service class restrictions found."
msgstr "Aucune restriction de classe de service trouvée."
-#: ../../Zotlabs/Module/Settings.php:69
+#: ../../Zotlabs/Module/Settings.php:64
msgid "Name is required"
msgstr "Le nom est requis"
-#: ../../Zotlabs/Module/Settings.php:73
+#: ../../Zotlabs/Module/Settings.php:68
msgid "Key and Secret are required"
msgstr "Clef et secret sont requis"
-#: ../../Zotlabs/Module/Settings.php:225
+#: ../../Zotlabs/Module/Settings.php:138
+#, php-format
+msgid "This channel is limited to %d tokens"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings.php:144
+msgid "Name and Password are required."
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings.php:168
+msgid "Token saved."
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings.php:274
msgid "Not valid email."
msgstr "Adresse de courriel non valide."
-#: ../../Zotlabs/Module/Settings.php:228
+#: ../../Zotlabs/Module/Settings.php:277
msgid "Protected email address. Cannot change to that email."
msgstr "Adresse de courriel protégée. Impossible de l'utiliser."
-#: ../../Zotlabs/Module/Settings.php:237
+#: ../../Zotlabs/Module/Settings.php:286
msgid "System failure storing new email. Please try again."
msgstr "Défaillance système lors du stockage de la nouvelle adresse de courriel. Merci d'essayer à nouveau."
-#: ../../Zotlabs/Module/Settings.php:254
+#: ../../Zotlabs/Module/Settings.php:303
msgid "Password verification failed."
msgstr "La vérification du mot de passe a échoué."
-#: ../../Zotlabs/Module/Settings.php:261
+#: ../../Zotlabs/Module/Settings.php:310
msgid "Passwords do not match. Password unchanged."
msgstr "Les deux saisies du mot de passe ne correspondent pas. Il n'a donc pas été changé."
-#: ../../Zotlabs/Module/Settings.php:265
+#: ../../Zotlabs/Module/Settings.php:314
msgid "Empty passwords are not allowed. Password unchanged."
msgstr "Le mot de passe ne peut pas être vide. Il n'a donc pas été changé."
-#: ../../Zotlabs/Module/Settings.php:279
+#: ../../Zotlabs/Module/Settings.php:328
msgid "Password changed."
msgstr "Le mot de passe a été changé."
-#: ../../Zotlabs/Module/Settings.php:281
+#: ../../Zotlabs/Module/Settings.php:330
msgid "Password update failed. Please try again."
msgstr "La mise à jour du mot de passe a échoué. Merci d'essayer à nouveau."
-#: ../../Zotlabs/Module/Settings.php:525
+#: ../../Zotlabs/Module/Settings.php:579
msgid "Settings updated."
msgstr "Paramètres mis à jour."
-#: ../../Zotlabs/Module/Settings.php:589 ../../Zotlabs/Module/Settings.php:615
-#: ../../Zotlabs/Module/Settings.php:651
+#: ../../Zotlabs/Module/Settings.php:643 ../../Zotlabs/Module/Settings.php:669
+#: ../../Zotlabs/Module/Settings.php:705
msgid "Add application"
msgstr "Ajouter une application"
-#: ../../Zotlabs/Module/Settings.php:592
+#: ../../Zotlabs/Module/Settings.php:646
msgid "Name of application"
msgstr "Nom de l'application"
-#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:619
+#: ../../Zotlabs/Module/Settings.php:647 ../../Zotlabs/Module/Settings.php:673
msgid "Consumer Key"
msgstr "Clef client"
-#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:594
+#: ../../Zotlabs/Module/Settings.php:647 ../../Zotlabs/Module/Settings.php:648
msgid "Automatically generated - change if desired. Max length 20"
msgstr "Généré automatiquement - à changer si besoin. Longueur maximale 20 caractères."
-#: ../../Zotlabs/Module/Settings.php:594 ../../Zotlabs/Module/Settings.php:620
+#: ../../Zotlabs/Module/Settings.php:648 ../../Zotlabs/Module/Settings.php:674
msgid "Consumer Secret"
msgstr "Secret client"
-#: ../../Zotlabs/Module/Settings.php:595 ../../Zotlabs/Module/Settings.php:621
+#: ../../Zotlabs/Module/Settings.php:649 ../../Zotlabs/Module/Settings.php:675
msgid "Redirect"
msgstr "Redirection"
-#: ../../Zotlabs/Module/Settings.php:595
+#: ../../Zotlabs/Module/Settings.php:649
msgid ""
"Redirect URI - leave blank unless your application specifically requires "
"this"
msgstr "URI de redirection - laissez vide, sauf si votre application le requiert spécifiquement"
-#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Settings.php:622
+#: ../../Zotlabs/Module/Settings.php:650 ../../Zotlabs/Module/Settings.php:676
msgid "Icon url"
msgstr "URL de l'icône"
-#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Sources.php:112
+#: ../../Zotlabs/Module/Settings.php:650 ../../Zotlabs/Module/Sources.php:112
#: ../../Zotlabs/Module/Sources.php:147
msgid "Optional"
msgstr "Facultatif"
-#: ../../Zotlabs/Module/Settings.php:607
+#: ../../Zotlabs/Module/Settings.php:661
msgid "Application not found."
msgstr "Application introuvable."
-#: ../../Zotlabs/Module/Settings.php:650
+#: ../../Zotlabs/Module/Settings.php:704
msgid "Connected Apps"
msgstr "Applications connectées"
-#: ../../Zotlabs/Module/Settings.php:654
+#: ../../Zotlabs/Module/Settings.php:708
msgid "Client key starts with"
msgstr "La clef partagée commence par"
-#: ../../Zotlabs/Module/Settings.php:655
+#: ../../Zotlabs/Module/Settings.php:709
msgid "No name"
msgstr "Sans nom"
-#: ../../Zotlabs/Module/Settings.php:656
+#: ../../Zotlabs/Module/Settings.php:710
msgid "Remove authorization"
msgstr "Révoquer l'autorisation"
-#: ../../Zotlabs/Module/Settings.php:669
+#: ../../Zotlabs/Module/Settings.php:723
msgid "No feature settings configured"
msgstr "Aucun paramètre de fonctionnalité configuré"
-#: ../../Zotlabs/Module/Settings.php:676
+#: ../../Zotlabs/Module/Settings.php:730
msgid "Feature/Addon Settings"
msgstr "Paramètres des extensions/greffons"
-#: ../../Zotlabs/Module/Settings.php:699
+#: ../../Zotlabs/Module/Settings.php:753
msgid "Account Settings"
msgstr "Paramètres du compte"
-#: ../../Zotlabs/Module/Settings.php:700
+#: ../../Zotlabs/Module/Settings.php:754
msgid "Current Password"
msgstr "Mot de passe actuel"
-#: ../../Zotlabs/Module/Settings.php:701
+#: ../../Zotlabs/Module/Settings.php:755
msgid "Enter New Password"
msgstr "Entrez votre nouveau mot de passe"
-#: ../../Zotlabs/Module/Settings.php:702
+#: ../../Zotlabs/Module/Settings.php:756
msgid "Confirm New Password"
msgstr "Confirmez le nouveau mot de passe"
-#: ../../Zotlabs/Module/Settings.php:702
+#: ../../Zotlabs/Module/Settings.php:756
msgid "Leave password fields blank unless changing"
msgstr "Laissez les mots de passe vides si vous ne voulez pas les modifier"
-#: ../../Zotlabs/Module/Settings.php:704
-#: ../../Zotlabs/Module/Settings.php:1041
+#: ../../Zotlabs/Module/Settings.php:758
+#: ../../Zotlabs/Module/Settings.php:1136
msgid "Email Address:"
msgstr "Adresse de courriel&nbsp;:"
-#: ../../Zotlabs/Module/Settings.php:706
+#: ../../Zotlabs/Module/Settings.php:760
msgid "Remove this account including all its channels"
msgstr "Supprimer ce compte et tous ses canaux"
-#: ../../Zotlabs/Module/Settings.php:729
+#: ../../Zotlabs/Module/Settings.php:789
+msgid ""
+"Use this form to create temporary access identifiers to share things with "
+"non-members. These identities may be used in Access Control Lists and "
+"visitors may login using these credentials to access the private content."
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings.php:791
+msgid ""
+"You may also provide <em>dropbox</em> style access links to friends and "
+"associates by adding the Login Password to any specific site URL as shown. "
+"Examples:"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings.php:796 ../../include/widgets.php:614
+msgid "Guest Access Tokens"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings.php:803
+msgid "Login Name"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings.php:804
+msgid "Login Password"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings.php:805
+msgid "Expires (yyyy-mm-dd)"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings.php:830
msgid "Additional Features"
msgstr "Fonctionnalités additionnelles"
-#: ../../Zotlabs/Module/Settings.php:753
+#: ../../Zotlabs/Module/Settings.php:854
msgid "Connector Settings"
msgstr "Paramètres du connecteur"
-#: ../../Zotlabs/Module/Settings.php:792
+#: ../../Zotlabs/Module/Settings.php:893
msgid "No special theme for mobile devices"
msgstr "Pas de thème spécifique aux mobiles"
-#: ../../Zotlabs/Module/Settings.php:795
+#: ../../Zotlabs/Module/Settings.php:896
#, php-format
msgid "%s - (Experimental)"
msgstr "%s - (Expérimental)"
-#: ../../Zotlabs/Module/Settings.php:837
+#: ../../Zotlabs/Module/Settings.php:938
msgid "Display Settings"
msgstr "Afficher les paramètres"
-#: ../../Zotlabs/Module/Settings.php:838
+#: ../../Zotlabs/Module/Settings.php:939
msgid "Theme Settings"
msgstr "Paramètres du thème"
-#: ../../Zotlabs/Module/Settings.php:839
+#: ../../Zotlabs/Module/Settings.php:940
msgid "Custom Theme Settings"
msgstr "Paramètres personnels du thème"
-#: ../../Zotlabs/Module/Settings.php:840
+#: ../../Zotlabs/Module/Settings.php:941
msgid "Content Settings"
msgstr "Paramètres liés au contenu"
-#: ../../Zotlabs/Module/Settings.php:846
+#: ../../Zotlabs/Module/Settings.php:947
msgid "Display Theme:"
msgstr "Afficher le thème&nbsp;:"
-#: ../../Zotlabs/Module/Settings.php:847
+#: ../../Zotlabs/Module/Settings.php:948
msgid "Mobile Theme:"
msgstr "Thème mobile&nbsp;:"
-#: ../../Zotlabs/Module/Settings.php:848
+#: ../../Zotlabs/Module/Settings.php:949
msgid "Preload images before rendering the page"
msgstr "Pré-charger les images avant d'afficher la page"
-#: ../../Zotlabs/Module/Settings.php:848
+#: ../../Zotlabs/Module/Settings.php:949
msgid ""
"The subjective page load time will be longer but the page will be ready when"
" displayed"
msgstr "Le temps de charge perçu de la page sera plus long mais la page sera complète quand elle s'affichera"
-#: ../../Zotlabs/Module/Settings.php:849
+#: ../../Zotlabs/Module/Settings.php:950
msgid "Enable user zoom on mobile devices"
msgstr "Permettre à l'utilisateur d'un mobile d'agrandir le contenu"
-#: ../../Zotlabs/Module/Settings.php:850
+#: ../../Zotlabs/Module/Settings.php:951
msgid "Update browser every xx seconds"
msgstr "Mettre à jour le navigateur toutes les xx secondes"
-#: ../../Zotlabs/Module/Settings.php:850
+#: ../../Zotlabs/Module/Settings.php:951
msgid "Minimum of 10 seconds, no maximum"
msgstr "Minimum 10 secondes, pas de maximum"
-#: ../../Zotlabs/Module/Settings.php:851
+#: ../../Zotlabs/Module/Settings.php:952
msgid "Maximum number of conversations to load at any time:"
msgstr "Nombre maximal de conversations pouvant être chargées en même temps&nbsp;:"
-#: ../../Zotlabs/Module/Settings.php:851
+#: ../../Zotlabs/Module/Settings.php:952
msgid "Maximum of 100 items"
msgstr "100 éléments au maximum"
-#: ../../Zotlabs/Module/Settings.php:852
+#: ../../Zotlabs/Module/Settings.php:953
msgid "Show emoticons (smilies) as images"
msgstr "Remplacer les émoticônes (smileys) par des images"
-#: ../../Zotlabs/Module/Settings.php:853
+#: ../../Zotlabs/Module/Settings.php:954
msgid "Link post titles to source"
msgstr "Lier les titres des publications à leur source"
-#: ../../Zotlabs/Module/Settings.php:854
+#: ../../Zotlabs/Module/Settings.php:955
msgid "System Page Layout Editor - (advanced)"
msgstr "Editeur de mise en page des pages systèmes - (avancé)"
-#: ../../Zotlabs/Module/Settings.php:857
+#: ../../Zotlabs/Module/Settings.php:958
msgid "Use blog/list mode on channel page"
msgstr "Utiliser le mode blog/liste sur la page du canal"
-#: ../../Zotlabs/Module/Settings.php:857 ../../Zotlabs/Module/Settings.php:858
+#: ../../Zotlabs/Module/Settings.php:958 ../../Zotlabs/Module/Settings.php:959
msgid "(comments displayed separately)"
msgstr "(commentaires affichés séparément)"
-#: ../../Zotlabs/Module/Settings.php:858
+#: ../../Zotlabs/Module/Settings.php:959
msgid "Use blog/list mode on grid page"
msgstr "Utiliser le mode blog/liste sur la page du réseau"
-#: ../../Zotlabs/Module/Settings.php:859
+#: ../../Zotlabs/Module/Settings.php:960
msgid "Channel page max height of content (in pixels)"
msgstr "Hauteur maximale du contenu pour la page du canal (en pixels)"
-#: ../../Zotlabs/Module/Settings.php:859 ../../Zotlabs/Module/Settings.php:860
+#: ../../Zotlabs/Module/Settings.php:960 ../../Zotlabs/Module/Settings.php:961
msgid "click to expand content exceeding this height"
msgstr "cliquer pour dérouler le contenu dépassant cette limite"
-#: ../../Zotlabs/Module/Settings.php:860
+#: ../../Zotlabs/Module/Settings.php:961
msgid "Grid page max height of content (in pixels)"
msgstr "Hauteur maximale du contenu sur la page du réseau (en pixels)"
-#: ../../Zotlabs/Module/Settings.php:894
+#: ../../Zotlabs/Module/Settings.php:990
msgid "Nobody except yourself"
msgstr "Personne sauf vous"
-#: ../../Zotlabs/Module/Settings.php:895
+#: ../../Zotlabs/Module/Settings.php:991
msgid "Only those you specifically allow"
msgstr "Seulement ceux que vous autorisez spécifiquement"
-#: ../../Zotlabs/Module/Settings.php:896
+#: ../../Zotlabs/Module/Settings.php:992
msgid "Approved connections"
msgstr "Contacts approuvés"
-#: ../../Zotlabs/Module/Settings.php:897
+#: ../../Zotlabs/Module/Settings.php:993
msgid "Any connections"
msgstr "Tous les contacts"
-#: ../../Zotlabs/Module/Settings.php:898
+#: ../../Zotlabs/Module/Settings.php:994
msgid "Anybody on this website"
msgstr "Tous les utilisateurs du hub"
-#: ../../Zotlabs/Module/Settings.php:899
+#: ../../Zotlabs/Module/Settings.php:995
msgid "Anybody in this network"
msgstr "Tous les utilisateurs sur ce réseau"
-#: ../../Zotlabs/Module/Settings.php:900
+#: ../../Zotlabs/Module/Settings.php:996
msgid "Anybody authenticated"
msgstr "Tous les utilisateurs authentifiés"
-#: ../../Zotlabs/Module/Settings.php:901
+#: ../../Zotlabs/Module/Settings.php:997
msgid "Anybody on the internet"
msgstr "Tous les utilisateurs d'Internet"
-#: ../../Zotlabs/Module/Settings.php:976
+#: ../../Zotlabs/Module/Settings.php:1071
msgid "Publish your default profile in the network directory"
msgstr "Publier votre profil par défaut dans l'annuaire du réseau"
-#: ../../Zotlabs/Module/Settings.php:981
+#: ../../Zotlabs/Module/Settings.php:1076
msgid "Allow us to suggest you as a potential friend to new members?"
msgstr "Nous autoriser à vous suggérer comme ami(e) potentiel(le) aux nouveaux membres?"
-#: ../../Zotlabs/Module/Settings.php:990
+#: ../../Zotlabs/Module/Settings.php:1085
msgid "Your channel address is"
msgstr "L'adresse de votre canal est"
-#: ../../Zotlabs/Module/Settings.php:1032
+#: ../../Zotlabs/Module/Settings.php:1127
msgid "Channel Settings"
msgstr "Paramètres du canal"
-#: ../../Zotlabs/Module/Settings.php:1039
+#: ../../Zotlabs/Module/Settings.php:1134
msgid "Basic Settings"
msgstr "Paramètres standard"
-#: ../../Zotlabs/Module/Settings.php:1040 ../../include/channel.php:1140
+#: ../../Zotlabs/Module/Settings.php:1135 ../../include/channel.php:1180
msgid "Full Name:"
msgstr "Nom complet&nbsp;:"
-#: ../../Zotlabs/Module/Settings.php:1042
+#: ../../Zotlabs/Module/Settings.php:1137
msgid "Your Timezone:"
msgstr "Votre fureau horaire&nbsp;:"
-#: ../../Zotlabs/Module/Settings.php:1043
+#: ../../Zotlabs/Module/Settings.php:1138
msgid "Default Post Location:"
msgstr "Emplacement de publication par défaut&nbsp;:"
-#: ../../Zotlabs/Module/Settings.php:1043
+#: ../../Zotlabs/Module/Settings.php:1138
msgid "Geographical location to display on your posts"
msgstr "Emplacement géographique à afficher sur vos publications"
-#: ../../Zotlabs/Module/Settings.php:1044
+#: ../../Zotlabs/Module/Settings.php:1139
msgid "Use Browser Location:"
msgstr "Utiliser la géolocalisation du navigateur&nbsp;:"
-#: ../../Zotlabs/Module/Settings.php:1046
+#: ../../Zotlabs/Module/Settings.php:1141
msgid "Adult Content"
msgstr "Contenu \"adulte\""
-#: ../../Zotlabs/Module/Settings.php:1046
+#: ../../Zotlabs/Module/Settings.php:1141
msgid ""
"This channel frequently or regularly publishes adult content. (Please tag "
"any adult material and/or nudity with #NSFW)"
msgstr "Ce canal publie plus ou moins fréquemment du contenu pour adultes. (Merci d'indiquer tout contenu pour adulte ou potentiellement choquant avec l'étiquette <em>#NSFW</em> - Not Safe For Work)"
-#: ../../Zotlabs/Module/Settings.php:1048
+#: ../../Zotlabs/Module/Settings.php:1143
msgid "Security and Privacy Settings"
msgstr "Paramètres de sécurité et de confidentialité"
-#: ../../Zotlabs/Module/Settings.php:1051
+#: ../../Zotlabs/Module/Settings.php:1146
msgid "Your permissions are already configured. Click to view/adjust"
msgstr "Vous permissions sont déjà paramétrées. Cliquer pour voir/ajuster"
-#: ../../Zotlabs/Module/Settings.php:1053
+#: ../../Zotlabs/Module/Settings.php:1148
msgid "Hide my online presence"
msgstr "Cacher ma présence en ligne"
-#: ../../Zotlabs/Module/Settings.php:1053
+#: ../../Zotlabs/Module/Settings.php:1148
msgid "Prevents displaying in your profile that you are online"
msgstr "Cacher votre statut (en ligne/hors ligne) sur votre profil"
-#: ../../Zotlabs/Module/Settings.php:1055
+#: ../../Zotlabs/Module/Settings.php:1150
msgid "Simple Privacy Settings:"
msgstr "Paramètres de confidentialité simplifiés&nbsp;:"
-#: ../../Zotlabs/Module/Settings.php:1056
+#: ../../Zotlabs/Module/Settings.php:1151
msgid ""
"Very Public - <em>extremely permissive (should be used with caution)</em>"
msgstr "Très public - <em>extrèmement permissif (à n'utiliser qu'en connaissance de cause)</em>"
-#: ../../Zotlabs/Module/Settings.php:1057
+#: ../../Zotlabs/Module/Settings.php:1152
msgid ""
"Typical - <em>default public, privacy when desired (similar to social "
"network permissions but with improved privacy)</em>"
msgstr "Classique - <em>public par défaut, privé en cas de besoin (comparable aux permissions type réseau social, avec une confidentialité améliorée)</em>"
-#: ../../Zotlabs/Module/Settings.php:1058
+#: ../../Zotlabs/Module/Settings.php:1153
msgid "Private - <em>default private, never open or public</em>"
msgstr "Privé - <em>privé par défaut, jamais ouvert ni public</em>"
-#: ../../Zotlabs/Module/Settings.php:1059
+#: ../../Zotlabs/Module/Settings.php:1154
msgid "Blocked - <em>default blocked to/from everybody</em>"
msgstr "Bloqué - <em>par défaut, bloqué de/vers tout le monde</em>"
-#: ../../Zotlabs/Module/Settings.php:1061
+#: ../../Zotlabs/Module/Settings.php:1156
msgid "Allow others to tag your posts"
msgstr "Autoriser les autres à \"étiqueter\" vos publications"
-#: ../../Zotlabs/Module/Settings.php:1061
+#: ../../Zotlabs/Module/Settings.php:1156
msgid ""
"Often used by the community to retro-actively flag inappropriate content"
msgstr "Souvent utilisé par la communauté pour identifier un contenu inapproprié a posteriori "
-#: ../../Zotlabs/Module/Settings.php:1063
+#: ../../Zotlabs/Module/Settings.php:1158
msgid "Advanced Privacy Settings"
msgstr "Paramètres de confidentialité avancés"
-#: ../../Zotlabs/Module/Settings.php:1065
+#: ../../Zotlabs/Module/Settings.php:1160
msgid "Expire other channel content after this many days"
msgstr "Faire expirer le contenu des autres canaux après n jours"
-#: ../../Zotlabs/Module/Settings.php:1065
+#: ../../Zotlabs/Module/Settings.php:1160
msgid "0 or blank to use the website limit."
msgstr ""
-#: ../../Zotlabs/Module/Settings.php:1065
+#: ../../Zotlabs/Module/Settings.php:1160
#, php-format
msgid "This website expires after %d days."
msgstr ""
-#: ../../Zotlabs/Module/Settings.php:1065
+#: ../../Zotlabs/Module/Settings.php:1160
msgid "This website does not expire imported content."
msgstr ""
-#: ../../Zotlabs/Module/Settings.php:1065
+#: ../../Zotlabs/Module/Settings.php:1160
msgid "The website limit takes precedence if lower than your limit."
msgstr ""
-#: ../../Zotlabs/Module/Settings.php:1066
+#: ../../Zotlabs/Module/Settings.php:1161
msgid "Maximum Friend Requests/Day:"
msgstr "Nombre maximum de demandes de contact par jour&nbsp;:"
-#: ../../Zotlabs/Module/Settings.php:1066
+#: ../../Zotlabs/Module/Settings.php:1161
msgid "May reduce spam activity"
msgstr "Contribue à réduire l'impact des indésirables"
-#: ../../Zotlabs/Module/Settings.php:1067
+#: ../../Zotlabs/Module/Settings.php:1162
msgid "Default Post and Publish Permissions"
msgstr ""
-#: ../../Zotlabs/Module/Settings.php:1069
+#: ../../Zotlabs/Module/Settings.php:1164
msgid "Use my default audience setting for the type of object published"
msgstr ""
-#: ../../Zotlabs/Module/Settings.php:1072
+#: ../../Zotlabs/Module/Settings.php:1167
msgid "Channel permissions category:"
msgstr "Catégorie de permissions du canal&nbsp;:"
-#: ../../Zotlabs/Module/Settings.php:1078
+#: ../../Zotlabs/Module/Settings.php:1173
msgid "Maximum private messages per day from unknown people:"
msgstr "Nombre maximum de messages privés émanant d'inconnus, par jour&nbsp;:"
-#: ../../Zotlabs/Module/Settings.php:1078
+#: ../../Zotlabs/Module/Settings.php:1173
msgid "Useful to reduce spamming"
msgstr "Utile pour réduire les indésirables"
-#: ../../Zotlabs/Module/Settings.php:1081
+#: ../../Zotlabs/Module/Settings.php:1176
msgid "Notification Settings"
msgstr "Paramètres de notification"
-#: ../../Zotlabs/Module/Settings.php:1082
+#: ../../Zotlabs/Module/Settings.php:1177
msgid "By default post a status message when:"
msgstr "Par défaut, publier un statut quand&nbsp;:"
-#: ../../Zotlabs/Module/Settings.php:1083
+#: ../../Zotlabs/Module/Settings.php:1178
msgid "accepting a friend request"
msgstr "vous acceptez une demande de contact"
-#: ../../Zotlabs/Module/Settings.php:1084
+#: ../../Zotlabs/Module/Settings.php:1179
msgid "joining a forum/community"
msgstr "vous rejoignez un forum ou une communauté"
-#: ../../Zotlabs/Module/Settings.php:1085
+#: ../../Zotlabs/Module/Settings.php:1180
msgid "making an <em>interesting</em> profile change"
msgstr "vous faîtes une modification <em>intéressante</em> de votre profil"
-#: ../../Zotlabs/Module/Settings.php:1086
+#: ../../Zotlabs/Module/Settings.php:1181
msgid "Send a notification email when:"
msgstr "Envoyer un courriel de notification quand&nbsp;:"
-#: ../../Zotlabs/Module/Settings.php:1087
+#: ../../Zotlabs/Module/Settings.php:1182
msgid "You receive a connection request"
msgstr "Vous recevez une demande de contact"
-#: ../../Zotlabs/Module/Settings.php:1088
+#: ../../Zotlabs/Module/Settings.php:1183
msgid "Your connections are confirmed"
msgstr "Vos contacts sont confirmés"
-#: ../../Zotlabs/Module/Settings.php:1089
+#: ../../Zotlabs/Module/Settings.php:1184
msgid "Someone writes on your profile wall"
msgstr "Quelqu'un a écrit sur votre mur"
-#: ../../Zotlabs/Module/Settings.php:1090
+#: ../../Zotlabs/Module/Settings.php:1185
msgid "Someone writes a followup comment"
msgstr "Quelqu'un a commenté vos publications"
-#: ../../Zotlabs/Module/Settings.php:1091
+#: ../../Zotlabs/Module/Settings.php:1186
msgid "You receive a private message"
msgstr "Vous recevez un message privé"
-#: ../../Zotlabs/Module/Settings.php:1092
+#: ../../Zotlabs/Module/Settings.php:1187
msgid "You receive a friend suggestion"
msgstr "Vous recevez une suggestion d'amitié/contact"
-#: ../../Zotlabs/Module/Settings.php:1093
+#: ../../Zotlabs/Module/Settings.php:1188
msgid "You are tagged in a post"
msgstr "Vous êtes étiqueté dans une publication"
-#: ../../Zotlabs/Module/Settings.php:1094
+#: ../../Zotlabs/Module/Settings.php:1189
msgid "You are poked/prodded/etc. in a post"
msgstr "Vous êtes tapoté/encouragé/etc. dans une publication"
-#: ../../Zotlabs/Module/Settings.php:1097
+#: ../../Zotlabs/Module/Settings.php:1192
msgid "Show visual notifications including:"
msgstr "Afficher des notifications visuelles y compris&nbsp;:"
-#: ../../Zotlabs/Module/Settings.php:1099
+#: ../../Zotlabs/Module/Settings.php:1194
msgid "Unseen grid activity"
msgstr "Activité du réseau pas encore consultée"
-#: ../../Zotlabs/Module/Settings.php:1100
+#: ../../Zotlabs/Module/Settings.php:1195
msgid "Unseen channel activity"
msgstr "Activité non vue sur le canal"
-#: ../../Zotlabs/Module/Settings.php:1101
+#: ../../Zotlabs/Module/Settings.php:1196
msgid "Unseen private messages"
msgstr "Messages privés non lus"
-#: ../../Zotlabs/Module/Settings.php:1101
-#: ../../Zotlabs/Module/Settings.php:1106
-#: ../../Zotlabs/Module/Settings.php:1107
-#: ../../Zotlabs/Module/Settings.php:1108
+#: ../../Zotlabs/Module/Settings.php:1196
+#: ../../Zotlabs/Module/Settings.php:1201
+#: ../../Zotlabs/Module/Settings.php:1202
+#: ../../Zotlabs/Module/Settings.php:1203
msgid "Recommended"
msgstr "Recommandé"
-#: ../../Zotlabs/Module/Settings.php:1102
+#: ../../Zotlabs/Module/Settings.php:1197
msgid "Upcoming events"
msgstr "Événements à venir"
-#: ../../Zotlabs/Module/Settings.php:1103
+#: ../../Zotlabs/Module/Settings.php:1198
msgid "Events today"
msgstr "Événements aujourd'hui"
-#: ../../Zotlabs/Module/Settings.php:1104
+#: ../../Zotlabs/Module/Settings.php:1199
msgid "Upcoming birthdays"
msgstr "Anniversaires à venir"
-#: ../../Zotlabs/Module/Settings.php:1104
+#: ../../Zotlabs/Module/Settings.php:1199
msgid "Not available in all themes"
msgstr "Pas disponible dans tous les thèmes"
-#: ../../Zotlabs/Module/Settings.php:1105
+#: ../../Zotlabs/Module/Settings.php:1200
msgid "System (personal) notifications"
msgstr "Notifications système (personnelles)"
-#: ../../Zotlabs/Module/Settings.php:1106
+#: ../../Zotlabs/Module/Settings.php:1201
msgid "System info messages"
msgstr "Messages d'info système"
-#: ../../Zotlabs/Module/Settings.php:1107
+#: ../../Zotlabs/Module/Settings.php:1202
msgid "System critical alerts"
msgstr "Alertes critiques système"
-#: ../../Zotlabs/Module/Settings.php:1108
+#: ../../Zotlabs/Module/Settings.php:1203
msgid "New connections"
msgstr "Nouveaux contacts"
-#: ../../Zotlabs/Module/Settings.php:1109
+#: ../../Zotlabs/Module/Settings.php:1204
msgid "System Registrations"
msgstr "Inscriptions système"
-#: ../../Zotlabs/Module/Settings.php:1110
+#: ../../Zotlabs/Module/Settings.php:1205
msgid ""
"Also show new wall posts, private messages and connections under Notices"
msgstr "Afficher également les nouvelles publications sur le mur, les messages privés et les contacts dans Notifications"
-#: ../../Zotlabs/Module/Settings.php:1112
+#: ../../Zotlabs/Module/Settings.php:1207
msgid "Notify me of events this many days in advance"
msgstr "Me prévenir d’événements à venir tant de jours en avance"
-#: ../../Zotlabs/Module/Settings.php:1112
+#: ../../Zotlabs/Module/Settings.php:1207
msgid "Must be greater than 0"
msgstr "Doit être supérieur à 0"
-#: ../../Zotlabs/Module/Settings.php:1114
+#: ../../Zotlabs/Module/Settings.php:1209
msgid "Advanced Account/Page Type Settings"
msgstr "Paramètres avancés de compte/type de page"
-#: ../../Zotlabs/Module/Settings.php:1115
+#: ../../Zotlabs/Module/Settings.php:1210
msgid "Change the behaviour of this account for special situations"
msgstr "Modifie le comportement de ce compte pour des situations particulières"
-#: ../../Zotlabs/Module/Settings.php:1118
+#: ../../Zotlabs/Module/Settings.php:1213
msgid ""
"Please enable expert mode (in <a href=\"settings/features\">Settings > "
"Additional features</a>) to adjust!"
msgstr "Mode expert requis (<a href=\"settings/features\">Paramètres > Fonctions supplémentaires</a>) pour ajuster&nbsp;!"
-#: ../../Zotlabs/Module/Settings.php:1119
+#: ../../Zotlabs/Module/Settings.php:1214
msgid "Miscellaneous Settings"
msgstr "Paramètres divers"
-#: ../../Zotlabs/Module/Settings.php:1120
+#: ../../Zotlabs/Module/Settings.php:1215
msgid "Default photo upload folder"
msgstr "Répertoire par défaut pour les photos téléversées"
-#: ../../Zotlabs/Module/Settings.php:1120
-#: ../../Zotlabs/Module/Settings.php:1121
+#: ../../Zotlabs/Module/Settings.php:1215
+#: ../../Zotlabs/Module/Settings.php:1216
msgid "%Y - current year, %m - current month"
msgstr "%Y - année en cours, %m - mois en cours"
-#: ../../Zotlabs/Module/Settings.php:1121
+#: ../../Zotlabs/Module/Settings.php:1216
msgid "Default file upload folder"
msgstr "Répertoire par défaut pour les fichiers téléversés"
-#: ../../Zotlabs/Module/Settings.php:1123
+#: ../../Zotlabs/Module/Settings.php:1218
msgid "Personal menu to display in your channel pages"
msgstr "Menu personnel à afficher sur les pages de votre canal"
-#: ../../Zotlabs/Module/Settings.php:1125
+#: ../../Zotlabs/Module/Settings.php:1220
msgid "Remove this channel."
msgstr "Supprimer ce canal"
-#: ../../Zotlabs/Module/Settings.php:1126
+#: ../../Zotlabs/Module/Settings.php:1221
msgid "Firefox Share $Projectname provider"
msgstr "Connecteur $Projectname pour Firefox Share"
-#: ../../Zotlabs/Module/Settings.php:1127
+#: ../../Zotlabs/Module/Settings.php:1222
msgid "Start calendar week on monday"
msgstr "Commencer la semaine du calendrier le lundi"
@@ -5515,7 +5826,7 @@ msgid ""
msgstr "Vous pourriez avoir besoin d'importer le fichier \"install/schema_xxx.sql\" manuellement via un client de base de données (ex: phpmyadmin)."
#: ../../Zotlabs/Module/Setup.php:204 ../../Zotlabs/Module/Setup.php:266
-#: ../../Zotlabs/Module/Setup.php:721
+#: ../../Zotlabs/Module/Setup.php:722
msgid "Please see the file \"install/INSTALL.txt\"."
msgstr "Merci de consulter le fichier \"install/INSTALL.txt\"."
@@ -5715,199 +6026,200 @@ msgid "mb_string PHP module"
msgstr "module PHP mb_string"
#: ../../Zotlabs/Module/Setup.php:496
-msgid "mcrypt PHP module"
-msgstr "module PHP mcrypt"
-
-#: ../../Zotlabs/Module/Setup.php:497
msgid "xml PHP module"
msgstr "module PHP xml"
-#: ../../Zotlabs/Module/Setup.php:501 ../../Zotlabs/Module/Setup.php:503
+#: ../../Zotlabs/Module/Setup.php:500 ../../Zotlabs/Module/Setup.php:502
msgid "Apache mod_rewrite module"
msgstr "module Apache mod_rewrite"
-#: ../../Zotlabs/Module/Setup.php:501
+#: ../../Zotlabs/Module/Setup.php:500
msgid ""
"Error: Apache webserver mod-rewrite module is required but not installed."
msgstr "Erreur&nbsp;: le module mod-rewrite du serveur web Apache est requis, mais pas installé."
-#: ../../Zotlabs/Module/Setup.php:507 ../../Zotlabs/Module/Setup.php:510
+#: ../../Zotlabs/Module/Setup.php:506 ../../Zotlabs/Module/Setup.php:509
msgid "proc_open"
msgstr "proc_open"
-#: ../../Zotlabs/Module/Setup.php:507
+#: ../../Zotlabs/Module/Setup.php:506
msgid ""
"Error: proc_open is required but is either not installed or has been "
"disabled in php.ini"
msgstr "Erreur&nbsp;: proc_open est requis, mais soit n'est pas installé, soit est désactivé dans le php.ini"
-#: ../../Zotlabs/Module/Setup.php:515
+#: ../../Zotlabs/Module/Setup.php:514
msgid "Error: libCURL PHP module required but not installed."
msgstr "Erreur&nbsp;: le module libCURL de PHP est requis, mais pas installé."
-#: ../../Zotlabs/Module/Setup.php:519
+#: ../../Zotlabs/Module/Setup.php:518
msgid ""
"Error: GD graphics PHP module with JPEG support required but not installed."
msgstr "Erreur&nbsp;: le module GD de PHP avec support JPEG est requis, mais pas installé."
-#: ../../Zotlabs/Module/Setup.php:523
+#: ../../Zotlabs/Module/Setup.php:522
msgid "Error: openssl PHP module required but not installed."
msgstr "Erreur&nbsp;: le module openssl de PHP est requis, mais pas installé."
-#: ../../Zotlabs/Module/Setup.php:527
+#: ../../Zotlabs/Module/Setup.php:526
msgid ""
"Error: mysqli or postgres PHP module required but neither are installed."
msgstr "Erreur&nbsp;: un module PHP mysqli ou postgres est requis, mais aucun des deux n'est installé."
-#: ../../Zotlabs/Module/Setup.php:531
+#: ../../Zotlabs/Module/Setup.php:530
msgid "Error: mb_string PHP module required but not installed."
msgstr "Erreur&nbsp;: le module mb_string de PHP est requis, mais pas installé."
-#: ../../Zotlabs/Module/Setup.php:535
-msgid "Error: mcrypt PHP module required but not installed."
-msgstr "Erreur&nbsp;: le module mcrypt de PHP est requis, mais pas installé."
-
-#: ../../Zotlabs/Module/Setup.php:539
+#: ../../Zotlabs/Module/Setup.php:534
msgid "Error: xml PHP module required for DAV but not installed."
msgstr "Erreur&nbsp;: le module xml de PHP est requis pour le DAV, mais pas installé."
-#: ../../Zotlabs/Module/Setup.php:557
+#: ../../Zotlabs/Module/Setup.php:552
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'installeur web a besoin de créer un fichier \".htconfig.php\" à la racine de votre serveur web, mais en est incapable."
-#: ../../Zotlabs/Module/Setup.php:558
+#: ../../Zotlabs/Module/Setup.php:553
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 "C'est généralement lié à un problème de droits, à cause duquel le serveur web est interdit d'écriture dans le répertoire concerné - alors que votre propre utilisateur a le droit."
-#: ../../Zotlabs/Module/Setup.php:559
+#: ../../Zotlabs/Module/Setup.php:554
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 "Au terme de cette procédure, nous vous transmettrons un texte à sauvegarder dans un fichier nommé .htconfig.php, à la racine de votre installation de $Projectname."
-#: ../../Zotlabs/Module/Setup.php:560
+#: ../../Zotlabs/Module/Setup.php:555
msgid ""
"You can alternatively skip this procedure and perform a manual installation."
" Please see the file \"install/INSTALL.txt\" for instructions."
msgstr "Autrement, vous pouvez contourner toute cette procédure et réaliser l'installation manuellement. Merci de consulter le fichier \"install/INSTALL.txt\" pour les instructions détaillées."
-#: ../../Zotlabs/Module/Setup.php:563
+#: ../../Zotlabs/Module/Setup.php:558
msgid ".htconfig.php is writable"
msgstr "Le fichier .htconfig.php est accessible en écriture"
-#: ../../Zotlabs/Module/Setup.php:577
+#: ../../Zotlabs/Module/Setup.php:572
msgid ""
"Red uses the Smarty3 template engine to render its web views. Smarty3 "
"compiles templates to PHP to speed up rendering."
msgstr "$Projectname utilise le moteur de gabarits Smarty3 pour mettre son contenu en forme. Smarty3 compile ses modèles vers du PHP natif pour accélérer le rendu."
-#: ../../Zotlabs/Module/Setup.php:578
+#: ../../Zotlabs/Module/Setup.php:573
#, php-format
msgid ""
"In order to store these compiled templates, the web server needs to have "
"write access to the directory %s under the top level web folder."
msgstr ""
-#: ../../Zotlabs/Module/Setup.php:579 ../../Zotlabs/Module/Setup.php:600
+#: ../../Zotlabs/Module/Setup.php:574 ../../Zotlabs/Module/Setup.php:595
msgid ""
"Please ensure that the user that your web server runs as (e.g. www-data) has"
" write access to this folder."
msgstr "Merci de vous assurer que l'utilisateur sous lequel le serveur web tourne (le plus souvent, www-data) a bien l'autorisation d'écrire dans ce répertoire."
-#: ../../Zotlabs/Module/Setup.php:580
+#: ../../Zotlabs/Module/Setup.php:575
#, 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: Comme mesure de sécurité, assurez vous de donner les droits d'écriture au serveur web sur %s uniquement, pas sur les fichiers individuels (.tpl) qu'il contient."
-#: ../../Zotlabs/Module/Setup.php:583
+#: ../../Zotlabs/Module/Setup.php:578
#, php-format
msgid "%s is writable"
msgstr "Permission d'écriture sur %s activée"
-#: ../../Zotlabs/Module/Setup.php:599
+#: ../../Zotlabs/Module/Setup.php:594
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 "$Projectname utilise le répertoire 'store' - situé à la racine de votre installation de $Projectname - pour sauvegarder les fichiers envoyés. Le serveur web aura donc besoin de pouvoir y écrire."
+"This software 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 ""
-#: ../../Zotlabs/Module/Setup.php:603
+#: ../../Zotlabs/Module/Setup.php:598
msgid "store is writable"
msgstr "'store' est accessible en écriture"
-#: ../../Zotlabs/Module/Setup.php:636
+#: ../../Zotlabs/Module/Setup.php:631
msgid ""
"SSL certificate cannot be validated. Fix certificate or disable https access"
" to this site."
msgstr "Le certificat SSL/TLS n'a pas pu être validé. Merci de le corriger, ou de désactiver l'accès https à ce site (non recommandé)."
-#: ../../Zotlabs/Module/Setup.php:637
+#: ../../Zotlabs/Module/Setup.php:632
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 votre serveur accepte les connexions https ou s'il permet les connexions sur le port TCP 443 (le port utilisé par le protocole https), vous DEVEZ utiliser un certificat valide. Vous ne DEVEZ PAS utiliser un certificat que vous avez vous-mêmes signé&nbsp;!"
-#: ../../Zotlabs/Module/Setup.php:638
+#: ../../Zotlabs/Module/Setup.php:633
msgid ""
"This restriction is incorporated because public posts from you may for "
"example contain references to images on your own hub."
msgstr "Nous avons ajouté cette contrainte pour éviter que vos publications publiques ne fassent référence par exemple à des images sur votre propre hub."
-#: ../../Zotlabs/Module/Setup.php:639
+#: ../../Zotlabs/Module/Setup.php:634
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 votre certificat n'est pas reconnu, les membres des autres sites (qui eux peuvent avoir des certificats valides) recevront des messages d'avertissement sur leur propre site se plaignant de problèmes de sécurité."
-#: ../../Zotlabs/Module/Setup.php:640
+#: ../../Zotlabs/Module/Setup.php:635
msgid ""
"This can cause usability issues elsewhere (not just on your own site) so we "
"must insist on this requirement."
msgstr "Ceci peut causer des problèmes d'ergonomie ailleurs (pas seulement sur votre site), nous devons donc insister sur ce prérequis."
-#: ../../Zotlabs/Module/Setup.php:641
+#: ../../Zotlabs/Module/Setup.php:636
msgid ""
"Providers are available that issue free certificates which are browser-"
"valid."
msgstr "Il existe des autorités de certification qui vous fourniront gratuitement un certificat valide."
-#: ../../Zotlabs/Module/Setup.php:643
+#: ../../Zotlabs/Module/Setup.php:638
+msgid ""
+"If you are confident that the certificate is valid and signed by a trusted "
+"authority, check to see if you have failed to install an intermediate cert. "
+"These are not normally required by browsers, but are required for server-to-"
+"server communications."
+msgstr ""
+
+#: ../../Zotlabs/Module/Setup.php:641
msgid "SSL certificate validation"
msgstr "Validation du certificat SSL/TLS"
-#: ../../Zotlabs/Module/Setup.php:649
+#: ../../Zotlabs/Module/Setup.php:647
msgid ""
"Url rewrite in .htaccess is not working. Check your server "
"configuration.Test: "
msgstr "La réécriture d'URL définie dans le .htaccess ne fonctionne pas. Vérifiez votre configuration serveur. Test&nbsp;:"
-#: ../../Zotlabs/Module/Setup.php:652
+#: ../../Zotlabs/Module/Setup.php:650
msgid "Url rewrite is working"
msgstr "La réécriture d'URL fonctionne"
-#: ../../Zotlabs/Module/Setup.php:661
+#: ../../Zotlabs/Module/Setup.php:659
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 "Le fichier de configuration de la base de données - \".htconfig.php\" - ne peut être écrit. Merci de copier le texte généré dans un fichier à ce nom, à la racine de votre serveur web."
-#: ../../Zotlabs/Module/Setup.php:685
+#: ../../Zotlabs/Module/Setup.php:683
msgid "Errors encountered creating database tables."
msgstr "Erreurs rencontrées pendant la création de tables de BDD."
-#: ../../Zotlabs/Module/Setup.php:719
+#: ../../Zotlabs/Module/Setup.php:720
msgid "<h1>What next</h1>"
msgstr "<h1>Et maintenant</h1>"
-#: ../../Zotlabs/Module/Setup.php:720
+#: ../../Zotlabs/Module/Setup.php:721
msgid ""
"IMPORTANT: You will need to [manually] setup a scheduled task for the "
"poller."
@@ -5929,64 +6241,62 @@ msgstr "Supprimer tous les fichiers"
msgid "Remove this file"
msgstr "Supprimer ce fichier"
-#: ../../Zotlabs/Module/Siteinfo.php:19
-#, php-format
-msgid "Version %s"
-msgstr "Version %s"
+#: ../../Zotlabs/Module/Thing.php:114
+msgid "Thing updated"
+msgstr "Elément mis à jour"
-#: ../../Zotlabs/Module/Siteinfo.php:40
-msgid "Installed plugins/addons/apps:"
-msgstr "Greffons/extensions/applications installés&nbsp;:"
+#: ../../Zotlabs/Module/Thing.php:166
+msgid "Object store: failed"
+msgstr "Stockage de l'objet&nbsp;: échec"
-#: ../../Zotlabs/Module/Siteinfo.php:53
-msgid "No installed plugins/addons/apps"
-msgstr "Aucun greffon/extension/application installé"
+#: ../../Zotlabs/Module/Thing.php:170
+msgid "Thing added"
+msgstr "Elément ajouté"
-#: ../../Zotlabs/Module/Siteinfo.php:66
-msgid ""
-"This is a hub of $Projectname - a global cooperative network of "
-"decentralized privacy enhanced websites."
-msgstr "Ceci est un serveur $Projectname - un réseau collaboratif mondial de serveurs décentralisés à la confidentialité améliorée."
+#: ../../Zotlabs/Module/Thing.php:196
+#, php-format
+msgid "OBJ: %1$s %2$s %3$s"
+msgstr "OBJ: %1$s %2$s %3$s"
-#: ../../Zotlabs/Module/Siteinfo.php:68
-msgid "Tag: "
-msgstr "Étiquette&nbsp;:"
+#: ../../Zotlabs/Module/Thing.php:259
+msgid "Show Thing"
+msgstr "Montrer élément"
-#: ../../Zotlabs/Module/Siteinfo.php:70
-msgid "Last background fetch: "
-msgstr "Dernière récupération en tâche de fond&nbsp;:"
+#: ../../Zotlabs/Module/Thing.php:266
+msgid "item not found."
+msgstr "élément introuvable."
-#: ../../Zotlabs/Module/Siteinfo.php:72
-msgid "Current load average: "
-msgstr "Charge moyenne actuelle&nbsp;:"
+#: ../../Zotlabs/Module/Thing.php:299
+msgid "Edit Thing"
+msgstr "Modifier élément"
-#: ../../Zotlabs/Module/Siteinfo.php:75
-msgid "Running at web location"
-msgstr "Tourne à l'adresse internet"
+#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351
+msgid "Select a profile"
+msgstr "Choisissez un profil"
-#: ../../Zotlabs/Module/Siteinfo.php:76
-msgid ""
-"Please visit <a href=\"http://hubzilla.org\">hubzilla.org</a> to learn more "
-"about $Projectname."
-msgstr "Merci de visiter <a href=\"http://hubzilla.org\">hubzilla.org</a> pour en apprendre davantage sur $Projectname."
+#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354
+msgid "Post an activity"
+msgstr "Publier une activité"
-#: ../../Zotlabs/Module/Siteinfo.php:77
-msgid "Bug reports and issues: please visit"
-msgstr "Pour remonter bogues et problèmes, merci de visiter"
+#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354
+msgid "Only sends to viewers of the applicable profile"
+msgstr "Envoie exclusivement aux visiteurs du profil concerné"
-#: ../../Zotlabs/Module/Siteinfo.php:79
-msgid "$projectname issues"
-msgstr "Problèmes $projectname"
+#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:356
+msgid "Name of thing e.g. something"
+msgstr "Nom de l'élément, p.ex. quelque-chose"
-#: ../../Zotlabs/Module/Siteinfo.php:80
-msgid ""
-"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot "
-"com"
-msgstr "Suggestions, demandes, etc. - merci de vous adresser à \"redmatrix\" à librelist - point com"
+#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357
+msgid "URL of thing (optional)"
+msgstr "URL de l'élément (facultatif)"
-#: ../../Zotlabs/Module/Siteinfo.php:82
-msgid "Site Administrators"
-msgstr "Administrateurs du site"
+#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:358
+msgid "URL for photo of thing (optional)"
+msgstr "URL d'une photo de l'élément (facultatif)"
+
+#: ../../Zotlabs/Module/Thing.php:349
+msgid "Add Thing to your Profile"
+msgstr "Ajouter l'élément à votre profil"
#: ../../Zotlabs/Module/Sources.php:37
msgid "Failed to create source. No channel selected."
@@ -6004,8 +6314,8 @@ msgstr "Source mise à jour."
msgid "*"
msgstr "*"
-#: ../../Zotlabs/Module/Sources.php:96 ../../include/widgets.php:630
-#: ../../include/features.php:71
+#: ../../Zotlabs/Module/Sources.php:96 ../../include/features.php:72
+#: ../../include/widgets.php:639
msgid "Channel Sources"
msgstr "Sources du canal"
@@ -6081,12 +6391,12 @@ msgstr "Aucune suggestion disponible. Si le site est récent, merci de re-tenter
msgid "Ignore/Hide"
msgstr "Ignorer/Cacher"
-#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:256
+#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263
msgid "post"
msgstr "publication"
-#: ../../Zotlabs/Module/Tagger.php:57 ../../include/text.php:1948
-#: ../../include/conversation.php:150
+#: ../../Zotlabs/Module/Tagger.php:57 ../../include/conversation.php:150
+#: ../../include/text.php:1929
msgid "comment"
msgstr "commentaire"
@@ -6107,131 +6417,110 @@ msgstr "Retirer une étiquette à l'élément"
msgid "Select a tag to remove: "
msgstr "Étiquette à retirer&nbsp;:"
-#: ../../Zotlabs/Module/Thing.php:114
-msgid "Thing updated"
-msgstr "Elément mis à jour"
-
-#: ../../Zotlabs/Module/Thing.php:166
-msgid "Object store: failed"
-msgstr "Stockage de l'objet&nbsp;: échec"
+#: ../../Zotlabs/Module/Webpages.php:191 ../../Zotlabs/Lib/Apps.php:218
+#: ../../include/nav.php:106 ../../include/conversation.php:1700
+msgid "Webpages"
+msgstr "Pages web"
-#: ../../Zotlabs/Module/Thing.php:170
-msgid "Thing added"
-msgstr "Elément ajouté"
+#: ../../Zotlabs/Module/Webpages.php:202 ../../include/page_widgets.php:44
+msgid "Actions"
+msgstr "Actions"
-#: ../../Zotlabs/Module/Thing.php:196
-#, php-format
-msgid "OBJ: %1$s %2$s %3$s"
-msgstr "OBJ: %1$s %2$s %3$s"
+#: ../../Zotlabs/Module/Webpages.php:203 ../../include/page_widgets.php:45
+msgid "Page Link"
+msgstr "Lien vers la page"
-#: ../../Zotlabs/Module/Thing.php:259
-msgid "Show Thing"
-msgstr "Montrer élément"
+#: ../../Zotlabs/Module/Webpages.php:204
+msgid "Page Title"
+msgstr "Titre de la page"
-#: ../../Zotlabs/Module/Thing.php:266
-msgid "item not found."
-msgstr "élément introuvable."
+#: ../../Zotlabs/Module/Wiki.php:34
+msgid "Not found"
+msgstr ""
-#: ../../Zotlabs/Module/Thing.php:299
-msgid "Edit Thing"
-msgstr "Modifier élément"
+#: ../../Zotlabs/Module/Wiki.php:92 ../../Zotlabs/Lib/Apps.php:219
+#: ../../include/nav.php:108 ../../include/conversation.php:1710
+#: ../../include/conversation.php:1713 ../../include/features.php:55
+msgid "Wiki"
+msgstr ""
-#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351
-msgid "Select a profile"
-msgstr "Choisissez un profil"
+#: ../../Zotlabs/Module/Wiki.php:93
+msgid "Sandbox"
+msgstr ""
-#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354
-msgid "Post an activity"
-msgstr "Publier une activité"
+#: ../../Zotlabs/Module/Wiki.php:95
+msgid ""
+"\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be"
+" saved*.\""
+msgstr ""
-#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354
-msgid "Only sends to viewers of the applicable profile"
-msgstr "Envoie exclusivement aux visiteurs du profil concerné"
+#: ../../Zotlabs/Module/Wiki.php:164
+msgid "Revision Comparison"
+msgstr ""
-#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:356
-msgid "Name of thing e.g. something"
-msgstr "Nom de l'élément, p.ex. quelque-chose"
+#: ../../Zotlabs/Module/Wiki.php:165
+msgid "Revert"
+msgstr ""
-#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357
-msgid "URL of thing (optional)"
-msgstr "URL de l'élément (facultatif)"
+#: ../../Zotlabs/Module/Wiki.php:192
+msgid "Enter the name of your new wiki:"
+msgstr ""
-#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:358
-msgid "URL for photo of thing (optional)"
-msgstr "URL d'une photo de l'élément (facultatif)"
+#: ../../Zotlabs/Module/Wiki.php:193
+msgid "Enter the name of the new page:"
+msgstr ""
-#: ../../Zotlabs/Module/Thing.php:349
-msgid "Add Thing to your Profile"
-msgstr "Ajouter l'élément à votre profil"
+#: ../../Zotlabs/Module/Wiki.php:194
+msgid "Enter the new name:"
+msgstr ""
-#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56
-msgid "Export Channel"
-msgstr "Exporter le canal"
+#: ../../Zotlabs/Module/Wiki.php:200 ../../include/conversation.php:1150
+msgid "Embed image from photo albums"
+msgstr ""
-#: ../../Zotlabs/Module/Uexport.php:57
-msgid ""
-"Export your basic channel information to a file. This acts as a backup of "
-"your connections, permissions, profile and basic data, which can be used to "
-"import your data to a new server hub, but does not contain your content."
-msgstr "Exportez les principales informations de votre canal dans un fichier. Celui-ci pourra servir de sauvegarde de vos contacts, permissions, profils et données de base. Il pourra être importé sur un nouveau hub/serveur, mais n'embarquera pas vos contenus."
+#: ../../Zotlabs/Module/Wiki.php:201 ../../include/conversation.php:1234
+msgid "Embed an image from your albums"
+msgstr ""
-#: ../../Zotlabs/Module/Uexport.php:58
-msgid "Export Content"
-msgstr "Exporter le contenu"
+#: ../../Zotlabs/Module/Wiki.php:203 ../../include/conversation.php:1236
+#: ../../include/conversation.php:1273
+msgid "OK"
+msgstr "OK"
-#: ../../Zotlabs/Module/Uexport.php:59
-msgid ""
-"Export your channel information and recent content to a JSON backup that can"
-" be restored or imported to another server hub. This backs up all of your "
-"connections, permissions, profile data and several months of posts. This "
-"file may be VERY large. Please be patient - it may take several minutes for"
-" this download to begin."
-msgstr "Exportez les informations du canal et les contenus récents dans un fichier JSON. Celui-ci contiendra toutes vos relations, permissions, profils, et plusieurs mois de publications. Ce fichier peut être TRÈS gros. Armez-vous de patience - plusieurs minutes peuvent s'écouler avant que le téléchargement ne commence."
+#: ../../Zotlabs/Module/Wiki.php:204 ../../include/conversation.php:1186
+msgid "Choose images to embed"
+msgstr ""
-#: ../../Zotlabs/Module/Uexport.php:60
-msgid "Export your posts from a given year."
-msgstr "Exporter vos publications d'une année en particulier"
+#: ../../Zotlabs/Module/Wiki.php:205 ../../include/conversation.php:1187
+msgid "Choose an album"
+msgstr ""
-#: ../../Zotlabs/Module/Uexport.php:62
-msgid ""
-"You may also export your posts and conversations for a particular year or "
-"month. Adjust the date in your browser location bar to select other dates. "
-"If the export fails (possibly due to memory exhaustion on your server hub), "
-"please try again selecting a more limited date range."
-msgstr "Vous pouvez également exporter vos publications et conversations pour une année ou un mois particulier. Ajustez la date dans la barre de votre navigateur pour sélectionner d'autres dates. Si l'export échoue (possible en cas de pénurie de mémoire sur le serveur de votre hub), essayez à nouveau en sélectionnant un intervalle de dates plus petit."
+#: ../../Zotlabs/Module/Wiki.php:206 ../../include/conversation.php:1188
+msgid "Choose a different album..."
+msgstr ""
-#: ../../Zotlabs/Module/Uexport.php:63
-#, php-format
-msgid ""
-"To select all posts for a given year, such as this year, visit <a "
-"href=\"%1$s\">%2$s</a>"
-msgstr "Pour sélectionner toutes les publications pour une année donnée, telle que cette année, visitez <a href=\"%1$s\">%2$s</a>"
+#: ../../Zotlabs/Module/Wiki.php:207 ../../include/conversation.php:1189
+msgid "Error getting album list"
+msgstr ""
-#: ../../Zotlabs/Module/Uexport.php:64
-#, php-format
-msgid ""
-"To select all posts for a given month, such as January of this year, visit "
-"<a href=\"%1$s\">%2$s</a>"
-msgstr "Pour sélectionner toutes les publications pour un mois donné, par exemple janvier, visitez <a href=\"%1$s\">%2$s</a>"
+#: ../../Zotlabs/Module/Wiki.php:208 ../../include/conversation.php:1190
+msgid "Error getting photo link"
+msgstr ""
-#: ../../Zotlabs/Module/Uexport.php:65
-#, 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 "Ces fichiers de contenu peuvent être importés ou restaurés en visitant <a href=\"%1$s\">%2$s</a> sur n'importe quel site hébergeant votre canal. Pour de meilleurs résultats merci de les importer par ordre chronologique (les plus anciens d'abord)."
+#: ../../Zotlabs/Module/Wiki.php:209 ../../include/conversation.php:1191
+msgid "Error getting album"
+msgstr ""
-#: ../../Zotlabs/Module/Viewconnections.php:62
+#: ../../Zotlabs/Module/Viewconnections.php:65
msgid "No connections."
msgstr "Aucun contact."
-#: ../../Zotlabs/Module/Viewconnections.php:75
+#: ../../Zotlabs/Module/Viewconnections.php:78
#, php-format
msgid "Visit %s's profile [%s]"
msgstr "Visiter le profil de %s [%s]"
-#: ../../Zotlabs/Module/Viewconnections.php:104
+#: ../../Zotlabs/Module/Viewconnections.php:107
msgid "View Connections"
msgstr "Voir les contacts"
@@ -6239,22 +6528,23 @@ msgstr "Voir les contacts"
msgid "Source of Item"
msgstr "Source de l'élément"
-#: ../../Zotlabs/Module/Webpages.php:184 ../../Zotlabs/Lib/Apps.php:217
-#: ../../include/nav.php:106 ../../include/conversation.php:1685
-msgid "Webpages"
-msgstr "Pages web"
+#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85
+msgid "Authorize application connection"
+msgstr "Autoriser l'application à se connecter"
-#: ../../Zotlabs/Module/Webpages.php:195 ../../include/page_widgets.php:41
-msgid "Actions"
-msgstr "Actions"
+#: ../../Zotlabs/Module/Api.php:62
+msgid "Return to your app and insert this Securty Code:"
+msgstr "Merci de retourner vers votre application, et d'y insérer ce Code de Sécurité&nbsp;:"
-#: ../../Zotlabs/Module/Webpages.php:196 ../../include/page_widgets.php:42
-msgid "Page Link"
-msgstr "Lien vers la page"
+#: ../../Zotlabs/Module/Api.php:72
+msgid "Please login to continue."
+msgstr "Merci de vous identifier pour continuer."
-#: ../../Zotlabs/Module/Webpages.php:197
-msgid "Page Title"
-msgstr "Titre de la page"
+#: ../../Zotlabs/Module/Api.php:87
+msgid ""
+"Do you want to authorize this application to access your posts and contacts,"
+" and/or create new posts for you?"
+msgstr "Voulez-vous autoriser cette application à accéder à vos publications et contacts, et/ou à publier en votre nom?"
#: ../../Zotlabs/Module/Xchan.php:10
msgid "Xchan Lookup"
@@ -6264,92 +6554,6 @@ msgstr "Recherche xchan"
msgid "Lookup xchan beginning with (or webbie): "
msgstr "Recherche xchan commençant par (ou adresse \"webbie\")&nbsp;:"
-#: ../../Zotlabs/Lib/Apps.php:204
-msgid "Site Admin"
-msgstr "Administrateur"
-
-#: ../../Zotlabs/Lib/Apps.php:205
-msgid "Bug Report"
-msgstr ""
-
-#: ../../Zotlabs/Lib/Apps.php:206
-msgid "View Bookmarks"
-msgstr ""
-
-#: ../../Zotlabs/Lib/Apps.php:207
-msgid "My Chatrooms"
-msgstr ""
-
-#: ../../Zotlabs/Lib/Apps.php:209
-msgid "Firefox Share"
-msgstr ""
-
-#: ../../Zotlabs/Lib/Apps.php:210
-msgid "Remote Diagnostics"
-msgstr ""
-
-#: ../../Zotlabs/Lib/Apps.php:211 ../../include/features.php:89
-msgid "Suggest Channels"
-msgstr "Suggérer des canaux"
-
-#: ../../Zotlabs/Lib/Apps.php:212 ../../include/nav.php:110
-#: ../../boot.php:1703
-msgid "Login"
-msgstr "Connexion"
-
-#: ../../Zotlabs/Lib/Apps.php:214 ../../include/nav.php:179
-msgid "Grid"
-msgstr "Réseau"
-
-#: ../../Zotlabs/Lib/Apps.php:218 ../../include/nav.php:182
-msgid "Channel Home"
-msgstr "Mon canal"
-
-#: ../../Zotlabs/Lib/Apps.php:221 ../../include/nav.php:201
-#: ../../include/conversation.php:1649 ../../include/conversation.php:1652
-msgid "Events"
-msgstr "Événements"
-
-#: ../../Zotlabs/Lib/Apps.php:222 ../../include/nav.php:167
-msgid "Directory"
-msgstr "Annuaire"
-
-#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:193
-msgid "Mail"
-msgstr "Messages"
-
-#: ../../Zotlabs/Lib/Apps.php:227 ../../include/nav.php:96
-msgid "Chat"
-msgstr "Clavardage"
-
-#: ../../Zotlabs/Lib/Apps.php:229
-msgid "Probe"
-msgstr "Sonder"
-
-#: ../../Zotlabs/Lib/Apps.php:230
-msgid "Suggest"
-msgstr "Suggérer"
-
-#: ../../Zotlabs/Lib/Apps.php:231
-msgid "Random Channel"
-msgstr "Un canal au hasard"
-
-#: ../../Zotlabs/Lib/Apps.php:232
-msgid "Invite"
-msgstr "Invitation"
-
-#: ../../Zotlabs/Lib/Apps.php:233 ../../include/widgets.php:1386
-msgid "Features"
-msgstr "Fonctionalités"
-
-#: ../../Zotlabs/Lib/Apps.php:235
-msgid "Post"
-msgstr "Envoyer"
-
-#: ../../Zotlabs/Lib/Apps.php:335
-msgid "Purchase"
-msgstr "Acheter"
-
#: ../../Zotlabs/Lib/Chatroom.php:27
msgid "Missing room name"
msgstr "Il manque le nom du salon"
@@ -6370,19 +6574,19 @@ msgstr "Salon introuvable."
msgid "Room is full"
msgstr "Le salon est plein"
-#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1823
+#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1882
msgid "$Projectname Notification"
msgstr "Notification $Projectname"
-#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1824
+#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1883
msgid "$projectname"
msgstr "$projectname"
-#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1826
+#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1885
msgid "Thank You,"
msgstr "Merci,"
-#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1828
+#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1887
#, php-format
msgid "%s Administrator"
msgstr "l'administrateur de %s"
@@ -6575,11 +6779,97 @@ msgstr "a publié un nouveau message"
msgid "commented on %s's post"
msgstr "a commenté la publication de %s"
-#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:664
+#: ../../Zotlabs/Lib/Apps.php:205
+msgid "Site Admin"
+msgstr "Administrateur"
+
+#: ../../Zotlabs/Lib/Apps.php:206
+msgid "Bug Report"
+msgstr ""
+
+#: ../../Zotlabs/Lib/Apps.php:207
+msgid "View Bookmarks"
+msgstr ""
+
+#: ../../Zotlabs/Lib/Apps.php:208
+msgid "My Chatrooms"
+msgstr ""
+
+#: ../../Zotlabs/Lib/Apps.php:210
+msgid "Firefox Share"
+msgstr ""
+
+#: ../../Zotlabs/Lib/Apps.php:211
+msgid "Remote Diagnostics"
+msgstr ""
+
+#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:90
+msgid "Suggest Channels"
+msgstr "Suggérer des canaux"
+
+#: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:112
+#: ../../boot.php:1704
+msgid "Login"
+msgstr "Connexion"
+
+#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:181
+msgid "Grid"
+msgstr "Réseau"
+
+#: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:184
+msgid "Channel Home"
+msgstr "Mon canal"
+
+#: ../../Zotlabs/Lib/Apps.php:223 ../../include/nav.php:203
+#: ../../include/conversation.php:1664 ../../include/conversation.php:1667
+msgid "Events"
+msgstr "Événements"
+
+#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:169
+msgid "Directory"
+msgstr "Annuaire"
+
+#: ../../Zotlabs/Lib/Apps.php:226 ../../include/nav.php:195
+msgid "Mail"
+msgstr "Messages"
+
+#: ../../Zotlabs/Lib/Apps.php:229 ../../include/nav.php:96
+msgid "Chat"
+msgstr "Clavardage"
+
+#: ../../Zotlabs/Lib/Apps.php:231
+msgid "Probe"
+msgstr "Sonder"
+
+#: ../../Zotlabs/Lib/Apps.php:232
+msgid "Suggest"
+msgstr "Suggérer"
+
+#: ../../Zotlabs/Lib/Apps.php:233
+msgid "Random Channel"
+msgstr "Un canal au hasard"
+
+#: ../../Zotlabs/Lib/Apps.php:234
+msgid "Invite"
+msgstr "Invitation"
+
+#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1480
+msgid "Features"
+msgstr "Fonctionalités"
+
+#: ../../Zotlabs/Lib/Apps.php:237
+msgid "Post"
+msgstr "Envoyer"
+
+#: ../../Zotlabs/Lib/Apps.php:339
+msgid "Purchase"
+msgstr "Acheter"
+
+#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:667
msgid "Private Message"
msgstr "Message Privé"
-#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:656
+#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:659
msgid "Select"
msgstr "Sélectionner"
@@ -6627,11 +6917,11 @@ msgstr "(Dés)activer l'étoile"
msgid "starred"
msgstr "mis en avant"
-#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:671
+#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:674
msgid "Message signature validated"
msgstr "Signature du message validée"
-#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:672
+#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:675
msgid "Message signature incorrect"
msgstr "Signature du message incorrecte"
@@ -6687,17 +6977,17 @@ msgstr "Mur-à-mur"
msgid "via Wall-To-Wall:"
msgstr "par Mur-à-mur&nbsp;:"
-#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:719
+#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:722
#, php-format
msgid "from %s"
msgstr "de %s"
-#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:722
+#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:725
#, php-format
msgid "last edited: %s"
msgstr "dernière modification&nbsp;: %s"
-#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:723
+#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:726
#, php-format
msgid "Expires: %s"
msgstr "Expire&nbsp;: %s"
@@ -6715,26 +7005,27 @@ msgid "Mark all seen"
msgstr "Tout marquer comme vu"
#: ../../Zotlabs/Lib/ThreadItem.php:421 ../../include/js_strings.php:7
-msgid "[+] show all"
-msgstr "[+] voir tous"
+#, php-format
+msgid "%s show all"
+msgstr ""
-#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1215
+#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1226
msgid "Bold"
msgstr "Gras"
-#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1216
+#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1227
msgid "Italic"
msgstr "Italique"
-#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1217
+#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1228
msgid "Underline"
msgstr "Souligné"
-#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1218
+#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1229
msgid "Quote"
msgstr "Citation"
-#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1219
+#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1230
msgid "Code"
msgstr "Code"
@@ -6750,840 +7041,122 @@ msgstr "Insérer un lien"
msgid "Video"
msgstr "Vidéo"
-#: ../../include/Import/import_diaspora.php:16
-msgid "No username found in import file."
-msgstr "Aucun nom d'utilisateur dans le fichier d'import."
-
-#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:50
-msgid "Unable to create a unique channel address. Import failed."
-msgstr "Impossible de créer une adresse de canal unique. Echec de l'import."
-
-#: ../../include/dba/dba_driver.php:171
-#, php-format
-msgid "Cannot locate DNS info for database server '%s'"
-msgstr "Impossible de trouver les infos DNS du serveur de BDD '%s'"
-
-#: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270
-#: ../../include/widgets.php:46 ../../include/widgets.php:429
-#: ../../include/contact_widgets.php:91
-msgid "Categories"
-msgstr "Catégories"
-
-#: ../../include/taxonomy.php:228 ../../include/taxonomy.php:249
-msgid "Tags"
-msgstr "Étiquettes"
-
-#: ../../include/taxonomy.php:293
-msgid "Keywords"
-msgstr "Mots-clefs"
-
-#: ../../include/taxonomy.php:314
-msgid "have"
-msgstr "ont"
-
-#: ../../include/taxonomy.php:314
-msgid "has"
-msgstr "a"
-
-#: ../../include/taxonomy.php:315
-msgid "want"
-msgstr "veulent"
-
-#: ../../include/taxonomy.php:315
-msgid "wants"
-msgstr "veut"
-
-#: ../../include/taxonomy.php:316
-msgid "likes"
-msgstr "aime"
-
-#: ../../include/taxonomy.php:317
-msgid "dislikes"
-msgstr "n'aime pas"
-
-#: ../../include/event.php:22 ../../include/event.php:69
-#: ../../include/bb2diaspora.php:485
-msgid "l F d, Y \\@ g:i A"
-msgstr "l d F Y \\à G\\hi"
-
-#: ../../include/event.php:30 ../../include/event.php:73
-#: ../../include/bb2diaspora.php:491
-msgid "Starts:"
-msgstr "Début&nbsp;:"
-
-#: ../../include/event.php:40 ../../include/event.php:77
-#: ../../include/bb2diaspora.php:499
-msgid "Finishes:"
-msgstr "Fin&nbsp;:"
-
-#: ../../include/event.php:812
-msgid "This event has been added to your calendar."
-msgstr "Cet évènement a été ajouté dans votre calendrier."
-
-#: ../../include/event.php:1012
-msgid "Not specified"
-msgstr "Non spécifié"
-
-#: ../../include/event.php:1013
-msgid "Needs Action"
-msgstr "Besoin d'une action"
-
-#: ../../include/event.php:1014
-msgid "Completed"
-msgstr "Terminé"
-
-#: ../../include/event.php:1015
-msgid "In Process"
-msgstr "En cours"
-
-#: ../../include/event.php:1016
-msgid "Cancelled"
-msgstr "Annulé"
-
-#: ../../include/import.php:29
-msgid ""
-"Cannot create a duplicate channel identifier on this system. Import failed."
-msgstr "L'import a échoué. Un canal existe déjà avec ce nom"
-
-#: ../../include/import.php:76
-msgid "Channel clone failed. Import failed."
-msgstr "Echec du clonage du canal. Echec de l'impot."
-
-#: ../../include/items.php:892 ../../include/items.php:937
-msgid "(Unknown)"
-msgstr "(Inconnu)"
-
-#: ../../include/items.php:1136
-msgid "Visible to anybody on the internet."
-msgstr "Visible pour tout le monde sur internet."
-
-#: ../../include/items.php:1138
-msgid "Visible to you only."
-msgstr "Visible pour vous seulement."
-
-#: ../../include/items.php:1140
-msgid "Visible to anybody in this network."
-msgstr "Visible pour tout le monde sur ce réseau."
-
-#: ../../include/items.php:1142
-msgid "Visible to anybody authenticated."
-msgstr "Visible aux utilisateurs authentifiés."
-
-#: ../../include/items.php:1144
-#, php-format
-msgid "Visible to anybody on %s."
-msgstr "Visible pour tous sur %s."
-
-#: ../../include/items.php:1146
-msgid "Visible to all connections."
-msgstr "Visible pour tous les contacts."
-
-#: ../../include/items.php:1148
-msgid "Visible to approved connections."
-msgstr "Visible aux contacts approuvés."
-
-#: ../../include/items.php:1150
-msgid "Visible to specific connections."
-msgstr "Visible pour certains contacts."
-
-#: ../../include/items.php:3909
-msgid "Privacy group is empty."
-msgstr "Groupe d'accès vide."
-
-#: ../../include/items.php:3916
-#, php-format
-msgid "Privacy group: %s"
-msgstr "Groupe d'accès&nbsp;: %s"
-
-#: ../../include/items.php:3928
-msgid "Connection not found."
-msgstr "Contact non trouvé."
-
-#: ../../include/items.php:4277
-msgid "profile photo"
-msgstr "photo de profil"
-
-#: ../../include/message.php:20
-msgid "No recipient provided."
-msgstr "Pas de destinataire."
-
-#: ../../include/message.php:25
-msgid "[no subject]"
-msgstr "[sans objet]"
-
-#: ../../include/message.php:45
-msgid "Unable to determine sender."
-msgstr "Impossible de déterminer l'émetteur."
-
-#: ../../include/message.php:222
-msgid "Stored post could not be verified."
-msgstr "Le message stocké n'a pas pu être vérifié."
-
-#: ../../include/text.php:428
-msgid "prev"
-msgstr "préc."
-
-#: ../../include/text.php:430
-msgid "first"
-msgstr "premier"
-
-#: ../../include/text.php:459
-msgid "last"
-msgstr "dernier"
-
-#: ../../include/text.php:462
-msgid "next"
-msgstr "Suivant"
-
-#: ../../include/text.php:472
-msgid "older"
-msgstr "plus ancien"
-
-#: ../../include/text.php:474
-msgid "newer"
-msgstr "plus récent"
-
-#: ../../include/text.php:863
-msgid "No connections"
-msgstr "Pas de relations."
-
-#: ../../include/text.php:888
-#, php-format
-msgid "View all %s connections"
-msgstr "Voir les %s contacts"
-
-#: ../../include/text.php:1033 ../../include/text.php:1038
-msgid "poke"
-msgstr "tapoter"
-
-#: ../../include/text.php:1033 ../../include/text.php:1038
-#: ../../include/conversation.php:243
-msgid "poked"
-msgstr "a tapoté"
-
-#: ../../include/text.php:1039
-msgid "ping"
-msgstr "ping"
-
-#: ../../include/text.php:1039
-msgid "pinged"
-msgstr "pingé"
-
-#: ../../include/text.php:1040
-msgid "prod"
-msgstr "encourager"
-
-#: ../../include/text.php:1040
-msgid "prodded"
-msgstr "encouragé"
-
-#: ../../include/text.php:1041
-msgid "slap"
-msgstr "giffler"
-
-#: ../../include/text.php:1041
-msgid "slapped"
-msgstr "gifflé(e)"
-
-#: ../../include/text.php:1042
-msgid "finger"
-msgstr "pointer"
-
-#: ../../include/text.php:1042
-msgid "fingered"
-msgstr "pointé"
-
-#: ../../include/text.php:1043
-msgid "rebuff"
-msgstr "rejetter"
-
-#: ../../include/text.php:1043
-msgid "rebuffed"
-msgstr "rejeté"
-
-#: ../../include/text.php:1055
-msgid "happy"
-msgstr "heureux"
-
-#: ../../include/text.php:1056
-msgid "sad"
-msgstr "triste"
-
-#: ../../include/text.php:1057
-msgid "mellow"
-msgstr "mélancolique"
-
-#: ../../include/text.php:1058
-msgid "tired"
-msgstr "fatigué"
-
-#: ../../include/text.php:1059
-msgid "perky"
-msgstr "impertinent"
-
-#: ../../include/text.php:1060
-msgid "angry"
-msgstr "en colère"
-
-#: ../../include/text.php:1061
-msgid "stupefied"
-msgstr "stupéfait"
-
-#: ../../include/text.php:1062
-msgid "puzzled"
-msgstr "perplexe"
-
-#: ../../include/text.php:1063
-msgid "interested"
-msgstr "intéressé"
-
-#: ../../include/text.php:1064
-msgid "bitter"
-msgstr "amer"
-
-#: ../../include/text.php:1065
-msgid "cheerful"
-msgstr "plein d'entrain"
-
-#: ../../include/text.php:1066
-msgid "alive"
-msgstr "vivant"
-
-#: ../../include/text.php:1067
-msgid "annoyed"
-msgstr "agaçé"
-
-#: ../../include/text.php:1068
-msgid "anxious"
-msgstr "anxieux"
-
-#: ../../include/text.php:1069
-msgid "cranky"
-msgstr "énervé"
-
-#: ../../include/text.php:1070
-msgid "disturbed"
-msgstr "perturbé"
-
-#: ../../include/text.php:1071
-msgid "frustrated"
-msgstr "frustré"
-
-#: ../../include/text.php:1072
-msgid "depressed"
-msgstr "déprimé"
-
-#: ../../include/text.php:1073
-msgid "motivated"
-msgstr "motivé"
-
-#: ../../include/text.php:1074
-msgid "relaxed"
-msgstr "détendu"
-
-#: ../../include/text.php:1075
-msgid "surprised"
-msgstr "surpris"
-
-#: ../../include/text.php:1257 ../../include/js_strings.php:70
-msgid "Monday"
-msgstr "Lundi"
-
-#: ../../include/text.php:1257 ../../include/js_strings.php:71
-msgid "Tuesday"
-msgstr "Mardi"
-
-#: ../../include/text.php:1257 ../../include/js_strings.php:72
-msgid "Wednesday"
-msgstr "Mercredi"
-
-#: ../../include/text.php:1257 ../../include/js_strings.php:73
-msgid "Thursday"
-msgstr "Jeudi"
-
-#: ../../include/text.php:1257 ../../include/js_strings.php:74
-msgid "Friday"
-msgstr "Vendredi"
-
-#: ../../include/text.php:1257 ../../include/js_strings.php:75
-msgid "Saturday"
-msgstr "Samedi"
-
-#: ../../include/text.php:1257 ../../include/js_strings.php:69
-msgid "Sunday"
-msgstr "Dimanche"
-
-#: ../../include/text.php:1261 ../../include/js_strings.php:45
-msgid "January"
-msgstr "Janvier"
-
-#: ../../include/text.php:1261 ../../include/js_strings.php:46
-msgid "February"
-msgstr "Février"
-
-#: ../../include/text.php:1261 ../../include/js_strings.php:47
-msgid "March"
-msgstr "Mars"
-
-#: ../../include/text.php:1261 ../../include/js_strings.php:48
-msgid "April"
-msgstr "Avril"
-
-#: ../../include/text.php:1261
-msgid "May"
-msgstr "Mai"
-
-#: ../../include/text.php:1261 ../../include/js_strings.php:50
-msgid "June"
-msgstr "Juin"
-
-#: ../../include/text.php:1261 ../../include/js_strings.php:51
-msgid "July"
-msgstr "Juillet"
-
-#: ../../include/text.php:1261 ../../include/js_strings.php:52
-msgid "August"
-msgstr "Août"
-
-#: ../../include/text.php:1261 ../../include/js_strings.php:53
-msgid "September"
-msgstr "Septembre"
-
-#: ../../include/text.php:1261 ../../include/js_strings.php:54
-msgid "October"
-msgstr "Octobre"
-
-#: ../../include/text.php:1261 ../../include/js_strings.php:55
-msgid "November"
-msgstr "Novembre"
-
-#: ../../include/text.php:1261 ../../include/js_strings.php:56
-msgid "December"
-msgstr "Décembre"
-
-#: ../../include/text.php:1338 ../../include/text.php:1342
-msgid "Unknown Attachment"
-msgstr "Pièce jointe inconnue"
-
-#: ../../include/text.php:1344
-msgid "unknown"
-msgstr "Inconnu"
-
-#: ../../include/text.php:1380
-msgid "remove category"
-msgstr "supprimer la catégorie"
-
-#: ../../include/text.php:1457
-msgid "remove from file"
-msgstr "retirer du fichier"
-
-#: ../../include/text.php:1753 ../../include/text.php:1824
-msgid "default"
-msgstr "défaut"
-
-#: ../../include/text.php:1761
-msgid "Page layout"
-msgstr "Mise en page"
-
-#: ../../include/text.php:1761
-msgid "You can create your own with the layouts tool"
-msgstr "Créez les vôtres avec les outils de mise en page"
-
-#: ../../include/text.php:1803
-msgid "Page content type"
-msgstr "Type de contenu de la page"
-
-#: ../../include/text.php:1836
-msgid "Select an alternate language"
-msgstr "Choisir une langue alternative"
-
-#: ../../include/text.php:1953
-msgid "activity"
-msgstr "activité"
-
-#: ../../include/text.php:2262
-msgid "Design Tools"
-msgstr "Outils de conception"
-
-#: ../../include/text.php:2268
-msgid "Pages"
-msgstr "Pages"
-
-#: ../../include/widgets.php:103
-msgid "System"
-msgstr "Système"
+#: ../../Zotlabs/Lib/PermissionDescription.php:31
+#: ../../include/acl_selectors.php:230
+msgid "Visible to your default audience"
+msgstr "Visible pour vos contacts seulement"
-#: ../../include/widgets.php:106
-msgid "New App"
+#: ../../Zotlabs/Lib/PermissionDescription.php:106
+#: ../../include/acl_selectors.php:266
+msgid "Only me"
msgstr ""
-#: ../../include/widgets.php:154
-msgid "Suggestions"
-msgstr "Suggestions"
+#: ../../Zotlabs/Lib/PermissionDescription.php:107
+msgid "Public"
+msgstr "Public"
-#: ../../include/widgets.php:155
-msgid "See more..."
-msgstr "Voir plus..."
+#: ../../Zotlabs/Lib/PermissionDescription.php:108
+msgid "Anybody in the $Projectname network"
+msgstr ""
-#: ../../include/widgets.php:175
+#: ../../Zotlabs/Lib/PermissionDescription.php:109
#, php-format
-msgid "You have %1$.0f of %2$.0f allowed connections."
-msgstr "Vous avez %1$.0f sur %2$.0f contacts autorisés."
-
-#: ../../include/widgets.php:181
-msgid "Add New Connection"
-msgstr "Ajouter un nouveau contact"
-
-#: ../../include/widgets.php:182
-msgid "Enter channel address"
-msgstr "Saisissez l'adresse du canal"
-
-#: ../../include/widgets.php:183
-msgid "Examples: bob@example.com, https://example.com/barbara"
-msgstr "Exemples&nbsp;: pierre@exemple.com, https://exemple.com/sophie"
-
-#: ../../include/widgets.php:199
-msgid "Notes"
-msgstr "Notes"
-
-#: ../../include/widgets.php:273
-msgid "Remove term"
-msgstr "Retirer le terme"
-
-#: ../../include/widgets.php:281 ../../include/features.php:84
-msgid "Saved Searches"
-msgstr "Recherches sauvegardées"
-
-#: ../../include/widgets.php:282 ../../include/group.php:316
-msgid "add"
-msgstr "ajouter"
-
-#: ../../include/widgets.php:310 ../../include/contact_widgets.php:53
-#: ../../include/features.php:98
-msgid "Saved Folders"
-msgstr "Dossiers sauvegardés"
-
-#: ../../include/widgets.php:313 ../../include/widgets.php:432
-#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94
-msgid "Everything"
-msgstr "Tout"
-
-#: ../../include/widgets.php:354
-msgid "Archives"
-msgstr "Archives"
-
-#: ../../include/widgets.php:516
-msgid "Refresh"
-msgstr "Actualiser"
-
-#: ../../include/widgets.php:556
-msgid "Account settings"
-msgstr "Paramètres du compte"
-
-#: ../../include/widgets.php:562
-msgid "Channel settings"
-msgstr "Paramètres du canal"
-
-#: ../../include/widgets.php:571
-msgid "Additional features"
-msgstr "Fonctionnalités supplémentaires"
-
-#: ../../include/widgets.php:578
-msgid "Feature/Addon settings"
-msgstr "Paramètres des extensions/greffons"
-
-#: ../../include/widgets.php:584
-msgid "Display settings"
-msgstr "Paramètres d'affichage"
-
-#: ../../include/widgets.php:591
-msgid "Manage locations"
+msgid "Any account on %s"
msgstr ""
-#: ../../include/widgets.php:600
-msgid "Export channel"
-msgstr "Exporter le canal"
-
-#: ../../include/widgets.php:607
-msgid "Connected apps"
-msgstr "Applications connectées"
-
-#: ../../include/widgets.php:622
-msgid "Premium Channel Settings"
-msgstr "Paramètres de canal VIP"
-
-#: ../../include/widgets.php:651
-msgid "Private Mail Menu"
-msgstr "Menu des messages privés"
-
-#: ../../include/widgets.php:653
-msgid "Combined View"
-msgstr "Vue combinée"
-
-#: ../../include/widgets.php:658 ../../include/nav.php:196
-msgid "Inbox"
-msgstr "Boîte de réception"
-
-#: ../../include/widgets.php:663 ../../include/nav.php:197
-msgid "Outbox"
-msgstr "Boîte d'envoi"
-
-#: ../../include/widgets.php:668 ../../include/nav.php:198
-msgid "New Message"
-msgstr "Nouveau message"
-
-#: ../../include/widgets.php:685 ../../include/widgets.php:697
-msgid "Conversations"
-msgstr "Conversations"
-
-#: ../../include/widgets.php:689
-msgid "Received Messages"
-msgstr "Messages reçus"
-
-#: ../../include/widgets.php:693
-msgid "Sent Messages"
-msgstr "Messages envoyés"
-
-#: ../../include/widgets.php:707
-msgid "No messages."
-msgstr "Pas de message."
-
-#: ../../include/widgets.php:725
-msgid "Delete conversation"
-msgstr "Supprimer la conversation"
-
-#: ../../include/widgets.php:751
-msgid "Events Menu"
-msgstr "Menu Evènements"
-
-#: ../../include/widgets.php:752
-msgid "Day View"
-msgstr "Vue Jour"
-
-#: ../../include/widgets.php:753
-msgid "Week View"
-msgstr "Vue Semaine"
-
-#: ../../include/widgets.php:754
-msgid "Month View"
-msgstr "Vue Mois"
-
-#: ../../include/widgets.php:766
-msgid "Events Tools"
-msgstr "Outils Evènements"
-
-#: ../../include/widgets.php:767
-msgid "Export Calendar"
-msgstr "Exporter le calendrier"
-
-#: ../../include/widgets.php:768
-msgid "Import Calendar"
-msgstr "Importer un calendrier"
-
-#: ../../include/widgets.php:842 ../../include/conversation.php:1662
-#: ../../include/conversation.php:1665
-msgid "Chatrooms"
-msgstr "Salons de clavardage"
-
-#: ../../include/widgets.php:846
-msgid "Overview"
+#: ../../Zotlabs/Lib/PermissionDescription.php:110
+msgid "Any of my connections"
msgstr ""
-#: ../../include/widgets.php:853
-msgid "Chat Members"
+#: ../../Zotlabs/Lib/PermissionDescription.php:111
+msgid "Only connections I specifically allow"
msgstr ""
-#: ../../include/widgets.php:876
-msgid "Bookmarked Chatrooms"
-msgstr "Salons favoris"
-
-#: ../../include/widgets.php:899
-msgid "Suggested Chatrooms"
-msgstr "Salons suggérés"
-
-#: ../../include/widgets.php:1044 ../../include/widgets.php:1156
-msgid "photo/image"
-msgstr "photo/image"
-
-#: ../../include/widgets.php:1099
-msgid "Click to show more"
-msgstr "Cliquer pour voir plus"
-
-#: ../../include/widgets.php:1250
-msgid "Rating Tools"
-msgstr "Outils d'évaluation"
-
-#: ../../include/widgets.php:1254 ../../include/widgets.php:1256
-msgid "Rate Me"
-msgstr "M'évaluer"
-
-#: ../../include/widgets.php:1259
-msgid "View Ratings"
-msgstr "Voir mes évaluations"
-
-#: ../../include/widgets.php:1316
-msgid "Forums"
-msgstr "Membres du forum"
-
-#: ../../include/widgets.php:1345
-msgid "Tasks"
-msgstr "Tâches"
-
-#: ../../include/widgets.php:1354
-msgid "Documentation"
-msgstr "Documentation"
-
-#: ../../include/widgets.php:1356
-msgid "Project/Site Information"
-msgstr "Information sur le site/projet"
-
-#: ../../include/widgets.php:1357
-msgid "For Members"
-msgstr "Pour les membres"
-
-#: ../../include/widgets.php:1358
-msgid "For Administrators"
-msgstr "Pour les administrateurs"
-
-#: ../../include/widgets.php:1359
-msgid "For Developers"
-msgstr "Pour les développeurs"
-
-#: ../../include/widgets.php:1383 ../../include/widgets.php:1421
-msgid "Member registrations waiting for confirmation"
+#: ../../Zotlabs/Lib/PermissionDescription.php:112
+msgid "Anybody authenticated (could include visitors from other networks)"
msgstr ""
-#: ../../include/widgets.php:1389
-msgid "Inspect queue"
-msgstr "Analyser la file d'attente"
-
-#: ../../include/widgets.php:1391
-msgid "DB updates"
-msgstr "Mises à jour BDD"
-
-#: ../../include/widgets.php:1416 ../../include/nav.php:216
-msgid "Admin"
-msgstr "Administrateur"
-
-#: ../../include/widgets.php:1417
-msgid "Plugin Features"
-msgstr "Fonctionnalités des greffons"
-
-#: ../../include/follow.php:27
-msgid "Channel is blocked on this site."
-msgstr "Ce canal est bloqué sur ce site."
-
-#: ../../include/follow.php:32
-msgid "Channel location missing."
-msgstr "Emplacement du canal introuvable."
-
-#: ../../include/follow.php:81
-msgid "Response from remote channel was incomplete."
-msgstr "La réponse du canal distant était incomplète."
-
-#: ../../include/follow.php:98
-msgid "Channel was deleted and no longer exists."
-msgstr "Le canal a été supprimé et n'existe plus."
-
-#: ../../include/follow.php:154 ../../include/follow.php:190
-msgid "Protocol disabled."
-msgstr "Protocole désactivé."
+#: ../../Zotlabs/Lib/PermissionDescription.php:113
+msgid "Any connections including those who haven't yet been approved"
+msgstr ""
-#: ../../include/follow.php:178
-msgid "Channel discovery failed."
-msgstr "La tentative d'accéder au canal a échoué."
+#: ../../Zotlabs/Lib/PermissionDescription.php:152
+msgid ""
+"This is your default setting for the audience of your normal stream, and "
+"posts."
+msgstr ""
-#: ../../include/follow.php:216
-msgid "Cannot connect to yourself."
-msgstr "Ne peut pas se connecter à vous."
+#: ../../Zotlabs/Lib/PermissionDescription.php:153
+msgid ""
+"This is your default setting for who can view your default channel profile"
+msgstr ""
-#: ../../include/bookmarks.php:35
-#, php-format
-msgid "%1$s's bookmarks"
-msgstr "Favoris de %1$s"
+#: ../../Zotlabs/Lib/PermissionDescription.php:154
+msgid "This is your default setting for who can view your connections"
+msgstr ""
-#: ../../include/api.php:1336
-msgid "Public Timeline"
-msgstr "Fil public"
+#: ../../Zotlabs/Lib/PermissionDescription.php:155
+msgid ""
+"This is your default setting for who can view your file storage and photos"
+msgstr ""
-#: ../../include/bbcode.php:123 ../../include/bbcode.php:844
-#: ../../include/bbcode.php:847 ../../include/bbcode.php:852
-#: ../../include/bbcode.php:855 ../../include/bbcode.php:858
-#: ../../include/bbcode.php:861 ../../include/bbcode.php:866
-#: ../../include/bbcode.php:869 ../../include/bbcode.php:874
-#: ../../include/bbcode.php:877 ../../include/bbcode.php:880
-#: ../../include/bbcode.php:883
-msgid "Image/photo"
-msgstr "Image/photo"
+#: ../../Zotlabs/Lib/PermissionDescription.php:156
+msgid "This is your default setting for the audience of your webpages"
+msgstr ""
-#: ../../include/bbcode.php:162 ../../include/bbcode.php:894
-msgid "Encrypted content"
-msgstr "Contenu chiffré"
+#: ../../include/Import/import_diaspora.php:16
+msgid "No username found in import file."
+msgstr "Aucun nom d'utilisateur dans le fichier d'import."
-#: ../../include/bbcode.php:178
-#, php-format
-msgid "Install %s element: "
-msgstr "Installer %s élément"
+#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:51
+msgid "Unable to create a unique channel address. Import failed."
+msgstr "Impossible de créer une adresse de canal unique. Echec de l'import."
-#: ../../include/bbcode.php:182
+#: ../../include/dba/dba_driver.php:171
#, php-format
-msgid ""
-"This post contains an installable %s element, however you lack permissions "
-"to install it on this site."
-msgstr "Ce message contient un élément installable %s, mais vous n'avez pas l'autorisation de l'installer sur ce site."
+msgid "Cannot locate DNS info for database server '%s'"
+msgstr "Impossible de trouver les infos DNS du serveur de BDD '%s'"
-#: ../../include/bbcode.php:254
+#: ../../include/photos.php:114
#, php-format
-msgid "%1$s wrote the following %2$s %3$s"
-msgstr "%1$s a écrit %2$s qui suit %3$s"
-
-#: ../../include/bbcode.php:331 ../../include/bbcode.php:339
-msgid "Click to open/close"
-msgstr "Cliquer pour ouvrir/fermer"
-
-#: ../../include/bbcode.php:339
-msgid "spoiler"
-msgstr ""
-
-#: ../../include/bbcode.php:585
-msgid "Different viewers will see this text differently"
-msgstr "Ce texte aura un rendu différent en fonction des utilisateurs"
+msgid "Image exceeds website size limit of %lu bytes"
+msgstr "L'image dépasse la taille limite de %lu octets"
-#: ../../include/bbcode.php:832
-msgid "$1 wrote:"
-msgstr "$1 a écrit&nbsp;:"
+#: ../../include/photos.php:121
+msgid "Image file is empty."
+msgstr "L'image est vide."
-#: ../../include/dir_fns.php:141
-msgid "Directory Options"
-msgstr "Options d'annuaire"
+#: ../../include/photos.php:259
+msgid "Photo storage failed."
+msgstr "Le stockage de l'image a échoué."
-#: ../../include/dir_fns.php:143
-msgid "Safe Mode"
-msgstr "Mode sûr"
+#: ../../include/photos.php:299
+msgid "a new photo"
+msgstr "une nouvelle photo"
-#: ../../include/dir_fns.php:144
-msgid "Public Forums Only"
-msgstr "Les forums publics uniquement"
+#: ../../include/photos.php:303
+#, php-format
+msgctxt "photo_upload"
+msgid "%1$s posted %2$s to %3$s"
+msgstr "%1$s a publié %2$s pour %3$s"
-#: ../../include/dir_fns.php:145
-msgid "This Website Only"
-msgstr "Ce site uniquement"
+#: ../../include/photos.php:506 ../../include/conversation.php:1650
+msgid "Photo Albums"
+msgstr "Albums photo"
-#: ../../include/security.php:383
-msgid ""
-"The form security token was not correct. This probably happened because the "
-"form has been opened for too long (>3 hours) before submitting it."
-msgstr "Le formulaire n'est plus sécurisé, probablement parce qu'il est ouvert depuis trop longtemps (plus de 3 heures)."
+#: ../../include/photos.php:510
+msgid "Upload New Photos"
+msgstr "Ajouter des photos"
-#: ../../include/nav.php:82 ../../include/nav.php:113 ../../boot.php:1702
+#: ../../include/nav.php:82 ../../include/nav.php:115 ../../boot.php:1703
msgid "Logout"
msgstr "Déconnexion"
-#: ../../include/nav.php:82 ../../include/nav.php:113
+#: ../../include/nav.php:82 ../../include/nav.php:115
msgid "End this session"
msgstr "Mettre fin à la session"
-#: ../../include/nav.php:85 ../../include/nav.php:144
+#: ../../include/nav.php:85 ../../include/nav.php:146
msgid "Home"
msgstr "Mon canal"
@@ -7599,7 +7172,7 @@ msgstr "Votre profil"
msgid "Manage/Edit profiles"
msgstr "Gérer/modifier les profils"
-#: ../../include/nav.php:90 ../../include/channel.php:941
+#: ../../include/nav.php:90 ../../include/channel.php:980
msgid "Edit Profile"
msgstr "Éditeur de profil"
@@ -7619,7 +7192,7 @@ msgstr "Vos fichiers"
msgid "Your chatrooms"
msgstr "Vos salons"
-#: ../../include/nav.php:102 ../../include/conversation.php:1675
+#: ../../include/nav.php:102 ../../include/conversation.php:1690
msgid "Bookmarks"
msgstr "Favoris"
@@ -7631,181 +7204,408 @@ msgstr "Vos favoris"
msgid "Your webpages"
msgstr "Vos pages web"
-#: ../../include/nav.php:110
+#: ../../include/nav.php:108
+msgid "Your wiki"
+msgstr ""
+
+#: ../../include/nav.php:112
msgid "Sign in"
msgstr "Connexion"
-#: ../../include/nav.php:127
+#: ../../include/nav.php:129
#, php-format
msgid "%s - click to logout"
msgstr "%s - cliquer ici pour déconnecter"
-#: ../../include/nav.php:130
+#: ../../include/nav.php:132
msgid "Remote authentication"
msgstr "Authentification distante"
-#: ../../include/nav.php:130
+#: ../../include/nav.php:132
msgid "Click to authenticate to your home hub"
msgstr "S'authentifier auprès de votre hub principal"
-#: ../../include/nav.php:144
+#: ../../include/nav.php:146
msgid "Home Page"
msgstr "Page d'accueil"
-#: ../../include/nav.php:147
+#: ../../include/nav.php:149
msgid "Create an account"
msgstr "Créer un compte"
-#: ../../include/nav.php:159
+#: ../../include/nav.php:161
msgid "Help and documentation"
msgstr "Aide et documentation"
-#: ../../include/nav.php:163
+#: ../../include/nav.php:165
msgid "Applications, utilities, links, games"
msgstr "Applications, utilitaires, liens, jeux"
-#: ../../include/nav.php:165
+#: ../../include/nav.php:167
msgid "Search site @name, #tag, ?docs, content"
msgstr "Recherche @nom, #tag, contenu"
-#: ../../include/nav.php:167
+#: ../../include/nav.php:169
msgid "Channel Directory"
msgstr "Annuaire des canaux"
-#: ../../include/nav.php:179
+#: ../../include/nav.php:181
msgid "Your grid"
msgstr "Votre réseau"
-#: ../../include/nav.php:180
+#: ../../include/nav.php:182
msgid "Mark all grid notifications seen"
msgstr "Marquer toutes les notifications du réseau comme vues"
-#: ../../include/nav.php:182
+#: ../../include/nav.php:184
msgid "Channel home"
msgstr "Mon canal"
-#: ../../include/nav.php:183
+#: ../../include/nav.php:185
msgid "Mark all channel notifications seen"
msgstr "Marquer toutes les notifications du canal comme vues"
-#: ../../include/nav.php:189
+#: ../../include/nav.php:191
msgid "Notices"
msgstr "Notifications"
-#: ../../include/nav.php:189
+#: ../../include/nav.php:191
msgid "Notifications"
msgstr "Notifications"
-#: ../../include/nav.php:190
+#: ../../include/nav.php:192
msgid "See all notifications"
msgstr "Voir toutes les notifications"
-#: ../../include/nav.php:193
+#: ../../include/nav.php:195
msgid "Private mail"
msgstr "Messages privés"
-#: ../../include/nav.php:194
+#: ../../include/nav.php:196
msgid "See all private messages"
msgstr "Voir tous les messages privés"
-#: ../../include/nav.php:195
+#: ../../include/nav.php:197
msgid "Mark all private messages seen"
msgstr "Marquer tous les messages privés comme vus"
-#: ../../include/nav.php:201
+#: ../../include/nav.php:198 ../../include/widgets.php:667
+msgid "Inbox"
+msgstr "Boîte de réception"
+
+#: ../../include/nav.php:199 ../../include/widgets.php:672
+msgid "Outbox"
+msgstr "Boîte d'envoi"
+
+#: ../../include/nav.php:200 ../../include/widgets.php:677
+msgid "New Message"
+msgstr "Nouveau message"
+
+#: ../../include/nav.php:203
msgid "Event Calendar"
msgstr "Calendrier des événements"
-#: ../../include/nav.php:202
+#: ../../include/nav.php:204
msgid "See all events"
msgstr "Voir tous les événements"
-#: ../../include/nav.php:203
+#: ../../include/nav.php:205
msgid "Mark all events seen"
msgstr "Marquer tous les événements comme vus"
-#: ../../include/nav.php:206
+#: ../../include/nav.php:208
msgid "Manage Your Channels"
msgstr "Gérer vos canaux"
-#: ../../include/nav.php:208
+#: ../../include/nav.php:210
msgid "Account/Channel Settings"
msgstr "Paramètres du Compte/Canal"
-#: ../../include/nav.php:216
+#: ../../include/nav.php:218 ../../include/widgets.php:1510
+msgid "Admin"
+msgstr "Administrateur"
+
+#: ../../include/nav.php:218
msgid "Site Setup and Configuration"
msgstr "Configuration du site"
-#: ../../include/nav.php:247 ../../include/conversation.php:851
+#: ../../include/nav.php:249 ../../include/conversation.php:854
msgid "Loading..."
msgstr "Chargement..."
-#: ../../include/nav.php:252
+#: ../../include/nav.php:254
msgid "@name, #tag, ?doc, content"
msgstr "@nom, #étiquette, ?doc, contenu"
-#: ../../include/nav.php:253
+#: ../../include/nav.php:255
msgid "Please wait..."
msgstr "Merci de patienter..."
-#: ../../include/connections.php:95
-msgid "New window"
-msgstr "Nouvelle fenêtre"
+#: ../../include/network.php:704
+msgid "view full size"
+msgstr "voir en taille réelle"
-#: ../../include/connections.php:96
-msgid "Open the selected location in a different window or browser tab"
-msgstr "Ouvrir l'emplacement dans une fenêtre ou un onglet différent"
+#: ../../include/network.php:1930 ../../include/account.php:317
+#: ../../include/account.php:344 ../../include/account.php:404
+msgid "Administrator"
+msgstr "Administrateur"
-#: ../../include/connections.php:214
-#, php-format
-msgid "User '%s' deleted"
-msgstr "Utilisateur '%s' supprimé"
+#: ../../include/network.php:1944
+msgid "No Subject"
+msgstr "Pas d'objet"
-#: ../../include/contact_widgets.php:11
-#, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] "%d invitation disponible"
-msgstr[1] "%d invitations disponibles"
+#: ../../include/network.php:2198 ../../include/network.php:2199
+msgid "Friendica"
+msgstr "Friendica"
-#: ../../include/contact_widgets.php:19
-msgid "Find Channels"
-msgstr "Trouver des canaux"
+#: ../../include/network.php:2200
+msgid "OStatus"
+msgstr "OStatus"
-#: ../../include/contact_widgets.php:20
-msgid "Enter name or interest"
-msgstr "Saisir nom ou centre d'intérêt"
+#: ../../include/network.php:2201
+msgid "GNU-Social"
+msgstr ""
-#: ../../include/contact_widgets.php:21
-msgid "Connect/Follow"
-msgstr "Ajouter/Suivre"
+#: ../../include/network.php:2202
+msgid "RSS/Atom"
+msgstr "RSS/Atom"
-#: ../../include/contact_widgets.php:22
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr "Exemples: Guillaume Martin, Course à pieds"
+#: ../../include/network.php:2204
+msgid "Diaspora"
+msgstr "Diaspora"
-#: ../../include/contact_widgets.php:26
-msgid "Random Profile"
-msgstr "Un profil au hasard"
+#: ../../include/network.php:2205
+msgid "Facebook"
+msgstr "Facebook"
-#: ../../include/contact_widgets.php:27
-msgid "Invite Friends"
-msgstr "Inviter des amis"
+#: ../../include/network.php:2206
+msgid "Zot"
+msgstr "Zot"
-#: ../../include/contact_widgets.php:29
-msgid "Advanced example: name=fred and country=iceland"
-msgstr "Exemple avancé&nbsp;: name=fred and country=iceland"
+#: ../../include/network.php:2207
+msgid "LinkedIn"
+msgstr "Linkedin"
-#: ../../include/contact_widgets.php:122
+#: ../../include/network.php:2208
+msgid "XMPP/IM"
+msgstr "XMPP/IM"
+
+#: ../../include/network.php:2209
+msgid "MySpace"
+msgstr "MySpace"
+
+#: ../../include/page_widgets.php:7
+msgid "New Page"
+msgstr "Nouvelle page"
+
+#: ../../include/page_widgets.php:46
+msgid "Title"
+msgstr "Titre"
+
+#: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270
+#: ../../include/widgets.php:46 ../../include/widgets.php:429
+#: ../../include/contact_widgets.php:91
+msgid "Categories"
+msgstr "Catégories"
+
+#: ../../include/taxonomy.php:228 ../../include/taxonomy.php:249
+msgid "Tags"
+msgstr "Étiquettes"
+
+#: ../../include/taxonomy.php:293
+msgid "Keywords"
+msgstr "Mots-clefs"
+
+#: ../../include/taxonomy.php:314
+msgid "have"
+msgstr "ont"
+
+#: ../../include/taxonomy.php:314
+msgid "has"
+msgstr "a"
+
+#: ../../include/taxonomy.php:315
+msgid "want"
+msgstr "veulent"
+
+#: ../../include/taxonomy.php:315
+msgid "wants"
+msgstr "veut"
+
+#: ../../include/taxonomy.php:316
+msgid "likes"
+msgstr "aime"
+
+#: ../../include/taxonomy.php:317
+msgid "dislikes"
+msgstr "n'aime pas"
+
+#: ../../include/channel.php:33
+msgid "Unable to obtain identity information from database"
+msgstr "Impossible d'obtenir les données d'identité depuis la base de données"
+
+#: ../../include/channel.php:67
+msgid "Empty name"
+msgstr "Nom vide"
+
+#: ../../include/channel.php:70
+msgid "Name too long"
+msgstr "Nom trop long"
+
+#: ../../include/channel.php:181
+msgid "No account identifier"
+msgstr "Pas d'identifiant de compte"
+
+#: ../../include/channel.php:193
+msgid "Nickname is required."
+msgstr "Un surnom est requis."
+
+#: ../../include/channel.php:207
+msgid "Reserved nickname. Please choose another."
+msgstr "Surnom réservé. Merci d'en choisir un autre."
+
+#: ../../include/channel.php:212
+msgid ""
+"Nickname has unsupported characters or is already being used on this site."
+msgstr "Le surnom contient des caractères interdits ou est déjà pris sur ce site."
+
+#: ../../include/channel.php:272
+msgid "Unable to retrieve created identity"
+msgstr "Impossible de récupérer l'identité créée"
+
+#: ../../include/channel.php:341
+msgid "Default Profile"
+msgstr "Profil par défaut"
+
+#: ../../include/channel.php:830
+msgid "Requested channel is not available."
+msgstr "Canal demandé non disponible."
+
+#: ../../include/channel.php:977
+msgid "Create New Profile"
+msgstr "Créer un nouveau profil"
+
+#: ../../include/channel.php:997
+msgid "Visible to everybody"
+msgstr "Visible de tous"
+
+#: ../../include/channel.php:1070 ../../include/channel.php:1182
+msgid "Gender:"
+msgstr "Sexe&nbsp;:"
+
+#: ../../include/channel.php:1071 ../../include/channel.php:1226
+msgid "Status:"
+msgstr "État&nbsp;:"
+
+#: ../../include/channel.php:1072 ../../include/channel.php:1237
+msgid "Homepage:"
+msgstr "Site Internet&nbsp;:"
+
+#: ../../include/channel.php:1073
+msgid "Online Now"
+msgstr "Connecté"
+
+#: ../../include/channel.php:1187
+msgid "Like this channel"
+msgstr "J'aime ce canal"
+
+#: ../../include/channel.php:1211
+msgid "j F, Y"
+msgstr "j F, Y"
+
+#: ../../include/channel.php:1212
+msgid "j F"
+msgstr "j F"
+
+#: ../../include/channel.php:1219
+msgid "Birthday:"
+msgstr "Date de naissance&nbsp;:"
+
+#: ../../include/channel.php:1232
#, php-format
-msgid "%d connection in common"
-msgid_plural "%d connections in common"
-msgstr[0] "%d contact en commun"
-msgstr[1] "%d contacts en commun"
+msgid "for %1$d %2$s"
+msgstr "depuis %1$d %2$s"
-#: ../../include/contact_widgets.php:127
-msgid "show more"
-msgstr "montrer plus"
+#: ../../include/channel.php:1235
+msgid "Sexual Preference:"
+msgstr "Orientation sexuelle&nbsp;:"
+
+#: ../../include/channel.php:1241
+msgid "Tags:"
+msgstr "Étiquettes&nbsp;:"
+
+#: ../../include/channel.php:1243
+msgid "Political Views:"
+msgstr "Opinions politiques&nbsp;:"
+
+#: ../../include/channel.php:1245
+msgid "Religion:"
+msgstr "Religion&nbsp;:"
+
+#: ../../include/channel.php:1249
+msgid "Hobbies/Interests:"
+msgstr "Occupations/Centres d'intérêt&nbsp;:"
+
+#: ../../include/channel.php:1251
+msgid "Likes:"
+msgstr "Aime&nbsp;:"
+
+#: ../../include/channel.php:1253
+msgid "Dislikes:"
+msgstr "N'aime pas&nbsp;:"
+
+#: ../../include/channel.php:1255
+msgid "Contact information and Social Networks:"
+msgstr "Coordonnées et réseaux sociaux&nbsp;:"
+
+#: ../../include/channel.php:1257
+msgid "My other channels:"
+msgstr "Mes autres canaux&nbsp;:"
+
+#: ../../include/channel.php:1259
+msgid "Musical interests:"
+msgstr "Goûts musicaux&nbsp;:"
+
+#: ../../include/channel.php:1261
+msgid "Books, literature:"
+msgstr "Lectures, goûts littéraires&nbsp;:"
+
+#: ../../include/channel.php:1263
+msgid "Television:"
+msgstr "Télévision&nbsp;:"
+
+#: ../../include/channel.php:1265
+msgid "Film/dance/culture/entertainment:"
+msgstr "Cinéma/danse/culture/divertissement&nsbp;:"
+
+#: ../../include/channel.php:1267
+msgid "Love/Romance:"
+msgstr "Vie sentimentale/amoureuse&nbsp;:"
+
+#: ../../include/channel.php:1269
+msgid "Work/employment:"
+msgstr "Travail/Occupation&nbsp;"
+
+#: ../../include/channel.php:1271
+msgid "School/education:"
+msgstr "Études&nbsp;"
+
+#: ../../include/channel.php:1292
+msgid "Like this thing"
+msgstr "J'aime ceci"
+
+#: ../../include/connections.php:95
+msgid "New window"
+msgstr "Nouvelle fenêtre"
+
+#: ../../include/connections.php:96
+msgid "Open the selected location in a different window or browser tab"
+msgstr "Ouvrir l'emplacement dans une fenêtre ou un onglet différent"
+
+#: ../../include/connections.php:214
+#, php-format
+msgid "User '%s' deleted"
+msgstr "Utilisateur '%s' supprimé"
#: ../../include/conversation.php:204
#, php-format
@@ -7817,258 +7617,269 @@ msgstr "%1$s ajoute %2$s à ses contacts"
msgid "%1$s poked %2$s"
msgstr "%1$s a tapoté %2$s"
-#: ../../include/conversation.php:691
+#: ../../include/conversation.php:243 ../../include/text.php:1013
+#: ../../include/text.php:1018
+msgid "poked"
+msgstr "a tapoté"
+
+#: ../../include/conversation.php:694
#, php-format
msgid "View %s's profile @ %s"
msgstr "Voir le profil de %s @ %s"
-#: ../../include/conversation.php:710
+#: ../../include/conversation.php:713
msgid "Categories:"
msgstr "Catégories&nbsp;:"
-#: ../../include/conversation.php:711
+#: ../../include/conversation.php:714
msgid "Filed under:"
msgstr "Classé sous&nbsp;:"
-#: ../../include/conversation.php:738
+#: ../../include/conversation.php:741
msgid "View in context"
msgstr "Voir en contexte"
-#: ../../include/conversation.php:847
+#: ../../include/conversation.php:850
msgid "remove"
msgstr "supprimer"
-#: ../../include/conversation.php:852
+#: ../../include/conversation.php:855
msgid "Delete Selected Items"
msgstr "Supprimer les éléments selectionnés"
-#: ../../include/conversation.php:948
+#: ../../include/conversation.php:951
msgid "View Source"
msgstr "Voir source"
-#: ../../include/conversation.php:949
+#: ../../include/conversation.php:952
msgid "Follow Thread"
msgstr "Suivre la discussion"
-#: ../../include/conversation.php:950
+#: ../../include/conversation.php:953
msgid "Unfollow Thread"
msgstr "Ne plus suivre la discussion"
-#: ../../include/conversation.php:955
+#: ../../include/conversation.php:958
msgid "Activity/Posts"
msgstr "Activité/Publications"
-#: ../../include/conversation.php:957
+#: ../../include/conversation.php:960
msgid "Edit Connection"
msgstr "Modifier le contact"
-#: ../../include/conversation.php:958
+#: ../../include/conversation.php:961
msgid "Message"
msgstr "Message"
-#: ../../include/conversation.php:1075
+#: ../../include/conversation.php:1078
#, php-format
msgid "%s likes this."
msgstr "%s aime ça."
-#: ../../include/conversation.php:1075
+#: ../../include/conversation.php:1078
#, php-format
msgid "%s doesn't like this."
msgstr "%s n'aime pas ça."
-#: ../../include/conversation.php:1079
+#: ../../include/conversation.php:1082
#, 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 personne</span> aime ceci."
msgstr[1] "<span %1$s>%2$d personnes</span> aiment ceci."
-#: ../../include/conversation.php:1081
+#: ../../include/conversation.php:1084
#, 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 personne</span> n'aime pas ça."
msgstr[1] "<span %1$s>%2$d personnes</span> n'aiment pas ça."
-#: ../../include/conversation.php:1087
+#: ../../include/conversation.php:1090
msgid "and"
msgstr "et"
-#: ../../include/conversation.php:1090
+#: ../../include/conversation.php:1093
#, php-format
msgid ", and %d other people"
msgid_plural ", and %d other people"
msgstr[0] ", et %d autre personne"
msgstr[1] ", et %d autres personnes"
-#: ../../include/conversation.php:1091
+#: ../../include/conversation.php:1094
#, php-format
msgid "%s like this."
msgstr "%s aime ça."
-#: ../../include/conversation.php:1091
+#: ../../include/conversation.php:1094
#, php-format
msgid "%s don't like this."
msgstr "%s n'aime pas ça."
-#: ../../include/conversation.php:1130
+#: ../../include/conversation.php:1133
msgid "Set your location"
msgstr "Spécifier votre emplacement géographique"
-#: ../../include/conversation.php:1131
+#: ../../include/conversation.php:1134
msgid "Clear browser location"
msgstr "Supprimer l'emplacement géographique du navigateur"
-#: ../../include/conversation.php:1177
+#: ../../include/conversation.php:1182
msgid "Tag term:"
msgstr "Étiquette&nbsp;:"
-#: ../../include/conversation.php:1178
+#: ../../include/conversation.php:1183
msgid "Where are you right now?"
msgstr "Où êtes-vous en ce moment&nbsp;?"
-#: ../../include/conversation.php:1210
+#: ../../include/conversation.php:1221
msgid "Page link name"
msgstr "Nom du lien vers la page"
-#: ../../include/conversation.php:1213
+#: ../../include/conversation.php:1224
msgid "Post as"
msgstr "Publier en tant que"
-#: ../../include/conversation.php:1223
+#: ../../include/conversation.php:1238
msgid "Toggle voting"
msgstr "(Dés)activer le vote"
-#: ../../include/conversation.php:1231
+#: ../../include/conversation.php:1246
msgid "Categories (optional, comma-separated list)"
msgstr "Catégories (facultatives, séparées par des virgules)"
-#: ../../include/conversation.php:1254
+#: ../../include/conversation.php:1269
msgid "Set publish date"
msgstr "Définir la date de publication"
-#: ../../include/conversation.php:1258
-msgid "OK"
-msgstr "OK"
-
-#: ../../include/conversation.php:1503
+#: ../../include/conversation.php:1518
msgid "Discover"
msgstr "À découvrir"
-#: ../../include/conversation.php:1506
+#: ../../include/conversation.php:1521
msgid "Imported public streams"
msgstr "Flux publics importés"
-#: ../../include/conversation.php:1511
+#: ../../include/conversation.php:1526
msgid "Commented Order"
msgstr "Par date de commentaire"
-#: ../../include/conversation.php:1514
+#: ../../include/conversation.php:1529
msgid "Sort by Comment Date"
msgstr "Trier par date de dernier commentaire"
-#: ../../include/conversation.php:1518
+#: ../../include/conversation.php:1533
msgid "Posted Order"
msgstr "Par date de publication"
-#: ../../include/conversation.php:1521
+#: ../../include/conversation.php:1536
msgid "Sort by Post Date"
msgstr "Trier par date de publication"
-#: ../../include/conversation.php:1529
+#: ../../include/conversation.php:1544
msgid "Posts that mention or involve you"
msgstr "Publications qui vous mentionnent ou vous concernent d'une manière ou d'une autre"
-#: ../../include/conversation.php:1538
+#: ../../include/conversation.php:1553
msgid "Activity Stream - by date"
msgstr "Flux d'activité - par date"
-#: ../../include/conversation.php:1544
+#: ../../include/conversation.php:1559
msgid "Starred"
msgstr "Mis en avant (étoiles)"
-#: ../../include/conversation.php:1547
+#: ../../include/conversation.php:1562
msgid "Favourite Posts"
msgstr "Publications préférées"
-#: ../../include/conversation.php:1554
+#: ../../include/conversation.php:1569
msgid "Spam"
msgstr "Indésirable"
-#: ../../include/conversation.php:1557
+#: ../../include/conversation.php:1572
msgid "Posts flagged as SPAM"
msgstr "Publications marquées comme indésirables"
-#: ../../include/conversation.php:1614
+#: ../../include/conversation.php:1629
msgid "Status Messages and Posts"
msgstr "Messages d'état et contributions"
-#: ../../include/conversation.php:1623
+#: ../../include/conversation.php:1638
msgid "About"
msgstr "À propos"
-#: ../../include/conversation.php:1626
+#: ../../include/conversation.php:1641
msgid "Profile Details"
msgstr "Détails du profil"
-#: ../../include/conversation.php:1635 ../../include/photos.php:502
-msgid "Photo Albums"
-msgstr "Albums photo"
-
-#: ../../include/conversation.php:1642
+#: ../../include/conversation.php:1657
msgid "Files and Storage"
msgstr "Fichiers et Stockage"
-#: ../../include/conversation.php:1678
+#: ../../include/conversation.php:1677 ../../include/conversation.php:1680
+#: ../../include/widgets.php:836
+msgid "Chatrooms"
+msgstr "Salons de clavardage"
+
+#: ../../include/conversation.php:1693
msgid "Saved Bookmarks"
msgstr "Favoris sauvegardés"
-#: ../../include/conversation.php:1688
+#: ../../include/conversation.php:1703
msgid "Manage Webpages"
msgstr "Gérer les pages web"
-#: ../../include/conversation.php:1747
+#: ../../include/conversation.php:1768
msgctxt "noun"
msgid "Attending"
msgid_plural "Attending"
msgstr[0] "Participe"
msgstr[1] "Participent"
-#: ../../include/conversation.php:1750
+#: ../../include/conversation.php:1771
msgctxt "noun"
msgid "Not Attending"
msgid_plural "Not Attending"
msgstr[0] "Ne participe pas"
msgstr[1] "Ne participent pas"
-#: ../../include/conversation.php:1753
+#: ../../include/conversation.php:1774
msgctxt "noun"
msgid "Undecided"
msgid_plural "Undecided"
msgstr[0] "Indécis(e)"
msgstr[1] "Indécis(es)"
-#: ../../include/conversation.php:1756
+#: ../../include/conversation.php:1777
msgctxt "noun"
msgid "Agree"
msgid_plural "Agrees"
msgstr[0] "D'accord"
msgstr[1] "D'accord"
-#: ../../include/conversation.php:1759
+#: ../../include/conversation.php:1780
msgctxt "noun"
msgid "Disagree"
msgid_plural "Disagrees"
msgstr[0] "Pas d'accord"
msgstr[1] "Pas d'accord"
-#: ../../include/conversation.php:1762
+#: ../../include/conversation.php:1783
msgctxt "noun"
msgid "Abstain"
msgid_plural "Abstains"
msgstr[0] "S'abstient"
msgstr[1] "S'abstiennent"
+#: ../../include/import.php:30
+msgid ""
+"Cannot create a duplicate channel identifier on this system. Import failed."
+msgstr "L'import a échoué. Un canal existe déjà avec ce nom"
+
+#: ../../include/import.php:97
+msgid "Channel clone failed. Import failed."
+msgstr "Echec du clonage du canal. Echec de l'impot."
+
#: ../../include/selectors.php:30
msgid "Frequently"
msgstr "Fréquemment"
@@ -8133,12 +7944,6 @@ msgstr "Neutre"
msgid "Non-specific"
msgstr "Non spécifique"
-#: ../../include/selectors.php:49 ../../include/selectors.php:66
-#: ../../include/selectors.php:104 ../../include/selectors.php:140
-#: ../../include/permissions.php:881
-msgid "Other"
-msgstr "Autre"
-
#: ../../include/selectors.php:49
msgid "Undecided"
msgstr "Indécis"
@@ -8315,361 +8120,366 @@ msgstr "S'en fiche"
msgid "Ask me"
msgstr "Me demander"
-#: ../../include/PermissionDescription.php:31
-#: ../../include/acl_selectors.php:232
-msgid "Visible to your default audience"
-msgstr "Visible pour vos contacts seulement"
+#: ../../include/bookmarks.php:35
+#, php-format
+msgid "%1$s's bookmarks"
+msgstr "Favoris de %1$s"
-#: ../../include/PermissionDescription.php:115
-#: ../../include/acl_selectors.php:268
-msgid "Only me"
+#: ../../include/security.php:109
+msgid "guest:"
msgstr ""
-#: ../../include/PermissionDescription.php:116
-msgid "Public"
-msgstr "Public"
+#: ../../include/security.php:427
+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 "Le formulaire n'est plus sécurisé, probablement parce qu'il est ouvert depuis trop longtemps (plus de 3 heures)."
-#: ../../include/PermissionDescription.php:117
-msgid "Anybody in the $Projectname network"
-msgstr ""
+#: ../../include/text.php:404
+msgid "prev"
+msgstr "préc."
-#: ../../include/PermissionDescription.php:118
-#, php-format
-msgid "Any account on %s"
-msgstr ""
+#: ../../include/text.php:406
+msgid "first"
+msgstr "premier"
-#: ../../include/PermissionDescription.php:119
-msgid "Any of my connections"
-msgstr ""
+#: ../../include/text.php:435
+msgid "last"
+msgstr "dernier"
-#: ../../include/PermissionDescription.php:120
-msgid "Only connections I specifically allow"
-msgstr ""
+#: ../../include/text.php:438
+msgid "next"
+msgstr "Suivant"
-#: ../../include/PermissionDescription.php:121
-msgid "Anybody authenticated (could include visitors from other networks)"
-msgstr ""
+#: ../../include/text.php:448
+msgid "older"
+msgstr "plus ancien"
-#: ../../include/PermissionDescription.php:122
-msgid "Any connections including those who haven't yet been approved"
-msgstr ""
+#: ../../include/text.php:450
+msgid "newer"
+msgstr "plus récent"
-#: ../../include/PermissionDescription.php:161
-msgid ""
-"This is your default setting for the audience of your normal stream, and "
-"posts."
-msgstr ""
+#: ../../include/text.php:843
+msgid "No connections"
+msgstr "Pas de relations."
-#: ../../include/PermissionDescription.php:162
-msgid ""
-"This is your default setting for who can view your default channel profile"
-msgstr ""
+#: ../../include/text.php:868
+#, php-format
+msgid "View all %s connections"
+msgstr "Voir les %s contacts"
-#: ../../include/PermissionDescription.php:163
-msgid "This is your default setting for who can view your connections"
-msgstr ""
+#: ../../include/text.php:1013 ../../include/text.php:1018
+msgid "poke"
+msgstr "tapoter"
-#: ../../include/PermissionDescription.php:164
-msgid ""
-"This is your default setting for who can view your file storage and photos"
-msgstr ""
+#: ../../include/text.php:1019
+msgid "ping"
+msgstr "ping"
-#: ../../include/PermissionDescription.php:165
-msgid "This is your default setting for the audience of your webpages"
-msgstr ""
+#: ../../include/text.php:1019
+msgid "pinged"
+msgstr "pingé"
-#: ../../include/account.php:28
-msgid "Not a valid email address"
-msgstr "Ce n'est pas une adresse de courriel valide"
+#: ../../include/text.php:1020
+msgid "prod"
+msgstr "encourager"
-#: ../../include/account.php:30
-msgid "Your email domain is not among those allowed on this site"
-msgstr "Votre domaine de courriel ne fait pas partie de ceux autorisés par ce site"
+#: ../../include/text.php:1020
+msgid "prodded"
+msgstr "encouragé"
-#: ../../include/account.php:36
-msgid "Your email address is already registered at this site."
-msgstr "Votre adresse de courriel est déjà inscrite sur ce site."
+#: ../../include/text.php:1021
+msgid "slap"
+msgstr "giffler"
-#: ../../include/account.php:68
-msgid "An invitation is required."
-msgstr "Une invitation est requise."
+#: ../../include/text.php:1021
+msgid "slapped"
+msgstr "gifflé(e)"
-#: ../../include/account.php:72
-msgid "Invitation could not be verified."
-msgstr "Votre invitation n'a pas pu être vérifiée."
+#: ../../include/text.php:1022
+msgid "finger"
+msgstr "pointer"
-#: ../../include/account.php:122
-msgid "Please enter the required information."
-msgstr "Merci d'entrer les informations requises."
+#: ../../include/text.php:1022
+msgid "fingered"
+msgstr "pointé"
-#: ../../include/account.php:189
-msgid "Failed to store account information."
-msgstr "Impossible de stocker les informations liées au compte."
+#: ../../include/text.php:1023
+msgid "rebuff"
+msgstr "rejetter"
-#: ../../include/account.php:249
-#, php-format
-msgid "Registration confirmation for %s"
-msgstr "Confirmation de l'inscription pour %s"
+#: ../../include/text.php:1023
+msgid "rebuffed"
+msgstr "rejeté"
-#: ../../include/account.php:315
-#, php-format
-msgid "Registration request at %s"
-msgstr "Demande d'inscription sur %s"
+#: ../../include/text.php:1035
+msgid "happy"
+msgstr "heureux"
-#: ../../include/account.php:317 ../../include/account.php:344
-#: ../../include/account.php:404 ../../include/network.php:1871
-msgid "Administrator"
-msgstr "Administrateur"
+#: ../../include/text.php:1036
+msgid "sad"
+msgstr "triste"
-#: ../../include/account.php:339
-msgid "your registration password"
-msgstr "votre mot de passe d'inscription"
+#: ../../include/text.php:1037
+msgid "mellow"
+msgstr "mélancolique"
-#: ../../include/account.php:342 ../../include/account.php:402
-#, php-format
-msgid "Registration details for %s"
-msgstr "Détails de l'inscription pour %s"
+#: ../../include/text.php:1038
+msgid "tired"
+msgstr "fatigué"
-#: ../../include/account.php:414
-msgid "Account approved."
-msgstr "Compte approuvé."
+#: ../../include/text.php:1039
+msgid "perky"
+msgstr "impertinent"
-#: ../../include/account.php:454
-#, php-format
-msgid "Registration revoked for %s"
-msgstr "Inscription révoquée pour %s"
+#: ../../include/text.php:1040
+msgid "angry"
+msgstr "en colère"
-#: ../../include/account.php:506
-msgid "Account verified. Please login."
-msgstr "Compte vérifié. Veuillez vous connecter."
+#: ../../include/text.php:1041
+msgid "stupefied"
+msgstr "stupéfait"
-#: ../../include/account.php:723 ../../include/account.php:725
-msgid "Click here to upgrade."
-msgstr "Cliquez ici pour mettre à jour."
+#: ../../include/text.php:1042
+msgid "puzzled"
+msgstr "perplexe"
-#: ../../include/account.php:731
-msgid "This action exceeds the limits set by your subscription plan."
-msgstr "Cette action outrepasserait les limites prévues par votre forfait."
+#: ../../include/text.php:1043
+msgid "interested"
+msgstr "intéressé"
-#: ../../include/account.php:736
-msgid "This action is not available under your subscription plan."
-msgstr "Cette action n'est pas disponible avec votre forfait."
+#: ../../include/text.php:1044
+msgid "bitter"
+msgstr "amer"
-#: ../../include/attach.php:247 ../../include/attach.php:333
-msgid "Item was not found."
-msgstr "Élément introuvable."
+#: ../../include/text.php:1045
+msgid "cheerful"
+msgstr "plein d'entrain"
-#: ../../include/attach.php:497
-msgid "No source file."
-msgstr "Pas de fichier source."
+#: ../../include/text.php:1046
+msgid "alive"
+msgstr "vivant"
-#: ../../include/attach.php:519
-msgid "Cannot locate file to replace"
-msgstr "Impossible de trouver le fichier à remplacer."
+#: ../../include/text.php:1047
+msgid "annoyed"
+msgstr "agaçé"
-#: ../../include/attach.php:537
-msgid "Cannot locate file to revise/update"
-msgstr "Impossible de trouver le fichier à corriger/mettre à jour"
+#: ../../include/text.php:1048
+msgid "anxious"
+msgstr "anxieux"
-#: ../../include/attach.php:672
-#, php-format
-msgid "File exceeds size limit of %d"
-msgstr "Le fichier dépasse la taille limite de %d"
+#: ../../include/text.php:1049
+msgid "cranky"
+msgstr "énervé"
-#: ../../include/attach.php:686
-#, php-format
-msgid "You have reached your limit of %1$.0f Mbytes attachment storage."
-msgstr "Vous avez atteint votre limite de %1$.0f méga-octets autorisés pour le stockage des pièces-jointes."
+#: ../../include/text.php:1050
+msgid "disturbed"
+msgstr "perturbé"
-#: ../../include/attach.php:842
-msgid "File upload failed. Possible system limit or action terminated."
-msgstr "Envoi du fichier impossible. Limite système ou action avortée."
+#: ../../include/text.php:1051
+msgid "frustrated"
+msgstr "frustré"
-#: ../../include/attach.php:855
-msgid "Stored file could not be verified. Upload failed."
-msgstr "Le fichier stocké n'a pu être vérifié. Echec de l'envoi."
+#: ../../include/text.php:1052
+msgid "depressed"
+msgstr "déprimé"
-#: ../../include/attach.php:909 ../../include/attach.php:925
-msgid "Path not available."
-msgstr "Chemin non disponible."
+#: ../../include/text.php:1053
+msgid "motivated"
+msgstr "motivé"
-#: ../../include/attach.php:971 ../../include/attach.php:1123
-msgid "Empty pathname"
-msgstr "Chemin vide"
+#: ../../include/text.php:1054
+msgid "relaxed"
+msgstr "détendu"
-#: ../../include/attach.php:997
-msgid "duplicate filename or path"
-msgstr "doublon de chemin ou de fichier"
+#: ../../include/text.php:1055
+msgid "surprised"
+msgstr "surpris"
-#: ../../include/attach.php:1019
-msgid "Path not found."
-msgstr "Chemin introuvable."
+#: ../../include/text.php:1237 ../../include/js_strings.php:70
+msgid "Monday"
+msgstr "Lundi"
-#: ../../include/attach.php:1077
-msgid "mkdir failed."
-msgstr "mkdir a échoué."
+#: ../../include/text.php:1237 ../../include/js_strings.php:71
+msgid "Tuesday"
+msgstr "Mardi"
-#: ../../include/attach.php:1081
-msgid "database storage failed."
-msgstr "l'écriture dans la base de données a échoué."
+#: ../../include/text.php:1237 ../../include/js_strings.php:72
+msgid "Wednesday"
+msgstr "Mercredi"
-#: ../../include/attach.php:1129
-msgid "Empty path"
-msgstr "Chemin vide"
+#: ../../include/text.php:1237 ../../include/js_strings.php:73
+msgid "Thursday"
+msgstr "Jeudi"
-#: ../../include/channel.php:32
-msgid "Unable to obtain identity information from database"
-msgstr "Impossible d'obtenir les données d'identité depuis la base de données"
+#: ../../include/text.php:1237 ../../include/js_strings.php:74
+msgid "Friday"
+msgstr "Vendredi"
-#: ../../include/channel.php:66
-msgid "Empty name"
-msgstr "Nom vide"
+#: ../../include/text.php:1237 ../../include/js_strings.php:75
+msgid "Saturday"
+msgstr "Samedi"
-#: ../../include/channel.php:69
-msgid "Name too long"
-msgstr "Nom trop long"
+#: ../../include/text.php:1237 ../../include/js_strings.php:69
+msgid "Sunday"
+msgstr "Dimanche"
-#: ../../include/channel.php:180
-msgid "No account identifier"
-msgstr "Pas d'identifiant de compte"
+#: ../../include/text.php:1241 ../../include/js_strings.php:45
+msgid "January"
+msgstr "Janvier"
-#: ../../include/channel.php:192
-msgid "Nickname is required."
-msgstr "Un surnom est requis."
+#: ../../include/text.php:1241 ../../include/js_strings.php:46
+msgid "February"
+msgstr "Février"
-#: ../../include/channel.php:206
-msgid "Reserved nickname. Please choose another."
-msgstr "Surnom réservé. Merci d'en choisir un autre."
+#: ../../include/text.php:1241 ../../include/js_strings.php:47
+msgid "March"
+msgstr "Mars"
-#: ../../include/channel.php:211
-msgid ""
-"Nickname has unsupported characters or is already being used on this site."
-msgstr "Le surnom contient des caractères interdits ou est déjà pris sur ce site."
+#: ../../include/text.php:1241 ../../include/js_strings.php:48
+msgid "April"
+msgstr "Avril"
-#: ../../include/channel.php:287
-msgid "Unable to retrieve created identity"
-msgstr "Impossible de récupérer l'identité créée"
+#: ../../include/text.php:1241
+msgid "May"
+msgstr "Mai"
-#: ../../include/channel.php:345
-msgid "Default Profile"
-msgstr "Profil par défaut"
+#: ../../include/text.php:1241 ../../include/js_strings.php:50
+msgid "June"
+msgstr "Juin"
-#: ../../include/channel.php:791
-msgid "Requested channel is not available."
-msgstr "Canal demandé non disponible."
+#: ../../include/text.php:1241 ../../include/js_strings.php:51
+msgid "July"
+msgstr "Juillet"
-#: ../../include/channel.php:938
-msgid "Create New Profile"
-msgstr "Créer un nouveau profil"
+#: ../../include/text.php:1241 ../../include/js_strings.php:52
+msgid "August"
+msgstr "Août"
-#: ../../include/channel.php:958
-msgid "Visible to everybody"
-msgstr "Visible de tous"
+#: ../../include/text.php:1241 ../../include/js_strings.php:53
+msgid "September"
+msgstr "Septembre"
-#: ../../include/channel.php:1031 ../../include/channel.php:1142
-msgid "Gender:"
-msgstr "Sexe&nbsp;:"
+#: ../../include/text.php:1241 ../../include/js_strings.php:54
+msgid "October"
+msgstr "Octobre"
-#: ../../include/channel.php:1032 ../../include/channel.php:1186
-msgid "Status:"
-msgstr "État&nbsp;:"
+#: ../../include/text.php:1241 ../../include/js_strings.php:55
+msgid "November"
+msgstr "Novembre"
-#: ../../include/channel.php:1033 ../../include/channel.php:1197
-msgid "Homepage:"
-msgstr "Site Internet&nbsp;:"
+#: ../../include/text.php:1241 ../../include/js_strings.php:56
+msgid "December"
+msgstr "Décembre"
-#: ../../include/channel.php:1034
-msgid "Online Now"
-msgstr "Connecté"
+#: ../../include/text.php:1318 ../../include/text.php:1322
+msgid "Unknown Attachment"
+msgstr "Pièce jointe inconnue"
-#: ../../include/channel.php:1147
-msgid "Like this channel"
-msgstr "J'aime ce canal"
+#: ../../include/text.php:1324
+msgid "unknown"
+msgstr "Inconnu"
-#: ../../include/channel.php:1171
-msgid "j F, Y"
-msgstr "j F, Y"
+#: ../../include/text.php:1360
+msgid "remove category"
+msgstr "supprimer la catégorie"
-#: ../../include/channel.php:1172
-msgid "j F"
-msgstr "j F"
+#: ../../include/text.php:1437
+msgid "remove from file"
+msgstr "retirer du fichier"
-#: ../../include/channel.php:1179
-msgid "Birthday:"
-msgstr "Date de naissance&nbsp;:"
+#: ../../include/text.php:1734 ../../include/text.php:1805
+msgid "default"
+msgstr "défaut"
-#: ../../include/channel.php:1192
-#, php-format
-msgid "for %1$d %2$s"
-msgstr "depuis %1$d %2$s"
+#: ../../include/text.php:1742
+msgid "Page layout"
+msgstr "Mise en page"
-#: ../../include/channel.php:1195
-msgid "Sexual Preference:"
-msgstr "Orientation sexuelle&nbsp;:"
+#: ../../include/text.php:1742
+msgid "You can create your own with the layouts tool"
+msgstr "Créez les vôtres avec les outils de mise en page"
-#: ../../include/channel.php:1201
-msgid "Tags:"
-msgstr "Étiquettes&nbsp;:"
+#: ../../include/text.php:1784
+msgid "Page content type"
+msgstr "Type de contenu de la page"
-#: ../../include/channel.php:1203
-msgid "Political Views:"
-msgstr "Opinions politiques&nbsp;:"
+#: ../../include/text.php:1817
+msgid "Select an alternate language"
+msgstr "Choisir une langue alternative"
-#: ../../include/channel.php:1205
-msgid "Religion:"
-msgstr "Religion&nbsp;:"
+#: ../../include/text.php:1934
+msgid "activity"
+msgstr "activité"
-#: ../../include/channel.php:1209
-msgid "Hobbies/Interests:"
-msgstr "Occupations/Centres d'intérêt&nbsp;:"
+#: ../../include/text.php:2235
+msgid "Design Tools"
+msgstr "Outils de conception"
-#: ../../include/channel.php:1211
-msgid "Likes:"
-msgstr "Aime&nbsp;:"
+#: ../../include/text.php:2241
+msgid "Pages"
+msgstr "Pages"
-#: ../../include/channel.php:1213
-msgid "Dislikes:"
-msgstr "N'aime pas&nbsp;:"
+#: ../../include/auth.php:147
+msgid "Logged out."
+msgstr "Deconnecté."
-#: ../../include/channel.php:1215
-msgid "Contact information and Social Networks:"
-msgstr "Coordonnées et réseaux sociaux&nbsp;:"
+#: ../../include/auth.php:274
+msgid "Failed authentication"
+msgstr "Échec de l'authentification"
-#: ../../include/channel.php:1217
-msgid "My other channels:"
-msgstr "Mes autres canaux&nbsp;:"
+#: ../../include/permissions.php:26
+msgid "Can view my normal stream and posts"
+msgstr "Peut voir les publications ordinaires sur mon canal."
-#: ../../include/channel.php:1219
-msgid "Musical interests:"
-msgstr "Goûts musicaux&nbsp;:"
+#: ../../include/permissions.php:30
+msgid "Can view my webpages"
+msgstr "Peut voir mes pages web"
-#: ../../include/channel.php:1221
-msgid "Books, literature:"
-msgstr "Lectures, goûts littéraires&nbsp;:"
+#: ../../include/permissions.php:34
+msgid "Can post on my channel page (\"wall\")"
+msgstr "Peuvent poster sur la page de mon canal (\"mur\")"
-#: ../../include/channel.php:1223
-msgid "Television:"
-msgstr "Télévision&nbsp;:"
+#: ../../include/permissions.php:37
+msgid "Can like/dislike stuff"
+msgstr "Peuvent aimer/ne pas aimer"
-#: ../../include/channel.php:1225
-msgid "Film/dance/culture/entertainment:"
-msgstr "Cinéma/danse/culture/divertissement&nsbp;:"
+#: ../../include/permissions.php:37
+msgid "Profiles and things other than posts/comments"
+msgstr "Profils et autres excluant les publications/commentaires."
-#: ../../include/channel.php:1227
-msgid "Love/Romance:"
-msgstr "Vie sentimentale/amoureuse&nbsp;:"
+#: ../../include/permissions.php:39
+msgid "Can forward to all my channel contacts via post @mentions"
+msgstr "Peut faire suivre à tous les contacts de mon canal via \"@mention\""
-#: ../../include/channel.php:1229
-msgid "Work/employment:"
-msgstr "Travail/Occupation&nbsp;"
+#: ../../include/permissions.php:39
+msgid "Advanced - useful for creating group forum channels"
+msgstr "Avancé - utile pour les canaux de type \"forum/groupe\""
-#: ../../include/channel.php:1231
-msgid "School/education:"
-msgstr "Études&nbsp;"
+#: ../../include/permissions.php:40
+msgid "Can chat with me (when available)"
+msgstr "Peut discuter avec moi (quand disponibie)"
-#: ../../include/channel.php:1251
-msgid "Like this thing"
-msgstr "J'aime ceci"
+#: ../../include/permissions.php:41
+msgid "Can write to my file storage and photos"
+msgstr "Peut charger des fichiers et des photos dans mon canal"
+
+#: ../../include/permissions.php:42
+msgid "Can edit my webpages"
+msgstr "Peut modifier mes pages web"
+
+#: ../../include/permissions.php:44
+msgid "Somewhat advanced - very useful in open communities"
+msgstr "Plutôt avancé - très utile dans les communautés ouvertes"
+
+#: ../../include/permissions.php:46
+msgid "Can administer my channel resources"
+msgstr "Peut administrer les ressources de mon canal"
+
+#: ../../include/permissions.php:46
+msgid ""
+"Extremely advanced. Leave this alone unless you know what you are doing"
+msgstr "Très avancé. Ne pas toucher, sauf si vous savez ce que vous faîtes"
#: ../../include/features.php:48
msgid "General Features"
@@ -8716,420 +8526,861 @@ msgid "Provide managed web pages on your channel"
msgstr "Fournir des pages web, sous votre contrôle, sur votre canal"
#: ../../include/features.php:55
+msgid "Provide a wiki for your channel"
+msgstr ""
+
+#: ../../include/features.php:56
msgid "Hide Rating"
msgstr "Masquer l'évaluation"
-#: ../../include/features.php:55
+#: ../../include/features.php:56
msgid ""
"Hide the rating buttons on your channel and profile pages. Note: People can "
"still rate you somewhere else."
msgstr "Masquer les boutons d'évaluation sur les pages de votre canal et de votre profil. NB : vous pourrez toujours être évalué(e) ailleurs."
-#: ../../include/features.php:56
+#: ../../include/features.php:57
msgid "Private Notes"
msgstr "Notes privées"
-#: ../../include/features.php:56
+#: ../../include/features.php:57
msgid "Enables a tool to store notes and reminders (note: not encrypted)"
msgstr "Active un outil pour stocker des notes et des rappels (note&nbsp;:non chiffré)"
-#: ../../include/features.php:57
+#: ../../include/features.php:58
msgid "Navigation Channel Select"
msgstr "Sélection du canal par la navigation"
-#: ../../include/features.php:57
+#: ../../include/features.php:58
msgid "Change channels directly from within the navigation dropdown menu"
msgstr "Changez de canal directement depuis le menu de navigation déroulant"
-#: ../../include/features.php:58
+#: ../../include/features.php:59
msgid "Photo Location"
msgstr "Site de prise de vue"
-#: ../../include/features.php:58
+#: ../../include/features.php:59
msgid "If location data is available on uploaded photos, link this to a map."
msgstr "Si des informations géographiques sont présentes dans les images téléversées, les lier à une carte."
-#: ../../include/features.php:59
+#: ../../include/features.php:60
msgid "Access Controlled Chatrooms"
msgstr ""
-#: ../../include/features.php:59
+#: ../../include/features.php:60
msgid "Provide chatrooms and chat services with access control."
msgstr ""
-#: ../../include/features.php:60
+#: ../../include/features.php:61
msgid "Smart Birthdays"
msgstr "Anniversaires intelligents"
-#: ../../include/features.php:60
+#: ../../include/features.php:61
msgid ""
"Make birthday events timezone aware in case your friends are scattered "
"across the planet."
msgstr "Adapter les anniversaires aux fuseaux horaires, utile pour vos amis sur d'autres continents."
-#: ../../include/features.php:61
+#: ../../include/features.php:62
msgid "Expert Mode"
msgstr "Mode expert"
-#: ../../include/features.php:61
+#: ../../include/features.php:62
msgid "Enable Expert Mode to provide advanced configuration options"
msgstr "Activer le mode expert pour accéder aux options avancées"
-#: ../../include/features.php:62
+#: ../../include/features.php:63
msgid "Premium Channel"
msgstr "Canal VIP"
-#: ../../include/features.php:62
+#: ../../include/features.php:63
msgid ""
"Allows you to set restrictions and terms on those that connect with your "
"channel"
msgstr "Vous permet d'appliquer des règles et restrictions aux contacts de votre canal"
-#: ../../include/features.php:67
+#: ../../include/features.php:68
msgid "Post Composition Features"
msgstr "Fonctionnalités de composition"
-#: ../../include/features.php:70
+#: ../../include/features.php:71
msgid "Large Photos"
msgstr "Grandes photos"
-#: ../../include/features.php:70
+#: ../../include/features.php:71
msgid ""
"Include large (1024px) photo thumbnails in posts. If not enabled, use small "
"(640px) photo thumbnails"
msgstr "Inclure de grands aperçus (1024px) dans les messages. Si désactivé, inclure de petits aperçus (640px)."
-#: ../../include/features.php:71
+#: ../../include/features.php:72
msgid "Automatically import channel content from other channels or feeds"
msgstr "Importe automatiquement le contenus d'autres canaux ou flux dans le canal actif"
-#: ../../include/features.php:72
+#: ../../include/features.php:73
msgid "Even More Encryption"
msgstr "Encore plus de chiffrement"
-#: ../../include/features.php:72
+#: ../../include/features.php:73
msgid ""
"Allow optional encryption of content end-to-end with a shared secret key"
msgstr "Permettre le chiffrement optionnel du contenu de bout en bout au moyen d'un secret partagé"
-#: ../../include/features.php:73
+#: ../../include/features.php:74
msgid "Enable Voting Tools"
msgstr "Activer les outils de vote"
-#: ../../include/features.php:73
+#: ../../include/features.php:74
msgid "Provide a class of post which others can vote on"
msgstr "Fournit un type de publication sur lequel les utilisateurs peuvent voter"
-#: ../../include/features.php:74
+#: ../../include/features.php:75
msgid "Delayed Posting"
msgstr "Publication plus tard"
-#: ../../include/features.php:74
+#: ../../include/features.php:75
msgid "Allow posts to be published at a later date"
msgstr "Permettre de publier des messages à une date programmée"
-#: ../../include/features.php:75
+#: ../../include/features.php:76
msgid "Suppress Duplicate Posts/Comments"
msgstr "Supprimer les publications/commentaires en doublon"
-#: ../../include/features.php:75
+#: ../../include/features.php:76
msgid ""
"Prevent posts with identical content to be published with less than two "
"minutes in between submissions."
msgstr "Empêcher des messages aux contenus identiques d'être publiés à moins de deux minutes d'intervalle"
-#: ../../include/features.php:81
+#: ../../include/features.php:82
msgid "Network and Stream Filtering"
msgstr "Filtrage du réseau et des flux"
-#: ../../include/features.php:82
+#: ../../include/features.php:83
msgid "Search by Date"
msgstr "Chercher par date"
-#: ../../include/features.php:82
+#: ../../include/features.php:83
msgid "Ability to select posts by date ranges"
msgstr "Pouvoir choisir des publications par date"
-#: ../../include/features.php:83 ../../include/group.php:311
+#: ../../include/features.php:84 ../../include/group.php:311
msgid "Privacy Groups"
msgstr "Groupes d'accès"
-#: ../../include/features.php:83
+#: ../../include/features.php:84
msgid "Enable management and selection of privacy groups"
msgstr "Active la gestion et la sélection des groupes d'accès"
-#: ../../include/features.php:84
+#: ../../include/features.php:85 ../../include/widgets.php:281
+msgid "Saved Searches"
+msgstr "Recherches sauvegardées"
+
+#: ../../include/features.php:85
msgid "Save search terms for re-use"
msgstr "Sauvegarder des termes de recherche pour utilisation ultérieure"
-#: ../../include/features.php:85
+#: ../../include/features.php:86
msgid "Network Personal Tab"
msgstr "Onglet \"Me concernant\""
-#: ../../include/features.php:85
+#: ../../include/features.php:86
msgid "Enable tab to display only Network posts that you've interacted on"
msgstr "Activer un onglet affichant seulement les publications du réseau sur lesquelles vous êtes intervenu"
-#: ../../include/features.php:86
+#: ../../include/features.php:87
msgid "Network New Tab"
msgstr "Onglet \"nouveautés réseau\""
-#: ../../include/features.php:86
+#: ../../include/features.php:87
msgid "Enable tab to display all new Network activity"
msgstr "Activer un onglet présentant toute l'activité récente sur le réseau"
-#: ../../include/features.php:87
+#: ../../include/features.php:88
msgid "Affinity Tool"
msgstr "Gérer l'affinité"
-#: ../../include/features.php:87
+#: ../../include/features.php:88
msgid "Filter stream activity by depth of relationships"
msgstr "Filtrer le flux d'activité en fonction de la profondeur des relations"
-#: ../../include/features.php:88
+#: ../../include/features.php:89
msgid "Connection Filtering"
msgstr "Filtrage des contacts"
-#: ../../include/features.php:88
+#: ../../include/features.php:89
msgid "Filter incoming posts from connections based on keywords/content"
msgstr "Filtrer les publications entrantes de mes contacts sur la base de mots-clefs"
-#: ../../include/features.php:89
+#: ../../include/features.php:90
msgid "Show channel suggestions"
msgstr "Montrer les suggestions de canaux"
-#: ../../include/features.php:94
+#: ../../include/features.php:95
msgid "Post/Comment Tools"
msgstr "Gérer les publications/commentaires"
-#: ../../include/features.php:95
+#: ../../include/features.php:96
msgid "Community Tagging"
msgstr "Etiquetage communautaire"
-#: ../../include/features.php:95
+#: ../../include/features.php:96
msgid "Ability to tag existing posts"
msgstr "Permettre de marquer les publications existantes"
-#: ../../include/features.php:96
+#: ../../include/features.php:97
msgid "Post Categories"
msgstr "Catégoriser les publications"
-#: ../../include/features.php:96
+#: ../../include/features.php:97
msgid "Add categories to your posts"
msgstr "Ajouter des catégories à vos publications"
-#: ../../include/features.php:97
+#: ../../include/features.php:98
msgid "Emoji Reactions"
msgstr ""
-#: ../../include/features.php:97
+#: ../../include/features.php:98
msgid "Add emoji reaction ability to posts"
msgstr ""
-#: ../../include/features.php:98
+#: ../../include/features.php:99 ../../include/widgets.php:310
+#: ../../include/contact_widgets.php:53
+msgid "Saved Folders"
+msgstr "Dossiers sauvegardés"
+
+#: ../../include/features.php:99
msgid "Ability to file posts under folders"
msgstr "Permettre de classer les publications dans des dossiers"
-#: ../../include/features.php:99
+#: ../../include/features.php:100
msgid "Dislike Posts"
msgstr "\"Ne pas aimer\" les publications"
-#: ../../include/features.php:99
+#: ../../include/features.php:100
msgid "Ability to dislike posts/comments"
msgstr "Possibilité de \"ne pas aimer\" les publications/commentaires"
-#: ../../include/features.php:100
+#: ../../include/features.php:101
msgid "Star Posts"
msgstr "Pouvoir mettre en avant les publications"
-#: ../../include/features.php:100
+#: ../../include/features.php:101
msgid "Ability to mark special posts with a star indicator"
msgstr "Pouvoir marquer certaines publications d'une étoile"
-#: ../../include/features.php:101
+#: ../../include/features.php:102
msgid "Tag Cloud"
msgstr "Nuage de tags"
-#: ../../include/features.php:101
+#: ../../include/features.php:102
msgid "Provide a personal tag cloud on your channel page"
msgstr "Afficher un nuage de vos tags sur votre canal"
-#: ../../include/oembed.php:324
+#: ../../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 groupe supprimé portant ce nom a été ressuscité. Les permissions liées aux éléments existants <strong>peuvent</strong> s'appliquer au groupe et aux membres futurs. Si ce n'est pas ce que vous attendiez, merci de créer un autre groupe avec un nom différent."
+
+#: ../../include/group.php:248
+msgid "Add new connections to this privacy group"
+msgstr "Ajouter de nouveaux contacts à ce groupe d'accès"
+
+#: ../../include/group.php:289
+msgid "edit"
+msgstr "modifier"
+
+#: ../../include/group.php:312
+msgid "Edit group"
+msgstr "Modifier le groupe"
+
+#: ../../include/group.php:313
+msgid "Add privacy group"
+msgstr "Ajouter un groupe d'accès"
+
+#: ../../include/group.php:314
+msgid "Channels not in any privacy group"
+msgstr "Canaux n'étant dans aucun groupe d'accès"
+
+#: ../../include/group.php:316 ../../include/widgets.php:282
+msgid "add"
+msgstr "ajouter"
+
+#: ../../include/event.php:22 ../../include/event.php:69
+#: ../../include/bb2diaspora.php:485
+msgid "l F d, Y \\@ g:i A"
+msgstr "l d F Y \\à G\\hi"
+
+#: ../../include/event.php:30 ../../include/event.php:73
+#: ../../include/bb2diaspora.php:491
+msgid "Starts:"
+msgstr "Début&nbsp;:"
+
+#: ../../include/event.php:40 ../../include/event.php:77
+#: ../../include/bb2diaspora.php:499
+msgid "Finishes:"
+msgstr "Fin&nbsp;:"
+
+#: ../../include/event.php:814
+msgid "This event has been added to your calendar."
+msgstr "Cet évènement a été ajouté dans votre calendrier."
+
+#: ../../include/event.php:1014
+msgid "Not specified"
+msgstr "Non spécifié"
+
+#: ../../include/event.php:1015
+msgid "Needs Action"
+msgstr "Besoin d'une action"
+
+#: ../../include/event.php:1016
+msgid "Completed"
+msgstr "Terminé"
+
+#: ../../include/event.php:1017
+msgid "In Process"
+msgstr "En cours"
+
+#: ../../include/event.php:1018
+msgid "Cancelled"
+msgstr "Annulé"
+
+#: ../../include/account.php:28
+msgid "Not a valid email address"
+msgstr "Ce n'est pas une adresse de courriel valide"
+
+#: ../../include/account.php:30
+msgid "Your email domain is not among those allowed on this site"
+msgstr "Votre domaine de courriel ne fait pas partie de ceux autorisés par ce site"
+
+#: ../../include/account.php:36
+msgid "Your email address is already registered at this site."
+msgstr "Votre adresse de courriel est déjà inscrite sur ce site."
+
+#: ../../include/account.php:68
+msgid "An invitation is required."
+msgstr "Une invitation est requise."
+
+#: ../../include/account.php:72
+msgid "Invitation could not be verified."
+msgstr "Votre invitation n'a pas pu être vérifiée."
+
+#: ../../include/account.php:122
+msgid "Please enter the required information."
+msgstr "Merci d'entrer les informations requises."
+
+#: ../../include/account.php:189
+msgid "Failed to store account information."
+msgstr "Impossible de stocker les informations liées au compte."
+
+#: ../../include/account.php:249
+#, php-format
+msgid "Registration confirmation for %s"
+msgstr "Confirmation de l'inscription pour %s"
+
+#: ../../include/account.php:315
+#, php-format
+msgid "Registration request at %s"
+msgstr "Demande d'inscription sur %s"
+
+#: ../../include/account.php:339
+msgid "your registration password"
+msgstr "votre mot de passe d'inscription"
+
+#: ../../include/account.php:342 ../../include/account.php:402
+#, php-format
+msgid "Registration details for %s"
+msgstr "Détails de l'inscription pour %s"
+
+#: ../../include/account.php:414
+msgid "Account approved."
+msgstr "Compte approuvé."
+
+#: ../../include/account.php:454
+#, php-format
+msgid "Registration revoked for %s"
+msgstr "Inscription révoquée pour %s"
+
+#: ../../include/account.php:739 ../../include/account.php:741
+msgid "Click here to upgrade."
+msgstr "Cliquez ici pour mettre à jour."
+
+#: ../../include/account.php:747
+msgid "This action exceeds the limits set by your subscription plan."
+msgstr "Cette action outrepasserait les limites prévues par votre forfait."
+
+#: ../../include/account.php:752
+msgid "This action is not available under your subscription plan."
+msgstr "Cette action n'est pas disponible avec votre forfait."
+
+#: ../../include/follow.php:27
+msgid "Channel is blocked on this site."
+msgstr "Ce canal est bloqué sur ce site."
+
+#: ../../include/follow.php:32
+msgid "Channel location missing."
+msgstr "Emplacement du canal introuvable."
+
+#: ../../include/follow.php:80
+msgid "Response from remote channel was incomplete."
+msgstr "La réponse du canal distant était incomplète."
+
+#: ../../include/follow.php:97
+msgid "Channel was deleted and no longer exists."
+msgstr "Le canal a été supprimé et n'existe plus."
+
+#: ../../include/follow.php:147 ../../include/follow.php:183
+msgid "Protocol disabled."
+msgstr "Protocole désactivé."
+
+#: ../../include/follow.php:171
+msgid "Channel discovery failed."
+msgstr "La tentative d'accéder au canal a échoué."
+
+#: ../../include/follow.php:210
+msgid "Cannot connect to yourself."
+msgstr "Ne peut pas se connecter à vous."
+
+#: ../../include/attach.php:247 ../../include/attach.php:333
+msgid "Item was not found."
+msgstr "Élément introuvable."
+
+#: ../../include/attach.php:499
+msgid "No source file."
+msgstr "Pas de fichier source."
+
+#: ../../include/attach.php:521
+msgid "Cannot locate file to replace"
+msgstr "Impossible de trouver le fichier à remplacer."
+
+#: ../../include/attach.php:539
+msgid "Cannot locate file to revise/update"
+msgstr "Impossible de trouver le fichier à corriger/mettre à jour"
+
+#: ../../include/attach.php:674
+#, php-format
+msgid "File exceeds size limit of %d"
+msgstr "Le fichier dépasse la taille limite de %d"
+
+#: ../../include/attach.php:688
+#, php-format
+msgid "You have reached your limit of %1$.0f Mbytes attachment storage."
+msgstr "Vous avez atteint votre limite de %1$.0f méga-octets autorisés pour le stockage des pièces-jointes."
+
+#: ../../include/attach.php:846
+msgid "File upload failed. Possible system limit or action terminated."
+msgstr "Envoi du fichier impossible. Limite système ou action avortée."
+
+#: ../../include/attach.php:859
+msgid "Stored file could not be verified. Upload failed."
+msgstr "Le fichier stocké n'a pu être vérifié. Echec de l'envoi."
+
+#: ../../include/attach.php:915 ../../include/attach.php:931
+msgid "Path not available."
+msgstr "Chemin non disponible."
+
+#: ../../include/attach.php:977 ../../include/attach.php:1129
+msgid "Empty pathname"
+msgstr "Chemin vide"
+
+#: ../../include/attach.php:1003
+msgid "duplicate filename or path"
+msgstr "doublon de chemin ou de fichier"
+
+#: ../../include/attach.php:1025
+msgid "Path not found."
+msgstr "Chemin introuvable."
+
+#: ../../include/attach.php:1083
+msgid "mkdir failed."
+msgstr "mkdir a échoué."
+
+#: ../../include/attach.php:1087
+msgid "database storage failed."
+msgstr "l'écriture dans la base de données a échoué."
+
+#: ../../include/attach.php:1135
+msgid "Empty path"
+msgstr "Chemin vide"
+
+#: ../../include/bbcode.php:123 ../../include/bbcode.php:878
+#: ../../include/bbcode.php:881 ../../include/bbcode.php:886
+#: ../../include/bbcode.php:889 ../../include/bbcode.php:892
+#: ../../include/bbcode.php:895 ../../include/bbcode.php:900
+#: ../../include/bbcode.php:903 ../../include/bbcode.php:908
+#: ../../include/bbcode.php:911 ../../include/bbcode.php:914
+#: ../../include/bbcode.php:917
+msgid "Image/photo"
+msgstr "Image/photo"
+
+#: ../../include/bbcode.php:162 ../../include/bbcode.php:928
+msgid "Encrypted content"
+msgstr "Contenu chiffré"
+
+#: ../../include/bbcode.php:178
+#, php-format
+msgid "Install %s element: "
+msgstr "Installer %s élément"
+
+#: ../../include/bbcode.php:182
+#, php-format
+msgid ""
+"This post contains an installable %s element, however you lack permissions "
+"to install it on this site."
+msgstr "Ce message contient un élément installable %s, mais vous n'avez pas l'autorisation de l'installer sur ce site."
+
+#: ../../include/bbcode.php:261
+#, php-format
+msgid "%1$s wrote the following %2$s %3$s"
+msgstr "%1$s a écrit %2$s qui suit %3$s"
+
+#: ../../include/bbcode.php:338 ../../include/bbcode.php:346
+msgid "Click to open/close"
+msgstr "Cliquer pour ouvrir/fermer"
+
+#: ../../include/bbcode.php:346
+msgid "spoiler"
+msgstr ""
+
+#: ../../include/bbcode.php:619
+msgid "Different viewers will see this text differently"
+msgstr "Ce texte aura un rendu différent en fonction des utilisateurs"
+
+#: ../../include/bbcode.php:866
+msgid "$1 wrote:"
+msgstr "$1 a écrit&nbsp;:"
+
+#: ../../include/items.php:897 ../../include/items.php:942
+msgid "(Unknown)"
+msgstr "(Inconnu)"
+
+#: ../../include/items.php:1141
+msgid "Visible to anybody on the internet."
+msgstr "Visible pour tout le monde sur internet."
+
+#: ../../include/items.php:1143
+msgid "Visible to you only."
+msgstr "Visible pour vous seulement."
+
+#: ../../include/items.php:1145
+msgid "Visible to anybody in this network."
+msgstr "Visible pour tout le monde sur ce réseau."
+
+#: ../../include/items.php:1147
+msgid "Visible to anybody authenticated."
+msgstr "Visible aux utilisateurs authentifiés."
+
+#: ../../include/items.php:1149
+#, php-format
+msgid "Visible to anybody on %s."
+msgstr "Visible pour tous sur %s."
+
+#: ../../include/items.php:1151
+msgid "Visible to all connections."
+msgstr "Visible pour tous les contacts."
+
+#: ../../include/items.php:1153
+msgid "Visible to approved connections."
+msgstr "Visible aux contacts approuvés."
+
+#: ../../include/items.php:1155
+msgid "Visible to specific connections."
+msgstr "Visible pour certains contacts."
+
+#: ../../include/items.php:3918
+msgid "Privacy group is empty."
+msgstr "Groupe d'accès vide."
+
+#: ../../include/items.php:3925
+#, php-format
+msgid "Privacy group: %s"
+msgstr "Groupe d'accès&nbsp;: %s"
+
+#: ../../include/items.php:3937
+msgid "Connection not found."
+msgstr "Contact non trouvé."
+
+#: ../../include/items.php:4290
+msgid "profile photo"
+msgstr "photo de profil"
+
+#: ../../include/oembed.php:336
msgid "Embedded content"
msgstr "Contenu imbriqué"
-#: ../../include/oembed.php:333
+#: ../../include/oembed.php:345
msgid "Embedding disabled"
msgstr "Imbrication désactivée"
-#: ../../include/acl_selectors.php:271
-msgid "Who can see this?"
-msgstr ""
+#: ../../include/widgets.php:103
+msgid "System"
+msgstr "Système"
-#: ../../include/acl_selectors.php:272
-msgid "Custom selection"
+#: ../../include/widgets.php:106
+msgid "New App"
msgstr ""
-#: ../../include/acl_selectors.php:273
-msgid ""
-"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit"
-" the scope of \"Show\"."
+#: ../../include/widgets.php:154
+msgid "Suggestions"
+msgstr "Suggestions"
+
+#: ../../include/widgets.php:155
+msgid "See more..."
+msgstr "Voir plus..."
+
+#: ../../include/widgets.php:175
+#, php-format
+msgid "You have %1$.0f of %2$.0f allowed connections."
+msgstr "Vous avez %1$.0f sur %2$.0f contacts autorisés."
+
+#: ../../include/widgets.php:181
+msgid "Add New Connection"
+msgstr "Ajouter un nouveau contact"
+
+#: ../../include/widgets.php:182
+msgid "Enter channel address"
+msgstr "Saisissez l'adresse du canal"
+
+#: ../../include/widgets.php:183
+msgid "Examples: bob@example.com, https://example.com/barbara"
+msgstr "Exemples&nbsp;: pierre@exemple.com, https://exemple.com/sophie"
+
+#: ../../include/widgets.php:199
+msgid "Notes"
+msgstr "Notes"
+
+#: ../../include/widgets.php:273
+msgid "Remove term"
+msgstr "Retirer le terme"
+
+#: ../../include/widgets.php:313 ../../include/widgets.php:432
+#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94
+msgid "Everything"
+msgstr "Tout"
+
+#: ../../include/widgets.php:354
+msgid "Archives"
+msgstr "Archives"
+
+#: ../../include/widgets.php:516
+msgid "Refresh"
+msgstr "Actualiser"
+
+#: ../../include/widgets.php:556
+msgid "Account settings"
+msgstr "Paramètres du compte"
+
+#: ../../include/widgets.php:562
+msgid "Channel settings"
+msgstr "Paramètres du canal"
+
+#: ../../include/widgets.php:571
+msgid "Additional features"
+msgstr "Fonctionnalités supplémentaires"
+
+#: ../../include/widgets.php:578
+msgid "Feature/Addon settings"
+msgstr "Paramètres des extensions/greffons"
+
+#: ../../include/widgets.php:584
+msgid "Display settings"
+msgstr "Paramètres d'affichage"
+
+#: ../../include/widgets.php:591
+msgid "Manage locations"
msgstr ""
-#: ../../include/acl_selectors.php:274
-msgid "Show"
-msgstr "Montrer"
+#: ../../include/widgets.php:600
+msgid "Export channel"
+msgstr "Exporter le canal"
-#: ../../include/acl_selectors.php:275
-msgid "Don't show"
-msgstr "Cacher"
+#: ../../include/widgets.php:607
+msgid "Connected apps"
+msgstr "Applications connectées"
-#: ../../include/acl_selectors.php:281
-msgid "Other networks and post services"
-msgstr "Autres réseaux et services de messagerie"
+#: ../../include/widgets.php:631
+msgid "Premium Channel Settings"
+msgstr "Paramètres de canal VIP"
-#: ../../include/acl_selectors.php:311
-#, php-format
-msgid ""
-"Post permissions %s cannot be changed %s after a post is shared.</br />These"
-" permissions set who is allowed to view the post."
+#: ../../include/widgets.php:660
+msgid "Private Mail Menu"
+msgstr "Menu des messages privés"
+
+#: ../../include/widgets.php:662
+msgid "Combined View"
+msgstr "Vue combinée"
+
+#: ../../include/widgets.php:694 ../../include/widgets.php:706
+msgid "Conversations"
+msgstr "Conversations"
+
+#: ../../include/widgets.php:698
+msgid "Received Messages"
+msgstr "Messages reçus"
+
+#: ../../include/widgets.php:702
+msgid "Sent Messages"
+msgstr "Messages envoyés"
+
+#: ../../include/widgets.php:716
+msgid "No messages."
+msgstr "Pas de message."
+
+#: ../../include/widgets.php:734
+msgid "Delete conversation"
+msgstr "Supprimer la conversation"
+
+#: ../../include/widgets.php:760
+msgid "Events Tools"
+msgstr "Outils Evènements"
+
+#: ../../include/widgets.php:761
+msgid "Export Calendar"
+msgstr "Exporter le calendrier"
+
+#: ../../include/widgets.php:762
+msgid "Import Calendar"
+msgstr "Importer un calendrier"
+
+#: ../../include/widgets.php:840
+msgid "Overview"
msgstr ""
-#: ../../include/auth.php:105
-msgid "Logged out."
-msgstr "Deconnecté."
+#: ../../include/widgets.php:847
+msgid "Chat Members"
+msgstr ""
-#: ../../include/auth.php:212
-msgid "Failed authentication"
-msgstr "Échec de l'authentification"
+#: ../../include/widgets.php:869
+msgid "Wiki List"
+msgstr ""
-#: ../../include/datetime.php:135
-msgid "Birthday"
-msgstr "Anniversaire"
+#: ../../include/widgets.php:907
+msgid "Wiki Pages"
+msgstr ""
-#: ../../include/datetime.php:137
-msgid "Age: "
-msgstr "Age&nbsp;:"
+#: ../../include/widgets.php:942
+msgid "Bookmarked Chatrooms"
+msgstr "Salons favoris"
-#: ../../include/datetime.php:139
-msgid "YYYY-MM-DD or MM-DD"
-msgstr "AAAA-MM-JJ ou MM-JJ"
+#: ../../include/widgets.php:965
+msgid "Suggested Chatrooms"
+msgstr "Salons suggérés"
-#: ../../include/datetime.php:272 ../../boot.php:2470
-msgid "never"
-msgstr "jamais"
+#: ../../include/widgets.php:1111 ../../include/widgets.php:1223
+msgid "photo/image"
+msgstr "photo/image"
-#: ../../include/datetime.php:278
-msgid "less than a second ago"
-msgstr "à l'instant"
+#: ../../include/widgets.php:1166
+msgid "Click to show more"
+msgstr "Cliquer pour voir plus"
-#: ../../include/datetime.php:296
-#, php-format
-msgctxt "e.g. 22 hours ago, 1 minute ago"
-msgid "%1$d %2$s ago"
-msgstr "il y a %1$d %2$s"
+#: ../../include/widgets.php:1317
+msgid "Rating Tools"
+msgstr "Outils d'évaluation"
-#: ../../include/datetime.php:307
-msgctxt "relative_date"
-msgid "year"
-msgid_plural "years"
-msgstr[0] "an"
-msgstr[1] "ans"
+#: ../../include/widgets.php:1321 ../../include/widgets.php:1323
+msgid "Rate Me"
+msgstr "M'évaluer"
-#: ../../include/datetime.php:310
-msgctxt "relative_date"
-msgid "month"
-msgid_plural "months"
-msgstr[0] "mois"
-msgstr[1] "mois"
+#: ../../include/widgets.php:1326
+msgid "View Ratings"
+msgstr "Voir mes évaluations"
-#: ../../include/datetime.php:313
-msgctxt "relative_date"
-msgid "week"
-msgid_plural "weeks"
-msgstr[0] "semaine"
-msgstr[1] "semaines"
+#: ../../include/widgets.php:1410
+msgid "Forums"
+msgstr "Membres du forum"
-#: ../../include/datetime.php:316
-msgctxt "relative_date"
-msgid "day"
-msgid_plural "days"
-msgstr[0] "jour"
-msgstr[1] "jours"
+#: ../../include/widgets.php:1439
+msgid "Tasks"
+msgstr "Tâches"
-#: ../../include/datetime.php:319
-msgctxt "relative_date"
-msgid "hour"
-msgid_plural "hours"
-msgstr[0] "heure"
-msgstr[1] "heures"
+#: ../../include/widgets.php:1448
+msgid "Documentation"
+msgstr "Documentation"
-#: ../../include/datetime.php:322
-msgctxt "relative_date"
-msgid "minute"
-msgid_plural "minutes"
-msgstr[0] "minute"
-msgstr[1] "minutes"
+#: ../../include/widgets.php:1450
+msgid "Project/Site Information"
+msgstr "Information sur le site/projet"
-#: ../../include/datetime.php:325
-msgctxt "relative_date"
-msgid "second"
-msgid_plural "seconds"
-msgstr[0] "seconde"
-msgstr[1] "secondes"
+#: ../../include/widgets.php:1451
+msgid "For Members"
+msgstr "Pour les membres"
-#: ../../include/datetime.php:562
-#, php-format
-msgid "%1$s's birthday"
-msgstr "Anniversaire de %1$s"
+#: ../../include/widgets.php:1452
+msgid "For Administrators"
+msgstr "Pour les administrateurs"
-#: ../../include/datetime.php:563
-#, php-format
-msgid "Happy Birthday %1$s"
-msgstr "Joyeux Anniversaire %1$s"
+#: ../../include/widgets.php:1453
+msgid "For Developers"
+msgstr "Pour les développeurs"
-#: ../../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 groupe supprimé portant ce nom a été ressuscité. Les permissions liées aux éléments existants <strong>peuvent</strong> s'appliquer au groupe et aux membres futurs. Si ce n'est pas ce que vous attendiez, merci de créer un autre groupe avec un nom différent."
+#: ../../include/widgets.php:1477 ../../include/widgets.php:1515
+msgid "Member registrations waiting for confirmation"
+msgstr ""
-#: ../../include/group.php:248
-msgid "Add new connections to this privacy group"
-msgstr "Ajouter de nouveaux contacts à ce groupe d'accès"
+#: ../../include/widgets.php:1483
+msgid "Inspect queue"
+msgstr "Analyser la file d'attente"
-#: ../../include/group.php:289
-msgid "edit"
-msgstr "modifier"
+#: ../../include/widgets.php:1485
+msgid "DB updates"
+msgstr "Mises à jour BDD"
-#: ../../include/group.php:312
-msgid "Edit group"
-msgstr "Modifier le groupe"
+#: ../../include/widgets.php:1511
+msgid "Plugin Features"
+msgstr "Fonctionnalités des greffons"
-#: ../../include/group.php:313
-msgid "Add privacy group"
-msgstr "Ajouter un groupe d'accès"
+#: ../../include/activities.php:41
+msgid " and "
+msgstr "et"
-#: ../../include/group.php:314
-msgid "Channels not in any privacy group"
-msgstr "Canaux n'étant dans aucun groupe d'accès"
+#: ../../include/activities.php:49
+msgid "public profile"
+msgstr "profil public"
+
+#: ../../include/activities.php:58
+#, php-format
+msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
+msgstr "%1$s a changé %2$s en &ldquo;%3$s&rdquo;"
+
+#: ../../include/activities.php:59
+#, php-format
+msgid "Visit %1$s's %2$s"
+msgstr "Visiter %2$s de %1$s"
+
+#: ../../include/activities.php:62
+#, php-format
+msgid "%1$s has an updated %2$s, changing %3$s."
+msgstr "%1$s a mis à jour %2$s, modifiant %3$s."
+
+#: ../../include/bb2diaspora.php:398
+msgid "Attachments:"
+msgstr "Pièces jointes&nbsp;:"
+
+#: ../../include/bb2diaspora.php:487
+msgid "$Projectname event notification:"
+msgstr "Notification d'événement de $Projectname&nbsp;:"
#: ../../include/js_strings.php:5
msgid "Delete this item?"
msgstr "Supprimer cet élément?"
#: ../../include/js_strings.php:8
-msgid "[-] show less"
-msgstr "[-] montrer moins"
+#, php-format
+msgid "%s show less"
+msgstr ""
#: ../../include/js_strings.php:9
-msgid "[+] expand"
-msgstr "[+] déplier"
+#, php-format
+msgid "%s expand"
+msgstr ""
#: ../../include/js_strings.php:10
-msgid "[-] collapse"
-msgstr "[-] replier"
+#, php-format
+msgid "%s collapse"
+msgstr ""
#: ../../include/js_strings.php:11
msgid "Password too short"
@@ -9359,277 +9610,222 @@ msgctxt "calendar"
msgid "All day"
msgstr "Toute la journée"
-#: ../../include/network.php:657
-msgid "view full size"
-msgstr "voir en taille réelle"
-
-#: ../../include/network.php:1885
-msgid "No Subject"
-msgstr "Pas d'objet"
-
-#: ../../include/network.php:2146 ../../include/network.php:2147
-msgid "Friendica"
-msgstr "Friendica"
-
-#: ../../include/network.php:2148
-msgid "OStatus"
-msgstr "OStatus"
-
-#: ../../include/network.php:2149
-msgid "GNU-Social"
-msgstr ""
-
-#: ../../include/network.php:2150
-msgid "RSS/Atom"
-msgstr "RSS/Atom"
-
-#: ../../include/network.php:2152
-msgid "Diaspora"
-msgstr "Diaspora"
-
-#: ../../include/network.php:2153
-msgid "Facebook"
-msgstr "Facebook"
-
-#: ../../include/network.php:2154
-msgid "Zot"
-msgstr "Zot"
-
-#: ../../include/network.php:2155
-msgid "LinkedIn"
-msgstr "Linkedin"
-
-#: ../../include/network.php:2156
-msgid "XMPP/IM"
-msgstr "XMPP/IM"
-
-#: ../../include/network.php:2157
-msgid "MySpace"
-msgstr "MySpace"
-
-#: ../../include/photos.php:110
+#: ../../include/contact_widgets.php:11
#, php-format
-msgid "Image exceeds website size limit of %lu bytes"
-msgstr "L'image dépasse la taille limite de %lu octets"
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] "%d invitation disponible"
+msgstr[1] "%d invitations disponibles"
-#: ../../include/photos.php:117
-msgid "Image file is empty."
-msgstr "L'image est vide."
+#: ../../include/contact_widgets.php:19
+msgid "Find Channels"
+msgstr "Trouver des canaux"
-#: ../../include/photos.php:255
-msgid "Photo storage failed."
-msgstr "Le stockage de l'image a échoué."
+#: ../../include/contact_widgets.php:20
+msgid "Enter name or interest"
+msgstr "Saisir nom ou centre d'intérêt"
-#: ../../include/photos.php:295
-msgid "a new photo"
-msgstr "une nouvelle photo"
+#: ../../include/contact_widgets.php:21
+msgid "Connect/Follow"
+msgstr "Ajouter/Suivre"
-#: ../../include/photos.php:299
-#, php-format
-msgctxt "photo_upload"
-msgid "%1$s posted %2$s to %3$s"
-msgstr "%1$s a publié %2$s pour %3$s"
+#: ../../include/contact_widgets.php:22
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr "Exemples: Guillaume Martin, Course à pieds"
-#: ../../include/photos.php:506
-msgid "Upload New Photos"
-msgstr "Ajouter des photos"
+#: ../../include/contact_widgets.php:26
+msgid "Random Profile"
+msgstr "Un profil au hasard"
-#: ../../include/zot.php:699
-msgid "Invalid data packet"
-msgstr "Paquet de données invalide"
+#: ../../include/contact_widgets.php:27
+msgid "Invite Friends"
+msgstr "Inviter des amis"
-#: ../../include/zot.php:715
-msgid "Unable to verify channel signature"
-msgstr "Impossible de vérifier la signature du canal"
+#: ../../include/contact_widgets.php:29
+msgid "Advanced example: name=fred and country=iceland"
+msgstr "Exemple avancé&nbsp;: name=fred and country=iceland"
-#: ../../include/zot.php:2363
+#: ../../include/contact_widgets.php:122
#, php-format
-msgid "Unable to verify site signature for %s"
-msgstr "Impossible de vérifier la signature de site pour %s"
-
-#: ../../include/zot.php:3712
-msgid "invalid target signature"
-msgstr "signature de la cible invalide"
-
-#: ../../include/page_widgets.php:6
-msgid "New Page"
-msgstr "Nouvelle page"
-
-#: ../../include/page_widgets.php:43
-msgid "Title"
-msgstr "Titre"
-
-#: ../../include/permissions.php:26
-msgid "Can view my normal stream and posts"
-msgstr "Peut voir les publications ordinaires sur mon canal."
-
-#: ../../include/permissions.php:27
-msgid "Can view my default channel profile"
-msgstr "Peut voir le profil du canal par défaut."
-
-#: ../../include/permissions.php:28
-msgid "Can view my connections"
-msgstr "Peut voir mes contacts"
-
-#: ../../include/permissions.php:29
-msgid "Can view my file storage and photos"
-msgstr "Peut voir mes fichiers et photos"
+msgid "%d connection in common"
+msgid_plural "%d connections in common"
+msgstr[0] "%d contact en commun"
+msgstr[1] "%d contacts en commun"
-#: ../../include/permissions.php:30
-msgid "Can view my webpages"
-msgstr "Peut voir mes pages web"
+#: ../../include/contact_widgets.php:127
+msgid "show more"
+msgstr "montrer plus"
-#: ../../include/permissions.php:33
-msgid "Can send me their channel stream and posts"
-msgstr "Peuvent m'envoyer leur flux et les publications de leur canal"
+#: ../../include/dir_fns.php:141
+msgid "Directory Options"
+msgstr "Options d'annuaire"
-#: ../../include/permissions.php:34
-msgid "Can post on my channel page (\"wall\")"
-msgstr "Peuvent poster sur la page de mon canal (\"mur\")"
+#: ../../include/dir_fns.php:143
+msgid "Safe Mode"
+msgstr "Mode sûr"
-#: ../../include/permissions.php:35
-msgid "Can comment on or like my posts"
-msgstr "Peuvent commenter et/ou aimer mes publications"
+#: ../../include/dir_fns.php:144
+msgid "Public Forums Only"
+msgstr "Les forums publics uniquement"
-#: ../../include/permissions.php:36
-msgid "Can send me private mail messages"
-msgstr "Peuvent m'envoyer des messages privés"
+#: ../../include/dir_fns.php:145
+msgid "This Website Only"
+msgstr "Ce site uniquement"
-#: ../../include/permissions.php:37
-msgid "Can like/dislike stuff"
-msgstr "Peuvent aimer/ne pas aimer"
+#: ../../include/message.php:20
+msgid "No recipient provided."
+msgstr "Pas de destinataire."
-#: ../../include/permissions.php:37
-msgid "Profiles and things other than posts/comments"
-msgstr "Profils et autres excluant les publications/commentaires."
+#: ../../include/message.php:25
+msgid "[no subject]"
+msgstr "[sans objet]"
-#: ../../include/permissions.php:39
-msgid "Can forward to all my channel contacts via post @mentions"
-msgstr "Peut faire suivre à tous les contacts de mon canal via \"@mention\""
+#: ../../include/message.php:45
+msgid "Unable to determine sender."
+msgstr "Impossible de déterminer l'émetteur."
-#: ../../include/permissions.php:39
-msgid "Advanced - useful for creating group forum channels"
-msgstr "Avancé - utile pour les canaux de type \"forum/groupe\""
+#: ../../include/message.php:222
+msgid "Stored post could not be verified."
+msgstr "Le message stocké n'a pas pu être vérifié."
-#: ../../include/permissions.php:40
-msgid "Can chat with me (when available)"
-msgstr "Peut discuter avec moi (quand disponibie)"
+#: ../../include/acl_selectors.php:269
+msgid "Who can see this?"
+msgstr ""
-#: ../../include/permissions.php:41
-msgid "Can write to my file storage and photos"
-msgstr "Peut charger des fichiers et des photos dans mon canal"
+#: ../../include/acl_selectors.php:270
+msgid "Custom selection"
+msgstr ""
-#: ../../include/permissions.php:42
-msgid "Can edit my webpages"
-msgstr "Peut modifier mes pages web"
+#: ../../include/acl_selectors.php:271
+msgid ""
+"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit"
+" the scope of \"Show\"."
+msgstr ""
-#: ../../include/permissions.php:44
-msgid "Can source my public posts in derived channels"
-msgstr "Peut rediriger mes publications publiques vers des canaux dérivés"
+#: ../../include/acl_selectors.php:272
+msgid "Show"
+msgstr "Montrer"
-#: ../../include/permissions.php:44
-msgid "Somewhat advanced - very useful in open communities"
-msgstr "Plutôt avancé - très utile dans les communautés ouvertes"
+#: ../../include/acl_selectors.php:273
+msgid "Don't show"
+msgstr "Cacher"
-#: ../../include/permissions.php:46
-msgid "Can administer my channel resources"
-msgstr "Peut administrer les ressources de mon canal"
+#: ../../include/acl_selectors.php:279
+msgid "Other networks and post services"
+msgstr "Autres réseaux et services de messagerie"
-#: ../../include/permissions.php:46
+#: ../../include/acl_selectors.php:309
+#, php-format
msgid ""
-"Extremely advanced. Leave this alone unless you know what you are doing"
-msgstr "Très avancé. Ne pas toucher, sauf si vous savez ce que vous faîtes"
-
-#: ../../include/permissions.php:877
-msgid "Social Networking"
-msgstr "Réseau social"
+"Post permissions %s cannot be changed %s after a post is shared.</br />These"
+" permissions set who is allowed to view the post."
+msgstr ""
-#: ../../include/permissions.php:877
-msgid "Social - Mostly Public"
-msgstr "Social - surtout public"
+#: ../../include/datetime.php:135
+msgid "Birthday"
+msgstr "Anniversaire"
-#: ../../include/permissions.php:877
-msgid "Social - Restricted"
-msgstr "Social - restreint"
+#: ../../include/datetime.php:137
+msgid "Age: "
+msgstr "Age&nbsp;:"
-#: ../../include/permissions.php:877
-msgid "Social - Private"
-msgstr "Social - privé"
+#: ../../include/datetime.php:139
+msgid "YYYY-MM-DD or MM-DD"
+msgstr "AAAA-MM-JJ ou MM-JJ"
-#: ../../include/permissions.php:878
-msgid "Community Forum"
-msgstr "Forum communautaire"
+#: ../../include/datetime.php:272 ../../boot.php:2479
+msgid "never"
+msgstr "jamais"
-#: ../../include/permissions.php:878
-msgid "Forum - Mostly Public"
-msgstr "Forum - surtout public"
+#: ../../include/datetime.php:278
+msgid "less than a second ago"
+msgstr "à l'instant"
-#: ../../include/permissions.php:878
-msgid "Forum - Restricted"
-msgstr "Forum - restreint"
+#: ../../include/datetime.php:296
+#, php-format
+msgctxt "e.g. 22 hours ago, 1 minute ago"
+msgid "%1$d %2$s ago"
+msgstr "il y a %1$d %2$s"
-#: ../../include/permissions.php:878
-msgid "Forum - Private"
-msgstr "Forum - privé"
+#: ../../include/datetime.php:307
+msgctxt "relative_date"
+msgid "year"
+msgid_plural "years"
+msgstr[0] "an"
+msgstr[1] "ans"
-#: ../../include/permissions.php:879
-msgid "Feed Republish"
-msgstr "Republication de flux"
+#: ../../include/datetime.php:310
+msgctxt "relative_date"
+msgid "month"
+msgid_plural "months"
+msgstr[0] "mois"
+msgstr[1] "mois"
-#: ../../include/permissions.php:879
-msgid "Feed - Mostly Public"
-msgstr "Flux - surtout public"
+#: ../../include/datetime.php:313
+msgctxt "relative_date"
+msgid "week"
+msgid_plural "weeks"
+msgstr[0] "semaine"
+msgstr[1] "semaines"
-#: ../../include/permissions.php:879
-msgid "Feed - Restricted"
-msgstr "Flux - restreint"
+#: ../../include/datetime.php:316
+msgctxt "relative_date"
+msgid "day"
+msgid_plural "days"
+msgstr[0] "jour"
+msgstr[1] "jours"
-#: ../../include/permissions.php:880
-msgid "Special Purpose"
-msgstr "Utilisation spécifique"
+#: ../../include/datetime.php:319
+msgctxt "relative_date"
+msgid "hour"
+msgid_plural "hours"
+msgstr[0] "heure"
+msgstr[1] "heures"
-#: ../../include/permissions.php:880
-msgid "Special - Celebrity/Soapbox"
-msgstr "Spécial - célébrité/promotion"
+#: ../../include/datetime.php:322
+msgctxt "relative_date"
+msgid "minute"
+msgid_plural "minutes"
+msgstr[0] "minute"
+msgstr[1] "minutes"
-#: ../../include/permissions.php:880
-msgid "Special - Group Repository"
-msgstr "Spécial - dépôt partagé"
+#: ../../include/datetime.php:325
+msgctxt "relative_date"
+msgid "second"
+msgid_plural "seconds"
+msgstr[0] "seconde"
+msgstr[1] "secondes"
-#: ../../include/permissions.php:881
-msgid "Custom/Expert Mode"
-msgstr "Mode expert/spécifique"
+#: ../../include/datetime.php:562
+#, php-format
+msgid "%1$s's birthday"
+msgstr "Anniversaire de %1$s"
-#: ../../include/activities.php:41
-msgid " and "
-msgstr "et"
+#: ../../include/datetime.php:563
+#, php-format
+msgid "Happy Birthday %1$s"
+msgstr "Joyeux Anniversaire %1$s"
-#: ../../include/activities.php:49
-msgid "public profile"
-msgstr "profil public"
+#: ../../include/api.php:1327
+msgid "Public Timeline"
+msgstr "Fil public"
-#: ../../include/activities.php:58
-#, php-format
-msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
-msgstr "%1$s a changé %2$s en &ldquo;%3$s&rdquo;"
+#: ../../include/zot.php:697
+msgid "Invalid data packet"
+msgstr "Paquet de données invalide"
-#: ../../include/activities.php:59
-#, php-format
-msgid "Visit %1$s's %2$s"
-msgstr "Visiter %2$s de %1$s"
+#: ../../include/zot.php:713
+msgid "Unable to verify channel signature"
+msgstr "Impossible de vérifier la signature du canal"
-#: ../../include/activities.php:62
+#: ../../include/zot.php:2326
#, php-format
-msgid "%1$s has an updated %2$s, changing %3$s."
-msgstr "%1$s a mis à jour %2$s, modifiant %3$s."
-
-#: ../../include/bb2diaspora.php:398
-msgid "Attachments:"
-msgstr "Pièces jointes&nbsp;:"
+msgid "Unable to verify site signature for %s"
+msgstr "Impossible de vérifier la signature de site pour %s"
-#: ../../include/bb2diaspora.php:487
-msgid "$Projectname event notification:"
-msgstr "Notification d'événement de $Projectname&nbsp;:"
+#: ../../include/zot.php:3703
+msgid "invalid target signature"
+msgstr "signature de la cible invalide"
#: ../../view/theme/redbasic/php/config.php:82
msgid "Focus (Hubzilla default)"
@@ -9767,62 +9963,66 @@ msgstr "Définir la taille de la photo de l'auteur d'une conversation"
msgid "Set size of followup author photos"
msgstr "Définir la taille de la photo de l'auteur d'une réponse"
-#: ../../boot.php:1162
+#: ../../boot.php:1163
#, php-format
msgctxt "opensearch"
msgid "Search %1$s (%2$s)"
msgstr ""
-#: ../../boot.php:1162
+#: ../../boot.php:1163
msgctxt "opensearch"
msgid "$Projectname"
msgstr ""
-#: ../../boot.php:1480
+#: ../../boot.php:1481
#, php-format
msgid "Update %s failed. See error logs."
msgstr "La mise-à-jour %s a échoué. Merci de consulter les journaux d'erreur."
-#: ../../boot.php:1483
+#: ../../boot.php:1484
#, php-format
msgid "Update Error at %s"
msgstr "Erreur de mise à jour sur %s"
-#: ../../boot.php:1684
+#: ../../boot.php:1685
msgid ""
"Create an account to access services and applications within the Hubzilla"
msgstr "Créez un compte pour pouvoir accéder aux services et applications de Hubzilla"
#: ../../boot.php:1706
+msgid "Login/Email"
+msgstr ""
+
+#: ../../boot.php:1707
msgid "Password"
msgstr "Mot de passe"
-#: ../../boot.php:1707
+#: ../../boot.php:1708
msgid "Remember me"
msgstr "Se souvenir de moi"
-#: ../../boot.php:1710
+#: ../../boot.php:1711
msgid "Forgot your password?"
msgstr "Mot de passe oublié&nbsp;?"
-#: ../../boot.php:2276
+#: ../../boot.php:2277
msgid "toggle mobile"
msgstr "(dés)activer mobile"
-#: ../../boot.php:2425
+#: ../../boot.php:2432
msgid "Website SSL certificate is not valid. Please correct."
msgstr "Le certificat SSL n'est pas valide. Corrigez le."
-#: ../../boot.php:2428
+#: ../../boot.php:2435
#, php-format
msgid "[hubzilla] Website SSL error for %s"
msgstr "[hubzilla] Erreur SSL pour %s"
-#: ../../boot.php:2469
+#: ../../boot.php:2478
msgid "Cron/Scheduled tasks not running."
msgstr "Les taches planifiées ne tournent pas."
-#: ../../boot.php:2473
+#: ../../boot.php:2482
#, php-format
msgid "[hubzilla] Cron tasks not running on %s"
msgstr "[hubzilla] Les tâches planifiées ne tournent pas sur %s"
diff --git a/view/fr/hstrings.php b/view/fr/hstrings.php
index a1ff9f868..3da3329cd 100644
--- a/view/fr/hstrings.php
+++ b/view/fr/hstrings.php
@@ -4,7 +4,39 @@ if(! function_exists("string_plural_select_fr")) {
function string_plural_select_fr($n){
return ($n > 1);;
}}
-;
+App::$rtl = 0;
+App::$strings["Social Networking"] = "Réseau social";
+App::$strings["Social - Mostly Public"] = "Social - surtout public";
+App::$strings["Social - Restricted"] = "Social - restreint";
+App::$strings["Social - Private"] = "Social - privé";
+App::$strings["Community Forum"] = "Forum communautaire";
+App::$strings["Forum - Mostly Public"] = "Forum - surtout public";
+App::$strings["Forum - Restricted"] = "Forum - restreint";
+App::$strings["Forum - Private"] = "Forum - privé";
+App::$strings["Feed Republish"] = "Republication de flux";
+App::$strings["Feed - Mostly Public"] = "Flux - surtout public";
+App::$strings["Feed - Restricted"] = "Flux - restreint";
+App::$strings["Special Purpose"] = "Utilisation spécifique";
+App::$strings["Special - Celebrity/Soapbox"] = "Spécial - célébrité/promotion";
+App::$strings["Special - Group Repository"] = "Spécial - dépôt partagé";
+App::$strings["Other"] = "Autre";
+App::$strings["Custom/Expert Mode"] = "Mode expert/spécifique";
+App::$strings["Can view my channel stream and posts"] = "";
+App::$strings["Can send me their channel stream and posts"] = "Peuvent m'envoyer leur flux et les publications de leur canal";
+App::$strings["Can view my default channel profile"] = "Peut voir le profil du canal par défaut.";
+App::$strings["Can view my connections"] = "Peut voir mes contacts";
+App::$strings["Can view my file storage and photos"] = "Peut voir mes fichiers et photos";
+App::$strings["Can upload/modify my file storage and photos"] = "";
+App::$strings["Can view my channel webpages"] = "";
+App::$strings["Can create/edit my channel webpages"] = "";
+App::$strings["Can post on my channel (wall) page"] = "";
+App::$strings["Can comment on or like my posts"] = "Peuvent commenter et/ou aimer mes publications";
+App::$strings["Can send me private mail messages"] = "Peuvent m'envoyer des messages privés";
+App::$strings["Can like/dislike profiles and profile things"] = "";
+App::$strings["Can forward to all my channel connections via @+ mentions in posts"] = "";
+App::$strings["Can chat with me"] = "";
+App::$strings["Can source my public posts in derived channels"] = "Peut rediriger mes publications publiques vers des canaux dérivés";
+App::$strings["Can administer my channel"] = "";
App::$strings["parent"] = "retour";
App::$strings["Collection"] = "Groupe de contacts";
App::$strings["Principal"] = "Principal";
@@ -37,63 +69,8 @@ App::$strings["Remote authentication blocked. You are logged into this site loca
App::$strings["Welcome %s. Remote authentication successful."] = "Bienvenue %s. L'authentification distante a fonctionné.";
App::$strings["Requested profile is not available."] = "Profil demandé non disponible.";
App::$strings["Some blurb about what to do when you're new here"] = "Quelques mots sur quoi faire quand on est nouveau ici";
-App::$strings["Block Name"] = "Nom du Bloc";
-App::$strings["Blocks"] = "Blocs";
-App::$strings["Block Title"] = "Titre du bloc";
-App::$strings["Created"] = "Créé(e)";
-App::$strings["Edited"] = "Modifié(e)";
-App::$strings["Share"] = "Partager";
-App::$strings["View"] = "Voir";
-App::$strings["Channel not found."] = "Canal introuvable.";
-App::$strings["Permissions denied."] = "Permissions refusées.";
-App::$strings["l, F j"] = "l, F j";
-App::$strings["Link to Source"] = "Lien vers la Source";
-App::$strings["Edit Event"] = "Modifier l'événement";
-App::$strings["Create Event"] = "Créer un événement";
-App::$strings["Previous"] = "Précédent";
-App::$strings["Next"] = "Suivant";
-App::$strings["Export"] = "Export";
-App::$strings["Import"] = "Import";
-App::$strings["Submit"] = "Envoyer";
-App::$strings["Today"] = "Aujourd'hui";
-App::$strings["You must be logged in to see this page."] = "Vous devez vous connecter pour voir cette page.";
-App::$strings["Posts and comments"] = "";
-App::$strings["Only posts"] = "";
-App::$strings["Insufficient permissions. Request redirected to profile page."] = "Permissions insuffisantes. Demande redirigée vers la page du profil.";
-App::$strings["Room not found"] = "Salon introuvable";
-App::$strings["Leave Room"] = "Quitter le salon";
-App::$strings["Delete Room"] = "";
-App::$strings["I am away right now"] = "Je suis absent en ce moment";
-App::$strings["I am online"] = "Je suis en ligne";
-App::$strings["Bookmark this room"] = "Marquer ce salon comme favori";
-App::$strings["Please enter a link URL:"] = "Merci d'entrer l'URL d'un lien&nbsp;:";
-App::$strings["Encrypt text"] = "Chiffrer le texte";
-App::$strings["Insert web link"] = "Insérer lien web";
-App::$strings["Feature disabled."] = "";
-App::$strings["New Chatroom"] = "Nouveau salon de discussion";
-App::$strings["Chatroom name"] = "";
-App::$strings["Expiration of chats (minutes)"] = "Expiration des discussions (en minutes)";
-App::$strings["Permissions"] = "Autorisations";
-App::$strings["%1\$s's Chatrooms"] = "Salons de %1\$s";
-App::$strings["No chatrooms available"] = "";
-App::$strings["Create New"] = "";
-App::$strings["Expiration"] = "";
-App::$strings["min"] = "";
App::$strings["Away"] = "Absent";
App::$strings["Online"] = "En ligne";
-App::$strings["Invalid item."] = "Élément invalide.";
-App::$strings["Bookmark added"] = "Favori ajouté";
-App::$strings["My Bookmarks"] = "Mes Favoris";
-App::$strings["My Connections Bookmarks"] = "Favoris de mes contacts";
-App::$strings["Continue"] = "Continuer";
-App::$strings["Premium Channel Setup"] = "Configuration du canal VIP";
-App::$strings["Enable premium channel connection restrictions"] = "Activer les restrictions liées au canal VIP";
-App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Merci de saisir les restrictions et/ou conditions - reçu Paypal, transaction Bitcoin, ligne de conduite, ...";
-App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Avant d'autoriser la mise en relation, ce canal attire votre attention sur les conditions suivantes&nbsp;:";
-App::$strings["Potential connections will then see the following text before proceeding:"] = "Les contacts potentiels verront ce qui suit avant de pouvoir continuer&nbsp;:";
-App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "En continuant, je certifie que je me suis conformé à toutes les instructions indiquées sur cette page.";
-App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Aucune instruction spécifique n'a été fournie par le propriétaire du canal.)";
-App::$strings["Restricted or Premium Channel"] = "Canal VIP ou restreint";
App::$strings["Could not access contact record."] = "Impossible d'accéder aux détails du contact.";
App::$strings["Could not locate selected profile."] = "Impossible de localiser le profil sélectionné.";
App::$strings["Connection updated."] = "Contact mis à jour.";
@@ -158,6 +135,7 @@ App::$strings["Do not import posts with this text"] = "Ne pas importer les publi
App::$strings["This information is public!"] = "Cette information est publique&nbsp;!";
App::$strings["Connection Pending Approval"] = "Contact en attente d'approbation";
App::$strings["inherited"] = "héritée";
+App::$strings["Submit"] = "Envoyer";
App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Merci de choisir le profil que vous souhaitez montrer quand %s visite votre profil de manière authentifiée.";
App::$strings["Their Settings"] = "Leurs paramètres";
App::$strings["My Settings"] = "Mes paramètres";
@@ -166,6 +144,30 @@ App::$strings["Some permissions may be inherited from your channel's <a href=\"s
App::$strings["Some permissions may be inherited from your channel's <a href=\"settings\"><strong>privacy settings</strong></a>, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Certaines permissions peuvent être héritées de vos <a href=\"settings\">paramètres de confidentialité</a> de canal, lesquels sont prioritaires sur les réglages individuels. Vous pouvez modifier ces permissions ici mais cela n'aura aucun effet à moins de changer les paramètres hérités.";
App::$strings["Last update:"] = "Dernière mise à jour&nbsp;:";
App::$strings["Public access denied."] = "Accès public refusé.";
+App::$strings["Item not found."] = "Élément introuvable";
+App::$strings["First Name"] = "Prénom";
+App::$strings["Last Name"] = "Nom de famille";
+App::$strings["Nickname"] = "Surnom";
+App::$strings["Full Name"] = "Nom complet";
+App::$strings["Email"] = "Courriel";
+App::$strings["Profile Photo"] = "Photo du Profil";
+App::$strings["Profile Photo 16px"] = "Photo de profil 16px";
+App::$strings["Profile Photo 32px"] = "Photo de profil 32px";
+App::$strings["Profile Photo 48px"] = "Photo de profil 48px";
+App::$strings["Profile Photo 64px"] = "Photo de profil 64px";
+App::$strings["Profile Photo 80px"] = "Photo de profil 80px";
+App::$strings["Profile Photo 128px"] = "Photo de profil 128px";
+App::$strings["Timezone"] = "Fuseau horaire";
+App::$strings["Homepage URL"] = "URL de mon site Internet&nbsp;:";
+App::$strings["Language"] = "Langue";
+App::$strings["Birth Year"] = "Année de naissance";
+App::$strings["Birth Month"] = "Mois de naissance";
+App::$strings["Birth Day"] = "Jour de naissance";
+App::$strings["Birthdate"] = "Date de naissance";
+App::$strings["Gender"] = "Sexe";
+App::$strings["Male"] = "Homme";
+App::$strings["Female"] = "Femme";
+App::$strings["Channel added."] = "Canal ajouté.";
App::$strings["%d rating"] = array(
0 => "%d évaluation",
1 => "%d évaluations",
@@ -196,13 +198,74 @@ App::$strings["Reverse Alphabetic"] = "Alphabétique inversé";
App::$strings["Newest to Oldest"] = "Du plus récent au moins récent";
App::$strings["Oldest to Newest"] = "Du moins récent du plus récent";
App::$strings["No entries (some entries may be hidden)."] = "Pas d'entrées (certaines peuvent être cachées).";
-App::$strings["Item not found."] = "Élément introuvable";
+App::$strings["Continue"] = "Continuer";
+App::$strings["Premium Channel Setup"] = "Configuration du canal VIP";
+App::$strings["Enable premium channel connection restrictions"] = "Activer les restrictions liées au canal VIP";
+App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Merci de saisir les restrictions et/ou conditions - reçu Paypal, transaction Bitcoin, ligne de conduite, ...";
+App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Avant d'autoriser la mise en relation, ce canal attire votre attention sur les conditions suivantes&nbsp;:";
+App::$strings["Potential connections will then see the following text before proceeding:"] = "Les contacts potentiels verront ce qui suit avant de pouvoir continuer&nbsp;:";
+App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "En continuant, je certifie que je me suis conformé à toutes les instructions indiquées sur cette page.";
+App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Aucune instruction spécifique n'a été fournie par le propriétaire du canal.)";
+App::$strings["Restricted or Premium Channel"] = "Canal VIP ou restreint";
+App::$strings["Calendar entries imported."] = "Entrées du calendrier importées.";
+App::$strings["No calendar entries found."] = "Aucune entrée du calendrier trouvée.";
+App::$strings["Event can not end before it has started."] = "La fin de l'événement ne peut être antérieure à son début.";
+App::$strings["Unable to generate preview."] = "Impossible de générer l'aperçu.";
+App::$strings["Event title and start time are required."] = "Un titre et une date de début sont requises pour l'événement.";
+App::$strings["Event not found."] = "Événement introuvable.";
+App::$strings["event"] = "événement";
+App::$strings["Edit event title"] = "Modifier le titre de l'événement";
+App::$strings["Event title"] = "Titre de l'événement";
+App::$strings["Required"] = "Requis";
+App::$strings["Categories (comma-separated list)"] = "Catégories (séparées par des virgules)";
+App::$strings["Edit Category"] = "Modifier la catégorie";
+App::$strings["Category"] = "Catégorie";
+App::$strings["Edit start date and time"] = "Modifier la date et l'heure de début";
+App::$strings["Start date and time"] = "Date et heure de début";
+App::$strings["Finish date and time are not known or not relevant"] = "Date et heure de fin inconnues ou sans objet";
+App::$strings["Edit finish date and time"] = "Modifier la date et l'heure de fin";
+App::$strings["Finish date and time"] = "Date et heure de fin";
+App::$strings["Adjust for viewer timezone"] = "Ajuster au fuseau horaire du visiteur";
+App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Important pour les événements se tenant en un lieu particulier. Pas pratique pour les vacances communes à de nombreux pays dans le monde.";
+App::$strings["Edit Description"] = "Modifier la description";
+App::$strings["Description"] = "Description";
+App::$strings["Edit Location"] = "Modifier l'emplacement";
+App::$strings["Location"] = "Emplacement";
+App::$strings["Share this event"] = "Partager cet événement";
+App::$strings["Preview"] = "Aperçu";
+App::$strings["Permission settings"] = "Gérer les autorisations";
+App::$strings["Advanced Options"] = "Options avancées";
+App::$strings["l, F j"] = "l, F j";
+App::$strings["Edit event"] = "Modifier l'événement";
+App::$strings["Delete event"] = "Supprimer l'événement";
+App::$strings["Link to Source"] = "Lien vers la Source";
+App::$strings["calendar"] = "calendrier";
+App::$strings["Edit Event"] = "Modifier l'événement";
+App::$strings["Create Event"] = "Créer un événement";
+App::$strings["Previous"] = "Précédent";
+App::$strings["Next"] = "Suivant";
+App::$strings["Export"] = "Export";
+App::$strings["View"] = "Voir";
+App::$strings["Month"] = "";
+App::$strings["Week"] = "";
+App::$strings["Day"] = "";
+App::$strings["Today"] = "Aujourd'hui";
+App::$strings["Event removed"] = "Événement supprimé";
+App::$strings["Failed to remove event"] = "Impossible de supprimer l'événement";
+App::$strings["Bookmark added"] = "Favori ajouté";
+App::$strings["My Bookmarks"] = "Mes Favoris";
+App::$strings["My Connections Bookmarks"] = "Favoris de mes contacts";
App::$strings["Item not found"] = "Élément introuvable";
-App::$strings["Title (optional)"] = "Titre (facultatif)";
-App::$strings["Edit Block"] = "Modifier le bloc";
-App::$strings["No channel."] = "Pas de canal.";
-App::$strings["Common connections"] = "Contacts en commun";
-App::$strings["No connections in common."] = "Pas de contacts en commun.";
+App::$strings["Item is not editable"] = "Elément non modifiable";
+App::$strings["Edit post"] = "Modifier la publication";
+App::$strings["Photos"] = "Photos";
+App::$strings["Cancel"] = "Annuler";
+App::$strings["Invalid item."] = "Élément invalide.";
+App::$strings["Channel not found."] = "Canal introuvable.";
+App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.";
+App::$strings["Save to Folder:"] = "Classer dans le dossier&nbsp;:";
+App::$strings["- select -"] = "- choisir -";
+App::$strings["Save"] = "Enregistrer";
App::$strings["Blocked"] = "Bloqué(e)";
App::$strings["Ignored"] = "Ignoré(e)";
App::$strings["Hidden"] = "Caché";
@@ -254,51 +317,38 @@ App::$strings["select a photo from your photo albums"] = "choisir une photo dans
App::$strings["Crop Image"] = "Recadrer l'image";
App::$strings["Please adjust the image cropping for optimum viewing."] = "Merci d'ajuster le cadre pour une visualisation optimale.";
App::$strings["Done Editing"] = "J'ai terminé";
-App::$strings["Item is not editable"] = "Elément non modifiable";
-App::$strings["Edit post"] = "Modifier la publication";
-App::$strings["Calendar entries imported."] = "Entrées du calendrier importées.";
-App::$strings["No calendar entries found."] = "Aucune entrée du calendrier trouvée.";
-App::$strings["Event can not end before it has started."] = "La fin de l'événement ne peut être antérieure à son début.";
-App::$strings["Unable to generate preview."] = "Impossible de générer l'aperçu.";
-App::$strings["Event title and start time are required."] = "Un titre et une date de début sont requises pour l'événement.";
-App::$strings["Event not found."] = "Événement introuvable.";
-App::$strings["event"] = "événement";
-App::$strings["Edit event title"] = "Modifier le titre de l'événement";
-App::$strings["Event title"] = "Titre de l'événement";
-App::$strings["Required"] = "Requis";
-App::$strings["Categories (comma-separated list)"] = "Catégories (séparées par des virgules)";
-App::$strings["Edit Category"] = "Modifier la catégorie";
-App::$strings["Category"] = "Catégorie";
-App::$strings["Edit start date and time"] = "Modifier la date et l'heure de début";
-App::$strings["Start date and time"] = "Date et heure de début";
-App::$strings["Finish date and time are not known or not relevant"] = "Date et heure de fin inconnues ou sans objet";
-App::$strings["Edit finish date and time"] = "Modifier la date et l'heure de fin";
-App::$strings["Finish date and time"] = "Date et heure de fin";
-App::$strings["Adjust for viewer timezone"] = "Ajuster au fuseau horaire du visiteur";
-App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Important pour les événements se tenant en un lieu particulier. Pas pratique pour les vacances communes à de nombreux pays dans le monde.";
-App::$strings["Edit Description"] = "Modifier la description";
-App::$strings["Description"] = "Description";
-App::$strings["Edit Location"] = "Modifier l'emplacement";
-App::$strings["Location"] = "Emplacement";
-App::$strings["Share this event"] = "Partager cet événement";
-App::$strings["Preview"] = "Aperçu";
-App::$strings["Permission settings"] = "Gérer les autorisations";
-App::$strings["Advanced Options"] = "Options avancées";
-App::$strings["Edit event"] = "Modifier l'événement";
-App::$strings["Delete event"] = "Supprimer l'événement";
-App::$strings["calendar"] = "calendrier";
-App::$strings["Event removed"] = "Événement supprimé";
-App::$strings["Failed to remove event"] = "Impossible de supprimer l'événement";
-App::$strings["Photos"] = "Photos";
-App::$strings["Cancel"] = "Annuler";
+App::$strings["webpage"] = "pages web";
+App::$strings["block"] = "bloquer";
+App::$strings["layout"] = "mise en page";
+App::$strings["menu"] = "menu";
+App::$strings["%s element installed"] = "Elément %s installé";
+App::$strings["%s element installation failed"] = "L'installation de l'élément %s a échoué";
+App::$strings["Permissions denied."] = "Permissions refusées.";
+App::$strings["Import"] = "Import";
App::$strings["This site is not a directory server"] = "Ce site n'est pas un serveur d'annuaire";
App::$strings["This directory server requires an access token"] = "Ce serveur d'annuaire requiert un jeton d'accès";
-App::$strings["Save to Folder:"] = "Classer dans le dossier&nbsp;:";
-App::$strings["- select -"] = "- choisir -";
-App::$strings["Save"] = "Enregistrer";
+App::$strings["You must be logged in to see this page."] = "Vous devez vous connecter pour voir cette page.";
+App::$strings["Room not found"] = "Salon introuvable";
+App::$strings["Leave Room"] = "Quitter le salon";
+App::$strings["Delete Room"] = "";
+App::$strings["I am away right now"] = "Je suis absent en ce moment";
+App::$strings["I am online"] = "Je suis en ligne";
+App::$strings["Bookmark this room"] = "Marquer ce salon comme favori";
+App::$strings["Please enter a link URL:"] = "Merci d'entrer l'URL d'un lien&nbsp;:";
+App::$strings["Encrypt text"] = "Chiffrer le texte";
+App::$strings["Insert web link"] = "Insérer lien web";
+App::$strings["Feature disabled."] = "";
+App::$strings["New Chatroom"] = "Nouveau salon de discussion";
+App::$strings["Chatroom name"] = "";
+App::$strings["Expiration of chats (minutes)"] = "Expiration des discussions (en minutes)";
+App::$strings["Permissions"] = "Autorisations";
+App::$strings["%1\$s's Chatrooms"] = "Salons de %1\$s";
+App::$strings["No chatrooms available"] = "";
+App::$strings["Create New"] = "";
+App::$strings["Expiration"] = "";
+App::$strings["min"] = "";
App::$strings["Invalid message"] = "Message non valide";
App::$strings["no results"] = "aucun résultat";
-App::$strings["Delivery report for %1\$s"] = "Rapport de distribution pour %1\$s";
App::$strings["channel sync processed"] = "Synchro de canal effectuée";
App::$strings["queued"] = "mis dans la file d'attente";
App::$strings["posted"] = "publié";
@@ -310,14 +360,14 @@ App::$strings["recipient not found"] = "destinataire introuvable";
App::$strings["mail recalled"] = "courriel rappelé";
App::$strings["duplicate mail received"] = "courriel reçu en double";
App::$strings["mail delivered"] = "courriel distribué";
+App::$strings["Delivery report for %1\$s"] = "Rapport de distribution pour %1\$s";
+App::$strings["Options"] = "";
+App::$strings["Redeliver"] = "";
App::$strings["Layout Name"] = "Nom de la mise en page";
App::$strings["Layout Description (Optional)"] = "Description de la mise en page (facultatif)";
App::$strings["Edit Layout"] = "Modifier la mise en page";
App::$strings["Page link"] = "";
App::$strings["Edit Webpage"] = "Modifier la page web";
-App::$strings["Channel added."] = "Canal ajouté.";
-App::$strings["network"] = "réseau";
-App::$strings["RSS"] = "RSS";
App::$strings["Privacy group created."] = "Groupe d'accès créé.";
App::$strings["Could not create privacy group."] = "Impossible de créer le groupe d'accès.";
App::$strings["Privacy group not found."] = "Groupe d'accès introuvable.";
@@ -331,16 +381,33 @@ App::$strings["Privacy group editor"] = "Editeur de groupe d'accès.";
App::$strings["Members"] = "Membres";
App::$strings["All Connected Channels"] = "Tous les canaux connectés";
App::$strings["Click on a channel to add or remove."] = "Cliquer sur un canal pour l'ajouter ou le supprimer";
-App::$strings["Share content from Firefox to \$Projectname"] = "Partager du contenu depuis Firefox avec \$Projectname";
-App::$strings["Activate the Firefox \$Projectname provider"] = "Activer le connecteur \$Projectname pour Firefox";
-App::$strings["Authorize application connection"] = "Autoriser l'application à se connecter";
-App::$strings["Return to your app and insert this Securty Code:"] = "Merci de retourner vers votre application, et d'y insérer ce Code de Sécurité&nbsp;:";
-App::$strings["Please login to continue."] = "Merci de vous identifier pour continuer.";
-App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Voulez-vous autoriser cette application à accéder à vos publications et contacts, et/ou à publier en votre nom?";
+App::$strings["App installed."] = "Application installée.";
+App::$strings["Malformed app."] = "Erreur de l'application - Malformée.";
+App::$strings["Embed code"] = "Imbriquer le code";
+App::$strings["Edit App"] = "Modifier l'application";
+App::$strings["Create App"] = "Créer une application";
+App::$strings["Name of app"] = "Nom de l'application";
+App::$strings["Location (URL) of app"] = "Emplacement (URL) de l'application";
+App::$strings["Photo icon URL"] = "URL de l'icône à utiliser pour cette photo";
+App::$strings["80 x 80 pixels - optional"] = "80 x 80 pixels - facultatif";
+App::$strings["Categories (optional, comma separated list)"] = "";
+App::$strings["Version ID"] = "Identifiant de version";
+App::$strings["Price of app"] = "Prix de l'application";
+App::$strings["Location (URL) to purchase app"] = "Emplacement (URL) pour l'achat de l'application";
App::$strings["Documentation Search"] = "Chercher dans la documentation";
App::$strings["Help:"] = "Aide&nbsp;:";
App::$strings["Help"] = "Aide";
App::$strings["\$Projectname Documentation"] = "Documentation \$Projectname";
+App::$strings["Item not available."] = "Élément indisponible.";
+App::$strings["Layout updated."] = "Mise en page mise à jour.";
+App::$strings["Edit System Page Description"] = "Modifier la description de la page du système";
+App::$strings["Layout not found."] = "Mise en page introuvable.";
+App::$strings["Module Name:"] = "Nom du module&nbsp;:";
+App::$strings["Layout Help"] = "Aide à la mise en page";
+App::$strings["Share content from Firefox to \$Projectname"] = "Partager du contenu depuis Firefox avec \$Projectname";
+App::$strings["Activate the Firefox \$Projectname provider"] = "Activer le connecteur \$Projectname pour Firefox";
+App::$strings["network"] = "réseau";
+App::$strings["RSS"] = "RSS";
App::$strings["Permission Denied."] = "Permission refusée.";
App::$strings["File not found."] = "Fichier introuvable.";
App::$strings["Edit file permissions"] = "Modifier les autorisations d'accès au fichier";
@@ -352,8 +419,100 @@ App::$strings["Copy/paste this URL to link file from a web page"] = "Copiez/coll
App::$strings["Share this file"] = "Partager ce fichier";
App::$strings["Show URL to this file"] = "Montrer l'URL de ce fichier";
App::$strings["Notify your contacts about this file"] = "Notifier vos contacts à propos de ce fichier";
-App::$strings["Apps"] = "Applications";
-App::$strings["Item not available."] = "Élément indisponible.";
+App::$strings["Layouts"] = "Mises-en-page";
+App::$strings["Comanche page description language help"] = "Aide sur le langage de description de page Comanche";
+App::$strings["Layout Description"] = "Description de la mise en page";
+App::$strings["Created"] = "Créé(e)";
+App::$strings["Edited"] = "Modifié(e)";
+App::$strings["Share"] = "Partager";
+App::$strings["Download PDL file"] = "Télécharger le fichier PDL";
+App::$strings["Like/Dislike"] = "Aime/n'aime pas";
+App::$strings["This action is restricted to members."] = "Cette action est réservée aux membres.";
+App::$strings["Please <a href=\"rmagic\">login with your \$Projectname ID</a> or <a href=\"register\">register as a new \$Projectname member</a> to continue."] = "S'il vous plait, <a href=\"rmagic\">identifiez vous avec votre identifant de \$Projectname </a> ou <a href=\"register\">inscrivez vous comme nouveau membre de \$Projectname </a> pour continuer.";
+App::$strings["Invalid request."] = "Requête invalide.";
+App::$strings["channel"] = "canal";
+App::$strings["thing"] = "chose";
+App::$strings["Channel unavailable."] = "Canal indisponible.";
+App::$strings["Previous action reversed."] = "Action précédente annulée.";
+App::$strings["photo"] = "photo";
+App::$strings["status"] = "état";
+App::$strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s aime %3\$s de %2\$s";
+App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s n'aime pas %3\$s de %2\$s";
+App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s approuve %3\$s de %2\$s";
+App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s n'est pas d'accord avec %3\$s de %2\$s";
+App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s s'abstient de toute décision sur le %3\$s de %2\$s";
+App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s participe à %3\$s de %2\$s";
+App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s ne participe pas à %3\$s de %2\$s";
+App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s participe peut-être à %3\$s de %2\$s";
+App::$strings["Action completed."] = "Action terminée.";
+App::$strings["Thank you."] = "Merci.";
+App::$strings["Profile not found."] = "Profil introuvable.";
+App::$strings["Profile deleted."] = "Profil supprimé.";
+App::$strings["Profile-"] = "Profil-";
+App::$strings["New profile created."] = "Nouveau profil créé.";
+App::$strings["Profile unavailable to clone."] = "Profil impossible à cloner.";
+App::$strings["Profile unavailable to export."] = "Impossible d'exporter le profil.";
+App::$strings["Profile Name is required."] = "Le nom du profil est obligatoire.";
+App::$strings["Marital Status"] = "Statut marital";
+App::$strings["Romantic Partner"] = "Partenaire amoureux";
+App::$strings["Likes"] = "Aime";
+App::$strings["Dislikes"] = "N'aime pas";
+App::$strings["Work/Employment"] = "Travail/Occupation";
+App::$strings["Religion"] = "Religion/Croyance";
+App::$strings["Political Views"] = "Opinions politiques";
+App::$strings["Sexual Preference"] = "Préférences sexuelle";
+App::$strings["Homepage"] = "Site Internet";
+App::$strings["Interests"] = "Centres d'intérêt";
+App::$strings["Address"] = "Adresse";
+App::$strings["Profile updated."] = "Profil mis à jour.";
+App::$strings["Hide your connections list from viewers of this profile"] = "";
+App::$strings["Edit Profile Details"] = "Modifier les détails du profil";
+App::$strings["View this profile"] = "Voir ce profil";
+App::$strings["Edit visibility"] = "Changer la visibilité";
+App::$strings["Profile Tools"] = "";
+App::$strings["Change cover photo"] = "";
+App::$strings["Change profile photo"] = "Changer la photo du profil";
+App::$strings["Create a new profile using these settings"] = "Créer un nouveau profil avec ces paramètres";
+App::$strings["Clone this profile"] = "Cloner ce profil";
+App::$strings["Delete this profile"] = "Supprimer ce profil";
+App::$strings["Add profile things"] = "Ajouter des éléments de profil";
+App::$strings["Personal"] = "Me concernant";
+App::$strings["Relation"] = "";
+App::$strings["Miscellaneous"] = "Divers";
+App::$strings["Import profile from file"] = "Importer le profil à partir d'un fichier";
+App::$strings["Export profile to file"] = "Exporter le profil vers un fichier.";
+App::$strings["Your gender"] = "";
+App::$strings["Marital status"] = "";
+App::$strings["Sexual preference"] = "";
+App::$strings["Profile name"] = "";
+App::$strings["This is your default profile."] = "Ceci est votre profil par défaut.";
+App::$strings["Your full name"] = "";
+App::$strings["Title/Description"] = "Titre/description";
+App::$strings["Street address"] = "";
+App::$strings["Locality/City"] = "Ville";
+App::$strings["Region/State"] = "Région";
+App::$strings["Postal/Zip code"] = "";
+App::$strings["Country"] = "Pays";
+App::$strings["Who (if applicable)"] = "Qui (si applicable)";
+App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Exemples&nbsp;: marie123, Marie Deschamps, marie@exemple.com";
+App::$strings["Since (date)"] = "";
+App::$strings["Tell us about yourself"] = "";
+App::$strings["Hometown"] = "Ville de naissance";
+App::$strings["Political views"] = "";
+App::$strings["Religious views"] = "";
+App::$strings["Keywords used in directory listings"] = "";
+App::$strings["Example: fishing photography software"] = "Exemple&nbsp;: escrime photographie modélisme";
+App::$strings["Musical interests"] = "Goûts musicaux";
+App::$strings["Books, literature"] = "Livres, littérature";
+App::$strings["Television"] = "Télévision";
+App::$strings["Film/Dance/Culture/Entertainment"] = "";
+App::$strings["Hobbies/Interests"] = "Loisirs/Centres d'intêret";
+App::$strings["Love/Romance"] = "";
+App::$strings["School/Education"] = "";
+App::$strings["Contact information and social networks"] = "";
+App::$strings["My other channels"] = "Mes autres canaux";
+App::$strings["Profile Image"] = "Image du profil";
+App::$strings["Edit Profiles"] = "Modifier les profils";
App::$strings["Your service plan only allows %d channels."] = "Votre forfait n'autorise que %d canaux.";
App::$strings["Nothing to import."] = "Rien à importer.";
App::$strings["Unable to download data from old server"] = "Impossible de récupérer les données de l'ancien serveur";
@@ -374,6 +533,8 @@ App::$strings["For either option, please choose whether to make this hub your ne
App::$strings["Make this hub my primary location"] = "Faire de ce hub mon emplacement primaire";
App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importer les publications existantes si possible (expérimental - limité par la mémoire disponible)";
App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Ce processus peut prendre plusieurs minutes. Merci de ne valider le formulaire qu'une seule fois et de laisser cette page ouverte jusqu'à la fin.";
+App::$strings["\$Projectname"] = "\$Projectname";
+App::$strings["Welcome to %s"] = "Bienvenue sur %s";
App::$strings["Unable to locate original post."] = "Impossible de localiser la publication initiale.";
App::$strings["Empty post discarded."] = "Publication vide annulée.";
App::$strings["Executable content type not permitted to this channel."] = "Les contenus de type 'exécutable' ne sont pas autorisés sur ce canal.";
@@ -382,60 +543,76 @@ App::$strings["System error. Post not saved."] = "Erreur système. Publication n
App::$strings["Unable to obtain post information from database."] = "Impossible d'obtenir les informations de publication depuis la base de données.";
App::$strings["You have reached your limit of %1$.0f top level posts."] = "Vous avez atteint votre limite de %1$.0f contributions \"racines\".";
App::$strings["You have reached your limit of %1$.0f webpages."] = "Vous avez atteint votre limite de %1$.0f pages web.";
-App::$strings["Layouts"] = "Mises-en-page";
-App::$strings["Comanche page description language help"] = "Aide sur le langage de description de page Comanche";
-App::$strings["Layout Description"] = "Description de la mise en page";
-App::$strings["Download PDL file"] = "Télécharger le fichier PDL";
-App::$strings["\$Projectname"] = "\$Projectname";
-App::$strings["Welcome to %s"] = "Bienvenue sur %s";
-App::$strings["First Name"] = "Prénom";
-App::$strings["Last Name"] = "Nom de famille";
-App::$strings["Nickname"] = "Surnom";
-App::$strings["Full Name"] = "Nom complet";
-App::$strings["Email"] = "Courriel";
-App::$strings["Profile Photo"] = "Photo du Profil";
-App::$strings["Profile Photo 16px"] = "Photo de profil 16px";
-App::$strings["Profile Photo 32px"] = "Photo de profil 32px";
-App::$strings["Profile Photo 48px"] = "Photo de profil 48px";
-App::$strings["Profile Photo 64px"] = "Photo de profil 64px";
-App::$strings["Profile Photo 80px"] = "Photo de profil 80px";
-App::$strings["Profile Photo 128px"] = "Photo de profil 128px";
-App::$strings["Timezone"] = "Fuseau horaire";
-App::$strings["Homepage URL"] = "URL de mon site Internet&nbsp;:";
-App::$strings["Language"] = "Langue";
-App::$strings["Birth Year"] = "Année de naissance";
-App::$strings["Birth Month"] = "Mois de naissance";
-App::$strings["Birth Day"] = "Jour de naissance";
-App::$strings["Birthdate"] = "Date de naissance";
-App::$strings["Gender"] = "Sexe";
-App::$strings["Male"] = "Homme";
-App::$strings["Female"] = "Femme";
-App::$strings["webpage"] = "pages web";
-App::$strings["block"] = "bloquer";
-App::$strings["layout"] = "mise en page";
-App::$strings["menu"] = "menu";
-App::$strings["%s element installed"] = "Elément %s installé";
-App::$strings["%s element installation failed"] = "L'installation de l'élément %s a échoué";
-App::$strings["Like/Dislike"] = "Aime/n'aime pas";
-App::$strings["This action is restricted to members."] = "Cette action est réservée aux membres.";
-App::$strings["Please <a href=\"rmagic\">login with your \$Projectname ID</a> or <a href=\"register\">register as a new \$Projectname member</a> to continue."] = "S'il vous plait, <a href=\"rmagic\">identifiez vous avec votre identifant de \$Projectname </a> ou <a href=\"register\">inscrivez vous comme nouveau membre de \$Projectname </a> pour continuer.";
-App::$strings["Invalid request."] = "Requête invalide.";
-App::$strings["channel"] = "canal";
-App::$strings["thing"] = "chose";
-App::$strings["Channel unavailable."] = "Canal indisponible.";
-App::$strings["Previous action reversed."] = "Action précédente annulée.";
-App::$strings["photo"] = "photo";
-App::$strings["status"] = "état";
-App::$strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s aime %3\$s de %2\$s";
-App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s n'aime pas %3\$s de %2\$s";
-App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s approuve %3\$s de %2\$s";
-App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s n'est pas d'accord avec %3\$s de %2\$s";
-App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s s'abstient de toute décision sur le %3\$s de %2\$s";
-App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s participe à %3\$s de %2\$s";
-App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s ne participe pas à %3\$s de %2\$s";
-App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s participe peut-être à %3\$s de %2\$s";
-App::$strings["Action completed."] = "Action terminée.";
-App::$strings["Thank you."] = "Merci.";
+App::$strings["Page owner information could not be retrieved."] = "Impossible d'obtenir des informations sur le propriétaire de la page.";
+App::$strings["Profile Photos"] = "Photos du profil";
+App::$strings["Album not found."] = "Album introuvable.";
+App::$strings["Delete Album"] = "Supprimer l'album";
+App::$strings["Multiple storage folders exist with this album name, but within different directories. Please remove the desired folder or folders using the Files manager"] = "";
+App::$strings["Delete Photo"] = "Supprimer la photo";
+App::$strings["No photos selected"] = "Aucune photo selectionnée";
+App::$strings["Access to this item is restricted."] = "L'accès à l'élément est restreint.";
+App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "Vous avez utilisé %1$.2f mégaoctets sur les %2$.2f autorisés pour le stockage des photos.";
+App::$strings["%1$.2f MB photo storage used."] = "%1$.2f méga-octets utilisés pour le stockage des photos.";
+App::$strings["Upload Photos"] = "Téléverser des photos";
+App::$strings["Enter an album name"] = "Entrer un nom d'album";
+App::$strings["or select an existing album (doubleclick)"] = "ou sélectionner un album existant (double-clic)";
+App::$strings["Create a status post for this upload"] = "Créer une publication de statut pour cet envoi";
+App::$strings["Caption (optional):"] = "Légende (facultative)";
+App::$strings["Description (optional):"] = "Description (facultative)";
+App::$strings["Album name could not be decoded"] = "Le nom de l'Album n'a pu être décodé";
+App::$strings["Contact Photos"] = "Photos de contact";
+App::$strings["Show Newest First"] = "Les plus récent(e)s en premier";
+App::$strings["Show Oldest First"] = "Les moins récent(e)s en premier";
+App::$strings["View Photo"] = "Voir la photo";
+App::$strings["Edit Album"] = "Modifier l'album";
+App::$strings["Permission denied. Access to this item may be restricted."] = "Permission refusée. L'accès à cet élément peut avoir été restreint.";
+App::$strings["Photo not available"] = "Photo non disponible";
+App::$strings["Use as profile photo"] = "Utiliser comme photo du profil";
+App::$strings["Use as cover photo"] = "";
+App::$strings["Private Photo"] = "Photo privée";
+App::$strings["View Full Size"] = "Voir en taille réelle";
+App::$strings["Remove"] = "Retirer";
+App::$strings["Edit photo"] = "Modifier la photo";
+App::$strings["Rotate CW (right)"] = "Rotation horaire (droite)";
+App::$strings["Rotate CCW (left)"] = "Rotation anti-horaire (gauche)";
+App::$strings["Enter a new album name"] = "Entrer un nouveau nom d'album";
+App::$strings["or select an existing one (doubleclick)"] = "ou en sélectionner un existant (double-clic)";
+App::$strings["Caption"] = "Titre/légende";
+App::$strings["Add a Tag"] = "Ajouter une étiquette";
+App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Exemple&nbsp;: @marc, @Barbara_Jensen, @charles@exemple.com, #Ile_de_France, #marathon";
+App::$strings["Flag as adult in album view"] = "Marquer comme \"adulte\" dans l'affichage de l'album";
+App::$strings["I like this (toggle)"] = "J'aime (oui/non)";
+App::$strings["I don't like this (toggle)"] = "Je n'aime pas (oui/non)";
+App::$strings["Please wait"] = "Merci de patienter";
+App::$strings["This is you"] = "C'est vous";
+App::$strings["Comment"] = "Commenter";
+App::$strings["__ctx:title__ Likes"] = "Aime";
+App::$strings["__ctx:title__ Dislikes"] = "N'aime pas";
+App::$strings["__ctx:title__ Agree"] = "D'accord";
+App::$strings["__ctx:title__ Disagree"] = "Pas d'accord";
+App::$strings["__ctx:title__ Abstain"] = "Abstention";
+App::$strings["__ctx:title__ Attending"] = "Participations";
+App::$strings["__ctx:title__ Not attending"] = "Non-participations";
+App::$strings["__ctx:title__ Might attend"] = "Participation possible";
+App::$strings["View all"] = "Voir tout";
+App::$strings["__ctx:noun__ Like"] = array(
+ 0 => "Aime",
+ 1 => "Aime",
+);
+App::$strings["__ctx:noun__ Dislike"] = array(
+ 0 => "N'aime pas",
+ 1 => "N'aime pas",
+);
+App::$strings["Photo Tools"] = "";
+App::$strings["In This Photo:"] = "Dans cette photo&nbsp;:";
+App::$strings["Map"] = "Carte";
+App::$strings["__ctx:noun__ Likes"] = "Aime";
+App::$strings["__ctx:noun__ Dislikes"] = "N'aime pas";
+App::$strings["Close"] = "Fermer";
+App::$strings["View Album"] = "Voir l'album";
+App::$strings["Recent Photos"] = "Photos récentes";
+App::$strings["Remote privacy information not available."] = "Les informations distantes de confidentialité ne sont pas disponibles.";
+App::$strings["Visible to:"] = "Visible par&nbsp;:";
App::$strings["Import completed"] = "L'import est terminé.";
App::$strings["Import Items"] = "Importer";
App::$strings["Use this form to import existing posts and content from an export file."] = "Utiliser ce formulaire pour importer des publications et du contenu existant d'un fichier d'export.";
@@ -458,15 +635,12 @@ App::$strings["1. Register at any \$Projectname location (they are all inter-con
App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Saisissez l'adresse de mon canal \$Projectname dans la barre de recherche du site.";
App::$strings["or visit"] = "ou rendez-vous sur";
App::$strings["3. Click [Connect]"] = "3. Cliquez sur [Ajouter]";
-App::$strings["Remote privacy information not available."] = "Les informations distantes de confidentialité ne sont pas disponibles.";
-App::$strings["Visible to:"] = "Visible par&nbsp;:";
App::$strings["Location not found."] = "Emplacement introuvable.";
App::$strings["Location lookup failed."] = "Echec de la recherche de l'emplacement.";
App::$strings["Please select another location to become primary before removing the primary location."] = "Merci de sélectionner un autre emplacement comme nouvel emplacement primaire avant de supprimer l'emplacement primaire actuel.";
App::$strings["Syncing locations"] = "Synchronisation des emplacements";
App::$strings["No locations found."] = "Emplacement(s) introuvable.";
App::$strings["Manage Channel Locations"] = "Gérer les emplacements des canaux";
-App::$strings["Address"] = "Adresse";
App::$strings["Primary"] = "";
App::$strings["Drop"] = "Supprimer";
App::$strings["Sync Now"] = "";
@@ -507,22 +681,6 @@ App::$strings["Make Default"] = "Définir comme défaut";
App::$strings["%d new messages"] = "%d nouveaux messages";
App::$strings["%d new introductions"] = "%d nouvelles présentations";
App::$strings["Delegated Channel"] = "";
-App::$strings["No valid account found."] = "Aucun compte valide trouvé.";
-App::$strings["Password reset request issued. Check your email."] = "Demande de réinitialisation du mot de passe envoyée. Vérifiez vos courriels.";
-App::$strings["Site Member (%s)"] = "Membre du site (%s)";
-App::$strings["Password reset requested at %s"] = "Demande de réinitialisation du mot de passe sur %s";
-App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La demande n'a pas pu être vérifiée. (Peut-être l'avez vous déjà utilisée.) La réinitialisation a échoué.";
-App::$strings["Password Reset"] = "Réinitialiser le mot de passe";
-App::$strings["Your password has been reset as requested."] = "Votre mot de passe a bien été réinitialisé.";
-App::$strings["Your new password is"] = "Votre nouveau mot de passe est";
-App::$strings["Save or copy your new password - and then"] = "Enregistrez ou copiez votre nouveau mot de passe, puis";
-App::$strings["click here to login"] = "cliquez ici pour vous connecter";
-App::$strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Votre mot de passe peut être changé depuis la page des <em>Paramètres</em> une fois connecté.";
-App::$strings["Your password has changed at %s"] = "Votre mot de passe de %s a été changé";
-App::$strings["Forgot your Password?"] = "Mot de passe oublié&nbsp;?";
-App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Saisissez votre adresse de courriel, et validez, pour réinitialiser votre mot de passe. Vérifiez ensuite votre boîte aux lettres pour la suite des instructions.";
-App::$strings["Email Address"] = "Adresse de courriel";
-App::$strings["Reset"] = "Réinitialiser";
App::$strings["Unable to update menu."] = "Impossible de mettre le menu à jour.";
App::$strings["Unable to create menu."] = "Impossible de créer le menu.";
App::$strings["Menu Name"] = "Nom du menu";
@@ -547,13 +705,25 @@ App::$strings["Menu title"] = "Titre du menu";
App::$strings["Menu title as seen by others"] = "Titre du menu tel que vu par les visiteurs";
App::$strings["Allow bookmarks"] = "Autoriser l'usage de favoris";
App::$strings["Not found."] = "Introuvable.";
+App::$strings["No valid account found."] = "Aucun compte valide trouvé.";
+App::$strings["Password reset request issued. Check your email."] = "Demande de réinitialisation du mot de passe envoyée. Vérifiez vos courriels.";
+App::$strings["Site Member (%s)"] = "Membre du site (%s)";
+App::$strings["Password reset requested at %s"] = "Demande de réinitialisation du mot de passe sur %s";
+App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La demande n'a pas pu être vérifiée. (Peut-être l'avez vous déjà utilisée.) La réinitialisation a échoué.";
+App::$strings["Password Reset"] = "Réinitialiser le mot de passe";
+App::$strings["Your password has been reset as requested."] = "Votre mot de passe a bien été réinitialisé.";
+App::$strings["Your new password is"] = "Votre nouveau mot de passe est";
+App::$strings["Save or copy your new password - and then"] = "Enregistrez ou copiez votre nouveau mot de passe, puis";
+App::$strings["click here to login"] = "cliquez ici pour vous connecter";
+App::$strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Votre mot de passe peut être changé depuis la page des <em>Paramètres</em> une fois connecté.";
+App::$strings["Your password has changed at %s"] = "Votre mot de passe de %s a été changé";
+App::$strings["Forgot your Password?"] = "Mot de passe oublié&nbsp;?";
+App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Saisissez votre adresse de courriel, et validez, pour réinitialiser votre mot de passe. Vérifiez ensuite votre boîte aux lettres pour la suite des instructions.";
+App::$strings["Email Address"] = "Adresse de courriel";
+App::$strings["Reset"] = "Réinitialiser";
App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s est %2\$s";
App::$strings["Mood"] = "Humeur";
App::$strings["Set your current mood and tell your friends"] = "Indiquez votre humeur du moment à vos amis";
-App::$strings["Profile Match"] = "Profils similaires";
-App::$strings["No keywords to match. Please add keywords to your default profile."] = "Aucun mot-clef à comparer. Merci d'ajouter des mots-clefs à votre profil par défaut.";
-App::$strings["is interested in:"] = "s'intéresse à&nbsp;:";
-App::$strings["No matches"] = "Pas de correspondance";
App::$strings["No such group"] = "Groupe introuvable";
App::$strings["No such channel"] = "Canal introuvable";
App::$strings["forum"] = "forum";
@@ -563,6 +733,13 @@ App::$strings["Privacy group: "] = "Groupe d'accès&nbsp;:";
App::$strings["Invalid connection."] = "Contact non valide.";
App::$strings["No more system notifications."] = "Pas d'autre notification du système.";
App::$strings["System Notifications"] = "Notifications du système";
+App::$strings["Profile Match"] = "Profils similaires";
+App::$strings["No keywords to match. Please add keywords to your default profile."] = "Aucun mot-clef à comparer. Merci d'ajouter des mots-clefs à votre profil par défaut.";
+App::$strings["is interested in:"] = "s'intéresse à&nbsp;:";
+App::$strings["No matches"] = "Pas de correspondance";
+App::$strings["Posts and comments"] = "";
+App::$strings["Only posts"] = "";
+App::$strings["Insufficient permissions. Request redirected to profile page."] = "Permissions insuffisantes. Demande redirigée vers la page du profil.";
App::$strings["Unable to create element."] = "Impossible de créer l'entrée.";
App::$strings["Unable to update menu element."] = "Impossible de mettre à jour l'entrée de menu.";
App::$strings["Unable to add menu element."] = "Impossible d'ajouter l'entrée de menu.";
@@ -592,203 +769,6 @@ App::$strings["Menu item deleted."] = "Entrée de menu supprimée.";
App::$strings["Menu item could not be deleted."] = "Impossible de supprimer l'entrée de menu.";
App::$strings["Edit Menu Element"] = "Modifier l'entrée de menu";
App::$strings["Link text"] = "Texte du lien";
-App::$strings["Name or caption"] = "Nom ou libellé";
-App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Exemples&nbsp;: \"Jérôme Dutilleul\", \"Louise et ses chevaux\", \"Football\", \"Club d'aéromodélisme\"";
-App::$strings["Choose a short nickname"] = "Choisissez un alias";
-App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Votre pseudo sera utilisé pour créer une adresse de canal facile à mémoriser, par ex. pseudo%s";
-App::$strings["Channel role and privacy"] = "Rôle et confidentialité du canal";
-App::$strings["Select a channel role with your privacy requirements."] = "Sélectionner un rôle de canal adapté à vos besoins de confidentialité.";
-App::$strings["Read more about roles"] = "En savoir plus sur les rôles";
-App::$strings["Create Channel"] = "Créer le canal";
-App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "Un canal est votre identité sur ce réseau. Il peut représenter une personne, un blog, ou un forum par exemple. Les canaux peuvent entrer en contact les uns avec les autres pour partager des informations avec des permissions d'accès très fines.";
-App::$strings["or <a href=\"import\">import an existing channel</a> from another location."] = "ou <a href=\"import\">importer un canal existant</a> d'un autre serveur.";
-App::$strings["Invalid request identifier."] = "Identifiant de requête invalide.";
-App::$strings["Discard"] = "Annuler";
-App::$strings["Mark all system notifications seen"] = "Marquer toutes les notifications système comme vues";
-App::$strings["Page owner information could not be retrieved."] = "Impossible d'obtenir des informations sur le propriétaire de la page.";
-App::$strings["Profile Photos"] = "Photos du profil";
-App::$strings["Album not found."] = "Album introuvable.";
-App::$strings["Delete Album"] = "Supprimer l'album";
-App::$strings["Multiple storage folders exist with this album name, but within different directories. Please remove the desired folder or folders using the Files manager"] = "";
-App::$strings["Delete Photo"] = "Supprimer la photo";
-App::$strings["No photos selected"] = "Aucune photo selectionnée";
-App::$strings["Access to this item is restricted."] = "L'accès à l'élément est restreint.";
-App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "Vous avez utilisé %1$.2f mégaoctets sur les %2$.2f autorisés pour le stockage des photos.";
-App::$strings["%1$.2f MB photo storage used."] = "%1$.2f méga-octets utilisés pour le stockage des photos.";
-App::$strings["Upload Photos"] = "Téléverser des photos";
-App::$strings["Enter an album name"] = "Entrer un nom d'album";
-App::$strings["or select an existing album (doubleclick)"] = "ou sélectionner un album existant (double-clic)";
-App::$strings["Create a status post for this upload"] = "Créer une publication de statut pour cet envoi";
-App::$strings["Caption (optional):"] = "Légende (facultative)";
-App::$strings["Description (optional):"] = "Description (facultative)";
-App::$strings["Album name could not be decoded"] = "Le nom de l'Album n'a pu être décodé";
-App::$strings["Contact Photos"] = "Photos de contact";
-App::$strings["Show Newest First"] = "Les plus récent(e)s en premier";
-App::$strings["Show Oldest First"] = "Les moins récent(e)s en premier";
-App::$strings["View Photo"] = "Voir la photo";
-App::$strings["Edit Album"] = "Modifier l'album";
-App::$strings["Permission denied. Access to this item may be restricted."] = "Permission refusée. L'accès à cet élément peut avoir été restreint.";
-App::$strings["Photo not available"] = "Photo non disponible";
-App::$strings["Use as profile photo"] = "Utiliser comme photo du profil";
-App::$strings["Use as cover photo"] = "";
-App::$strings["Private Photo"] = "Photo privée";
-App::$strings["View Full Size"] = "Voir en taille réelle";
-App::$strings["Remove"] = "Retirer";
-App::$strings["Edit photo"] = "Modifier la photo";
-App::$strings["Rotate CW (right)"] = "Rotation horaire (droite)";
-App::$strings["Rotate CCW (left)"] = "Rotation anti-horaire (gauche)";
-App::$strings["Enter a new album name"] = "Entrer un nouveau nom d'album";
-App::$strings["or select an existing one (doubleclick)"] = "ou en sélectionner un existant (double-clic)";
-App::$strings["Caption"] = "Titre/légende";
-App::$strings["Add a Tag"] = "Ajouter une étiquette";
-App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Exemple&nbsp;: @marc, @Barbara_Jensen, @charles@exemple.com, #Ile_de_France, #marathon";
-App::$strings["Flag as adult in album view"] = "Marquer comme \"adulte\" dans l'affichage de l'album";
-App::$strings["I like this (toggle)"] = "J'aime (oui/non)";
-App::$strings["I don't like this (toggle)"] = "Je n'aime pas (oui/non)";
-App::$strings["Please wait"] = "Merci de patienter";
-App::$strings["This is you"] = "C'est vous";
-App::$strings["Comment"] = "Commenter";
-App::$strings["__ctx:title__ Likes"] = "Aime";
-App::$strings["__ctx:title__ Dislikes"] = "N'aime pas";
-App::$strings["__ctx:title__ Agree"] = "D'accord";
-App::$strings["__ctx:title__ Disagree"] = "Pas d'accord";
-App::$strings["__ctx:title__ Abstain"] = "Abstention";
-App::$strings["__ctx:title__ Attending"] = "Participations";
-App::$strings["__ctx:title__ Not attending"] = "Non-participations";
-App::$strings["__ctx:title__ Might attend"] = "Participation possible";
-App::$strings["View all"] = "Voir tout";
-App::$strings["__ctx:noun__ Like"] = array(
- 0 => "Aime",
- 1 => "Aime",
-);
-App::$strings["__ctx:noun__ Dislike"] = array(
- 0 => "N'aime pas",
- 1 => "N'aime pas",
-);
-App::$strings["Photo Tools"] = "";
-App::$strings["In This Photo:"] = "Dans cette photo&nbsp;:";
-App::$strings["Map"] = "Carte";
-App::$strings["__ctx:noun__ Likes"] = "Aime";
-App::$strings["__ctx:noun__ Dislikes"] = "N'aime pas";
-App::$strings["Close"] = "Fermer";
-App::$strings["View Album"] = "Voir l'album";
-App::$strings["Recent Photos"] = "Photos récentes";
-App::$strings["sent you a private message"] = "vous a envoyé un message privé";
-App::$strings["added your channel"] = "a ajouté votre canal";
-App::$strings["g A l F d"] = "g A l F d";
-App::$strings["[today]"] = "[aujourd'hui]";
-App::$strings["posted an event"] = "a publié un événement";
-App::$strings["Unable to find your hub."] = "Impossible de trouver votre hub.";
-App::$strings["Post successful."] = "Publication réussie.";
-App::$strings["OpenID protocol error. No ID returned."] = "Erreur du protocole OpenID. Pas d'ID retourné.";
-App::$strings["Login failed."] = "Échec de la connexion.";
-App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.";
-App::$strings["This setting requires special processing and editing has been blocked."] = "Ce paramètre nécessité un traitement spécial, les modifications ont été bloquées.";
-App::$strings["Configuration Editor"] = "Editeur de configuration";
-App::$strings["Warning: Changing some settings could render your channel inoperable. Please leave this page unless you are comfortable with and knowledgeable about how to correctly use this feature."] = "Attention&nbsp;:modifier certains paramètres peut rendre votre canal inutilisable. Merci d'ignorer cette page à moins d'être suffisamment à l'aise de savoir comment utiliser correctement cette fonctionnalité.";
-App::$strings["Layout updated."] = "Mise en page mise à jour.";
-App::$strings["Edit System Page Description"] = "Modifier la description de la page du système";
-App::$strings["Layout not found."] = "Mise en page introuvable.";
-App::$strings["Module Name:"] = "Nom du module&nbsp;:";
-App::$strings["Layout Help"] = "Aide à la mise en page";
-App::$strings["Poke"] = "Tapoter";
-App::$strings["Poke somebody"] = "Taquiner quelqu'un";
-App::$strings["Poke/Prod"] = "Tapoter/Encourager";
-App::$strings["Poke, prod or do other things to somebody"] = "Taquiner, pousser ou faire autre chose à quelqu'un";
-App::$strings["Recipient"] = "Destinataire";
-App::$strings["Choose what you wish to do to recipient"] = "Choisir ce que vous voulez faire au destinataire";
-App::$strings["Make this post private"] = "Rendre cette publication privée";
-App::$strings["Fetching URL returns error: %1\$s"] = "Récupération d'URL échouée&nbsp;: %1\$s";
-App::$strings["Profile not found."] = "Profil introuvable.";
-App::$strings["Profile deleted."] = "Profil supprimé.";
-App::$strings["Profile-"] = "Profil-";
-App::$strings["New profile created."] = "Nouveau profil créé.";
-App::$strings["Profile unavailable to clone."] = "Profil impossible à cloner.";
-App::$strings["Profile unavailable to export."] = "Impossible d'exporter le profil.";
-App::$strings["Profile Name is required."] = "Le nom du profil est obligatoire.";
-App::$strings["Marital Status"] = "Statut marital";
-App::$strings["Romantic Partner"] = "Partenaire amoureux";
-App::$strings["Likes"] = "Aime";
-App::$strings["Dislikes"] = "N'aime pas";
-App::$strings["Work/Employment"] = "Travail/Occupation";
-App::$strings["Religion"] = "Religion/Croyance";
-App::$strings["Political Views"] = "Opinions politiques";
-App::$strings["Sexual Preference"] = "Préférences sexuelle";
-App::$strings["Homepage"] = "Site Internet";
-App::$strings["Interests"] = "Centres d'intérêt";
-App::$strings["Profile updated."] = "Profil mis à jour.";
-App::$strings["Hide your connections list from viewers of this profile"] = "";
-App::$strings["Edit Profile Details"] = "Modifier les détails du profil";
-App::$strings["View this profile"] = "Voir ce profil";
-App::$strings["Edit visibility"] = "Changer la visibilité";
-App::$strings["Profile Tools"] = "";
-App::$strings["Change cover photo"] = "";
-App::$strings["Change profile photo"] = "Changer la photo du profil";
-App::$strings["Create a new profile using these settings"] = "Créer un nouveau profil avec ces paramètres";
-App::$strings["Clone this profile"] = "Cloner ce profil";
-App::$strings["Delete this profile"] = "Supprimer ce profil";
-App::$strings["Add profile things"] = "Ajouter des éléments de profil";
-App::$strings["Personal"] = "Me concernant";
-App::$strings["Relation"] = "";
-App::$strings["Miscellaneous"] = "Divers";
-App::$strings["Import profile from file"] = "Importer le profil à partir d'un fichier";
-App::$strings["Export profile to file"] = "Exporter le profil vers un fichier.";
-App::$strings["Your gender"] = "";
-App::$strings["Marital status"] = "";
-App::$strings["Sexual preference"] = "";
-App::$strings["Profile name"] = "";
-App::$strings["This is your default profile."] = "Ceci est votre profil par défaut.";
-App::$strings["Your full name"] = "";
-App::$strings["Title/Description"] = "Titre/description";
-App::$strings["Street address"] = "";
-App::$strings["Locality/City"] = "Ville";
-App::$strings["Region/State"] = "Région";
-App::$strings["Postal/Zip code"] = "";
-App::$strings["Country"] = "Pays";
-App::$strings["Who (if applicable)"] = "Qui (si applicable)";
-App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Exemples&nbsp;: marie123, Marie Deschamps, marie@exemple.com";
-App::$strings["Since (date)"] = "";
-App::$strings["Tell us about yourself"] = "";
-App::$strings["Hometown"] = "Ville de naissance";
-App::$strings["Political views"] = "";
-App::$strings["Religious views"] = "";
-App::$strings["Keywords used in directory listings"] = "";
-App::$strings["Example: fishing photography software"] = "Exemple&nbsp;: escrime photographie modélisme";
-App::$strings["Musical interests"] = "Goûts musicaux";
-App::$strings["Books, literature"] = "Livres, littérature";
-App::$strings["Television"] = "Télévision";
-App::$strings["Film/Dance/Culture/Entertainment"] = "";
-App::$strings["Hobbies/Interests"] = "Loisirs/Centres d'intêret";
-App::$strings["Love/Romance"] = "";
-App::$strings["School/Education"] = "";
-App::$strings["Contact information and social networks"] = "";
-App::$strings["My other channels"] = "Mes autres canaux";
-App::$strings["Profile Image"] = "Image du profil";
-App::$strings["Edit Profiles"] = "Modifier les profils";
-App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Shift-rechargez votre page, ou videz le cache du navigateur si la photo ne s'affiche pas immédiatement.";
-App::$strings["Upload Profile Photo"] = "Téléverser une photo de profil";
-App::$strings["Invalid profile identifier."] = "Identifiant de profil invalide.";
-App::$strings["Profile Visibility Editor"] = "Éditeur de visibilité de profil";
-App::$strings["Profile"] = "Profil";
-App::$strings["Click on a contact to add or remove."] = "Cliquer sur un contact pour l'ajouter ou le retirer.";
-App::$strings["Visible To"] = "Visible par";
-App::$strings["Public Hubs"] = "Instances publiques";
-App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself <strong>may</strong> provide additional details."] = "Les sites listés permettent l'enregistrement public de comptes pour le réseau \$Projectname. Tous les sites du réseau sont reliés entre eux, être membre d'un site revient à être membre de tous. Certains sites peuvent demander une souscription ou proposer différents niveaux de service. Chaque site <strong>peut</strong> fournir des détails supplémentaires.";
-App::$strings["Hub URL"] = "URL du site";
-App::$strings["Access Type"] = "Type d'accès";
-App::$strings["Registration Policy"] = "Politique d'inscription";
-App::$strings["Stats"] = "";
-App::$strings["Software"] = "";
-App::$strings["Ratings"] = "Evaluations";
-App::$strings["Rate"] = "Evaluer";
-App::$strings["Website:"] = "Site web&nbsp;:";
-App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Canal distant [%s] (encore inconnu sur ce site)";
-App::$strings["Rating (this information is public)"] = "Evaluation (cette information est publique)";
-App::$strings["Optionally explain your rating (this information is public)"] = "Explication facultative de votre évaluation (cette information est publique)";
-App::$strings["No ratings"] = "Pas de note";
-App::$strings["Rating: "] = "Evaluation&nbsp:";
-App::$strings["Website: "] = "Site web&nbsp;:";
-App::$strings["Description: "] = "Description&nbsp;:";
App::$strings["Theme settings updated."] = "Paramètres du thème mis à jour.";
App::$strings["# Accounts"] = "# Comptes";
App::$strings["# blocked accounts"] = "# comptes bloqués";
@@ -1031,19 +1011,91 @@ App::$strings["(In addition to basic fields)"] = "(en plus des champs de base)";
App::$strings["All available fields"] = "Tous les champs disponibles";
App::$strings["Custom Fields"] = "Champs personnalisés";
App::$strings["Create Custom Field"] = "Créer un champ personnalisé";
-App::$strings["App installed."] = "Application installée.";
-App::$strings["Malformed app."] = "Erreur de l'application - Malformée.";
-App::$strings["Embed code"] = "Imbriquer le code";
-App::$strings["Edit App"] = "Modifier l'application";
-App::$strings["Create App"] = "Créer une application";
-App::$strings["Name of app"] = "Nom de l'application";
-App::$strings["Location (URL) of app"] = "Emplacement (URL) de l'application";
-App::$strings["Photo icon URL"] = "URL de l'icône à utiliser pour cette photo";
-App::$strings["80 x 80 pixels - optional"] = "80 x 80 pixels - facultatif";
-App::$strings["Categories (optional, comma separated list)"] = "";
-App::$strings["Version ID"] = "Identifiant de version";
-App::$strings["Price of app"] = "Prix de l'application";
-App::$strings["Location (URL) to purchase app"] = "Emplacement (URL) pour l'achat de l'application";
+App::$strings["Name or caption"] = "Nom ou libellé";
+App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Exemples&nbsp;: \"Jérôme Dutilleul\", \"Louise et ses chevaux\", \"Football\", \"Club d'aéromodélisme\"";
+App::$strings["Choose a short nickname"] = "Choisissez un alias";
+App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Votre pseudo sera utilisé pour créer une adresse de canal facile à mémoriser, par ex. pseudo%s";
+App::$strings["Channel role and privacy"] = "Rôle et confidentialité du canal";
+App::$strings["Select a channel role with your privacy requirements."] = "Sélectionner un rôle de canal adapté à vos besoins de confidentialité.";
+App::$strings["Read more about roles"] = "En savoir plus sur les rôles";
+App::$strings["Create Channel"] = "Créer le canal";
+App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "Un canal est votre identité sur ce réseau. Il peut représenter une personne, un blog, ou un forum par exemple. Les canaux peuvent entrer en contact les uns avec les autres pour partager des informations avec des permissions d'accès très fines.";
+App::$strings["or <a href=\"import\">import an existing channel</a> from another location."] = "ou <a href=\"import\">importer un canal existant</a> d'un autre serveur.";
+App::$strings["sent you a private message"] = "vous a envoyé un message privé";
+App::$strings["added your channel"] = "a ajouté votre canal";
+App::$strings["g A l F d"] = "g A l F d";
+App::$strings["[today]"] = "[aujourd'hui]";
+App::$strings["posted an event"] = "a publié un événement";
+App::$strings["Invalid request identifier."] = "Identifiant de requête invalide.";
+App::$strings["Discard"] = "Annuler";
+App::$strings["Mark all system notifications seen"] = "Marquer toutes les notifications système comme vues";
+App::$strings["Poke"] = "Tapoter";
+App::$strings["Poke somebody"] = "Taquiner quelqu'un";
+App::$strings["Poke/Prod"] = "Tapoter/Encourager";
+App::$strings["Poke, prod or do other things to somebody"] = "Taquiner, pousser ou faire autre chose à quelqu'un";
+App::$strings["Recipient"] = "Destinataire";
+App::$strings["Choose what you wish to do to recipient"] = "Choisir ce que vous voulez faire au destinataire";
+App::$strings["Make this post private"] = "Rendre cette publication privée";
+App::$strings["Unable to find your hub."] = "Impossible de trouver votre hub.";
+App::$strings["Post successful."] = "Publication réussie.";
+App::$strings["OpenID protocol error. No ID returned."] = "Erreur du protocole OpenID. Pas d'ID retourné.";
+App::$strings["Login failed."] = "Échec de la connexion.";
+App::$strings["Invalid profile identifier."] = "Identifiant de profil invalide.";
+App::$strings["Profile Visibility Editor"] = "Éditeur de visibilité de profil";
+App::$strings["Profile"] = "Profil";
+App::$strings["Click on a contact to add or remove."] = "Cliquer sur un contact pour l'ajouter ou le retirer.";
+App::$strings["Visible To"] = "Visible par";
+App::$strings["This setting requires special processing and editing has been blocked."] = "Ce paramètre nécessité un traitement spécial, les modifications ont été bloquées.";
+App::$strings["Configuration Editor"] = "Editeur de configuration";
+App::$strings["Warning: Changing some settings could render your channel inoperable. Please leave this page unless you are comfortable with and knowledgeable about how to correctly use this feature."] = "Attention&nbsp;:modifier certains paramètres peut rendre votre canal inutilisable. Merci d'ignorer cette page à moins d'être suffisamment à l'aise de savoir comment utiliser correctement cette fonctionnalité.";
+App::$strings["Fetching URL returns error: %1\$s"] = "Récupération d'URL échouée&nbsp;: %1\$s";
+App::$strings["Version %s"] = "Version %s";
+App::$strings["Installed plugins/addons/apps:"] = "Greffons/extensions/applications installés&nbsp;:";
+App::$strings["No installed plugins/addons/apps"] = "Aucun greffon/extension/application installé";
+App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Ceci est un serveur \$Projectname - un réseau collaboratif mondial de serveurs décentralisés à la confidentialité améliorée.";
+App::$strings["Tag: "] = "Étiquette&nbsp;:";
+App::$strings["Last background fetch: "] = "Dernière récupération en tâche de fond&nbsp;:";
+App::$strings["Current load average: "] = "Charge moyenne actuelle&nbsp;:";
+App::$strings["Running at web location"] = "Tourne à l'adresse internet";
+App::$strings["Please visit <a href=\"http://hubzilla.org\">hubzilla.org</a> to learn more about \$Projectname."] = "Merci de visiter <a href=\"http://hubzilla.org\">hubzilla.org</a> pour en apprendre davantage sur \$Projectname.";
+App::$strings["Bug reports and issues: please visit"] = "Pour remonter bogues et problèmes, merci de visiter";
+App::$strings["\$projectname issues"] = "Problèmes \$projectname";
+App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Suggestions, demandes, etc. - merci de vous adresser à \"redmatrix\" à librelist - point com";
+App::$strings["Site Administrators"] = "Administrateurs du site";
+App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Nous avons rencontré un problème avec l'OpenID que vous nous avez fourni. Merci de vérifier que l'ID est correctement saisi.";
+App::$strings["The error message was:"] = "Le message d'erreur était&nbsp;:";
+App::$strings["Authentication failed."] = "Échec de l'authentification.";
+App::$strings["Remote Authentication"] = "Authentification distante";
+App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Entrez l'adresse de votre canal (par ex. moncanal@monsite.com)";
+App::$strings["Authenticate"] = "Authentifier";
+App::$strings["Public Hubs"] = "Instances publiques";
+App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself <strong>may</strong> provide additional details."] = "Les sites listés permettent l'enregistrement public de comptes pour le réseau \$Projectname. Tous les sites du réseau sont reliés entre eux, être membre d'un site revient à être membre de tous. Certains sites peuvent demander une souscription ou proposer différents niveaux de service. Chaque site <strong>peut</strong> fournir des détails supplémentaires.";
+App::$strings["Hub URL"] = "URL du site";
+App::$strings["Access Type"] = "Type d'accès";
+App::$strings["Registration Policy"] = "Politique d'inscription";
+App::$strings["Stats"] = "";
+App::$strings["Software"] = "";
+App::$strings["Ratings"] = "Evaluations";
+App::$strings["Rate"] = "Evaluer";
+App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Shift-rechargez votre page, ou videz le cache du navigateur si la photo ne s'affiche pas immédiatement.";
+App::$strings["Upload Profile Photo"] = "Téléverser une photo de profil";
+App::$strings["Block Name"] = "Nom du Bloc";
+App::$strings["Blocks"] = "Blocs";
+App::$strings["Block Title"] = "Titre du bloc";
+App::$strings["Website:"] = "Site web&nbsp;:";
+App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Canal distant [%s] (encore inconnu sur ce site)";
+App::$strings["Rating (this information is public)"] = "Evaluation (cette information est publique)";
+App::$strings["Optionally explain your rating (this information is public)"] = "Explication facultative de votre évaluation (cette information est publique)";
+App::$strings["No ratings"] = "Pas de note";
+App::$strings["Rating: "] = "Evaluation&nbsp:";
+App::$strings["Website: "] = "Site web&nbsp;:";
+App::$strings["Description: "] = "Description&nbsp;:";
+App::$strings["Apps"] = "Applications";
+App::$strings["Title (optional)"] = "Titre (facultatif)";
+App::$strings["Edit Block"] = "Modifier le bloc";
+App::$strings["No channel."] = "Pas de canal.";
+App::$strings["Common connections"] = "Contacts en commun";
+App::$strings["No connections in common."] = "Pas de contacts en commun.";
App::$strings["Select a bookmark folder"] = "Choisir un dossier de favoris";
App::$strings["Save Bookmark"] = "Enregistrer le favori";
App::$strings["URL of bookmark"] = "URL du favori";
@@ -1069,7 +1121,7 @@ App::$strings["no"] = "non";
App::$strings["yes"] = "oui";
App::$strings["Membership on this site is by invitation only."] = "L'inscription à ce site se fait uniquement sur invitation.";
App::$strings["Register"] = "S'inscrire";
-App::$strings["Proceed to create your first channel"] = "Continuer pour créer votre premier canal";
+App::$strings["This site may require email verification after submitting this form. If you are returned to a login page, please check your email for instructions."] = "";
App::$strings["Please login."] = "Merci de vous connecter.";
App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "Il est impossible de supprimer un compte dans les 48 heures après avoir changé le mot de passe du compte.";
App::$strings["Remove This Account"] = "Supprimer ce compte";
@@ -1086,17 +1138,23 @@ App::$strings["This channel will be completely removed from the network. "] = "C
App::$strings["Remove this channel and all its clones from the network"] = "Supprimer ce canal ainsi que tous ses clones sur le réseau";
App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Par défaut, seule l'instance du canal présente sur ce hub sera supprimée du réseau";
App::$strings["Remove Channel"] = "Supprimer le canal";
-App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Nous avons rencontré un problème avec l'OpenID que vous nous avez fourni. Merci de vérifier que l'ID est correctement saisi.";
-App::$strings["The error message was:"] = "Le message d'erreur était&nbsp;:";
-App::$strings["Authentication failed."] = "Échec de l'authentification.";
-App::$strings["Remote Authentication"] = "Authentification distante";
-App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Entrez l'adresse de votre canal (par ex. moncanal@monsite.com)";
-App::$strings["Authenticate"] = "Authentifier";
+App::$strings["Export Channel"] = "Exporter le canal";
+App::$strings["Export your basic channel information to a file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new server hub, but does not contain your content."] = "Exportez les principales informations de votre canal dans un fichier. Celui-ci pourra servir de sauvegarde de vos contacts, permissions, profils et données de base. Il pourra être importé sur un nouveau hub/serveur, mais n'embarquera pas vos contenus.";
+App::$strings["Export Content"] = "Exporter le contenu";
+App::$strings["Export your channel information and recent content to a JSON backup that can be restored or imported to another server hub. This backs up all of your connections, permissions, profile data and several months of posts. This file may be VERY large. Please be patient - it may take several minutes for this download to begin."] = "Exportez les informations du canal et les contenus récents dans un fichier JSON. Celui-ci contiendra toutes vos relations, permissions, profils, et plusieurs mois de publications. Ce fichier peut être TRÈS gros. Armez-vous de patience - plusieurs minutes peuvent s'écouler avant que le téléchargement ne commence.";
+App::$strings["Export your posts from a given year."] = "Exporter vos publications d'une année en particulier";
+App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Vous pouvez également exporter vos publications et conversations pour une année ou un mois particulier. Ajustez la date dans la barre de votre navigateur pour sélectionner d'autres dates. Si l'export échoue (possible en cas de pénurie de mémoire sur le serveur de votre hub), essayez à nouveau en sélectionnant un intervalle de dates plus petit.";
+App::$strings["To select all posts for a given year, such as this year, visit <a href=\"%1\$s\">%2\$s</a>"] = "Pour sélectionner toutes les publications pour une année donnée, telle que cette année, visitez <a href=\"%1\$s\">%2\$s</a>";
+App::$strings["To select all posts for a given month, such as January of this year, visit <a href=\"%1\$s\">%2\$s</a>"] = "Pour sélectionner toutes les publications pour un mois donné, par exemple janvier, visitez <a href=\"%1\$s\">%2\$s</a>";
+App::$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)."] = "Ces fichiers de contenu peuvent être importés ou restaurés en visitant <a href=\"%1\$s\">%2\$s</a> sur n'importe quel site hébergeant votre canal. Pour de meilleurs résultats merci de les importer par ordre chronologique (les plus anciens d'abord).";
App::$strings["Items tagged with: %s"] = "Eléments étiquetés avec&nbsp;: %s";
App::$strings["Search results for: %s"] = "Résultats de recherche pour&nbsp;: %s";
App::$strings["No service class restrictions found."] = "Aucune restriction de classe de service trouvée.";
App::$strings["Name is required"] = "Le nom est requis";
App::$strings["Key and Secret are required"] = "Clef et secret sont requis";
+App::$strings["This channel is limited to %d tokens"] = "";
+App::$strings["Name and Password are required."] = "";
+App::$strings["Token saved."] = "";
App::$strings["Not valid email."] = "Adresse de courriel non valide.";
App::$strings["Protected email address. Cannot change to that email."] = "Adresse de courriel protégée. Impossible de l'utiliser.";
App::$strings["System failure storing new email. Please try again."] = "Défaillance système lors du stockage de la nouvelle adresse de courriel. Merci d'essayer à nouveau.";
@@ -1129,6 +1187,12 @@ App::$strings["Confirm New Password"] = "Confirmez le nouveau mot de passe";
App::$strings["Leave password fields blank unless changing"] = "Laissez les mots de passe vides si vous ne voulez pas les modifier";
App::$strings["Email Address:"] = "Adresse de courriel&nbsp;:";
App::$strings["Remove this account including all its channels"] = "Supprimer ce compte et tous ses canaux";
+App::$strings["Use this form to create temporary access identifiers to share things with non-members. These identities may be used in Access Control Lists and visitors may login using these credentials to access the private content."] = "";
+App::$strings["You may also provide <em>dropbox</em> style access links to friends and associates by adding the Login Password to any specific site URL as shown. Examples:"] = "";
+App::$strings["Guest Access Tokens"] = "";
+App::$strings["Login Name"] = "";
+App::$strings["Login Password"] = "";
+App::$strings["Expires (yyyy-mm-dd)"] = "";
App::$strings["Additional Features"] = "Fonctionnalités additionnelles";
App::$strings["Connector Settings"] = "Paramètres du connecteur";
App::$strings["No special theme for mobile devices"] = "Pas de thème spécifique aux mobiles";
@@ -1291,7 +1355,6 @@ App::$strings["GD graphics PHP module"] = "module PHP GD graphics";
App::$strings["OpenSSL PHP module"] = "module PHP OpenSSL";
App::$strings["mysqli or postgres PHP module"] = "module PHP postgres ou mysqli";
App::$strings["mb_string PHP module"] = "module PHP mb_string";
-App::$strings["mcrypt PHP module"] = "module PHP mcrypt";
App::$strings["xml PHP module"] = "module PHP xml";
App::$strings["Apache mod_rewrite module"] = "module Apache mod_rewrite";
App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Erreur&nbsp;: le module mod-rewrite du serveur web Apache est requis, mais pas installé.";
@@ -1302,7 +1365,6 @@ App::$strings["Error: GD graphics PHP module with JPEG support required but not
App::$strings["Error: openssl PHP module required but not installed."] = "Erreur&nbsp;: le module openssl de PHP est requis, mais pas installé.";
App::$strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Erreur&nbsp;: un module PHP mysqli ou postgres est requis, mais aucun des deux n'est installé.";
App::$strings["Error: mb_string PHP module required but not installed."] = "Erreur&nbsp;: le module mb_string de PHP est requis, mais pas installé.";
-App::$strings["Error: mcrypt PHP module required but not installed."] = "Erreur&nbsp;: le module mcrypt de PHP est requis, mais pas installé.";
App::$strings["Error: xml PHP module required for DAV but not installed."] = "Erreur&nbsp;: le module xml de PHP est requis pour le DAV, mais pas installé.";
App::$strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "L'installeur web a besoin de créer un fichier \".htconfig.php\" à la racine de votre serveur web, mais en est incapable.";
App::$strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "C'est généralement lié à un problème de droits, à cause duquel le serveur web est interdit d'écriture dans le répertoire concerné - alors que votre propre utilisateur a le droit.";
@@ -1314,7 +1376,7 @@ App::$strings["In order to store these compiled templates, the web server needs
App::$strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Merci de vous assurer que l'utilisateur sous lequel le serveur web tourne (le plus souvent, www-data) a bien l'autorisation d'écrire dans ce répertoire.";
App::$strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "Note: Comme mesure de sécurité, assurez vous de donner les droits d'écriture au serveur web sur %s uniquement, pas sur les fichiers individuels (.tpl) qu'il contient.";
App::$strings["%s is writable"] = "Permission d'écriture sur %s activée";
-App::$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"] = "\$Projectname utilise le répertoire 'store' - situé à la racine de votre installation de \$Projectname - pour sauvegarder les fichiers envoyés. Le serveur web aura donc besoin de pouvoir y écrire.";
+App::$strings["This software uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = "";
App::$strings["store is writable"] = "'store' est accessible en écriture";
App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "Le certificat SSL/TLS n'a pas pu être validé. Merci de le corriger, ou de désactiver l'accès https à ce site (non recommandé).";
App::$strings["If you have https access to your website or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"] = "Si votre serveur accepte les connexions https ou s'il permet les connexions sur le port TCP 443 (le port utilisé par le protocole https), vous DEVEZ utiliser un certificat valide. Vous ne DEVEZ PAS utiliser un certificat que vous avez vous-mêmes signé&nbsp;!";
@@ -1322,6 +1384,7 @@ App::$strings["This restriction is incorporated because public posts from you ma
App::$strings["If your certificate is not recognized, members of other sites (who may themselves have valid certificates) will get a warning message on their own site complaining about security issues."] = "Si votre certificat n'est pas reconnu, les membres des autres sites (qui eux peuvent avoir des certificats valides) recevront des messages d'avertissement sur leur propre site se plaignant de problèmes de sécurité.";
App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Ceci peut causer des problèmes d'ergonomie ailleurs (pas seulement sur votre site), nous devons donc insister sur ce prérequis.";
App::$strings["Providers are available that issue free certificates which are browser-valid."] = "Il existe des autorités de certification qui vous fourniront gratuitement un certificat valide.";
+App::$strings["If you are confident that the certificate is valid and signed by a trusted authority, check to see if you have failed to install an intermediate cert. These are not normally required by browsers, but are required for server-to-server communications."] = "";
App::$strings["SSL certificate validation"] = "Validation du certificat SSL/TLS";
App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "La réécriture d'URL définie dans le .htaccess ne fonctionne pas. Vérifiez votre configuration serveur. Test&nbsp;:";
App::$strings["Url rewrite is working"] = "La réécriture d'URL fonctionne";
@@ -1333,19 +1396,20 @@ App::$strings["Files: shared with me"] = "Fichiers&nbsp;: partagés avec moi";
App::$strings["NEW"] = "NOUVEAU";
App::$strings["Remove all files"] = "Supprimer tous les fichiers";
App::$strings["Remove this file"] = "Supprimer ce fichier";
-App::$strings["Version %s"] = "Version %s";
-App::$strings["Installed plugins/addons/apps:"] = "Greffons/extensions/applications installés&nbsp;:";
-App::$strings["No installed plugins/addons/apps"] = "Aucun greffon/extension/application installé";
-App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Ceci est un serveur \$Projectname - un réseau collaboratif mondial de serveurs décentralisés à la confidentialité améliorée.";
-App::$strings["Tag: "] = "Étiquette&nbsp;:";
-App::$strings["Last background fetch: "] = "Dernière récupération en tâche de fond&nbsp;:";
-App::$strings["Current load average: "] = "Charge moyenne actuelle&nbsp;:";
-App::$strings["Running at web location"] = "Tourne à l'adresse internet";
-App::$strings["Please visit <a href=\"http://hubzilla.org\">hubzilla.org</a> to learn more about \$Projectname."] = "Merci de visiter <a href=\"http://hubzilla.org\">hubzilla.org</a> pour en apprendre davantage sur \$Projectname.";
-App::$strings["Bug reports and issues: please visit"] = "Pour remonter bogues et problèmes, merci de visiter";
-App::$strings["\$projectname issues"] = "Problèmes \$projectname";
-App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Suggestions, demandes, etc. - merci de vous adresser à \"redmatrix\" à librelist - point com";
-App::$strings["Site Administrators"] = "Administrateurs du site";
+App::$strings["Thing updated"] = "Elément mis à jour";
+App::$strings["Object store: failed"] = "Stockage de l'objet&nbsp;: échec";
+App::$strings["Thing added"] = "Elément ajouté";
+App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s";
+App::$strings["Show Thing"] = "Montrer élément";
+App::$strings["item not found."] = "élément introuvable.";
+App::$strings["Edit Thing"] = "Modifier élément";
+App::$strings["Select a profile"] = "Choisissez un profil";
+App::$strings["Post an activity"] = "Publier une activité";
+App::$strings["Only sends to viewers of the applicable profile"] = "Envoie exclusivement aux visiteurs du profil concerné";
+App::$strings["Name of thing e.g. something"] = "Nom de l'élément, p.ex. quelque-chose";
+App::$strings["URL of thing (optional)"] = "URL de l'élément (facultatif)";
+App::$strings["URL for photo of thing (optional)"] = "URL d'une photo de l'élément (facultatif)";
+App::$strings["Add Thing to your Profile"] = "Ajouter l'élément à votre profil";
App::$strings["Failed to create source. No channel selected."] = "Impossible de créer la source. Aucun canal selectionné.";
App::$strings["Source created."] = "Source créée.";
App::$strings["Source updated."] = "Source mise à jour.";
@@ -1373,60 +1437,38 @@ App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s a étiqueté le
App::$strings["Tag removed"] = "Étiquette retirée";
App::$strings["Remove Item Tag"] = "Retirer une étiquette à l'élément";
App::$strings["Select a tag to remove: "] = "Étiquette à retirer&nbsp;:";
-App::$strings["Thing updated"] = "Elément mis à jour";
-App::$strings["Object store: failed"] = "Stockage de l'objet&nbsp;: échec";
-App::$strings["Thing added"] = "Elément ajouté";
-App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s";
-App::$strings["Show Thing"] = "Montrer élément";
-App::$strings["item not found."] = "élément introuvable.";
-App::$strings["Edit Thing"] = "Modifier élément";
-App::$strings["Select a profile"] = "Choisissez un profil";
-App::$strings["Post an activity"] = "Publier une activité";
-App::$strings["Only sends to viewers of the applicable profile"] = "Envoie exclusivement aux visiteurs du profil concerné";
-App::$strings["Name of thing e.g. something"] = "Nom de l'élément, p.ex. quelque-chose";
-App::$strings["URL of thing (optional)"] = "URL de l'élément (facultatif)";
-App::$strings["URL for photo of thing (optional)"] = "URL d'une photo de l'élément (facultatif)";
-App::$strings["Add Thing to your Profile"] = "Ajouter l'élément à votre profil";
-App::$strings["Export Channel"] = "Exporter le canal";
-App::$strings["Export your basic channel information to a file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new server hub, but does not contain your content."] = "Exportez les principales informations de votre canal dans un fichier. Celui-ci pourra servir de sauvegarde de vos contacts, permissions, profils et données de base. Il pourra être importé sur un nouveau hub/serveur, mais n'embarquera pas vos contenus.";
-App::$strings["Export Content"] = "Exporter le contenu";
-App::$strings["Export your channel information and recent content to a JSON backup that can be restored or imported to another server hub. This backs up all of your connections, permissions, profile data and several months of posts. This file may be VERY large. Please be patient - it may take several minutes for this download to begin."] = "Exportez les informations du canal et les contenus récents dans un fichier JSON. Celui-ci contiendra toutes vos relations, permissions, profils, et plusieurs mois de publications. Ce fichier peut être TRÈS gros. Armez-vous de patience - plusieurs minutes peuvent s'écouler avant que le téléchargement ne commence.";
-App::$strings["Export your posts from a given year."] = "Exporter vos publications d'une année en particulier";
-App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Vous pouvez également exporter vos publications et conversations pour une année ou un mois particulier. Ajustez la date dans la barre de votre navigateur pour sélectionner d'autres dates. Si l'export échoue (possible en cas de pénurie de mémoire sur le serveur de votre hub), essayez à nouveau en sélectionnant un intervalle de dates plus petit.";
-App::$strings["To select all posts for a given year, such as this year, visit <a href=\"%1\$s\">%2\$s</a>"] = "Pour sélectionner toutes les publications pour une année donnée, telle que cette année, visitez <a href=\"%1\$s\">%2\$s</a>";
-App::$strings["To select all posts for a given month, such as January of this year, visit <a href=\"%1\$s\">%2\$s</a>"] = "Pour sélectionner toutes les publications pour un mois donné, par exemple janvier, visitez <a href=\"%1\$s\">%2\$s</a>";
-App::$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)."] = "Ces fichiers de contenu peuvent être importés ou restaurés en visitant <a href=\"%1\$s\">%2\$s</a> sur n'importe quel site hébergeant votre canal. Pour de meilleurs résultats merci de les importer par ordre chronologique (les plus anciens d'abord).";
-App::$strings["No connections."] = "Aucun contact.";
-App::$strings["Visit %s's profile [%s]"] = "Visiter le profil de %s [%s]";
-App::$strings["View Connections"] = "Voir les contacts";
-App::$strings["Source of Item"] = "Source de l'élément";
App::$strings["Webpages"] = "Pages web";
App::$strings["Actions"] = "Actions";
App::$strings["Page Link"] = "Lien vers la page";
App::$strings["Page Title"] = "Titre de la page";
+App::$strings["Not found"] = "";
+App::$strings["Wiki"] = "";
+App::$strings["Sandbox"] = "";
+App::$strings["\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be saved*.\""] = "";
+App::$strings["Revision Comparison"] = "";
+App::$strings["Revert"] = "";
+App::$strings["Enter the name of your new wiki:"] = "";
+App::$strings["Enter the name of the new page:"] = "";
+App::$strings["Enter the new name:"] = "";
+App::$strings["Embed image from photo albums"] = "";
+App::$strings["Embed an image from your albums"] = "";
+App::$strings["OK"] = "OK";
+App::$strings["Choose images to embed"] = "";
+App::$strings["Choose an album"] = "";
+App::$strings["Choose a different album..."] = "";
+App::$strings["Error getting album list"] = "";
+App::$strings["Error getting photo link"] = "";
+App::$strings["Error getting album"] = "";
+App::$strings["No connections."] = "Aucun contact.";
+App::$strings["Visit %s's profile [%s]"] = "Visiter le profil de %s [%s]";
+App::$strings["View Connections"] = "Voir les contacts";
+App::$strings["Source of Item"] = "Source de l'élément";
+App::$strings["Authorize application connection"] = "Autoriser l'application à se connecter";
+App::$strings["Return to your app and insert this Securty Code:"] = "Merci de retourner vers votre application, et d'y insérer ce Code de Sécurité&nbsp;:";
+App::$strings["Please login to continue."] = "Merci de vous identifier pour continuer.";
+App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Voulez-vous autoriser cette application à accéder à vos publications et contacts, et/ou à publier en votre nom?";
App::$strings["Xchan Lookup"] = "Recherche xchan";
App::$strings["Lookup xchan beginning with (or webbie): "] = "Recherche xchan commençant par (ou adresse \"webbie\")&nbsp;:";
-App::$strings["Site Admin"] = "Administrateur";
-App::$strings["Bug Report"] = "";
-App::$strings["View Bookmarks"] = "";
-App::$strings["My Chatrooms"] = "";
-App::$strings["Firefox Share"] = "";
-App::$strings["Remote Diagnostics"] = "";
-App::$strings["Suggest Channels"] = "Suggérer des canaux";
-App::$strings["Login"] = "Connexion";
-App::$strings["Grid"] = "Réseau";
-App::$strings["Channel Home"] = "Mon canal";
-App::$strings["Events"] = "Événements";
-App::$strings["Directory"] = "Annuaire";
-App::$strings["Mail"] = "Messages";
-App::$strings["Chat"] = "Clavardage";
-App::$strings["Probe"] = "Sonder";
-App::$strings["Suggest"] = "Suggérer";
-App::$strings["Random Channel"] = "Un canal au hasard";
-App::$strings["Invite"] = "Invitation";
-App::$strings["Features"] = "Fonctionalités";
-App::$strings["Post"] = "Envoyer";
-App::$strings["Purchase"] = "Acheter";
App::$strings["Missing room name"] = "Il manque le nom du salon";
App::$strings["Duplicate room name"] = "Un salon avec ce nom existe déjà";
App::$strings["Invalid room specifier."] = "Identifiant de salon invalide.";
@@ -1474,6 +1516,27 @@ App::$strings["Please visit %s to approve or reject the suggestion."] = "Merci d
App::$strings["[Hubzilla:Notify]"] = "[Hubzilla:Notify]";
App::$strings["created a new post"] = "a publié un nouveau message";
App::$strings["commented on %s's post"] = "a commenté la publication de %s";
+App::$strings["Site Admin"] = "Administrateur";
+App::$strings["Bug Report"] = "";
+App::$strings["View Bookmarks"] = "";
+App::$strings["My Chatrooms"] = "";
+App::$strings["Firefox Share"] = "";
+App::$strings["Remote Diagnostics"] = "";
+App::$strings["Suggest Channels"] = "Suggérer des canaux";
+App::$strings["Login"] = "Connexion";
+App::$strings["Grid"] = "Réseau";
+App::$strings["Channel Home"] = "Mon canal";
+App::$strings["Events"] = "Événements";
+App::$strings["Directory"] = "Annuaire";
+App::$strings["Mail"] = "Messages";
+App::$strings["Chat"] = "Clavardage";
+App::$strings["Probe"] = "Sonder";
+App::$strings["Suggest"] = "Suggérer";
+App::$strings["Random Channel"] = "Un canal au hasard";
+App::$strings["Invite"] = "Invitation";
+App::$strings["Features"] = "Fonctionalités";
+App::$strings["Post"] = "Envoyer";
+App::$strings["Purchase"] = "Acheter";
App::$strings["Private Message"] = "Message Privé";
App::$strings["Select"] = "Sélectionner";
App::$strings["Save to Folder"] = "Enregistrer dans le dossier";
@@ -1510,7 +1573,7 @@ App::$strings["Expires: %s"] = "Expire&nbsp;: %s";
App::$strings["Save Bookmarks"] = "Enregistrer les favoris";
App::$strings["Add to Calendar"] = "Ajouter au Calendrier";
App::$strings["Mark all seen"] = "Tout marquer comme vu";
-App::$strings["[+] show all"] = "[+] voir tous";
+App::$strings["%s show all"] = "";
App::$strings["Bold"] = "Gras";
App::$strings["Italic"] = "Italique";
App::$strings["Underline"] = "Souligné";
@@ -1519,205 +1582,30 @@ App::$strings["Code"] = "Code";
App::$strings["Image"] = "Image";
App::$strings["Insert Link"] = "Insérer un lien";
App::$strings["Video"] = "Vidéo";
+App::$strings["Visible to your default audience"] = "Visible pour vos contacts seulement";
+App::$strings["Only me"] = "";
+App::$strings["Public"] = "Public";
+App::$strings["Anybody in the \$Projectname network"] = "";
+App::$strings["Any account on %s"] = "";
+App::$strings["Any of my connections"] = "";
+App::$strings["Only connections I specifically allow"] = "";
+App::$strings["Anybody authenticated (could include visitors from other networks)"] = "";
+App::$strings["Any connections including those who haven't yet been approved"] = "";
+App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "";
+App::$strings["This is your default setting for who can view your default channel profile"] = "";
+App::$strings["This is your default setting for who can view your connections"] = "";
+App::$strings["This is your default setting for who can view your file storage and photos"] = "";
+App::$strings["This is your default setting for the audience of your webpages"] = "";
App::$strings["No username found in import file."] = "Aucun nom d'utilisateur dans le fichier d'import.";
App::$strings["Unable to create a unique channel address. Import failed."] = "Impossible de créer une adresse de canal unique. Echec de l'import.";
App::$strings["Cannot locate DNS info for database server '%s'"] = "Impossible de trouver les infos DNS du serveur de BDD '%s'";
-App::$strings["Categories"] = "Catégories";
-App::$strings["Tags"] = "Étiquettes";
-App::$strings["Keywords"] = "Mots-clefs";
-App::$strings["have"] = "ont";
-App::$strings["has"] = "a";
-App::$strings["want"] = "veulent";
-App::$strings["wants"] = "veut";
-App::$strings["likes"] = "aime";
-App::$strings["dislikes"] = "n'aime pas";
-App::$strings["l F d, Y \\@ g:i A"] = "l d F Y \\à G\\hi";
-App::$strings["Starts:"] = "Début&nbsp;:";
-App::$strings["Finishes:"] = "Fin&nbsp;:";
-App::$strings["This event has been added to your calendar."] = "Cet évènement a été ajouté dans votre calendrier.";
-App::$strings["Not specified"] = "Non spécifié";
-App::$strings["Needs Action"] = "Besoin d'une action";
-App::$strings["Completed"] = "Terminé";
-App::$strings["In Process"] = "En cours";
-App::$strings["Cancelled"] = "Annulé";
-App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "L'import a échoué. Un canal existe déjà avec ce nom";
-App::$strings["Channel clone failed. Import failed."] = "Echec du clonage du canal. Echec de l'impot.";
-App::$strings["(Unknown)"] = "(Inconnu)";
-App::$strings["Visible to anybody on the internet."] = "Visible pour tout le monde sur internet.";
-App::$strings["Visible to you only."] = "Visible pour vous seulement.";
-App::$strings["Visible to anybody in this network."] = "Visible pour tout le monde sur ce réseau.";
-App::$strings["Visible to anybody authenticated."] = "Visible aux utilisateurs authentifiés.";
-App::$strings["Visible to anybody on %s."] = "Visible pour tous sur %s.";
-App::$strings["Visible to all connections."] = "Visible pour tous les contacts.";
-App::$strings["Visible to approved connections."] = "Visible aux contacts approuvés.";
-App::$strings["Visible to specific connections."] = "Visible pour certains contacts.";
-App::$strings["Privacy group is empty."] = "Groupe d'accès vide.";
-App::$strings["Privacy group: %s"] = "Groupe d'accès&nbsp;: %s";
-App::$strings["Connection not found."] = "Contact non trouvé.";
-App::$strings["profile photo"] = "photo de profil";
-App::$strings["No recipient provided."] = "Pas de destinataire.";
-App::$strings["[no subject]"] = "[sans objet]";
-App::$strings["Unable to determine sender."] = "Impossible de déterminer l'émetteur.";
-App::$strings["Stored post could not be verified."] = "Le message stocké n'a pas pu être vérifié.";
-App::$strings["prev"] = "préc.";
-App::$strings["first"] = "premier";
-App::$strings["last"] = "dernier";
-App::$strings["next"] = "Suivant";
-App::$strings["older"] = "plus ancien";
-App::$strings["newer"] = "plus récent";
-App::$strings["No connections"] = "Pas de relations.";
-App::$strings["View all %s connections"] = "Voir les %s contacts";
-App::$strings["poke"] = "tapoter";
-App::$strings["poked"] = "a tapoté";
-App::$strings["ping"] = "ping";
-App::$strings["pinged"] = "pingé";
-App::$strings["prod"] = "encourager";
-App::$strings["prodded"] = "encouragé";
-App::$strings["slap"] = "giffler";
-App::$strings["slapped"] = "gifflé(e)";
-App::$strings["finger"] = "pointer";
-App::$strings["fingered"] = "pointé";
-App::$strings["rebuff"] = "rejetter";
-App::$strings["rebuffed"] = "rejeté";
-App::$strings["happy"] = "heureux";
-App::$strings["sad"] = "triste";
-App::$strings["mellow"] = "mélancolique";
-App::$strings["tired"] = "fatigué";
-App::$strings["perky"] = "impertinent";
-App::$strings["angry"] = "en colère";
-App::$strings["stupefied"] = "stupéfait";
-App::$strings["puzzled"] = "perplexe";
-App::$strings["interested"] = "intéressé";
-App::$strings["bitter"] = "amer";
-App::$strings["cheerful"] = "plein d'entrain";
-App::$strings["alive"] = "vivant";
-App::$strings["annoyed"] = "agaçé";
-App::$strings["anxious"] = "anxieux";
-App::$strings["cranky"] = "énervé";
-App::$strings["disturbed"] = "perturbé";
-App::$strings["frustrated"] = "frustré";
-App::$strings["depressed"] = "déprimé";
-App::$strings["motivated"] = "motivé";
-App::$strings["relaxed"] = "détendu";
-App::$strings["surprised"] = "surpris";
-App::$strings["Monday"] = "Lundi";
-App::$strings["Tuesday"] = "Mardi";
-App::$strings["Wednesday"] = "Mercredi";
-App::$strings["Thursday"] = "Jeudi";
-App::$strings["Friday"] = "Vendredi";
-App::$strings["Saturday"] = "Samedi";
-App::$strings["Sunday"] = "Dimanche";
-App::$strings["January"] = "Janvier";
-App::$strings["February"] = "Février";
-App::$strings["March"] = "Mars";
-App::$strings["April"] = "Avril";
-App::$strings["May"] = "Mai";
-App::$strings["June"] = "Juin";
-App::$strings["July"] = "Juillet";
-App::$strings["August"] = "Août";
-App::$strings["September"] = "Septembre";
-App::$strings["October"] = "Octobre";
-App::$strings["November"] = "Novembre";
-App::$strings["December"] = "Décembre";
-App::$strings["Unknown Attachment"] = "Pièce jointe inconnue";
-App::$strings["unknown"] = "Inconnu";
-App::$strings["remove category"] = "supprimer la catégorie";
-App::$strings["remove from file"] = "retirer du fichier";
-App::$strings["default"] = "défaut";
-App::$strings["Page layout"] = "Mise en page";
-App::$strings["You can create your own with the layouts tool"] = "Créez les vôtres avec les outils de mise en page";
-App::$strings["Page content type"] = "Type de contenu de la page";
-App::$strings["Select an alternate language"] = "Choisir une langue alternative";
-App::$strings["activity"] = "activité";
-App::$strings["Design Tools"] = "Outils de conception";
-App::$strings["Pages"] = "Pages";
-App::$strings["System"] = "Système";
-App::$strings["New App"] = "";
-App::$strings["Suggestions"] = "Suggestions";
-App::$strings["See more..."] = "Voir plus...";
-App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Vous avez %1$.0f sur %2$.0f contacts autorisés.";
-App::$strings["Add New Connection"] = "Ajouter un nouveau contact";
-App::$strings["Enter channel address"] = "Saisissez l'adresse du canal";
-App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Exemples&nbsp;: pierre@exemple.com, https://exemple.com/sophie";
-App::$strings["Notes"] = "Notes";
-App::$strings["Remove term"] = "Retirer le terme";
-App::$strings["Saved Searches"] = "Recherches sauvegardées";
-App::$strings["add"] = "ajouter";
-App::$strings["Saved Folders"] = "Dossiers sauvegardés";
-App::$strings["Everything"] = "Tout";
-App::$strings["Archives"] = "Archives";
-App::$strings["Refresh"] = "Actualiser";
-App::$strings["Account settings"] = "Paramètres du compte";
-App::$strings["Channel settings"] = "Paramètres du canal";
-App::$strings["Additional features"] = "Fonctionnalités supplémentaires";
-App::$strings["Feature/Addon settings"] = "Paramètres des extensions/greffons";
-App::$strings["Display settings"] = "Paramètres d'affichage";
-App::$strings["Manage locations"] = "";
-App::$strings["Export channel"] = "Exporter le canal";
-App::$strings["Connected apps"] = "Applications connectées";
-App::$strings["Premium Channel Settings"] = "Paramètres de canal VIP";
-App::$strings["Private Mail Menu"] = "Menu des messages privés";
-App::$strings["Combined View"] = "Vue combinée";
-App::$strings["Inbox"] = "Boîte de réception";
-App::$strings["Outbox"] = "Boîte d'envoi";
-App::$strings["New Message"] = "Nouveau message";
-App::$strings["Conversations"] = "Conversations";
-App::$strings["Received Messages"] = "Messages reçus";
-App::$strings["Sent Messages"] = "Messages envoyés";
-App::$strings["No messages."] = "Pas de message.";
-App::$strings["Delete conversation"] = "Supprimer la conversation";
-App::$strings["Events Menu"] = "Menu Evènements";
-App::$strings["Day View"] = "Vue Jour";
-App::$strings["Week View"] = "Vue Semaine";
-App::$strings["Month View"] = "Vue Mois";
-App::$strings["Events Tools"] = "Outils Evènements";
-App::$strings["Export Calendar"] = "Exporter le calendrier";
-App::$strings["Import Calendar"] = "Importer un calendrier";
-App::$strings["Chatrooms"] = "Salons de clavardage";
-App::$strings["Overview"] = "";
-App::$strings["Chat Members"] = "";
-App::$strings["Bookmarked Chatrooms"] = "Salons favoris";
-App::$strings["Suggested Chatrooms"] = "Salons suggérés";
-App::$strings["photo/image"] = "photo/image";
-App::$strings["Click to show more"] = "Cliquer pour voir plus";
-App::$strings["Rating Tools"] = "Outils d'évaluation";
-App::$strings["Rate Me"] = "M'évaluer";
-App::$strings["View Ratings"] = "Voir mes évaluations";
-App::$strings["Forums"] = "Membres du forum";
-App::$strings["Tasks"] = "Tâches";
-App::$strings["Documentation"] = "Documentation";
-App::$strings["Project/Site Information"] = "Information sur le site/projet";
-App::$strings["For Members"] = "Pour les membres";
-App::$strings["For Administrators"] = "Pour les administrateurs";
-App::$strings["For Developers"] = "Pour les développeurs";
-App::$strings["Member registrations waiting for confirmation"] = "";
-App::$strings["Inspect queue"] = "Analyser la file d'attente";
-App::$strings["DB updates"] = "Mises à jour BDD";
-App::$strings["Admin"] = "Administrateur";
-App::$strings["Plugin Features"] = "Fonctionnalités des greffons";
-App::$strings["Channel is blocked on this site."] = "Ce canal est bloqué sur ce site.";
-App::$strings["Channel location missing."] = "Emplacement du canal introuvable.";
-App::$strings["Response from remote channel was incomplete."] = "La réponse du canal distant était incomplète.";
-App::$strings["Channel was deleted and no longer exists."] = "Le canal a été supprimé et n'existe plus.";
-App::$strings["Protocol disabled."] = "Protocole désactivé.";
-App::$strings["Channel discovery failed."] = "La tentative d'accéder au canal a échoué.";
-App::$strings["Cannot connect to yourself."] = "Ne peut pas se connecter à vous.";
-App::$strings["%1\$s's bookmarks"] = "Favoris de %1\$s";
-App::$strings["Public Timeline"] = "Fil public";
-App::$strings["Image/photo"] = "Image/photo";
-App::$strings["Encrypted content"] = "Contenu chiffré";
-App::$strings["Install %s element: "] = "Installer %s élément";
-App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Ce message contient un élément installable %s, mais vous n'avez pas l'autorisation de l'installer sur ce site.";
-App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s a écrit %2\$s qui suit %3\$s";
-App::$strings["Click to open/close"] = "Cliquer pour ouvrir/fermer";
-App::$strings["spoiler"] = "";
-App::$strings["Different viewers will see this text differently"] = "Ce texte aura un rendu différent en fonction des utilisateurs";
-App::$strings["$1 wrote:"] = "$1 a écrit&nbsp;:";
-App::$strings["Directory Options"] = "Options d'annuaire";
-App::$strings["Safe Mode"] = "Mode sûr";
-App::$strings["Public Forums Only"] = "Les forums publics uniquement";
-App::$strings["This Website Only"] = "Ce site uniquement";
-App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Le formulaire n'est plus sécurisé, probablement parce qu'il est ouvert depuis trop longtemps (plus de 3 heures).";
+App::$strings["Image exceeds website size limit of %lu bytes"] = "L'image dépasse la taille limite de %lu octets";
+App::$strings["Image file is empty."] = "L'image est vide.";
+App::$strings["Photo storage failed."] = "Le stockage de l'image a échoué.";
+App::$strings["a new photo"] = "une nouvelle photo";
+App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s a publié %2\$s pour %3\$s";
+App::$strings["Photo Albums"] = "Albums photo";
+App::$strings["Upload New Photos"] = "Ajouter des photos";
App::$strings["Logout"] = "Déconnexion";
App::$strings["End this session"] = "Mettre fin à la session";
App::$strings["Home"] = "Mon canal";
@@ -1732,6 +1620,7 @@ App::$strings["Your chatrooms"] = "Vos salons";
App::$strings["Bookmarks"] = "Favoris";
App::$strings["Your bookmarks"] = "Vos favoris";
App::$strings["Your webpages"] = "Vos pages web";
+App::$strings["Your wiki"] = "";
App::$strings["Sign in"] = "Connexion";
App::$strings["%s - click to logout"] = "%s - cliquer ici pour déconnecter";
App::$strings["Remote authentication"] = "Authentification distante";
@@ -1752,36 +1641,87 @@ App::$strings["See all notifications"] = "Voir toutes les notifications";
App::$strings["Private mail"] = "Messages privés";
App::$strings["See all private messages"] = "Voir tous les messages privés";
App::$strings["Mark all private messages seen"] = "Marquer tous les messages privés comme vus";
+App::$strings["Inbox"] = "Boîte de réception";
+App::$strings["Outbox"] = "Boîte d'envoi";
+App::$strings["New Message"] = "Nouveau message";
App::$strings["Event Calendar"] = "Calendrier des événements";
App::$strings["See all events"] = "Voir tous les événements";
App::$strings["Mark all events seen"] = "Marquer tous les événements comme vus";
App::$strings["Manage Your Channels"] = "Gérer vos canaux";
App::$strings["Account/Channel Settings"] = "Paramètres du Compte/Canal";
+App::$strings["Admin"] = "Administrateur";
App::$strings["Site Setup and Configuration"] = "Configuration du site";
App::$strings["Loading..."] = "Chargement...";
App::$strings["@name, #tag, ?doc, content"] = "@nom, #étiquette, ?doc, contenu";
App::$strings["Please wait..."] = "Merci de patienter...";
+App::$strings["view full size"] = "voir en taille réelle";
+App::$strings["Administrator"] = "Administrateur";
+App::$strings["No Subject"] = "Pas d'objet";
+App::$strings["Friendica"] = "Friendica";
+App::$strings["OStatus"] = "OStatus";
+App::$strings["GNU-Social"] = "";
+App::$strings["RSS/Atom"] = "RSS/Atom";
+App::$strings["Diaspora"] = "Diaspora";
+App::$strings["Facebook"] = "Facebook";
+App::$strings["Zot"] = "Zot";
+App::$strings["LinkedIn"] = "Linkedin";
+App::$strings["XMPP/IM"] = "XMPP/IM";
+App::$strings["MySpace"] = "MySpace";
+App::$strings["New Page"] = "Nouvelle page";
+App::$strings["Title"] = "Titre";
+App::$strings["Categories"] = "Catégories";
+App::$strings["Tags"] = "Étiquettes";
+App::$strings["Keywords"] = "Mots-clefs";
+App::$strings["have"] = "ont";
+App::$strings["has"] = "a";
+App::$strings["want"] = "veulent";
+App::$strings["wants"] = "veut";
+App::$strings["likes"] = "aime";
+App::$strings["dislikes"] = "n'aime pas";
+App::$strings["Unable to obtain identity information from database"] = "Impossible d'obtenir les données d'identité depuis la base de données";
+App::$strings["Empty name"] = "Nom vide";
+App::$strings["Name too long"] = "Nom trop long";
+App::$strings["No account identifier"] = "Pas d'identifiant de compte";
+App::$strings["Nickname is required."] = "Un surnom est requis.";
+App::$strings["Reserved nickname. Please choose another."] = "Surnom réservé. Merci d'en choisir un autre.";
+App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Le surnom contient des caractères interdits ou est déjà pris sur ce site.";
+App::$strings["Unable to retrieve created identity"] = "Impossible de récupérer l'identité créée";
+App::$strings["Default Profile"] = "Profil par défaut";
+App::$strings["Requested channel is not available."] = "Canal demandé non disponible.";
+App::$strings["Create New Profile"] = "Créer un nouveau profil";
+App::$strings["Visible to everybody"] = "Visible de tous";
+App::$strings["Gender:"] = "Sexe&nbsp;:";
+App::$strings["Status:"] = "État&nbsp;:";
+App::$strings["Homepage:"] = "Site Internet&nbsp;:";
+App::$strings["Online Now"] = "Connecté";
+App::$strings["Like this channel"] = "J'aime ce canal";
+App::$strings["j F, Y"] = "j F, Y";
+App::$strings["j F"] = "j F";
+App::$strings["Birthday:"] = "Date de naissance&nbsp;:";
+App::$strings["for %1\$d %2\$s"] = "depuis %1\$d %2\$s";
+App::$strings["Sexual Preference:"] = "Orientation sexuelle&nbsp;:";
+App::$strings["Tags:"] = "Étiquettes&nbsp;:";
+App::$strings["Political Views:"] = "Opinions politiques&nbsp;:";
+App::$strings["Religion:"] = "Religion&nbsp;:";
+App::$strings["Hobbies/Interests:"] = "Occupations/Centres d'intérêt&nbsp;:";
+App::$strings["Likes:"] = "Aime&nbsp;:";
+App::$strings["Dislikes:"] = "N'aime pas&nbsp;:";
+App::$strings["Contact information and Social Networks:"] = "Coordonnées et réseaux sociaux&nbsp;:";
+App::$strings["My other channels:"] = "Mes autres canaux&nbsp;:";
+App::$strings["Musical interests:"] = "Goûts musicaux&nbsp;:";
+App::$strings["Books, literature:"] = "Lectures, goûts littéraires&nbsp;:";
+App::$strings["Television:"] = "Télévision&nbsp;:";
+App::$strings["Film/dance/culture/entertainment:"] = "Cinéma/danse/culture/divertissement&nsbp;:";
+App::$strings["Love/Romance:"] = "Vie sentimentale/amoureuse&nbsp;:";
+App::$strings["Work/employment:"] = "Travail/Occupation&nbsp;";
+App::$strings["School/education:"] = "Études&nbsp;";
+App::$strings["Like this thing"] = "J'aime ceci";
App::$strings["New window"] = "Nouvelle fenêtre";
App::$strings["Open the selected location in a different window or browser tab"] = "Ouvrir l'emplacement dans une fenêtre ou un onglet différent";
App::$strings["User '%s' deleted"] = "Utilisateur '%s' supprimé";
-App::$strings["%d invitation available"] = array(
- 0 => "%d invitation disponible",
- 1 => "%d invitations disponibles",
-);
-App::$strings["Find Channels"] = "Trouver des canaux";
-App::$strings["Enter name or interest"] = "Saisir nom ou centre d'intérêt";
-App::$strings["Connect/Follow"] = "Ajouter/Suivre";
-App::$strings["Examples: Robert Morgenstein, Fishing"] = "Exemples: Guillaume Martin, Course à pieds";
-App::$strings["Random Profile"] = "Un profil au hasard";
-App::$strings["Invite Friends"] = "Inviter des amis";
-App::$strings["Advanced example: name=fred and country=iceland"] = "Exemple avancé&nbsp;: name=fred and country=iceland";
-App::$strings["%d connection in common"] = array(
- 0 => "%d contact en commun",
- 1 => "%d contacts en commun",
-);
-App::$strings["show more"] = "montrer plus";
App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s ajoute %2\$s à ses contacts";
App::$strings["%1\$s poked %2\$s"] = "%1\$s a tapoté %2\$s";
+App::$strings["poked"] = "a tapoté";
App::$strings["View %s's profile @ %s"] = "Voir le profil de %s @ %s";
App::$strings["Categories:"] = "Catégories&nbsp;:";
App::$strings["Filed under:"] = "Classé sous&nbsp;:";
@@ -1820,7 +1760,6 @@ App::$strings["Post as"] = "Publier en tant que";
App::$strings["Toggle voting"] = "(Dés)activer le vote";
App::$strings["Categories (optional, comma-separated list)"] = "Catégories (facultatives, séparées par des virgules)";
App::$strings["Set publish date"] = "Définir la date de publication";
-App::$strings["OK"] = "OK";
App::$strings["Discover"] = "À découvrir";
App::$strings["Imported public streams"] = "Flux publics importés";
App::$strings["Commented Order"] = "Par date de commentaire";
@@ -1836,8 +1775,8 @@ App::$strings["Posts flagged as SPAM"] = "Publications marquées comme indésira
App::$strings["Status Messages and Posts"] = "Messages d'état et contributions";
App::$strings["About"] = "À propos";
App::$strings["Profile Details"] = "Détails du profil";
-App::$strings["Photo Albums"] = "Albums photo";
App::$strings["Files and Storage"] = "Fichiers et Stockage";
+App::$strings["Chatrooms"] = "Salons de clavardage";
App::$strings["Saved Bookmarks"] = "Favoris sauvegardés";
App::$strings["Manage Webpages"] = "Gérer les pages web";
App::$strings["__ctx:noun__ Attending"] = array(
@@ -1864,6 +1803,8 @@ App::$strings["__ctx:noun__ Abstain"] = array(
0 => "S'abstient",
1 => "S'abstiennent",
);
+App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "L'import a échoué. Un canal existe déjà avec ce nom";
+App::$strings["Channel clone failed. Import failed."] = "Echec du clonage du canal. Echec de l'impot.";
App::$strings["Frequently"] = "Fréquemment";
App::$strings["Hourly"] = "Toutes les heures";
App::$strings["Twice daily"] = "Deux fois par jour";
@@ -1880,7 +1821,6 @@ App::$strings["Transsexual"] = "Transsexuel";
App::$strings["Hermaphrodite"] = "Hermaphrodite";
App::$strings["Neuter"] = "Neutre";
App::$strings["Non-specific"] = "Non spécifique";
-App::$strings["Other"] = "Autre";
App::$strings["Undecided"] = "Indécis";
App::$strings["Males"] = "Hommes";
App::$strings["Females"] = "Femmes";
@@ -1925,91 +1865,95 @@ App::$strings["Uncertain"] = "Incertain";
App::$strings["It's complicated"] = "C'est compliqué";
App::$strings["Don't care"] = "S'en fiche";
App::$strings["Ask me"] = "Me demander";
-App::$strings["Visible to your default audience"] = "Visible pour vos contacts seulement";
-App::$strings["Only me"] = "";
-App::$strings["Public"] = "Public";
-App::$strings["Anybody in the \$Projectname network"] = "";
-App::$strings["Any account on %s"] = "";
-App::$strings["Any of my connections"] = "";
-App::$strings["Only connections I specifically allow"] = "";
-App::$strings["Anybody authenticated (could include visitors from other networks)"] = "";
-App::$strings["Any connections including those who haven't yet been approved"] = "";
-App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "";
-App::$strings["This is your default setting for who can view your default channel profile"] = "";
-App::$strings["This is your default setting for who can view your connections"] = "";
-App::$strings["This is your default setting for who can view your file storage and photos"] = "";
-App::$strings["This is your default setting for the audience of your webpages"] = "";
-App::$strings["Not a valid email address"] = "Ce n'est pas une adresse de courriel valide";
-App::$strings["Your email domain is not among those allowed on this site"] = "Votre domaine de courriel ne fait pas partie de ceux autorisés par ce site";
-App::$strings["Your email address is already registered at this site."] = "Votre adresse de courriel est déjà inscrite sur ce site.";
-App::$strings["An invitation is required."] = "Une invitation est requise.";
-App::$strings["Invitation could not be verified."] = "Votre invitation n'a pas pu être vérifiée.";
-App::$strings["Please enter the required information."] = "Merci d'entrer les informations requises.";
-App::$strings["Failed to store account information."] = "Impossible de stocker les informations liées au compte.";
-App::$strings["Registration confirmation for %s"] = "Confirmation de l'inscription pour %s";
-App::$strings["Registration request at %s"] = "Demande d'inscription sur %s";
-App::$strings["Administrator"] = "Administrateur";
-App::$strings["your registration password"] = "votre mot de passe d'inscription";
-App::$strings["Registration details for %s"] = "Détails de l'inscription pour %s";
-App::$strings["Account approved."] = "Compte approuvé.";
-App::$strings["Registration revoked for %s"] = "Inscription révoquée pour %s";
-App::$strings["Account verified. Please login."] = "Compte vérifié. Veuillez vous connecter.";
-App::$strings["Click here to upgrade."] = "Cliquez ici pour mettre à jour.";
-App::$strings["This action exceeds the limits set by your subscription plan."] = "Cette action outrepasserait les limites prévues par votre forfait.";
-App::$strings["This action is not available under your subscription plan."] = "Cette action n'est pas disponible avec votre forfait.";
-App::$strings["Item was not found."] = "Élément introuvable.";
-App::$strings["No source file."] = "Pas de fichier source.";
-App::$strings["Cannot locate file to replace"] = "Impossible de trouver le fichier à remplacer.";
-App::$strings["Cannot locate file to revise/update"] = "Impossible de trouver le fichier à corriger/mettre à jour";
-App::$strings["File exceeds size limit of %d"] = "Le fichier dépasse la taille limite de %d";
-App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Vous avez atteint votre limite de %1$.0f méga-octets autorisés pour le stockage des pièces-jointes.";
-App::$strings["File upload failed. Possible system limit or action terminated."] = "Envoi du fichier impossible. Limite système ou action avortée.";
-App::$strings["Stored file could not be verified. Upload failed."] = "Le fichier stocké n'a pu être vérifié. Echec de l'envoi.";
-App::$strings["Path not available."] = "Chemin non disponible.";
-App::$strings["Empty pathname"] = "Chemin vide";
-App::$strings["duplicate filename or path"] = "doublon de chemin ou de fichier";
-App::$strings["Path not found."] = "Chemin introuvable.";
-App::$strings["mkdir failed."] = "mkdir a échoué.";
-App::$strings["database storage failed."] = "l'écriture dans la base de données a échoué.";
-App::$strings["Empty path"] = "Chemin vide";
-App::$strings["Unable to obtain identity information from database"] = "Impossible d'obtenir les données d'identité depuis la base de données";
-App::$strings["Empty name"] = "Nom vide";
-App::$strings["Name too long"] = "Nom trop long";
-App::$strings["No account identifier"] = "Pas d'identifiant de compte";
-App::$strings["Nickname is required."] = "Un surnom est requis.";
-App::$strings["Reserved nickname. Please choose another."] = "Surnom réservé. Merci d'en choisir un autre.";
-App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Le surnom contient des caractères interdits ou est déjà pris sur ce site.";
-App::$strings["Unable to retrieve created identity"] = "Impossible de récupérer l'identité créée";
-App::$strings["Default Profile"] = "Profil par défaut";
-App::$strings["Requested channel is not available."] = "Canal demandé non disponible.";
-App::$strings["Create New Profile"] = "Créer un nouveau profil";
-App::$strings["Visible to everybody"] = "Visible de tous";
-App::$strings["Gender:"] = "Sexe&nbsp;:";
-App::$strings["Status:"] = "État&nbsp;:";
-App::$strings["Homepage:"] = "Site Internet&nbsp;:";
-App::$strings["Online Now"] = "Connecté";
-App::$strings["Like this channel"] = "J'aime ce canal";
-App::$strings["j F, Y"] = "j F, Y";
-App::$strings["j F"] = "j F";
-App::$strings["Birthday:"] = "Date de naissance&nbsp;:";
-App::$strings["for %1\$d %2\$s"] = "depuis %1\$d %2\$s";
-App::$strings["Sexual Preference:"] = "Orientation sexuelle&nbsp;:";
-App::$strings["Tags:"] = "Étiquettes&nbsp;:";
-App::$strings["Political Views:"] = "Opinions politiques&nbsp;:";
-App::$strings["Religion:"] = "Religion&nbsp;:";
-App::$strings["Hobbies/Interests:"] = "Occupations/Centres d'intérêt&nbsp;:";
-App::$strings["Likes:"] = "Aime&nbsp;:";
-App::$strings["Dislikes:"] = "N'aime pas&nbsp;:";
-App::$strings["Contact information and Social Networks:"] = "Coordonnées et réseaux sociaux&nbsp;:";
-App::$strings["My other channels:"] = "Mes autres canaux&nbsp;:";
-App::$strings["Musical interests:"] = "Goûts musicaux&nbsp;:";
-App::$strings["Books, literature:"] = "Lectures, goûts littéraires&nbsp;:";
-App::$strings["Television:"] = "Télévision&nbsp;:";
-App::$strings["Film/dance/culture/entertainment:"] = "Cinéma/danse/culture/divertissement&nsbp;:";
-App::$strings["Love/Romance:"] = "Vie sentimentale/amoureuse&nbsp;:";
-App::$strings["Work/employment:"] = "Travail/Occupation&nbsp;";
-App::$strings["School/education:"] = "Études&nbsp;";
-App::$strings["Like this thing"] = "J'aime ceci";
+App::$strings["%1\$s's bookmarks"] = "Favoris de %1\$s";
+App::$strings["guest:"] = "";
+App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Le formulaire n'est plus sécurisé, probablement parce qu'il est ouvert depuis trop longtemps (plus de 3 heures).";
+App::$strings["prev"] = "préc.";
+App::$strings["first"] = "premier";
+App::$strings["last"] = "dernier";
+App::$strings["next"] = "Suivant";
+App::$strings["older"] = "plus ancien";
+App::$strings["newer"] = "plus récent";
+App::$strings["No connections"] = "Pas de relations.";
+App::$strings["View all %s connections"] = "Voir les %s contacts";
+App::$strings["poke"] = "tapoter";
+App::$strings["ping"] = "ping";
+App::$strings["pinged"] = "pingé";
+App::$strings["prod"] = "encourager";
+App::$strings["prodded"] = "encouragé";
+App::$strings["slap"] = "giffler";
+App::$strings["slapped"] = "gifflé(e)";
+App::$strings["finger"] = "pointer";
+App::$strings["fingered"] = "pointé";
+App::$strings["rebuff"] = "rejetter";
+App::$strings["rebuffed"] = "rejeté";
+App::$strings["happy"] = "heureux";
+App::$strings["sad"] = "triste";
+App::$strings["mellow"] = "mélancolique";
+App::$strings["tired"] = "fatigué";
+App::$strings["perky"] = "impertinent";
+App::$strings["angry"] = "en colère";
+App::$strings["stupefied"] = "stupéfait";
+App::$strings["puzzled"] = "perplexe";
+App::$strings["interested"] = "intéressé";
+App::$strings["bitter"] = "amer";
+App::$strings["cheerful"] = "plein d'entrain";
+App::$strings["alive"] = "vivant";
+App::$strings["annoyed"] = "agaçé";
+App::$strings["anxious"] = "anxieux";
+App::$strings["cranky"] = "énervé";
+App::$strings["disturbed"] = "perturbé";
+App::$strings["frustrated"] = "frustré";
+App::$strings["depressed"] = "déprimé";
+App::$strings["motivated"] = "motivé";
+App::$strings["relaxed"] = "détendu";
+App::$strings["surprised"] = "surpris";
+App::$strings["Monday"] = "Lundi";
+App::$strings["Tuesday"] = "Mardi";
+App::$strings["Wednesday"] = "Mercredi";
+App::$strings["Thursday"] = "Jeudi";
+App::$strings["Friday"] = "Vendredi";
+App::$strings["Saturday"] = "Samedi";
+App::$strings["Sunday"] = "Dimanche";
+App::$strings["January"] = "Janvier";
+App::$strings["February"] = "Février";
+App::$strings["March"] = "Mars";
+App::$strings["April"] = "Avril";
+App::$strings["May"] = "Mai";
+App::$strings["June"] = "Juin";
+App::$strings["July"] = "Juillet";
+App::$strings["August"] = "Août";
+App::$strings["September"] = "Septembre";
+App::$strings["October"] = "Octobre";
+App::$strings["November"] = "Novembre";
+App::$strings["December"] = "Décembre";
+App::$strings["Unknown Attachment"] = "Pièce jointe inconnue";
+App::$strings["unknown"] = "Inconnu";
+App::$strings["remove category"] = "supprimer la catégorie";
+App::$strings["remove from file"] = "retirer du fichier";
+App::$strings["default"] = "défaut";
+App::$strings["Page layout"] = "Mise en page";
+App::$strings["You can create your own with the layouts tool"] = "Créez les vôtres avec les outils de mise en page";
+App::$strings["Page content type"] = "Type de contenu de la page";
+App::$strings["Select an alternate language"] = "Choisir une langue alternative";
+App::$strings["activity"] = "activité";
+App::$strings["Design Tools"] = "Outils de conception";
+App::$strings["Pages"] = "Pages";
+App::$strings["Logged out."] = "Deconnecté.";
+App::$strings["Failed authentication"] = "Échec de l'authentification";
+App::$strings["Can view my normal stream and posts"] = "Peut voir les publications ordinaires sur mon canal.";
+App::$strings["Can view my webpages"] = "Peut voir mes pages web";
+App::$strings["Can post on my channel page (\"wall\")"] = "Peuvent poster sur la page de mon canal (\"mur\")";
+App::$strings["Can like/dislike stuff"] = "Peuvent aimer/ne pas aimer";
+App::$strings["Profiles and things other than posts/comments"] = "Profils et autres excluant les publications/commentaires.";
+App::$strings["Can forward to all my channel contacts via post @mentions"] = "Peut faire suivre à tous les contacts de mon canal via \"@mention\"";
+App::$strings["Advanced - useful for creating group forum channels"] = "Avancé - utile pour les canaux de type \"forum/groupe\"";
+App::$strings["Can chat with me (when available)"] = "Peut discuter avec moi (quand disponibie)";
+App::$strings["Can write to my file storage and photos"] = "Peut charger des fichiers et des photos dans mon canal";
+App::$strings["Can edit my webpages"] = "Peut modifier mes pages web";
+App::$strings["Somewhat advanced - very useful in open communities"] = "Plutôt avancé - très utile dans les communautés ouvertes";
+App::$strings["Can administer my channel resources"] = "Peut administrer les ressources de mon canal";
+App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Très avancé. Ne pas toucher, sauf si vous savez ce que vous faîtes";
App::$strings["General Features"] = "Fonctionnalités générales";
App::$strings["Content Expiration"] = "Expiration du contenu";
App::$strings["Remove posts/comments and/or private messages at a future time"] = "Supprimer les contributions/commentaires et/ou messages privés plus tard";
@@ -2021,6 +1965,7 @@ App::$strings["Profile Import/Export"] = "Importer/Exporter le profil";
App::$strings["Save and load profile details across sites/channels"] = "Sauvegarder et charger les détails d'un profil entre sites/canaux";
App::$strings["Web Pages"] = "Pages web";
App::$strings["Provide managed web pages on your channel"] = "Fournir des pages web, sous votre contrôle, sur votre canal";
+App::$strings["Provide a wiki for your channel"] = "";
App::$strings["Hide Rating"] = "Masquer l'évaluation";
App::$strings["Hide the rating buttons on your channel and profile pages. Note: People can still rate you somewhere else."] = "Masquer les boutons d'évaluation sur les pages de votre canal et de votre profil. NB : vous pourrez toujours être évalué(e) ailleurs.";
App::$strings["Private Notes"] = "Notes privées";
@@ -2054,6 +1999,7 @@ App::$strings["Search by Date"] = "Chercher par date";
App::$strings["Ability to select posts by date ranges"] = "Pouvoir choisir des publications par date";
App::$strings["Privacy Groups"] = "Groupes d'accès";
App::$strings["Enable management and selection of privacy groups"] = "Active la gestion et la sélection des groupes d'accès";
+App::$strings["Saved Searches"] = "Recherches sauvegardées";
App::$strings["Save search terms for re-use"] = "Sauvegarder des termes de recherche pour utilisation ultérieure";
App::$strings["Network Personal Tab"] = "Onglet \"Me concernant\"";
App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Activer un onglet affichant seulement les publications du réseau sur lesquelles vous êtes intervenu";
@@ -2071,6 +2017,7 @@ App::$strings["Post Categories"] = "Catégoriser les publications";
App::$strings["Add categories to your posts"] = "Ajouter des catégories à vos publications";
App::$strings["Emoji Reactions"] = "";
App::$strings["Add emoji reaction ability to posts"] = "";
+App::$strings["Saved Folders"] = "Dossiers sauvegardés";
App::$strings["Ability to file posts under folders"] = "Permettre de classer les publications dans des dossiers";
App::$strings["Dislike Posts"] = "\"Ne pas aimer\" les publications";
App::$strings["Ability to dislike posts/comments"] = "Possibilité de \"ne pas aimer\" les publications/commentaires";
@@ -2078,63 +2025,149 @@ App::$strings["Star Posts"] = "Pouvoir mettre en avant les publications";
App::$strings["Ability to mark special posts with a star indicator"] = "Pouvoir marquer certaines publications d'une étoile";
App::$strings["Tag Cloud"] = "Nuage de tags";
App::$strings["Provide a personal tag cloud on your channel page"] = "Afficher un nuage de vos tags sur votre canal";
-App::$strings["Embedded content"] = "Contenu imbriqué";
-App::$strings["Embedding disabled"] = "Imbrication désactivée";
-App::$strings["Who can see this?"] = "";
-App::$strings["Custom selection"] = "";
-App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "";
-App::$strings["Show"] = "Montrer";
-App::$strings["Don't show"] = "Cacher";
-App::$strings["Other networks and post services"] = "Autres réseaux et services de messagerie";
-App::$strings["Post permissions %s cannot be changed %s after a post is shared.</br />These permissions set who is allowed to view the post."] = "";
-App::$strings["Logged out."] = "Deconnecté.";
-App::$strings["Failed authentication"] = "Échec de l'authentification";
-App::$strings["Birthday"] = "Anniversaire";
-App::$strings["Age: "] = "Age&nbsp;:";
-App::$strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-JJ ou MM-JJ";
-App::$strings["never"] = "jamais";
-App::$strings["less than a second ago"] = "à l'instant";
-App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "il y a %1\$d %2\$s";
-App::$strings["__ctx:relative_date__ year"] = array(
- 0 => "an",
- 1 => "ans",
-);
-App::$strings["__ctx:relative_date__ month"] = array(
- 0 => "mois",
- 1 => "mois",
-);
-App::$strings["__ctx:relative_date__ week"] = array(
- 0 => "semaine",
- 1 => "semaines",
-);
-App::$strings["__ctx:relative_date__ day"] = array(
- 0 => "jour",
- 1 => "jours",
-);
-App::$strings["__ctx:relative_date__ hour"] = array(
- 0 => "heure",
- 1 => "heures",
-);
-App::$strings["__ctx:relative_date__ minute"] = array(
- 0 => "minute",
- 1 => "minutes",
-);
-App::$strings["__ctx:relative_date__ second"] = array(
- 0 => "seconde",
- 1 => "secondes",
-);
-App::$strings["%1\$s's birthday"] = "Anniversaire de %1\$s";
-App::$strings["Happy Birthday %1\$s"] = "Joyeux Anniversaire %1\$s";
App::$strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un groupe supprimé portant ce nom a été ressuscité. Les permissions liées aux éléments existants <strong>peuvent</strong> s'appliquer au groupe et aux membres futurs. Si ce n'est pas ce que vous attendiez, merci de créer un autre groupe avec un nom différent.";
App::$strings["Add new connections to this privacy group"] = "Ajouter de nouveaux contacts à ce groupe d'accès";
App::$strings["edit"] = "modifier";
App::$strings["Edit group"] = "Modifier le groupe";
App::$strings["Add privacy group"] = "Ajouter un groupe d'accès";
App::$strings["Channels not in any privacy group"] = "Canaux n'étant dans aucun groupe d'accès";
+App::$strings["add"] = "ajouter";
+App::$strings["l F d, Y \\@ g:i A"] = "l d F Y \\à G\\hi";
+App::$strings["Starts:"] = "Début&nbsp;:";
+App::$strings["Finishes:"] = "Fin&nbsp;:";
+App::$strings["This event has been added to your calendar."] = "Cet évènement a été ajouté dans votre calendrier.";
+App::$strings["Not specified"] = "Non spécifié";
+App::$strings["Needs Action"] = "Besoin d'une action";
+App::$strings["Completed"] = "Terminé";
+App::$strings["In Process"] = "En cours";
+App::$strings["Cancelled"] = "Annulé";
+App::$strings["Not a valid email address"] = "Ce n'est pas une adresse de courriel valide";
+App::$strings["Your email domain is not among those allowed on this site"] = "Votre domaine de courriel ne fait pas partie de ceux autorisés par ce site";
+App::$strings["Your email address is already registered at this site."] = "Votre adresse de courriel est déjà inscrite sur ce site.";
+App::$strings["An invitation is required."] = "Une invitation est requise.";
+App::$strings["Invitation could not be verified."] = "Votre invitation n'a pas pu être vérifiée.";
+App::$strings["Please enter the required information."] = "Merci d'entrer les informations requises.";
+App::$strings["Failed to store account information."] = "Impossible de stocker les informations liées au compte.";
+App::$strings["Registration confirmation for %s"] = "Confirmation de l'inscription pour %s";
+App::$strings["Registration request at %s"] = "Demande d'inscription sur %s";
+App::$strings["your registration password"] = "votre mot de passe d'inscription";
+App::$strings["Registration details for %s"] = "Détails de l'inscription pour %s";
+App::$strings["Account approved."] = "Compte approuvé.";
+App::$strings["Registration revoked for %s"] = "Inscription révoquée pour %s";
+App::$strings["Click here to upgrade."] = "Cliquez ici pour mettre à jour.";
+App::$strings["This action exceeds the limits set by your subscription plan."] = "Cette action outrepasserait les limites prévues par votre forfait.";
+App::$strings["This action is not available under your subscription plan."] = "Cette action n'est pas disponible avec votre forfait.";
+App::$strings["Channel is blocked on this site."] = "Ce canal est bloqué sur ce site.";
+App::$strings["Channel location missing."] = "Emplacement du canal introuvable.";
+App::$strings["Response from remote channel was incomplete."] = "La réponse du canal distant était incomplète.";
+App::$strings["Channel was deleted and no longer exists."] = "Le canal a été supprimé et n'existe plus.";
+App::$strings["Protocol disabled."] = "Protocole désactivé.";
+App::$strings["Channel discovery failed."] = "La tentative d'accéder au canal a échoué.";
+App::$strings["Cannot connect to yourself."] = "Ne peut pas se connecter à vous.";
+App::$strings["Item was not found."] = "Élément introuvable.";
+App::$strings["No source file."] = "Pas de fichier source.";
+App::$strings["Cannot locate file to replace"] = "Impossible de trouver le fichier à remplacer.";
+App::$strings["Cannot locate file to revise/update"] = "Impossible de trouver le fichier à corriger/mettre à jour";
+App::$strings["File exceeds size limit of %d"] = "Le fichier dépasse la taille limite de %d";
+App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Vous avez atteint votre limite de %1$.0f méga-octets autorisés pour le stockage des pièces-jointes.";
+App::$strings["File upload failed. Possible system limit or action terminated."] = "Envoi du fichier impossible. Limite système ou action avortée.";
+App::$strings["Stored file could not be verified. Upload failed."] = "Le fichier stocké n'a pu être vérifié. Echec de l'envoi.";
+App::$strings["Path not available."] = "Chemin non disponible.";
+App::$strings["Empty pathname"] = "Chemin vide";
+App::$strings["duplicate filename or path"] = "doublon de chemin ou de fichier";
+App::$strings["Path not found."] = "Chemin introuvable.";
+App::$strings["mkdir failed."] = "mkdir a échoué.";
+App::$strings["database storage failed."] = "l'écriture dans la base de données a échoué.";
+App::$strings["Empty path"] = "Chemin vide";
+App::$strings["Image/photo"] = "Image/photo";
+App::$strings["Encrypted content"] = "Contenu chiffré";
+App::$strings["Install %s element: "] = "Installer %s élément";
+App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Ce message contient un élément installable %s, mais vous n'avez pas l'autorisation de l'installer sur ce site.";
+App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s a écrit %2\$s qui suit %3\$s";
+App::$strings["Click to open/close"] = "Cliquer pour ouvrir/fermer";
+App::$strings["spoiler"] = "";
+App::$strings["Different viewers will see this text differently"] = "Ce texte aura un rendu différent en fonction des utilisateurs";
+App::$strings["$1 wrote:"] = "$1 a écrit&nbsp;:";
+App::$strings["(Unknown)"] = "(Inconnu)";
+App::$strings["Visible to anybody on the internet."] = "Visible pour tout le monde sur internet.";
+App::$strings["Visible to you only."] = "Visible pour vous seulement.";
+App::$strings["Visible to anybody in this network."] = "Visible pour tout le monde sur ce réseau.";
+App::$strings["Visible to anybody authenticated."] = "Visible aux utilisateurs authentifiés.";
+App::$strings["Visible to anybody on %s."] = "Visible pour tous sur %s.";
+App::$strings["Visible to all connections."] = "Visible pour tous les contacts.";
+App::$strings["Visible to approved connections."] = "Visible aux contacts approuvés.";
+App::$strings["Visible to specific connections."] = "Visible pour certains contacts.";
+App::$strings["Privacy group is empty."] = "Groupe d'accès vide.";
+App::$strings["Privacy group: %s"] = "Groupe d'accès&nbsp;: %s";
+App::$strings["Connection not found."] = "Contact non trouvé.";
+App::$strings["profile photo"] = "photo de profil";
+App::$strings["Embedded content"] = "Contenu imbriqué";
+App::$strings["Embedding disabled"] = "Imbrication désactivée";
+App::$strings["System"] = "Système";
+App::$strings["New App"] = "";
+App::$strings["Suggestions"] = "Suggestions";
+App::$strings["See more..."] = "Voir plus...";
+App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Vous avez %1$.0f sur %2$.0f contacts autorisés.";
+App::$strings["Add New Connection"] = "Ajouter un nouveau contact";
+App::$strings["Enter channel address"] = "Saisissez l'adresse du canal";
+App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Exemples&nbsp;: pierre@exemple.com, https://exemple.com/sophie";
+App::$strings["Notes"] = "Notes";
+App::$strings["Remove term"] = "Retirer le terme";
+App::$strings["Everything"] = "Tout";
+App::$strings["Archives"] = "Archives";
+App::$strings["Refresh"] = "Actualiser";
+App::$strings["Account settings"] = "Paramètres du compte";
+App::$strings["Channel settings"] = "Paramètres du canal";
+App::$strings["Additional features"] = "Fonctionnalités supplémentaires";
+App::$strings["Feature/Addon settings"] = "Paramètres des extensions/greffons";
+App::$strings["Display settings"] = "Paramètres d'affichage";
+App::$strings["Manage locations"] = "";
+App::$strings["Export channel"] = "Exporter le canal";
+App::$strings["Connected apps"] = "Applications connectées";
+App::$strings["Premium Channel Settings"] = "Paramètres de canal VIP";
+App::$strings["Private Mail Menu"] = "Menu des messages privés";
+App::$strings["Combined View"] = "Vue combinée";
+App::$strings["Conversations"] = "Conversations";
+App::$strings["Received Messages"] = "Messages reçus";
+App::$strings["Sent Messages"] = "Messages envoyés";
+App::$strings["No messages."] = "Pas de message.";
+App::$strings["Delete conversation"] = "Supprimer la conversation";
+App::$strings["Events Tools"] = "Outils Evènements";
+App::$strings["Export Calendar"] = "Exporter le calendrier";
+App::$strings["Import Calendar"] = "Importer un calendrier";
+App::$strings["Overview"] = "";
+App::$strings["Chat Members"] = "";
+App::$strings["Wiki List"] = "";
+App::$strings["Wiki Pages"] = "";
+App::$strings["Bookmarked Chatrooms"] = "Salons favoris";
+App::$strings["Suggested Chatrooms"] = "Salons suggérés";
+App::$strings["photo/image"] = "photo/image";
+App::$strings["Click to show more"] = "Cliquer pour voir plus";
+App::$strings["Rating Tools"] = "Outils d'évaluation";
+App::$strings["Rate Me"] = "M'évaluer";
+App::$strings["View Ratings"] = "Voir mes évaluations";
+App::$strings["Forums"] = "Membres du forum";
+App::$strings["Tasks"] = "Tâches";
+App::$strings["Documentation"] = "Documentation";
+App::$strings["Project/Site Information"] = "Information sur le site/projet";
+App::$strings["For Members"] = "Pour les membres";
+App::$strings["For Administrators"] = "Pour les administrateurs";
+App::$strings["For Developers"] = "Pour les développeurs";
+App::$strings["Member registrations waiting for confirmation"] = "";
+App::$strings["Inspect queue"] = "Analyser la file d'attente";
+App::$strings["DB updates"] = "Mises à jour BDD";
+App::$strings["Plugin Features"] = "Fonctionnalités des greffons";
+App::$strings[" and "] = "et";
+App::$strings["public profile"] = "profil public";
+App::$strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s a changé %2\$s en &ldquo;%3\$s&rdquo;";
+App::$strings["Visit %1\$s's %2\$s"] = "Visiter %2\$s de %1\$s";
+App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s a mis à jour %2\$s, modifiant %3\$s.";
+App::$strings["Attachments:"] = "Pièces jointes&nbsp;:";
+App::$strings["\$Projectname event notification:"] = "Notification d'événement de \$Projectname&nbsp;:";
App::$strings["Delete this item?"] = "Supprimer cet élément?";
-App::$strings["[-] show less"] = "[-] montrer moins";
-App::$strings["[+] expand"] = "[+] déplier";
-App::$strings["[-] collapse"] = "[-] replier";
+App::$strings["%s show less"] = "";
+App::$strings["%s expand"] = "";
+App::$strings["%s collapse"] = "";
App::$strings["Password too short"] = "Mot de passe trop court";
App::$strings["Passwords do not match"] = "Les mots de passe ne correspondent pas";
App::$strings["everybody"] = "tout le monde";
@@ -2189,72 +2222,78 @@ App::$strings["__ctx:calendar__ month"] = "mois";
App::$strings["__ctx:calendar__ week"] = "semaine";
App::$strings["__ctx:calendar__ day"] = "jour";
App::$strings["__ctx:calendar__ All day"] = "Toute la journée";
-App::$strings["view full size"] = "voir en taille réelle";
-App::$strings["No Subject"] = "Pas d'objet";
-App::$strings["Friendica"] = "Friendica";
-App::$strings["OStatus"] = "OStatus";
-App::$strings["GNU-Social"] = "";
-App::$strings["RSS/Atom"] = "RSS/Atom";
-App::$strings["Diaspora"] = "Diaspora";
-App::$strings["Facebook"] = "Facebook";
-App::$strings["Zot"] = "Zot";
-App::$strings["LinkedIn"] = "Linkedin";
-App::$strings["XMPP/IM"] = "XMPP/IM";
-App::$strings["MySpace"] = "MySpace";
-App::$strings["Image exceeds website size limit of %lu bytes"] = "L'image dépasse la taille limite de %lu octets";
-App::$strings["Image file is empty."] = "L'image est vide.";
-App::$strings["Photo storage failed."] = "Le stockage de l'image a échoué.";
-App::$strings["a new photo"] = "une nouvelle photo";
-App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s a publié %2\$s pour %3\$s";
-App::$strings["Upload New Photos"] = "Ajouter des photos";
+App::$strings["%d invitation available"] = array(
+ 0 => "%d invitation disponible",
+ 1 => "%d invitations disponibles",
+);
+App::$strings["Find Channels"] = "Trouver des canaux";
+App::$strings["Enter name or interest"] = "Saisir nom ou centre d'intérêt";
+App::$strings["Connect/Follow"] = "Ajouter/Suivre";
+App::$strings["Examples: Robert Morgenstein, Fishing"] = "Exemples: Guillaume Martin, Course à pieds";
+App::$strings["Random Profile"] = "Un profil au hasard";
+App::$strings["Invite Friends"] = "Inviter des amis";
+App::$strings["Advanced example: name=fred and country=iceland"] = "Exemple avancé&nbsp;: name=fred and country=iceland";
+App::$strings["%d connection in common"] = array(
+ 0 => "%d contact en commun",
+ 1 => "%d contacts en commun",
+);
+App::$strings["show more"] = "montrer plus";
+App::$strings["Directory Options"] = "Options d'annuaire";
+App::$strings["Safe Mode"] = "Mode sûr";
+App::$strings["Public Forums Only"] = "Les forums publics uniquement";
+App::$strings["This Website Only"] = "Ce site uniquement";
+App::$strings["No recipient provided."] = "Pas de destinataire.";
+App::$strings["[no subject]"] = "[sans objet]";
+App::$strings["Unable to determine sender."] = "Impossible de déterminer l'émetteur.";
+App::$strings["Stored post could not be verified."] = "Le message stocké n'a pas pu être vérifié.";
+App::$strings["Who can see this?"] = "";
+App::$strings["Custom selection"] = "";
+App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "";
+App::$strings["Show"] = "Montrer";
+App::$strings["Don't show"] = "Cacher";
+App::$strings["Other networks and post services"] = "Autres réseaux et services de messagerie";
+App::$strings["Post permissions %s cannot be changed %s after a post is shared.</br />These permissions set who is allowed to view the post."] = "";
+App::$strings["Birthday"] = "Anniversaire";
+App::$strings["Age: "] = "Age&nbsp;:";
+App::$strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-JJ ou MM-JJ";
+App::$strings["never"] = "jamais";
+App::$strings["less than a second ago"] = "à l'instant";
+App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "il y a %1\$d %2\$s";
+App::$strings["__ctx:relative_date__ year"] = array(
+ 0 => "an",
+ 1 => "ans",
+);
+App::$strings["__ctx:relative_date__ month"] = array(
+ 0 => "mois",
+ 1 => "mois",
+);
+App::$strings["__ctx:relative_date__ week"] = array(
+ 0 => "semaine",
+ 1 => "semaines",
+);
+App::$strings["__ctx:relative_date__ day"] = array(
+ 0 => "jour",
+ 1 => "jours",
+);
+App::$strings["__ctx:relative_date__ hour"] = array(
+ 0 => "heure",
+ 1 => "heures",
+);
+App::$strings["__ctx:relative_date__ minute"] = array(
+ 0 => "minute",
+ 1 => "minutes",
+);
+App::$strings["__ctx:relative_date__ second"] = array(
+ 0 => "seconde",
+ 1 => "secondes",
+);
+App::$strings["%1\$s's birthday"] = "Anniversaire de %1\$s";
+App::$strings["Happy Birthday %1\$s"] = "Joyeux Anniversaire %1\$s";
+App::$strings["Public Timeline"] = "Fil public";
App::$strings["Invalid data packet"] = "Paquet de données invalide";
App::$strings["Unable to verify channel signature"] = "Impossible de vérifier la signature du canal";
App::$strings["Unable to verify site signature for %s"] = "Impossible de vérifier la signature de site pour %s";
App::$strings["invalid target signature"] = "signature de la cible invalide";
-App::$strings["New Page"] = "Nouvelle page";
-App::$strings["Title"] = "Titre";
-App::$strings["Can view my normal stream and posts"] = "Peut voir les publications ordinaires sur mon canal.";
-App::$strings["Can view my default channel profile"] = "Peut voir le profil du canal par défaut.";
-App::$strings["Can view my connections"] = "Peut voir mes contacts";
-App::$strings["Can view my file storage and photos"] = "Peut voir mes fichiers et photos";
-App::$strings["Can view my webpages"] = "Peut voir mes pages web";
-App::$strings["Can send me their channel stream and posts"] = "Peuvent m'envoyer leur flux et les publications de leur canal";
-App::$strings["Can post on my channel page (\"wall\")"] = "Peuvent poster sur la page de mon canal (\"mur\")";
-App::$strings["Can comment on or like my posts"] = "Peuvent commenter et/ou aimer mes publications";
-App::$strings["Can send me private mail messages"] = "Peuvent m'envoyer des messages privés";
-App::$strings["Can like/dislike stuff"] = "Peuvent aimer/ne pas aimer";
-App::$strings["Profiles and things other than posts/comments"] = "Profils et autres excluant les publications/commentaires.";
-App::$strings["Can forward to all my channel contacts via post @mentions"] = "Peut faire suivre à tous les contacts de mon canal via \"@mention\"";
-App::$strings["Advanced - useful for creating group forum channels"] = "Avancé - utile pour les canaux de type \"forum/groupe\"";
-App::$strings["Can chat with me (when available)"] = "Peut discuter avec moi (quand disponibie)";
-App::$strings["Can write to my file storage and photos"] = "Peut charger des fichiers et des photos dans mon canal";
-App::$strings["Can edit my webpages"] = "Peut modifier mes pages web";
-App::$strings["Can source my public posts in derived channels"] = "Peut rediriger mes publications publiques vers des canaux dérivés";
-App::$strings["Somewhat advanced - very useful in open communities"] = "Plutôt avancé - très utile dans les communautés ouvertes";
-App::$strings["Can administer my channel resources"] = "Peut administrer les ressources de mon canal";
-App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Très avancé. Ne pas toucher, sauf si vous savez ce que vous faîtes";
-App::$strings["Social Networking"] = "Réseau social";
-App::$strings["Social - Mostly Public"] = "Social - surtout public";
-App::$strings["Social - Restricted"] = "Social - restreint";
-App::$strings["Social - Private"] = "Social - privé";
-App::$strings["Community Forum"] = "Forum communautaire";
-App::$strings["Forum - Mostly Public"] = "Forum - surtout public";
-App::$strings["Forum - Restricted"] = "Forum - restreint";
-App::$strings["Forum - Private"] = "Forum - privé";
-App::$strings["Feed Republish"] = "Republication de flux";
-App::$strings["Feed - Mostly Public"] = "Flux - surtout public";
-App::$strings["Feed - Restricted"] = "Flux - restreint";
-App::$strings["Special Purpose"] = "Utilisation spécifique";
-App::$strings["Special - Celebrity/Soapbox"] = "Spécial - célébrité/promotion";
-App::$strings["Special - Group Repository"] = "Spécial - dépôt partagé";
-App::$strings["Custom/Expert Mode"] = "Mode expert/spécifique";
-App::$strings[" and "] = "et";
-App::$strings["public profile"] = "profil public";
-App::$strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s a changé %2\$s en &ldquo;%3\$s&rdquo;";
-App::$strings["Visit %1\$s's %2\$s"] = "Visiter %2\$s de %1\$s";
-App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s a mis à jour %2\$s, modifiant %3\$s.";
-App::$strings["Attachments:"] = "Pièces jointes&nbsp;:";
-App::$strings["\$Projectname event notification:"] = "Notification d'événement de \$Projectname&nbsp;:";
App::$strings["Focus (Hubzilla default)"] = "Focus (par défaut pour Hubzilla)";
App::$strings["Theme settings"] = "Paramètres du thème";
App::$strings["Select scheme"] = "Définir la palette de couleurs";
@@ -2294,6 +2333,7 @@ App::$strings["__ctx:opensearch__ \$Projectname"] = "";
App::$strings["Update %s failed. See error logs."] = "La mise-à-jour %s a échoué. Merci de consulter les journaux d'erreur.";
App::$strings["Update Error at %s"] = "Erreur de mise à jour sur %s";
App::$strings["Create an account to access services and applications within the Hubzilla"] = "Créez un compte pour pouvoir accéder aux services et applications de Hubzilla";
+App::$strings["Login/Email"] = "";
App::$strings["Password"] = "Mot de passe";
App::$strings["Remember me"] = "Se souvenir de moi";
App::$strings["Forgot your password?"] = "Mot de passe oublié&nbsp;?";
diff --git a/view/it/hmessages.po b/view/it/hmessages.po
index dc7e240e1..447fb3c2f 100644
--- a/view/it/hmessages.po
+++ b/view/it/hmessages.po
@@ -10,9 +10,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Redmatrix\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-07-22 00:02-0700\n"
-"PO-Revision-Date: 2016-07-26 07:33+0000\n"
-"Last-Translator: Paolo Wave <pynolo@tarine.net>\n"
+"POT-Creation-Date: 2016-06-10 00:02-0700\n"
+"PO-Revision-Date: 2016-06-10 09:14+0000\n"
+"Last-Translator: fabrixxm <fabrix.xm@gmail.com>\n"
"Language-Team: Italian (http://www.transifex.com/Friendica/red-matrix/language/it/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -20,156 +20,11 @@ msgstr ""
"Language: it\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: ../../Zotlabs/Access/PermissionRoles.php:182
-#: ../../include/permissions.php:904
-msgid "Social Networking"
-msgstr "Social network"
-
-#: ../../Zotlabs/Access/PermissionRoles.php:183
-#: ../../include/permissions.php:904
-msgid "Social - Mostly Public"
-msgstr "Social - Prevalentemente pubblico"
-
-#: ../../Zotlabs/Access/PermissionRoles.php:184
-#: ../../include/permissions.php:904
-msgid "Social - Restricted"
-msgstr "Social - Con restrizioni"
-
-#: ../../Zotlabs/Access/PermissionRoles.php:185
-#: ../../include/permissions.php:904
-msgid "Social - Private"
-msgstr "Social - Privato"
-
-#: ../../Zotlabs/Access/PermissionRoles.php:188
-#: ../../include/permissions.php:905
-msgid "Community Forum"
-msgstr "Forum di discussione"
-
-#: ../../Zotlabs/Access/PermissionRoles.php:189
-#: ../../include/permissions.php:905
-msgid "Forum - Mostly Public"
-msgstr "Social - Prevalentemente pubblico"
-
-#: ../../Zotlabs/Access/PermissionRoles.php:190
-#: ../../include/permissions.php:905
-msgid "Forum - Restricted"
-msgstr "Forum - Con restrizioni"
-
-#: ../../Zotlabs/Access/PermissionRoles.php:191
-#: ../../include/permissions.php:905
-msgid "Forum - Private"
-msgstr "Forum - Privato"
-
-#: ../../Zotlabs/Access/PermissionRoles.php:194
-#: ../../include/permissions.php:906
-msgid "Feed Republish"
-msgstr "Aggregatore di feed esterni"
-
-#: ../../Zotlabs/Access/PermissionRoles.php:195
-#: ../../include/permissions.php:906
-msgid "Feed - Mostly Public"
-msgstr "Feed - Prevalentemente pubblico"
-
-#: ../../Zotlabs/Access/PermissionRoles.php:196
-#: ../../include/permissions.php:906
-msgid "Feed - Restricted"
-msgstr "Feed - Con restrizioni"
-
-#: ../../Zotlabs/Access/PermissionRoles.php:199
-#: ../../include/permissions.php:907
-msgid "Special Purpose"
-msgstr "Per finalità speciali"
-
-#: ../../Zotlabs/Access/PermissionRoles.php:200
-#: ../../include/permissions.php:907
-msgid "Special - Celebrity/Soapbox"
-msgstr "Speciale - Pagina per fan"
-
-#: ../../Zotlabs/Access/PermissionRoles.php:201
-#: ../../include/permissions.php:907
-msgid "Special - Group Repository"
-msgstr "Speciale - Repository di gruppo"
-
-#: ../../Zotlabs/Access/PermissionRoles.php:204 ../../include/selectors.php:49
-#: ../../include/selectors.php:66 ../../include/selectors.php:104
-#: ../../include/selectors.php:140 ../../include/permissions.php:908
-msgid "Other"
-msgstr "Altro"
-
-#: ../../Zotlabs/Access/PermissionRoles.php:205
-#: ../../include/permissions.php:908
-msgid "Custom/Expert Mode"
-msgstr "Personalizzazione per esperti"
-
-#: ../../Zotlabs/Access/Permissions.php:30
-msgid "Can view my channel stream and posts"
-msgstr "Può vedere i post e i contenuti del mio canale"
-
-#: ../../Zotlabs/Access/Permissions.php:31 ../../include/permissions.php:33
-msgid "Can send me their channel stream and posts"
-msgstr "È tra i canali che seguo"
-
-#: ../../Zotlabs/Access/Permissions.php:32 ../../include/permissions.php:27
-msgid "Can view my default channel profile"
-msgstr "Può vedere il profilo predefinito del canale"
-
-#: ../../Zotlabs/Access/Permissions.php:33 ../../include/permissions.php:28
-msgid "Can view my connections"
-msgstr "Può vedere i miei contatti"
-
-#: ../../Zotlabs/Access/Permissions.php:34 ../../include/permissions.php:29
-msgid "Can view my file storage and photos"
-msgstr "Può vedere il mio archivio file e foto"
-
-#: ../../Zotlabs/Access/Permissions.php:35
-msgid "Can upload/modify my file storage and photos"
-msgstr "Può caricare o modificare i file e le foto del mio archivio"
-
-#: ../../Zotlabs/Access/Permissions.php:36
-msgid "Can view my channel webpages"
-msgstr "Può vedere le pagine web del mio canale"
-
-#: ../../Zotlabs/Access/Permissions.php:37
-msgid "Can create/edit my channel webpages"
-msgstr "Può creare o modificare le pagine web del mio canale"
-
-#: ../../Zotlabs/Access/Permissions.php:38
-msgid "Can post on my channel (wall) page"
-msgstr "Può postare sulla mia bacheca"
-
-#: ../../Zotlabs/Access/Permissions.php:39 ../../include/permissions.php:35
-msgid "Can comment on or like my posts"
-msgstr "Può commentare o aggiungere \"mi piace\" ai miei post"
-
-#: ../../Zotlabs/Access/Permissions.php:40 ../../include/permissions.php:36
-msgid "Can send me private mail messages"
-msgstr "Può inviarmi messaggi privati"
-
-#: ../../Zotlabs/Access/Permissions.php:41
-msgid "Can like/dislike profiles and profile things"
-msgstr "Può aggiungere un \"mi piace\" sul profilo e sugli oggetti del profilo"
-
-#: ../../Zotlabs/Access/Permissions.php:42
-msgid "Can forward to all my channel connections via @+ mentions in posts"
-msgstr "Può inoltrare post a tutti i miei contatti con una menzione @+"
-
-#: ../../Zotlabs/Access/Permissions.php:43
-msgid "Can chat with me"
-msgstr "Può aprire una chat con me"
-
-#: ../../Zotlabs/Access/Permissions.php:44 ../../include/permissions.php:44
-msgid "Can source my public posts in derived channels"
-msgstr "Può usare i miei post pubblici per creare canali derivati"
-
-#: ../../Zotlabs/Access/Permissions.php:45
-msgid "Can administer my channel"
-msgstr "Può amministrare il mio canale"
-
#: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:239
msgid "parent"
msgstr "cartella superiore"
-#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2605
+#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2620
msgid "Collection"
msgstr "Cartella"
@@ -193,17 +48,16 @@ msgstr "Appuntamenti ricevuti"
msgid "Schedule Outbox"
msgstr "Appuntamenti inviati"
-#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:796
-#: ../../Zotlabs/Module/Photos.php:1241
-#: ../../Zotlabs/Module/Embedphotos.php:147 ../../Zotlabs/Lib/Apps.php:490
-#: ../../Zotlabs/Lib/Apps.php:565 ../../include/conversation.php:1035
-#: ../../include/widgets.php:1599
+#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:798
+#: ../../Zotlabs/Module/Photos.php:1243 ../../Zotlabs/Lib/Apps.php:486
+#: ../../Zotlabs/Lib/Apps.php:561 ../../include/widgets.php:1505
+#: ../../include/conversation.php:1032
msgid "Unknown"
msgstr "Sconosciuto"
#: ../../Zotlabs/Storage/Browser.php:226 ../../Zotlabs/Module/Fbrowser.php:85
-#: ../../Zotlabs/Lib/Apps.php:217 ../../include/nav.php:93
-#: ../../include/conversation.php:1654
+#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:93
+#: ../../include/conversation.php:1639
msgid "Files"
msgstr "Archivio file"
@@ -216,23 +70,22 @@ msgid "Shared"
msgstr "Condiviso"
#: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:306
-#: ../../Zotlabs/Module/Layouts.php:184 ../../Zotlabs/Module/Menu.php:118
-#: ../../Zotlabs/Module/New_channel.php:142
-#: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Webpages.php:193
+#: ../../Zotlabs/Module/Blocks.php:156 ../../Zotlabs/Module/Layouts.php:182
+#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/New_channel.php:142
+#: ../../Zotlabs/Module/Webpages.php:186
msgid "Create"
msgstr "Crea"
#: ../../Zotlabs/Storage/Browser.php:231 ../../Zotlabs/Storage/Browser.php:308
#: ../../Zotlabs/Module/Cover_photo.php:357
-#: ../../Zotlabs/Module/Photos.php:823 ../../Zotlabs/Module/Photos.php:1362
-#: ../../Zotlabs/Module/Profile_photo.php:390
-#: ../../Zotlabs/Module/Embedphotos.php:159 ../../include/widgets.php:1612
+#: ../../Zotlabs/Module/Photos.php:825 ../../Zotlabs/Module/Photos.php:1364
+#: ../../Zotlabs/Module/Profile_photo.php:368 ../../include/widgets.php:1518
msgid "Upload"
msgstr "Carica"
#: ../../Zotlabs/Storage/Browser.php:235 ../../Zotlabs/Module/Chat.php:247
-#: ../../Zotlabs/Module/Admin.php:1223 ../../Zotlabs/Module/Settings.php:646
-#: ../../Zotlabs/Module/Settings.php:672
+#: ../../Zotlabs/Module/Admin.php:1223 ../../Zotlabs/Module/Settings.php:592
+#: ../../Zotlabs/Module/Settings.php:618
#: ../../Zotlabs/Module/Sharedwithme.php:99
msgid "Name"
msgstr "Nome"
@@ -242,7 +95,7 @@ msgid "Type"
msgstr "Tipo"
#: ../../Zotlabs/Storage/Browser.php:237
-#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1324
+#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1344
msgid "Size"
msgstr "Dimensione"
@@ -251,32 +104,34 @@ msgstr "Dimensione"
msgid "Last Modified"
msgstr "Ultima modifica"
-#: ../../Zotlabs/Storage/Browser.php:240 ../../Zotlabs/Module/Editpost.php:84
+#: ../../Zotlabs/Storage/Browser.php:240 ../../Zotlabs/Module/Blocks.php:157
+#: ../../Zotlabs/Module/Editblock.php:109
#: ../../Zotlabs/Module/Connections.php:290
#: ../../Zotlabs/Module/Connections.php:310
-#: ../../Zotlabs/Module/Editlayout.php:114
-#: ../../Zotlabs/Module/Editwebpage.php:145
-#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Menu.php:112
-#: ../../Zotlabs/Module/Admin.php:2113 ../../Zotlabs/Module/Blocks.php:160
-#: ../../Zotlabs/Module/Editblock.php:109
-#: ../../Zotlabs/Module/Settings.php:706 ../../Zotlabs/Module/Thing.php:260
-#: ../../Zotlabs/Module/Webpages.php:194 ../../Zotlabs/Lib/Apps.php:341
-#: ../../Zotlabs/Lib/ThreadItem.php:106 ../../include/page_widgets.php:9
-#: ../../include/page_widgets.php:39 ../../include/channel.php:976
-#: ../../include/channel.php:980 ../../include/menu.php:108
+#: ../../Zotlabs/Module/Editpost.php:84
+#: ../../Zotlabs/Module/Editlayout.php:113
+#: ../../Zotlabs/Module/Editwebpage.php:146
+#: ../../Zotlabs/Module/Layouts.php:190 ../../Zotlabs/Module/Menu.php:112
+#: ../../Zotlabs/Module/Admin.php:2113 ../../Zotlabs/Module/Settings.php:652
+#: ../../Zotlabs/Module/Thing.php:260 ../../Zotlabs/Module/Webpages.php:187
+#: ../../Zotlabs/Lib/Apps.php:337 ../../Zotlabs/Lib/ThreadItem.php:106
+#: ../../include/channel.php:937 ../../include/channel.php:941
+#: ../../include/menu.php:108 ../../include/page_widgets.php:8
+#: ../../include/page_widgets.php:36
msgid "Edit"
msgstr "Modifica"
-#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Connedit.php:602
+#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Blocks.php:159
+#: ../../Zotlabs/Module/Connedit.php:572
+#: ../../Zotlabs/Module/Editblock.php:134
#: ../../Zotlabs/Module/Connections.php:263
-#: ../../Zotlabs/Module/Editlayout.php:137
-#: ../../Zotlabs/Module/Editwebpage.php:169 ../../Zotlabs/Module/Group.php:177
-#: ../../Zotlabs/Module/Photos.php:1171 ../../Zotlabs/Module/Admin.php:1039
+#: ../../Zotlabs/Module/Editlayout.php:136
+#: ../../Zotlabs/Module/Editwebpage.php:170 ../../Zotlabs/Module/Group.php:177
+#: ../../Zotlabs/Module/Photos.php:1173 ../../Zotlabs/Module/Admin.php:1039
#: ../../Zotlabs/Module/Admin.php:1213 ../../Zotlabs/Module/Admin.php:2114
-#: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Editblock.php:134
-#: ../../Zotlabs/Module/Settings.php:707 ../../Zotlabs/Module/Thing.php:261
-#: ../../Zotlabs/Module/Webpages.php:196 ../../Zotlabs/Lib/Apps.php:342
-#: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:660
+#: ../../Zotlabs/Module/Settings.php:653 ../../Zotlabs/Module/Thing.php:261
+#: ../../Zotlabs/Module/Webpages.php:189 ../../Zotlabs/Lib/Apps.php:338
+#: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:657
msgid "Delete"
msgstr "Elimina"
@@ -302,73 +157,74 @@ msgstr "Nuova cartella"
msgid "Upload file"
msgstr "Carica un file"
-#: ../../Zotlabs/Web/WebServer.php:127 ../../Zotlabs/Module/Dreport.php:10
-#: ../../Zotlabs/Module/Dreport.php:66 ../../Zotlabs/Module/Group.php:72
-#: ../../Zotlabs/Module/Like.php:283 ../../Zotlabs/Module/Import_items.php:114
+#: ../../Zotlabs/Web/WebServer.php:120 ../../Zotlabs/Module/Dreport.php:10
+#: ../../Zotlabs/Module/Dreport.php:49 ../../Zotlabs/Module/Group.php:72
+#: ../../Zotlabs/Module/Like.php:284 ../../Zotlabs/Module/Import_items.php:112
#: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:62
-#: ../../include/items.php:384
+#: ../../include/items.php:385
msgid "Permission denied"
msgstr "Permesso negato"
-#: ../../Zotlabs/Web/WebServer.php:128 ../../Zotlabs/Web/Router.php:65
-#: ../../Zotlabs/Module/Achievements.php:34
-#: ../../Zotlabs/Module/Connedit.php:390 ../../Zotlabs/Module/Id.php:76
-#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Events.php:264
-#: ../../Zotlabs/Module/Bookmarks.php:61 ../../Zotlabs/Module/Editpost.php:17
-#: ../../Zotlabs/Module/Page.php:35 ../../Zotlabs/Module/Page.php:91
-#: ../../Zotlabs/Module/Connections.php:33
+#: ../../Zotlabs/Web/WebServer.php:121 ../../Zotlabs/Web/Router.php:65
+#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Blocks.php:73
+#: ../../Zotlabs/Module/Blocks.php:80 ../../Zotlabs/Module/Channel.php:105
+#: ../../Zotlabs/Module/Channel.php:226 ../../Zotlabs/Module/Channel.php:267
+#: ../../Zotlabs/Module/Chat.php:100 ../../Zotlabs/Module/Chat.php:105
+#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Block.php:26
+#: ../../Zotlabs/Module/Block.php:76 ../../Zotlabs/Module/Bookmarks.php:61
+#: ../../Zotlabs/Module/Connedit.php:366 ../../Zotlabs/Module/Editblock.php:67
+#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Connections.php:33
#: ../../Zotlabs/Module/Cover_photo.php:277
-#: ../../Zotlabs/Module/Cover_photo.php:290 ../../Zotlabs/Module/Chat.php:100
-#: ../../Zotlabs/Module/Chat.php:105 ../../Zotlabs/Module/Editlayout.php:67
+#: ../../Zotlabs/Module/Cover_photo.php:290
+#: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Events.php:265
+#: ../../Zotlabs/Module/Editlayout.php:67
#: ../../Zotlabs/Module/Editlayout.php:90
-#: ../../Zotlabs/Module/Editwebpage.php:68
-#: ../../Zotlabs/Module/Editwebpage.php:89
-#: ../../Zotlabs/Module/Editwebpage.php:104
-#: ../../Zotlabs/Module/Editwebpage.php:126 ../../Zotlabs/Module/Group.php:13
-#: ../../Zotlabs/Module/Appman.php:75 ../../Zotlabs/Module/Pdledit.php:26
-#: ../../Zotlabs/Module/Filestorage.php:23
-#: ../../Zotlabs/Module/Filestorage.php:78
-#: ../../Zotlabs/Module/Filestorage.php:93
-#: ../../Zotlabs/Module/Filestorage.php:120
+#: ../../Zotlabs/Module/Editwebpage.php:69
+#: ../../Zotlabs/Module/Editwebpage.php:90
+#: ../../Zotlabs/Module/Editwebpage.php:105
+#: ../../Zotlabs/Module/Editwebpage.php:127 ../../Zotlabs/Module/Group.php:13
+#: ../../Zotlabs/Module/Api.php:13 ../../Zotlabs/Module/Api.php:18
+#: ../../Zotlabs/Module/Filestorage.php:24
+#: ../../Zotlabs/Module/Filestorage.php:79
+#: ../../Zotlabs/Module/Filestorage.php:94
+#: ../../Zotlabs/Module/Filestorage.php:121 ../../Zotlabs/Module/Item.php:210
+#: ../../Zotlabs/Module/Item.php:218 ../../Zotlabs/Module/Item.php:1070
#: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78
-#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Like.php:181
-#: ../../Zotlabs/Module/Profiles.php:203 ../../Zotlabs/Module/Profiles.php:601
-#: ../../Zotlabs/Module/Item.php:213 ../../Zotlabs/Module/Item.php:221
-#: ../../Zotlabs/Module/Item.php:1071 ../../Zotlabs/Module/Photos.php:73
-#: ../../Zotlabs/Module/Invite.php:17 ../../Zotlabs/Module/Invite.php:91
-#: ../../Zotlabs/Module/Locs.php:87 ../../Zotlabs/Module/Mail.php:121
-#: ../../Zotlabs/Module/Manage.php:10 ../../Zotlabs/Module/Menu.php:78
-#: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Mood.php:116
-#: ../../Zotlabs/Module/Network.php:15 ../../Zotlabs/Module/Channel.php:104
-#: ../../Zotlabs/Module/Channel.php:225 ../../Zotlabs/Module/Channel.php:266
+#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Id.php:76
+#: ../../Zotlabs/Module/Like.php:181 ../../Zotlabs/Module/Invite.php:17
+#: ../../Zotlabs/Module/Invite.php:91 ../../Zotlabs/Module/Locs.php:87
+#: ../../Zotlabs/Module/Mail.php:129 ../../Zotlabs/Module/Manage.php:10
+#: ../../Zotlabs/Module/Menu.php:78 ../../Zotlabs/Module/Message.php:18
+#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Network.php:17
#: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/New_channel.php:77
#: ../../Zotlabs/Module/New_channel.php:104
-#: ../../Zotlabs/Module/Notifications.php:70 ../../Zotlabs/Module/Poke.php:137
-#: ../../Zotlabs/Module/Profile.php:68 ../../Zotlabs/Module/Profile.php:76
-#: ../../Zotlabs/Module/Block.php:26 ../../Zotlabs/Module/Block.php:76
-#: ../../Zotlabs/Module/Profile_photo.php:265
-#: ../../Zotlabs/Module/Profile_photo.php:278
-#: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80
-#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Editblock.php:67
-#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Register.php:77
-#: ../../Zotlabs/Module/Regmod.php:21
+#: ../../Zotlabs/Module/Notifications.php:70
+#: ../../Zotlabs/Module/Photos.php:75 ../../Zotlabs/Module/Page.php:35
+#: ../../Zotlabs/Module/Page.php:90 ../../Zotlabs/Module/Pdledit.php:26
+#: ../../Zotlabs/Module/Poke.php:137 ../../Zotlabs/Module/Profile.php:68
+#: ../../Zotlabs/Module/Profile.php:76 ../../Zotlabs/Module/Profiles.php:203
+#: ../../Zotlabs/Module/Profiles.php:601
+#: ../../Zotlabs/Module/Profile_photo.php:256
+#: ../../Zotlabs/Module/Profile_photo.php:269
+#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Appman.php:75
+#: ../../Zotlabs/Module/Register.php:77 ../../Zotlabs/Module/Regmod.php:21
#: ../../Zotlabs/Module/Service_limits.php:11
-#: ../../Zotlabs/Module/Settings.php:626 ../../Zotlabs/Module/Setup.php:215
-#: ../../Zotlabs/Module/Sharedwithme.php:11 ../../Zotlabs/Module/Thing.php:274
-#: ../../Zotlabs/Module/Thing.php:294 ../../Zotlabs/Module/Thing.php:331
+#: ../../Zotlabs/Module/Settings.php:572 ../../Zotlabs/Module/Setup.php:215
+#: ../../Zotlabs/Module/Sharedwithme.php:11
#: ../../Zotlabs/Module/Sources.php:74 ../../Zotlabs/Module/Suggest.php:30
-#: ../../Zotlabs/Module/Webpages.php:73
-#: ../../Zotlabs/Module/Viewconnections.php:28
-#: ../../Zotlabs/Module/Viewconnections.php:33
-#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Api.php:13
-#: ../../Zotlabs/Module/Api.php:18 ../../Zotlabs/Lib/Chatroom.php:137
-#: ../../include/photos.php:27 ../../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:439
-#: ../../include/attach.php:901 ../../include/attach.php:972
-#: ../../include/attach.php:1124 ../../include/items.php:3448
+#: ../../Zotlabs/Module/Thing.php:274 ../../Zotlabs/Module/Thing.php:294
+#: ../../Zotlabs/Module/Thing.php:331
+#: ../../Zotlabs/Module/Viewconnections.php:25
+#: ../../Zotlabs/Module/Viewconnections.php:30
+#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Webpages.php:74
+#: ../../Zotlabs/Lib/Chatroom.php:137 ../../include/items.php:3438
+#: ../../include/attach.php:141 ../../include/attach.php:189
+#: ../../include/attach.php:252 ../../include/attach.php:266
+#: ../../include/attach.php:273 ../../include/attach.php:338
+#: ../../include/attach.php:352 ../../include/attach.php:359
+#: ../../include/attach.php:437 ../../include/attach.php:895
+#: ../../include/attach.php:966 ../../include/attach.php:1118
+#: ../../include/photos.php:27
msgid "Permission denied."
msgstr "Permesso negato."
@@ -376,9 +232,9 @@ msgstr "Permesso negato."
msgid "Not Found"
msgstr "Non disponibile"
-#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Display.php:118
-#: ../../Zotlabs/Module/Page.php:94 ../../Zotlabs/Module/Help.php:97
-#: ../../Zotlabs/Module/Block.php:79
+#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Block.php:79
+#: ../../Zotlabs/Module/Display.php:117 ../../Zotlabs/Module/Help.php:97
+#: ../../Zotlabs/Module/Page.php:93
msgid "Page not found."
msgstr "Pagina non trovata."
@@ -394,13 +250,13 @@ msgstr "L'autenticazione tramite il tuo hub non è disponibile. Puoi provare a d
msgid "Welcome %s. Remote authentication successful."
msgstr "Ciao %s. L'accesso tramite il tuo hub è avvenuto con successo."
-#: ../../Zotlabs/Module/Achievements.php:15
-#: ../../Zotlabs/Module/Connect.php:17 ../../Zotlabs/Module/Editlayout.php:31
-#: ../../Zotlabs/Module/Editwebpage.php:32 ../../Zotlabs/Module/Hcard.php:12
-#: ../../Zotlabs/Module/Filestorage.php:59 ../../Zotlabs/Module/Layouts.php:31
-#: ../../Zotlabs/Module/Profile.php:20 ../../Zotlabs/Module/Blocks.php:33
-#: ../../Zotlabs/Module/Editblock.php:31 ../../Zotlabs/Module/Webpages.php:33
-#: ../../include/channel.php:876
+#: ../../Zotlabs/Module/Achievements.php:15 ../../Zotlabs/Module/Blocks.php:33
+#: ../../Zotlabs/Module/Connect.php:17 ../../Zotlabs/Module/Editblock.php:31
+#: ../../Zotlabs/Module/Editlayout.php:31
+#: ../../Zotlabs/Module/Editwebpage.php:33
+#: ../../Zotlabs/Module/Filestorage.php:60 ../../Zotlabs/Module/Hcard.php:12
+#: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Profile.php:20
+#: ../../Zotlabs/Module/Webpages.php:34 ../../include/channel.php:837
msgid "Requested profile is not available."
msgstr "Il profilo richiesto non è disponibile."
@@ -408,6 +264,229 @@ msgstr "Il profilo richiesto non è disponibile."
msgid "Some blurb about what to do when you're new here"
msgstr "Qualche suggerimento per i nuovi utenti su cosa fare"
+#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:152
+#: ../../Zotlabs/Module/Editblock.php:108
+msgid "Block Name"
+msgstr "Nome del block"
+
+#: ../../Zotlabs/Module/Blocks.php:151 ../../include/text.php:2265
+msgid "Blocks"
+msgstr "Block"
+
+#: ../../Zotlabs/Module/Blocks.php:153
+msgid "Block Title"
+msgstr "Titolo del block"
+
+#: ../../Zotlabs/Module/Blocks.php:154 ../../Zotlabs/Module/Layouts.php:188
+#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Webpages.php:198
+#: ../../include/page_widgets.php:44
+msgid "Created"
+msgstr "Creato"
+
+#: ../../Zotlabs/Module/Blocks.php:155 ../../Zotlabs/Module/Layouts.php:189
+#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Webpages.php:199
+#: ../../include/page_widgets.php:45
+msgid "Edited"
+msgstr "Modificato"
+
+#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:191
+#: ../../Zotlabs/Module/Photos.php:1072 ../../Zotlabs/Module/Webpages.php:188
+#: ../../include/conversation.php:1208
+msgid "Share"
+msgstr "Condividi"
+
+#: ../../Zotlabs/Module/Blocks.php:163 ../../Zotlabs/Module/Layouts.php:195
+#: ../../Zotlabs/Module/Pubsites.php:47 ../../Zotlabs/Module/Webpages.php:193
+#: ../../include/page_widgets.php:39
+msgid "View"
+msgstr "Guarda"
+
+#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Block.php:43
+#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Wall_upload.php:33
+msgid "Channel not found."
+msgstr "Canale non trovato."
+
+#: ../../Zotlabs/Module/Cal.php:69
+msgid "Permissions denied."
+msgstr "Permesso negato."
+
+#: ../../Zotlabs/Module/Cal.php:259 ../../Zotlabs/Module/Events.php:588
+msgid "l, F j"
+msgstr "l j F"
+
+#: ../../Zotlabs/Module/Cal.php:308 ../../Zotlabs/Module/Events.php:637
+#: ../../include/text.php:1732
+msgid "Link to Source"
+msgstr "Link al sito d'origine"
+
+#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665
+msgid "Edit Event"
+msgstr "Modifica l'evento"
+
+#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665
+msgid "Create Event"
+msgstr "Crea un evento"
+
+#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339
+#: ../../Zotlabs/Module/Events.php:666 ../../Zotlabs/Module/Events.php:673
+#: ../../Zotlabs/Module/Photos.php:949
+msgid "Previous"
+msgstr "Precendente"
+
+#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340
+#: ../../Zotlabs/Module/Events.php:667 ../../Zotlabs/Module/Events.php:674
+#: ../../Zotlabs/Module/Photos.php:958 ../../Zotlabs/Module/Setup.php:267
+msgid "Next"
+msgstr "Successivo"
+
+#: ../../Zotlabs/Module/Cal.php:334 ../../Zotlabs/Module/Events.php:668
+#: ../../include/widgets.php:755
+msgid "Export"
+msgstr "Esporta"
+
+#: ../../Zotlabs/Module/Cal.php:337 ../../Zotlabs/Module/Events.php:671
+#: ../../include/widgets.php:756
+msgid "Import"
+msgstr "Importa"
+
+#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Chat.php:196
+#: ../../Zotlabs/Module/Chat.php:238 ../../Zotlabs/Module/Connect.php:98
+#: ../../Zotlabs/Module/Connedit.php:731 ../../Zotlabs/Module/Events.php:475
+#: ../../Zotlabs/Module/Events.php:672 ../../Zotlabs/Module/Group.php:85
+#: ../../Zotlabs/Module/Filestorage.php:162
+#: ../../Zotlabs/Module/Import.php:550
+#: ../../Zotlabs/Module/Import_items.php:120
+#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121
+#: ../../Zotlabs/Module/Mail.php:378 ../../Zotlabs/Module/Mood.php:139
+#: ../../Zotlabs/Module/Mitem.php:235 ../../Zotlabs/Module/Photos.php:677
+#: ../../Zotlabs/Module/Photos.php:1052 ../../Zotlabs/Module/Photos.php:1092
+#: ../../Zotlabs/Module/Photos.php:1210 ../../Zotlabs/Module/Pconfig.php:107
+#: ../../Zotlabs/Module/Pdledit.php:66 ../../Zotlabs/Module/Poke.php:186
+#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Rate.php:170
+#: ../../Zotlabs/Module/Admin.php:492 ../../Zotlabs/Module/Admin.php:688
+#: ../../Zotlabs/Module/Admin.php:771 ../../Zotlabs/Module/Admin.php:1032
+#: ../../Zotlabs/Module/Admin.php:1211 ../../Zotlabs/Module/Admin.php:1421
+#: ../../Zotlabs/Module/Admin.php:1648 ../../Zotlabs/Module/Admin.php:1733
+#: ../../Zotlabs/Module/Admin.php:2116 ../../Zotlabs/Module/Appman.php:126
+#: ../../Zotlabs/Module/Settings.php:590 ../../Zotlabs/Module/Settings.php:703
+#: ../../Zotlabs/Module/Settings.php:731 ../../Zotlabs/Module/Settings.php:754
+#: ../../Zotlabs/Module/Settings.php:842
+#: ../../Zotlabs/Module/Settings.php:1034 ../../Zotlabs/Module/Setup.php:312
+#: ../../Zotlabs/Module/Setup.php:353 ../../Zotlabs/Module/Sources.php:114
+#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Thing.php:316
+#: ../../Zotlabs/Module/Thing.php:362 ../../Zotlabs/Module/Xchan.php:15
+#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/widgets.php:757
+#: ../../include/widgets.php:769 ../../include/js_strings.php:22
+#: ../../view/theme/redbasic/php/config.php:99
+msgid "Submit"
+msgstr "Salva"
+
+#: ../../Zotlabs/Module/Cal.php:341 ../../Zotlabs/Module/Events.php:675
+msgid "Today"
+msgstr "Oggi"
+
+#: ../../Zotlabs/Module/Channel.php:29 ../../Zotlabs/Module/Chat.php:25
+msgid "You must be logged in to see this page."
+msgstr "Devi aver effettuato l'accesso per vedere questa pagina."
+
+#: ../../Zotlabs/Module/Channel.php:41
+msgid "Posts and comments"
+msgstr "Post e commenti"
+
+#: ../../Zotlabs/Module/Channel.php:42
+msgid "Only posts"
+msgstr "Solo post"
+
+#: ../../Zotlabs/Module/Channel.php:102
+msgid "Insufficient permissions. Request redirected to profile page."
+msgstr "Permessi insufficienti. Sarà visualizzata la pagina del profilo."
+
+#: ../../Zotlabs/Module/Chat.php:181
+msgid "Room not found"
+msgstr "Chat non trovata"
+
+#: ../../Zotlabs/Module/Chat.php:197
+msgid "Leave Room"
+msgstr "Lascia la chat"
+
+#: ../../Zotlabs/Module/Chat.php:198
+msgid "Delete Room"
+msgstr "Elimina questa chat"
+
+#: ../../Zotlabs/Module/Chat.php:199
+msgid "I am away right now"
+msgstr "Non sono presente"
+
+#: ../../Zotlabs/Module/Chat.php:200
+msgid "I am online"
+msgstr "Sono online"
+
+#: ../../Zotlabs/Module/Chat.php:202
+msgid "Bookmark this room"
+msgstr "Aggiungi questa chat ai segnalibri"
+
+#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:205
+#: ../../Zotlabs/Module/Mail.php:314 ../../include/conversation.php:1176
+msgid "Please enter a link URL:"
+msgstr "Inserisci l'indirizzo del link:"
+
+#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:258
+#: ../../Zotlabs/Module/Mail.php:383 ../../Zotlabs/Lib/ThreadItem.php:722
+#: ../../include/conversation.php:1256
+msgid "Encrypt text"
+msgstr "Cifratura del messaggio"
+
+#: ../../Zotlabs/Module/Chat.php:207 ../../Zotlabs/Module/Editblock.php:111
+#: ../../Zotlabs/Module/Editwebpage.php:147 ../../Zotlabs/Module/Mail.php:252
+#: ../../Zotlabs/Module/Mail.php:377 ../../include/conversation.php:1143
+msgid "Insert web link"
+msgstr "Inserisci un indirizzo web"
+
+#: ../../Zotlabs/Module/Chat.php:218
+msgid "Feature disabled."
+msgstr "Funzionalità disattivata."
+
+#: ../../Zotlabs/Module/Chat.php:232
+msgid "New Chatroom"
+msgstr "Nuova chat"
+
+#: ../../Zotlabs/Module/Chat.php:233
+msgid "Chatroom name"
+msgstr "Nome chat"
+
+#: ../../Zotlabs/Module/Chat.php:234
+msgid "Expiration of chats (minutes)"
+msgstr "Scadenza dei messaggi della chat (minuti)"
+
+#: ../../Zotlabs/Module/Chat.php:235 ../../Zotlabs/Module/Filestorage.php:153
+#: ../../Zotlabs/Module/Photos.php:671 ../../Zotlabs/Module/Photos.php:1045
+#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:359
+#: ../../include/acl_selectors.php:283
+msgid "Permissions"
+msgstr "Permessi"
+
+#: ../../Zotlabs/Module/Chat.php:246
+#, php-format
+msgid "%1$s's Chatrooms"
+msgstr "Le chat di %1$s"
+
+#: ../../Zotlabs/Module/Chat.php:251
+msgid "No chatrooms available"
+msgstr "Nessuna chat disponibile"
+
+#: ../../Zotlabs/Module/Chat.php:252 ../../Zotlabs/Module/Manage.php:143
+#: ../../Zotlabs/Module/Profiles.php:778
+msgid "Create New"
+msgstr "Crea nuova"
+
+#: ../../Zotlabs/Module/Chat.php:255
+msgid "Expiration"
+msgstr "Scadenza"
+
+#: ../../Zotlabs/Module/Chat.php:256
+msgid "min"
+msgstr "min"
+
#: ../../Zotlabs/Module/Chatsvc.php:117
msgid "Away"
msgstr "Assente"
@@ -416,6 +495,65 @@ msgstr "Assente"
msgid "Online"
msgstr "Online"
+#: ../../Zotlabs/Module/Block.php:31 ../../Zotlabs/Module/Page.php:40
+msgid "Invalid item."
+msgstr "Elemento non valido."
+
+#: ../../Zotlabs/Module/Bookmarks.php:53
+msgid "Bookmark added"
+msgstr "Segnalibro aggiunto"
+
+#: ../../Zotlabs/Module/Bookmarks.php:75
+msgid "My Bookmarks"
+msgstr "I miei segnalibri"
+
+#: ../../Zotlabs/Module/Bookmarks.php:86
+msgid "My Connections Bookmarks"
+msgstr "I segnalibri dei miei contatti"
+
+#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109
+msgid "Continue"
+msgstr "Continua"
+
+#: ../../Zotlabs/Module/Connect.php:90
+msgid "Premium Channel Setup"
+msgstr "Canale premium - configurazione"
+
+#: ../../Zotlabs/Module/Connect.php:92
+msgid "Enable premium channel connection restrictions"
+msgstr "Abilita le restrizioni del canale premium"
+
+#: ../../Zotlabs/Module/Connect.php:93
+msgid ""
+"Please enter your restrictions or conditions, such as paypal receipt, usage "
+"guidelines, etc."
+msgstr "Scrivi le condizioni d'uso e le restrizioni di questo canale, come per esempio le linee guida, il sistema di pagamento, ecc."
+
+#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115
+msgid ""
+"This channel may require additional steps or acknowledgement of the "
+"following conditions prior to connecting:"
+msgstr "Prima di connetterti a questo canale è necessario che tu accetti le seguenti condizioni:"
+
+#: ../../Zotlabs/Module/Connect.php:96
+msgid ""
+"Potential connections will then see the following text before proceeding:"
+msgstr "Il testo seguente comparirà a chi vorrà seguire il canale:"
+
+#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118
+msgid ""
+"By continuing, I certify that I have complied with any instructions provided"
+" on this page."
+msgstr "Continuando dichiaro di aver seguito tutte le indicazioni e le istruzioni fornite in questa pagina."
+
+#: ../../Zotlabs/Module/Connect.php:106
+msgid "(No specific instructions have been provided by the channel owner.)"
+msgstr "(Il gestore del canale non ha fornito istruzioni specifiche)"
+
+#: ../../Zotlabs/Module/Connect.php:114
+msgid "Restricted or Premium Channel"
+msgstr "Canale premium - con restrizioni"
+
#: ../../Zotlabs/Module/Connedit.php:80
msgid "Could not access contact record."
msgstr "Non è possibile accedere alle informazioni sul contatto."
@@ -424,350 +562,317 @@ msgstr "Non è possibile accedere alle informazioni sul contatto."
msgid "Could not locate selected profile."
msgstr "Non riesco a trovare il profilo selezionato."
-#: ../../Zotlabs/Module/Connedit.php:248
+#: ../../Zotlabs/Module/Connedit.php:227
msgid "Connection updated."
msgstr "Contatto aggiornato."
-#: ../../Zotlabs/Module/Connedit.php:250
+#: ../../Zotlabs/Module/Connedit.php:229
msgid "Failed to update connection record."
msgstr "Impossibile aggiornare le informazioni del contatto."
-#: ../../Zotlabs/Module/Connedit.php:300
+#: ../../Zotlabs/Module/Connedit.php:276
msgid "is now connected to"
msgstr "ha come nuovo contatto"
-#: ../../Zotlabs/Module/Connedit.php:403 ../../Zotlabs/Module/Connedit.php:685
-#: ../../Zotlabs/Module/Events.php:458 ../../Zotlabs/Module/Events.php:459
-#: ../../Zotlabs/Module/Events.php:468
-#: ../../Zotlabs/Module/Filestorage.php:156
-#: ../../Zotlabs/Module/Filestorage.php:164
-#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Photos.php:664
-#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157
-#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:159
-#: ../../Zotlabs/Module/Mitem.php:232 ../../Zotlabs/Module/Mitem.php:233
-#: ../../Zotlabs/Module/Admin.php:459 ../../Zotlabs/Module/Removeme.php:63
-#: ../../Zotlabs/Module/Settings.php:635 ../../Zotlabs/Module/Api.php:89
+#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Connedit.php:654
+#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460
+#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Api.php:89
+#: ../../Zotlabs/Module/Filestorage.php:157
+#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100
+#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158
+#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232
+#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666
+#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:459
+#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581
#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144
#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105
-#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1708
+#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707
msgid "No"
msgstr "No"
-#: ../../Zotlabs/Module/Connedit.php:403 ../../Zotlabs/Module/Events.php:458
-#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:468
-#: ../../Zotlabs/Module/Filestorage.php:156
-#: ../../Zotlabs/Module/Filestorage.php:164
-#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Photos.php:664
-#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157
-#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:159
-#: ../../Zotlabs/Module/Mitem.php:232 ../../Zotlabs/Module/Mitem.php:233
-#: ../../Zotlabs/Module/Admin.php:461 ../../Zotlabs/Module/Removeme.php:63
-#: ../../Zotlabs/Module/Settings.php:635 ../../Zotlabs/Module/Api.php:88
+#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Events.php:459
+#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:469
+#: ../../Zotlabs/Module/Api.php:88 ../../Zotlabs/Module/Filestorage.php:157
+#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100
+#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158
+#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232
+#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666
+#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:461
+#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581
#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144
#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105
-#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1708
+#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707
msgid "Yes"
msgstr "Sì"
-#: ../../Zotlabs/Module/Connedit.php:435
+#: ../../Zotlabs/Module/Connedit.php:411
msgid "Could not access address book record."
msgstr "Impossibile accedere alle informazioni della rubrica."
-#: ../../Zotlabs/Module/Connedit.php:455
+#: ../../Zotlabs/Module/Connedit.php:425
msgid "Refresh failed - channel is currently unavailable."
msgstr "Il canale non è disponibile - impossibile aggiornare."
-#: ../../Zotlabs/Module/Connedit.php:470 ../../Zotlabs/Module/Connedit.php:479
-#: ../../Zotlabs/Module/Connedit.php:488 ../../Zotlabs/Module/Connedit.php:497
-#: ../../Zotlabs/Module/Connedit.php:510
+#: ../../Zotlabs/Module/Connedit.php:440 ../../Zotlabs/Module/Connedit.php:449
+#: ../../Zotlabs/Module/Connedit.php:458 ../../Zotlabs/Module/Connedit.php:467
+#: ../../Zotlabs/Module/Connedit.php:480
msgid "Unable to set address book parameters."
msgstr "Impossibile impostare i parametri della rubrica."
-#: ../../Zotlabs/Module/Connedit.php:533
+#: ../../Zotlabs/Module/Connedit.php:503
msgid "Connection has been removed."
msgstr "Il contatto è stato rimosso."
-#: ../../Zotlabs/Module/Connedit.php:549 ../../Zotlabs/Lib/Apps.php:221
-#: ../../include/nav.php:86 ../../include/conversation.php:957
+#: ../../Zotlabs/Module/Connedit.php:519 ../../Zotlabs/Lib/Apps.php:219
+#: ../../include/nav.php:86 ../../include/conversation.php:954
msgid "View Profile"
msgstr "Profilo"
-#: ../../Zotlabs/Module/Connedit.php:552
+#: ../../Zotlabs/Module/Connedit.php:522
#, php-format
msgid "View %s's profile"
msgstr "Guarda il profilo di %s"
-#: ../../Zotlabs/Module/Connedit.php:556
+#: ../../Zotlabs/Module/Connedit.php:526
msgid "Refresh Permissions"
msgstr "Modifica i permessi"
-#: ../../Zotlabs/Module/Connedit.php:559
+#: ../../Zotlabs/Module/Connedit.php:529
msgid "Fetch updated permissions"
msgstr "Guarda e modifica i permessi assegnati"
-#: ../../Zotlabs/Module/Connedit.php:563
+#: ../../Zotlabs/Module/Connedit.php:533
msgid "Recent Activity"
msgstr "Attività recenti"
-#: ../../Zotlabs/Module/Connedit.php:566
+#: ../../Zotlabs/Module/Connedit.php:536
msgid "View recent posts and comments"
msgstr "Leggi i post recenti e i commenti"
-#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1041
+#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1041
msgid "Unblock"
msgstr "Sblocca"
-#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1040
+#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1040
msgid "Block"
msgstr "Blocca"
-#: ../../Zotlabs/Module/Connedit.php:573
+#: ../../Zotlabs/Module/Connedit.php:543
msgid "Block (or Unblock) all communications with this connection"
msgstr "Blocca ogni interazione con questo contatto (abilita/disabilita)"
-#: ../../Zotlabs/Module/Connedit.php:574
+#: ../../Zotlabs/Module/Connedit.php:544
msgid "This connection is blocked!"
msgstr "Questa connessione è tra quelle bloccate!"
-#: ../../Zotlabs/Module/Connedit.php:578
+#: ../../Zotlabs/Module/Connedit.php:548
msgid "Unignore"
msgstr "Non ignorare"
-#: ../../Zotlabs/Module/Connedit.php:578
+#: ../../Zotlabs/Module/Connedit.php:548
#: ../../Zotlabs/Module/Connections.php:277
#: ../../Zotlabs/Module/Notifications.php:55
msgid "Ignore"
msgstr "Ignora"
-#: ../../Zotlabs/Module/Connedit.php:581
+#: ../../Zotlabs/Module/Connedit.php:551
msgid "Ignore (or Unignore) all inbound communications from this connection"
msgstr "Ignora tutte le comunicazioni in arrivo da questo contatto (abilita/disabilita)"
-#: ../../Zotlabs/Module/Connedit.php:582
+#: ../../Zotlabs/Module/Connedit.php:552
msgid "This connection is ignored!"
msgstr "Questa connessione è tra quelle ignorate!"
-#: ../../Zotlabs/Module/Connedit.php:586
+#: ../../Zotlabs/Module/Connedit.php:556
msgid "Unarchive"
msgstr "Non archiviare"
-#: ../../Zotlabs/Module/Connedit.php:586
+#: ../../Zotlabs/Module/Connedit.php:556
msgid "Archive"
msgstr "Archivia"
-#: ../../Zotlabs/Module/Connedit.php:589
+#: ../../Zotlabs/Module/Connedit.php:559
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"
-#: ../../Zotlabs/Module/Connedit.php:590
+#: ../../Zotlabs/Module/Connedit.php:560
msgid "This connection is archived!"
msgstr "Questa connessione è tra quelle archiviate!"
-#: ../../Zotlabs/Module/Connedit.php:594
+#: ../../Zotlabs/Module/Connedit.php:564
msgid "Unhide"
msgstr "Non nascondere"
-#: ../../Zotlabs/Module/Connedit.php:594
+#: ../../Zotlabs/Module/Connedit.php:564
msgid "Hide"
msgstr "Nascondi"
-#: ../../Zotlabs/Module/Connedit.php:597
+#: ../../Zotlabs/Module/Connedit.php:567
msgid "Hide or Unhide this connection from your other connections"
msgstr "Nascondi questo contatto a tutti gli altri (abilita/disabilita)"
-#: ../../Zotlabs/Module/Connedit.php:598
+#: ../../Zotlabs/Module/Connedit.php:568
msgid "This connection is hidden!"
msgstr "Questa connessione è tra quelle nascoste!"
-#: ../../Zotlabs/Module/Connedit.php:605
+#: ../../Zotlabs/Module/Connedit.php:575
msgid "Delete this connection"
msgstr "Elimina questo contatto"
-#: ../../Zotlabs/Module/Connedit.php:620 ../../include/widgets.php:493
+#: ../../Zotlabs/Module/Connedit.php:590 ../../include/widgets.php:493
msgid "Me"
msgstr "Me"
-#: ../../Zotlabs/Module/Connedit.php:621 ../../include/widgets.php:494
+#: ../../Zotlabs/Module/Connedit.php:591 ../../include/widgets.php:494
msgid "Family"
msgstr "Famiglia"
-#: ../../Zotlabs/Module/Connedit.php:622 ../../Zotlabs/Module/Settings.php:391
-#: ../../Zotlabs/Module/Settings.php:395 ../../Zotlabs/Module/Settings.php:396
-#: ../../Zotlabs/Module/Settings.php:399 ../../Zotlabs/Module/Settings.php:410
-#: ../../include/channel.php:402 ../../include/channel.php:403
-#: ../../include/channel.php:410 ../../include/selectors.php:123
-#: ../../include/widgets.php:495
+#: ../../Zotlabs/Module/Connedit.php:592 ../../Zotlabs/Module/Settings.php:342
+#: ../../Zotlabs/Module/Settings.php:346 ../../Zotlabs/Module/Settings.php:347
+#: ../../Zotlabs/Module/Settings.php:350 ../../Zotlabs/Module/Settings.php:361
+#: ../../include/widgets.php:495 ../../include/selectors.php:123
+#: ../../include/channel.php:389 ../../include/channel.php:390
+#: ../../include/channel.php:397
msgid "Friends"
msgstr "Amici"
-#: ../../Zotlabs/Module/Connedit.php:623 ../../include/widgets.php:496
+#: ../../Zotlabs/Module/Connedit.php:593 ../../include/widgets.php:496
msgid "Acquaintances"
msgstr "Conoscenti"
-#: ../../Zotlabs/Module/Connedit.php:624
+#: ../../Zotlabs/Module/Connedit.php:594
#: ../../Zotlabs/Module/Connections.php:92
#: ../../Zotlabs/Module/Connections.php:107 ../../include/widgets.php:497
msgid "All"
msgstr "Tutti"
-#: ../../Zotlabs/Module/Connedit.php:685
+#: ../../Zotlabs/Module/Connedit.php:654
msgid "Approve this connection"
msgstr "Approva questo contatto"
-#: ../../Zotlabs/Module/Connedit.php:685
+#: ../../Zotlabs/Module/Connedit.php:654
msgid "Accept connection to allow communication"
msgstr "Entra in contatto per poter comunicare"
-#: ../../Zotlabs/Module/Connedit.php:690
+#: ../../Zotlabs/Module/Connedit.php:659
msgid "Set Affinity"
msgstr "Scegli l'affinità"
-#: ../../Zotlabs/Module/Connedit.php:693
+#: ../../Zotlabs/Module/Connedit.php:662
msgid "Set Profile"
msgstr "Scegli il profilo da mostrare"
-#: ../../Zotlabs/Module/Connedit.php:696
+#: ../../Zotlabs/Module/Connedit.php:665
msgid "Set Affinity & Profile"
msgstr "Affinità e profilo"
-#: ../../Zotlabs/Module/Connedit.php:745
+#: ../../Zotlabs/Module/Connedit.php:698
msgid "none"
msgstr "--"
-#: ../../Zotlabs/Module/Connedit.php:749 ../../include/widgets.php:623
+#: ../../Zotlabs/Module/Connedit.php:702 ../../include/widgets.php:614
msgid "Connection Default Permissions"
msgstr "Permessi predefiniti dei nuovi contatti"
-#: ../../Zotlabs/Module/Connedit.php:749 ../../include/items.php:3935
+#: ../../Zotlabs/Module/Connedit.php:702 ../../include/items.php:3926
#, php-format
msgid "Connection: %s"
msgstr "Contatto: %s"
-#: ../../Zotlabs/Module/Connedit.php:750
+#: ../../Zotlabs/Module/Connedit.php:703
msgid "Apply these permissions automatically"
msgstr "Applica automaticamente questi permessi"
-#: ../../Zotlabs/Module/Connedit.php:750
+#: ../../Zotlabs/Module/Connedit.php:703
msgid "Connection requests will be approved without your interaction"
msgstr "Le richieste di entrare in contatto saranno approvate in automatico"
-#: ../../Zotlabs/Module/Connedit.php:752
+#: ../../Zotlabs/Module/Connedit.php:705
msgid "This connection's primary address is"
msgstr "Indirizzo primario di questo canale"
-#: ../../Zotlabs/Module/Connedit.php:753
+#: ../../Zotlabs/Module/Connedit.php:706
msgid "Available locations:"
msgstr "Indirizzi disponibili"
-#: ../../Zotlabs/Module/Connedit.php:757
+#: ../../Zotlabs/Module/Connedit.php:710
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."
-#: ../../Zotlabs/Module/Connedit.php:758
+#: ../../Zotlabs/Module/Connedit.php:711
msgid "Connection Tools"
msgstr "Gestione dei contatti"
-#: ../../Zotlabs/Module/Connedit.php:760
+#: ../../Zotlabs/Module/Connedit.php:713
msgid "Slide to adjust your degree of friendship"
msgstr "Trascina per restringere il grado di amicizia da mostrare"
-#: ../../Zotlabs/Module/Connedit.php:761 ../../Zotlabs/Module/Rate.php:159
+#: ../../Zotlabs/Module/Connedit.php:714 ../../Zotlabs/Module/Rate.php:159
#: ../../include/js_strings.php:20
msgid "Rating"
msgstr "Valutazioni"
-#: ../../Zotlabs/Module/Connedit.php:762
+#: ../../Zotlabs/Module/Connedit.php:715
msgid "Slide to adjust your rating"
msgstr "Trascina per cambiare la tua valutazione"
-#: ../../Zotlabs/Module/Connedit.php:763 ../../Zotlabs/Module/Connedit.php:768
+#: ../../Zotlabs/Module/Connedit.php:716 ../../Zotlabs/Module/Connedit.php:721
msgid "Optionally explain your rating"
msgstr "Commento facoltativo"
-#: ../../Zotlabs/Module/Connedit.php:765
+#: ../../Zotlabs/Module/Connedit.php:718
msgid "Custom Filter"
msgstr "Filtro personalizzato"
-#: ../../Zotlabs/Module/Connedit.php:766
+#: ../../Zotlabs/Module/Connedit.php:719
msgid "Only import posts with this text"
msgstr "Importa solo i post che contengono queste parole chiave"
-#: ../../Zotlabs/Module/Connedit.php:766 ../../Zotlabs/Module/Connedit.php:767
+#: ../../Zotlabs/Module/Connedit.php:719 ../../Zotlabs/Module/Connedit.php:720
msgid ""
"words one per line or #tags or /patterns/ or lang=xx, leave blank to import "
"all posts"
msgstr "per ogni riga: parole, #tag, /pattern/ o lang=xx , lascia vuoto per importare tutto"
-#: ../../Zotlabs/Module/Connedit.php:767
+#: ../../Zotlabs/Module/Connedit.php:720
msgid "Do not import posts with this text"
msgstr "Non importare i post con queste parole chiave"
-#: ../../Zotlabs/Module/Connedit.php:769
+#: ../../Zotlabs/Module/Connedit.php:722
msgid "This information is public!"
msgstr "Questa informazione è pubblica!"
-#: ../../Zotlabs/Module/Connedit.php:774
+#: ../../Zotlabs/Module/Connedit.php:727
msgid "Connection Pending Approval"
msgstr "Contatti in attesa di approvazione"
-#: ../../Zotlabs/Module/Connedit.php:777
+#: ../../Zotlabs/Module/Connedit.php:730
msgid "inherited"
msgstr "derivato"
-#: ../../Zotlabs/Module/Connedit.php:778 ../../Zotlabs/Module/Connect.php:98
-#: ../../Zotlabs/Module/Events.php:474 ../../Zotlabs/Module/Cal.php:338
-#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:238
-#: ../../Zotlabs/Module/Group.php:85 ../../Zotlabs/Module/Appman.php:126
-#: ../../Zotlabs/Module/Pdledit.php:66
-#: ../../Zotlabs/Module/Filestorage.php:161
-#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Import.php:560
-#: ../../Zotlabs/Module/Photos.php:675 ../../Zotlabs/Module/Photos.php:1050
-#: ../../Zotlabs/Module/Photos.php:1090 ../../Zotlabs/Module/Photos.php:1208
-#: ../../Zotlabs/Module/Import_items.php:122
-#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121
-#: ../../Zotlabs/Module/Mail.php:370 ../../Zotlabs/Module/Mood.php:139
-#: ../../Zotlabs/Module/Mitem.php:235 ../../Zotlabs/Module/Admin.php:492
-#: ../../Zotlabs/Module/Admin.php:688 ../../Zotlabs/Module/Admin.php:771
-#: ../../Zotlabs/Module/Admin.php:1032 ../../Zotlabs/Module/Admin.php:1211
-#: ../../Zotlabs/Module/Admin.php:1421 ../../Zotlabs/Module/Admin.php:1648
-#: ../../Zotlabs/Module/Admin.php:1733 ../../Zotlabs/Module/Admin.php:2116
-#: ../../Zotlabs/Module/Poke.php:186 ../../Zotlabs/Module/Pconfig.php:107
-#: ../../Zotlabs/Module/Rate.php:170 ../../Zotlabs/Module/Settings.php:644
-#: ../../Zotlabs/Module/Settings.php:757 ../../Zotlabs/Module/Settings.php:806
-#: ../../Zotlabs/Module/Settings.php:832 ../../Zotlabs/Module/Settings.php:855
-#: ../../Zotlabs/Module/Settings.php:943
-#: ../../Zotlabs/Module/Settings.php:1129 ../../Zotlabs/Module/Setup.php:312
-#: ../../Zotlabs/Module/Setup.php:353 ../../Zotlabs/Module/Thing.php:316
-#: ../../Zotlabs/Module/Thing.php:362 ../../Zotlabs/Module/Sources.php:114
-#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Xchan.php:15
-#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/widgets.php:763
-#: ../../include/js_strings.php:22 ../../view/theme/redbasic/php/config.php:99
-msgid "Submit"
-msgstr "Salva"
-
-#: ../../Zotlabs/Module/Connedit.php:779
+#: ../../Zotlabs/Module/Connedit.php:732
#, 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."
-#: ../../Zotlabs/Module/Connedit.php:781
+#: ../../Zotlabs/Module/Connedit.php:734
msgid "Their Settings"
msgstr "Permessi concessi a te"
-#: ../../Zotlabs/Module/Connedit.php:782
+#: ../../Zotlabs/Module/Connedit.php:735
msgid "My Settings"
msgstr "Permessi che concedo"
-#: ../../Zotlabs/Module/Connedit.php:784
+#: ../../Zotlabs/Module/Connedit.php:737
msgid "Individual Permissions"
msgstr "Permessi individuali"
-#: ../../Zotlabs/Module/Connedit.php:785
+#: ../../Zotlabs/Module/Connedit.php:738
msgid ""
"Some permissions may be inherited from your channel's <a "
"href=\"settings\"><strong>privacy settings</strong></a>, which have higher "
@@ -775,7 +880,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."
-#: ../../Zotlabs/Module/Connedit.php:786
+#: ../../Zotlabs/Module/Connedit.php:739
msgid ""
"Some permissions may be inherited from your channel's <a "
"href=\"settings\"><strong>privacy settings</strong></a>, which have higher "
@@ -783,121 +888,17 @@ 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."
-#: ../../Zotlabs/Module/Connedit.php:787
+#: ../../Zotlabs/Module/Connedit.php:740
msgid "Last update:"
msgstr "Ultimo aggiornamento:"
-#: ../../Zotlabs/Module/Display.php:17 ../../Zotlabs/Module/Directory.php:63
-#: ../../Zotlabs/Module/Photos.php:520 ../../Zotlabs/Module/Ratings.php:86
+#: ../../Zotlabs/Module/Directory.php:63 ../../Zotlabs/Module/Display.php:17
+#: ../../Zotlabs/Module/Photos.php:522 ../../Zotlabs/Module/Ratings.php:86
#: ../../Zotlabs/Module/Search.php:17
-#: ../../Zotlabs/Module/Viewconnections.php:23
+#: ../../Zotlabs/Module/Viewconnections.php:20
msgid "Public access denied."
msgstr "Accesso pubblico negato."
-#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:32
-#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1255
-#: ../../Zotlabs/Module/Admin.php:1561 ../../Zotlabs/Module/Thing.php:89
-#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3369
-msgid "Item not found."
-msgstr "Elemento non trovato."
-
-#: ../../Zotlabs/Module/Id.php:13
-msgid "First Name"
-msgstr "Nome"
-
-#: ../../Zotlabs/Module/Id.php:14
-msgid "Last Name"
-msgstr "Cognome"
-
-#: ../../Zotlabs/Module/Id.php:15
-msgid "Nickname"
-msgstr "Nick"
-
-#: ../../Zotlabs/Module/Id.php:16
-msgid "Full Name"
-msgstr "Nome e cognome"
-
-#: ../../Zotlabs/Module/Id.php:17 ../../Zotlabs/Module/Id.php:18
-#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047
-#: ../../include/network.php:2203
-msgid "Email"
-msgstr "Email"
-
-#: ../../Zotlabs/Module/Id.php:19 ../../Zotlabs/Module/Id.php:20
-#: ../../Zotlabs/Module/Id.php:21 ../../Zotlabs/Lib/Apps.php:238
-msgid "Profile Photo"
-msgstr "Foto del profilo"
-
-#: ../../Zotlabs/Module/Id.php:22
-msgid "Profile Photo 16px"
-msgstr "Foto del profilo 16px"
-
-#: ../../Zotlabs/Module/Id.php:23
-msgid "Profile Photo 32px"
-msgstr "Foto del profilo 32px"
-
-#: ../../Zotlabs/Module/Id.php:24
-msgid "Profile Photo 48px"
-msgstr "Foto del profilo 48px"
-
-#: ../../Zotlabs/Module/Id.php:25
-msgid "Profile Photo 64px"
-msgstr "Foto del profilo 64px"
-
-#: ../../Zotlabs/Module/Id.php:26
-msgid "Profile Photo 80px"
-msgstr "Foto del profilo 80px"
-
-#: ../../Zotlabs/Module/Id.php:27
-msgid "Profile Photo 128px"
-msgstr "Foto del profilo 128px"
-
-#: ../../Zotlabs/Module/Id.php:28
-msgid "Timezone"
-msgstr "Fuso orario"
-
-#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:731
-msgid "Homepage URL"
-msgstr "Indirizzo home page"
-
-#: ../../Zotlabs/Module/Id.php:30 ../../Zotlabs/Lib/Apps.php:236
-msgid "Language"
-msgstr "Lingua"
-
-#: ../../Zotlabs/Module/Id.php:31
-msgid "Birth Year"
-msgstr "Anno di nascita"
-
-#: ../../Zotlabs/Module/Id.php:32
-msgid "Birth Month"
-msgstr "Mese di nascita"
-
-#: ../../Zotlabs/Module/Id.php:33
-msgid "Birth Day"
-msgstr "Giorno di nascita"
-
-#: ../../Zotlabs/Module/Id.php:34
-msgid "Birthdate"
-msgstr "Data di nascita"
-
-#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:454
-msgid "Gender"
-msgstr "Sesso"
-
-#: ../../Zotlabs/Module/Id.php:108 ../../include/selectors.php:49
-#: ../../include/selectors.php:66
-msgid "Male"
-msgstr "Maschio"
-
-#: ../../Zotlabs/Module/Id.php:110 ../../include/selectors.php:49
-#: ../../include/selectors.php:66
-msgid "Female"
-msgstr "Femmina"
-
-#: ../../Zotlabs/Module/Follow.php:34
-msgid "Channel added."
-msgstr "Canale aggiunto."
-
#: ../../Zotlabs/Module/Directory.php:243
#, php-format
msgid "%d rating"
@@ -917,12 +918,12 @@ msgstr "Stato:"
msgid "Homepage: "
msgstr "Homepage:"
-#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1223
+#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1183
msgid "Age:"
msgstr "Età:"
-#: ../../Zotlabs/Module/Directory.php:311 ../../include/channel.php:1066
-#: ../../include/event.php:52 ../../include/event.php:84
+#: ../../Zotlabs/Module/Directory.php:311 ../../include/event.php:52
+#: ../../include/event.php:84 ../../include/channel.php:1027
#: ../../include/bb2diaspora.php:507
msgid "Location:"
msgstr "Luogo:"
@@ -931,18 +932,18 @@ msgstr "Luogo:"
msgid "Description:"
msgstr "Descrizione:"
-#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1239
+#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1199
msgid "Hometown:"
msgstr "Città dove vivo:"
-#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1247
+#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1207
msgid "About:"
msgstr "Informazioni:"
#: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68
-#: ../../Zotlabs/Module/Suggest.php:56 ../../include/channel.php:1051
-#: ../../include/connections.php:78 ../../include/conversation.php:959
-#: ../../include/widgets.php:147 ../../include/widgets.php:184
+#: ../../Zotlabs/Module/Suggest.php:56 ../../include/widgets.php:147
+#: ../../include/widgets.php:184 ../../include/connections.php:78
+#: ../../include/conversation.php:956 ../../include/channel.php:1012
msgid "Connect"
msgstr "Aggiungi"
@@ -1018,322 +1019,38 @@ msgstr "Prima i più vecchi"
msgid "No entries (some entries may be hidden)."
msgstr "Nessun risultato (qualche elemento potrebbe essere nascosto)."
-#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109
-msgid "Continue"
-msgstr "Continua"
-
-#: ../../Zotlabs/Module/Connect.php:90
-msgid "Premium Channel Setup"
-msgstr "Canale premium - configurazione"
-
-#: ../../Zotlabs/Module/Connect.php:92
-msgid "Enable premium channel connection restrictions"
-msgstr "Abilita le restrizioni del canale premium"
-
-#: ../../Zotlabs/Module/Connect.php:93
-msgid ""
-"Please enter your restrictions or conditions, such as paypal receipt, usage "
-"guidelines, etc."
-msgstr "Scrivi le condizioni d'uso e le restrizioni di questo canale, come per esempio le linee guida, il sistema di pagamento, ecc."
-
-#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115
-msgid ""
-"This channel may require additional steps or acknowledgement of the "
-"following conditions prior to connecting:"
-msgstr "Prima di connetterti a questo canale è necessario che tu accetti le seguenti condizioni:"
-
-#: ../../Zotlabs/Module/Connect.php:96
-msgid ""
-"Potential connections will then see the following text before proceeding:"
-msgstr "Il testo seguente comparirà a chi vorrà seguire il canale:"
-
-#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118
-msgid ""
-"By continuing, I certify that I have complied with any instructions provided"
-" on this page."
-msgstr "Continuando dichiaro di aver seguito tutte le indicazioni e le istruzioni fornite in questa pagina."
-
-#: ../../Zotlabs/Module/Connect.php:106
-msgid "(No specific instructions have been provided by the channel owner.)"
-msgstr "(Il gestore del canale non ha fornito istruzioni specifiche)"
-
-#: ../../Zotlabs/Module/Connect.php:114
-msgid "Restricted or Premium Channel"
-msgstr "Canale premium - con restrizioni"
-
-#: ../../Zotlabs/Module/Events.php:25
-msgid "Calendar entries imported."
-msgstr "Le voci del calendario sono state importate."
-
-#: ../../Zotlabs/Module/Events.php:27
-msgid "No calendar entries found."
-msgstr "Non sono state trovate voci del calendario."
-
-#: ../../Zotlabs/Module/Events.php:104
-msgid "Event can not end before it has started."
-msgstr "Un evento non può terminare prima del suo inizio."
-
-#: ../../Zotlabs/Module/Events.php:106 ../../Zotlabs/Module/Events.php:115
-#: ../../Zotlabs/Module/Events.php:135
-msgid "Unable to generate preview."
-msgstr "Impossibile creare un'anteprima."
-
-#: ../../Zotlabs/Module/Events.php:113
-msgid "Event title and start time are required."
-msgstr "Sono necessari il titolo e l'ora d'inizio dell'evento."
-
-#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258
-msgid "Event not found."
-msgstr "Evento non trovato."
-
-#: ../../Zotlabs/Module/Events.php:253 ../../Zotlabs/Module/Like.php:372
-#: ../../Zotlabs/Module/Tagger.php:51 ../../include/conversation.php:123
-#: ../../include/text.php:1924 ../../include/event.php:951
-msgid "event"
-msgstr "l'evento"
-
-#: ../../Zotlabs/Module/Events.php:448
-msgid "Edit event title"
-msgstr "Modifica il titolo dell'evento"
-
-#: ../../Zotlabs/Module/Events.php:448
-msgid "Event title"
-msgstr "Titolo dell'evento"
-
-#: ../../Zotlabs/Module/Events.php:448 ../../Zotlabs/Module/Events.php:453
-#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116
-#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713
-#: ../../include/datetime.php:245
-msgid "Required"
-msgstr "Obbligatorio"
-
-#: ../../Zotlabs/Module/Events.php:450
-msgid "Categories (comma-separated list)"
-msgstr "Categorie (separate da virgola)"
-
-#: ../../Zotlabs/Module/Events.php:451
-msgid "Edit Category"
-msgstr "Modifica la categoria"
-
-#: ../../Zotlabs/Module/Events.php:451
-msgid "Category"
-msgstr "Categoria"
-
-#: ../../Zotlabs/Module/Events.php:454
-msgid "Edit start date and time"
-msgstr "Modifica data/ora di inizio"
-
-#: ../../Zotlabs/Module/Events.php:454
-msgid "Start date and time"
-msgstr "Data e ora di inizio"
-
-#: ../../Zotlabs/Module/Events.php:455 ../../Zotlabs/Module/Events.php:458
-msgid "Finish date and time are not known or not relevant"
-msgstr "La data e l'ora di fine non sono necessarie"
-
-#: ../../Zotlabs/Module/Events.php:457
-msgid "Edit finish date and time"
-msgstr "Modifica data/ora di fine"
-
-#: ../../Zotlabs/Module/Events.php:457
-msgid "Finish date and time"
-msgstr "Data e ora di fine"
-
-#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460
-msgid "Adjust for viewer timezone"
-msgstr "Adatta al fuso orario di chi legge"
-
-#: ../../Zotlabs/Module/Events.php:459
-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."
-
-#: ../../Zotlabs/Module/Events.php:461
-msgid "Edit Description"
-msgstr "Modifica la descrizione"
-
-#: ../../Zotlabs/Module/Events.php:461 ../../Zotlabs/Module/Appman.php:117
-#: ../../Zotlabs/Module/Rbmark.php:101
-msgid "Description"
-msgstr "Descrizione"
-
-#: ../../Zotlabs/Module/Events.php:463
-msgid "Edit Location"
-msgstr "Modifica il luogo"
-
-#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Profiles.php:477
-#: ../../Zotlabs/Module/Profiles.php:698 ../../Zotlabs/Module/Locs.php:117
-#: ../../Zotlabs/Module/Pubsites.php:41 ../../include/js_strings.php:25
-msgid "Location"
-msgstr "Posizione geografica"
-
-#: ../../Zotlabs/Module/Events.php:466 ../../Zotlabs/Module/Events.php:468
-msgid "Share this event"
-msgstr "Condividi questo evento"
-
-#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Photos.php:1091
-#: ../../Zotlabs/Module/Webpages.php:201 ../../Zotlabs/Lib/ThreadItem.php:719
-#: ../../include/page_widgets.php:43 ../../include/conversation.php:1198
-msgid "Preview"
-msgstr "Anteprima"
-
-#: ../../Zotlabs/Module/Events.php:470 ../../include/conversation.php:1247
-msgid "Permission settings"
-msgstr "Permessi dei tuoi contatti"
-
-#: ../../Zotlabs/Module/Events.php:475
-msgid "Advanced Options"
-msgstr "Opzioni avanzate"
-
-#: ../../Zotlabs/Module/Events.php:587 ../../Zotlabs/Module/Cal.php:259
-msgid "l, F j"
-msgstr "l j F"
-
-#: ../../Zotlabs/Module/Events.php:609
-msgid "Edit event"
-msgstr "Modifica l'evento"
-
-#: ../../Zotlabs/Module/Events.php:611
-msgid "Delete event"
-msgstr "Elimina l'evento"
-
-#: ../../Zotlabs/Module/Events.php:636 ../../Zotlabs/Module/Cal.php:308
-#: ../../include/text.php:1712
-msgid "Link to Source"
-msgstr "Link al sito d'origine"
-
-#: ../../Zotlabs/Module/Events.php:645
-msgid "calendar"
-msgstr "calendario"
-
-#: ../../Zotlabs/Module/Events.php:664 ../../Zotlabs/Module/Cal.php:331
-msgid "Edit Event"
-msgstr "Modifica l'evento"
-
-#: ../../Zotlabs/Module/Events.php:664 ../../Zotlabs/Module/Cal.php:331
-msgid "Create Event"
-msgstr "Crea un evento"
-
-#: ../../Zotlabs/Module/Events.php:665 ../../Zotlabs/Module/Events.php:674
-#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339
-#: ../../Zotlabs/Module/Photos.php:947
-msgid "Previous"
-msgstr "Precendente"
-
-#: ../../Zotlabs/Module/Events.php:666 ../../Zotlabs/Module/Events.php:675
-#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340
-#: ../../Zotlabs/Module/Photos.php:956 ../../Zotlabs/Module/Setup.php:267
-msgid "Next"
-msgstr "Successivo"
-
-#: ../../Zotlabs/Module/Events.php:667 ../../Zotlabs/Module/Cal.php:334
-msgid "Export"
-msgstr "Esporta"
-
-#: ../../Zotlabs/Module/Events.php:670 ../../Zotlabs/Module/Layouts.php:197
-#: ../../Zotlabs/Module/Pubsites.php:47 ../../Zotlabs/Module/Blocks.php:166
-#: ../../Zotlabs/Module/Webpages.php:200 ../../include/page_widgets.php:42
-msgid "View"
-msgstr "Guarda"
-
-#: ../../Zotlabs/Module/Events.php:671
-msgid "Month"
-msgstr "Mese"
-
-#: ../../Zotlabs/Module/Events.php:672
-msgid "Week"
-msgstr "Settimana"
-
-#: ../../Zotlabs/Module/Events.php:673
-msgid "Day"
-msgstr "Giorno"
-
-#: ../../Zotlabs/Module/Events.php:676 ../../Zotlabs/Module/Cal.php:341
-msgid "Today"
-msgstr "Oggi"
-
-#: ../../Zotlabs/Module/Events.php:707
-msgid "Event removed"
-msgstr "Evento eliminato"
-
-#: ../../Zotlabs/Module/Events.php:710
-msgid "Failed to remove event"
-msgstr "Impossibile eliminare l'evento"
-
-#: ../../Zotlabs/Module/Bookmarks.php:53
-msgid "Bookmark added"
-msgstr "Segnalibro aggiunto"
-
-#: ../../Zotlabs/Module/Bookmarks.php:75
-msgid "My Bookmarks"
-msgstr "I miei segnalibri"
-
-#: ../../Zotlabs/Module/Bookmarks.php:86
-msgid "My Connections Bookmarks"
-msgstr "I segnalibri dei miei contatti"
+#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:33
+#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1255
+#: ../../Zotlabs/Module/Admin.php:1561 ../../Zotlabs/Module/Thing.php:89
+#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3359
+msgid "Item not found."
+msgstr "Elemento non trovato."
-#: ../../Zotlabs/Module/Editpost.php:24 ../../Zotlabs/Module/Editlayout.php:79
-#: ../../Zotlabs/Module/Editwebpage.php:80
#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95
+#: ../../Zotlabs/Module/Editpost.php:24 ../../Zotlabs/Module/Editlayout.php:79
+#: ../../Zotlabs/Module/Editwebpage.php:81
msgid "Item not found"
msgstr "Elemento non trovato"
-#: ../../Zotlabs/Module/Editpost.php:35
-msgid "Item is not editable"
-msgstr "L'elemento non è modificabile"
-
-#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:134
-msgid "Edit post"
-msgstr "Modifica post"
-
-#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222
-#: ../../include/nav.php:92 ../../include/conversation.php:1647
-msgid "Photos"
-msgstr "Foto"
-
-#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88
-#: ../../Zotlabs/Module/Admin.php:1406 ../../Zotlabs/Module/Settings.php:645
-#: ../../Zotlabs/Module/Settings.php:671 ../../Zotlabs/Module/Tagrm.php:15
-#: ../../Zotlabs/Module/Tagrm.php:138 ../../Zotlabs/Module/Wiki.php:166
-#: ../../Zotlabs/Module/Wiki.php:202 ../../include/conversation.php:1235
-#: ../../include/conversation.php:1274
-msgid "Cancel"
-msgstr "Annulla"
-
-#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31
-msgid "Invalid item."
-msgstr "Elemento non valido."
-
-#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Cal.php:62
-#: ../../Zotlabs/Module/Block.php:43 ../../Zotlabs/Module/Wall_upload.php:33
-msgid "Channel not found."
-msgstr "Canale non trovato."
+#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1228
+msgid "Title (optional)"
+msgstr "Titolo (facoltativo)"
-#: ../../Zotlabs/Module/Page.php:131
-msgid ""
-"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod "
-"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,"
-" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo "
-"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse "
-"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat "
-"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
-msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
+#: ../../Zotlabs/Module/Editblock.php:133
+msgid "Edit Block"
+msgstr "Modifica il block"
-#: ../../Zotlabs/Module/Filer.php:52
-msgid "Save to Folder:"
-msgstr "Salva nella cartella:"
+#: ../../Zotlabs/Module/Common.php:14
+msgid "No channel."
+msgstr "Nessun canale."
-#: ../../Zotlabs/Module/Filer.php:52
-msgid "- select -"
-msgstr "- scegli -"
+#: ../../Zotlabs/Module/Common.php:43
+msgid "Common connections"
+msgstr "Contatti in comune"
-#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033
-#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32
-#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:926
-#: ../../include/text.php:938 ../../include/widgets.php:201
-msgid "Save"
-msgstr "Salva"
+#: ../../Zotlabs/Module/Common.php:48
+msgid "No connections in common."
+msgstr "Nessun contatto in comune."
#: ../../Zotlabs/Module/Connections.php:56
#: ../../Zotlabs/Module/Connections.php:161
@@ -1361,7 +1078,7 @@ msgstr "Archiviati"
#: ../../Zotlabs/Module/Connections.php:76
#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116
-#: ../../include/conversation.php:1550
+#: ../../include/conversation.php:1535
msgid "New"
msgstr "Novità"
@@ -1448,15 +1165,15 @@ msgstr "Ignora il contatto"
msgid "Recent activity"
msgstr "Attività recenti"
-#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:209
-#: ../../include/nav.php:188 ../../include/text.php:855
+#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:208
+#: ../../include/text.php:875 ../../include/nav.php:186
msgid "Connections"
msgstr "Contatti"
#: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44
-#: ../../Zotlabs/Lib/Apps.php:230 ../../include/nav.php:167
-#: ../../include/text.php:925 ../../include/text.php:937
-#: ../../include/acl_selectors.php:274
+#: ../../Zotlabs/Lib/Apps.php:228 ../../include/text.php:945
+#: ../../include/text.php:957 ../../include/nav.php:165
+#: ../../include/acl_selectors.php:276
msgid "Search"
msgstr "Cerca"
@@ -1469,7 +1186,7 @@ msgid "Connections search"
msgstr "Ricerca tra i contatti"
#: ../../Zotlabs/Module/Cover_photo.php:58
-#: ../../Zotlabs/Module/Profile_photo.php:61
+#: ../../Zotlabs/Module/Profile_photo.php:79
msgid "Image uploaded but image cropping failed."
msgstr "L'immagine è stata caricata, ma il non è stato possibile ritagliarla."
@@ -1479,66 +1196,66 @@ msgid "Cover Photos"
msgstr "Copertine del canale"
#: ../../Zotlabs/Module/Cover_photo.php:154
-#: ../../Zotlabs/Module/Profile_photo.php:135
+#: ../../Zotlabs/Module/Profile_photo.php:133
msgid "Image resize failed."
msgstr "Il ridimensionamento dell'immagine è fallito."
#: ../../Zotlabs/Module/Cover_photo.php:168
-#: ../../Zotlabs/Module/Profile_photo.php:196 ../../include/photos.php:148
+#: ../../Zotlabs/Module/Profile_photo.php:192 ../../include/photos.php:144
msgid "Unable to process image"
msgstr "Impossibile elaborare l'immagine"
#: ../../Zotlabs/Module/Cover_photo.php:192
-#: ../../Zotlabs/Module/Profile_photo.php:223
+#: ../../Zotlabs/Module/Profile_photo.php:217
msgid "Image upload failed."
msgstr "Il caricamento dell'immagine è fallito."
#: ../../Zotlabs/Module/Cover_photo.php:210
-#: ../../Zotlabs/Module/Profile_photo.php:242
+#: ../../Zotlabs/Module/Profile_photo.php:236
msgid "Unable to process image."
msgstr "Impossibile elaborare l'immagine."
-#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4283
+#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4270
msgid "female"
msgstr "femmina"
-#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4284
+#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4271
#, php-format
msgid "%1$s updated her %2$s"
msgstr "Aggiornamento: %2$s di %1$s"
-#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4285
+#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4272
msgid "male"
msgstr "maschio"
-#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4286
+#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4273
#, php-format
msgid "%1$s updated his %2$s"
msgstr "Aggiornamento: %2$s di %1$s"
-#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4288
+#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4275
#, php-format
msgid "%1$s updated their %2$s"
msgstr "Aggiornamento: %2$s di %1$s"
-#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1726
+#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1661
msgid "cover photo"
msgstr "Copertina del canale"
#: ../../Zotlabs/Module/Cover_photo.php:303
#: ../../Zotlabs/Module/Cover_photo.php:318
-#: ../../Zotlabs/Module/Profile_photo.php:300
-#: ../../Zotlabs/Module/Profile_photo.php:341
+#: ../../Zotlabs/Module/Profile_photo.php:283
+#: ../../Zotlabs/Module/Profile_photo.php:324
msgid "Photo not available."
msgstr "Foto non disponibile."
#: ../../Zotlabs/Module/Cover_photo.php:354
-#: ../../Zotlabs/Module/Profile_photo.php:387
+#: ../../Zotlabs/Module/Profile_photo.php:365
msgid "Upload File:"
msgstr "Carica un file:"
#: ../../Zotlabs/Module/Cover_photo.php:355
-#: ../../Zotlabs/Module/Profile_photo.php:388
+#: ../../Zotlabs/Module/Profile_photo.php:366
msgid "Select a profile:"
msgstr "Seleziona un profilo:"
@@ -1547,256 +1264,315 @@ msgid "Upload Cover Photo"
msgstr "Carica una copertina"
#: ../../Zotlabs/Module/Cover_photo.php:361
-#: ../../Zotlabs/Module/Profile_photo.php:396
-#: ../../Zotlabs/Module/Settings.php:1080
+#: ../../Zotlabs/Module/Profile_photo.php:374
+#: ../../Zotlabs/Module/Settings.php:985
msgid "or"
msgstr "o"
#: ../../Zotlabs/Module/Cover_photo.php:361
-#: ../../Zotlabs/Module/Profile_photo.php:396
+#: ../../Zotlabs/Module/Profile_photo.php:374
msgid "skip this step"
msgstr "salta questo passaggio"
#: ../../Zotlabs/Module/Cover_photo.php:361
-#: ../../Zotlabs/Module/Profile_photo.php:396
+#: ../../Zotlabs/Module/Profile_photo.php:374
msgid "select a photo from your photo albums"
msgstr "seleziona una foto dai tuoi album"
#: ../../Zotlabs/Module/Cover_photo.php:377
-#: ../../Zotlabs/Module/Profile_photo.php:415
+#: ../../Zotlabs/Module/Profile_photo.php:390
msgid "Crop Image"
msgstr "Ritaglia immagine"
#: ../../Zotlabs/Module/Cover_photo.php:378
-#: ../../Zotlabs/Module/Profile_photo.php:416
+#: ../../Zotlabs/Module/Profile_photo.php:391
msgid "Please adjust the image cropping for optimum viewing."
msgstr "Ritaglia l'immagine per migliorarne la visualizzazione."
#: ../../Zotlabs/Module/Cover_photo.php:380
-#: ../../Zotlabs/Module/Profile_photo.php:418
+#: ../../Zotlabs/Module/Profile_photo.php:393
msgid "Done Editing"
msgstr "Modifica terminata"
-#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192
-msgid "webpage"
-msgstr "pagina web"
+#: ../../Zotlabs/Module/Editpost.php:35
+msgid "Item is not editable"
+msgstr "L'elemento non è modificabile"
-#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198
-msgid "block"
-msgstr "block"
+#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:135
+msgid "Edit post"
+msgstr "Modifica post"
-#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195
-msgid "layout"
-msgstr "layout"
+#: ../../Zotlabs/Module/Events.php:26
+msgid "Calendar entries imported."
+msgstr "Le voci del calendario sono state importate."
-#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201
-msgid "menu"
-msgstr "menu"
+#: ../../Zotlabs/Module/Events.php:28
+msgid "No calendar entries found."
+msgstr "Non sono state trovate voci del calendario."
-#: ../../Zotlabs/Module/Impel.php:187
-#, php-format
-msgid "%s element installed"
-msgstr "%s elemento installato"
+#: ../../Zotlabs/Module/Events.php:105
+msgid "Event can not end before it has started."
+msgstr "Un evento non può terminare prima del suo inizio."
-#: ../../Zotlabs/Module/Impel.php:190
-#, php-format
-msgid "%s element installation failed"
-msgstr "Elementi con installazione fallita: %s"
+#: ../../Zotlabs/Module/Events.php:107 ../../Zotlabs/Module/Events.php:116
+#: ../../Zotlabs/Module/Events.php:136
+msgid "Unable to generate preview."
+msgstr "Impossibile creare un'anteprima."
-#: ../../Zotlabs/Module/Cal.php:69
-msgid "Permissions denied."
-msgstr "Permesso negato."
+#: ../../Zotlabs/Module/Events.php:114
+msgid "Event title and start time are required."
+msgstr "Sono necessari il titolo e l'ora d'inizio dell'evento."
-#: ../../Zotlabs/Module/Cal.php:337
-msgid "Import"
-msgstr "Importa"
+#: ../../Zotlabs/Module/Events.php:134 ../../Zotlabs/Module/Events.php:259
+msgid "Event not found."
+msgstr "Evento non trovato."
-#: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49
-msgid "This site is not a directory server"
-msgstr "Questo non è un directory server"
+#: ../../Zotlabs/Module/Events.php:254 ../../Zotlabs/Module/Like.php:373
+#: ../../Zotlabs/Module/Tagger.php:51 ../../include/event.php:949
+#: ../../include/text.php:1943 ../../include/conversation.php:123
+msgid "event"
+msgstr "l'evento"
-#: ../../Zotlabs/Module/Dirsearch.php:33
-msgid "This directory server requires an access token"
-msgstr "Questo directory server necessita di un token di autenticazione"
+#: ../../Zotlabs/Module/Events.php:449
+msgid "Edit event title"
+msgstr "Modifica il titolo dell'evento"
-#: ../../Zotlabs/Module/Chat.php:25 ../../Zotlabs/Module/Channel.php:28
-#: ../../Zotlabs/Module/Wiki.php:20
-msgid "You must be logged in to see this page."
-msgstr "Devi aver effettuato l'accesso per vedere questa pagina."
+#: ../../Zotlabs/Module/Events.php:449
+msgid "Event title"
+msgstr "Titolo dell'evento"
-#: ../../Zotlabs/Module/Chat.php:181
-msgid "Room not found"
-msgstr "Chat non trovata"
+#: ../../Zotlabs/Module/Events.php:449 ../../Zotlabs/Module/Events.php:454
+#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713
+#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116
+#: ../../include/datetime.php:245
+msgid "Required"
+msgstr "Obbligatorio"
-#: ../../Zotlabs/Module/Chat.php:197
-msgid "Leave Room"
-msgstr "Lascia la chat"
+#: ../../Zotlabs/Module/Events.php:451
+msgid "Categories (comma-separated list)"
+msgstr "Categorie (separate da virgola)"
-#: ../../Zotlabs/Module/Chat.php:198
-msgid "Delete Room"
-msgstr "Elimina questa chat"
+#: ../../Zotlabs/Module/Events.php:452
+msgid "Edit Category"
+msgstr "Modifica la categoria"
-#: ../../Zotlabs/Module/Chat.php:199
-msgid "I am away right now"
-msgstr "Non sono presente"
+#: ../../Zotlabs/Module/Events.php:452
+msgid "Category"
+msgstr "Categoria"
-#: ../../Zotlabs/Module/Chat.php:200
-msgid "I am online"
-msgstr "Sono online"
+#: ../../Zotlabs/Module/Events.php:455
+msgid "Edit start date and time"
+msgstr "Modifica data/ora di inizio"
-#: ../../Zotlabs/Module/Chat.php:202
-msgid "Bookmark this room"
-msgstr "Aggiungi questa chat ai segnalibri"
+#: ../../Zotlabs/Module/Events.php:455
+msgid "Start date and time"
+msgstr "Data e ora di inizio"
-#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:197
-#: ../../Zotlabs/Module/Mail.php:306 ../../include/conversation.php:1181
-msgid "Please enter a link URL:"
-msgstr "Inserisci l'indirizzo del link:"
+#: ../../Zotlabs/Module/Events.php:456 ../../Zotlabs/Module/Events.php:459
+msgid "Finish date and time are not known or not relevant"
+msgstr "La data e l'ora di fine non sono necessarie"
-#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:250
-#: ../../Zotlabs/Module/Mail.php:375 ../../Zotlabs/Lib/ThreadItem.php:722
-#: ../../include/conversation.php:1271
-msgid "Encrypt text"
-msgstr "Cifratura del messaggio"
+#: ../../Zotlabs/Module/Events.php:458
+msgid "Edit finish date and time"
+msgstr "Modifica data/ora di fine"
-#: ../../Zotlabs/Module/Chat.php:207 ../../Zotlabs/Module/Editwebpage.php:146
-#: ../../Zotlabs/Module/Mail.php:244 ../../Zotlabs/Module/Mail.php:369
-#: ../../Zotlabs/Module/Editblock.php:111 ../../include/conversation.php:1146
-msgid "Insert web link"
-msgstr "Inserisci un indirizzo web"
+#: ../../Zotlabs/Module/Events.php:458
+msgid "Finish date and time"
+msgstr "Data e ora di fine"
-#: ../../Zotlabs/Module/Chat.php:218
-msgid "Feature disabled."
-msgstr "Funzionalità disattivata."
+#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:461
+msgid "Adjust for viewer timezone"
+msgstr "Adatta al fuso orario di chi legge"
-#: ../../Zotlabs/Module/Chat.php:232
-msgid "New Chatroom"
-msgstr "Nuova chat"
+#: ../../Zotlabs/Module/Events.php:460
+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."
-#: ../../Zotlabs/Module/Chat.php:233
-msgid "Chatroom name"
-msgstr "Nome chat"
+#: ../../Zotlabs/Module/Events.php:462
+msgid "Edit Description"
+msgstr "Modifica la descrizione"
-#: ../../Zotlabs/Module/Chat.php:234
-msgid "Expiration of chats (minutes)"
-msgstr "Scadenza dei messaggi della chat (minuti)"
+#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Appman.php:117
+#: ../../Zotlabs/Module/Rbmark.php:101
+msgid "Description"
+msgstr "Descrizione"
-#: ../../Zotlabs/Module/Chat.php:235 ../../Zotlabs/Module/Filestorage.php:152
-#: ../../Zotlabs/Module/Photos.php:669 ../../Zotlabs/Module/Photos.php:1043
-#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:359
-#: ../../include/acl_selectors.php:281
-msgid "Permissions"
-msgstr "Permessi"
+#: ../../Zotlabs/Module/Events.php:464
+msgid "Edit Location"
+msgstr "Modifica il luogo"
-#: ../../Zotlabs/Module/Chat.php:246
-#, php-format
-msgid "%1$s's Chatrooms"
-msgstr "Le chat di %1$s"
+#: ../../Zotlabs/Module/Events.php:464 ../../Zotlabs/Module/Locs.php:117
+#: ../../Zotlabs/Module/Profiles.php:477 ../../Zotlabs/Module/Profiles.php:698
+#: ../../Zotlabs/Module/Pubsites.php:41 ../../include/js_strings.php:25
+msgid "Location"
+msgstr "Posizione geografica"
-#: ../../Zotlabs/Module/Chat.php:251
-msgid "No chatrooms available"
-msgstr "Nessuna chat disponibile"
+#: ../../Zotlabs/Module/Events.php:467 ../../Zotlabs/Module/Events.php:469
+msgid "Share this event"
+msgstr "Condividi questo evento"
-#: ../../Zotlabs/Module/Chat.php:252 ../../Zotlabs/Module/Profiles.php:778
-#: ../../Zotlabs/Module/Manage.php:143
-msgid "Create New"
-msgstr "Crea nuova"
+#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Photos.php:1093
+#: ../../Zotlabs/Module/Webpages.php:194 ../../Zotlabs/Lib/ThreadItem.php:719
+#: ../../include/conversation.php:1187 ../../include/page_widgets.php:40
+msgid "Preview"
+msgstr "Anteprima"
-#: ../../Zotlabs/Module/Chat.php:255
-msgid "Expiration"
-msgstr "Scadenza"
+#: ../../Zotlabs/Module/Events.php:471 ../../include/conversation.php:1232
+msgid "Permission settings"
+msgstr "Permessi dei tuoi contatti"
-#: ../../Zotlabs/Module/Chat.php:256
-msgid "min"
-msgstr "min"
+#: ../../Zotlabs/Module/Events.php:476
+msgid "Advanced Options"
+msgstr "Opzioni avanzate"
+
+#: ../../Zotlabs/Module/Events.php:610
+msgid "Edit event"
+msgstr "Modifica l'evento"
+
+#: ../../Zotlabs/Module/Events.php:612
+msgid "Delete event"
+msgstr "Elimina l'evento"
+
+#: ../../Zotlabs/Module/Events.php:646
+msgid "calendar"
+msgstr "calendario"
+
+#: ../../Zotlabs/Module/Events.php:706
+msgid "Event removed"
+msgstr "Evento eliminato"
+
+#: ../../Zotlabs/Module/Events.php:709
+msgid "Failed to remove event"
+msgstr "Impossibile eliminare l'evento"
+
+#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:220
+#: ../../include/nav.php:92 ../../include/conversation.php:1632
+msgid "Photos"
+msgstr "Foto"
-#: ../../Zotlabs/Module/Dreport.php:44
+#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88
+#: ../../Zotlabs/Module/Admin.php:1406 ../../Zotlabs/Module/Settings.php:591
+#: ../../Zotlabs/Module/Settings.php:617 ../../Zotlabs/Module/Tagrm.php:15
+#: ../../Zotlabs/Module/Tagrm.php:138 ../../include/conversation.php:1259
+msgid "Cancel"
+msgstr "Annulla"
+
+#: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49
+msgid "This site is not a directory server"
+msgstr "Questo non è un directory server"
+
+#: ../../Zotlabs/Module/Dirsearch.php:33
+msgid "This directory server requires an access token"
+msgstr "Questo directory server necessita di un token di autenticazione"
+
+#: ../../Zotlabs/Module/Filer.php:52
+msgid "Save to Folder:"
+msgstr "Salva nella cartella:"
+
+#: ../../Zotlabs/Module/Filer.php:52
+msgid "- select -"
+msgstr "- scegli -"
+
+#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033
+#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32
+#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:946
+#: ../../include/text.php:958 ../../include/widgets.php:201
+msgid "Save"
+msgstr "Salva"
+
+#: ../../Zotlabs/Module/Dreport.php:27
msgid "Invalid message"
msgstr "Messaggio non valido"
-#: ../../Zotlabs/Module/Dreport.php:76
+#: ../../Zotlabs/Module/Dreport.php:59
msgid "no results"
msgstr "nessun risultato"
-#: ../../Zotlabs/Module/Dreport.php:91
+#: ../../Zotlabs/Module/Dreport.php:64
+#, php-format
+msgid "Delivery report for %1$s"
+msgstr "Rapporto di consegna - %1$s"
+
+#: ../../Zotlabs/Module/Dreport.php:78
msgid "channel sync processed"
msgstr "sincronizzazione del canale effettuata"
-#: ../../Zotlabs/Module/Dreport.php:95
+#: ../../Zotlabs/Module/Dreport.php:82
msgid "queued"
msgstr "in coda"
-#: ../../Zotlabs/Module/Dreport.php:99
+#: ../../Zotlabs/Module/Dreport.php:86
msgid "posted"
msgstr "inviato"
-#: ../../Zotlabs/Module/Dreport.php:103
+#: ../../Zotlabs/Module/Dreport.php:90
msgid "accepted for delivery"
msgstr "accettato per la spedizione"
-#: ../../Zotlabs/Module/Dreport.php:107
+#: ../../Zotlabs/Module/Dreport.php:94
msgid "updated"
msgstr "aggiornato"
-#: ../../Zotlabs/Module/Dreport.php:110
+#: ../../Zotlabs/Module/Dreport.php:97
msgid "update ignored"
msgstr "aggiornamento ignorato"
-#: ../../Zotlabs/Module/Dreport.php:113
+#: ../../Zotlabs/Module/Dreport.php:100
msgid "permission denied"
msgstr "permessi non sufficienti"
-#: ../../Zotlabs/Module/Dreport.php:117
+#: ../../Zotlabs/Module/Dreport.php:104
msgid "recipient not found"
msgstr "Destinatario non trovato"
-#: ../../Zotlabs/Module/Dreport.php:120
+#: ../../Zotlabs/Module/Dreport.php:107
msgid "mail recalled"
msgstr "messaggio richiamato dal mittente"
-#: ../../Zotlabs/Module/Dreport.php:123
+#: ../../Zotlabs/Module/Dreport.php:110
msgid "duplicate mail received"
msgstr "ricevuto messaggio duplicato"
-#: ../../Zotlabs/Module/Dreport.php:126
+#: ../../Zotlabs/Module/Dreport.php:113
msgid "mail delivered"
msgstr "messaggio recapitato"
-#: ../../Zotlabs/Module/Dreport.php:146
-#, php-format
-msgid "Delivery report for %1$s"
-msgstr "Rapporto di consegna - %1$s"
-
-#: ../../Zotlabs/Module/Dreport.php:149
-msgid "Options"
-msgstr "Opzioni"
-
-#: ../../Zotlabs/Module/Dreport.php:150
-msgid "Redeliver"
-msgstr "Reinvia"
-
-#: ../../Zotlabs/Module/Editlayout.php:127
-#: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188
+#: ../../Zotlabs/Module/Editlayout.php:126
+#: ../../Zotlabs/Module/Layouts.php:127 ../../Zotlabs/Module/Layouts.php:186
msgid "Layout Name"
msgstr "Nome layout"
-#: ../../Zotlabs/Module/Editlayout.php:128
-#: ../../Zotlabs/Module/Layouts.php:131
+#: ../../Zotlabs/Module/Editlayout.php:127
+#: ../../Zotlabs/Module/Layouts.php:130
msgid "Layout Description (Optional)"
msgstr "Descrizione del layout (facoltativa)"
-#: ../../Zotlabs/Module/Editlayout.php:136
+#: ../../Zotlabs/Module/Editlayout.php:135
msgid "Edit Layout"
msgstr "Modifica il layout"
-#: ../../Zotlabs/Module/Editwebpage.php:142
+#: ../../Zotlabs/Module/Editwebpage.php:143
msgid "Page link"
msgstr "Link alla pagina"
-#: ../../Zotlabs/Module/Editwebpage.php:168
+#: ../../Zotlabs/Module/Editwebpage.php:169
msgid "Edit Webpage"
msgstr "Modifica la pagina web"
+#: ../../Zotlabs/Module/Follow.php:34
+msgid "Channel added."
+msgstr "Canale aggiunto."
+
+#: ../../Zotlabs/Module/Acl.php:227
+msgid "network"
+msgstr "rete"
+
+#: ../../Zotlabs/Module/Acl.php:237
+msgid "RSS"
+msgstr "RSS"
+
#: ../../Zotlabs/Module/Group.php:24
msgid "Privacy group created."
msgstr "Gruppo di canali creato."
@@ -1806,7 +1582,7 @@ msgid "Could not create privacy group."
msgstr "Impossibile creare il gruppo di canali."
#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141
-#: ../../include/items.php:3902
+#: ../../include/items.php:3893
msgid "Privacy group not found."
msgstr "Gruppo di canali non trovato."
@@ -1850,57 +1626,31 @@ msgstr "Tutti i canali connessi"
msgid "Click on a channel to add or remove."
msgstr "Clicca su un canale per aggiungerlo o rimuoverlo."
-#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53
-msgid "App installed."
-msgstr "App installata"
-
-#: ../../Zotlabs/Module/Appman.php:46
-msgid "Malformed app."
-msgstr "L'app contiene errori"
-
-#: ../../Zotlabs/Module/Appman.php:104
-msgid "Embed code"
-msgstr "Inserisci il codice"
-
-#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107
-msgid "Edit App"
-msgstr "Modifica app"
-
-#: ../../Zotlabs/Module/Appman.php:110
-msgid "Create App"
-msgstr "Crea una app"
-
-#: ../../Zotlabs/Module/Appman.php:115
-msgid "Name of app"
-msgstr "Nome app"
-
-#: ../../Zotlabs/Module/Appman.php:116
-msgid "Location (URL) of app"
-msgstr "Indirizzo (URL) della app"
-
-#: ../../Zotlabs/Module/Appman.php:118
-msgid "Photo icon URL"
-msgstr "URL icona"
+#: ../../Zotlabs/Module/Ffsapi.php:12
+msgid "Share content from Firefox to $Projectname"
+msgstr "Condividi i contenuti su $Projectname da Firefox"
-#: ../../Zotlabs/Module/Appman.php:118
-msgid "80 x 80 pixels - optional"
-msgstr "80 x 80 pixel - facoltativa"
+#: ../../Zotlabs/Module/Ffsapi.php:15
+msgid "Activate the Firefox $Projectname provider"
+msgstr "Attiva Firefox Share per $Projectname"
-#: ../../Zotlabs/Module/Appman.php:119
-msgid "Categories (optional, comma separated list)"
-msgstr "Categorie (facoltative, lista separata da virgole)"
+#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85
+msgid "Authorize application connection"
+msgstr "Autorizza la app"
-#: ../../Zotlabs/Module/Appman.php:120
-msgid "Version ID"
-msgstr "ID versione"
+#: ../../Zotlabs/Module/Api.php:62
+msgid "Return to your app and insert this Securty Code:"
+msgstr "Torna alla app e inserisci questo codice di sicurezza:"
-#: ../../Zotlabs/Module/Appman.php:121
-msgid "Price of app"
-msgstr "Prezzo app"
+#: ../../Zotlabs/Module/Api.php:72
+msgid "Please login to continue."
+msgstr "Accedi al sito per continuare."
-#: ../../Zotlabs/Module/Appman.php:122
-msgid "Location (URL) to purchase app"
-msgstr "Indirizzo (URL) per acquistare la app"
+#: ../../Zotlabs/Module/Api.php:87
+msgid ""
+"Do you want to authorize this application to access your posts and contacts,"
+" and/or create new posts for you?"
+msgstr "Vuoi autorizzare questa app ad accedere ai messaggi e ai contatti o creare nuovi messaggi per te?"
#: ../../Zotlabs/Module/Help.php:26
msgid "Documentation Search"
@@ -1912,8 +1662,8 @@ msgid "Help:"
msgstr "Guida:"
#: ../../Zotlabs/Module/Help.php:85 ../../Zotlabs/Module/Help.php:90
-#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Lib/Apps.php:225
-#: ../../include/nav.php:161
+#: ../../Zotlabs/Module/Layouts.php:183 ../../Zotlabs/Lib/Apps.php:223
+#: ../../include/nav.php:159
msgid "Help"
msgstr "Guida"
@@ -1921,565 +1671,133 @@ msgstr "Guida"
msgid "$Projectname Documentation"
msgstr "Guida di $Projectname"
-#: ../../Zotlabs/Module/Attach.php:13
-msgid "Item not available."
-msgstr "Elemento non disponibile."
-
-#: ../../Zotlabs/Module/Pdledit.php:18
-msgid "Layout updated."
-msgstr "Layout aggiornato."
-
-#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61
-msgid "Edit System Page Description"
-msgstr "Modifica i layout di sistema"
-
-#: ../../Zotlabs/Module/Pdledit.php:56
-msgid "Layout not found."
-msgstr "Layout non trovato."
-
-#: ../../Zotlabs/Module/Pdledit.php:62
-msgid "Module Name:"
-msgstr "Nome del modulo:"
-
-#: ../../Zotlabs/Module/Pdledit.php:63
-msgid "Layout Help"
-msgstr "Guida al layout"
-
-#: ../../Zotlabs/Module/Ffsapi.php:12
-msgid "Share content from Firefox to $Projectname"
-msgstr "Condividi i contenuti su $Projectname da Firefox"
-
-#: ../../Zotlabs/Module/Ffsapi.php:15
-msgid "Activate the Firefox $Projectname provider"
-msgstr "Attiva Firefox Share per $Projectname"
-
-#: ../../Zotlabs/Module/Acl.php:312
-msgid "network"
-msgstr "rete"
-
-#: ../../Zotlabs/Module/Acl.php:322
-msgid "RSS"
-msgstr "RSS"
-
-#: ../../Zotlabs/Module/Filestorage.php:87
+#: ../../Zotlabs/Module/Filestorage.php:88
msgid "Permission Denied."
msgstr "Permesso negato."
-#: ../../Zotlabs/Module/Filestorage.php:103
+#: ../../Zotlabs/Module/Filestorage.php:104
msgid "File not found."
msgstr "File non trovato."
-#: ../../Zotlabs/Module/Filestorage.php:146
+#: ../../Zotlabs/Module/Filestorage.php:147
msgid "Edit file permissions"
msgstr "Modifica i permessi del file"
-#: ../../Zotlabs/Module/Filestorage.php:155
+#: ../../Zotlabs/Module/Filestorage.php:156
msgid "Set/edit permissions"
msgstr "Modifica i permessi"
-#: ../../Zotlabs/Module/Filestorage.php:156
+#: ../../Zotlabs/Module/Filestorage.php:157
msgid "Include all files and sub folders"
msgstr "Includi tutti i file e le sottocartelle"
-#: ../../Zotlabs/Module/Filestorage.php:157
+#: ../../Zotlabs/Module/Filestorage.php:158
msgid "Return to file list"
msgstr "Torna all'elenco dei file"
-#: ../../Zotlabs/Module/Filestorage.php:159
+#: ../../Zotlabs/Module/Filestorage.php:160
msgid "Copy/paste this code to attach file to a post"
msgstr "Copia/incolla questo codice per far comparire il file in un post"
-#: ../../Zotlabs/Module/Filestorage.php:160
+#: ../../Zotlabs/Module/Filestorage.php:161
msgid "Copy/paste this URL to link file from a web page"
msgstr "Copia/incolla questo indirizzo in una pagina web per avere un link al file"
-#: ../../Zotlabs/Module/Filestorage.php:162
+#: ../../Zotlabs/Module/Filestorage.php:163
msgid "Share this file"
msgstr "Condividi questo file"
-#: ../../Zotlabs/Module/Filestorage.php:163
+#: ../../Zotlabs/Module/Filestorage.php:164
msgid "Show URL to this file"
msgstr "Mostra l'URL del file"
-#: ../../Zotlabs/Module/Filestorage.php:164
+#: ../../Zotlabs/Module/Filestorage.php:165
msgid "Notify your contacts about this file"
msgstr "Notifica ai contatti che hai caricato questo file"
-#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2240
-msgid "Layouts"
-msgstr "Layout"
-
-#: ../../Zotlabs/Module/Layouts.php:185
-msgid "Comanche page description language help"
-msgstr "Guida di Comanche Page Description Language"
-
-#: ../../Zotlabs/Module/Layouts.php:189
-msgid "Layout Description"
-msgstr "Descrizione del layout"
-
-#: ../../Zotlabs/Module/Layouts.php:190 ../../Zotlabs/Module/Menu.php:114
-#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Webpages.php:205
-#: ../../include/page_widgets.php:47
-msgid "Created"
-msgstr "Creato"
-
-#: ../../Zotlabs/Module/Layouts.php:191 ../../Zotlabs/Module/Menu.php:115
-#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Webpages.php:206
-#: ../../include/page_widgets.php:48
-msgid "Edited"
-msgstr "Modificato"
-
-#: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Module/Photos.php:1070
-#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Webpages.php:195
-#: ../../include/conversation.php:1219
-msgid "Share"
-msgstr "Condividi"
-
-#: ../../Zotlabs/Module/Layouts.php:194
-msgid "Download PDL file"
-msgstr "Scarica il file PDL"
-
-#: ../../Zotlabs/Module/Like.php:19
-msgid "Like/Dislike"
-msgstr "Mi piace/Non mi piace"
-
-#: ../../Zotlabs/Module/Like.php:24
-msgid "This action is restricted to members."
-msgstr "Questa funzionalità è riservata agli iscritti."
-
-#: ../../Zotlabs/Module/Like.php:25
-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 "Per continuare devi <a href=\"rmagic\">accedere con il tuo identificativo $Projectname</a> o <a href=\"register\">registrarti come nuovo utente $Projectname</a>."
-
-#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131
-#: ../../Zotlabs/Module/Like.php:169
-msgid "Invalid request."
-msgstr "Richiesta non valida."
-
-#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126
-msgid "channel"
-msgstr "il canale"
-
-#: ../../Zotlabs/Module/Like.php:146
-msgid "thing"
-msgstr "Oggetto"
-
-#: ../../Zotlabs/Module/Like.php:192
-msgid "Channel unavailable."
-msgstr "Canale non trovato."
-
-#: ../../Zotlabs/Module/Like.php:240
-msgid "Previous action reversed."
-msgstr "Il comando precedente è stato annullato."
-
-#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87
-#: ../../Zotlabs/Module/Tagger.php:47 ../../include/conversation.php:120
-#: ../../include/text.php:1921
-msgid "photo"
-msgstr "la foto"
-
-#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87
-#: ../../include/conversation.php:148 ../../include/text.php:1927
-msgid "status"
-msgstr "il messaggio di stato"
-
-#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:164
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "A %1$s piace %3$s di %2$s"
-
-#: ../../Zotlabs/Module/Like.php:421 ../../include/conversation.php:167
-#, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
-msgstr "A %1$s non piace %3$s di %2$s"
-
-#: ../../Zotlabs/Module/Like.php:423
-#, php-format
-msgid "%1$s agrees with %2$s's %3$s"
-msgstr "%3$s di %2$s: %1$s è d'accordo"
-
-#: ../../Zotlabs/Module/Like.php:425
-#, php-format
-msgid "%1$s doesn't agree with %2$s's %3$s"
-msgstr "%3$s di %2$s: %1$s non è d'accordo"
-
-#: ../../Zotlabs/Module/Like.php:427
-#, php-format
-msgid "%1$s abstains from a decision on %2$s's %3$s"
-msgstr "%3$s di %2$s: %1$s non si esprime"
-
-#: ../../Zotlabs/Module/Like.php:429
-#, php-format
-msgid "%1$s is attending %2$s's %3$s"
-msgstr "%3$s di %2$s: %1$s partecipa"
-
-#: ../../Zotlabs/Module/Like.php:431
-#, php-format
-msgid "%1$s is not attending %2$s's %3$s"
-msgstr "%3$s di %2$s: %1$s non partecipa"
-
-#: ../../Zotlabs/Module/Like.php:433
-#, php-format
-msgid "%1$s may attend %2$s's %3$s"
-msgstr "%3$s di %2$s: %1$s forse partecipa"
-
-#: ../../Zotlabs/Module/Like.php:536
-msgid "Action completed."
-msgstr "Comando completato."
-
-#: ../../Zotlabs/Module/Like.php:537
-msgid "Thank you."
-msgstr "Grazie."
-
-#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189
-#: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625
-msgid "Profile not found."
-msgstr "Profilo non trovato."
-
-#: ../../Zotlabs/Module/Profiles.php:44
-msgid "Profile deleted."
-msgstr "Profilo eliminato."
-
-#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104
-msgid "Profile-"
-msgstr "Profilo-"
-
-#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132
-msgid "New profile created."
-msgstr "Il nuovo profilo è stato creato."
-
-#: ../../Zotlabs/Module/Profiles.php:110
-msgid "Profile unavailable to clone."
-msgstr "Impossibile duplicare il profilo."
-
-#: ../../Zotlabs/Module/Profiles.php:151
-msgid "Profile unavailable to export."
-msgstr "Il profilo non è disponibile per l'export."
-
-#: ../../Zotlabs/Module/Profiles.php:256
-msgid "Profile Name is required."
-msgstr "Il nome del profilo è obbligatorio."
-
-#: ../../Zotlabs/Module/Profiles.php:427
-msgid "Marital Status"
-msgstr "Stato sentimentale"
-
-#: ../../Zotlabs/Module/Profiles.php:431
-msgid "Romantic Partner"
-msgstr "Partner affettivo"
-
-#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736
-msgid "Likes"
-msgstr "Mi piace"
-
-#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737
-msgid "Dislikes"
-msgstr "Non mi piace"
-
-#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744
-msgid "Work/Employment"
-msgstr "Lavoro/impiego"
-
-#: ../../Zotlabs/Module/Profiles.php:446
-msgid "Religion"
-msgstr "Religione"
-
-#: ../../Zotlabs/Module/Profiles.php:450
-msgid "Political Views"
-msgstr "Orientamento politico"
-
-#: ../../Zotlabs/Module/Profiles.php:458
-msgid "Sexual Preference"
-msgstr "Preferenze sessuali"
-
-#: ../../Zotlabs/Module/Profiles.php:462
-msgid "Homepage"
-msgstr "Home page"
-
-#: ../../Zotlabs/Module/Profiles.php:466
-msgid "Interests"
-msgstr "Interessi"
-
-#: ../../Zotlabs/Module/Profiles.php:470 ../../Zotlabs/Module/Locs.php:118
-#: ../../Zotlabs/Module/Admin.php:1224
-msgid "Address"
-msgstr "Indirizzo"
-
-#: ../../Zotlabs/Module/Profiles.php:560
-msgid "Profile updated."
-msgstr "Profilo aggiornato."
-
-#: ../../Zotlabs/Module/Profiles.php:644
-msgid "Hide your connections list from viewers of this profile"
-msgstr "Nascondi la tua lista di contatti ai visitatori di questo profilo"
-
-#: ../../Zotlabs/Module/Profiles.php:686
-msgid "Edit Profile Details"
-msgstr "Modifica i dettagli del profilo"
-
-#: ../../Zotlabs/Module/Profiles.php:688
-msgid "View this profile"
-msgstr "Guarda questo profilo"
-
-#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771
-#: ../../include/channel.php:998
-msgid "Edit visibility"
-msgstr "Cambia la visibilità"
-
-#: ../../Zotlabs/Module/Profiles.php:690
-msgid "Profile Tools"
-msgstr "Gestione del profilo"
-
-#: ../../Zotlabs/Module/Profiles.php:691
-msgid "Change cover photo"
-msgstr "Cambia la copertina del canale"
-
-#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:969
-msgid "Change profile photo"
-msgstr "Cambia la foto del profilo"
-
-#: ../../Zotlabs/Module/Profiles.php:693
-msgid "Create a new profile using these settings"
-msgstr "Crea un nuovo profilo usando queste impostazioni"
-
-#: ../../Zotlabs/Module/Profiles.php:694
-msgid "Clone this profile"
-msgstr "Clona questo profilo"
-
-#: ../../Zotlabs/Module/Profiles.php:695
-msgid "Delete this profile"
-msgstr "Elimina questo profilo"
-
-#: ../../Zotlabs/Module/Profiles.php:696
-msgid "Add profile things"
-msgstr "Aggiungi oggetti al profilo"
-
-#: ../../Zotlabs/Module/Profiles.php:697 ../../include/conversation.php:1541
-#: ../../include/widgets.php:105
-msgid "Personal"
-msgstr "Personali"
-
-#: ../../Zotlabs/Module/Profiles.php:699
-msgid "Relation"
-msgstr "Relazione"
-
-#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48
-msgid "Miscellaneous"
-msgstr "Altro"
-
-#: ../../Zotlabs/Module/Profiles.php:702
-msgid "Import profile from file"
-msgstr "Importa il profilo da un file"
-
-#: ../../Zotlabs/Module/Profiles.php:703
-msgid "Export profile to file"
-msgstr "Esporta il profilo in un file"
-
-#: ../../Zotlabs/Module/Profiles.php:704
-msgid "Your gender"
-msgstr "Sesso"
-
-#: ../../Zotlabs/Module/Profiles.php:705
-msgid "Marital status"
-msgstr "Stato civile"
-
-#: ../../Zotlabs/Module/Profiles.php:706
-msgid "Sexual preference"
-msgstr "Preferenze sessuali"
-
-#: ../../Zotlabs/Module/Profiles.php:709
-msgid "Profile name"
-msgstr "Nome del profilo"
-
-#: ../../Zotlabs/Module/Profiles.php:711
-msgid "This is your default profile."
-msgstr "Questo è il tuo profilo predefinito."
-
-#: ../../Zotlabs/Module/Profiles.php:713
-msgid "Your full name"
-msgstr "Il tuo nome completo"
-
-#: ../../Zotlabs/Module/Profiles.php:714
-msgid "Title/Description"
-msgstr "Titolo/descrizione"
-
-#: ../../Zotlabs/Module/Profiles.php:717
-msgid "Street address"
-msgstr "Indirizzo (via/piazza)"
-
-#: ../../Zotlabs/Module/Profiles.php:718
-msgid "Locality/City"
-msgstr "Località"
-
-#: ../../Zotlabs/Module/Profiles.php:719
-msgid "Region/State"
-msgstr "Regione/stato"
-
-#: ../../Zotlabs/Module/Profiles.php:720
-msgid "Postal/Zip code"
-msgstr "CAP"
-
-#: ../../Zotlabs/Module/Profiles.php:721
-msgid "Country"
-msgstr "Nazione"
-
-#: ../../Zotlabs/Module/Profiles.php:726
-msgid "Who (if applicable)"
-msgstr "Con chi (se possibile)"
-
-#: ../../Zotlabs/Module/Profiles.php:726
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
-msgstr "Per esempio: cathy123, Cathy Williams, cathy@example.com"
-
-#: ../../Zotlabs/Module/Profiles.php:727
-msgid "Since (date)"
-msgstr "dal (data)"
-
-#: ../../Zotlabs/Module/Profiles.php:730
-msgid "Tell us about yourself"
-msgstr "Raccontaci di te..."
-
-#: ../../Zotlabs/Module/Profiles.php:732
-msgid "Hometown"
-msgstr "Città dove vivo"
-
-#: ../../Zotlabs/Module/Profiles.php:733
-msgid "Political views"
-msgstr "Orientamento politico"
-
-#: ../../Zotlabs/Module/Profiles.php:734
-msgid "Religious views"
-msgstr "Orientamento religioso"
-
-#: ../../Zotlabs/Module/Profiles.php:735
-msgid "Keywords used in directory listings"
-msgstr "Parole chiavi mostrate nell'elenco dei canali"
-
-#: ../../Zotlabs/Module/Profiles.php:735
-msgid "Example: fishing photography software"
-msgstr "Per esempio: pesca fotografia programmazione"
-
-#: ../../Zotlabs/Module/Profiles.php:738
-msgid "Musical interests"
-msgstr "Interessi musicali"
-
-#: ../../Zotlabs/Module/Profiles.php:739
-msgid "Books, literature"
-msgstr "Libri, letteratura"
-
-#: ../../Zotlabs/Module/Profiles.php:740
-msgid "Television"
-msgstr "Televisione"
-
-#: ../../Zotlabs/Module/Profiles.php:741
-msgid "Film/Dance/Culture/Entertainment"
-msgstr "Film, danza, cultura, intrattenimento"
-
-#: ../../Zotlabs/Module/Profiles.php:742
-msgid "Hobbies/Interests"
-msgstr "Hobby/interessi"
-
-#: ../../Zotlabs/Module/Profiles.php:743
-msgid "Love/Romance"
-msgstr "Amore"
-
-#: ../../Zotlabs/Module/Profiles.php:745
-msgid "School/Education"
-msgstr "Scuola/educazione"
-
-#: ../../Zotlabs/Module/Profiles.php:746
-msgid "Contact information and social networks"
-msgstr "Contatti e social network"
-
-#: ../../Zotlabs/Module/Profiles.php:747
-msgid "My other channels"
-msgstr "I miei altri canali"
-
-#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:994
-msgid "Profile Image"
-msgstr "Immagine del profilo"
+#: ../../Zotlabs/Module/Apps.php:47 ../../include/widgets.php:102
+#: ../../include/nav.php:163
+msgid "Apps"
+msgstr "App"
-#: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:88
-#: ../../include/channel.php:976
-msgid "Edit Profiles"
-msgstr "Modifica i tuoi profili"
+#: ../../Zotlabs/Module/Attach.php:13
+msgid "Item not available."
+msgstr "Elemento non disponibile."
-#: ../../Zotlabs/Module/Import.php:33
+#: ../../Zotlabs/Module/Import.php:32
#, php-format
msgid "Your service plan only allows %d channels."
msgstr "Il tuo account permette di creare al massimo %d canali."
-#: ../../Zotlabs/Module/Import.php:71 ../../Zotlabs/Module/Import_items.php:42
+#: ../../Zotlabs/Module/Import.php:70 ../../Zotlabs/Module/Import_items.php:42
msgid "Nothing to import."
msgstr "Non c'è niente da importare."
-#: ../../Zotlabs/Module/Import.php:95 ../../Zotlabs/Module/Import_items.php:66
+#: ../../Zotlabs/Module/Import.php:94 ../../Zotlabs/Module/Import_items.php:66
msgid "Unable to download data from old server"
msgstr "Impossibile importare i dati dal vecchio hub"
-#: ../../Zotlabs/Module/Import.php:101
+#: ../../Zotlabs/Module/Import.php:100
#: ../../Zotlabs/Module/Import_items.php:72
msgid "Imported file is empty."
msgstr "Il file da importare è vuoto."
-#: ../../Zotlabs/Module/Import.php:123
-#: ../../Zotlabs/Module/Import_items.php:88
+#: ../../Zotlabs/Module/Import.php:122
+#: ../../Zotlabs/Module/Import_items.php:86
#, php-format
msgid "Warning: Database versions differ by %1$d updates."
msgstr "Attenzione: le versioni di database differiscono di %1$d aggiornamenti."
-#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107
+#: ../../Zotlabs/Module/Import.php:150 ../../include/import.php:86
msgid "Cloned channel not found. Import failed."
msgstr "Impossibile trovare il canale clonato. L'importazione è fallita."
-#: ../../Zotlabs/Module/Import.php:163
+#: ../../Zotlabs/Module/Import.php:160
msgid "No channel. Import failed."
msgstr "Nessun canale. Import fallito."
-#: ../../Zotlabs/Module/Import.php:520
+#: ../../Zotlabs/Module/Import.php:510
#: ../../include/Import/import_diaspora.php:142
msgid "Import completed."
msgstr "L'importazione è terminata con successo."
-#: ../../Zotlabs/Module/Import.php:542
+#: ../../Zotlabs/Module/Import.php:532
msgid "You must be logged in to use this feature."
msgstr "Per questa funzionalità devi aver effettuato l'accesso."
-#: ../../Zotlabs/Module/Import.php:547
+#: ../../Zotlabs/Module/Import.php:537
msgid "Import Channel"
msgstr "Importa un canale"
-#: ../../Zotlabs/Module/Import.php:548
+#: ../../Zotlabs/Module/Import.php:538
msgid ""
"Use this form to import an existing channel from a different server/hub. You"
" may retrieve the channel identity from the old server/hub via the network "
"or provide an export file."
msgstr "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."
-#: ../../Zotlabs/Module/Import.php:549
-#: ../../Zotlabs/Module/Import_items.php:121
+#: ../../Zotlabs/Module/Import.php:539
+#: ../../Zotlabs/Module/Import_items.php:119
msgid "File to Upload"
msgstr "File da caricare"
-#: ../../Zotlabs/Module/Import.php:550
+#: ../../Zotlabs/Module/Import.php:540
msgid "Or provide the old server/hub details"
msgstr "Oppure fornisci i dettagli del vecchio hub"
-#: ../../Zotlabs/Module/Import.php:551
+#: ../../Zotlabs/Module/Import.php:541
msgid "Your old identity address (xyz@example.com)"
msgstr "Il tuo vecchio identificativo (per esempio pippo@esempio.com)"
-#: ../../Zotlabs/Module/Import.php:552
+#: ../../Zotlabs/Module/Import.php:542
msgid "Your old login email address"
msgstr "L'email che usavi per accedere sul vecchio hub"
-#: ../../Zotlabs/Module/Import.php:553
+#: ../../Zotlabs/Module/Import.php:543
msgid "Your old login password"
msgstr "La password per il vecchio hub"
-#: ../../Zotlabs/Module/Import.php:554
+#: ../../Zotlabs/Module/Import.php:544
msgid ""
"For either option, please choose whether to make this hub your new primary "
"address, or whether your old location should continue this role. You will be"
@@ -2487,369 +1805,304 @@ 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."
-#: ../../Zotlabs/Module/Import.php:555
+#: ../../Zotlabs/Module/Import.php:545
msgid "Make this hub my primary location"
msgstr "Rendi questo hub il mio indirizzo primario"
-#: ../../Zotlabs/Module/Import.php:556
+#: ../../Zotlabs/Module/Import.php:546
msgid ""
"Import existing posts if possible (experimental - limited by available "
"memory"
msgstr "Importa i contenuti pubblicati, se possibile (sperimentale)"
-#: ../../Zotlabs/Module/Import.php:557
+#: ../../Zotlabs/Module/Import.php:547
msgid ""
"This process may take several minutes to complete. Please submit the form "
"only once and leave this page open until finished."
msgstr "Questa funzione potrebbe impiegare molto tempo a terminare. Per favore lanciala *una volta sola* e resta su questa pagina finché non avrà finito."
-#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82
-#: ../../Zotlabs/Module/Siteinfo.php:48
-msgid "$Projectname"
-msgstr "$Projectname"
-
-#: ../../Zotlabs/Module/Home.php:92
-#, php-format
-msgid "Welcome to %s"
-msgstr "%s ti dà il benvenuto"
-
-#: ../../Zotlabs/Module/Item.php:179
+#: ../../Zotlabs/Module/Item.php:178
msgid "Unable to locate original post."
msgstr "Impossibile trovare il messaggio originale."
-#: ../../Zotlabs/Module/Item.php:432
+#: ../../Zotlabs/Module/Item.php:427
msgid "Empty post discarded."
msgstr "Il post vuoto è stato ignorato."
-#: ../../Zotlabs/Module/Item.php:472
+#: ../../Zotlabs/Module/Item.php:467
msgid "Executable content type not permitted to this channel."
msgstr "I contenuti eseguibili non sono permessi su questo canale."
-#: ../../Zotlabs/Module/Item.php:856
+#: ../../Zotlabs/Module/Item.php:847
msgid "Duplicate post suppressed."
msgstr "I post duplicati sono scartati."
-#: ../../Zotlabs/Module/Item.php:989
+#: ../../Zotlabs/Module/Item.php:977
msgid "System error. Post not saved."
msgstr "Errore di sistema. Post non salvato."
-#: ../../Zotlabs/Module/Item.php:1242
+#: ../../Zotlabs/Module/Item.php:1241
msgid "Unable to obtain post information from database."
msgstr "Impossibile caricare il post dal database."
-#: ../../Zotlabs/Module/Item.php:1249
+#: ../../Zotlabs/Module/Item.php:1248
#, 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."
-#: ../../Zotlabs/Module/Item.php:1256
+#: ../../Zotlabs/Module/Item.php:1255
#, php-format
msgid "You have reached your limit of %1$.0f webpages."
msgstr "Hai raggiunto il limite massimo di %1$.0f pagine web."
-#: ../../Zotlabs/Module/Photos.php:82
-msgid "Page owner information could not be retrieved."
-msgstr "Impossibile ottenere informazioni sul proprietario della pagina."
-
-#: ../../Zotlabs/Module/Photos.php:97 ../../Zotlabs/Module/Photos.php:741
-#: ../../Zotlabs/Module/Profile_photo.php:115
-#: ../../Zotlabs/Module/Profile_photo.php:212
-#: ../../Zotlabs/Module/Profile_photo.php:311
-#: ../../include/photo/photo_driver.php:718
-msgid "Profile Photos"
-msgstr "Foto del profilo"
-
-#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:147
-msgid "Album not found."
-msgstr "Album non trovato."
-
-#: ../../Zotlabs/Module/Photos.php:130
-msgid "Delete Album"
-msgstr "Elimina album"
-
-#: ../../Zotlabs/Module/Photos.php:151
-msgid ""
-"Multiple storage folders exist with this album name, but within different "
-"directories. Please remove the desired folder or folders using the Files "
-"manager"
-msgstr "Esistono più archivi con il nome di quest'album, ma dentro cartelle diverse. Per favore effettua la rimozione dall'Archivio file "
+#: ../../Zotlabs/Module/Layouts.php:181 ../../include/text.php:2267
+msgid "Layouts"
+msgstr "Layout"
-#: ../../Zotlabs/Module/Photos.php:208 ../../Zotlabs/Module/Photos.php:1051
-msgid "Delete Photo"
-msgstr "Elimina foto"
+#: ../../Zotlabs/Module/Layouts.php:183
+msgid "Comanche page description language help"
+msgstr "Guida di Comanche Page Description Language"
-#: ../../Zotlabs/Module/Photos.php:531
-msgid "No photos selected"
-msgstr "Nessuna foto selezionata"
+#: ../../Zotlabs/Module/Layouts.php:187
+msgid "Layout Description"
+msgstr "Descrizione del layout"
-#: ../../Zotlabs/Module/Photos.php:580
-msgid "Access to this item is restricted."
-msgstr "Questo elemento non è visibile a tutti."
+#: ../../Zotlabs/Module/Layouts.php:192
+msgid "Download PDL file"
+msgstr "Scarica il file PDL"
-#: ../../Zotlabs/Module/Photos.php:619
-#, php-format
-msgid "%1$.2f MB of %2$.2f MB photo storage used."
-msgstr "Hai usato %1$.2f Mb dei %2$.2f Mb di spazio disponibile."
+#: ../../Zotlabs/Module/Home.php:61 ../../Zotlabs/Module/Home.php:69
+#: ../../Zotlabs/Module/Siteinfo.php:65
+msgid "$Projectname"
+msgstr "$Projectname"
-#: ../../Zotlabs/Module/Photos.php:622
+#: ../../Zotlabs/Module/Home.php:79
#, php-format
-msgid "%1$.2f MB photo storage used."
-msgstr "Hai usato %1$.2f Mb del tuo spazio disponibile."
-
-#: ../../Zotlabs/Module/Photos.php:658
-msgid "Upload Photos"
-msgstr "Carica foto"
-
-#: ../../Zotlabs/Module/Photos.php:662
-msgid "Enter an album name"
-msgstr "Scegli il nome dell'album"
-
-#: ../../Zotlabs/Module/Photos.php:663
-msgid "or select an existing album (doubleclick)"
-msgstr "o seleziona un album esistente (doppio click)"
-
-#: ../../Zotlabs/Module/Photos.php:664
-msgid "Create a status post for this upload"
-msgstr "Pubblica sulla bacheca"
-
-#: ../../Zotlabs/Module/Photos.php:665
-msgid "Caption (optional):"
-msgstr "Titolo (facoltativo):"
-
-#: ../../Zotlabs/Module/Photos.php:666
-msgid "Description (optional):"
-msgstr "Descrizione (facoltativa):"
+msgid "Welcome to %s"
+msgstr "%s ti dà il benvenuto"
-#: ../../Zotlabs/Module/Photos.php:693
-msgid "Album name could not be decoded"
-msgstr "Non è stato possibile leggere il nome dell'album"
+#: ../../Zotlabs/Module/Id.php:13
+msgid "First Name"
+msgstr "Nome"
-#: ../../Zotlabs/Module/Photos.php:741
-msgid "Contact Photos"
-msgstr "Foto dei contatti"
+#: ../../Zotlabs/Module/Id.php:14
+msgid "Last Name"
+msgstr "Cognome"
-#: ../../Zotlabs/Module/Photos.php:764
-msgid "Show Newest First"
-msgstr "Prima i più recenti"
+#: ../../Zotlabs/Module/Id.php:15
+msgid "Nickname"
+msgstr "Nick"
-#: ../../Zotlabs/Module/Photos.php:766
-msgid "Show Oldest First"
-msgstr "Prima i più vecchi"
+#: ../../Zotlabs/Module/Id.php:16
+msgid "Full Name"
+msgstr "Nome e cognome"
-#: ../../Zotlabs/Module/Photos.php:790 ../../Zotlabs/Module/Photos.php:1329
-#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1593
-msgid "View Photo"
-msgstr "Guarda la foto"
+#: ../../Zotlabs/Module/Id.php:17 ../../Zotlabs/Module/Id.php:18
+#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047
+#: ../../include/network.php:2151 ../../boot.php:1705
+msgid "Email"
+msgstr "Email"
-#: ../../Zotlabs/Module/Photos.php:821
-#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1610
-msgid "Edit Album"
-msgstr "Modifica album"
+#: ../../Zotlabs/Module/Id.php:19 ../../Zotlabs/Module/Id.php:20
+#: ../../Zotlabs/Module/Id.php:21 ../../Zotlabs/Lib/Apps.php:236
+msgid "Profile Photo"
+msgstr "Foto del profilo"
-#: ../../Zotlabs/Module/Photos.php:868
-msgid "Permission denied. Access to this item may be restricted."
-msgstr "Permesso negato. L'accesso a questo elemento può essere stato limitato."
+#: ../../Zotlabs/Module/Id.php:22
+msgid "Profile Photo 16px"
+msgstr "Foto del profilo 16px"
-#: ../../Zotlabs/Module/Photos.php:870
-msgid "Photo not available"
-msgstr "Foto non disponibile"
+#: ../../Zotlabs/Module/Id.php:23
+msgid "Profile Photo 32px"
+msgstr "Foto del profilo 32px"
-#: ../../Zotlabs/Module/Photos.php:928
-msgid "Use as profile photo"
-msgstr "Usa come foto del profilo"
+#: ../../Zotlabs/Module/Id.php:24
+msgid "Profile Photo 48px"
+msgstr "Foto del profilo 48px"
-#: ../../Zotlabs/Module/Photos.php:929
-msgid "Use as cover photo"
-msgstr "Usa come copertina del canale"
+#: ../../Zotlabs/Module/Id.php:25
+msgid "Profile Photo 64px"
+msgstr "Foto del profilo 64px"
-#: ../../Zotlabs/Module/Photos.php:936
-msgid "Private Photo"
-msgstr "Foto privata"
+#: ../../Zotlabs/Module/Id.php:26
+msgid "Profile Photo 80px"
+msgstr "Foto del profilo 80px"
-#: ../../Zotlabs/Module/Photos.php:951
-msgid "View Full Size"
-msgstr "Vedi nelle dimensioni originali"
+#: ../../Zotlabs/Module/Id.php:27
+msgid "Profile Photo 128px"
+msgstr "Foto del profilo 128px"
-#: ../../Zotlabs/Module/Photos.php:996 ../../Zotlabs/Module/Admin.php:1437
-#: ../../Zotlabs/Module/Tagrm.php:137
-msgid "Remove"
-msgstr "Rimuovi"
+#: ../../Zotlabs/Module/Id.php:28
+msgid "Timezone"
+msgstr "Fuso orario"
-#: ../../Zotlabs/Module/Photos.php:1030
-msgid "Edit photo"
-msgstr "Modifica la foto"
+#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:731
+msgid "Homepage URL"
+msgstr "Indirizzo home page"
-#: ../../Zotlabs/Module/Photos.php:1032
-msgid "Rotate CW (right)"
-msgstr "Ruota (senso orario)"
+#: ../../Zotlabs/Module/Id.php:30 ../../Zotlabs/Lib/Apps.php:234
+msgid "Language"
+msgstr "Lingua"
-#: ../../Zotlabs/Module/Photos.php:1033
-msgid "Rotate CCW (left)"
-msgstr "Ruota (senso antiorario)"
+#: ../../Zotlabs/Module/Id.php:31
+msgid "Birth Year"
+msgstr "Anno di nascita"
-#: ../../Zotlabs/Module/Photos.php:1036
-msgid "Enter a new album name"
-msgstr "Inserisci il nome del nuovo album"
+#: ../../Zotlabs/Module/Id.php:32
+msgid "Birth Month"
+msgstr "Mese di nascita"
-#: ../../Zotlabs/Module/Photos.php:1037
-msgid "or select an existing one (doubleclick)"
-msgstr "o seleziona uno esistente (doppio click)"
+#: ../../Zotlabs/Module/Id.php:33
+msgid "Birth Day"
+msgstr "Giorno di nascita"
-#: ../../Zotlabs/Module/Photos.php:1040
-msgid "Caption"
-msgstr "Didascalia"
+#: ../../Zotlabs/Module/Id.php:34
+msgid "Birthdate"
+msgstr "Data di nascita"
-#: ../../Zotlabs/Module/Photos.php:1042
-msgid "Add a Tag"
-msgstr "Aggiungi tag"
+#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:454
+msgid "Gender"
+msgstr "Sesso"
-#: ../../Zotlabs/Module/Photos.php:1046
-msgid "Example: @bob, @Barbara_Jensen, @jim@example.com"
-msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com"
+#: ../../Zotlabs/Module/Id.php:108 ../../include/selectors.php:49
+#: ../../include/selectors.php:66
+msgid "Male"
+msgstr "Maschio"
-#: ../../Zotlabs/Module/Photos.php:1049
-msgid "Flag as adult in album view"
-msgstr "Marca come 'per adulti'"
+#: ../../Zotlabs/Module/Id.php:110 ../../include/selectors.php:49
+#: ../../include/selectors.php:66
+msgid "Female"
+msgstr "Femmina"
-#: ../../Zotlabs/Module/Photos.php:1068 ../../Zotlabs/Lib/ThreadItem.php:261
-msgid "I like this (toggle)"
-msgstr "Attiva/disattiva Mi piace"
+#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192
+msgid "webpage"
+msgstr "pagina web"
-#: ../../Zotlabs/Module/Photos.php:1069 ../../Zotlabs/Lib/ThreadItem.php:262
-msgid "I don't like this (toggle)"
-msgstr "Attiva/disattiva Non mi piace"
+#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198
+msgid "block"
+msgstr "block"
-#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:397
-#: ../../include/conversation.php:743
-msgid "Please wait"
-msgstr "Attendere"
+#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195
+msgid "layout"
+msgstr "layout"
-#: ../../Zotlabs/Module/Photos.php:1087 ../../Zotlabs/Module/Photos.php:1205
-#: ../../Zotlabs/Lib/ThreadItem.php:707
-msgid "This is you"
-msgstr "Questo sei tu"
+#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201
+msgid "menu"
+msgstr "menu"
-#: ../../Zotlabs/Module/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207
-#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6
-msgid "Comment"
-msgstr "Commento"
+#: ../../Zotlabs/Module/Impel.php:196
+#, php-format
+msgid "%s element installed"
+msgstr "%s elemento installato"
-#: ../../Zotlabs/Module/Photos.php:1105 ../../include/conversation.php:577
-msgctxt "title"
-msgid "Likes"
-msgstr "Mi piace"
+#: ../../Zotlabs/Module/Impel.php:199
+#, php-format
+msgid "%s element installation failed"
+msgstr "Elementi con installazione fallita: %s"
-#: ../../Zotlabs/Module/Photos.php:1105 ../../include/conversation.php:577
-msgctxt "title"
-msgid "Dislikes"
-msgstr "Non mi piace"
+#: ../../Zotlabs/Module/Like.php:19
+msgid "Like/Dislike"
+msgstr "Mi piace/Non mi piace"
-#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578
-msgctxt "title"
-msgid "Agree"
-msgstr "D'accordo"
+#: ../../Zotlabs/Module/Like.php:24
+msgid "This action is restricted to members."
+msgstr "Questa funzionalità è riservata agli iscritti."
-#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578
-msgctxt "title"
-msgid "Disagree"
-msgstr "Non d'accordo"
+#: ../../Zotlabs/Module/Like.php:25
+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 "Per continuare devi <a href=\"rmagic\">accedere con il tuo identificativo $Projectname</a> o <a href=\"register\">registrarti come nuovo utente $Projectname</a>."
-#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578
-msgctxt "title"
-msgid "Abstain"
-msgstr "Astenuti"
+#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131
+#: ../../Zotlabs/Module/Like.php:169
+msgid "Invalid request."
+msgstr "Richiesta non valida."
-#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579
-msgctxt "title"
-msgid "Attending"
-msgstr "Partecipano"
+#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126
+msgid "channel"
+msgstr "il canale"
-#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579
-msgctxt "title"
-msgid "Not attending"
-msgstr "Non partecipano"
+#: ../../Zotlabs/Module/Like.php:146
+msgid "thing"
+msgstr "Oggetto"
-#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579
-msgctxt "title"
-msgid "Might attend"
-msgstr "Forse partecipano"
+#: ../../Zotlabs/Module/Like.php:192
+msgid "Channel unavailable."
+msgstr "Canale non trovato."
-#: ../../Zotlabs/Module/Photos.php:1124 ../../Zotlabs/Module/Photos.php:1136
-#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193
-#: ../../include/conversation.php:1738
-msgid "View all"
-msgstr "Vedi tutto"
+#: ../../Zotlabs/Module/Like.php:240
+msgid "Previous action reversed."
+msgstr "Il comando precedente è stato annullato."
-#: ../../Zotlabs/Module/Photos.php:1128 ../../Zotlabs/Lib/ThreadItem.php:185
-#: ../../include/taxonomy.php:403 ../../include/channel.php:1198
-#: ../../include/conversation.php:1762
-msgctxt "noun"
-msgid "Like"
-msgid_plural "Likes"
-msgstr[0] "Mi piace"
-msgstr[1] "Mi piace"
+#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87
+#: ../../Zotlabs/Module/Tagger.php:47 ../../include/text.php:1940
+#: ../../include/conversation.php:120
+msgid "photo"
+msgstr "la foto"
-#: ../../Zotlabs/Module/Photos.php:1133 ../../Zotlabs/Lib/ThreadItem.php:190
-#: ../../include/conversation.php:1765
-msgctxt "noun"
-msgid "Dislike"
-msgid_plural "Dislikes"
-msgstr[0] "Non mi piace"
-msgstr[1] "Non mi piace"
+#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87
+#: ../../include/text.php:1946 ../../include/conversation.php:148
+msgid "status"
+msgstr "il messaggio di stato"
-#: ../../Zotlabs/Module/Photos.php:1233
-msgid "Photo Tools"
-msgstr "Gestione foto"
+#: ../../Zotlabs/Module/Like.php:420 ../../include/conversation.php:164
+#, php-format
+msgid "%1$s likes %2$s's %3$s"
+msgstr "A %1$s piace %3$s di %2$s"
-#: ../../Zotlabs/Module/Photos.php:1242
-msgid "In This Photo:"
-msgstr "In questa foto:"
+#: ../../Zotlabs/Module/Like.php:422 ../../include/conversation.php:167
+#, php-format
+msgid "%1$s doesn't like %2$s's %3$s"
+msgstr "A %1$s non piace %3$s di %2$s"
-#: ../../Zotlabs/Module/Photos.php:1247
-msgid "Map"
-msgstr "Mappa"
+#: ../../Zotlabs/Module/Like.php:424
+#, php-format
+msgid "%1$s agrees with %2$s's %3$s"
+msgstr "%3$s di %2$s: %1$s è d'accordo"
-#: ../../Zotlabs/Module/Photos.php:1255 ../../Zotlabs/Lib/ThreadItem.php:386
-msgctxt "noun"
-msgid "Likes"
-msgstr "Mi piace"
+#: ../../Zotlabs/Module/Like.php:426
+#, php-format
+msgid "%1$s doesn't agree with %2$s's %3$s"
+msgstr "%3$s di %2$s: %1$s non è d'accordo"
-#: ../../Zotlabs/Module/Photos.php:1256 ../../Zotlabs/Lib/ThreadItem.php:387
-msgctxt "noun"
-msgid "Dislikes"
-msgstr "Non mi piace"
+#: ../../Zotlabs/Module/Like.php:428
+#, php-format
+msgid "%1$s abstains from a decision on %2$s's %3$s"
+msgstr "%3$s di %2$s: %1$s non si esprime"
-#: ../../Zotlabs/Module/Photos.php:1261 ../../Zotlabs/Lib/ThreadItem.php:392
-#: ../../include/acl_selectors.php:283
-msgid "Close"
-msgstr "Chiudi"
+#: ../../Zotlabs/Module/Like.php:430
+#, php-format
+msgid "%1$s is attending %2$s's %3$s"
+msgstr "%3$s di %2$s: %1$s partecipa"
-#: ../../Zotlabs/Module/Photos.php:1335
-msgid "View Album"
-msgstr "Guarda l'album"
+#: ../../Zotlabs/Module/Like.php:432
+#, php-format
+msgid "%1$s is not attending %2$s's %3$s"
+msgstr "%3$s di %2$s: %1$s non partecipa"
-#: ../../Zotlabs/Module/Photos.php:1346 ../../Zotlabs/Module/Photos.php:1359
-#: ../../Zotlabs/Module/Photos.php:1360
-msgid "Recent Photos"
-msgstr "Foto recenti"
+#: ../../Zotlabs/Module/Like.php:434
+#, php-format
+msgid "%1$s may attend %2$s's %3$s"
+msgstr "%3$s di %2$s: %1$s forse partecipa"
-#: ../../Zotlabs/Module/Lockview.php:75
-msgid "Remote privacy information not available."
-msgstr "Le informazioni remote sulla privacy non sono disponibili."
+#: ../../Zotlabs/Module/Like.php:537
+msgid "Action completed."
+msgstr "Comando completato."
-#: ../../Zotlabs/Module/Lockview.php:96
-msgid "Visible to:"
-msgstr "Visibile a:"
+#: ../../Zotlabs/Module/Like.php:538
+msgid "Thank you."
+msgstr "Grazie."
-#: ../../Zotlabs/Module/Import_items.php:104
+#: ../../Zotlabs/Module/Import_items.php:102
msgid "Import completed"
msgstr "Importazione completata"
-#: ../../Zotlabs/Module/Import_items.php:119
+#: ../../Zotlabs/Module/Import_items.php:117
msgid "Import Items"
msgstr "Importa i contenuti"
-#: ../../Zotlabs/Module/Import_items.php:120
+#: ../../Zotlabs/Module/Import_items.php:118
msgid ""
"Use this form to import existing posts and content from an export file."
msgstr "Usa questa funzionalità per importare i vecchi contenuti e i post da un file esportato in precedenza."
@@ -2895,7 +2148,7 @@ msgstr "Spedisci inviti"
msgid "Enter email addresses, one per line:"
msgstr "Inserisci gli indirizzi email, uno per riga:"
-#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:241
+#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:249
msgid "Your message:"
msgstr "Il tuo messaggio:"
@@ -2924,6 +2177,14 @@ msgstr "oppure visita"
msgid "3. Click [Connect]"
msgstr "3. Clicca su [Aggiungi]"
+#: ../../Zotlabs/Module/Lockview.php:61
+msgid "Remote privacy information not available."
+msgstr "Le informazioni remote sulla privacy non sono disponibili."
+
+#: ../../Zotlabs/Module/Lockview.php:82
+msgid "Visible to:"
+msgstr "Visibile a:"
+
#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54
msgid "Location not found."
msgstr "Indirizzo non trovato."
@@ -2950,6 +2211,11 @@ msgstr "Nessun indirizzo trovato."
msgid "Manage Channel Locations"
msgstr "Modifica gli indirizzi del canale"
+#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:470
+#: ../../Zotlabs/Module/Admin.php:1224
+msgid "Address"
+msgstr "Indirizzo"
+
#: ../../Zotlabs/Module/Locs.php:119
msgid "Primary"
msgstr "Primario"
@@ -2992,87 +2258,87 @@ msgstr "Impossibile comunicare con il canale richiesto."
msgid "Cannot verify requested channel."
msgstr "Impossibile verificare il canale richiesto."
-#: ../../Zotlabs/Module/Mail.php:70
+#: ../../Zotlabs/Module/Mail.php:78
msgid "Selected channel has private message restrictions. Send failed."
msgstr "Il canale ha delle regole restrittive per la ricezione dei messaggi privati. Invio fallito."
-#: ../../Zotlabs/Module/Mail.php:135
+#: ../../Zotlabs/Module/Mail.php:143
msgid "Messages"
msgstr "Messaggi"
-#: ../../Zotlabs/Module/Mail.php:170
+#: ../../Zotlabs/Module/Mail.php:178
msgid "Message recalled."
msgstr "Messaggio revocato."
-#: ../../Zotlabs/Module/Mail.php:183
+#: ../../Zotlabs/Module/Mail.php:191
msgid "Conversation removed."
msgstr "Conversazione rimossa."
-#: ../../Zotlabs/Module/Mail.php:198 ../../Zotlabs/Module/Mail.php:307
+#: ../../Zotlabs/Module/Mail.php:206 ../../Zotlabs/Module/Mail.php:315
msgid "Expires YYYY-MM-DD HH:MM"
msgstr "Scade il YYYY-MM-DD HH:MM"
-#: ../../Zotlabs/Module/Mail.php:226
+#: ../../Zotlabs/Module/Mail.php:234
msgid "Requested channel is not in this network"
msgstr "Il canale cercato non è in questa rete"
-#: ../../Zotlabs/Module/Mail.php:234
+#: ../../Zotlabs/Module/Mail.php:242
msgid "Send Private Message"
msgstr "Invia un messaggio privato"
-#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360
+#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368
msgid "To:"
msgstr "A:"
-#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362
+#: ../../Zotlabs/Module/Mail.php:246 ../../Zotlabs/Module/Mail.php:370
msgid "Subject:"
msgstr "Oggetto:"
-#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368
-#: ../../include/conversation.php:1231
+#: ../../Zotlabs/Module/Mail.php:251 ../../Zotlabs/Module/Mail.php:376
+#: ../../include/conversation.php:1220
msgid "Attach file"
msgstr "Allega file"
-#: ../../Zotlabs/Module/Mail.php:245
+#: ../../Zotlabs/Module/Mail.php:253
msgid "Send"
msgstr "Invia"
-#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373
-#: ../../include/conversation.php:1266
+#: ../../Zotlabs/Module/Mail.php:256 ../../Zotlabs/Module/Mail.php:381
+#: ../../include/conversation.php:1251
msgid "Set expiration date"
msgstr "Data di scadenza"
-#: ../../Zotlabs/Module/Mail.php:332
+#: ../../Zotlabs/Module/Mail.php:340
msgid "Delete message"
msgstr "Elimina il messaggio"
-#: ../../Zotlabs/Module/Mail.php:333
+#: ../../Zotlabs/Module/Mail.php:341
msgid "Delivery report"
msgstr "Rapporto di trasmissione"
-#: ../../Zotlabs/Module/Mail.php:334
+#: ../../Zotlabs/Module/Mail.php:342
msgid "Recall message"
msgstr "Revoca il messaggio"
-#: ../../Zotlabs/Module/Mail.php:336
+#: ../../Zotlabs/Module/Mail.php:344
msgid "Message has been recalled."
msgstr "Il messaggio è stato revocato."
-#: ../../Zotlabs/Module/Mail.php:353
+#: ../../Zotlabs/Module/Mail.php:361
msgid "Delete Conversation"
msgstr "Elimina la conversazione"
-#: ../../Zotlabs/Module/Mail.php:355
+#: ../../Zotlabs/Module/Mail.php:363
msgid ""
"No secure communications available. You <strong>may</strong> be able to "
"respond from the sender's profile page."
msgstr "Non è disponibile alcun modo sicuro di comunicare con questo canale. <strong>Se possibile</strong>, prova a rispondere direttamente dalla pagina del profilo del mittente."
-#: ../../Zotlabs/Module/Mail.php:359
+#: ../../Zotlabs/Module/Mail.php:367
msgid "Send Reply"
msgstr "Invia la risposta"
-#: ../../Zotlabs/Module/Mail.php:364
+#: ../../Zotlabs/Module/Mail.php:372
#, php-format
msgid "Your message for %s (%s):"
msgstr "Il tuo messaggio per %s (%s):"
@@ -3087,8 +2353,8 @@ msgstr "Hai creato %1$.0f dei %2$.0f canali permessi."
msgid "Create a new channel"
msgstr "Crea un nuovo canale"
-#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214
-#: ../../include/nav.php:208
+#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:213
+#: ../../include/nav.php:206
msgid "Channel Manager"
msgstr "Gestione canali"
@@ -3122,6 +2388,79 @@ msgstr "%d nuove richieste di entrare in contatto"
msgid "Delegated Channel"
msgstr "Canale delegato"
+#: ../../Zotlabs/Module/Lostpass.php:19
+msgid "No valid account found."
+msgstr "Nessun account valido trovato."
+
+#: ../../Zotlabs/Module/Lostpass.php:33
+msgid "Password reset request issued. Check your email."
+msgstr "La richiesta per reimpostare la password è stata inviata. Controlla la tua email."
+
+#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107
+#, php-format
+msgid "Site Member (%s)"
+msgstr "Utente del sito (%s)"
+
+#: ../../Zotlabs/Module/Lostpass.php:44
+#, php-format
+msgid "Password reset requested at %s"
+msgstr "È stato richiesto di reimpostare password su %s"
+
+#: ../../Zotlabs/Module/Lostpass.php:67
+msgid ""
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
+msgstr "La richiesta non può essere verificata (potresti averla già usata precedentemente). La password non sarà reimpostata."
+
+#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1711
+msgid "Password Reset"
+msgstr "Reimposta la password"
+
+#: ../../Zotlabs/Module/Lostpass.php:91
+msgid "Your password has been reset as requested."
+msgstr "La password è stata reimpostata come richiesto."
+
+#: ../../Zotlabs/Module/Lostpass.php:92
+msgid "Your new password is"
+msgstr "La tua nuova password è"
+
+#: ../../Zotlabs/Module/Lostpass.php:93
+msgid "Save or copy your new password - and then"
+msgstr "Salva o copia la tua nuova password, quindi"
+
+#: ../../Zotlabs/Module/Lostpass.php:94
+msgid "click here to login"
+msgstr "clicca qui per accedere"
+
+#: ../../Zotlabs/Module/Lostpass.php:95
+msgid ""
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
+msgstr "Puoi cambiare la tua password dalla pagina delle <em>Impostazioni</em> dopo aver effettuato l'accesso."
+
+#: ../../Zotlabs/Module/Lostpass.php:112
+#, php-format
+msgid "Your password has changed at %s"
+msgstr "La tua password su %s è cambiata"
+
+#: ../../Zotlabs/Module/Lostpass.php:127
+msgid "Forgot your Password?"
+msgstr "Hai dimenticato la password?"
+
+#: ../../Zotlabs/Module/Lostpass.php:128
+msgid ""
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
+msgstr "Inserisci il tuo indirizzo email per reimpostare la password. Dopo aver inviato la richiesta, controlla l'email e troverai le istruzioni per continuare."
+
+#: ../../Zotlabs/Module/Lostpass.php:129
+msgid "Email Address"
+msgstr "Indirizzo email"
+
+#: ../../Zotlabs/Module/Lostpass.php:130
+msgid "Reset"
+msgstr "Reimposta"
+
#: ../../Zotlabs/Module/Menu.php:49
msgid "Unable to update menu."
msgstr "Impossibile aggiornare il menù."
@@ -3158,7 +2497,7 @@ msgstr "Puoi salvare i segnalibri nei menù"
msgid "Submit and proceed"
msgstr "Salva e procedi"
-#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2239
+#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2266
msgid "Menus"
msgstr "Menù"
@@ -3219,86 +2558,13 @@ msgstr "Permetti l'invio di segnalibri"
msgid "Not found."
msgstr "Non trovato."
-#: ../../Zotlabs/Module/Lostpass.php:19
-msgid "No valid account found."
-msgstr "Nessun account valido trovato."
-
-#: ../../Zotlabs/Module/Lostpass.php:33
-msgid "Password reset request issued. Check your email."
-msgstr "La richiesta per reimpostare la password è stata inviata. Controlla la tua email."
-
-#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107
-#, php-format
-msgid "Site Member (%s)"
-msgstr "Utente del sito (%s)"
-
-#: ../../Zotlabs/Module/Lostpass.php:44
-#, php-format
-msgid "Password reset requested at %s"
-msgstr "È stato richiesto di reimpostare password su %s"
-
-#: ../../Zotlabs/Module/Lostpass.php:67
-msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
-msgstr "La richiesta non può essere verificata (potresti averla già usata precedentemente). La password non sarà reimpostata."
-
-#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1712
-msgid "Password Reset"
-msgstr "Reimposta la password"
-
-#: ../../Zotlabs/Module/Lostpass.php:91
-msgid "Your password has been reset as requested."
-msgstr "La password è stata reimpostata come richiesto."
-
-#: ../../Zotlabs/Module/Lostpass.php:92
-msgid "Your new password is"
-msgstr "La tua nuova password è"
-
-#: ../../Zotlabs/Module/Lostpass.php:93
-msgid "Save or copy your new password - and then"
-msgstr "Salva o copia la tua nuova password, quindi"
-
-#: ../../Zotlabs/Module/Lostpass.php:94
-msgid "click here to login"
-msgstr "clicca qui per accedere"
-
-#: ../../Zotlabs/Module/Lostpass.php:95
-msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
-msgstr "Puoi cambiare la tua password dalla pagina delle <em>Impostazioni</em> dopo aver effettuato l'accesso."
-
-#: ../../Zotlabs/Module/Lostpass.php:112
-#, php-format
-msgid "Your password has changed at %s"
-msgstr "La tua password su %s è cambiata"
-
-#: ../../Zotlabs/Module/Lostpass.php:127
-msgid "Forgot your Password?"
-msgstr "Hai dimenticato la password?"
-
-#: ../../Zotlabs/Module/Lostpass.php:128
-msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"your email for further instructions."
-msgstr "Inserisci il tuo indirizzo email per reimpostare la password. Dopo aver inviato la richiesta, controlla l'email e troverai le istruzioni per continuare."
-
-#: ../../Zotlabs/Module/Lostpass.php:129
-msgid "Email Address"
-msgstr "Indirizzo email"
-
-#: ../../Zotlabs/Module/Lostpass.php:130
-msgid "Reset"
-msgstr "Reimposta"
-
#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260
#, php-format
msgctxt "mood"
msgid "%1$s is %2$s"
msgstr "%1$s è %2$s"
-#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227
+#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:225
msgid "Mood"
msgstr "Umore"
@@ -3306,31 +2572,47 @@ msgstr "Umore"
msgid "Set your current mood and tell your friends"
msgstr "Scegli il tuo umore attuale per mostrarlo agli amici"
-#: ../../Zotlabs/Module/Network.php:94
+#: ../../Zotlabs/Module/Match.php:26
+msgid "Profile Match"
+msgstr "Profili corrispondenti"
+
+#: ../../Zotlabs/Module/Match.php:35
+msgid "No keywords to match. Please add keywords to your default profile."
+msgstr "Non hai scritto parole chiave. Aggiungi parole chiave al tuo profilo predefinito per comparire nelle ricerche."
+
+#: ../../Zotlabs/Module/Match.php:67
+msgid "is interested in:"
+msgstr "interessi personali:"
+
+#: ../../Zotlabs/Module/Match.php:74
+msgid "No matches"
+msgstr "Nessun risultato"
+
+#: ../../Zotlabs/Module/Network.php:96
msgid "No such group"
msgstr "Impossibile trovare il gruppo di canali"
-#: ../../Zotlabs/Module/Network.php:134
+#: ../../Zotlabs/Module/Network.php:136
msgid "No such channel"
msgstr "Canale sconosciuto"
-#: ../../Zotlabs/Module/Network.php:139
+#: ../../Zotlabs/Module/Network.php:141
msgid "forum"
msgstr "forum"
-#: ../../Zotlabs/Module/Network.php:151
+#: ../../Zotlabs/Module/Network.php:153
msgid "Search Results For:"
msgstr "Cerca risultati con:"
-#: ../../Zotlabs/Module/Network.php:215
+#: ../../Zotlabs/Module/Network.php:217
msgid "Privacy group is empty"
msgstr "Il gruppo di canali è vuoto"
-#: ../../Zotlabs/Module/Network.php:224
+#: ../../Zotlabs/Module/Network.php:226
msgid "Privacy group: "
msgstr "Gruppo di canali:"
-#: ../../Zotlabs/Module/Network.php:250
+#: ../../Zotlabs/Module/Network.php:252
msgid "Invalid connection."
msgstr "Contatto non valido."
@@ -3344,34 +2626,6 @@ msgstr "Non ci sono nuove notifiche di sistema."
msgid "System Notifications"
msgstr "Notifiche di sistema"
-#: ../../Zotlabs/Module/Match.php:26
-msgid "Profile Match"
-msgstr "Profili corrispondenti"
-
-#: ../../Zotlabs/Module/Match.php:35
-msgid "No keywords to match. Please add keywords to your default profile."
-msgstr "Non hai scritto parole chiave. Aggiungi parole chiave al tuo profilo predefinito per comparire nelle ricerche."
-
-#: ../../Zotlabs/Module/Match.php:67
-msgid "is interested in:"
-msgstr "interessi personali:"
-
-#: ../../Zotlabs/Module/Match.php:74
-msgid "No matches"
-msgstr "Nessun risultato"
-
-#: ../../Zotlabs/Module/Channel.php:40
-msgid "Posts and comments"
-msgstr "Post e commenti"
-
-#: ../../Zotlabs/Module/Channel.php:41
-msgid "Only posts"
-msgstr "Solo post"
-
-#: ../../Zotlabs/Module/Channel.php:101
-msgid "Insufficient permissions. Request redirected to profile page."
-msgstr "Permessi insufficienti. Sarà visualizzata la pagina del profilo."
-
#: ../../Zotlabs/Module/Mitem.php:52
msgid "Unable to create element."
msgstr "Impossibile creare l'elemento."
@@ -3389,7 +2643,7 @@ msgid "Menu Item Permissions"
msgstr "Permessi del menu"
#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227
-#: ../../Zotlabs/Module/Settings.php:1163
+#: ../../Zotlabs/Module/Settings.php:1068
msgid "(click to open/close)"
msgstr "(clicca per aprire/chiudere)"
@@ -3489,6 +2743,845 @@ msgstr "Modifica l'elemento del menù"
msgid "Link text"
msgstr "Testo del link"
+#: ../../Zotlabs/Module/New_channel.php:128
+#: ../../Zotlabs/Module/Register.php:231
+msgid "Name or caption"
+msgstr "Nome o titolo"
+
+#: ../../Zotlabs/Module/New_channel.php:128
+#: ../../Zotlabs/Module/Register.php:231
+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\""
+
+#: ../../Zotlabs/Module/New_channel.php:130
+#: ../../Zotlabs/Module/Register.php:233
+msgid "Choose a short nickname"
+msgstr "Scegli un nome breve"
+
+#: ../../Zotlabs/Module/New_channel.php:130
+#: ../../Zotlabs/Module/Register.php:233
+#, 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"
+
+#: ../../Zotlabs/Module/New_channel.php:132
+#: ../../Zotlabs/Module/Register.php:235
+msgid "Channel role and privacy"
+msgstr "Tipo di canale e privacy"
+
+#: ../../Zotlabs/Module/New_channel.php:132
+#: ../../Zotlabs/Module/Register.php:235
+msgid "Select a channel role with your privacy requirements."
+msgstr "Scegli il tipo di canale che vuoi e la privacy da applicare."
+
+#: ../../Zotlabs/Module/New_channel.php:132
+#: ../../Zotlabs/Module/Register.php:235
+msgid "Read more about roles"
+msgstr "Maggiori informazioni sui ruoli"
+
+#: ../../Zotlabs/Module/New_channel.php:135
+msgid "Create Channel"
+msgstr "Crea un canale"
+
+#: ../../Zotlabs/Module/New_channel.php:136
+msgid ""
+"A channel is your identity on this network. It can represent a person, a "
+"blog, or a forum to name a few. Channels can make connections with other "
+"channels to share information with highly detailed permissions."
+msgstr "Un canale è la tua identità su questa rete. Può rappresentare una persona, un blog o un forum, per esempio. Il tuo canale può essere in contatto con altri canali per condividere contenuti con permessi anche molto dettagliati."
+
+#: ../../Zotlabs/Module/New_channel.php:137
+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."
+
+#: ../../Zotlabs/Module/Notifications.php:30
+msgid "Invalid request identifier."
+msgstr "L'identificativo della richiesta non è valido."
+
+#: ../../Zotlabs/Module/Notifications.php:39
+msgid "Discard"
+msgstr "Rifiuta"
+
+#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:191
+msgid "Mark all system notifications seen"
+msgstr "Segna come lette le notifiche di sistema"
+
+#: ../../Zotlabs/Module/Photos.php:84
+msgid "Page owner information could not be retrieved."
+msgstr "Impossibile ottenere informazioni sul proprietario della pagina."
+
+#: ../../Zotlabs/Module/Photos.php:99 ../../Zotlabs/Module/Photos.php:743
+#: ../../Zotlabs/Module/Profile_photo.php:114
+#: ../../Zotlabs/Module/Profile_photo.php:206
+#: ../../Zotlabs/Module/Profile_photo.php:294
+#: ../../include/photo/photo_driver.php:718
+msgid "Profile Photos"
+msgstr "Foto del profilo"
+
+#: ../../Zotlabs/Module/Photos.php:105 ../../Zotlabs/Module/Photos.php:149
+msgid "Album not found."
+msgstr "Album non trovato."
+
+#: ../../Zotlabs/Module/Photos.php:132
+msgid "Delete Album"
+msgstr "Elimina album"
+
+#: ../../Zotlabs/Module/Photos.php:153
+msgid ""
+"Multiple storage folders exist with this album name, but within different "
+"directories. Please remove the desired folder or folders using the Files "
+"manager"
+msgstr "Esistono più archivi con il nome di quest'album, ma dentro cartelle diverse. Per favore rimuovili dall'Archivio file "
+
+#: ../../Zotlabs/Module/Photos.php:210 ../../Zotlabs/Module/Photos.php:1053
+msgid "Delete Photo"
+msgstr "Elimina foto"
+
+#: ../../Zotlabs/Module/Photos.php:533
+msgid "No photos selected"
+msgstr "Nessuna foto selezionata"
+
+#: ../../Zotlabs/Module/Photos.php:582
+msgid "Access to this item is restricted."
+msgstr "Questo elemento non è visibile a tutti."
+
+#: ../../Zotlabs/Module/Photos.php:621
+#, php-format
+msgid "%1$.2f MB of %2$.2f MB photo storage used."
+msgstr "Hai usato %1$.2f Mb dei %2$.2f Mb di spazio disponibile."
+
+#: ../../Zotlabs/Module/Photos.php:624
+#, php-format
+msgid "%1$.2f MB photo storage used."
+msgstr "Hai usato %1$.2f Mb del tuo spazio disponibile."
+
+#: ../../Zotlabs/Module/Photos.php:660
+msgid "Upload Photos"
+msgstr "Carica foto"
+
+#: ../../Zotlabs/Module/Photos.php:664
+msgid "Enter an album name"
+msgstr "Scegli il nome dell'album"
+
+#: ../../Zotlabs/Module/Photos.php:665
+msgid "or select an existing album (doubleclick)"
+msgstr "o seleziona un album esistente (doppio click)"
+
+#: ../../Zotlabs/Module/Photos.php:666
+msgid "Create a status post for this upload"
+msgstr "Pubblica sulla bacheca"
+
+#: ../../Zotlabs/Module/Photos.php:667
+msgid "Caption (optional):"
+msgstr "Titolo (facoltativo):"
+
+#: ../../Zotlabs/Module/Photos.php:668
+msgid "Description (optional):"
+msgstr "Descrizione (facoltativa):"
+
+#: ../../Zotlabs/Module/Photos.php:695
+msgid "Album name could not be decoded"
+msgstr "Non è stato possibile leggere il nome dell'album"
+
+#: ../../Zotlabs/Module/Photos.php:743
+msgid "Contact Photos"
+msgstr "Foto dei contatti"
+
+#: ../../Zotlabs/Module/Photos.php:766
+msgid "Show Newest First"
+msgstr "Prima i più recenti"
+
+#: ../../Zotlabs/Module/Photos.php:768
+msgid "Show Oldest First"
+msgstr "Prima i più vecchi"
+
+#: ../../Zotlabs/Module/Photos.php:792 ../../Zotlabs/Module/Photos.php:1331
+#: ../../include/widgets.php:1499
+msgid "View Photo"
+msgstr "Guarda la foto"
+
+#: ../../Zotlabs/Module/Photos.php:823 ../../include/widgets.php:1516
+msgid "Edit Album"
+msgstr "Modifica album"
+
+#: ../../Zotlabs/Module/Photos.php:870
+msgid "Permission denied. Access to this item may be restricted."
+msgstr "Permesso negato. L'accesso a questo elemento può essere stato limitato."
+
+#: ../../Zotlabs/Module/Photos.php:872
+msgid "Photo not available"
+msgstr "Foto non disponibile"
+
+#: ../../Zotlabs/Module/Photos.php:930
+msgid "Use as profile photo"
+msgstr "Usa come foto del profilo"
+
+#: ../../Zotlabs/Module/Photos.php:931
+msgid "Use as cover photo"
+msgstr "Usa come copertina del canale"
+
+#: ../../Zotlabs/Module/Photos.php:938
+msgid "Private Photo"
+msgstr "Foto privata"
+
+#: ../../Zotlabs/Module/Photos.php:953
+msgid "View Full Size"
+msgstr "Vedi nelle dimensioni originali"
+
+#: ../../Zotlabs/Module/Photos.php:998 ../../Zotlabs/Module/Admin.php:1437
+#: ../../Zotlabs/Module/Tagrm.php:137
+msgid "Remove"
+msgstr "Rimuovi"
+
+#: ../../Zotlabs/Module/Photos.php:1032
+msgid "Edit photo"
+msgstr "Modifica la foto"
+
+#: ../../Zotlabs/Module/Photos.php:1034
+msgid "Rotate CW (right)"
+msgstr "Ruota (senso orario)"
+
+#: ../../Zotlabs/Module/Photos.php:1035
+msgid "Rotate CCW (left)"
+msgstr "Ruota (senso antiorario)"
+
+#: ../../Zotlabs/Module/Photos.php:1038
+msgid "Enter a new album name"
+msgstr "Inserisci il nome del nuovo album"
+
+#: ../../Zotlabs/Module/Photos.php:1039
+msgid "or select an existing one (doubleclick)"
+msgstr "o seleziona uno esistente (doppio click)"
+
+#: ../../Zotlabs/Module/Photos.php:1042
+msgid "Caption"
+msgstr "Didascalia"
+
+#: ../../Zotlabs/Module/Photos.php:1044
+msgid "Add a Tag"
+msgstr "Aggiungi tag"
+
+#: ../../Zotlabs/Module/Photos.php:1048
+msgid "Example: @bob, @Barbara_Jensen, @jim@example.com"
+msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com"
+
+#: ../../Zotlabs/Module/Photos.php:1051
+msgid "Flag as adult in album view"
+msgstr "Marca come 'per adulti'"
+
+#: ../../Zotlabs/Module/Photos.php:1070 ../../Zotlabs/Lib/ThreadItem.php:261
+msgid "I like this (toggle)"
+msgstr "Attiva/disattiva Mi piace"
+
+#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:262
+msgid "I don't like this (toggle)"
+msgstr "Attiva/disattiva Non mi piace"
+
+#: ../../Zotlabs/Module/Photos.php:1073 ../../Zotlabs/Lib/ThreadItem.php:397
+#: ../../include/conversation.php:740
+msgid "Please wait"
+msgstr "Attendere"
+
+#: ../../Zotlabs/Module/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207
+#: ../../Zotlabs/Lib/ThreadItem.php:707
+msgid "This is you"
+msgstr "Questo sei tu"
+
+#: ../../Zotlabs/Module/Photos.php:1091 ../../Zotlabs/Module/Photos.php:1209
+#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6
+msgid "Comment"
+msgstr "Commento"
+
+#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574
+msgctxt "title"
+msgid "Likes"
+msgstr "Mi piace"
+
+#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574
+msgctxt "title"
+msgid "Dislikes"
+msgstr "Non mi piace"
+
+#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575
+msgctxt "title"
+msgid "Agree"
+msgstr "D'accordo"
+
+#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575
+msgctxt "title"
+msgid "Disagree"
+msgstr "Non d'accordo"
+
+#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575
+msgctxt "title"
+msgid "Abstain"
+msgstr "Astenuti"
+
+#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576
+msgctxt "title"
+msgid "Attending"
+msgstr "Partecipano"
+
+#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576
+msgctxt "title"
+msgid "Not attending"
+msgstr "Non partecipano"
+
+#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576
+msgctxt "title"
+msgid "Might attend"
+msgstr "Forse partecipano"
+
+#: ../../Zotlabs/Module/Photos.php:1126 ../../Zotlabs/Module/Photos.php:1138
+#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193
+#: ../../include/conversation.php:1717
+msgid "View all"
+msgstr "Vedi tutto"
+
+#: ../../Zotlabs/Module/Photos.php:1130 ../../Zotlabs/Lib/ThreadItem.php:185
+#: ../../include/taxonomy.php:403 ../../include/conversation.php:1741
+#: ../../include/channel.php:1158
+msgctxt "noun"
+msgid "Like"
+msgid_plural "Likes"
+msgstr[0] "Mi piace"
+msgstr[1] "Mi piace"
+
+#: ../../Zotlabs/Module/Photos.php:1135 ../../Zotlabs/Lib/ThreadItem.php:190
+#: ../../include/conversation.php:1744
+msgctxt "noun"
+msgid "Dislike"
+msgid_plural "Dislikes"
+msgstr[0] "Non mi piace"
+msgstr[1] "Non mi piace"
+
+#: ../../Zotlabs/Module/Photos.php:1235
+msgid "Photo Tools"
+msgstr "Gestione delle foto"
+
+#: ../../Zotlabs/Module/Photos.php:1244
+msgid "In This Photo:"
+msgstr "In questa foto:"
+
+#: ../../Zotlabs/Module/Photos.php:1249
+msgid "Map"
+msgstr "Mappa"
+
+#: ../../Zotlabs/Module/Photos.php:1257 ../../Zotlabs/Lib/ThreadItem.php:386
+msgctxt "noun"
+msgid "Likes"
+msgstr "Mi piace"
+
+#: ../../Zotlabs/Module/Photos.php:1258 ../../Zotlabs/Lib/ThreadItem.php:387
+msgctxt "noun"
+msgid "Dislikes"
+msgstr "Non mi piace"
+
+#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:392
+#: ../../include/acl_selectors.php:285
+msgid "Close"
+msgstr "Chiudi"
+
+#: ../../Zotlabs/Module/Photos.php:1337
+msgid "View Album"
+msgstr "Guarda l'album"
+
+#: ../../Zotlabs/Module/Photos.php:1348 ../../Zotlabs/Module/Photos.php:1361
+#: ../../Zotlabs/Module/Photos.php:1362
+msgid "Recent Photos"
+msgstr "Foto recenti"
+
+#: ../../Zotlabs/Module/Ping.php:265
+msgid "sent you a private message"
+msgstr "ti ha inviato un messaggio privato"
+
+#: ../../Zotlabs/Module/Ping.php:313
+msgid "added your channel"
+msgstr "ha aggiunto il tuo canale"
+
+#: ../../Zotlabs/Module/Ping.php:323
+msgid "g A l F d"
+msgstr "g A l d F"
+
+#: ../../Zotlabs/Module/Ping.php:346
+msgid "[today]"
+msgstr "[oggi]"
+
+#: ../../Zotlabs/Module/Ping.php:355
+msgid "posted an event"
+msgstr "ha creato un evento"
+
+#: ../../Zotlabs/Module/Oexchange.php:27
+msgid "Unable to find your hub."
+msgstr "Impossibile raggiungere il tuo hub."
+
+#: ../../Zotlabs/Module/Oexchange.php:41
+msgid "Post successful."
+msgstr "Inviato!"
+
+#: ../../Zotlabs/Module/Openid.php:30
+msgid "OpenID protocol error. No ID returned."
+msgstr "Errore del protocollo OpenID. Nessun ID ricevuto in risposta."
+
+#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:226
+msgid "Login failed."
+msgstr "Accesso fallito."
+
+#: ../../Zotlabs/Module/Page.php:133
+msgid ""
+"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod "
+"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,"
+" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo "
+"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse "
+"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat "
+"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
+msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
+
+#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59
+msgid "This setting requires special processing and editing has been blocked."
+msgstr "Questa impostazione è bloccata, richiede criteri di modifica speciali"
+
+#: ../../Zotlabs/Module/Pconfig.php:48
+msgid "Configuration Editor"
+msgstr "Editor di configurazione"
+
+#: ../../Zotlabs/Module/Pconfig.php:49
+msgid ""
+"Warning: Changing some settings could render your channel inoperable. Please"
+" leave this page unless you are comfortable with and knowledgeable about how"
+" to correctly use this feature."
+msgstr "Attenzione: alcune delle impostazioni, se cambiate, potrebbero rendere questo canale non funzionante. Lascia questa pagina a meno che tu non sappia con assoluta certezza quali modifiche effettuare."
+
+#: ../../Zotlabs/Module/Pdledit.php:18
+msgid "Layout updated."
+msgstr "Layout aggiornato."
+
+#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61
+msgid "Edit System Page Description"
+msgstr "Modifica i layout di sistema"
+
+#: ../../Zotlabs/Module/Pdledit.php:56
+msgid "Layout not found."
+msgstr "Layout non trovato."
+
+#: ../../Zotlabs/Module/Pdledit.php:62
+msgid "Module Name:"
+msgstr "Nome del modulo:"
+
+#: ../../Zotlabs/Module/Pdledit.php:63
+msgid "Layout Help"
+msgstr "Guida al layout"
+
+#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:226
+#: ../../include/conversation.php:960
+msgid "Poke"
+msgstr "Poke"
+
+#: ../../Zotlabs/Module/Poke.php:169
+msgid "Poke somebody"
+msgstr "Manda un poke"
+
+#: ../../Zotlabs/Module/Poke.php:172
+msgid "Poke/Prod"
+msgstr "Poke/Prod"
+
+#: ../../Zotlabs/Module/Poke.php:173
+msgid "Poke, prod or do other things to somebody"
+msgstr "Manda un poke o altro a qualcuno"
+
+#: ../../Zotlabs/Module/Poke.php:180
+msgid "Recipient"
+msgstr "Destinatario"
+
+#: ../../Zotlabs/Module/Poke.php:181
+msgid "Choose what you wish to do to recipient"
+msgstr "Scegli cosa vuoi inviare al destinatario"
+
+#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185
+msgid "Make this post private"
+msgstr "Rendi privato questo post"
+
+#: ../../Zotlabs/Module/Probe.php:30 ../../Zotlabs/Module/Probe.php:34
+#, php-format
+msgid "Fetching URL returns error: %1$s"
+msgstr "La chiamata all'URL restituisce questo errore: %1$s"
+
+#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189
+#: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625
+msgid "Profile not found."
+msgstr "Profilo non trovato."
+
+#: ../../Zotlabs/Module/Profiles.php:44
+msgid "Profile deleted."
+msgstr "Profilo eliminato."
+
+#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104
+msgid "Profile-"
+msgstr "Profilo-"
+
+#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132
+msgid "New profile created."
+msgstr "Il nuovo profilo è stato creato."
+
+#: ../../Zotlabs/Module/Profiles.php:110
+msgid "Profile unavailable to clone."
+msgstr "Impossibile duplicare il profilo."
+
+#: ../../Zotlabs/Module/Profiles.php:151
+msgid "Profile unavailable to export."
+msgstr "Il profilo non è disponibile per l'export."
+
+#: ../../Zotlabs/Module/Profiles.php:256
+msgid "Profile Name is required."
+msgstr "Il nome del profilo è obbligatorio."
+
+#: ../../Zotlabs/Module/Profiles.php:427
+msgid "Marital Status"
+msgstr "Stato sentimentale"
+
+#: ../../Zotlabs/Module/Profiles.php:431
+msgid "Romantic Partner"
+msgstr "Partner affettivo"
+
+#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736
+msgid "Likes"
+msgstr "Mi piace"
+
+#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737
+msgid "Dislikes"
+msgstr "Non mi piace"
+
+#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744
+msgid "Work/Employment"
+msgstr "Lavoro/impiego"
+
+#: ../../Zotlabs/Module/Profiles.php:446
+msgid "Religion"
+msgstr "Religione"
+
+#: ../../Zotlabs/Module/Profiles.php:450
+msgid "Political Views"
+msgstr "Orientamento politico"
+
+#: ../../Zotlabs/Module/Profiles.php:458
+msgid "Sexual Preference"
+msgstr "Preferenze sessuali"
+
+#: ../../Zotlabs/Module/Profiles.php:462
+msgid "Homepage"
+msgstr "Home page"
+
+#: ../../Zotlabs/Module/Profiles.php:466
+msgid "Interests"
+msgstr "Interessi"
+
+#: ../../Zotlabs/Module/Profiles.php:560
+msgid "Profile updated."
+msgstr "Profilo aggiornato."
+
+#: ../../Zotlabs/Module/Profiles.php:644
+msgid "Hide your connections list from viewers of this profile"
+msgstr "Nascondi la tua lista di contatti ai visitatori di questo profilo"
+
+#: ../../Zotlabs/Module/Profiles.php:686
+msgid "Edit Profile Details"
+msgstr "Modifica i dettagli del profilo"
+
+#: ../../Zotlabs/Module/Profiles.php:688
+msgid "View this profile"
+msgstr "Guarda questo profilo"
+
+#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771
+#: ../../include/channel.php:959
+msgid "Edit visibility"
+msgstr "Cambia la visibilità"
+
+#: ../../Zotlabs/Module/Profiles.php:690
+msgid "Profile Tools"
+msgstr "Gestione del profilo"
+
+#: ../../Zotlabs/Module/Profiles.php:691
+msgid "Change cover photo"
+msgstr "Cambia la copertina del canale"
+
+#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:930
+msgid "Change profile photo"
+msgstr "Cambia la foto del profilo"
+
+#: ../../Zotlabs/Module/Profiles.php:693
+msgid "Create a new profile using these settings"
+msgstr "Crea un nuovo profilo usando queste impostazioni"
+
+#: ../../Zotlabs/Module/Profiles.php:694
+msgid "Clone this profile"
+msgstr "Clona questo profilo"
+
+#: ../../Zotlabs/Module/Profiles.php:695
+msgid "Delete this profile"
+msgstr "Elimina questo profilo"
+
+#: ../../Zotlabs/Module/Profiles.php:696
+msgid "Add profile things"
+msgstr "Aggiungi oggetti al profilo"
+
+#: ../../Zotlabs/Module/Profiles.php:697 ../../include/widgets.php:105
+#: ../../include/conversation.php:1526
+msgid "Personal"
+msgstr "Personali"
+
+#: ../../Zotlabs/Module/Profiles.php:699
+msgid "Relation"
+msgstr "Relazione"
+
+#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48
+msgid "Miscellaneous"
+msgstr "Altro"
+
+#: ../../Zotlabs/Module/Profiles.php:702
+msgid "Import profile from file"
+msgstr "Importa il profilo da un file"
+
+#: ../../Zotlabs/Module/Profiles.php:703
+msgid "Export profile to file"
+msgstr "Esporta il profilo in un file"
+
+#: ../../Zotlabs/Module/Profiles.php:704
+msgid "Your gender"
+msgstr "Sesso"
+
+#: ../../Zotlabs/Module/Profiles.php:705
+msgid "Marital status"
+msgstr "Stato civile"
+
+#: ../../Zotlabs/Module/Profiles.php:706
+msgid "Sexual preference"
+msgstr "Preferenze sessuali"
+
+#: ../../Zotlabs/Module/Profiles.php:709
+msgid "Profile name"
+msgstr "Nome del profilo"
+
+#: ../../Zotlabs/Module/Profiles.php:711
+msgid "This is your default profile."
+msgstr "Questo è il tuo profilo predefinito."
+
+#: ../../Zotlabs/Module/Profiles.php:713
+msgid "Your full name"
+msgstr "Il tuo nome completo"
+
+#: ../../Zotlabs/Module/Profiles.php:714
+msgid "Title/Description"
+msgstr "Titolo/descrizione"
+
+#: ../../Zotlabs/Module/Profiles.php:717
+msgid "Street address"
+msgstr "Indirizzo (via/piazza)"
+
+#: ../../Zotlabs/Module/Profiles.php:718
+msgid "Locality/City"
+msgstr "Località"
+
+#: ../../Zotlabs/Module/Profiles.php:719
+msgid "Region/State"
+msgstr "Regione/stato"
+
+#: ../../Zotlabs/Module/Profiles.php:720
+msgid "Postal/Zip code"
+msgstr "CAP"
+
+#: ../../Zotlabs/Module/Profiles.php:721
+msgid "Country"
+msgstr "Nazione"
+
+#: ../../Zotlabs/Module/Profiles.php:726
+msgid "Who (if applicable)"
+msgstr "Con chi (se possibile)"
+
+#: ../../Zotlabs/Module/Profiles.php:726
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+msgstr "Per esempio: cathy123, Cathy Williams, cathy@example.com"
+
+#: ../../Zotlabs/Module/Profiles.php:727
+msgid "Since (date)"
+msgstr "dal (data)"
+
+#: ../../Zotlabs/Module/Profiles.php:730
+msgid "Tell us about yourself"
+msgstr "Raccontaci di te..."
+
+#: ../../Zotlabs/Module/Profiles.php:732
+msgid "Hometown"
+msgstr "Città dove vivo"
+
+#: ../../Zotlabs/Module/Profiles.php:733
+msgid "Political views"
+msgstr "Orientamento politico"
+
+#: ../../Zotlabs/Module/Profiles.php:734
+msgid "Religious views"
+msgstr "Orientamento religioso"
+
+#: ../../Zotlabs/Module/Profiles.php:735
+msgid "Keywords used in directory listings"
+msgstr "Parole chiavi mostrate nell'elenco dei canali"
+
+#: ../../Zotlabs/Module/Profiles.php:735
+msgid "Example: fishing photography software"
+msgstr "Per esempio: pesca fotografia programmazione"
+
+#: ../../Zotlabs/Module/Profiles.php:738
+msgid "Musical interests"
+msgstr "Interessi musicali"
+
+#: ../../Zotlabs/Module/Profiles.php:739
+msgid "Books, literature"
+msgstr "Libri, letteratura"
+
+#: ../../Zotlabs/Module/Profiles.php:740
+msgid "Television"
+msgstr "Televisione"
+
+#: ../../Zotlabs/Module/Profiles.php:741
+msgid "Film/Dance/Culture/Entertainment"
+msgstr "Film, danza, cultura, intrattenimento"
+
+#: ../../Zotlabs/Module/Profiles.php:742
+msgid "Hobbies/Interests"
+msgstr "Hobby/interessi"
+
+#: ../../Zotlabs/Module/Profiles.php:743
+msgid "Love/Romance"
+msgstr "Amore"
+
+#: ../../Zotlabs/Module/Profiles.php:745
+msgid "School/Education"
+msgstr "Scuola/educazione"
+
+#: ../../Zotlabs/Module/Profiles.php:746
+msgid "Contact information and social networks"
+msgstr "Contatti e social network"
+
+#: ../../Zotlabs/Module/Profiles.php:747
+msgid "My other channels"
+msgstr "I miei altri canali"
+
+#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:955
+msgid "Profile Image"
+msgstr "Immagine del profilo"
+
+#: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:88
+#: ../../include/channel.php:937
+msgid "Edit Profiles"
+msgstr "Modifica i tuoi profili"
+
+#: ../../Zotlabs/Module/Profile_photo.php:179
+msgid ""
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
+msgstr "Forza l'aggiornamento della pagina o cancella la cache del browser se la nuova foto non viene visualizzata immediatamente."
+
+#: ../../Zotlabs/Module/Profile_photo.php:367
+msgid "Upload Profile Photo"
+msgstr "Carica la foto del profilo"
+
+#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63
+msgid "Invalid profile identifier."
+msgstr "Indentificativo del profilo non valido."
+
+#: ../../Zotlabs/Module/Profperm.php:115
+msgid "Profile Visibility Editor"
+msgstr "Modifica la visibilità del profilo"
+
+#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1249
+msgid "Profile"
+msgstr "Profilo"
+
+#: ../../Zotlabs/Module/Profperm.php:119
+msgid "Click on a contact to add or remove."
+msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo."
+
+#: ../../Zotlabs/Module/Profperm.php:128
+msgid "Visible To"
+msgstr "Visibile a"
+
+#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1270
+msgid "Public Hubs"
+msgstr "Hub pubblici"
+
+#: ../../Zotlabs/Module/Pubsites.php:25
+msgid ""
+"The listed hubs allow public registration for the $Projectname network. All "
+"hubs in the network are interlinked so membership on any of them conveys "
+"membership in the network as a whole. Some hubs may require subscription or "
+"provide tiered service plans. The hub itself <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."
+
+#: ../../Zotlabs/Module/Pubsites.php:31
+msgid "Hub URL"
+msgstr "URL del hub"
+
+#: ../../Zotlabs/Module/Pubsites.php:31
+msgid "Access Type"
+msgstr "Tipo di accesso"
+
+#: ../../Zotlabs/Module/Pubsites.php:31
+msgid "Registration Policy"
+msgstr "Politica di registrazione"
+
+#: ../../Zotlabs/Module/Pubsites.php:31
+msgid "Stats"
+msgstr ""
+
+#: ../../Zotlabs/Module/Pubsites.php:31
+msgid "Software"
+msgstr "Software"
+
+#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103
+#: ../../include/conversation.php:959
+msgid "Ratings"
+msgstr "Valutazioni"
+
+#: ../../Zotlabs/Module/Pubsites.php:38
+msgid "Rate"
+msgstr "Valuta"
+
+#: ../../Zotlabs/Module/Rate.php:160
+msgid "Website:"
+msgstr "Sito web:"
+
+#: ../../Zotlabs/Module/Rate.php:163
+#, php-format
+msgid "Remote Channel [%s] (not yet known on this site)"
+msgstr "Canale remoto [%s] (non ancora conosciuto da questo sito)"
+
+#: ../../Zotlabs/Module/Rate.php:164
+msgid "Rating (this information is public)"
+msgstr "Valutazione (visibile a tutti)"
+
+#: ../../Zotlabs/Module/Rate.php:165
+msgid "Optionally explain your rating (this information is public)"
+msgstr "Commento alla valutazione (facoltativo, visibile a tutti)"
+
+#: ../../Zotlabs/Module/Ratings.php:73
+msgid "No ratings"
+msgstr "Nessuna valutazione"
+
+#: ../../Zotlabs/Module/Ratings.php:104
+msgid "Rating: "
+msgstr "Valutazione:"
+
+#: ../../Zotlabs/Module/Ratings.php:105
+msgid "Website: "
+msgstr "Sito web:"
+
+#: ../../Zotlabs/Module/Ratings.php:107
+msgid "Description: "
+msgstr "Descrizione:"
+
#: ../../Zotlabs/Module/Admin.php:77
msgid "Theme settings updated."
msgstr "Le impostazioni del tema sono state aggiornate."
@@ -3527,7 +3620,7 @@ msgstr "Coda messaggi in uscita"
#: ../../Zotlabs/Module/Admin.php:236
msgid "Your software should be updated"
-msgstr "Il tuo software necessita di un aggiornamento"
+msgstr "Il tuo software ha bisogno di essere aggiornato"
#: ../../Zotlabs/Module/Admin.php:241 ../../Zotlabs/Module/Admin.php:490
#: ../../Zotlabs/Module/Admin.php:711 ../../Zotlabs/Module/Admin.php:755
@@ -3574,11 +3667,11 @@ msgstr "Versione del repository (dev)"
msgid "Site settings updated."
msgstr "Impostazioni del sito salvate correttamente."
-#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2829
+#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2841
msgid "Default"
msgstr "Predefinito"
-#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:899
+#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:798
msgid "mobile"
msgstr "mobile"
@@ -3610,7 +3703,7 @@ msgstr "È un servizio gratuito"
msgid "My site offers free accounts with optional paid upgrades"
msgstr "È un servizio gratuito con opzioni aggiuntive a pagamento"
-#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1476
+#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1382
msgid "Site"
msgstr "Sito"
@@ -3822,7 +3915,7 @@ msgstr "Abilita la guida contestuale"
msgid ""
"Display contextual help for the current page when the help button is "
"pressed."
-msgstr "Quando è premuto, il bottone della guida mostra quella relativa alla pagina corrente"
+msgstr "Quando è premuto il bottone della guida mostra quella della pagina corrente"
#: ../../Zotlabs/Module/Admin.php:525
msgid "Directory Server URL"
@@ -3898,12 +3991,12 @@ msgid "0 for no expiration of imported content"
msgstr "0 per non avere scadenza"
#: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678
-#: ../../Zotlabs/Module/Settings.php:823
+#: ../../Zotlabs/Module/Settings.php:722
msgid "Off"
msgstr "Off"
#: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678
-#: ../../Zotlabs/Module/Settings.php:823
+#: ../../Zotlabs/Module/Settings.php:722
msgid "On"
msgstr "On"
@@ -3940,13 +4033,13 @@ msgstr "Server"
msgid ""
"By default, unfiltered HTML is allowed in embedded media. This is inherently"
" insecure."
-msgstr "Il codice HTML degli oggetti multimediali incorporati nei post è consentito. Questo tipo di impostazione è insicura."
+msgstr ""
#: ../../Zotlabs/Module/Admin.php:749
msgid ""
"The recommended setting is to only allow unfiltered HTML from the following "
"sites:"
-msgstr "L'impostazione consigliata è di permettere HTML non filtrato solo dai seguenti siti:"
+msgstr "L'impostazione consigliata è di permettere HTML non filtrato solo dai siti seguenti:"
#: ../../Zotlabs/Module/Admin.php:750
msgid ""
@@ -3958,9 +4051,9 @@ msgstr "https://youtube.com/<br />https://www.youtube.com/<br />https://youtu.be
msgid ""
"All other embedded content will be filtered, <strong>unless</strong> "
"embedded content from that site is explicitly blocked."
-msgstr "Tutti gli altri contenuti incorporati saranno filtrati <strong>a meno che</strong> il contenuto incorporato di quel sito non sia esplicitamente bloccato."
+msgstr "Tutti gli altri contenuti incorporati saranno filtrati <strong>a meno che</strong> il contenuto incorporato di quel sito non venga esplicitamente bloccato."
-#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1479
+#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1385
msgid "Security"
msgstr "Sicurezza"
@@ -3976,11 +4069,11 @@ msgstr "Seleziona per impedire di vedere le pagine personali di questo sito a ch
#: ../../Zotlabs/Module/Admin.php:759
msgid "Set \"Transport Security\" HTTP header"
-msgstr "Imposta il \"Transport Security\" HTTP header"
+msgstr ""
#: ../../Zotlabs/Module/Admin.php:760
msgid "Set \"Content Security Policy\" HTTP header"
-msgstr "Imposta il \"Content Security Policy\" HTTP header"
+msgstr ""
#: ../../Zotlabs/Module/Admin.php:761
msgid "Allow communications only from these sites"
@@ -4012,15 +4105,15 @@ msgstr "Blocca la comunicazione da questi canali"
#: ../../Zotlabs/Module/Admin.php:765
msgid "Only allow embeds from secure (SSL) websites and links."
-msgstr "Permetti di incorporare contenuti solamente da siti sicuri (SSL)."
+msgstr ""
#: ../../Zotlabs/Module/Admin.php:766
msgid "Allow unfiltered embedded HTML content only from these domains"
-msgstr "Incorpora i contenuti HTML non filtrati solo da questi domini"
+msgstr ""
#: ../../Zotlabs/Module/Admin.php:766
msgid "One site per line. By default embedded content is filtered."
-msgstr "Un sito per riga. Normalmente i contenuti incorporati sono filtrati."
+msgstr ""
#: ../../Zotlabs/Module/Admin.php:767
msgid "Block embedded HTML from these domains"
@@ -4128,7 +4221,7 @@ msgid "Account '%s' unblocked"
msgstr "Rimosso il blocco verso '%s'"
#: ../../Zotlabs/Module/Admin.php:1031 ../../Zotlabs/Module/Admin.php:1044
-#: ../../include/widgets.php:1477
+#: ../../include/widgets.php:1383
msgid "Accounts"
msgstr "Account"
@@ -4138,7 +4231,7 @@ msgstr "seleziona tutti"
#: ../../Zotlabs/Module/Admin.php:1034
msgid "Registrations waiting for confirm"
-msgstr "Registrazioni in attesa di conferma"
+msgstr ""
#: ../../Zotlabs/Module/Admin.php:1035
msgid "Request date"
@@ -4234,7 +4327,7 @@ msgstr "Il canale '%s' permette codice nei contenuti"
msgid "Channel '%s' code disallowed"
msgstr "Il canale '%s' non permette codice nei contenuti"
-#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1478
+#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1384
msgid "Channels"
msgstr "Canali"
@@ -4254,7 +4347,7 @@ msgstr "Permetti codice"
msgid "Disallow Code"
msgstr "Non permettere codice"
-#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1626
+#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1611
msgid "Channel"
msgstr "Canale"
@@ -4293,7 +4386,7 @@ msgid "Enable"
msgstr "Attiva"
#: ../../Zotlabs/Module/Admin.php:1330 ../../Zotlabs/Module/Admin.php:1420
-#: ../../include/widgets.php:1481
+#: ../../include/widgets.php:1387
msgid "Plugins"
msgstr "Plugin"
@@ -4302,8 +4395,8 @@ msgid "Toggle"
msgstr "Attiva/disattiva"
#: ../../Zotlabs/Module/Admin.php:1332 ../../Zotlabs/Module/Admin.php:1615
-#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:210
-#: ../../include/widgets.php:647
+#: ../../Zotlabs/Lib/Apps.php:215 ../../include/widgets.php:638
+#: ../../include/nav.php:208
msgid "Settings"
msgstr "Impostazioni"
@@ -4337,7 +4430,7 @@ msgstr "Disabilitato - incompatibilità di versione"
#: ../../Zotlabs/Module/Admin.php:1394
msgid "Enter the public git repository URL of the plugin repo."
-msgstr "Inserisci lo URL del repository git dei plugin."
+msgstr ""
#: ../../Zotlabs/Module/Admin.php:1395
msgid "Plugin repo git URL"
@@ -4359,13 +4452,13 @@ msgstr "Scarica il repository del plugin"
msgid "Install new repo"
msgstr "Installa un nuovo repository"
-#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:334
+#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:330
msgid "Install"
msgstr "Installa"
#: ../../Zotlabs/Module/Admin.php:1427
msgid "Manage Repos"
-msgstr "Gestisci i repository"
+msgstr "Gestisci i repsitory"
#: ../../Zotlabs/Module/Admin.php:1428
msgid "Installed Plugin Repositories"
@@ -4375,8 +4468,8 @@ msgstr "Repository per i plugin installati"
msgid "Install a New Plugin Repository"
msgstr "Installa un nuovo repository per i plugin"
-#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:72
-#: ../../Zotlabs/Module/Settings.php:670 ../../Zotlabs/Lib/Apps.php:334
+#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:77
+#: ../../Zotlabs/Module/Settings.php:616 ../../Zotlabs/Lib/Apps.php:330
msgid "Update"
msgstr "Aggiorna"
@@ -4393,7 +4486,7 @@ msgid "Screenshot"
msgstr "Istantanea dello schermo"
#: ../../Zotlabs/Module/Admin.php:1613 ../../Zotlabs/Module/Admin.php:1647
-#: ../../include/widgets.php:1482
+#: ../../include/widgets.php:1388
msgid "Themes"
msgstr "Temi"
@@ -4409,8 +4502,8 @@ msgstr "[Non supportato]"
msgid "Log settings updated."
msgstr "Impostazioni di log aggiornate."
-#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1503
-#: ../../include/widgets.php:1513
+#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1409
+#: ../../include/widgets.php:1419
msgid "Logs"
msgstr "Log"
@@ -4430,7 +4523,7 @@ msgstr "File di log"
msgid ""
"Must be writable by web server. Relative to your top-level webserver "
"directory."
-msgstr "Relativo alla directory base del server web. Deve essere scrivibile."
+msgstr ""
#: ../../Zotlabs/Module/Admin.php:1742
msgid "Log level"
@@ -4476,7 +4569,7 @@ msgstr "Impossibile trovare la definizione del campo"
msgid "Edit Profile Field"
msgstr "Modifica campo del profilo"
-#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1484
+#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1390
msgid "Profile Fields"
msgstr "Campi del profilo"
@@ -4504,384 +4597,57 @@ msgstr "Campi personalizzati"
msgid "Create Custom Field"
msgstr "Aggiungi campo personalizzato"
-#: ../../Zotlabs/Module/New_channel.php:128
-#: ../../Zotlabs/Module/Register.php:231
-msgid "Name or caption"
-msgstr "Nome o titolo"
-
-#: ../../Zotlabs/Module/New_channel.php:128
-#: ../../Zotlabs/Module/Register.php:231
-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\""
-
-#: ../../Zotlabs/Module/New_channel.php:130
-#: ../../Zotlabs/Module/Register.php:233
-msgid "Choose a short nickname"
-msgstr "Scegli un nome breve"
-
-#: ../../Zotlabs/Module/New_channel.php:130
-#: ../../Zotlabs/Module/Register.php:233
-#, 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"
-
-#: ../../Zotlabs/Module/New_channel.php:132
-#: ../../Zotlabs/Module/Register.php:235
-msgid "Channel role and privacy"
-msgstr "Tipo di canale e privacy"
-
-#: ../../Zotlabs/Module/New_channel.php:132
-#: ../../Zotlabs/Module/Register.php:235
-msgid "Select a channel role with your privacy requirements."
-msgstr "Scegli il tipo di canale che vuoi e la privacy da applicare."
-
-#: ../../Zotlabs/Module/New_channel.php:132
-#: ../../Zotlabs/Module/Register.php:235
-msgid "Read more about roles"
-msgstr "Maggiori informazioni sui ruoli"
-
-#: ../../Zotlabs/Module/New_channel.php:135
-msgid "Create Channel"
-msgstr "Crea un canale"
-
-#: ../../Zotlabs/Module/New_channel.php:136
-msgid ""
-"A channel is your identity on this network. It can represent a person, a "
-"blog, or a forum to name a few. Channels can make connections with other "
-"channels to share information with highly detailed permissions."
-msgstr "Un canale è la tua identità su questa rete. Può rappresentare una persona, un blog o un forum, per esempio. Il tuo canale può essere in contatto con altri canali per condividere contenuti con permessi anche molto dettagliati."
-
-#: ../../Zotlabs/Module/New_channel.php:137
-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."
-
-#: ../../Zotlabs/Module/Ping.php:265
-msgid "sent you a private message"
-msgstr "ti ha inviato un messaggio privato"
-
-#: ../../Zotlabs/Module/Ping.php:313
-msgid "added your channel"
-msgstr "ha aggiunto il tuo canale"
-
-#: ../../Zotlabs/Module/Ping.php:323
-msgid "g A l F d"
-msgstr "g A l d F"
-
-#: ../../Zotlabs/Module/Ping.php:346
-msgid "[today]"
-msgstr "[oggi]"
-
-#: ../../Zotlabs/Module/Ping.php:355
-msgid "posted an event"
-msgstr "ha creato un evento"
-
-#: ../../Zotlabs/Module/Notifications.php:30
-msgid "Invalid request identifier."
-msgstr "L'identificativo della richiesta non è valido."
-
-#: ../../Zotlabs/Module/Notifications.php:39
-msgid "Discard"
-msgstr "Rifiuta"
-
-#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:193
-msgid "Mark all system notifications seen"
-msgstr "Segna come lette le notifiche di sistema"
-
-#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228
-#: ../../include/conversation.php:963
-msgid "Poke"
-msgstr "Poke"
-
-#: ../../Zotlabs/Module/Poke.php:169
-msgid "Poke somebody"
-msgstr "Manda un poke"
-
-#: ../../Zotlabs/Module/Poke.php:172
-msgid "Poke/Prod"
-msgstr "Poke/Prod"
-
-#: ../../Zotlabs/Module/Poke.php:173
-msgid "Poke, prod or do other things to somebody"
-msgstr "Manda un poke o altro a qualcuno"
-
-#: ../../Zotlabs/Module/Poke.php:180
-msgid "Recipient"
-msgstr "Destinatario"
-
-#: ../../Zotlabs/Module/Poke.php:181
-msgid "Choose what you wish to do to recipient"
-msgstr "Scegli cosa vuoi inviare al destinatario"
-
-#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185
-msgid "Make this post private"
-msgstr "Rendi privato questo post"
-
-#: ../../Zotlabs/Module/Oexchange.php:27
-msgid "Unable to find your hub."
-msgstr "Impossibile raggiungere il tuo hub."
-
-#: ../../Zotlabs/Module/Oexchange.php:41
-msgid "Post successful."
-msgstr "Inviato!"
-
-#: ../../Zotlabs/Module/Openid.php:30
-msgid "OpenID protocol error. No ID returned."
-msgstr "Errore del protocollo OpenID. Nessun ID ricevuto in risposta."
-
-#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:285
-msgid "Login failed."
-msgstr "Accesso fallito."
-
-#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63
-msgid "Invalid profile identifier."
-msgstr "Indentificativo del profilo non valido."
-
-#: ../../Zotlabs/Module/Profperm.php:115
-msgid "Profile Visibility Editor"
-msgstr "Modifica la visibilità del profilo"
-
-#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1290
-msgid "Profile"
-msgstr "Profilo"
-
-#: ../../Zotlabs/Module/Profperm.php:119
-msgid "Click on a contact to add or remove."
-msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo."
-
-#: ../../Zotlabs/Module/Profperm.php:128
-msgid "Visible To"
-msgstr "Visibile a"
-
-#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59
-msgid "This setting requires special processing and editing has been blocked."
-msgstr "Questa impostazione è bloccata, richiede criteri di modifica speciali"
-
-#: ../../Zotlabs/Module/Pconfig.php:48
-msgid "Configuration Editor"
-msgstr "Editor di configurazione"
-
-#: ../../Zotlabs/Module/Pconfig.php:49
-msgid ""
-"Warning: Changing some settings could render your channel inoperable. Please"
-" leave this page unless you are comfortable with and knowledgeable about how"
-" to correctly use this feature."
-msgstr "Attenzione: alcune delle impostazioni, se cambiate, potrebbero rendere questo canale non funzionante. Lascia questa pagina a meno che tu non sappia con assoluta certezza quali modifiche effettuare."
-
-#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32
-#, php-format
-msgid "Fetching URL returns error: %1$s"
-msgstr "La chiamata all'URL restituisce questo errore: %1$s"
-
-#: ../../Zotlabs/Module/Siteinfo.php:19
-#, php-format
-msgid "Version %s"
-msgstr "Versione %s"
-
-#: ../../Zotlabs/Module/Siteinfo.php:34
-msgid "Installed plugins/addons/apps:"
-msgstr "App e componenti installati:"
-
-#: ../../Zotlabs/Module/Siteinfo.php:36
-msgid "No installed plugins/addons/apps"
-msgstr "Nessuna app o componente installato"
-
-#: ../../Zotlabs/Module/Siteinfo.php:49
-msgid ""
-"This is a hub of $Projectname - a global cooperative network of "
-"decentralized privacy enhanced websites."
-msgstr "Questo è un hub di $Projectname - una rete cooperativa e decentralizzata di siti ad elevata privacy. "
-
-#: ../../Zotlabs/Module/Siteinfo.php:51
-msgid "Tag: "
-msgstr "Tag: "
-
-#: ../../Zotlabs/Module/Siteinfo.php:53
-msgid "Last background fetch: "
-msgstr "Ultima acquisizione:"
-
-#: ../../Zotlabs/Module/Siteinfo.php:55
-msgid "Current load average: "
-msgstr "Carico medio attuale:"
-
-#: ../../Zotlabs/Module/Siteinfo.php:58
-msgid "Running at web location"
-msgstr "In esecuzione sull'indirizzo web"
-
-#: ../../Zotlabs/Module/Siteinfo.php:59
-msgid ""
-"Please visit <a href=\"http://hubzilla.org\">hubzilla.org</a> to learn more "
-"about $Projectname."
-msgstr "Visita <a href=\"http://hubzilla.org\">hubzilla.org</a> per maggiori informazioni su $Projectname."
-
-#: ../../Zotlabs/Module/Siteinfo.php:60
-msgid "Bug reports and issues: please visit"
-msgstr "Per segnalare bug e problemi: visita"
-
-#: ../../Zotlabs/Module/Siteinfo.php:62
-msgid "$projectname issues"
-msgstr "Problematiche note su $projectname"
-
-#: ../../Zotlabs/Module/Siteinfo.php:63
-msgid ""
-"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot "
-"com"
-msgstr "Per consigli, ringraziamenti, ecc. - scrivi a \"redmatrix\" at librelist - dot com"
-
-#: ../../Zotlabs/Module/Siteinfo.php:65
-msgid "Site Administrators"
-msgstr "Amministratori del sito"
-
-#: ../../Zotlabs/Module/Rmagic.php:44
-msgid ""
-"We encountered a problem while logging in with the OpenID you provided. "
-"Please check the correct spelling of the ID."
-msgstr "Non è possibile effettuare login con l'OpenID che hai fornito. Per favore controlla che sia scritto correttamente."
-
-#: ../../Zotlabs/Module/Rmagic.php:44
-msgid "The error message was:"
-msgstr "Messaggio di errore ricevuto:"
-
-#: ../../Zotlabs/Module/Rmagic.php:48
-msgid "Authentication failed."
-msgstr "Autenticazione fallita."
-
-#: ../../Zotlabs/Module/Rmagic.php:88
-msgid "Remote Authentication"
-msgstr "Accedi tramite il tuo hub"
-
-#: ../../Zotlabs/Module/Rmagic.php:89
-msgid "Enter your channel address (e.g. channel@example.com)"
-msgstr "Inserisci l'indirizzo del tuo canale (ad esempio lucia@esempio.com)"
-
-#: ../../Zotlabs/Module/Rmagic.php:90
-msgid "Authenticate"
-msgstr "Accedi"
-
-#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1337
-msgid "Public Hubs"
-msgstr "Hub pubblici"
-
-#: ../../Zotlabs/Module/Pubsites.php:25
-msgid ""
-"The listed hubs allow public registration for the $Projectname network. All "
-"hubs in the network are interlinked so membership on any of them conveys "
-"membership in the network as a whole. Some hubs may require subscription or "
-"provide tiered service plans. The hub itself <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."
-
-#: ../../Zotlabs/Module/Pubsites.php:31
-msgid "Hub URL"
-msgstr "URL del hub"
-
-#: ../../Zotlabs/Module/Pubsites.php:31
-msgid "Access Type"
-msgstr "Tipo di accesso"
-
-#: ../../Zotlabs/Module/Pubsites.php:31
-msgid "Registration Policy"
-msgstr "Politica di registrazione"
-
-#: ../../Zotlabs/Module/Pubsites.php:31
-msgid "Stats"
-msgstr "Statistiche"
-
-#: ../../Zotlabs/Module/Pubsites.php:31
-msgid "Software"
-msgstr "Software"
-
-#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103
-#: ../../include/conversation.php:962
-msgid "Ratings"
-msgstr "Valutazioni"
-
-#: ../../Zotlabs/Module/Pubsites.php:38
-msgid "Rate"
-msgstr "Valuta"
-
-#: ../../Zotlabs/Module/Profile_photo.php:186
-msgid ""
-"Shift-reload the page or clear browser cache if the new photo does not "
-"display immediately."
-msgstr "Forza l'aggiornamento della pagina o cancella la cache del browser se la nuova foto non viene visualizzata immediatamente."
-
-#: ../../Zotlabs/Module/Profile_photo.php:389
-msgid "Upload Profile Photo"
-msgstr "Carica la foto del profilo"
-
-#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:155
-#: ../../Zotlabs/Module/Editblock.php:108
-msgid "Block Name"
-msgstr "Nome del block"
-
-#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2238
-msgid "Blocks"
-msgstr "Block"
-
-#: ../../Zotlabs/Module/Blocks.php:156
-msgid "Block Title"
-msgstr "Titolo del block"
-
-#: ../../Zotlabs/Module/Rate.php:160
-msgid "Website:"
-msgstr "Sito web:"
-
-#: ../../Zotlabs/Module/Rate.php:163
-#, php-format
-msgid "Remote Channel [%s] (not yet known on this site)"
-msgstr "Canale remoto [%s] (non ancora conosciuto da questo sito)"
+#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53
+msgid "App installed."
+msgstr "App installata"
-#: ../../Zotlabs/Module/Rate.php:164
-msgid "Rating (this information is public)"
-msgstr "Valutazione (visibile a tutti)"
+#: ../../Zotlabs/Module/Appman.php:46
+msgid "Malformed app."
+msgstr "L'app contiene errori"
-#: ../../Zotlabs/Module/Rate.php:165
-msgid "Optionally explain your rating (this information is public)"
-msgstr "Commento alla valutazione (facoltativo, visibile a tutti)"
+#: ../../Zotlabs/Module/Appman.php:104
+msgid "Embed code"
+msgstr "Inserisci il codice"
-#: ../../Zotlabs/Module/Ratings.php:73
-msgid "No ratings"
-msgstr "Nessuna valutazione"
+#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107
+msgid "Edit App"
+msgstr "Modifica app"
-#: ../../Zotlabs/Module/Ratings.php:104
-msgid "Rating: "
-msgstr "Valutazione:"
+#: ../../Zotlabs/Module/Appman.php:110
+msgid "Create App"
+msgstr "Crea una app"
-#: ../../Zotlabs/Module/Ratings.php:105
-msgid "Website: "
-msgstr "Sito web:"
+#: ../../Zotlabs/Module/Appman.php:115
+msgid "Name of app"
+msgstr "Nome app"
-#: ../../Zotlabs/Module/Ratings.php:107
-msgid "Description: "
-msgstr "Descrizione:"
+#: ../../Zotlabs/Module/Appman.php:116
+msgid "Location (URL) of app"
+msgstr "Indirizzo (URL) della app"
-#: ../../Zotlabs/Module/Apps.php:47 ../../include/nav.php:165
-#: ../../include/widgets.php:102
-msgid "Apps"
-msgstr "App"
+#: ../../Zotlabs/Module/Appman.php:118
+msgid "Photo icon URL"
+msgstr "URL icona"
-#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1243
-msgid "Title (optional)"
-msgstr "Titolo (facoltativo)"
+#: ../../Zotlabs/Module/Appman.php:118
+msgid "80 x 80 pixels - optional"
+msgstr "80 x 80 pixel - facoltativa"
-#: ../../Zotlabs/Module/Editblock.php:133
-msgid "Edit Block"
-msgstr "Modifica il block"
+#: ../../Zotlabs/Module/Appman.php:119
+msgid "Categories (optional, comma separated list)"
+msgstr "Categorie (facoltative, lista separata da virgole)"
-#: ../../Zotlabs/Module/Common.php:14
-msgid "No channel."
-msgstr "Nessun canale."
+#: ../../Zotlabs/Module/Appman.php:120
+msgid "Version ID"
+msgstr "ID versione"
-#: ../../Zotlabs/Module/Common.php:43
-msgid "Common connections"
-msgstr "Contatti in comune"
+#: ../../Zotlabs/Module/Appman.php:121
+msgid "Price of app"
+msgstr "Prezzo app"
-#: ../../Zotlabs/Module/Common.php:48
-msgid "No connections in common."
-msgstr "Nessun contatto in comune."
+#: ../../Zotlabs/Module/Appman.php:122
+msgid "Location (URL) to purchase app"
+msgstr "Indirizzo (URL) per acquistare la app"
#: ../../Zotlabs/Module/Rbmark.php:94
msgid "Select a bookmark folder"
@@ -4986,154 +4752,120 @@ msgstr "sì"
msgid "Membership on this site is by invitation only."
msgstr "Per registrarsi su questo hub è necessario un invito."
-#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:149
-#: ../../boot.php:1686
+#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:147
+#: ../../boot.php:1685
msgid "Register"
msgstr "Registrati"
-#: ../../Zotlabs/Module/Register.php:263
-msgid ""
-"This site may require email verification after submitting this form. If you "
-"are returned to a login page, please check your email for instructions."
-msgstr "Dopo aver inviato questo modulo, potrebbe esserti richiesta una verifica via email. Se ti sarà mostrata la pagina di login, segui le istruzioni sull'email per continuare."
+#: ../../Zotlabs/Module/Register.php:262
+msgid "Proceed to create your first channel"
+msgstr "Continua e crea il tuo primo canale"
#: ../../Zotlabs/Module/Regmod.php:15
msgid "Please login."
msgstr "Effettua l'accesso."
-#: ../../Zotlabs/Module/Removeaccount.php:35
+#: ../../Zotlabs/Module/Removeaccount.php:34
msgid ""
"Account removals are not allowed within 48 hours of changing the account "
"password."
msgstr "Non è possibile eliminare il tuo account prima di 48 ore dall'ultimo cambio password."
-#: ../../Zotlabs/Module/Removeaccount.php:57
+#: ../../Zotlabs/Module/Removeaccount.php:56
msgid "Remove This Account"
msgstr "Elimina questo account"
-#: ../../Zotlabs/Module/Removeaccount.php:58
-#: ../../Zotlabs/Module/Removeme.php:61
+#: ../../Zotlabs/Module/Removeaccount.php:57
+#: ../../Zotlabs/Module/Removeme.php:59
msgid "WARNING: "
msgstr "ATTENZIONE:"
-#: ../../Zotlabs/Module/Removeaccount.php:58
+#: ../../Zotlabs/Module/Removeaccount.php:57
msgid ""
"This account and all its channels will be completely removed from the "
"network. "
msgstr "Questo account e tutti i suoi canali saranno completamente eliminati dalla rete."
-#: ../../Zotlabs/Module/Removeaccount.php:58
-#: ../../Zotlabs/Module/Removeme.php:61
+#: ../../Zotlabs/Module/Removeaccount.php:57
+#: ../../Zotlabs/Module/Removeme.php:59
msgid "This action is permanent and can not be undone!"
msgstr "Questo comando è definitivo e non può essere annullato!"
-#: ../../Zotlabs/Module/Removeaccount.php:59
-#: ../../Zotlabs/Module/Removeme.php:62
+#: ../../Zotlabs/Module/Removeaccount.php:58
+#: ../../Zotlabs/Module/Removeme.php:60
msgid "Please enter your password for verification:"
msgstr "Inserisci la tua password per verifica:"
-#: ../../Zotlabs/Module/Removeaccount.php:60
+#: ../../Zotlabs/Module/Removeaccount.php:59
msgid ""
"Remove this account, all its channels and all its channel clones from the "
"network"
msgstr "Elimina dalla rete questo account, tutti i suoi canali e ANCHE tutti gli eventuali canali clonati."
-#: ../../Zotlabs/Module/Removeaccount.php:60
+#: ../../Zotlabs/Module/Removeaccount.php:59
msgid ""
"By default only the instances of the channels located on this hub will be "
"removed from the network"
msgstr "A meno che tu non lo richieda espressamente, solo i canali presenti su questo hub saranno rimossi dalla rete."
-#: ../../Zotlabs/Module/Removeaccount.php:61
-#: ../../Zotlabs/Module/Settings.php:759
+#: ../../Zotlabs/Module/Removeaccount.php:60
+#: ../../Zotlabs/Module/Settings.php:705
msgid "Remove Account"
msgstr "Elimina l'account"
-#: ../../Zotlabs/Module/Removeme.php:35
+#: ../../Zotlabs/Module/Removeme.php:33
msgid ""
"Channel removals are not allowed within 48 hours of changing the account "
"password."
msgstr "Non è possibile eliminare un canale prima di 48 ore dall'ultimo cambio password."
-#: ../../Zotlabs/Module/Removeme.php:60
+#: ../../Zotlabs/Module/Removeme.php:58
msgid "Remove This Channel"
msgstr "Elimina questo canale"
-#: ../../Zotlabs/Module/Removeme.php:61
+#: ../../Zotlabs/Module/Removeme.php:59
msgid "This channel will be completely removed from the network. "
msgstr "Questo canale sarà completamente eliminato dalla rete."
-#: ../../Zotlabs/Module/Removeme.php:63
+#: ../../Zotlabs/Module/Removeme.php:61
msgid "Remove this channel and all its clones from the network"
msgstr "Elimina questo canale e tutti i suoi cloni dalla rete"
-#: ../../Zotlabs/Module/Removeme.php:63
+#: ../../Zotlabs/Module/Removeme.php:61
msgid ""
"By default only the instance of the channel located on this hub will be "
"removed from the network"
msgstr "L'impostazione predefinita è che sia eliminata solo l'istanza del canale presente su questo hub, non gli eventuali cloni"
-#: ../../Zotlabs/Module/Removeme.php:64 ../../Zotlabs/Module/Settings.php:1219
+#: ../../Zotlabs/Module/Removeme.php:62 ../../Zotlabs/Module/Settings.php:1124
msgid "Remove Channel"
msgstr "Elimina questo canale"
-#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56
-msgid "Export Channel"
-msgstr "Esporta il canale"
-
-#: ../../Zotlabs/Module/Uexport.php:57
-msgid ""
-"Export your basic channel information to a file. This acts as a backup of "
-"your connections, permissions, profile and basic data, which can be used to "
-"import your data to a new server hub, but does not contain your content."
-msgstr "Esporta le informazioni di base del canale in un file. In pratica è un salvataggio delle tue connessioni, dei permessi che hai assegnato e del tuo profilo che così potrà essere importato su un altro server/hub. Il file non includerà i tuoi post e altri contenuti che hai creato o caricato."
-
-#: ../../Zotlabs/Module/Uexport.php:58
-msgid "Export Content"
-msgstr "Esporta i contenuti"
-
-#: ../../Zotlabs/Module/Uexport.php:59
+#: ../../Zotlabs/Module/Rmagic.php:44
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 "Esporta il tuo canale e i contenuti recenti in un file di salvataggio che potrà essere importato su un altro server/hub. Sarà un backup dei tuoi contatti, dei permessi che hai assegnato, dei dati del profilo e dei post degli ultimi mesi. Il file potrebbe essere MOLTO grande. Sarà necessario attendere con pazienza - saranno necessari molti minuti prima che inizi lo scaricamento."
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
+msgstr "Non è possibile effettuare login con l'OpenID che hai fornito. Per favore controlla che sia scritto correttamente."
-#: ../../Zotlabs/Module/Uexport.php:60
-msgid "Export your posts from a given year."
-msgstr "Esporta i tuoi post a partire dall'anno scelto."
+#: ../../Zotlabs/Module/Rmagic.php:44
+msgid "The error message was:"
+msgstr "Messaggio di errore ricevuto:"
-#: ../../Zotlabs/Module/Uexport.php:62
-msgid ""
-"You may also export your posts and conversations for a particular year or "
-"month. Adjust the date in your browser location bar to select other dates. "
-"If the export fails (possibly due to memory exhaustion on your server hub), "
-"please try again selecting a more limited date range."
-msgstr "Puoi anche esportare post e conversazioni di un particolare anno o mese. Modifica la data nella barra dell'indirizzo del browser per scegliere date differenti. Se l'esportazione dovesse fallire (la memoria sul server potrebbe non bastare), riprova scegliendo un intervallo più breve tra le date."
+#: ../../Zotlabs/Module/Rmagic.php:48
+msgid "Authentication failed."
+msgstr "Autenticazione fallita."
-#: ../../Zotlabs/Module/Uexport.php:63
-#, php-format
-msgid ""
-"To select all posts for a given year, such as this year, visit <a "
-"href=\"%1$s\">%2$s</a>"
-msgstr "Per selezionare tutti i post di un anno, come per esempio quello in corso, visita <a href=\"%1$s\">%2$s</a> "
+#: ../../Zotlabs/Module/Rmagic.php:88
+msgid "Remote Authentication"
+msgstr "Accedi tramite il tuo hub"
-#: ../../Zotlabs/Module/Uexport.php:64
-#, 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 "Per selezionare tutti post di un dato mese, come per esempio gennaio di quest'anno, visita <a href=\"%1$s\">%2$s</a>"
+#: ../../Zotlabs/Module/Rmagic.php:89
+msgid "Enter your channel address (e.g. channel@example.com)"
+msgstr "Inserisci l'indirizzo del tuo canale (ad esempio lucia@esempio.com)"
-#: ../../Zotlabs/Module/Uexport.php:65
-#, 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 "Questi contenuti potranno essere importati o ripristinati visitando <a href=\"%1$s\">%2$s</a> su qualsiasi sito/hub dove è presente il tuo canale. Per mantenere l'ordinamento originale fai attenzione ad importare i file secondo la data (prima il più vecchio)"
+#: ../../Zotlabs/Module/Rmagic.php:90
+msgid "Authenticate"
+msgstr "Accedi"
#: ../../Zotlabs/Module/Search.php:216
#, php-format
@@ -5149,652 +4881,609 @@ msgstr "Risultati ricerca: %s"
msgid "No service class restrictions found."
msgstr "Non esistono restrizioni su questa classe di account."
-#: ../../Zotlabs/Module/Settings.php:64
+#: ../../Zotlabs/Module/Settings.php:69
msgid "Name is required"
msgstr "Il nome è obbligatorio"
-#: ../../Zotlabs/Module/Settings.php:68
+#: ../../Zotlabs/Module/Settings.php:73
msgid "Key and Secret are required"
msgstr "Key e Secret sono richiesti"
-#: ../../Zotlabs/Module/Settings.php:138
-#, php-format
-msgid "This channel is limited to %d tokens"
-msgstr "Questo canale è limitato a %d token"
-
-#: ../../Zotlabs/Module/Settings.php:144
-msgid "Name and Password are required."
-msgstr "Nome e password sono obbligatori."
-
-#: ../../Zotlabs/Module/Settings.php:168
-msgid "Token saved."
-msgstr "Token salvato."
-
-#: ../../Zotlabs/Module/Settings.php:274
+#: ../../Zotlabs/Module/Settings.php:225
msgid "Not valid email."
msgstr "Email non valida."
-#: ../../Zotlabs/Module/Settings.php:277
+#: ../../Zotlabs/Module/Settings.php:228
msgid "Protected email address. Cannot change to that email."
msgstr "È un indirizzo email riservato. Non puoi sceglierlo."
-#: ../../Zotlabs/Module/Settings.php:286
+#: ../../Zotlabs/Module/Settings.php:237
msgid "System failure storing new email. Please try again."
msgstr "Errore di sistema. Non è stato possibile memorizzare il tuo messaggio, riprova per favore."
-#: ../../Zotlabs/Module/Settings.php:303
+#: ../../Zotlabs/Module/Settings.php:254
msgid "Password verification failed."
msgstr "Verifica della password fallita."
-#: ../../Zotlabs/Module/Settings.php:310
+#: ../../Zotlabs/Module/Settings.php:261
msgid "Passwords do not match. Password unchanged."
msgstr "Le password non corrispondono. Password non cambiata."
-#: ../../Zotlabs/Module/Settings.php:314
+#: ../../Zotlabs/Module/Settings.php:265
msgid "Empty passwords are not allowed. Password unchanged."
msgstr "Le password non possono essere vuote. Password non cambiata."
-#: ../../Zotlabs/Module/Settings.php:328
+#: ../../Zotlabs/Module/Settings.php:279
msgid "Password changed."
msgstr "Password cambiata."
-#: ../../Zotlabs/Module/Settings.php:330
+#: ../../Zotlabs/Module/Settings.php:281
msgid "Password update failed. Please try again."
msgstr "Modifica password fallita. Prova ancora."
-#: ../../Zotlabs/Module/Settings.php:579
+#: ../../Zotlabs/Module/Settings.php:525
msgid "Settings updated."
msgstr "Impostazioni aggiornate."
-#: ../../Zotlabs/Module/Settings.php:643 ../../Zotlabs/Module/Settings.php:669
-#: ../../Zotlabs/Module/Settings.php:705
+#: ../../Zotlabs/Module/Settings.php:589 ../../Zotlabs/Module/Settings.php:615
+#: ../../Zotlabs/Module/Settings.php:651
msgid "Add application"
msgstr "Aggiungi una app"
-#: ../../Zotlabs/Module/Settings.php:646
+#: ../../Zotlabs/Module/Settings.php:592
msgid "Name of application"
msgstr "Nome dell'applicazione"
-#: ../../Zotlabs/Module/Settings.php:647 ../../Zotlabs/Module/Settings.php:673
+#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:619
msgid "Consumer Key"
msgstr "Consumer Key"
-#: ../../Zotlabs/Module/Settings.php:647 ../../Zotlabs/Module/Settings.php:648
+#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:594
msgid "Automatically generated - change if desired. Max length 20"
msgstr "Generato automaticamente - è possibile cambiarlo. Lunghezza massima 20"
-#: ../../Zotlabs/Module/Settings.php:648 ../../Zotlabs/Module/Settings.php:674
+#: ../../Zotlabs/Module/Settings.php:594 ../../Zotlabs/Module/Settings.php:620
msgid "Consumer Secret"
msgstr "Consumer Secret"
-#: ../../Zotlabs/Module/Settings.php:649 ../../Zotlabs/Module/Settings.php:675
+#: ../../Zotlabs/Module/Settings.php:595 ../../Zotlabs/Module/Settings.php:621
msgid "Redirect"
msgstr "Redirect"
-#: ../../Zotlabs/Module/Settings.php:649
+#: ../../Zotlabs/Module/Settings.php:595
msgid ""
"Redirect URI - leave blank unless your application specifically requires "
"this"
msgstr "URI di riderezione - lasciare vuoto se non richiesto specificamente dall'applicazione"
-#: ../../Zotlabs/Module/Settings.php:650 ../../Zotlabs/Module/Settings.php:676
+#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Settings.php:622
msgid "Icon url"
msgstr "Url icona"
-#: ../../Zotlabs/Module/Settings.php:650 ../../Zotlabs/Module/Sources.php:112
+#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Sources.php:112
#: ../../Zotlabs/Module/Sources.php:147
msgid "Optional"
msgstr "Facoltativo"
-#: ../../Zotlabs/Module/Settings.php:661
+#: ../../Zotlabs/Module/Settings.php:607
msgid "Application not found."
msgstr "Applicazione non trovata."
-#: ../../Zotlabs/Module/Settings.php:704
+#: ../../Zotlabs/Module/Settings.php:650
msgid "Connected Apps"
msgstr "App connesse"
-#: ../../Zotlabs/Module/Settings.php:708
+#: ../../Zotlabs/Module/Settings.php:654
msgid "Client key starts with"
msgstr "La client key inizia con"
-#: ../../Zotlabs/Module/Settings.php:709
+#: ../../Zotlabs/Module/Settings.php:655
msgid "No name"
msgstr "Nessun nome"
-#: ../../Zotlabs/Module/Settings.php:710
+#: ../../Zotlabs/Module/Settings.php:656
msgid "Remove authorization"
msgstr "Revoca l'autorizzazione"
-#: ../../Zotlabs/Module/Settings.php:723
+#: ../../Zotlabs/Module/Settings.php:669
msgid "No feature settings configured"
msgstr "Non hai componenti aggiuntivi da personalizzare"
-#: ../../Zotlabs/Module/Settings.php:730
+#: ../../Zotlabs/Module/Settings.php:676
msgid "Feature/Addon Settings"
msgstr "Impostazioni dei componenti aggiuntivi"
-#: ../../Zotlabs/Module/Settings.php:753
+#: ../../Zotlabs/Module/Settings.php:699
msgid "Account Settings"
msgstr "Il tuo account"
-#: ../../Zotlabs/Module/Settings.php:754
+#: ../../Zotlabs/Module/Settings.php:700
msgid "Current Password"
msgstr "Password attuale"
-#: ../../Zotlabs/Module/Settings.php:755
+#: ../../Zotlabs/Module/Settings.php:701
msgid "Enter New Password"
msgstr "Nuova password"
-#: ../../Zotlabs/Module/Settings.php:756
+#: ../../Zotlabs/Module/Settings.php:702
msgid "Confirm New Password"
msgstr "Conferma la nuova password"
-#: ../../Zotlabs/Module/Settings.php:756
+#: ../../Zotlabs/Module/Settings.php:702
msgid "Leave password fields blank unless changing"
msgstr "Lascia vuoti questi campi per non cambiare la password"
-#: ../../Zotlabs/Module/Settings.php:758
-#: ../../Zotlabs/Module/Settings.php:1136
+#: ../../Zotlabs/Module/Settings.php:704
+#: ../../Zotlabs/Module/Settings.php:1041
msgid "Email Address:"
msgstr "Indirizzo email:"
-#: ../../Zotlabs/Module/Settings.php:760
+#: ../../Zotlabs/Module/Settings.php:706
msgid "Remove this account including all its channels"
msgstr "Elimina questo account e tutti i suoi canali"
-#: ../../Zotlabs/Module/Settings.php:789
-msgid ""
-"Use this form to create temporary access identifiers to share things with "
-"non-members. These identities may be used in Access Control Lists and "
-"visitors may login using these credentials to access the private content."
-msgstr "Usa questo modulo per creare credenziali di accesso temporanee per condividere oggetti con chi non è utente. Queste identità possono essere gestite nelle Access Control List e i visitatori possono usare le credenziali per accedere ai contenuti privati."
-
-#: ../../Zotlabs/Module/Settings.php:791
-msgid ""
-"You may also provide <em>dropbox</em> style access links to friends and "
-"associates by adding the Login Password to any specific site URL as shown. "
-"Examples:"
-msgstr "Puoi anche fornire un accesso simile a <em>dropbox</em> agli amici o ai colleghi aggiungendo la password all'url che vuoi comunicare, come mostrato sotto. Esempi:"
-
-#: ../../Zotlabs/Module/Settings.php:796 ../../include/widgets.php:614
-msgid "Guest Access Tokens"
-msgstr "Token di accesso ospite"
-
-#: ../../Zotlabs/Module/Settings.php:803
-msgid "Login Name"
-msgstr "Nome utente"
-
-#: ../../Zotlabs/Module/Settings.php:804
-msgid "Login Password"
-msgstr "Password"
-
-#: ../../Zotlabs/Module/Settings.php:805
-msgid "Expires (yyyy-mm-dd)"
-msgstr "Con scadenza (aaaa-mm-gg)"
-
-#: ../../Zotlabs/Module/Settings.php:830
+#: ../../Zotlabs/Module/Settings.php:729
msgid "Additional Features"
msgstr "Funzionalità opzionali"
-#: ../../Zotlabs/Module/Settings.php:854
+#: ../../Zotlabs/Module/Settings.php:753
msgid "Connector Settings"
msgstr "Impostazioni del connettore"
-#: ../../Zotlabs/Module/Settings.php:893
+#: ../../Zotlabs/Module/Settings.php:792
msgid "No special theme for mobile devices"
msgstr "Nessun tema per dispositivi mobili"
-#: ../../Zotlabs/Module/Settings.php:896
+#: ../../Zotlabs/Module/Settings.php:795
#, php-format
msgid "%s - (Experimental)"
msgstr "%s - (Sperimentale)"
-#: ../../Zotlabs/Module/Settings.php:938
+#: ../../Zotlabs/Module/Settings.php:837
msgid "Display Settings"
msgstr "Aspetto"
-#: ../../Zotlabs/Module/Settings.php:939
+#: ../../Zotlabs/Module/Settings.php:838
msgid "Theme Settings"
msgstr "Impostazioni del tema"
-#: ../../Zotlabs/Module/Settings.php:940
+#: ../../Zotlabs/Module/Settings.php:839
msgid "Custom Theme Settings"
msgstr "Personalizzazione del tema"
-#: ../../Zotlabs/Module/Settings.php:941
+#: ../../Zotlabs/Module/Settings.php:840
msgid "Content Settings"
msgstr "Impostazioni dei contenuti"
-#: ../../Zotlabs/Module/Settings.php:947
+#: ../../Zotlabs/Module/Settings.php:846
msgid "Display Theme:"
msgstr "Tema per schermi medio grandi:"
-#: ../../Zotlabs/Module/Settings.php:948
+#: ../../Zotlabs/Module/Settings.php:847
msgid "Mobile Theme:"
msgstr "Tema per dispositivi mobili:"
-#: ../../Zotlabs/Module/Settings.php:949
+#: ../../Zotlabs/Module/Settings.php:848
msgid "Preload images before rendering the page"
msgstr "Anticipa il caricamento delle immagini prima del rendering della pagina"
-#: ../../Zotlabs/Module/Settings.php:949
+#: ../../Zotlabs/Module/Settings.php:848
msgid ""
"The subjective page load time will be longer but the page will be ready when"
" displayed"
msgstr "Il tempo di caricamento della pagina sarà più lungo ma sarà mostrato il rendering completo"
-#: ../../Zotlabs/Module/Settings.php:950
+#: ../../Zotlabs/Module/Settings.php:849
msgid "Enable user zoom on mobile devices"
msgstr "Attiva la possibilità di fare zoom sui dispositivi mobili"
-#: ../../Zotlabs/Module/Settings.php:951
+#: ../../Zotlabs/Module/Settings.php:850
msgid "Update browser every xx seconds"
msgstr "Aggiorna il browser ogni x secondi"
-#: ../../Zotlabs/Module/Settings.php:951
+#: ../../Zotlabs/Module/Settings.php:850
msgid "Minimum of 10 seconds, no maximum"
msgstr "Minimo 10 secondi, nessun limite massimo"
-#: ../../Zotlabs/Module/Settings.php:952
+#: ../../Zotlabs/Module/Settings.php:851
msgid "Maximum number of conversations to load at any time:"
msgstr "Massimo numero di conversazioni da mostrare ogni volta:"
-#: ../../Zotlabs/Module/Settings.php:952
+#: ../../Zotlabs/Module/Settings.php:851
msgid "Maximum of 100 items"
msgstr "Massimo 100"
-#: ../../Zotlabs/Module/Settings.php:953
+#: ../../Zotlabs/Module/Settings.php:852
msgid "Show emoticons (smilies) as images"
msgstr "Mostra le faccine (smilies) come immagini"
-#: ../../Zotlabs/Module/Settings.php:954
+#: ../../Zotlabs/Module/Settings.php:853
msgid "Link post titles to source"
msgstr "Il link del titolo di un post porta al sito originale"
-#: ../../Zotlabs/Module/Settings.php:955
+#: ../../Zotlabs/Module/Settings.php:854
msgid "System Page Layout Editor - (advanced)"
msgstr "Modifica i layout di sistema (avanzato)"
-#: ../../Zotlabs/Module/Settings.php:958
+#: ../../Zotlabs/Module/Settings.php:857
msgid "Use blog/list mode on channel page"
msgstr "Mostra il canale nella modalità blog"
-#: ../../Zotlabs/Module/Settings.php:958 ../../Zotlabs/Module/Settings.php:959
+#: ../../Zotlabs/Module/Settings.php:857 ../../Zotlabs/Module/Settings.php:858
msgid "(comments displayed separately)"
msgstr "(i commenti sono mostrati separatamente)"
-#: ../../Zotlabs/Module/Settings.php:959
+#: ../../Zotlabs/Module/Settings.php:858
msgid "Use blog/list mode on grid page"
msgstr "Mostra la tua rete in modalità blog"
-#: ../../Zotlabs/Module/Settings.php:960
+#: ../../Zotlabs/Module/Settings.php:859
msgid "Channel page max height of content (in pixels)"
msgstr "Altezza massima dei contenuti del canale (in pixel)"
-#: ../../Zotlabs/Module/Settings.php:960 ../../Zotlabs/Module/Settings.php:961
+#: ../../Zotlabs/Module/Settings.php:859 ../../Zotlabs/Module/Settings.php:860
msgid "click to expand content exceeding this height"
msgstr "dovrai cliccare sul post per mostrare i contenuti di dimensioni maggiori"
-#: ../../Zotlabs/Module/Settings.php:961
+#: ../../Zotlabs/Module/Settings.php:860
msgid "Grid page max height of content (in pixels)"
msgstr "Altezza massima dei contenuti della tua rete (in pixel)"
-#: ../../Zotlabs/Module/Settings.php:990
+#: ../../Zotlabs/Module/Settings.php:894
msgid "Nobody except yourself"
msgstr "Nessuno tranne te"
-#: ../../Zotlabs/Module/Settings.php:991
+#: ../../Zotlabs/Module/Settings.php:895
msgid "Only those you specifically allow"
msgstr "Solo chi riceve il mio permesso"
-#: ../../Zotlabs/Module/Settings.php:992
+#: ../../Zotlabs/Module/Settings.php:896
msgid "Approved connections"
msgstr "Contatti approvati"
-#: ../../Zotlabs/Module/Settings.php:993
+#: ../../Zotlabs/Module/Settings.php:897
msgid "Any connections"
msgstr "Tutti i contatti"
-#: ../../Zotlabs/Module/Settings.php:994
+#: ../../Zotlabs/Module/Settings.php:898
msgid "Anybody on this website"
msgstr "Chiunque su questo hub"
-#: ../../Zotlabs/Module/Settings.php:995
+#: ../../Zotlabs/Module/Settings.php:899
msgid "Anybody in this network"
msgstr "Chiunque su questa rete"
-#: ../../Zotlabs/Module/Settings.php:996
+#: ../../Zotlabs/Module/Settings.php:900
msgid "Anybody authenticated"
msgstr "Chiunque abbia effettuato l'accesso"
-#: ../../Zotlabs/Module/Settings.php:997
+#: ../../Zotlabs/Module/Settings.php:901
msgid "Anybody on the internet"
msgstr "Chiunque su internet"
-#: ../../Zotlabs/Module/Settings.php:1071
+#: ../../Zotlabs/Module/Settings.php:976
msgid "Publish your default profile in the network directory"
msgstr "Mostra il mio profilo predefinito negli elenchi pubblici dei canali"
-#: ../../Zotlabs/Module/Settings.php:1076
+#: ../../Zotlabs/Module/Settings.php:981
msgid "Allow us to suggest you as a potential friend to new members?"
msgstr "Vuoi essere suggerito come amico ai nuovi membri?"
-#: ../../Zotlabs/Module/Settings.php:1085
+#: ../../Zotlabs/Module/Settings.php:990
msgid "Your channel address is"
msgstr "L'indirizzo del tuo canale è"
-#: ../../Zotlabs/Module/Settings.php:1127
+#: ../../Zotlabs/Module/Settings.php:1032
msgid "Channel Settings"
msgstr "Impostazioni del canale"
-#: ../../Zotlabs/Module/Settings.php:1134
+#: ../../Zotlabs/Module/Settings.php:1039
msgid "Basic Settings"
msgstr "Impostazioni di base"
-#: ../../Zotlabs/Module/Settings.php:1135 ../../include/channel.php:1180
+#: ../../Zotlabs/Module/Settings.php:1040 ../../include/channel.php:1140
msgid "Full Name:"
msgstr "Nome completo:"
-#: ../../Zotlabs/Module/Settings.php:1137
+#: ../../Zotlabs/Module/Settings.php:1042
msgid "Your Timezone:"
msgstr "Il tuo fuso orario:"
-#: ../../Zotlabs/Module/Settings.php:1138
+#: ../../Zotlabs/Module/Settings.php:1043
msgid "Default Post Location:"
msgstr "Località predefinita:"
-#: ../../Zotlabs/Module/Settings.php:1138
+#: ../../Zotlabs/Module/Settings.php:1043
msgid "Geographical location to display on your posts"
msgstr "La posizione geografica da mostrare sui tuoi post"
-#: ../../Zotlabs/Module/Settings.php:1139
+#: ../../Zotlabs/Module/Settings.php:1044
msgid "Use Browser Location:"
msgstr "Usa la località rilevata dal browser:"
-#: ../../Zotlabs/Module/Settings.php:1141
+#: ../../Zotlabs/Module/Settings.php:1046
msgid "Adult Content"
msgstr "Contenuto per adulti"
-#: ../../Zotlabs/Module/Settings.php:1141
+#: ../../Zotlabs/Module/Settings.php:1046
msgid ""
"This channel frequently or regularly publishes adult content. (Please tag "
"any adult material and/or nudity with #NSFW)"
msgstr "Questo canale pubblica frequentemente contenuto per adulti. (I contenuti per adulti vanno taggati #NSFW - Not Safe For Work)"
-#: ../../Zotlabs/Module/Settings.php:1143
+#: ../../Zotlabs/Module/Settings.php:1048
msgid "Security and Privacy Settings"
msgstr "Impostazioni di sicurezza e privacy"
-#: ../../Zotlabs/Module/Settings.php:1146
+#: ../../Zotlabs/Module/Settings.php:1051
msgid "Your permissions are already configured. Click to view/adjust"
msgstr "I tuoi permessi sono già stati configurati. Clicca per vederli o modificarli"
-#: ../../Zotlabs/Module/Settings.php:1148
+#: ../../Zotlabs/Module/Settings.php:1053
msgid "Hide my online presence"
msgstr "Nascondi la mia presenza online"
-#: ../../Zotlabs/Module/Settings.php:1148
+#: ../../Zotlabs/Module/Settings.php:1053
msgid "Prevents displaying in your profile that you are online"
msgstr "Non mostrare sul tuo profilo quando sei online"
-#: ../../Zotlabs/Module/Settings.php:1150
+#: ../../Zotlabs/Module/Settings.php:1055
msgid "Simple Privacy Settings:"
msgstr "Impostazioni di privacy semplificate"
-#: ../../Zotlabs/Module/Settings.php:1151
+#: ../../Zotlabs/Module/Settings.php:1056
msgid ""
"Very Public - <em>extremely permissive (should be used with caution)</em>"
msgstr "Tutto pubblico - <em>estremamente permissivo (da usare con cautela)</em>"
-#: ../../Zotlabs/Module/Settings.php:1152
+#: ../../Zotlabs/Module/Settings.php:1057
msgid ""
"Typical - <em>default public, privacy when desired (similar to social "
"network permissions but with improved privacy)</em>"
msgstr "Standard - <em>contenuti normalmente pubblici, ma anche privati se necessario (simile ai social network ma con privacy migliorata)</em>"
-#: ../../Zotlabs/Module/Settings.php:1153
+#: ../../Zotlabs/Module/Settings.php:1058
msgid "Private - <em>default private, never open or public</em>"
msgstr "Privato - <em>contenuti normalmente privati, nulla è aperto o pubblico</em>"
-#: ../../Zotlabs/Module/Settings.php:1154
+#: ../../Zotlabs/Module/Settings.php:1059
msgid "Blocked - <em>default blocked to/from everybody</em>"
msgstr "Bloccato - <em>bloccato in invio e ricezione dei contenuti</em>"
-#: ../../Zotlabs/Module/Settings.php:1156
+#: ../../Zotlabs/Module/Settings.php:1061
msgid "Allow others to tag your posts"
msgstr "Permetti ad altri di taggare i tuoi post"
-#: ../../Zotlabs/Module/Settings.php:1156
+#: ../../Zotlabs/Module/Settings.php:1061
msgid ""
"Often used by the community to retro-actively flag inappropriate content"
msgstr "Usato spesso dalla comunità per marcare contenuti inappropriati già esistenti"
-#: ../../Zotlabs/Module/Settings.php:1158
+#: ../../Zotlabs/Module/Settings.php:1063
msgid "Advanced Privacy Settings"
msgstr "Impostazioni di privacy avanzate"
-#: ../../Zotlabs/Module/Settings.php:1160
+#: ../../Zotlabs/Module/Settings.php:1065
msgid "Expire other channel content after this many days"
msgstr "Giorni dopo cui mettere in scadenza gli altri contenuti del canale"
-#: ../../Zotlabs/Module/Settings.php:1160
+#: ../../Zotlabs/Module/Settings.php:1065
msgid "0 or blank to use the website limit."
msgstr "0 o vuoto per usare i valori predefiniti."
-#: ../../Zotlabs/Module/Settings.php:1160
+#: ../../Zotlabs/Module/Settings.php:1065
#, php-format
msgid "This website expires after %d days."
msgstr "Per questo sito la scadenza è %d giorni. "
-#: ../../Zotlabs/Module/Settings.php:1160
+#: ../../Zotlabs/Module/Settings.php:1065
msgid "This website does not expire imported content."
msgstr "I contenuti di questo sito non hanno scadenza."
-#: ../../Zotlabs/Module/Settings.php:1160
+#: ../../Zotlabs/Module/Settings.php:1065
msgid "The website limit takes precedence if lower than your limit."
-msgstr "Il limite del webserver ha la precedenza, se minore di quello impostato da te."
+msgstr ""
-#: ../../Zotlabs/Module/Settings.php:1161
+#: ../../Zotlabs/Module/Settings.php:1066
msgid "Maximum Friend Requests/Day:"
msgstr "Numero massimo giornaliero di richieste di amicizia:"
-#: ../../Zotlabs/Module/Settings.php:1161
+#: ../../Zotlabs/Module/Settings.php:1066
msgid "May reduce spam activity"
msgstr "Serve a ridurre lo spam"
-#: ../../Zotlabs/Module/Settings.php:1162
+#: ../../Zotlabs/Module/Settings.php:1067
msgid "Default Post and Publish Permissions"
-msgstr "Permessi predefiniti per postare e pubblicare"
+msgstr ""
-#: ../../Zotlabs/Module/Settings.php:1164
+#: ../../Zotlabs/Module/Settings.php:1069
msgid "Use my default audience setting for the type of object published"
-msgstr "Mostra ai contatti secondo le impostazioni standard per questo tipo di contenuto"
+msgstr ""
-#: ../../Zotlabs/Module/Settings.php:1167
+#: ../../Zotlabs/Module/Settings.php:1072
msgid "Channel permissions category:"
msgstr "Categorie di permessi dei canali:"
-#: ../../Zotlabs/Module/Settings.php:1173
+#: ../../Zotlabs/Module/Settings.php:1078
msgid "Maximum private messages per day from unknown people:"
msgstr "Numero massimo giornaliero di messaggi privati da utenti sconosciuti:"
-#: ../../Zotlabs/Module/Settings.php:1173
+#: ../../Zotlabs/Module/Settings.php:1078
msgid "Useful to reduce spamming"
msgstr "Serve e ridurre lo spam"
-#: ../../Zotlabs/Module/Settings.php:1176
+#: ../../Zotlabs/Module/Settings.php:1081
msgid "Notification Settings"
msgstr "Impostazioni di notifica"
-#: ../../Zotlabs/Module/Settings.php:1177
+#: ../../Zotlabs/Module/Settings.php:1082
msgid "By default post a status message when:"
msgstr "Pubblica un messaggio di stato quando:"
-#: ../../Zotlabs/Module/Settings.php:1178
+#: ../../Zotlabs/Module/Settings.php:1083
msgid "accepting a friend request"
msgstr "accetto una nuova amicizia"
-#: ../../Zotlabs/Module/Settings.php:1179
+#: ../../Zotlabs/Module/Settings.php:1084
msgid "joining a forum/community"
msgstr "entro a far parte di un forum"
-#: ../../Zotlabs/Module/Settings.php:1180
+#: ../../Zotlabs/Module/Settings.php:1085
msgid "making an <em>interesting</em> profile change"
msgstr "faccio un cambiamento <em>interessante</em> al mio profilo"
-#: ../../Zotlabs/Module/Settings.php:1181
+#: ../../Zotlabs/Module/Settings.php:1086
msgid "Send a notification email when:"
msgstr "Invia una email di notifica quando:"
-#: ../../Zotlabs/Module/Settings.php:1182
+#: ../../Zotlabs/Module/Settings.php:1087
msgid "You receive a connection request"
msgstr "Ricevi una richiesta di entrare in contatto"
-#: ../../Zotlabs/Module/Settings.php:1183
+#: ../../Zotlabs/Module/Settings.php:1088
msgid "Your connections are confirmed"
msgstr "I tuoi contatti sono confermati"
-#: ../../Zotlabs/Module/Settings.php:1184
+#: ../../Zotlabs/Module/Settings.php:1089
msgid "Someone writes on your profile wall"
msgstr "Qualcuno scrive sulla tua bacheca"
-#: ../../Zotlabs/Module/Settings.php:1185
+#: ../../Zotlabs/Module/Settings.php:1090
msgid "Someone writes a followup comment"
msgstr "Qualcuno scrive un commento dopo di te"
-#: ../../Zotlabs/Module/Settings.php:1186
+#: ../../Zotlabs/Module/Settings.php:1091
msgid "You receive a private message"
msgstr "Ricevi un messaggio privato"
-#: ../../Zotlabs/Module/Settings.php:1187
+#: ../../Zotlabs/Module/Settings.php:1092
msgid "You receive a friend suggestion"
msgstr "Ti viene suggerito un amico"
-#: ../../Zotlabs/Module/Settings.php:1188
+#: ../../Zotlabs/Module/Settings.php:1093
msgid "You are tagged in a post"
msgstr "Sei taggato in un post"
-#: ../../Zotlabs/Module/Settings.php:1189
+#: ../../Zotlabs/Module/Settings.php:1094
msgid "You are poked/prodded/etc. in a post"
msgstr "Ricevi un poke in un post"
-#: ../../Zotlabs/Module/Settings.php:1192
+#: ../../Zotlabs/Module/Settings.php:1097
msgid "Show visual notifications including:"
msgstr "Mostra queste notifiche a schermo:"
-#: ../../Zotlabs/Module/Settings.php:1194
+#: ../../Zotlabs/Module/Settings.php:1099
msgid "Unseen grid activity"
msgstr "Nuove attività nella rete"
-#: ../../Zotlabs/Module/Settings.php:1195
+#: ../../Zotlabs/Module/Settings.php:1100
msgid "Unseen channel activity"
msgstr "Novità nei canali"
-#: ../../Zotlabs/Module/Settings.php:1196
+#: ../../Zotlabs/Module/Settings.php:1101
msgid "Unseen private messages"
msgstr "Nuovi messaggi privati"
-#: ../../Zotlabs/Module/Settings.php:1196
-#: ../../Zotlabs/Module/Settings.php:1201
-#: ../../Zotlabs/Module/Settings.php:1202
-#: ../../Zotlabs/Module/Settings.php:1203
+#: ../../Zotlabs/Module/Settings.php:1101
+#: ../../Zotlabs/Module/Settings.php:1106
+#: ../../Zotlabs/Module/Settings.php:1107
+#: ../../Zotlabs/Module/Settings.php:1108
msgid "Recommended"
msgstr "Consigliato"
-#: ../../Zotlabs/Module/Settings.php:1197
+#: ../../Zotlabs/Module/Settings.php:1102
msgid "Upcoming events"
msgstr "Prossimi eventi"
-#: ../../Zotlabs/Module/Settings.php:1198
+#: ../../Zotlabs/Module/Settings.php:1103
msgid "Events today"
msgstr "Eventi di oggi"
-#: ../../Zotlabs/Module/Settings.php:1199
+#: ../../Zotlabs/Module/Settings.php:1104
msgid "Upcoming birthdays"
msgstr "Prossimi compleanni"
-#: ../../Zotlabs/Module/Settings.php:1199
+#: ../../Zotlabs/Module/Settings.php:1104
msgid "Not available in all themes"
msgstr "Non disponibile in tutti i temi"
-#: ../../Zotlabs/Module/Settings.php:1200
+#: ../../Zotlabs/Module/Settings.php:1105
msgid "System (personal) notifications"
msgstr "Notifiche personali dal sistema"
-#: ../../Zotlabs/Module/Settings.php:1201
+#: ../../Zotlabs/Module/Settings.php:1106
msgid "System info messages"
msgstr "Notifiche di sistema"
-#: ../../Zotlabs/Module/Settings.php:1202
+#: ../../Zotlabs/Module/Settings.php:1107
msgid "System critical alerts"
msgstr "Avvisi critici di sistema"
-#: ../../Zotlabs/Module/Settings.php:1203
+#: ../../Zotlabs/Module/Settings.php:1108
msgid "New connections"
msgstr "Nuovi contatti"
-#: ../../Zotlabs/Module/Settings.php:1204
+#: ../../Zotlabs/Module/Settings.php:1109
msgid "System Registrations"
msgstr "Registrazioni"
-#: ../../Zotlabs/Module/Settings.php:1205
+#: ../../Zotlabs/Module/Settings.php:1110
msgid ""
"Also show new wall posts, private messages and connections under Notices"
msgstr "Mostra negli avvisi anche i nuovi post, i messaggi privati e i nuovi contatti"
-#: ../../Zotlabs/Module/Settings.php:1207
+#: ../../Zotlabs/Module/Settings.php:1112
msgid "Notify me of events this many days in advance"
msgstr "Giorni di anticipo per notificare gli eventi"
-#: ../../Zotlabs/Module/Settings.php:1207
+#: ../../Zotlabs/Module/Settings.php:1112
msgid "Must be greater than 0"
msgstr "Maggiore di 0"
-#: ../../Zotlabs/Module/Settings.php:1209
+#: ../../Zotlabs/Module/Settings.php:1114
msgid "Advanced Account/Page Type Settings"
msgstr "Impostazioni avanzate"
-#: ../../Zotlabs/Module/Settings.php:1210
+#: ../../Zotlabs/Module/Settings.php:1115
msgid "Change the behaviour of this account for special situations"
msgstr "Cambia il funzionamento di questo account per necessità particolari"
-#: ../../Zotlabs/Module/Settings.php:1213
+#: ../../Zotlabs/Module/Settings.php:1118
msgid ""
"Please enable expert mode (in <a href=\"settings/features\">Settings > "
"Additional features</a>) to adjust!"
msgstr "Abilita la modalità esperto per fare cambiamenti! (in <a href=\"settings/features\">Impostazioni > Funzionalità opzionali</a>)"
-#: ../../Zotlabs/Module/Settings.php:1214
+#: ../../Zotlabs/Module/Settings.php:1119
msgid "Miscellaneous Settings"
msgstr "Impostazioni varie"
-#: ../../Zotlabs/Module/Settings.php:1215
+#: ../../Zotlabs/Module/Settings.php:1120
msgid "Default photo upload folder"
msgstr "Cartella predefinita per le foto caricate"
-#: ../../Zotlabs/Module/Settings.php:1215
-#: ../../Zotlabs/Module/Settings.php:1216
+#: ../../Zotlabs/Module/Settings.php:1120
+#: ../../Zotlabs/Module/Settings.php:1121
msgid "%Y - current year, %m - current month"
msgstr "%Y - anno corrente, %m - mese corrente"
-#: ../../Zotlabs/Module/Settings.php:1216
+#: ../../Zotlabs/Module/Settings.php:1121
msgid "Default file upload folder"
msgstr "Cartella predefinita per i file caricati"
-#: ../../Zotlabs/Module/Settings.php:1218
+#: ../../Zotlabs/Module/Settings.php:1123
msgid "Personal menu to display in your channel pages"
msgstr "Menu personale da mostrare sulle pagine del tuo canale"
-#: ../../Zotlabs/Module/Settings.php:1220
+#: ../../Zotlabs/Module/Settings.php:1125
msgid "Remove this channel."
msgstr "Elimina questo canale."
-#: ../../Zotlabs/Module/Settings.php:1221
+#: ../../Zotlabs/Module/Settings.php:1126
msgid "Firefox Share $Projectname provider"
msgstr "Attiva Firefox Share per $Projectname"
-#: ../../Zotlabs/Module/Settings.php:1222
+#: ../../Zotlabs/Module/Settings.php:1127
msgid "Start calendar week on monday"
msgstr "La settimana inizia il lunedì"
@@ -5827,7 +5516,7 @@ msgid ""
msgstr "Potresti dover importare il file 'install/schema_xxx.sql' manualmente usando un client per collegarti al db."
#: ../../Zotlabs/Module/Setup.php:204 ../../Zotlabs/Module/Setup.php:266
-#: ../../Zotlabs/Module/Setup.php:722
+#: ../../Zotlabs/Module/Setup.php:721
msgid "Please see the file \"install/INSTALL.txt\"."
msgstr "Leggi il file 'install/INSTALL.txt'."
@@ -5931,7 +5620,7 @@ msgstr "Alcune funzionalità avanzate, per quanto utili, potrebbero essere adatt
#: ../../Zotlabs/Module/Setup.php:388
msgid "PHP version 5.5 or greater is required."
-msgstr "E' necessario PHP in versione 5.5 o superiore."
+msgstr ""
#: ../../Zotlabs/Module/Setup.php:389
msgid "PHP version"
@@ -6027,200 +5716,199 @@ msgid "mb_string PHP module"
msgstr "modulo PHP mb_string"
#: ../../Zotlabs/Module/Setup.php:496
+msgid "mcrypt PHP module"
+msgstr "modulo PHP mcrypt"
+
+#: ../../Zotlabs/Module/Setup.php:497
msgid "xml PHP module"
msgstr "modulo xml PHP"
-#: ../../Zotlabs/Module/Setup.php:500 ../../Zotlabs/Module/Setup.php:502
+#: ../../Zotlabs/Module/Setup.php:501 ../../Zotlabs/Module/Setup.php:503
msgid "Apache mod_rewrite module"
msgstr "modulo Apache mod_rewrite"
-#: ../../Zotlabs/Module/Setup.php:500
+#: ../../Zotlabs/Module/Setup.php:501
msgid ""
"Error: Apache webserver mod-rewrite module is required but not installed."
msgstr "Errore: il modulo mod-rewrite di Apache è richiesto ma non installato"
-#: ../../Zotlabs/Module/Setup.php:506 ../../Zotlabs/Module/Setup.php:509
+#: ../../Zotlabs/Module/Setup.php:507 ../../Zotlabs/Module/Setup.php:510
msgid "proc_open"
msgstr "proc_open"
-#: ../../Zotlabs/Module/Setup.php:506
+#: ../../Zotlabs/Module/Setup.php:507
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"
-#: ../../Zotlabs/Module/Setup.php:514
+#: ../../Zotlabs/Module/Setup.php:515
msgid "Error: libCURL PHP module required but not installed."
msgstr "Errore: il modulo libCURL di PHP è richiesto ma non installato."
-#: ../../Zotlabs/Module/Setup.php:518
+#: ../../Zotlabs/Module/Setup.php:519
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."
-#: ../../Zotlabs/Module/Setup.php:522
+#: ../../Zotlabs/Module/Setup.php:523
msgid "Error: openssl PHP module required but not installed."
msgstr "Errore: il modulo openssl di PHP è richiesto ma non installato."
-#: ../../Zotlabs/Module/Setup.php:526
+#: ../../Zotlabs/Module/Setup.php:527
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"
-#: ../../Zotlabs/Module/Setup.php:530
+#: ../../Zotlabs/Module/Setup.php:531
msgid "Error: mb_string PHP module required but not installed."
msgstr "Errore: il modulo PHP mb_string è richiesto ma non installato."
-#: ../../Zotlabs/Module/Setup.php:534
+#: ../../Zotlabs/Module/Setup.php:535
+msgid "Error: mcrypt PHP module required but not installed."
+msgstr "Errore: il modulo PHP mcrypt è richiesto ma non installato."
+
+#: ../../Zotlabs/Module/Setup.php:539
msgid "Error: xml PHP module required for DAV but not installed."
msgstr "Errore: il modulo xml PHP è richiesto per DAV ma non è installato."
-#: ../../Zotlabs/Module/Setup.php:552
+#: ../../Zotlabs/Module/Setup.php:557
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."
-#: ../../Zotlabs/Module/Setup.php:553
+#: ../../Zotlabs/Module/Setup.php:558
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."
-#: ../../Zotlabs/Module/Setup.php:554
+#: ../../Zotlabs/Module/Setup.php:559
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."
-#: ../../Zotlabs/Module/Setup.php:555
+#: ../../Zotlabs/Module/Setup.php:560
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."
-#: ../../Zotlabs/Module/Setup.php:558
+#: ../../Zotlabs/Module/Setup.php:563
msgid ".htconfig.php is writable"
msgstr ".htconfig.php è scrivibile"
-#: ../../Zotlabs/Module/Setup.php:572
+#: ../../Zotlabs/Module/Setup.php:577
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."
-#: ../../Zotlabs/Module/Setup.php:573
+#: ../../Zotlabs/Module/Setup.php:578
#, php-format
msgid ""
"In order to store these compiled templates, the web server needs to have "
"write access to the directory %s under the top level web folder."
-msgstr "Per poter memorizzare questi template, il server web deve avere i diritti di scrittura sulla directory %s"
+msgstr ""
-#: ../../Zotlabs/Module/Setup.php:574 ../../Zotlabs/Module/Setup.php:595
+#: ../../Zotlabs/Module/Setup.php:579 ../../Zotlabs/Module/Setup.php:600
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)."
-#: ../../Zotlabs/Module/Setup.php:575
+#: ../../Zotlabs/Module/Setup.php:580
#, 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."
-#: ../../Zotlabs/Module/Setup.php:578
+#: ../../Zotlabs/Module/Setup.php:583
#, php-format
msgid "%s is writable"
msgstr "%s è scrivibile"
-#: ../../Zotlabs/Module/Setup.php:594
+#: ../../Zotlabs/Module/Setup.php:599
msgid ""
-"This software uses the store directory to save uploaded files. The web "
-"server needs to have write access to the store directory under the Red top "
-"level folder"
-msgstr "Questo software usa la cartella store per salvare i file caricati. Il server web deve avere i diritti di scrittura sulla cartella perché l'operazione avvenga con successo"
+"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"
-#: ../../Zotlabs/Module/Setup.php:598
+#: ../../Zotlabs/Module/Setup.php:603
msgid "store is writable"
msgstr "l'archivio è scrivibile"
-#: ../../Zotlabs/Module/Setup.php:631
+#: ../../Zotlabs/Module/Setup.php:636
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."
-#: ../../Zotlabs/Module/Setup.php:632
+#: ../../Zotlabs/Module/Setup.php:637
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!"
-#: ../../Zotlabs/Module/Setup.php:633
+#: ../../Zotlabs/Module/Setup.php:638
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."
-#: ../../Zotlabs/Module/Setup.php:634
+#: ../../Zotlabs/Module/Setup.php:639
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."
-#: ../../Zotlabs/Module/Setup.php:635
+#: ../../Zotlabs/Module/Setup.php:640
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."
-#: ../../Zotlabs/Module/Setup.php:636
+#: ../../Zotlabs/Module/Setup.php:641
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."
-#: ../../Zotlabs/Module/Setup.php:638
-msgid ""
-"If you are confident that the certificate is valid and signed by a trusted "
-"authority, check to see if you have failed to install an intermediate cert. "
-"These are not normally required by browsers, but are required for server-to-"
-"server communications."
-msgstr "Se credi che il certificato sia valido e firmato da una authority, verifica se hai sbagliato a installare i certificati intermedi. Normalmente non sono richiesti dai browser, ma sono necessari per la comunicazione server-to-server."
-
-#: ../../Zotlabs/Module/Setup.php:641
+#: ../../Zotlabs/Module/Setup.php:643
msgid "SSL certificate validation"
msgstr "Validazione del certificato SSL"
-#: ../../Zotlabs/Module/Setup.php:647
+#: ../../Zotlabs/Module/Setup.php:649
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:"
-#: ../../Zotlabs/Module/Setup.php:650
+#: ../../Zotlabs/Module/Setup.php:652
msgid "Url rewrite is working"
msgstr "Url rewrite funziona correttamente"
-#: ../../Zotlabs/Module/Setup.php:659
+#: ../../Zotlabs/Module/Setup.php:661
msgid ""
"The database configuration file \".htconfig.php\" could not be written. "
"Please use the enclosed text to create a configuration file in your web "
"server root."
msgstr "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."
-#: ../../Zotlabs/Module/Setup.php:683
+#: ../../Zotlabs/Module/Setup.php:685
msgid "Errors encountered creating database tables."
msgstr "La creazione delle tabelle del database ha generato errori."
-#: ../../Zotlabs/Module/Setup.php:720
+#: ../../Zotlabs/Module/Setup.php:719
msgid "<h1>What next</h1>"
msgstr "<h1>I prossimi passi</h1>"
-#: ../../Zotlabs/Module/Setup.php:721
+#: ../../Zotlabs/Module/Setup.php:720
msgid ""
"IMPORTANT: You will need to [manually] setup a scheduled task for the "
"poller."
@@ -6242,62 +5930,64 @@ msgstr "Elimina tutti i file"
msgid "Remove this file"
msgstr "Elimina questo file"
-#: ../../Zotlabs/Module/Thing.php:114
-msgid "Thing updated"
-msgstr "L'oggetto è stato aggiornato"
-
-#: ../../Zotlabs/Module/Thing.php:166
-msgid "Object store: failed"
-msgstr "Impossibile memorizzare l'oggetto."
+#: ../../Zotlabs/Module/Siteinfo.php:19
+#, php-format
+msgid "Version %s"
+msgstr "Versione %s"
-#: ../../Zotlabs/Module/Thing.php:170
-msgid "Thing added"
-msgstr "L'Oggetto è stato aggiunto"
+#: ../../Zotlabs/Module/Siteinfo.php:40
+msgid "Installed plugins/addons/apps:"
+msgstr "App e componenti installati:"
-#: ../../Zotlabs/Module/Thing.php:196
-#, php-format
-msgid "OBJ: %1$s %2$s %3$s"
-msgstr "OBJ: %1$s %2$s %3$s"
+#: ../../Zotlabs/Module/Siteinfo.php:53
+msgid "No installed plugins/addons/apps"
+msgstr "Nessuna app o componente installato"
-#: ../../Zotlabs/Module/Thing.php:259
-msgid "Show Thing"
-msgstr "Mostra l'oggetto"
+#: ../../Zotlabs/Module/Siteinfo.php:66
+msgid ""
+"This is a hub of $Projectname - a global cooperative network of "
+"decentralized privacy enhanced websites."
+msgstr "Questo è un hub di $Projectname - una rete cooperativa e decentralizzata di siti ad elevata privacy. "
-#: ../../Zotlabs/Module/Thing.php:266
-msgid "item not found."
-msgstr "non trovato."
+#: ../../Zotlabs/Module/Siteinfo.php:68
+msgid "Tag: "
+msgstr "Tag: "
-#: ../../Zotlabs/Module/Thing.php:299
-msgid "Edit Thing"
-msgstr "Modifica l'oggetto"
+#: ../../Zotlabs/Module/Siteinfo.php:70
+msgid "Last background fetch: "
+msgstr "Ultima acquisizione:"
-#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351
-msgid "Select a profile"
-msgstr "Scegli un profilo"
+#: ../../Zotlabs/Module/Siteinfo.php:72
+msgid "Current load average: "
+msgstr "Carico medio attuale:"
-#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354
-msgid "Post an activity"
-msgstr "Pubblica un'attività"
+#: ../../Zotlabs/Module/Siteinfo.php:75
+msgid "Running at web location"
+msgstr "In esecuzione sull'indirizzo web"
-#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354
-msgid "Only sends to viewers of the applicable profile"
-msgstr "Invia solo a chi può vedere il profilo scelto"
+#: ../../Zotlabs/Module/Siteinfo.php:76
+msgid ""
+"Please visit <a href=\"http://hubzilla.org\">hubzilla.org</a> to learn more "
+"about $Projectname."
+msgstr "Visita <a href=\"http://hubzilla.org\">hubzilla.org</a> per maggiori informazioni su $Projectname."
-#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:356
-msgid "Name of thing e.g. something"
-msgstr "Nome dell'oggetto"
+#: ../../Zotlabs/Module/Siteinfo.php:77
+msgid "Bug reports and issues: please visit"
+msgstr "Per segnalare bug e problemi: visita"
-#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357
-msgid "URL of thing (optional)"
-msgstr "Indirizzo web dell'oggetto (facoltativo)"
+#: ../../Zotlabs/Module/Siteinfo.php:79
+msgid "$projectname issues"
+msgstr "Problematiche note su $projectname"
-#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:358
-msgid "URL for photo of thing (optional)"
-msgstr "Indirizzo di un'immagine dell'oggetto (facoltativo)"
+#: ../../Zotlabs/Module/Siteinfo.php:80
+msgid ""
+"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot "
+"com"
+msgstr "Per consigli, ringraziamenti, ecc. - scrivi a \"redmatrix\" at librelist - dot com"
-#: ../../Zotlabs/Module/Thing.php:349
-msgid "Add Thing to your Profile"
-msgstr "Aggiungi l'oggetto al tuo profilo"
+#: ../../Zotlabs/Module/Siteinfo.php:82
+msgid "Site Administrators"
+msgstr "Amministratori del sito"
#: ../../Zotlabs/Module/Sources.php:37
msgid "Failed to create source. No channel selected."
@@ -6315,8 +6005,8 @@ msgstr "Sorgente aggiornata."
msgid "*"
msgstr "*"
-#: ../../Zotlabs/Module/Sources.php:96 ../../include/features.php:72
-#: ../../include/widgets.php:639
+#: ../../Zotlabs/Module/Sources.php:96 ../../include/widgets.php:630
+#: ../../include/features.php:71
msgid "Channel Sources"
msgstr "Sorgenti del canale"
@@ -6350,7 +6040,7 @@ msgstr "Nome del canale"
msgid ""
"Add the following categories to posts imported from this source (comma "
"separated)"
-msgstr "Aggiungi le seguenti categorie ai post importati da questa sorgente (separate da virgola)"
+msgstr ""
#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161
msgid "Source not found."
@@ -6392,12 +6082,12 @@ msgstr "Nessun suggerimento disponibile. Se questo sito è nuovo, riprova tra 24
msgid "Ignore/Hide"
msgstr "Ignora/nascondi"
-#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263
+#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:256
msgid "post"
msgstr "il post"
-#: ../../Zotlabs/Module/Tagger.php:57 ../../include/conversation.php:150
-#: ../../include/text.php:1929
+#: ../../Zotlabs/Module/Tagger.php:57 ../../include/text.php:1948
+#: ../../include/conversation.php:150
msgid "comment"
msgstr "il commento"
@@ -6418,110 +6108,131 @@ msgstr "Rimuovi il tag"
msgid "Select a tag to remove: "
msgstr "Seleziona un tag da rimuovere: "
-#: ../../Zotlabs/Module/Webpages.php:191 ../../Zotlabs/Lib/Apps.php:218
-#: ../../include/nav.php:106 ../../include/conversation.php:1700
-msgid "Webpages"
-msgstr "Pagine web"
+#: ../../Zotlabs/Module/Thing.php:114
+msgid "Thing updated"
+msgstr "L'oggetto è stato aggiornato"
-#: ../../Zotlabs/Module/Webpages.php:202 ../../include/page_widgets.php:44
-msgid "Actions"
-msgstr "Azioni"
+#: ../../Zotlabs/Module/Thing.php:166
+msgid "Object store: failed"
+msgstr "Impossibile memorizzare l'oggetto."
-#: ../../Zotlabs/Module/Webpages.php:203 ../../include/page_widgets.php:45
-msgid "Page Link"
-msgstr "Link alla pagina"
+#: ../../Zotlabs/Module/Thing.php:170
+msgid "Thing added"
+msgstr "L'Oggetto è stato aggiunto"
-#: ../../Zotlabs/Module/Webpages.php:204
-msgid "Page Title"
-msgstr "Titolo della pagina"
+#: ../../Zotlabs/Module/Thing.php:196
+#, php-format
+msgid "OBJ: %1$s %2$s %3$s"
+msgstr "OBJ: %1$s %2$s %3$s"
-#: ../../Zotlabs/Module/Wiki.php:34
-msgid "Not found"
-msgstr "Non trovato"
+#: ../../Zotlabs/Module/Thing.php:259
+msgid "Show Thing"
+msgstr "Mostra l'oggetto"
-#: ../../Zotlabs/Module/Wiki.php:92 ../../Zotlabs/Lib/Apps.php:219
-#: ../../include/nav.php:108 ../../include/conversation.php:1710
-#: ../../include/conversation.php:1713 ../../include/features.php:55
-msgid "Wiki"
-msgstr "Wiki"
+#: ../../Zotlabs/Module/Thing.php:266
+msgid "item not found."
+msgstr "non trovato."
-#: ../../Zotlabs/Module/Wiki.php:93
-msgid "Sandbox"
-msgstr "Sandbox"
+#: ../../Zotlabs/Module/Thing.php:299
+msgid "Edit Thing"
+msgstr "Modifica l'oggetto"
-#: ../../Zotlabs/Module/Wiki.php:95
-msgid ""
-"\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be"
-" saved*.\""
-msgstr "\"# Wiki Sandbox\\n\\nI contenuti che **modifichi** e che vedi in **anteprima** qui *non saranno salvati*.\""
+#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351
+msgid "Select a profile"
+msgstr "Scegli un profilo"
-#: ../../Zotlabs/Module/Wiki.php:164
-msgid "Revision Comparison"
-msgstr "Confronto tra revisioni"
+#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354
+msgid "Post an activity"
+msgstr "Pubblica un'attività"
-#: ../../Zotlabs/Module/Wiki.php:165
-msgid "Revert"
-msgstr "Ripristina"
+#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354
+msgid "Only sends to viewers of the applicable profile"
+msgstr "Invia solo a chi può vedere il profilo scelto"
-#: ../../Zotlabs/Module/Wiki.php:192
-msgid "Enter the name of your new wiki:"
-msgstr "Nome della tua nuova pagina wiki:"
+#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:356
+msgid "Name of thing e.g. something"
+msgstr "Nome dell'oggetto"
-#: ../../Zotlabs/Module/Wiki.php:193
-msgid "Enter the name of the new page:"
-msgstr "Nome della tua nuova pagina:"
+#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357
+msgid "URL of thing (optional)"
+msgstr "Indirizzo web dell'oggetto (facoltativo)"
+
+#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:358
+msgid "URL for photo of thing (optional)"
+msgstr "Indirizzo di un'immagine dell'oggetto (facoltativo)"
-#: ../../Zotlabs/Module/Wiki.php:194
-msgid "Enter the new name:"
-msgstr "Nuovo nome:"
+#: ../../Zotlabs/Module/Thing.php:349
+msgid "Add Thing to your Profile"
+msgstr "Aggiungi l'oggetto al tuo profilo"
-#: ../../Zotlabs/Module/Wiki.php:200 ../../include/conversation.php:1150
-msgid "Embed image from photo albums"
-msgstr "Inserisci un'immagine dall'album foto"
+#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56
+msgid "Export Channel"
+msgstr "Esporta il canale"
-#: ../../Zotlabs/Module/Wiki.php:201 ../../include/conversation.php:1234
-msgid "Embed an image from your albums"
-msgstr "Inserisci un'immagine dai tuoi album"
+#: ../../Zotlabs/Module/Uexport.php:57
+msgid ""
+"Export your basic channel information to a file. This acts as a backup of "
+"your connections, permissions, profile and basic data, which can be used to "
+"import your data to a new server hub, but does not contain your content."
+msgstr "Esporta le informazioni di base del canale in un file. In pratica è un salvataggio delle tue connessioni, dei permessi che hai assegnato e del tuo profilo che così potrà essere importato su un altro server/hub. Il file non includerà i tuoi post e altri contenuti che hai creato o caricato."
-#: ../../Zotlabs/Module/Wiki.php:203 ../../include/conversation.php:1236
-#: ../../include/conversation.php:1273
-msgid "OK"
-msgstr "OK"
+#: ../../Zotlabs/Module/Uexport.php:58
+msgid "Export Content"
+msgstr "Esporta i contenuti"
-#: ../../Zotlabs/Module/Wiki.php:204 ../../include/conversation.php:1186
-msgid "Choose images to embed"
-msgstr "Scegli le immagini da inserire"
+#: ../../Zotlabs/Module/Uexport.php:59
+msgid ""
+"Export your channel information and recent content to a JSON backup that can"
+" be restored or imported to another server hub. This backs up all of your "
+"connections, permissions, profile data and several months of posts. This "
+"file may be VERY large. Please be patient - it may take several minutes for"
+" this download to begin."
+msgstr "Esporta il tuo canale e i contenuti recenti in un file di salvataggio che potrà essere importato su un altro server/hub. Sarà un backup dei tuoi contatti, dei permessi che hai assegnato, dei dati del profilo e dei post degli ultimi mesi. Il file potrebbe essere MOLTO grande. Sarà necessario attendere con pazienza - saranno necessari molti minuti prima che inizi lo scaricamento."
-#: ../../Zotlabs/Module/Wiki.php:205 ../../include/conversation.php:1187
-msgid "Choose an album"
-msgstr "Scegli un album"
+#: ../../Zotlabs/Module/Uexport.php:60
+msgid "Export your posts from a given year."
+msgstr "Esporta i tuoi post a partire dall'anno scelto."
-#: ../../Zotlabs/Module/Wiki.php:206 ../../include/conversation.php:1188
-msgid "Choose a different album..."
-msgstr "Scegli un altro album..."
+#: ../../Zotlabs/Module/Uexport.php:62
+msgid ""
+"You may also export your posts and conversations for a particular year or "
+"month. Adjust the date in your browser location bar to select other dates. "
+"If the export fails (possibly due to memory exhaustion on your server hub), "
+"please try again selecting a more limited date range."
+msgstr "Puoi anche esportare post e conversazioni di un particolare anno o mese. Modifica la data nella barra dell'indirizzo del browser per scegliere date differenti. Se l'esportazione dovesse fallire (la memoria sul server potrebbe non bastare), riprova scegliendo un intervallo più breve tra le date."
-#: ../../Zotlabs/Module/Wiki.php:207 ../../include/conversation.php:1189
-msgid "Error getting album list"
-msgstr "Errore nell'ottenere l'elenco degli album"
+#: ../../Zotlabs/Module/Uexport.php:63
+#, php-format
+msgid ""
+"To select all posts for a given year, such as this year, visit <a "
+"href=\"%1$s\">%2$s</a>"
+msgstr "Per selezionare tutti i post di un anno, come per esempio quello in corso, visita <a href=\"%1$s\">%2$s</a> "
-#: ../../Zotlabs/Module/Wiki.php:208 ../../include/conversation.php:1190
-msgid "Error getting photo link"
-msgstr "Errore nell'ottenere il link alla foto"
+#: ../../Zotlabs/Module/Uexport.php:64
+#, 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 "Per selezionare tutti post di un dato mese, come per esempio gennaio di quest'anno, visita <a href=\"%1$s\">%2$s</a>"
-#: ../../Zotlabs/Module/Wiki.php:209 ../../include/conversation.php:1191
-msgid "Error getting album"
-msgstr "Errore nell'ottenere l'album"
+#: ../../Zotlabs/Module/Uexport.php:65
+#, 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 "Questi contenuti potranno essere importati o ripristinati visitando <a href=\"%1$s\">%2$s</a> su qualsiasi sito/hub dove è presente il tuo canale. Per mantenere l'ordinamento originale fai attenzione ad importare i file secondo la data (prima il più vecchio)"
-#: ../../Zotlabs/Module/Viewconnections.php:65
+#: ../../Zotlabs/Module/Viewconnections.php:62
msgid "No connections."
msgstr "Nessun contatto."
-#: ../../Zotlabs/Module/Viewconnections.php:78
+#: ../../Zotlabs/Module/Viewconnections.php:75
#, php-format
msgid "Visit %s's profile [%s]"
msgstr "Visita il profilo di %s [%s]"
-#: ../../Zotlabs/Module/Viewconnections.php:107
+#: ../../Zotlabs/Module/Viewconnections.php:104
msgid "View Connections"
msgstr "Elenco contatti"
@@ -6529,23 +6240,22 @@ msgstr "Elenco contatti"
msgid "Source of Item"
msgstr "Sorgente"
-#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85
-msgid "Authorize application connection"
-msgstr "Autorizza la app"
+#: ../../Zotlabs/Module/Webpages.php:184 ../../Zotlabs/Lib/Apps.php:217
+#: ../../include/nav.php:106 ../../include/conversation.php:1685
+msgid "Webpages"
+msgstr "Pagine web"
-#: ../../Zotlabs/Module/Api.php:62
-msgid "Return to your app and insert this Securty Code:"
-msgstr "Torna alla app e inserisci questo codice di sicurezza:"
+#: ../../Zotlabs/Module/Webpages.php:195 ../../include/page_widgets.php:41
+msgid "Actions"
+msgstr "Azioni"
-#: ../../Zotlabs/Module/Api.php:72
-msgid "Please login to continue."
-msgstr "Accedi al sito per continuare."
+#: ../../Zotlabs/Module/Webpages.php:196 ../../include/page_widgets.php:42
+msgid "Page Link"
+msgstr "Link alla pagina"
-#: ../../Zotlabs/Module/Api.php:87
-msgid ""
-"Do you want to authorize this application to access your posts and contacts,"
-" and/or create new posts for you?"
-msgstr "Vuoi autorizzare questa app ad accedere ai messaggi e ai contatti o creare nuovi messaggi per te?"
+#: ../../Zotlabs/Module/Webpages.php:197
+msgid "Page Title"
+msgstr "Titolo della pagina"
#: ../../Zotlabs/Module/Xchan.php:10
msgid "Xchan Lookup"
@@ -6555,6 +6265,92 @@ msgstr "Ricerca canale"
msgid "Lookup xchan beginning with (or webbie): "
msgstr "Cerca un canale (o un webbie) che inizia per:"
+#: ../../Zotlabs/Lib/Apps.php:204
+msgid "Site Admin"
+msgstr "Amministrazione sito"
+
+#: ../../Zotlabs/Lib/Apps.php:205
+msgid "Bug Report"
+msgstr "Bug Report"
+
+#: ../../Zotlabs/Lib/Apps.php:206
+msgid "View Bookmarks"
+msgstr "Vedi i segnalibri"
+
+#: ../../Zotlabs/Lib/Apps.php:207
+msgid "My Chatrooms"
+msgstr "Le mie aree chat"
+
+#: ../../Zotlabs/Lib/Apps.php:209
+msgid "Firefox Share"
+msgstr ""
+
+#: ../../Zotlabs/Lib/Apps.php:210
+msgid "Remote Diagnostics"
+msgstr ""
+
+#: ../../Zotlabs/Lib/Apps.php:211 ../../include/features.php:89
+msgid "Suggest Channels"
+msgstr "Suggerisci canali"
+
+#: ../../Zotlabs/Lib/Apps.php:212 ../../include/nav.php:110
+#: ../../boot.php:1703
+msgid "Login"
+msgstr "Accedi"
+
+#: ../../Zotlabs/Lib/Apps.php:214 ../../include/nav.php:179
+msgid "Grid"
+msgstr "Rete"
+
+#: ../../Zotlabs/Lib/Apps.php:218 ../../include/nav.php:182
+msgid "Channel Home"
+msgstr "Bacheca del canale"
+
+#: ../../Zotlabs/Lib/Apps.php:221 ../../include/nav.php:201
+#: ../../include/conversation.php:1649 ../../include/conversation.php:1652
+msgid "Events"
+msgstr "Eventi"
+
+#: ../../Zotlabs/Lib/Apps.php:222 ../../include/nav.php:167
+msgid "Directory"
+msgstr "Elenchi pubblici dei canali"
+
+#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:193
+msgid "Mail"
+msgstr "Messaggi"
+
+#: ../../Zotlabs/Lib/Apps.php:227 ../../include/nav.php:96
+msgid "Chat"
+msgstr "Chat"
+
+#: ../../Zotlabs/Lib/Apps.php:229
+msgid "Probe"
+msgstr "Diagnostica"
+
+#: ../../Zotlabs/Lib/Apps.php:230
+msgid "Suggest"
+msgstr "Suggerisci"
+
+#: ../../Zotlabs/Lib/Apps.php:231
+msgid "Random Channel"
+msgstr "Canale casuale"
+
+#: ../../Zotlabs/Lib/Apps.php:232
+msgid "Invite"
+msgstr "Invita"
+
+#: ../../Zotlabs/Lib/Apps.php:233 ../../include/widgets.php:1386
+msgid "Features"
+msgstr "Funzionalità"
+
+#: ../../Zotlabs/Lib/Apps.php:235
+msgid "Post"
+msgstr "Post"
+
+#: ../../Zotlabs/Lib/Apps.php:335
+msgid "Purchase"
+msgstr "Acquista"
+
#: ../../Zotlabs/Lib/Chatroom.php:27
msgid "Missing room name"
msgstr "Chat senza nome"
@@ -6575,19 +6371,19 @@ msgstr "Chat non trovata."
msgid "Room is full"
msgstr "La chat è al completo"
-#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1882
+#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1823
msgid "$Projectname Notification"
msgstr "Notifica $Projectname"
-#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1883
+#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1824
msgid "$projectname"
msgstr "$projectname"
-#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1885
+#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1826
msgid "Thank You,"
msgstr "Grazie,"
-#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1887
+#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1828
#, php-format
msgid "%s Administrator"
msgstr "L'amministratore di %s"
@@ -6780,97 +6576,11 @@ msgstr "Ha creato un nuovo post"
msgid "commented on %s's post"
msgstr "ha commentato il post di %s"
-#: ../../Zotlabs/Lib/Apps.php:205
-msgid "Site Admin"
-msgstr "Amministrazione sito"
-
-#: ../../Zotlabs/Lib/Apps.php:206
-msgid "Bug Report"
-msgstr "Bug Report"
-
-#: ../../Zotlabs/Lib/Apps.php:207
-msgid "View Bookmarks"
-msgstr "Vedi i segnalibri"
-
-#: ../../Zotlabs/Lib/Apps.php:208
-msgid "My Chatrooms"
-msgstr "Le mie aree chat"
-
-#: ../../Zotlabs/Lib/Apps.php:210
-msgid "Firefox Share"
-msgstr "Firefox Share"
-
-#: ../../Zotlabs/Lib/Apps.php:211
-msgid "Remote Diagnostics"
-msgstr "Diagnostica remota"
-
-#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:90
-msgid "Suggest Channels"
-msgstr "Suggerisci canali"
-
-#: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:112
-#: ../../boot.php:1704
-msgid "Login"
-msgstr "Accedi"
-
-#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:181
-msgid "Grid"
-msgstr "Rete"
-
-#: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:184
-msgid "Channel Home"
-msgstr "Bacheca del canale"
-
-#: ../../Zotlabs/Lib/Apps.php:223 ../../include/nav.php:203
-#: ../../include/conversation.php:1664 ../../include/conversation.php:1667
-msgid "Events"
-msgstr "Eventi"
-
-#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:169
-msgid "Directory"
-msgstr "Elenchi pubblici dei canali"
-
-#: ../../Zotlabs/Lib/Apps.php:226 ../../include/nav.php:195
-msgid "Mail"
-msgstr "Messaggi"
-
-#: ../../Zotlabs/Lib/Apps.php:229 ../../include/nav.php:96
-msgid "Chat"
-msgstr "Chat"
-
-#: ../../Zotlabs/Lib/Apps.php:231
-msgid "Probe"
-msgstr "Diagnostica"
-
-#: ../../Zotlabs/Lib/Apps.php:232
-msgid "Suggest"
-msgstr "Suggerisci"
-
-#: ../../Zotlabs/Lib/Apps.php:233
-msgid "Random Channel"
-msgstr "Canale casuale"
-
-#: ../../Zotlabs/Lib/Apps.php:234
-msgid "Invite"
-msgstr "Invita"
-
-#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1480
-msgid "Features"
-msgstr "Funzionalità"
-
-#: ../../Zotlabs/Lib/Apps.php:237
-msgid "Post"
-msgstr "Post"
-
-#: ../../Zotlabs/Lib/Apps.php:339
-msgid "Purchase"
-msgstr "Acquista"
-
-#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:667
+#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:664
msgid "Private Message"
msgstr "Messaggio privato"
-#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:659
+#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:656
msgid "Select"
msgstr "Scegli"
@@ -6918,11 +6628,11 @@ msgstr "Attiva/disattiva preferito"
msgid "starred"
msgstr "preferito"
-#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:674
+#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:671
msgid "Message signature validated"
msgstr "Messaggio con firma verificata"
-#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:675
+#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:672
msgid "Message signature incorrect"
msgstr "Massaggio con firma non corretta"
@@ -6978,17 +6688,17 @@ msgstr "Da bacheca a bacheca"
msgid "via Wall-To-Wall:"
msgstr "da bacheca a bacheca:"
-#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:722
+#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:719
#, php-format
msgid "from %s"
msgstr "da %s"
-#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:725
+#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:722
#, php-format
msgid "last edited: %s"
msgstr "ultima modifica: %s"
-#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:726
+#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:723
#, php-format
msgid "Expires: %s"
msgstr "Scadenza: %s"
@@ -7006,27 +6716,26 @@ msgid "Mark all seen"
msgstr "Marca tutto come letto"
#: ../../Zotlabs/Lib/ThreadItem.php:421 ../../include/js_strings.php:7
-#, php-format
-msgid "%s show all"
-msgstr "%s mostra tutto"
+msgid "[+] show all"
+msgstr "[+] mostra tutto"
-#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1226
+#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1215
msgid "Bold"
msgstr "Grassetto"
-#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1227
+#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1216
msgid "Italic"
msgstr "Corsivo"
-#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1228
+#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1217
msgid "Underline"
msgstr "Sottolineato"
-#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1229
+#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1218
msgid "Quote"
msgstr "Citazione"
-#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1230
+#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1219
msgid "Code"
msgstr "Codice"
@@ -7042,122 +6751,840 @@ msgstr "Collegamento"
msgid "Video"
msgstr "Video"
-#: ../../Zotlabs/Lib/PermissionDescription.php:31
-#: ../../include/acl_selectors.php:230
-msgid "Visible to your default audience"
-msgstr "Visibile secondo le impostazioni predefinite"
+#: ../../include/Import/import_diaspora.php:16
+msgid "No username found in import file."
+msgstr "Impossibile trovare il nome utente nel file da importare."
-#: ../../Zotlabs/Lib/PermissionDescription.php:106
-#: ../../include/acl_selectors.php:266
-msgid "Only me"
-msgstr "Solo io"
+#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:50
+msgid "Unable to create a unique channel address. Import failed."
+msgstr "Impossibile creare un indirizzo univoco per il canale. L'import è fallito."
-#: ../../Zotlabs/Lib/PermissionDescription.php:107
-msgid "Public"
-msgstr "Pubblico"
+#: ../../include/dba/dba_driver.php:171
+#, php-format
+msgid "Cannot locate DNS info for database server '%s'"
+msgstr "Non trovo le informazioni DNS per il database server '%s'"
-#: ../../Zotlabs/Lib/PermissionDescription.php:108
-msgid "Anybody in the $Projectname network"
-msgstr "Tutti sulla rete $Projectname"
+#: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270
+#: ../../include/widgets.php:46 ../../include/widgets.php:429
+#: ../../include/contact_widgets.php:91
+msgid "Categories"
+msgstr "Categorie"
-#: ../../Zotlabs/Lib/PermissionDescription.php:109
-#, php-format
-msgid "Any account on %s"
-msgstr "Tutti gli account su %s"
+#: ../../include/taxonomy.php:228 ../../include/taxonomy.php:249
+msgid "Tags"
+msgstr "Tag"
-#: ../../Zotlabs/Lib/PermissionDescription.php:110
-msgid "Any of my connections"
-msgstr "Chiunque tra i miei contatti"
+#: ../../include/taxonomy.php:293
+msgid "Keywords"
+msgstr "Parole chiave"
-#: ../../Zotlabs/Lib/PermissionDescription.php:111
-msgid "Only connections I specifically allow"
-msgstr "Solo chi riceve il mio permesso"
+#: ../../include/taxonomy.php:314
+msgid "have"
+msgstr "ho"
-#: ../../Zotlabs/Lib/PermissionDescription.php:112
-msgid "Anybody authenticated (could include visitors from other networks)"
-msgstr "Chiunque sia autenticato (inclusi visitatori di altre reti)"
+#: ../../include/taxonomy.php:314
+msgid "has"
+msgstr "ha"
-#: ../../Zotlabs/Lib/PermissionDescription.php:113
-msgid "Any connections including those who haven't yet been approved"
-msgstr "Tutti i contatti inclusi quelli non ancora approvati"
+#: ../../include/taxonomy.php:315
+msgid "want"
+msgstr "voglio"
-#: ../../Zotlabs/Lib/PermissionDescription.php:152
-msgid ""
-"This is your default setting for the audience of your normal stream, and "
-"posts."
-msgstr "Impostazione predefinita di chi può vedere ciò che pubblichi in bacheca"
+#: ../../include/taxonomy.php:315
+msgid "wants"
+msgstr "vuole"
-#: ../../Zotlabs/Lib/PermissionDescription.php:153
-msgid ""
-"This is your default setting for who can view your default channel profile"
-msgstr "Impostazione predefinita di chi può vedere il profilo standard del tuo canale"
+#: ../../include/taxonomy.php:316
+msgid "likes"
+msgstr "gli piace"
-#: ../../Zotlabs/Lib/PermissionDescription.php:154
-msgid "This is your default setting for who can view your connections"
-msgstr "Impostazione predefinita di chi può vedere i tuoi contatti/amici"
+#: ../../include/taxonomy.php:317
+msgid "dislikes"
+msgstr "non gli piace"
+
+#: ../../include/event.php:22 ../../include/event.php:69
+#: ../../include/bb2diaspora.php:485
+msgid "l F d, Y \\@ g:i A"
+msgstr "l d F Y \\@ G:i"
+
+#: ../../include/event.php:30 ../../include/event.php:73
+#: ../../include/bb2diaspora.php:491
+msgid "Starts:"
+msgstr "Inizio:"
+
+#: ../../include/event.php:40 ../../include/event.php:77
+#: ../../include/bb2diaspora.php:499
+msgid "Finishes:"
+msgstr "Fine:"
+
+#: ../../include/event.php:812
+msgid "This event has been added to your calendar."
+msgstr "Questo evento è stato aggiunto al tuo calendario"
+
+#: ../../include/event.php:1012
+msgid "Not specified"
+msgstr "Non specificato"
+
+#: ../../include/event.php:1013
+msgid "Needs Action"
+msgstr "Necessita di un intervento"
+
+#: ../../include/event.php:1014
+msgid "Completed"
+msgstr "Completato"
-#: ../../Zotlabs/Lib/PermissionDescription.php:155
+#: ../../include/event.php:1015
+msgid "In Process"
+msgstr "In corso"
+
+#: ../../include/event.php:1016
+msgid "Cancelled"
+msgstr "Annullato"
+
+#: ../../include/import.php:29
msgid ""
-"This is your default setting for who can view your file storage and photos"
-msgstr "Impostazione predefinita di chi può vedere le foto e il tuo archivio file"
+"Cannot create a duplicate channel identifier on this system. Import failed."
+msgstr "Non posso creare un canale con un identificativo che già esiste su questo sistema. L'importazione è fallita."
-#: ../../Zotlabs/Lib/PermissionDescription.php:156
-msgid "This is your default setting for the audience of your webpages"
-msgstr "Impostazione predefinita di chi può vedere le tue pagine web"
+#: ../../include/import.php:76
+msgid "Channel clone failed. Import failed."
+msgstr "Impossibile clonare il canale. L'importazione è fallita."
-#: ../../include/Import/import_diaspora.php:16
-msgid "No username found in import file."
-msgstr "Impossibile trovare il nome utente nel file da importare."
+#: ../../include/items.php:892 ../../include/items.php:937
+msgid "(Unknown)"
+msgstr "(Sconosciuto)"
-#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:51
-msgid "Unable to create a unique channel address. Import failed."
-msgstr "Impossibile creare un indirizzo univoco per il canale. L'import è fallito."
+#: ../../include/items.php:1136
+msgid "Visible to anybody on the internet."
+msgstr "Visibile a chiunque su internet."
-#: ../../include/dba/dba_driver.php:171
+#: ../../include/items.php:1138
+msgid "Visible to you only."
+msgstr "Visibile solo a te."
+
+#: ../../include/items.php:1140
+msgid "Visible to anybody in this network."
+msgstr "Visibile a tutti su questa rete."
+
+#: ../../include/items.php:1142
+msgid "Visible to anybody authenticated."
+msgstr "Visibile a chiunque sia autenticato."
+
+#: ../../include/items.php:1144
#, php-format
-msgid "Cannot locate DNS info for database server '%s'"
-msgstr "Non trovo le informazioni DNS per il database server '%s'"
+msgid "Visible to anybody on %s."
+msgstr "Visibile a tutti su %s."
+
+#: ../../include/items.php:1146
+msgid "Visible to all connections."
+msgstr "Visibile a tutti coloro che ti seguono."
-#: ../../include/photos.php:114
+#: ../../include/items.php:1148
+msgid "Visible to approved connections."
+msgstr "Visibile ai contatti approvati."
+
+#: ../../include/items.php:1150
+msgid "Visible to specific connections."
+msgstr "Visibile ad alcuni contatti scelti."
+
+#: ../../include/items.php:3909
+msgid "Privacy group is empty."
+msgstr "Gruppo di canali vuoto."
+
+#: ../../include/items.php:3916
#, php-format
-msgid "Image exceeds website size limit of %lu bytes"
-msgstr "L'immagine supera il limite massimo di %lu bytes"
+msgid "Privacy group: %s"
+msgstr "Gruppo di canali: %s"
-#: ../../include/photos.php:121
-msgid "Image file is empty."
-msgstr "Il file dell'immagine è vuoto."
+#: ../../include/items.php:3928
+msgid "Connection not found."
+msgstr "Contatto non trovato."
-#: ../../include/photos.php:259
-msgid "Photo storage failed."
-msgstr "Impossibile salvare la foto."
+#: ../../include/items.php:4277
+msgid "profile photo"
+msgstr "foto del profilo"
-#: ../../include/photos.php:299
-msgid "a new photo"
-msgstr "una nuova foto"
+#: ../../include/message.php:20
+msgid "No recipient provided."
+msgstr "Devi scegliere un destinatario."
+
+#: ../../include/message.php:25
+msgid "[no subject]"
+msgstr "[nessun titolo]"
+
+#: ../../include/message.php:45
+msgid "Unable to determine sender."
+msgstr "Impossibile determinare il mittente."
+
+#: ../../include/message.php:222
+msgid "Stored post could not be verified."
+msgstr "Non è stato possibile verificare il post."
+
+#: ../../include/text.php:428
+msgid "prev"
+msgstr "prec"
+
+#: ../../include/text.php:430
+msgid "first"
+msgstr "inizio"
+
+#: ../../include/text.php:459
+msgid "last"
+msgstr "fine"
+
+#: ../../include/text.php:462
+msgid "next"
+msgstr "succ"
+
+#: ../../include/text.php:472
+msgid "older"
+msgstr "più recenti"
+
+#: ../../include/text.php:474
+msgid "newer"
+msgstr "più nuovi"
+
+#: ../../include/text.php:863
+msgid "No connections"
+msgstr "Nessun contatto"
-#: ../../include/photos.php:303
+#: ../../include/text.php:888
#, 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 "View all %s connections"
+msgstr "Mostra tutti i %s contatti"
-#: ../../include/photos.php:506 ../../include/conversation.php:1650
-msgid "Photo Albums"
-msgstr "Album foto"
+#: ../../include/text.php:1033 ../../include/text.php:1038
+msgid "poke"
+msgstr "poke"
-#: ../../include/photos.php:510
-msgid "Upload New Photos"
-msgstr "Carica nuove foto"
+#: ../../include/text.php:1033 ../../include/text.php:1038
+#: ../../include/conversation.php:243
+msgid "poked"
+msgstr "ha mandato un poke"
+
+#: ../../include/text.php:1039
+msgid "ping"
+msgstr "ping"
+
+#: ../../include/text.php:1039
+msgid "pinged"
+msgstr "ha effettuato un ping"
+
+#: ../../include/text.php:1040
+msgid "prod"
+msgstr "spintone"
+
+#: ../../include/text.php:1040
+msgid "prodded"
+msgstr "ha ricevuto uno spintone"
+
+#: ../../include/text.php:1041
+msgid "slap"
+msgstr "schiaffo"
+
+#: ../../include/text.php:1041
+msgid "slapped"
+msgstr "ha ricevuto uno schiaffo"
+
+#: ../../include/text.php:1042
+msgid "finger"
+msgstr "finger"
+
+#: ../../include/text.php:1042
+msgid "fingered"
+msgstr "ha ricevuto un finger"
+
+#: ../../include/text.php:1043
+msgid "rebuff"
+msgstr "rifiuto"
+
+#: ../../include/text.php:1043
+msgid "rebuffed"
+msgstr "ha ricevuto un rifiuto"
+
+#: ../../include/text.php:1055
+msgid "happy"
+msgstr "felice"
+
+#: ../../include/text.php:1056
+msgid "sad"
+msgstr "triste"
+
+#: ../../include/text.php:1057
+msgid "mellow"
+msgstr "calmo"
+
+#: ../../include/text.php:1058
+msgid "tired"
+msgstr "stanco"
+
+#: ../../include/text.php:1059
+msgid "perky"
+msgstr "vivace"
+
+#: ../../include/text.php:1060
+msgid "angry"
+msgstr "arrabbiato"
+
+#: ../../include/text.php:1061
+msgid "stupefied"
+msgstr "stupito"
+
+#: ../../include/text.php:1062
+msgid "puzzled"
+msgstr "confuso"
+
+#: ../../include/text.php:1063
+msgid "interested"
+msgstr "attento"
+
+#: ../../include/text.php:1064
+msgid "bitter"
+msgstr "amaro"
+
+#: ../../include/text.php:1065
+msgid "cheerful"
+msgstr "allegro"
+
+#: ../../include/text.php:1066
+msgid "alive"
+msgstr "vivace"
+
+#: ../../include/text.php:1067
+msgid "annoyed"
+msgstr "seccato"
+
+#: ../../include/text.php:1068
+msgid "anxious"
+msgstr "ansioso"
+
+#: ../../include/text.php:1069
+msgid "cranky"
+msgstr "irritabile"
+
+#: ../../include/text.php:1070
+msgid "disturbed"
+msgstr "turbato"
+
+#: ../../include/text.php:1071
+msgid "frustrated"
+msgstr "frustrato"
+
+#: ../../include/text.php:1072
+msgid "depressed"
+msgstr "in depressione"
+
+#: ../../include/text.php:1073
+msgid "motivated"
+msgstr "motivato"
+
+#: ../../include/text.php:1074
+msgid "relaxed"
+msgstr "rilassato"
+
+#: ../../include/text.php:1075
+msgid "surprised"
+msgstr "sorpreso"
+
+#: ../../include/text.php:1257 ../../include/js_strings.php:70
+msgid "Monday"
+msgstr "lunedì"
+
+#: ../../include/text.php:1257 ../../include/js_strings.php:71
+msgid "Tuesday"
+msgstr "martedì"
+
+#: ../../include/text.php:1257 ../../include/js_strings.php:72
+msgid "Wednesday"
+msgstr "mercoledì"
+
+#: ../../include/text.php:1257 ../../include/js_strings.php:73
+msgid "Thursday"
+msgstr "giovedì"
+
+#: ../../include/text.php:1257 ../../include/js_strings.php:74
+msgid "Friday"
+msgstr "venerdì"
+
+#: ../../include/text.php:1257 ../../include/js_strings.php:75
+msgid "Saturday"
+msgstr "sabato"
+
+#: ../../include/text.php:1257 ../../include/js_strings.php:69
+msgid "Sunday"
+msgstr "domenica"
+
+#: ../../include/text.php:1261 ../../include/js_strings.php:45
+msgid "January"
+msgstr "gennaio"
+
+#: ../../include/text.php:1261 ../../include/js_strings.php:46
+msgid "February"
+msgstr "febbraio"
+
+#: ../../include/text.php:1261 ../../include/js_strings.php:47
+msgid "March"
+msgstr "marzo"
+
+#: ../../include/text.php:1261 ../../include/js_strings.php:48
+msgid "April"
+msgstr "aprile"
+
+#: ../../include/text.php:1261
+msgid "May"
+msgstr "Mag"
+
+#: ../../include/text.php:1261 ../../include/js_strings.php:50
+msgid "June"
+msgstr "giugno"
+
+#: ../../include/text.php:1261 ../../include/js_strings.php:51
+msgid "July"
+msgstr "luglio"
+
+#: ../../include/text.php:1261 ../../include/js_strings.php:52
+msgid "August"
+msgstr "agosto"
+
+#: ../../include/text.php:1261 ../../include/js_strings.php:53
+msgid "September"
+msgstr "settembre"
+
+#: ../../include/text.php:1261 ../../include/js_strings.php:54
+msgid "October"
+msgstr "ottobre"
+
+#: ../../include/text.php:1261 ../../include/js_strings.php:55
+msgid "November"
+msgstr "novembre"
+
+#: ../../include/text.php:1261 ../../include/js_strings.php:56
+msgid "December"
+msgstr "dicembre"
+
+#: ../../include/text.php:1338 ../../include/text.php:1342
+msgid "Unknown Attachment"
+msgstr "Allegato non riconoscuto"
+
+#: ../../include/text.php:1344
+msgid "unknown"
+msgstr "sconosciuta"
+
+#: ../../include/text.php:1380
+msgid "remove category"
+msgstr "rimuovi la categoria"
+
+#: ../../include/text.php:1457
+msgid "remove from file"
+msgstr "rimuovi dal file"
+
+#: ../../include/text.php:1753 ../../include/text.php:1824
+msgid "default"
+msgstr "predefinito"
+
+#: ../../include/text.php:1761
+msgid "Page layout"
+msgstr "Layout della pagina"
+
+#: ../../include/text.php:1761
+msgid "You can create your own with the layouts tool"
+msgstr "Puoi creare un tuo layout dalla configurazione delle pagine web"
+
+#: ../../include/text.php:1803
+msgid "Page content type"
+msgstr "Tipo di contenuto della pagina"
+
+#: ../../include/text.php:1836
+msgid "Select an alternate language"
+msgstr "Seleziona una lingua diversa"
+
+#: ../../include/text.php:1953
+msgid "activity"
+msgstr "l'attività"
+
+#: ../../include/text.php:2262
+msgid "Design Tools"
+msgstr "Strumenti di design"
+
+#: ../../include/text.php:2268
+msgid "Pages"
+msgstr "Pagine"
+
+#: ../../include/widgets.php:103
+msgid "System"
+msgstr "Sistema"
+
+#: ../../include/widgets.php:106
+msgid "New App"
+msgstr "Nuova app"
+
+#: ../../include/widgets.php:154
+msgid "Suggestions"
+msgstr "Suggerimenti"
+
+#: ../../include/widgets.php:155
+msgid "See more..."
+msgstr "Altro..."
+
+#: ../../include/widgets.php:175
+#, php-format
+msgid "You have %1$.0f of %2$.0f allowed connections."
+msgstr "Hai attivato %1$.0f delle %2$.0f connessioni permesse."
+
+#: ../../include/widgets.php:181
+msgid "Add New Connection"
+msgstr "Aggiungi un contatto"
+
+#: ../../include/widgets.php:182
+msgid "Enter channel address"
+msgstr "Indirizzo del canale"
+
+#: ../../include/widgets.php:183
+msgid "Examples: bob@example.com, https://example.com/barbara"
+msgstr "Per esempio: bob@example.com, https://example.com/barbara"
+
+#: ../../include/widgets.php:199
+msgid "Notes"
+msgstr "Note"
+
+#: ../../include/widgets.php:273
+msgid "Remove term"
+msgstr "Rimuovi termine"
+
+#: ../../include/widgets.php:281 ../../include/features.php:84
+msgid "Saved Searches"
+msgstr "Ricerche salvate"
+
+#: ../../include/widgets.php:282 ../../include/group.php:316
+msgid "add"
+msgstr "aggiungi"
+
+#: ../../include/widgets.php:310 ../../include/contact_widgets.php:53
+#: ../../include/features.php:98
+msgid "Saved Folders"
+msgstr "Cartelle salvate"
+
+#: ../../include/widgets.php:313 ../../include/widgets.php:432
+#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94
+msgid "Everything"
+msgstr "Tutto"
+
+#: ../../include/widgets.php:354
+msgid "Archives"
+msgstr "Archivi"
+
+#: ../../include/widgets.php:516
+msgid "Refresh"
+msgstr "Aggiorna"
+
+#: ../../include/widgets.php:556
+msgid "Account settings"
+msgstr "Il tuo account"
+
+#: ../../include/widgets.php:562
+msgid "Channel settings"
+msgstr "Impostazioni del canale"
+
+#: ../../include/widgets.php:571
+msgid "Additional features"
+msgstr "Funzionalità opzionali"
+
+#: ../../include/widgets.php:578
+msgid "Feature/Addon settings"
+msgstr "Componenti aggiuntivi"
+
+#: ../../include/widgets.php:584
+msgid "Display settings"
+msgstr "Aspetto"
+
+#: ../../include/widgets.php:591
+msgid "Manage locations"
+msgstr "Gestione repliche"
+
+#: ../../include/widgets.php:600
+msgid "Export channel"
+msgstr "Esporta il canale"
+
+#: ../../include/widgets.php:607
+msgid "Connected apps"
+msgstr "App connesse"
+
+#: ../../include/widgets.php:622
+msgid "Premium Channel Settings"
+msgstr "Canale premium - impostazioni"
+
+#: ../../include/widgets.php:651
+msgid "Private Mail Menu"
+msgstr "Menu messaggi privati"
+
+#: ../../include/widgets.php:653
+msgid "Combined View"
+msgstr "Vista combinata"
+
+#: ../../include/widgets.php:658 ../../include/nav.php:196
+msgid "Inbox"
+msgstr "In arrivo"
+
+#: ../../include/widgets.php:663 ../../include/nav.php:197
+msgid "Outbox"
+msgstr "Inviati"
+
+#: ../../include/widgets.php:668 ../../include/nav.php:198
+msgid "New Message"
+msgstr "Nuovo messaggio"
+
+#: ../../include/widgets.php:685 ../../include/widgets.php:697
+msgid "Conversations"
+msgstr "Conversazioni"
+
+#: ../../include/widgets.php:689
+msgid "Received Messages"
+msgstr "Ricevuti"
+
+#: ../../include/widgets.php:693
+msgid "Sent Messages"
+msgstr "Inviati"
+
+#: ../../include/widgets.php:707
+msgid "No messages."
+msgstr "Nessun messaggio."
+
+#: ../../include/widgets.php:725
+msgid "Delete conversation"
+msgstr "Elimina la conversazione"
+
+#: ../../include/widgets.php:751
+msgid "Events Menu"
+msgstr "Menu eventi"
+
+#: ../../include/widgets.php:752
+msgid "Day View"
+msgstr "Eventi del giorno"
+
+#: ../../include/widgets.php:753
+msgid "Week View"
+msgstr "Eventi della settimana"
+
+#: ../../include/widgets.php:754
+msgid "Month View"
+msgstr "Eventi del mese"
+
+#: ../../include/widgets.php:766
+msgid "Events Tools"
+msgstr "Gestione eventi"
+
+#: ../../include/widgets.php:767
+msgid "Export Calendar"
+msgstr "Esporta calendario"
+
+#: ../../include/widgets.php:768
+msgid "Import Calendar"
+msgstr "Importa calendario"
+
+#: ../../include/widgets.php:842 ../../include/conversation.php:1662
+#: ../../include/conversation.php:1665
+msgid "Chatrooms"
+msgstr "Chat"
+
+#: ../../include/widgets.php:846
+msgid "Overview"
+msgstr "Riepilogo"
+
+#: ../../include/widgets.php:853
+msgid "Chat Members"
+msgstr "Partecipanti"
+
+#: ../../include/widgets.php:876
+msgid "Bookmarked Chatrooms"
+msgstr "Chat nei segnalibri"
+
+#: ../../include/widgets.php:899
+msgid "Suggested Chatrooms"
+msgstr "Chat suggerite"
+
+#: ../../include/widgets.php:1044 ../../include/widgets.php:1156
+msgid "photo/image"
+msgstr "foto/immagine"
+
+#: ../../include/widgets.php:1099
+msgid "Click to show more"
+msgstr "Clicca per mostrare tutto"
+
+#: ../../include/widgets.php:1250
+msgid "Rating Tools"
+msgstr "Valutazione"
+
+#: ../../include/widgets.php:1254 ../../include/widgets.php:1256
+msgid "Rate Me"
+msgstr "Valutami"
+
+#: ../../include/widgets.php:1259
+msgid "View Ratings"
+msgstr "Vedi le valutazioni ricevute"
+
+#: ../../include/widgets.php:1316
+msgid "Forums"
+msgstr "Forum"
+
+#: ../../include/widgets.php:1345
+msgid "Tasks"
+msgstr "Attività"
+
+#: ../../include/widgets.php:1354
+msgid "Documentation"
+msgstr "Guida"
+
+#: ../../include/widgets.php:1356
+msgid "Project/Site Information"
+msgstr "Informazioni sul sito/progetto"
+
+#: ../../include/widgets.php:1357
+msgid "For Members"
+msgstr "Per gli utenti"
+
+#: ../../include/widgets.php:1358
+msgid "For Administrators"
+msgstr "Per gli amministratori"
+
+#: ../../include/widgets.php:1359
+msgid "For Developers"
+msgstr "Per sviluppatori"
+
+#: ../../include/widgets.php:1383 ../../include/widgets.php:1421
+msgid "Member registrations waiting for confirmation"
+msgstr "Richieste in attesa di conferma"
+
+#: ../../include/widgets.php:1389
+msgid "Inspect queue"
+msgstr "Coda di attesa"
+
+#: ../../include/widgets.php:1391
+msgid "DB updates"
+msgstr "Aggiornamenti al DB"
+
+#: ../../include/widgets.php:1416 ../../include/nav.php:216
+msgid "Admin"
+msgstr "Amministrazione"
+
+#: ../../include/widgets.php:1417
+msgid "Plugin Features"
+msgstr "Plugin"
+
+#: ../../include/follow.php:27
+msgid "Channel is blocked on this site."
+msgstr "Il canale è bloccato per questo sito."
+
+#: ../../include/follow.php:32
+msgid "Channel location missing."
+msgstr "Manca l'indirizzo del canale."
+
+#: ../../include/follow.php:81
+msgid "Response from remote channel was incomplete."
+msgstr "La risposta dal canale non è completa."
+
+#: ../../include/follow.php:98
+msgid "Channel was deleted and no longer exists."
+msgstr "Il canale è stato rimosso e non esiste più."
+
+#: ../../include/follow.php:154 ../../include/follow.php:190
+msgid "Protocol disabled."
+msgstr "Protocollo disabilitato."
+
+#: ../../include/follow.php:178
+msgid "Channel discovery failed."
+msgstr "La ricerca del canale non ha avuto successo."
+
+#: ../../include/follow.php:216
+msgid "Cannot connect to yourself."
+msgstr "Non puoi connetterti a te stesso."
+
+#: ../../include/bookmarks.php:35
+#, php-format
+msgid "%1$s's bookmarks"
+msgstr "I segnalibri di %1$s"
+
+#: ../../include/api.php:1336
+msgid "Public Timeline"
+msgstr "Diario pubblico"
+
+#: ../../include/bbcode.php:123 ../../include/bbcode.php:844
+#: ../../include/bbcode.php:847 ../../include/bbcode.php:852
+#: ../../include/bbcode.php:855 ../../include/bbcode.php:858
+#: ../../include/bbcode.php:861 ../../include/bbcode.php:866
+#: ../../include/bbcode.php:869 ../../include/bbcode.php:874
+#: ../../include/bbcode.php:877 ../../include/bbcode.php:880
+#: ../../include/bbcode.php:883
+msgid "Image/photo"
+msgstr "Immagine"
+
+#: ../../include/bbcode.php:162 ../../include/bbcode.php:894
+msgid "Encrypted content"
+msgstr "Contenuto cifrato"
+
+#: ../../include/bbcode.php:178
+#, php-format
+msgid "Install %s element: "
+msgstr "Installa l'elemento %s:"
+
+#: ../../include/bbcode.php:182
+#, 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:254
+#, php-format
+msgid "%1$s wrote the following %2$s %3$s"
+msgstr "%1$s ha scritto %2$s %3$s"
+
+#: ../../include/bbcode.php:331 ../../include/bbcode.php:339
+msgid "Click to open/close"
+msgstr "Clicca per aprire/chiudere"
-#: ../../include/nav.php:82 ../../include/nav.php:115 ../../boot.php:1703
+#: ../../include/bbcode.php:339
+msgid "spoiler"
+msgstr "spoiler"
+
+#: ../../include/bbcode.php:585
+msgid "Different viewers will see this text differently"
+msgstr "Ad altri questo testo potrebbe apparire in modo differente"
+
+#: ../../include/bbcode.php:832
+msgid "$1 wrote:"
+msgstr "$1 ha scritto:"
+
+#: ../../include/dir_fns.php:141
+msgid "Directory Options"
+msgstr "Visibilità negli elenchi pubblici"
+
+#: ../../include/dir_fns.php:143
+msgid "Safe Mode"
+msgstr "Modalità SafeSearch"
+
+#: ../../include/dir_fns.php:144
+msgid "Public Forums Only"
+msgstr "Solo forum pubblici"
+
+#: ../../include/dir_fns.php:145
+msgid "This Website Only"
+msgstr "Solo in questo sito"
+
+#: ../../include/security.php:383
+msgid ""
+"The form security token was not correct. This probably happened because the "
+"form has been opened for too long (>3 hours) before submitting it."
+msgstr "I controlli di sicurezza sono falliti. Probabilmente è accaduto perché la pagina è stata tenuta aperta troppo a lungo (ore?) prima di inviare il contenuto."
+
+#: ../../include/nav.php:82 ../../include/nav.php:113 ../../boot.php:1702
msgid "Logout"
msgstr "Esci"
-#: ../../include/nav.php:82 ../../include/nav.php:115
+#: ../../include/nav.php:82 ../../include/nav.php:113
msgid "End this session"
msgstr "Chiudi questa sessione"
-#: ../../include/nav.php:85 ../../include/nav.php:146
+#: ../../include/nav.php:85 ../../include/nav.php:144
msgid "Home"
msgstr "Bacheca"
@@ -7173,7 +7600,7 @@ msgstr "Il tuo profilo"
msgid "Manage/Edit profiles"
msgstr "Gestisci i tuoi profili"
-#: ../../include/nav.php:90 ../../include/channel.php:980
+#: ../../include/nav.php:90 ../../include/channel.php:941
msgid "Edit Profile"
msgstr "Modifica il profilo"
@@ -7193,7 +7620,7 @@ msgstr "I tuoi file"
msgid "Your chatrooms"
msgstr "Le tue chat"
-#: ../../include/nav.php:102 ../../include/conversation.php:1690
+#: ../../include/nav.php:102 ../../include/conversation.php:1675
msgid "Bookmarks"
msgstr "Segnalibri"
@@ -7205,408 +7632,181 @@ msgstr "I tuoi segnalibri"
msgid "Your webpages"
msgstr "Le tue pagine web"
-#: ../../include/nav.php:108
-msgid "Your wiki"
-msgstr "La tua wiki"
-
-#: ../../include/nav.php:112
+#: ../../include/nav.php:110
msgid "Sign in"
msgstr "Accedi"
-#: ../../include/nav.php:129
+#: ../../include/nav.php:127
#, php-format
msgid "%s - click to logout"
msgstr "%s - clicca per uscire"
-#: ../../include/nav.php:132
+#: ../../include/nav.php:130
msgid "Remote authentication"
msgstr "Accedi dal tuo hub"
-#: ../../include/nav.php:132
+#: ../../include/nav.php:130
msgid "Click to authenticate to your home hub"
msgstr "Clicca per farti riconoscere dal tuo hub principale"
-#: ../../include/nav.php:146
+#: ../../include/nav.php:144
msgid "Home Page"
msgstr "Bacheca"
-#: ../../include/nav.php:149
+#: ../../include/nav.php:147
msgid "Create an account"
msgstr "Crea un account"
-#: ../../include/nav.php:161
+#: ../../include/nav.php:159
msgid "Help and documentation"
msgstr "Guida e documentazione"
-#: ../../include/nav.php:165
+#: ../../include/nav.php:163
msgid "Applications, utilities, links, games"
msgstr "Applicazioni, utilità, link, giochi"
-#: ../../include/nav.php:167
+#: ../../include/nav.php:165
msgid "Search site @name, #tag, ?docs, content"
msgstr "Cerca nel sito per @nome, #tag, ?guida o per contenuto"
-#: ../../include/nav.php:169
+#: ../../include/nav.php:167
msgid "Channel Directory"
msgstr "Elenchi pubblici dei canali"
-#: ../../include/nav.php:181
+#: ../../include/nav.php:179
msgid "Your grid"
msgstr "La tua rete"
-#: ../../include/nav.php:182
+#: ../../include/nav.php:180
msgid "Mark all grid notifications seen"
msgstr "Segna come lette le notifiche della tua rete"
-#: ../../include/nav.php:184
+#: ../../include/nav.php:182
msgid "Channel home"
msgstr "Bacheca del canale"
-#: ../../include/nav.php:185
+#: ../../include/nav.php:183
msgid "Mark all channel notifications seen"
msgstr "Segna come lette le notifiche del canale"
-#: ../../include/nav.php:191
+#: ../../include/nav.php:189
msgid "Notices"
msgstr "Avvisi"
-#: ../../include/nav.php:191
+#: ../../include/nav.php:189
msgid "Notifications"
msgstr "Notifiche"
-#: ../../include/nav.php:192
+#: ../../include/nav.php:190
msgid "See all notifications"
msgstr "Vedi tutte le notifiche"
-#: ../../include/nav.php:195
+#: ../../include/nav.php:193
msgid "Private mail"
msgstr "Messaggi privati"
-#: ../../include/nav.php:196
+#: ../../include/nav.php:194
msgid "See all private messages"
msgstr "Guarda tutti i messaggi privati"
-#: ../../include/nav.php:197
+#: ../../include/nav.php:195
msgid "Mark all private messages seen"
msgstr "Segna come letti tutti i messaggi privati"
-#: ../../include/nav.php:198 ../../include/widgets.php:667
-msgid "Inbox"
-msgstr "In arrivo"
-
-#: ../../include/nav.php:199 ../../include/widgets.php:672
-msgid "Outbox"
-msgstr "Inviati"
-
-#: ../../include/nav.php:200 ../../include/widgets.php:677
-msgid "New Message"
-msgstr "Nuovo messaggio"
-
-#: ../../include/nav.php:203
+#: ../../include/nav.php:201
msgid "Event Calendar"
msgstr "Calendario"
-#: ../../include/nav.php:204
+#: ../../include/nav.php:202
msgid "See all events"
msgstr "Guarda tutti gli eventi"
-#: ../../include/nav.php:205
+#: ../../include/nav.php:203
msgid "Mark all events seen"
msgstr "Marca come letti tutti gli eventi"
-#: ../../include/nav.php:208
+#: ../../include/nav.php:206
msgid "Manage Your Channels"
msgstr "Gestisci i tuoi canali"
-#: ../../include/nav.php:210
+#: ../../include/nav.php:208
msgid "Account/Channel Settings"
msgstr "Impostazioni dell'account e del canale"
-#: ../../include/nav.php:218 ../../include/widgets.php:1510
-msgid "Admin"
-msgstr "Amministrazione"
-
-#: ../../include/nav.php:218
+#: ../../include/nav.php:216
msgid "Site Setup and Configuration"
msgstr "Installazione e configurazione del sito"
-#: ../../include/nav.php:249 ../../include/conversation.php:854
+#: ../../include/nav.php:247 ../../include/conversation.php:851
msgid "Loading..."
msgstr "Caricamento in corso..."
-#: ../../include/nav.php:254
+#: ../../include/nav.php:252
msgid "@name, #tag, ?doc, content"
msgstr "@nome, #tag, ?guida, contenuto"
-#: ../../include/nav.php:255
+#: ../../include/nav.php:253
msgid "Please wait..."
msgstr "Attendere..."
-#: ../../include/network.php:704
-msgid "view full size"
-msgstr "guarda nelle dimensioni reali"
-
-#: ../../include/network.php:1930 ../../include/account.php:317
-#: ../../include/account.php:344 ../../include/account.php:404
-msgid "Administrator"
-msgstr "Amministratore"
-
-#: ../../include/network.php:1944
-msgid "No Subject"
-msgstr "Nessun titolo"
-
-#: ../../include/network.php:2198 ../../include/network.php:2199
-msgid "Friendica"
-msgstr "Friendica"
-
-#: ../../include/network.php:2200
-msgid "OStatus"
-msgstr "OStatus"
-
-#: ../../include/network.php:2201
-msgid "GNU-Social"
-msgstr "GNU-Social"
-
-#: ../../include/network.php:2202
-msgid "RSS/Atom"
-msgstr "RSS/Atom"
-
-#: ../../include/network.php:2204
-msgid "Diaspora"
-msgstr "Diaspora"
-
-#: ../../include/network.php:2205
-msgid "Facebook"
-msgstr "Facebook"
-
-#: ../../include/network.php:2206
-msgid "Zot"
-msgstr "Zot"
-
-#: ../../include/network.php:2207
-msgid "LinkedIn"
-msgstr "LinkedIn"
-
-#: ../../include/network.php:2208
-msgid "XMPP/IM"
-msgstr "XMPP/IM"
-
-#: ../../include/network.php:2209
-msgid "MySpace"
-msgstr "MySpace"
-
-#: ../../include/page_widgets.php:7
-msgid "New Page"
-msgstr "Nuova pagina web"
-
-#: ../../include/page_widgets.php:46
-msgid "Title"
-msgstr "Titolo"
-
-#: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270
-#: ../../include/widgets.php:46 ../../include/widgets.php:429
-#: ../../include/contact_widgets.php:91
-msgid "Categories"
-msgstr "Categorie"
-
-#: ../../include/taxonomy.php:228 ../../include/taxonomy.php:249
-msgid "Tags"
-msgstr "Tag"
-
-#: ../../include/taxonomy.php:293
-msgid "Keywords"
-msgstr "Parole chiave"
-
-#: ../../include/taxonomy.php:314
-msgid "have"
-msgstr "ho"
-
-#: ../../include/taxonomy.php:314
-msgid "has"
-msgstr "ha"
-
-#: ../../include/taxonomy.php:315
-msgid "want"
-msgstr "voglio"
-
-#: ../../include/taxonomy.php:315
-msgid "wants"
-msgstr "vuole"
-
-#: ../../include/taxonomy.php:316
-msgid "likes"
-msgstr "gli piace"
-
-#: ../../include/taxonomy.php:317
-msgid "dislikes"
-msgstr "non gli piace"
-
-#: ../../include/channel.php:33
-msgid "Unable to obtain identity information from database"
-msgstr "Impossibile ottenere le informazioni di identificazione dal database"
-
-#: ../../include/channel.php:67
-msgid "Empty name"
-msgstr "Nome vuoto"
-
-#: ../../include/channel.php:70
-msgid "Name too long"
-msgstr "Nome troppo lungo"
-
-#: ../../include/channel.php:181
-msgid "No account identifier"
-msgstr "Account senza identificativo"
-
-#: ../../include/channel.php:193
-msgid "Nickname is required."
-msgstr "Il nome dell'account è obbligatorio."
-
-#: ../../include/channel.php:207
-msgid "Reserved nickname. Please choose another."
-msgstr "Nome utente riservato. Per favore scegline un altro."
-
-#: ../../include/channel.php:212
-msgid ""
-"Nickname has unsupported characters or is already being used on this site."
-msgstr "Il nome dell'account è già in uso oppure ha dei caratteri non supportati."
-
-#: ../../include/channel.php:272
-msgid "Unable to retrieve created identity"
-msgstr "Impossibile caricare l'identità creata"
-
-#: ../../include/channel.php:341
-msgid "Default Profile"
-msgstr "Profilo predefinito"
-
-#: ../../include/channel.php:830
-msgid "Requested channel is not available."
-msgstr "Il canale che cerchi non è disponibile."
-
-#: ../../include/channel.php:977
-msgid "Create New Profile"
-msgstr "Crea un nuovo profilo"
-
-#: ../../include/channel.php:997
-msgid "Visible to everybody"
-msgstr "Visibile a tutti"
-
-#: ../../include/channel.php:1070 ../../include/channel.php:1182
-msgid "Gender:"
-msgstr "Sesso:"
-
-#: ../../include/channel.php:1071 ../../include/channel.php:1226
-msgid "Status:"
-msgstr "Stato:"
-
-#: ../../include/channel.php:1072 ../../include/channel.php:1237
-msgid "Homepage:"
-msgstr "Home page:"
-
-#: ../../include/channel.php:1073
-msgid "Online Now"
-msgstr "Online adesso"
-
-#: ../../include/channel.php:1187
-msgid "Like this channel"
-msgstr "Mi piace questo canale"
-
-#: ../../include/channel.php:1211
-msgid "j F, Y"
-msgstr "j F Y"
-
-#: ../../include/channel.php:1212
-msgid "j F"
-msgstr "j F"
+#: ../../include/connections.php:95
+msgid "New window"
+msgstr "Nuova finestra"
-#: ../../include/channel.php:1219
-msgid "Birthday:"
-msgstr "Compleanno:"
+#: ../../include/connections.php:96
+msgid "Open the selected location in a different window or browser tab"
+msgstr "Apri l'indirizzo selezionato in una nuova scheda o finestra"
-#: ../../include/channel.php:1232
+#: ../../include/connections.php:214
#, php-format
-msgid "for %1$d %2$s"
-msgstr "per %1$d %2$s"
-
-#: ../../include/channel.php:1235
-msgid "Sexual Preference:"
-msgstr "Preferenze sessuali:"
-
-#: ../../include/channel.php:1241
-msgid "Tags:"
-msgstr "Tag:"
-
-#: ../../include/channel.php:1243
-msgid "Political Views:"
-msgstr "Orientamento politico:"
-
-#: ../../include/channel.php:1245
-msgid "Religion:"
-msgstr "Religione:"
-
-#: ../../include/channel.php:1249
-msgid "Hobbies/Interests:"
-msgstr "Interessi e hobby:"
-
-#: ../../include/channel.php:1251
-msgid "Likes:"
-msgstr "Mi piace:"
-
-#: ../../include/channel.php:1253
-msgid "Dislikes:"
-msgstr "Non mi piace:"
-
-#: ../../include/channel.php:1255
-msgid "Contact information and Social Networks:"
-msgstr "Contatti e social network:"
-
-#: ../../include/channel.php:1257
-msgid "My other channels:"
-msgstr "I miei altri canali:"
-
-#: ../../include/channel.php:1259
-msgid "Musical interests:"
-msgstr "Gusti musicali:"
-
-#: ../../include/channel.php:1261
-msgid "Books, literature:"
-msgstr "Libri, letteratura:"
+msgid "User '%s' deleted"
+msgstr "Utente '%s' eliminato"
-#: ../../include/channel.php:1263
-msgid "Television:"
-msgstr "Televisione:"
+#: ../../include/contact_widgets.php:11
+#, php-format
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] "%d invito disponibile"
+msgstr[1] "%d inviti disponibili"
-#: ../../include/channel.php:1265
-msgid "Film/dance/culture/entertainment:"
-msgstr "Film, danza, cultura, intrattenimento:"
+#: ../../include/contact_widgets.php:19
+msgid "Find Channels"
+msgstr "Ricerca canali"
-#: ../../include/channel.php:1267
-msgid "Love/Romance:"
-msgstr "Amore:"
+#: ../../include/contact_widgets.php:20
+msgid "Enter name or interest"
+msgstr "Scrivi un nome o un interesse"
-#: ../../include/channel.php:1269
-msgid "Work/employment:"
-msgstr "Lavoro:"
+#: ../../include/contact_widgets.php:21
+msgid "Connect/Follow"
+msgstr "Aggiungi"
-#: ../../include/channel.php:1271
-msgid "School/education:"
-msgstr "Scuola:"
+#: ../../include/contact_widgets.php:22
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr "Per esempio: Mario Rossi, Pesca"
-#: ../../include/channel.php:1292
-msgid "Like this thing"
-msgstr "Mi piace"
+#: ../../include/contact_widgets.php:26
+msgid "Random Profile"
+msgstr "Profilo casuale"
-#: ../../include/connections.php:95
-msgid "New window"
-msgstr "Nuova finestra"
+#: ../../include/contact_widgets.php:27
+msgid "Invite Friends"
+msgstr "Invita amici"
-#: ../../include/connections.php:96
-msgid "Open the selected location in a different window or browser tab"
-msgstr "Apri l'indirizzo selezionato in una nuova scheda o finestra"
+#: ../../include/contact_widgets.php:29
+msgid "Advanced example: name=fred and country=iceland"
+msgstr "Per esempio: name=mario e country=italy"
-#: ../../include/connections.php:214
+#: ../../include/contact_widgets.php:122
#, php-format
-msgid "User '%s' deleted"
-msgstr "Utente '%s' eliminato"
+msgid "%d connection in common"
+msgid_plural "%d connections in common"
+msgstr[0] "%d contatto in comune"
+msgstr[1] "%d contatti in comune"
+
+#: ../../include/contact_widgets.php:127
+msgid "show more"
+msgstr "mostra tutto"
#: ../../include/conversation.php:204
#, php-format
@@ -7618,269 +7818,258 @@ msgstr "%1$s adesso è connesso con %2$s"
msgid "%1$s poked %2$s"
msgstr "%1$s ha mandato un poke a %2$s"
-#: ../../include/conversation.php:243 ../../include/text.php:1013
-#: ../../include/text.php:1018
-msgid "poked"
-msgstr "ha mandato un poke"
-
-#: ../../include/conversation.php:694
+#: ../../include/conversation.php:691
#, php-format
msgid "View %s's profile @ %s"
msgstr "Vedi il profilo di %s @ %s"
-#: ../../include/conversation.php:713
+#: ../../include/conversation.php:710
msgid "Categories:"
msgstr "Categorie:"
-#: ../../include/conversation.php:714
+#: ../../include/conversation.php:711
msgid "Filed under:"
msgstr "Classificato come:"
-#: ../../include/conversation.php:741
+#: ../../include/conversation.php:738
msgid "View in context"
msgstr "Vedi nel contesto"
-#: ../../include/conversation.php:850
+#: ../../include/conversation.php:847
msgid "remove"
msgstr "rimuovi"
-#: ../../include/conversation.php:855
+#: ../../include/conversation.php:852
msgid "Delete Selected Items"
msgstr "Elimina gli oggetti selezionati"
-#: ../../include/conversation.php:951
+#: ../../include/conversation.php:948
msgid "View Source"
msgstr "Vedi il sorgente"
-#: ../../include/conversation.php:952
+#: ../../include/conversation.php:949
msgid "Follow Thread"
msgstr "Segui la discussione"
-#: ../../include/conversation.php:953
+#: ../../include/conversation.php:950
msgid "Unfollow Thread"
msgstr "Non seguire la discussione"
-#: ../../include/conversation.php:958
+#: ../../include/conversation.php:955
msgid "Activity/Posts"
msgstr "Attività e Post"
-#: ../../include/conversation.php:960
+#: ../../include/conversation.php:957
msgid "Edit Connection"
msgstr "Modifica il contatto"
-#: ../../include/conversation.php:961
+#: ../../include/conversation.php:958
msgid "Message"
msgstr "Messaggio"
-#: ../../include/conversation.php:1078
+#: ../../include/conversation.php:1075
#, php-format
msgid "%s likes this."
msgstr "Piace a %s."
-#: ../../include/conversation.php:1078
+#: ../../include/conversation.php:1075
#, php-format
msgid "%s doesn't like this."
msgstr "Non piace a %s."
-#: ../../include/conversation.php:1082
+#: ../../include/conversation.php:1079
#, 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:1084
+#: ../../include/conversation.php:1081
#, 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:1090
+#: ../../include/conversation.php:1087
msgid "and"
msgstr "e"
-#: ../../include/conversation.php:1093
+#: ../../include/conversation.php:1090
#, php-format
msgid ", and %d other people"
msgid_plural ", and %d other people"
msgstr[0] ""
msgstr[1] "e altre %d persone"
-#: ../../include/conversation.php:1094
+#: ../../include/conversation.php:1091
#, php-format
msgid "%s like this."
msgstr "Piace a %s."
-#: ../../include/conversation.php:1094
+#: ../../include/conversation.php:1091
#, php-format
msgid "%s don't like this."
msgstr "Non piace a %s."
-#: ../../include/conversation.php:1133
+#: ../../include/conversation.php:1130
msgid "Set your location"
msgstr "La tua località"
-#: ../../include/conversation.php:1134
+#: ../../include/conversation.php:1131
msgid "Clear browser location"
msgstr "Rimuovi la località data dal browser"
-#: ../../include/conversation.php:1182
+#: ../../include/conversation.php:1177
msgid "Tag term:"
msgstr "Tag:"
-#: ../../include/conversation.php:1183
+#: ../../include/conversation.php:1178
msgid "Where are you right now?"
msgstr "Dove sei ora?"
-#: ../../include/conversation.php:1221
+#: ../../include/conversation.php:1210
msgid "Page link name"
msgstr "Nome del link alla pagina"
-#: ../../include/conversation.php:1224
+#: ../../include/conversation.php:1213
msgid "Post as"
msgstr "Pubblica come "
-#: ../../include/conversation.php:1238
+#: ../../include/conversation.php:1223
msgid "Toggle voting"
msgstr "Abilita/disabilita il voto"
-#: ../../include/conversation.php:1246
+#: ../../include/conversation.php:1231
msgid "Categories (optional, comma-separated list)"
msgstr "Categorie (facoltative, lista separata da virgole)"
-#: ../../include/conversation.php:1269
+#: ../../include/conversation.php:1254
msgid "Set publish date"
msgstr "Data di uscita programmata"
-#: ../../include/conversation.php:1518
+#: ../../include/conversation.php:1258
+msgid "OK"
+msgstr "OK"
+
+#: ../../include/conversation.php:1503
msgid "Discover"
msgstr "Scopri"
-#: ../../include/conversation.php:1521
+#: ../../include/conversation.php:1506
msgid "Imported public streams"
msgstr "Contenuti pubblici importati"
-#: ../../include/conversation.php:1526
+#: ../../include/conversation.php:1511
msgid "Commented Order"
msgstr "Commenti recenti"
-#: ../../include/conversation.php:1529
+#: ../../include/conversation.php:1514
msgid "Sort by Comment Date"
msgstr "Per data del commento"
-#: ../../include/conversation.php:1533
+#: ../../include/conversation.php:1518
msgid "Posted Order"
msgstr "Post recenti"
-#: ../../include/conversation.php:1536
+#: ../../include/conversation.php:1521
msgid "Sort by Post Date"
msgstr "Per data di creazione"
-#: ../../include/conversation.php:1544
+#: ../../include/conversation.php:1529
msgid "Posts that mention or involve you"
msgstr "Post che ti riguardano"
-#: ../../include/conversation.php:1553
+#: ../../include/conversation.php:1538
msgid "Activity Stream - by date"
msgstr "Elenco attività - per data"
-#: ../../include/conversation.php:1559
+#: ../../include/conversation.php:1544
msgid "Starred"
msgstr "Preferiti"
-#: ../../include/conversation.php:1562
+#: ../../include/conversation.php:1547
msgid "Favourite Posts"
msgstr "Post preferiti"
-#: ../../include/conversation.php:1569
+#: ../../include/conversation.php:1554
msgid "Spam"
msgstr "Spam"
-#: ../../include/conversation.php:1572
+#: ../../include/conversation.php:1557
msgid "Posts flagged as SPAM"
msgstr "Post marcati come spam"
-#: ../../include/conversation.php:1629
+#: ../../include/conversation.php:1614
msgid "Status Messages and Posts"
msgstr "Post e messaggi di stato"
-#: ../../include/conversation.php:1638
+#: ../../include/conversation.php:1623
msgid "About"
msgstr "Informazioni"
-#: ../../include/conversation.php:1641
+#: ../../include/conversation.php:1626
msgid "Profile Details"
msgstr "Dettagli del profilo"
-#: ../../include/conversation.php:1657
+#: ../../include/conversation.php:1635 ../../include/photos.php:502
+msgid "Photo Albums"
+msgstr "Album foto"
+
+#: ../../include/conversation.php:1642
msgid "Files and Storage"
msgstr "Archivio file"
-#: ../../include/conversation.php:1677 ../../include/conversation.php:1680
-#: ../../include/widgets.php:836
-msgid "Chatrooms"
-msgstr "Chat"
-
-#: ../../include/conversation.php:1693
+#: ../../include/conversation.php:1678
msgid "Saved Bookmarks"
msgstr "Segnalibri salvati"
-#: ../../include/conversation.php:1703
+#: ../../include/conversation.php:1688
msgid "Manage Webpages"
msgstr "Gestisci le pagine web"
-#: ../../include/conversation.php:1768
+#: ../../include/conversation.php:1747
msgctxt "noun"
msgid "Attending"
msgid_plural "Attending"
msgstr[0] "Partecipa"
msgstr[1] "Partecipano"
-#: ../../include/conversation.php:1771
+#: ../../include/conversation.php:1750
msgctxt "noun"
msgid "Not Attending"
msgid_plural "Not Attending"
msgstr[0] "Non partecipa"
msgstr[1] "Non partecipano"
-#: ../../include/conversation.php:1774
+#: ../../include/conversation.php:1753
msgctxt "noun"
msgid "Undecided"
msgid_plural "Undecided"
msgstr[0] "Indeciso"
msgstr[1] "Indecisi"
-#: ../../include/conversation.php:1777
+#: ../../include/conversation.php:1756
msgctxt "noun"
msgid "Agree"
msgid_plural "Agrees"
msgstr[0] "D'accordo"
msgstr[1] "D'accordo"
-#: ../../include/conversation.php:1780
+#: ../../include/conversation.php:1759
msgctxt "noun"
msgid "Disagree"
msgid_plural "Disagrees"
msgstr[0] "Non d'accordo"
msgstr[1] "Non d'accordo"
-#: ../../include/conversation.php:1783
+#: ../../include/conversation.php:1762
msgctxt "noun"
msgid "Abstain"
msgid_plural "Abstains"
msgstr[0] "Astenuto"
msgstr[1] "Astenuti"
-#: ../../include/import.php:30
-msgid ""
-"Cannot create a duplicate channel identifier on this system. Import failed."
-msgstr "Non posso creare un canale con un identificativo che già esiste su questo sistema. L'importazione è fallita."
-
-#: ../../include/import.php:97
-msgid "Channel clone failed. Import failed."
-msgstr "Impossibile clonare il canale. L'importazione è fallita."
-
#: ../../include/selectors.php:30
msgid "Frequently"
msgstr "Frequentemente"
@@ -7945,6 +8134,12 @@ msgstr "Neutro"
msgid "Non-specific"
msgstr "Non specificato"
+#: ../../include/selectors.php:49 ../../include/selectors.php:66
+#: ../../include/selectors.php:104 ../../include/selectors.php:140
+#: ../../include/permissions.php:881
+msgid "Other"
+msgstr "Altro"
+
#: ../../include/selectors.php:49
msgid "Undecided"
msgstr "Indeciso"
@@ -8121,366 +8316,361 @@ msgstr "Chi se ne frega"
msgid "Ask me"
msgstr "Chiedimelo"
-#: ../../include/bookmarks.php:35
-#, php-format
-msgid "%1$s's bookmarks"
-msgstr "I segnalibri di %1$s"
-
-#: ../../include/security.php:109
-msgid "guest:"
-msgstr "ospite:"
-
-#: ../../include/security.php:427
-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 "I controlli di sicurezza sono falliti. Probabilmente è accaduto perché la pagina è stata tenuta aperta troppo a lungo (ore?) prima di inviare il contenuto."
-
-#: ../../include/text.php:404
-msgid "prev"
-msgstr "prec"
-
-#: ../../include/text.php:406
-msgid "first"
-msgstr "inizio"
+#: ../../include/PermissionDescription.php:31
+#: ../../include/acl_selectors.php:232
+msgid "Visible to your default audience"
+msgstr "Visibile secondo le impostazioni predefinite"
-#: ../../include/text.php:435
-msgid "last"
-msgstr "fine"
+#: ../../include/PermissionDescription.php:115
+#: ../../include/acl_selectors.php:268
+msgid "Only me"
+msgstr "Solo io"
-#: ../../include/text.php:438
-msgid "next"
-msgstr "succ"
+#: ../../include/PermissionDescription.php:116
+msgid "Public"
+msgstr "Pubblico"
-#: ../../include/text.php:448
-msgid "older"
-msgstr "più recenti"
+#: ../../include/PermissionDescription.php:117
+msgid "Anybody in the $Projectname network"
+msgstr "Tutti sulla rete $Projectname"
-#: ../../include/text.php:450
-msgid "newer"
-msgstr "più nuovi"
+#: ../../include/PermissionDescription.php:118
+#, php-format
+msgid "Any account on %s"
+msgstr "Tutti gli account su %s"
-#: ../../include/text.php:843
-msgid "No connections"
-msgstr "Nessun contatto"
+#: ../../include/PermissionDescription.php:119
+msgid "Any of my connections"
+msgstr "Chiunque tra i miei contatti"
-#: ../../include/text.php:868
-#, php-format
-msgid "View all %s connections"
-msgstr "Mostra tutti i %s contatti"
+#: ../../include/PermissionDescription.php:120
+msgid "Only connections I specifically allow"
+msgstr "Solo chi riceve il mio permesso"
-#: ../../include/text.php:1013 ../../include/text.php:1018
-msgid "poke"
-msgstr "poke"
+#: ../../include/PermissionDescription.php:121
+msgid "Anybody authenticated (could include visitors from other networks)"
+msgstr "Chiunque sia autenticato (inclusi visitatori di altre reti)"
-#: ../../include/text.php:1019
-msgid "ping"
-msgstr "ping"
+#: ../../include/PermissionDescription.php:122
+msgid "Any connections including those who haven't yet been approved"
+msgstr "Tutti i contatti inclusi quelli non ancora approvati"
-#: ../../include/text.php:1019
-msgid "pinged"
-msgstr "ha effettuato un ping"
+#: ../../include/PermissionDescription.php:161
+msgid ""
+"This is your default setting for the audience of your normal stream, and "
+"posts."
+msgstr ""
-#: ../../include/text.php:1020
-msgid "prod"
-msgstr "spintone"
+#: ../../include/PermissionDescription.php:162
+msgid ""
+"This is your default setting for who can view your default channel profile"
+msgstr ""
-#: ../../include/text.php:1020
-msgid "prodded"
-msgstr "ha ricevuto uno spintone"
+#: ../../include/PermissionDescription.php:163
+msgid "This is your default setting for who can view your connections"
+msgstr ""
-#: ../../include/text.php:1021
-msgid "slap"
-msgstr "schiaffo"
+#: ../../include/PermissionDescription.php:164
+msgid ""
+"This is your default setting for who can view your file storage and photos"
+msgstr ""
-#: ../../include/text.php:1021
-msgid "slapped"
-msgstr "ha ricevuto uno schiaffo"
+#: ../../include/PermissionDescription.php:165
+msgid "This is your default setting for the audience of your webpages"
+msgstr ""
-#: ../../include/text.php:1022
-msgid "finger"
-msgstr "finger"
+#: ../../include/account.php:28
+msgid "Not a valid email address"
+msgstr "Email non valida"
-#: ../../include/text.php:1022
-msgid "fingered"
-msgstr "ha ricevuto un finger"
+#: ../../include/account.php:30
+msgid "Your email domain is not among those allowed on this site"
+msgstr "Il dominio della tua email attualmente non è permesso su questo sito"
-#: ../../include/text.php:1023
-msgid "rebuff"
-msgstr "rifiuto"
+#: ../../include/account.php:36
+msgid "Your email address is already registered at this site."
+msgstr "La tua email è già registrata su questo sito."
-#: ../../include/text.php:1023
-msgid "rebuffed"
-msgstr "ha ricevuto un rifiuto"
+#: ../../include/account.php:68
+msgid "An invitation is required."
+msgstr "È necessario un invito."
-#: ../../include/text.php:1035
-msgid "happy"
-msgstr "felice"
+#: ../../include/account.php:72
+msgid "Invitation could not be verified."
+msgstr "L'invito non può essere verificato."
-#: ../../include/text.php:1036
-msgid "sad"
-msgstr "triste"
+#: ../../include/account.php:122
+msgid "Please enter the required information."
+msgstr "Inserisci le informazioni richieste."
-#: ../../include/text.php:1037
-msgid "mellow"
-msgstr "calmo"
+#: ../../include/account.php:189
+msgid "Failed to store account information."
+msgstr "Non è stato possibile salvare le informazioni del tuo account."
-#: ../../include/text.php:1038
-msgid "tired"
-msgstr "stanco"
+#: ../../include/account.php:249
+#, php-format
+msgid "Registration confirmation for %s"
+msgstr "Registrazione di %s confermata"
-#: ../../include/text.php:1039
-msgid "perky"
-msgstr "vivace"
+#: ../../include/account.php:315
+#, php-format
+msgid "Registration request at %s"
+msgstr "Richiesta di registrazione su %s"
-#: ../../include/text.php:1040
-msgid "angry"
-msgstr "arrabbiato"
+#: ../../include/account.php:317 ../../include/account.php:344
+#: ../../include/account.php:404 ../../include/network.php:1871
+msgid "Administrator"
+msgstr "Amministratore"
-#: ../../include/text.php:1041
-msgid "stupefied"
-msgstr "stupito"
+#: ../../include/account.php:339
+msgid "your registration password"
+msgstr "la password di registrazione"
-#: ../../include/text.php:1042
-msgid "puzzled"
-msgstr "confuso"
+#: ../../include/account.php:342 ../../include/account.php:402
+#, php-format
+msgid "Registration details for %s"
+msgstr "Dettagli della registrazione di %s"
-#: ../../include/text.php:1043
-msgid "interested"
-msgstr "attento"
+#: ../../include/account.php:414
+msgid "Account approved."
+msgstr "Account approvato."
-#: ../../include/text.php:1044
-msgid "bitter"
-msgstr "amaro"
+#: ../../include/account.php:454
+#, php-format
+msgid "Registration revoked for %s"
+msgstr "Registrazione revocata per %s"
-#: ../../include/text.php:1045
-msgid "cheerful"
-msgstr "allegro"
+#: ../../include/account.php:506
+msgid "Account verified. Please login."
+msgstr "Registrazione verificata. Adesso puoi effettuare login."
-#: ../../include/text.php:1046
-msgid "alive"
-msgstr "vivace"
+#: ../../include/account.php:723 ../../include/account.php:725
+msgid "Click here to upgrade."
+msgstr "Clicca qui per aggiornare."
-#: ../../include/text.php:1047
-msgid "annoyed"
-msgstr "seccato"
+#: ../../include/account.php:731
+msgid "This action exceeds the limits set by your subscription plan."
+msgstr "Questa operazione supera i limiti del tuo abbonamento."
-#: ../../include/text.php:1048
-msgid "anxious"
-msgstr "ansioso"
+#: ../../include/account.php:736
+msgid "This action is not available under your subscription plan."
+msgstr "Questa operazione non è prevista dal tuo abbonamento."
-#: ../../include/text.php:1049
-msgid "cranky"
-msgstr "irritabile"
+#: ../../include/attach.php:247 ../../include/attach.php:333
+msgid "Item was not found."
+msgstr "Elemento non trovato."
-#: ../../include/text.php:1050
-msgid "disturbed"
-msgstr "turbato"
+#: ../../include/attach.php:497
+msgid "No source file."
+msgstr "Nessun file di origine."
-#: ../../include/text.php:1051
-msgid "frustrated"
-msgstr "frustrato"
+#: ../../include/attach.php:519
+msgid "Cannot locate file to replace"
+msgstr "Il file da sostituire non è stato trovato"
-#: ../../include/text.php:1052
-msgid "depressed"
-msgstr "in depressione"
+#: ../../include/attach.php:537
+msgid "Cannot locate file to revise/update"
+msgstr "Il file da aggiornare non è stato trovato"
-#: ../../include/text.php:1053
-msgid "motivated"
-msgstr "motivato"
+#: ../../include/attach.php:672
+#, php-format
+msgid "File exceeds size limit of %d"
+msgstr "Il file supera la dimensione massima di %d"
-#: ../../include/text.php:1054
-msgid "relaxed"
-msgstr "rilassato"
+#: ../../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/text.php:1055
-msgid "surprised"
-msgstr "sorpreso"
+#: ../../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/text.php:1237 ../../include/js_strings.php:70
-msgid "Monday"
-msgstr "lunedì"
+#: ../../include/attach.php:855
+msgid "Stored file could not be verified. Upload failed."
+msgstr "Il file non può essere verificato. Caricamento fallito."
-#: ../../include/text.php:1237 ../../include/js_strings.php:71
-msgid "Tuesday"
-msgstr "martedì"
+#: ../../include/attach.php:909 ../../include/attach.php:925
+msgid "Path not available."
+msgstr "Percorso non disponibile."
-#: ../../include/text.php:1237 ../../include/js_strings.php:72
-msgid "Wednesday"
-msgstr "mercoledì"
+#: ../../include/attach.php:971 ../../include/attach.php:1123
+msgid "Empty pathname"
+msgstr "Il percorso del file è vuoto"
-#: ../../include/text.php:1237 ../../include/js_strings.php:73
-msgid "Thursday"
-msgstr "giovedì"
+#: ../../include/attach.php:997
+msgid "duplicate filename or path"
+msgstr "il file o il percorso del file è duplicato"
-#: ../../include/text.php:1237 ../../include/js_strings.php:74
-msgid "Friday"
-msgstr "venerdì"
+#: ../../include/attach.php:1019
+msgid "Path not found."
+msgstr "Percorso del file non trovato."
-#: ../../include/text.php:1237 ../../include/js_strings.php:75
-msgid "Saturday"
-msgstr "sabato"
+#: ../../include/attach.php:1077
+msgid "mkdir failed."
+msgstr "mkdir fallito."
-#: ../../include/text.php:1237 ../../include/js_strings.php:69
-msgid "Sunday"
-msgstr "domenica"
+#: ../../include/attach.php:1081
+msgid "database storage failed."
+msgstr "scrittura su database fallita."
-#: ../../include/text.php:1241 ../../include/js_strings.php:45
-msgid "January"
-msgstr "gennaio"
+#: ../../include/attach.php:1129
+msgid "Empty path"
+msgstr "La posizione è vuota"
-#: ../../include/text.php:1241 ../../include/js_strings.php:46
-msgid "February"
-msgstr "febbraio"
+#: ../../include/channel.php:32
+msgid "Unable to obtain identity information from database"
+msgstr "Impossibile ottenere le informazioni di identificazione dal database"
-#: ../../include/text.php:1241 ../../include/js_strings.php:47
-msgid "March"
-msgstr "marzo"
+#: ../../include/channel.php:66
+msgid "Empty name"
+msgstr "Nome vuoto"
-#: ../../include/text.php:1241 ../../include/js_strings.php:48
-msgid "April"
-msgstr "aprile"
+#: ../../include/channel.php:69
+msgid "Name too long"
+msgstr "Nome troppo lungo"
-#: ../../include/text.php:1241
-msgid "May"
-msgstr "Mag"
+#: ../../include/channel.php:180
+msgid "No account identifier"
+msgstr "Account senza identificativo"
-#: ../../include/text.php:1241 ../../include/js_strings.php:50
-msgid "June"
-msgstr "giugno"
+#: ../../include/channel.php:192
+msgid "Nickname is required."
+msgstr "Il nome dell'account è obbligatorio."
-#: ../../include/text.php:1241 ../../include/js_strings.php:51
-msgid "July"
-msgstr "luglio"
+#: ../../include/channel.php:206
+msgid "Reserved nickname. Please choose another."
+msgstr "Nome utente riservato. Per favore scegline un altro."
-#: ../../include/text.php:1241 ../../include/js_strings.php:52
-msgid "August"
-msgstr "agosto"
+#: ../../include/channel.php:211
+msgid ""
+"Nickname has unsupported characters or is already being used on this site."
+msgstr "Il nome dell'account è già in uso oppure ha dei caratteri non supportati."
-#: ../../include/text.php:1241 ../../include/js_strings.php:53
-msgid "September"
-msgstr "settembre"
+#: ../../include/channel.php:287
+msgid "Unable to retrieve created identity"
+msgstr "Impossibile caricare l'identità creata"
-#: ../../include/text.php:1241 ../../include/js_strings.php:54
-msgid "October"
-msgstr "ottobre"
+#: ../../include/channel.php:345
+msgid "Default Profile"
+msgstr "Profilo predefinito"
-#: ../../include/text.php:1241 ../../include/js_strings.php:55
-msgid "November"
-msgstr "novembre"
+#: ../../include/channel.php:791
+msgid "Requested channel is not available."
+msgstr "Il canale che cerchi non è disponibile."
-#: ../../include/text.php:1241 ../../include/js_strings.php:56
-msgid "December"
-msgstr "dicembre"
+#: ../../include/channel.php:938
+msgid "Create New Profile"
+msgstr "Crea un nuovo profilo"
-#: ../../include/text.php:1318 ../../include/text.php:1322
-msgid "Unknown Attachment"
-msgstr "Allegato non riconoscuto"
+#: ../../include/channel.php:958
+msgid "Visible to everybody"
+msgstr "Visibile a tutti"
-#: ../../include/text.php:1324
-msgid "unknown"
-msgstr "sconosciuta"
+#: ../../include/channel.php:1031 ../../include/channel.php:1142
+msgid "Gender:"
+msgstr "Sesso:"
-#: ../../include/text.php:1360
-msgid "remove category"
-msgstr "rimuovi la categoria"
+#: ../../include/channel.php:1032 ../../include/channel.php:1186
+msgid "Status:"
+msgstr "Stato:"
-#: ../../include/text.php:1437
-msgid "remove from file"
-msgstr "rimuovi dal file"
+#: ../../include/channel.php:1033 ../../include/channel.php:1197
+msgid "Homepage:"
+msgstr "Home page:"
-#: ../../include/text.php:1734 ../../include/text.php:1805
-msgid "default"
-msgstr "predefinito"
+#: ../../include/channel.php:1034
+msgid "Online Now"
+msgstr "Online adesso"
-#: ../../include/text.php:1742
-msgid "Page layout"
-msgstr "Layout della pagina"
+#: ../../include/channel.php:1147
+msgid "Like this channel"
+msgstr "Mi piace questo canale"
-#: ../../include/text.php:1742
-msgid "You can create your own with the layouts tool"
-msgstr "Puoi creare un tuo layout dalla configurazione delle pagine web"
+#: ../../include/channel.php:1171
+msgid "j F, Y"
+msgstr "j F Y"
-#: ../../include/text.php:1784
-msgid "Page content type"
-msgstr "Tipo di contenuto della pagina"
+#: ../../include/channel.php:1172
+msgid "j F"
+msgstr "j F"
-#: ../../include/text.php:1817
-msgid "Select an alternate language"
-msgstr "Seleziona una lingua diversa"
+#: ../../include/channel.php:1179
+msgid "Birthday:"
+msgstr "Compleanno:"
-#: ../../include/text.php:1934
-msgid "activity"
-msgstr "l'attività"
+#: ../../include/channel.php:1192
+#, php-format
+msgid "for %1$d %2$s"
+msgstr "per %1$d %2$s"
-#: ../../include/text.php:2235
-msgid "Design Tools"
-msgstr "Strumenti di design"
+#: ../../include/channel.php:1195
+msgid "Sexual Preference:"
+msgstr "Preferenze sessuali:"
-#: ../../include/text.php:2241
-msgid "Pages"
-msgstr "Pagine"
+#: ../../include/channel.php:1201
+msgid "Tags:"
+msgstr "Tag:"
-#: ../../include/auth.php:147
-msgid "Logged out."
-msgstr "Uscita effettuata."
+#: ../../include/channel.php:1203
+msgid "Political Views:"
+msgstr "Orientamento politico:"
-#: ../../include/auth.php:274
-msgid "Failed authentication"
-msgstr "Autenticazione fallita"
+#: ../../include/channel.php:1205
+msgid "Religion:"
+msgstr "Religione:"
-#: ../../include/permissions.php:26
-msgid "Can view my normal stream and posts"
-msgstr "Può vedere i miei contenuti e i post normali"
+#: ../../include/channel.php:1209
+msgid "Hobbies/Interests:"
+msgstr "Interessi e hobby:"
-#: ../../include/permissions.php:30
-msgid "Can view my webpages"
-msgstr "Può vedere le mie pagine web"
+#: ../../include/channel.php:1211
+msgid "Likes:"
+msgstr "Mi piace:"
-#: ../../include/permissions.php:34
-msgid "Can post on my channel page (\"wall\")"
-msgstr "Può scrivere sulla bacheca del mio canale"
+#: ../../include/channel.php:1213
+msgid "Dislikes:"
+msgstr "Non mi piace:"
-#: ../../include/permissions.php:37
-msgid "Can like/dislike stuff"
-msgstr "Può aggiungere \"mi piace\" a tutto il resto"
+#: ../../include/channel.php:1215
+msgid "Contact information and Social Networks:"
+msgstr "Contatti e social network:"
-#: ../../include/permissions.php:37
-msgid "Profiles and things other than posts/comments"
-msgstr "Può aggiungere \"mi piace\" a tutto ciò che non riguarda i post, come per esempio il profilo"
+#: ../../include/channel.php:1217
+msgid "My other channels:"
+msgstr "I miei altri canali:"
-#: ../../include/permissions.php:39
-msgid "Can forward to all my channel contacts via post @mentions"
-msgstr "Può inoltrare post a tutti i contatti del canale tramite una @menzione"
+#: ../../include/channel.php:1219
+msgid "Musical interests:"
+msgstr "Gusti musicali:"
-#: ../../include/permissions.php:39
-msgid "Advanced - useful for creating group forum channels"
-msgstr "Impostazione avanzata - utile per creare un canale-forum di discussione"
+#: ../../include/channel.php:1221
+msgid "Books, literature:"
+msgstr "Libri, letteratura:"
-#: ../../include/permissions.php:40
-msgid "Can chat with me (when available)"
-msgstr "Può aprire una chat con me (se disponibile)"
+#: ../../include/channel.php:1223
+msgid "Television:"
+msgstr "Televisione:"
-#: ../../include/permissions.php:41
-msgid "Can write to my file storage and photos"
-msgstr "Può modificare il mio archivio file e foto"
+#: ../../include/channel.php:1225
+msgid "Film/dance/culture/entertainment:"
+msgstr "Film, danza, cultura, intrattenimento:"
-#: ../../include/permissions.php:42
-msgid "Can edit my webpages"
-msgstr "Può modificare le mie pagine web"
+#: ../../include/channel.php:1227
+msgid "Love/Romance:"
+msgstr "Amore:"
-#: ../../include/permissions.php:44
-msgid "Somewhat advanced - very useful in open communities"
-msgstr "Piuttosto avanzato - molto utile nelle comunità aperte"
+#: ../../include/channel.php:1229
+msgid "Work/employment:"
+msgstr "Lavoro:"
-#: ../../include/permissions.php:46
-msgid "Can administer my channel resources"
-msgstr "Può amministrare i contenuti del mio canale"
+#: ../../include/channel.php:1231
+msgid "School/education:"
+msgstr "Scuola:"
-#: ../../include/permissions.php:46
-msgid ""
-"Extremely advanced. Leave this alone unless you know what you are doing"
-msgstr "Impostazione pericolosa - lasciare il valore predefinito se non si è assolutamente sicuri"
+#: ../../include/channel.php:1251
+msgid "Like this thing"
+msgstr "Mi piace"
#: ../../include/features.php:48
msgid "General Features"
@@ -8527,861 +8717,420 @@ msgid "Provide managed web pages on your channel"
msgstr "Attiva la creazione di pagine web sul tuo canale"
#: ../../include/features.php:55
-msgid "Provide a wiki for your channel"
-msgstr "Fornisce una wiki per il tuo canale"
-
-#: ../../include/features.php:56
msgid "Hide Rating"
msgstr "Nascondi le valutazioni"
-#: ../../include/features.php:56
+#: ../../include/features.php:55
msgid ""
"Hide the rating buttons on your channel and profile pages. Note: People can "
"still rate you somewhere else."
msgstr "Nascondi i bottoni delle valutazioni sul tuo canale e sul profilo. Nota: le persone potranno comunque esprimere una valutazione altrove."
-#: ../../include/features.php:57
+#: ../../include/features.php:56
msgid "Private Notes"
msgstr "Note private"
-#: ../../include/features.php:57
+#: ../../include/features.php:56
msgid "Enables a tool to store notes and reminders (note: not encrypted)"
msgstr "Abilita il riquadro per scrivere annotazioni (in chiaro)"
-#: ../../include/features.php:58
+#: ../../include/features.php:57
msgid "Navigation Channel Select"
msgstr "Scegli il canale attivo dal menu"
-#: ../../include/features.php:58
+#: ../../include/features.php:57
msgid "Change channels directly from within the navigation dropdown menu"
msgstr "Scegli il canale attivo direttamente dal menu di navigazione"
-#: ../../include/features.php:59
+#: ../../include/features.php:58
msgid "Photo Location"
msgstr "Posizione geografica"
-#: ../../include/features.php:59
+#: ../../include/features.php:58
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
+#: ../../include/features.php:59
msgid "Access Controlled Chatrooms"
msgstr "Chat ad accesso riservato"
-#: ../../include/features.php:60
+#: ../../include/features.php:59
msgid "Provide chatrooms and chat services with access control."
msgstr "Il servizio di chat con accesso riservato"
-#: ../../include/features.php:61
+#: ../../include/features.php:60
msgid "Smart Birthdays"
msgstr "Compleanni intelligenti"
-#: ../../include/features.php:61
+#: ../../include/features.php:60
msgid ""
"Make birthday events timezone aware in case your friends are scattered "
"across the planet."
msgstr "I compleanni saranno segnalati in base al fuso orario, utile se hai amici sparsi per il mondo."
-#: ../../include/features.php:62
+#: ../../include/features.php:61
msgid "Expert Mode"
msgstr "Modalità esperto"
-#: ../../include/features.php:62
+#: ../../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:63
+#: ../../include/features.php:62
msgid "Premium Channel"
msgstr "Canale premium"
-#: ../../include/features.php:63
+#: ../../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:68
+#: ../../include/features.php:67
msgid "Post Composition Features"
msgstr "Modalità di scrittura post"
-#: ../../include/features.php:71
+#: ../../include/features.php:70
msgid "Large Photos"
msgstr "Foto grandi"
-#: ../../include/features.php:71
+#: ../../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:72
+#: ../../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:73
+#: ../../include/features.php:72
msgid "Even More Encryption"
msgstr "Cifratura addizionale"
-#: ../../include/features.php:73
+#: ../../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:74
+#: ../../include/features.php:73
msgid "Enable Voting Tools"
msgstr "Permetti i post con votazione"
-#: ../../include/features.php:74
+#: ../../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:75
+#: ../../include/features.php:74
msgid "Delayed Posting"
msgstr "Pubblicazione ritardata"
-#: ../../include/features.php:75
+#: ../../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:76
+#: ../../include/features.php:75
msgid "Suppress Duplicate Posts/Comments"
msgstr "Impedisci post e commenti duplicati"
-#: ../../include/features.php:76
+#: ../../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:82
+#: ../../include/features.php:81
msgid "Network and Stream Filtering"
msgstr "Filtraggio dei contenuti"
-#: ../../include/features.php:83
+#: ../../include/features.php:82
msgid "Search by Date"
msgstr "Ricerca per data"
-#: ../../include/features.php:83
+#: ../../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:84 ../../include/group.php:311
+#: ../../include/features.php:83 ../../include/group.php:311
msgid "Privacy Groups"
msgstr "Gruppi di canali"
-#: ../../include/features.php:84
+#: ../../include/features.php:83
msgid "Enable management and selection of privacy groups"
msgstr "Abilita i gruppi di canali"
-#: ../../include/features.php:85 ../../include/widgets.php:281
-msgid "Saved Searches"
-msgstr "Ricerche salvate"
-
-#: ../../include/features.php:85
+#: ../../include/features.php:84
msgid "Save search terms for re-use"
msgstr "Salva i termini delle ricerche per poterle ripetere"
-#: ../../include/features.php:86
+#: ../../include/features.php:85
msgid "Network Personal Tab"
msgstr "Attività personale"
-#: ../../include/features.php:86
+#: ../../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:87
+#: ../../include/features.php:86
msgid "Network New Tab"
msgstr "Contenuti nuovi"
-#: ../../include/features.php:87
+#: ../../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:88
+#: ../../include/features.php:87
msgid "Affinity Tool"
msgstr "Filtro per affinità"
-#: ../../include/features.php:88
+#: ../../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:89
+#: ../../include/features.php:88
msgid "Connection Filtering"
msgstr "Filtro sui contatti"
-#: ../../include/features.php:89
+#: ../../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:90
+#: ../../include/features.php:89
msgid "Show channel suggestions"
msgstr "Mostra alcuni canali che potrebbero interessarti"
-#: ../../include/features.php:95
+#: ../../include/features.php:94
msgid "Post/Comment Tools"
msgstr "Gestione post e commenti"
-#: ../../include/features.php:96
+#: ../../include/features.php:95
msgid "Community Tagging"
msgstr "Tag della comunità"
-#: ../../include/features.php:96
+#: ../../include/features.php:95
msgid "Ability to tag existing posts"
msgstr "Permetti l'aggiunta di tag su post già esistenti"
-#: ../../include/features.php:97
+#: ../../include/features.php:96
msgid "Post Categories"
msgstr "Categorie dei post"
-#: ../../include/features.php:97
+#: ../../include/features.php:96
msgid "Add categories to your posts"
msgstr "Abilita le categorie per i tuoi post"
-#: ../../include/features.php:98
+#: ../../include/features.php:97
msgid "Emoji Reactions"
-msgstr "Reazioni emoji"
+msgstr ""
-#: ../../include/features.php:98
+#: ../../include/features.php:97
msgid "Add emoji reaction ability to posts"
-msgstr "Permetti le reazioni emoji ai post"
-
-#: ../../include/features.php:99 ../../include/widgets.php:310
-#: ../../include/contact_widgets.php:53
-msgid "Saved Folders"
-msgstr "Cartelle salvate"
+msgstr ""
-#: ../../include/features.php:99
+#: ../../include/features.php:98
msgid "Ability to file posts under folders"
msgstr "Abilita la raccolta dei tuoi articoli in cartelle"
-#: ../../include/features.php:100
+#: ../../include/features.php:99
msgid "Dislike Posts"
msgstr "Non mi piace"
-#: ../../include/features.php:100
+#: ../../include/features.php:99
msgid "Ability to dislike posts/comments"
msgstr "Abilità la funzionalità \"non mi piace\" per i tuoi post"
-#: ../../include/features.php:101
+#: ../../include/features.php:100
msgid "Star Posts"
msgstr "Post con stella"
-#: ../../include/features.php:101
+#: ../../include/features.php:100
msgid "Ability to mark special posts with a star indicator"
msgstr "Mostra la stella per segnare i post preferiti"
-#: ../../include/features.php:102
+#: ../../include/features.php:101
msgid "Tag Cloud"
msgstr "Nuvola di tag"
-#: ../../include/features.php:102
+#: ../../include/features.php:101
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/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:248
-msgid "Add new connections to this privacy group"
-msgstr "Aggiungi nuovi contatti a questo gruppo di canali"
-
-#: ../../include/group.php:289
-msgid "edit"
-msgstr "modifica"
-
-#: ../../include/group.php:312
-msgid "Edit group"
-msgstr "Modifica il gruppo"
-
-#: ../../include/group.php:313
-msgid "Add privacy group"
-msgstr "Crea un gruppo di canali"
-
-#: ../../include/group.php:314
-msgid "Channels not in any privacy group"
-msgstr "Canali che non sono in nessun gruppo"
-
-#: ../../include/group.php:316 ../../include/widgets.php:282
-msgid "add"
-msgstr "aggiungi"
-
-#: ../../include/event.php:22 ../../include/event.php:69
-#: ../../include/bb2diaspora.php:485
-msgid "l F d, Y \\@ g:i A"
-msgstr "l d F Y \\@ G:i"
-
-#: ../../include/event.php:30 ../../include/event.php:73
-#: ../../include/bb2diaspora.php:491
-msgid "Starts:"
-msgstr "Inizio:"
-
-#: ../../include/event.php:40 ../../include/event.php:77
-#: ../../include/bb2diaspora.php:499
-msgid "Finishes:"
-msgstr "Fine:"
-
-#: ../../include/event.php:814
-msgid "This event has been added to your calendar."
-msgstr "Questo evento è stato aggiunto al tuo calendario"
-
-#: ../../include/event.php:1014
-msgid "Not specified"
-msgstr "Non specificato"
-
-#: ../../include/event.php:1015
-msgid "Needs Action"
-msgstr "Necessita di un intervento"
-
-#: ../../include/event.php:1016
-msgid "Completed"
-msgstr "Completato"
-
-#: ../../include/event.php:1017
-msgid "In Process"
-msgstr "In corso"
-
-#: ../../include/event.php:1018
-msgid "Cancelled"
-msgstr "Annullato"
-
-#: ../../include/account.php:28
-msgid "Not a valid email address"
-msgstr "Email non valida"
-
-#: ../../include/account.php:30
-msgid "Your email domain is not among those allowed on this site"
-msgstr "Il dominio della tua email attualmente non è permesso su questo sito"
-
-#: ../../include/account.php:36
-msgid "Your email address is already registered at this site."
-msgstr "La tua email è già registrata su questo sito."
-
-#: ../../include/account.php:68
-msgid "An invitation is required."
-msgstr "È necessario un invito."
-
-#: ../../include/account.php:72
-msgid "Invitation could not be verified."
-msgstr "L'invito non può essere verificato."
-
-#: ../../include/account.php:122
-msgid "Please enter the required information."
-msgstr "Inserisci le informazioni richieste."
-
-#: ../../include/account.php:189
-msgid "Failed to store account information."
-msgstr "Non è stato possibile salvare le informazioni del tuo account."
-
-#: ../../include/account.php:249
-#, php-format
-msgid "Registration confirmation for %s"
-msgstr "Registrazione di %s confermata"
-
-#: ../../include/account.php:315
-#, php-format
-msgid "Registration request at %s"
-msgstr "Richiesta di registrazione su %s"
-
-#: ../../include/account.php:339
-msgid "your registration password"
-msgstr "la password di registrazione"
-
-#: ../../include/account.php:342 ../../include/account.php:402
-#, php-format
-msgid "Registration details for %s"
-msgstr "Dettagli della registrazione di %s"
-
-#: ../../include/account.php:414
-msgid "Account approved."
-msgstr "Account approvato."
-
-#: ../../include/account.php:454
-#, php-format
-msgid "Registration revoked for %s"
-msgstr "Registrazione revocata per %s"
-
-#: ../../include/account.php:739 ../../include/account.php:741
-msgid "Click here to upgrade."
-msgstr "Clicca qui per aggiornare."
-
-#: ../../include/account.php:747
-msgid "This action exceeds the limits set by your subscription plan."
-msgstr "Questa operazione supera i limiti del tuo abbonamento."
-
-#: ../../include/account.php:752
-msgid "This action is not available under your subscription plan."
-msgstr "Questa operazione non è prevista dal tuo abbonamento."
-
-#: ../../include/follow.php:27
-msgid "Channel is blocked on this site."
-msgstr "Il canale è bloccato per questo sito."
-
-#: ../../include/follow.php:32
-msgid "Channel location missing."
-msgstr "Manca l'indirizzo del canale."
-
-#: ../../include/follow.php:80
-msgid "Response from remote channel was incomplete."
-msgstr "La risposta dal canale non è completa."
-
-#: ../../include/follow.php:97
-msgid "Channel was deleted and no longer exists."
-msgstr "Il canale è stato rimosso e non esiste più."
-
-#: ../../include/follow.php:147 ../../include/follow.php:183
-msgid "Protocol disabled."
-msgstr "Protocollo disabilitato."
-
-#: ../../include/follow.php:171
-msgid "Channel discovery failed."
-msgstr "La ricerca del canale non ha avuto successo."
-
-#: ../../include/follow.php:210
-msgid "Cannot connect to yourself."
-msgstr "Non puoi connetterti a te stesso."
-
-#: ../../include/attach.php:247 ../../include/attach.php:333
-msgid "Item was not found."
-msgstr "Elemento non trovato."
-
-#: ../../include/attach.php:499
-msgid "No source file."
-msgstr "Nessun file di origine."
-
-#: ../../include/attach.php:521
-msgid "Cannot locate file to replace"
-msgstr "Il file da sostituire non è stato trovato"
-
-#: ../../include/attach.php:539
-msgid "Cannot locate file to revise/update"
-msgstr "Il file da aggiornare non è stato trovato"
-
-#: ../../include/attach.php:674
-#, php-format
-msgid "File exceeds size limit of %d"
-msgstr "Il file supera la dimensione massima di %d"
-
-#: ../../include/attach.php:688
-#, 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:846
-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:859
-msgid "Stored file could not be verified. Upload failed."
-msgstr "Il file non può essere verificato. Caricamento fallito."
-
-#: ../../include/attach.php:915 ../../include/attach.php:931
-msgid "Path not available."
-msgstr "Percorso non disponibile."
-
-#: ../../include/attach.php:977 ../../include/attach.php:1129
-msgid "Empty pathname"
-msgstr "Il percorso del file è vuoto"
-
-#: ../../include/attach.php:1003
-msgid "duplicate filename or path"
-msgstr "il file o il percorso del file è duplicato"
-
-#: ../../include/attach.php:1025
-msgid "Path not found."
-msgstr "Percorso del file non trovato."
-
-#: ../../include/attach.php:1083
-msgid "mkdir failed."
-msgstr "mkdir fallito."
-
-#: ../../include/attach.php:1087
-msgid "database storage failed."
-msgstr "scrittura su database fallita."
-
-#: ../../include/attach.php:1135
-msgid "Empty path"
-msgstr "La posizione è vuota"
-
-#: ../../include/bbcode.php:123 ../../include/bbcode.php:878
-#: ../../include/bbcode.php:881 ../../include/bbcode.php:886
-#: ../../include/bbcode.php:889 ../../include/bbcode.php:892
-#: ../../include/bbcode.php:895 ../../include/bbcode.php:900
-#: ../../include/bbcode.php:903 ../../include/bbcode.php:908
-#: ../../include/bbcode.php:911 ../../include/bbcode.php:914
-#: ../../include/bbcode.php:917
-msgid "Image/photo"
-msgstr "Immagine"
-
-#: ../../include/bbcode.php:162 ../../include/bbcode.php:928
-msgid "Encrypted content"
-msgstr "Contenuto cifrato"
-
-#: ../../include/bbcode.php:178
-#, php-format
-msgid "Install %s element: "
-msgstr "Installa l'elemento %s:"
-
-#: ../../include/bbcode.php:182
-#, 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:261
-#, php-format
-msgid "%1$s wrote the following %2$s %3$s"
-msgstr "%1$s ha scritto %2$s %3$s"
-
-#: ../../include/bbcode.php:338 ../../include/bbcode.php:346
-msgid "Click to open/close"
-msgstr "Clicca per aprire/chiudere"
-
-#: ../../include/bbcode.php:346
-msgid "spoiler"
-msgstr "spoiler"
-
-#: ../../include/bbcode.php:619
-msgid "Different viewers will see this text differently"
-msgstr "Ad altri questo testo potrebbe apparire in modo differente"
-
-#: ../../include/bbcode.php:866
-msgid "$1 wrote:"
-msgstr "$1 ha scritto:"
-
-#: ../../include/items.php:897 ../../include/items.php:942
-msgid "(Unknown)"
-msgstr "(Sconosciuto)"
-
-#: ../../include/items.php:1141
-msgid "Visible to anybody on the internet."
-msgstr "Visibile a chiunque su internet."
-
-#: ../../include/items.php:1143
-msgid "Visible to you only."
-msgstr "Visibile solo a te."
-
-#: ../../include/items.php:1145
-msgid "Visible to anybody in this network."
-msgstr "Visibile a tutti su questa rete."
-
-#: ../../include/items.php:1147
-msgid "Visible to anybody authenticated."
-msgstr "Visibile a chiunque sia autenticato."
-
-#: ../../include/items.php:1149
-#, php-format
-msgid "Visible to anybody on %s."
-msgstr "Visibile a tutti su %s."
-
-#: ../../include/items.php:1151
-msgid "Visible to all connections."
-msgstr "Visibile a tutti coloro che ti seguono."
-
-#: ../../include/items.php:1153
-msgid "Visible to approved connections."
-msgstr "Visibile ai contatti approvati."
-
-#: ../../include/items.php:1155
-msgid "Visible to specific connections."
-msgstr "Visibile ad alcuni contatti scelti."
-
-#: ../../include/items.php:3918
-msgid "Privacy group is empty."
-msgstr "Gruppo di canali vuoto."
-
-#: ../../include/items.php:3925
-#, php-format
-msgid "Privacy group: %s"
-msgstr "Gruppo di canali: %s"
-
-#: ../../include/items.php:3937
-msgid "Connection not found."
-msgstr "Contatto non trovato."
-
-#: ../../include/items.php:4290
-msgid "profile photo"
-msgstr "foto del profilo"
-
-#: ../../include/oembed.php:336
+#: ../../include/oembed.php:324
msgid "Embedded content"
msgstr "Contenuti incorporati"
-#: ../../include/oembed.php:345
+#: ../../include/oembed.php:333
msgid "Embedding disabled"
msgstr "Disabilita la creazione di contenuti incorporati"
-#: ../../include/widgets.php:103
-msgid "System"
-msgstr "Sistema"
-
-#: ../../include/widgets.php:106
-msgid "New App"
-msgstr "Nuova app"
-
-#: ../../include/widgets.php:154
-msgid "Suggestions"
-msgstr "Suggerimenti"
-
-#: ../../include/widgets.php:155
-msgid "See more..."
-msgstr "Altro..."
-
-#: ../../include/widgets.php:175
-#, php-format
-msgid "You have %1$.0f of %2$.0f allowed connections."
-msgstr "Hai attivato %1$.0f delle %2$.0f connessioni permesse."
-
-#: ../../include/widgets.php:181
-msgid "Add New Connection"
-msgstr "Aggiungi un contatto"
-
-#: ../../include/widgets.php:182
-msgid "Enter channel address"
-msgstr "Indirizzo del canale"
-
-#: ../../include/widgets.php:183
-msgid "Examples: bob@example.com, https://example.com/barbara"
-msgstr "Per esempio: bob@example.com, https://example.com/barbara"
-
-#: ../../include/widgets.php:199
-msgid "Notes"
-msgstr "Note"
-
-#: ../../include/widgets.php:273
-msgid "Remove term"
-msgstr "Rimuovi termine"
-
-#: ../../include/widgets.php:313 ../../include/widgets.php:432
-#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94
-msgid "Everything"
-msgstr "Tutto"
-
-#: ../../include/widgets.php:354
-msgid "Archives"
-msgstr "Archivi"
-
-#: ../../include/widgets.php:516
-msgid "Refresh"
-msgstr "Aggiorna"
-
-#: ../../include/widgets.php:556
-msgid "Account settings"
-msgstr "Il tuo account"
-
-#: ../../include/widgets.php:562
-msgid "Channel settings"
-msgstr "Impostazioni del canale"
-
-#: ../../include/widgets.php:571
-msgid "Additional features"
-msgstr "Funzionalità opzionali"
-
-#: ../../include/widgets.php:578
-msgid "Feature/Addon settings"
-msgstr "Componenti aggiuntivi"
-
-#: ../../include/widgets.php:584
-msgid "Display settings"
-msgstr "Aspetto"
-
-#: ../../include/widgets.php:591
-msgid "Manage locations"
-msgstr "Gestione repliche"
-
-#: ../../include/widgets.php:600
-msgid "Export channel"
-msgstr "Esporta il canale"
-
-#: ../../include/widgets.php:607
-msgid "Connected apps"
-msgstr "App connesse"
-
-#: ../../include/widgets.php:631
-msgid "Premium Channel Settings"
-msgstr "Canale premium - impostazioni"
-
-#: ../../include/widgets.php:660
-msgid "Private Mail Menu"
-msgstr "Menu messaggi privati"
-
-#: ../../include/widgets.php:662
-msgid "Combined View"
-msgstr "Vista combinata"
-
-#: ../../include/widgets.php:694 ../../include/widgets.php:706
-msgid "Conversations"
-msgstr "Conversazioni"
-
-#: ../../include/widgets.php:698
-msgid "Received Messages"
-msgstr "Ricevuti"
-
-#: ../../include/widgets.php:702
-msgid "Sent Messages"
-msgstr "Inviati"
-
-#: ../../include/widgets.php:716
-msgid "No messages."
-msgstr "Nessun messaggio."
-
-#: ../../include/widgets.php:734
-msgid "Delete conversation"
-msgstr "Elimina la conversazione"
-
-#: ../../include/widgets.php:760
-msgid "Events Tools"
-msgstr "Gestione eventi"
-
-#: ../../include/widgets.php:761
-msgid "Export Calendar"
-msgstr "Esporta calendario"
-
-#: ../../include/widgets.php:762
-msgid "Import Calendar"
-msgstr "Importa calendario"
+#: ../../include/acl_selectors.php:271
+msgid "Who can see this?"
+msgstr "Chi può vederlo?"
-#: ../../include/widgets.php:840
-msgid "Overview"
-msgstr "Riepilogo"
+#: ../../include/acl_selectors.php:272
+msgid "Custom selection"
+msgstr "Selezione personalizzata"
-#: ../../include/widgets.php:847
-msgid "Chat Members"
-msgstr "Partecipanti"
+#: ../../include/acl_selectors.php:273
+msgid ""
+"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit"
+" the scope of \"Show\"."
+msgstr ""
-#: ../../include/widgets.php:869
-msgid "Wiki List"
-msgstr "Elenco wiki"
+#: ../../include/acl_selectors.php:274
+msgid "Show"
+msgstr "Mostra"
-#: ../../include/widgets.php:907
-msgid "Wiki Pages"
-msgstr "Pagine wiki"
+#: ../../include/acl_selectors.php:275
+msgid "Don't show"
+msgstr "Non mostrare"
-#: ../../include/widgets.php:942
-msgid "Bookmarked Chatrooms"
-msgstr "Chat nei segnalibri"
+#: ../../include/acl_selectors.php:281
+msgid "Other networks and post services"
+msgstr "Invio ad altre reti o a siti esterni"
-#: ../../include/widgets.php:965
-msgid "Suggested Chatrooms"
-msgstr "Chat suggerite"
+#: ../../include/acl_selectors.php:311
+#, php-format
+msgid ""
+"Post permissions %s cannot be changed %s after a post is shared.</br />These"
+" permissions set who is allowed to view the post."
+msgstr ""
-#: ../../include/widgets.php:1111 ../../include/widgets.php:1223
-msgid "photo/image"
-msgstr "foto/immagine"
+#: ../../include/auth.php:105
+msgid "Logged out."
+msgstr "Uscita effettuata."
-#: ../../include/widgets.php:1166
-msgid "Click to show more"
-msgstr "Clicca per mostrare tutto"
+#: ../../include/auth.php:212
+msgid "Failed authentication"
+msgstr "Autenticazione fallita"
-#: ../../include/widgets.php:1317
-msgid "Rating Tools"
-msgstr "Valutazione"
+#: ../../include/datetime.php:135
+msgid "Birthday"
+msgstr "Compleanno"
-#: ../../include/widgets.php:1321 ../../include/widgets.php:1323
-msgid "Rate Me"
-msgstr "Valutami"
+#: ../../include/datetime.php:137
+msgid "Age: "
+msgstr "Età:"
-#: ../../include/widgets.php:1326
-msgid "View Ratings"
-msgstr "Vedi le valutazioni ricevute"
+#: ../../include/datetime.php:139
+msgid "YYYY-MM-DD or MM-DD"
+msgstr "AAAA-MM-GG oppure MM-GG"
-#: ../../include/widgets.php:1410
-msgid "Forums"
-msgstr "Forum"
+#: ../../include/datetime.php:272 ../../boot.php:2470
+msgid "never"
+msgstr "mai"
-#: ../../include/widgets.php:1439
-msgid "Tasks"
-msgstr "Attività"
+#: ../../include/datetime.php:278
+msgid "less than a second ago"
+msgstr "meno di un secondo fa"
-#: ../../include/widgets.php:1448
-msgid "Documentation"
-msgstr "Guida"
+#: ../../include/datetime.php:296
+#, php-format
+msgctxt "e.g. 22 hours ago, 1 minute ago"
+msgid "%1$d %2$s ago"
+msgstr "%1$d %2$s fa"
-#: ../../include/widgets.php:1450
-msgid "Project/Site Information"
-msgstr "Informazioni sul sito/progetto"
+#: ../../include/datetime.php:307
+msgctxt "relative_date"
+msgid "year"
+msgid_plural "years"
+msgstr[0] "anno"
+msgstr[1] "anni"
-#: ../../include/widgets.php:1451
-msgid "For Members"
-msgstr "Per gli utenti"
+#: ../../include/datetime.php:310
+msgctxt "relative_date"
+msgid "month"
+msgid_plural "months"
+msgstr[0] "mese"
+msgstr[1] "mesi"
-#: ../../include/widgets.php:1452
-msgid "For Administrators"
-msgstr "Per gli amministratori"
+#: ../../include/datetime.php:313
+msgctxt "relative_date"
+msgid "week"
+msgid_plural "weeks"
+msgstr[0] "settimana"
+msgstr[1] "settimane"
-#: ../../include/widgets.php:1453
-msgid "For Developers"
-msgstr "Per sviluppatori"
+#: ../../include/datetime.php:316
+msgctxt "relative_date"
+msgid "day"
+msgid_plural "days"
+msgstr[0] "giorno"
+msgstr[1] "giorni"
-#: ../../include/widgets.php:1477 ../../include/widgets.php:1515
-msgid "Member registrations waiting for confirmation"
-msgstr "Richieste in attesa di conferma"
+#: ../../include/datetime.php:319
+msgctxt "relative_date"
+msgid "hour"
+msgid_plural "hours"
+msgstr[0] "ora"
+msgstr[1] "ore"
-#: ../../include/widgets.php:1483
-msgid "Inspect queue"
-msgstr "Coda di attesa"
+#: ../../include/datetime.php:322
+msgctxt "relative_date"
+msgid "minute"
+msgid_plural "minutes"
+msgstr[0] "minuto"
+msgstr[1] "minuti"
-#: ../../include/widgets.php:1485
-msgid "DB updates"
-msgstr "Aggiornamenti al DB"
+#: ../../include/datetime.php:325
+msgctxt "relative_date"
+msgid "second"
+msgid_plural "seconds"
+msgstr[0] "secondo"
+msgstr[1] "secondi"
-#: ../../include/widgets.php:1511
-msgid "Plugin Features"
-msgstr "Plugin"
+#: ../../include/datetime.php:562
+#, php-format
+msgid "%1$s's birthday"
+msgstr "Compleanno di %1$s"
-#: ../../include/activities.php:41
-msgid " and "
-msgstr "e"
+#: ../../include/datetime.php:563
+#, php-format
+msgid "Happy Birthday %1$s"
+msgstr "Buon compleanno %1$s"
-#: ../../include/activities.php:49
-msgid "public profile"
-msgstr "profilo pubblico"
+#: ../../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/activities.php:58
-#, php-format
-msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
-msgstr "%1$s ha cambiato %2$s in &ldquo;%3$s&rdquo;"
+#: ../../include/group.php:248
+msgid "Add new connections to this privacy group"
+msgstr "Aggiungi nuovi contatti a questo gruppo di canali"
-#: ../../include/activities.php:59
-#, php-format
-msgid "Visit %1$s's %2$s"
-msgstr "Guarda %2$s di %1$s "
+#: ../../include/group.php:289
+msgid "edit"
+msgstr "modifica"
-#: ../../include/activities.php:62
-#, php-format
-msgid "%1$s has an updated %2$s, changing %3$s."
-msgstr "%1$s ha aggiornato %2$s cambiando %3$s."
+#: ../../include/group.php:312
+msgid "Edit group"
+msgstr "Modifica il gruppo"
-#: ../../include/bb2diaspora.php:398
-msgid "Attachments:"
-msgstr "Allegati:"
+#: ../../include/group.php:313
+msgid "Add privacy group"
+msgstr "Crea un gruppo di canali"
-#: ../../include/bb2diaspora.php:487
-msgid "$Projectname event notification:"
-msgstr "Notifica evento $Projectname:"
+#: ../../include/group.php:314
+msgid "Channels not in any privacy group"
+msgstr "Canali che non sono in nessun gruppo"
#: ../../include/js_strings.php:5
msgid "Delete this item?"
msgstr "Eliminare questo elemento?"
#: ../../include/js_strings.php:8
-#, php-format
-msgid "%s show less"
-msgstr "%s riduci"
+msgid "[-] show less"
+msgstr "[-] riduci"
#: ../../include/js_strings.php:9
-#, php-format
-msgid "%s expand"
-msgstr "%s mostra tutto"
+msgid "[+] expand"
+msgstr "[+] mostra tutto"
#: ../../include/js_strings.php:10
-#, php-format
-msgid "%s collapse"
-msgstr "%s minimizza"
+msgid "[-] collapse"
+msgstr "[-] riduci"
#: ../../include/js_strings.php:11
msgid "Password too short"
@@ -9611,222 +9360,277 @@ msgctxt "calendar"
msgid "All day"
msgstr "Tutto il giorno"
-#: ../../include/contact_widgets.php:11
+#: ../../include/network.php:657
+msgid "view full size"
+msgstr "guarda nelle dimensioni reali"
+
+#: ../../include/network.php:1885
+msgid "No Subject"
+msgstr "Nessun titolo"
+
+#: ../../include/network.php:2146 ../../include/network.php:2147
+msgid "Friendica"
+msgstr "Friendica"
+
+#: ../../include/network.php:2148
+msgid "OStatus"
+msgstr "OStatus"
+
+#: ../../include/network.php:2149
+msgid "GNU-Social"
+msgstr "GNU-Social"
+
+#: ../../include/network.php:2150
+msgid "RSS/Atom"
+msgstr "RSS/Atom"
+
+#: ../../include/network.php:2152
+msgid "Diaspora"
+msgstr "Diaspora"
+
+#: ../../include/network.php:2153
+msgid "Facebook"
+msgstr "Facebook"
+
+#: ../../include/network.php:2154
+msgid "Zot"
+msgstr "Zot"
+
+#: ../../include/network.php:2155
+msgid "LinkedIn"
+msgstr "LinkedIn"
+
+#: ../../include/network.php:2156
+msgid "XMPP/IM"
+msgstr "XMPP/IM"
+
+#: ../../include/network.php:2157
+msgid "MySpace"
+msgstr "MySpace"
+
+#: ../../include/photos.php:110
#, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] "%d invito disponibile"
-msgstr[1] "%d inviti disponibili"
+msgid "Image exceeds website size limit of %lu bytes"
+msgstr "L'immagine supera il limite massimo di %lu bytes"
-#: ../../include/contact_widgets.php:19
-msgid "Find Channels"
-msgstr "Ricerca canali"
+#: ../../include/photos.php:117
+msgid "Image file is empty."
+msgstr "Il file dell'immagine è vuoto."
-#: ../../include/contact_widgets.php:20
-msgid "Enter name or interest"
-msgstr "Scrivi un nome o un interesse"
+#: ../../include/photos.php:255
+msgid "Photo storage failed."
+msgstr "Impossibile salvare la foto."
-#: ../../include/contact_widgets.php:21
-msgid "Connect/Follow"
-msgstr "Aggiungi"
+#: ../../include/photos.php:295
+msgid "a new photo"
+msgstr "una nuova foto"
-#: ../../include/contact_widgets.php:22
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr "Per esempio: Mario Rossi, Pesca"
+#: ../../include/photos.php:299
+#, 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/contact_widgets.php:26
-msgid "Random Profile"
-msgstr "Profilo casuale"
+#: ../../include/photos.php:506
+msgid "Upload New Photos"
+msgstr "Carica nuove foto"
-#: ../../include/contact_widgets.php:27
-msgid "Invite Friends"
-msgstr "Invita amici"
+#: ../../include/zot.php:699
+msgid "Invalid data packet"
+msgstr "Dati ricevuti non validi"
-#: ../../include/contact_widgets.php:29
-msgid "Advanced example: name=fred and country=iceland"
-msgstr "Per esempio: name=mario e country=italy"
+#: ../../include/zot.php:715
+msgid "Unable to verify channel signature"
+msgstr "Impossibile verificare la firma elettronica del canale"
-#: ../../include/contact_widgets.php:122
+#: ../../include/zot.php:2363
#, php-format
-msgid "%d connection in common"
-msgid_plural "%d connections in common"
-msgstr[0] "%d contatto in comune"
-msgstr[1] "%d contatti in comune"
+msgid "Unable to verify site signature for %s"
+msgstr "Impossibile verificare la firma elettronica del sito %s"
-#: ../../include/contact_widgets.php:127
-msgid "show more"
-msgstr "mostra tutto"
+#: ../../include/zot.php:3712
+msgid "invalid target signature"
+msgstr "la firma ricevuta non è valida"
-#: ../../include/dir_fns.php:141
-msgid "Directory Options"
-msgstr "Visibilità negli elenchi pubblici"
+#: ../../include/page_widgets.php:6
+msgid "New Page"
+msgstr "Nuova pagina web"
-#: ../../include/dir_fns.php:143
-msgid "Safe Mode"
-msgstr "Modalità SafeSearch"
+#: ../../include/page_widgets.php:43
+msgid "Title"
+msgstr "Titolo"
-#: ../../include/dir_fns.php:144
-msgid "Public Forums Only"
-msgstr "Solo forum pubblici"
+#: ../../include/permissions.php:26
+msgid "Can view my normal stream and posts"
+msgstr "Può vedere i miei contenuti e i post normali"
-#: ../../include/dir_fns.php:145
-msgid "This Website Only"
-msgstr "Solo in questo sito"
+#: ../../include/permissions.php:27
+msgid "Can view my default channel profile"
+msgstr "Può vedere il profilo predefinito del canale"
-#: ../../include/message.php:20
-msgid "No recipient provided."
-msgstr "Devi scegliere un destinatario."
+#: ../../include/permissions.php:28
+msgid "Can view my connections"
+msgstr "Può vedere i miei contatti"
-#: ../../include/message.php:25
-msgid "[no subject]"
-msgstr "[nessun titolo]"
+#: ../../include/permissions.php:29
+msgid "Can view my file storage and photos"
+msgstr "Può vedere il mio archivio file e foto"
-#: ../../include/message.php:45
-msgid "Unable to determine sender."
-msgstr "Impossibile determinare il mittente."
+#: ../../include/permissions.php:30
+msgid "Can view my webpages"
+msgstr "Può vedere le mie pagine web"
-#: ../../include/message.php:222
-msgid "Stored post could not be verified."
-msgstr "Non è stato possibile verificare il post."
+#: ../../include/permissions.php:33
+msgid "Can send me their channel stream and posts"
+msgstr "È tra i canali che seguo"
-#: ../../include/acl_selectors.php:269
-msgid "Who can see this?"
-msgstr "Chi può vederlo?"
+#: ../../include/permissions.php:34
+msgid "Can post on my channel page (\"wall\")"
+msgstr "Può scrivere sulla bacheca del mio canale"
-#: ../../include/acl_selectors.php:270
-msgid "Custom selection"
-msgstr "Selezione personalizzata"
+#: ../../include/permissions.php:35
+msgid "Can comment on or like my posts"
+msgstr "Può commentare o aggiungere \"mi piace\" ai miei post"
-#: ../../include/acl_selectors.php:271
-msgid ""
-"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit"
-" the scope of \"Show\"."
-msgstr "Scegli \"Mostra\" per permettere la visione. \"Non mostrare\" ha la precedenza e limita l'effetto di \"Mostra\"."
+#: ../../include/permissions.php:36
+msgid "Can send me private mail messages"
+msgstr "Può inviarmi messaggi privati"
-#: ../../include/acl_selectors.php:272
-msgid "Show"
-msgstr "Mostra"
+#: ../../include/permissions.php:37
+msgid "Can like/dislike stuff"
+msgstr "Può aggiungere \"mi piace\" a tutto il resto"
-#: ../../include/acl_selectors.php:273
-msgid "Don't show"
-msgstr "Non mostrare"
+#: ../../include/permissions.php:37
+msgid "Profiles and things other than posts/comments"
+msgstr "Può aggiungere \"mi piace\" a tutto ciò che non riguarda i post, come per esempio il profilo"
-#: ../../include/acl_selectors.php:279
-msgid "Other networks and post services"
-msgstr "Invio ad altre reti o a siti esterni"
+#: ../../include/permissions.php:39
+msgid "Can forward to all my channel contacts via post @mentions"
+msgstr "Può inoltrare post a tutti i contatti del canale tramite una @menzione"
-#: ../../include/acl_selectors.php:309
-#, php-format
+#: ../../include/permissions.php:39
+msgid "Advanced - useful for creating group forum channels"
+msgstr "Impostazione avanzata - utile per creare un canale-forum di discussione"
+
+#: ../../include/permissions.php:40
+msgid "Can chat with me (when available)"
+msgstr "Può aprire una chat con me (se disponibile)"
+
+#: ../../include/permissions.php:41
+msgid "Can write to my file storage and photos"
+msgstr "Può modificare il mio archivio file e foto"
+
+#: ../../include/permissions.php:42
+msgid "Can edit my webpages"
+msgstr "Può modificare le mie pagine web"
+
+#: ../../include/permissions.php:44
+msgid "Can source my public posts in derived channels"
+msgstr "Può usare i miei post pubblici per creare canali derivati"
+
+#: ../../include/permissions.php:44
+msgid "Somewhat advanced - very useful in open communities"
+msgstr "Piuttosto avanzato - molto utile nelle comunità aperte"
+
+#: ../../include/permissions.php:46
+msgid "Can administer my channel resources"
+msgstr "Può amministrare i contenuti del mio canale"
+
+#: ../../include/permissions.php:46
msgid ""
-"Post permissions %s cannot be changed %s after a post is shared.</br />These"
-" permissions set who is allowed to view the post."
-msgstr "I permessi del post %s non possono essere cambiati %s dopo che un post è stato condiviso.</br />Questi permessi definiscono chi ha diritto di vedere il post."
+"Extremely advanced. Leave this alone unless you know what you are doing"
+msgstr "Impostazione pericolosa - lasciare il valore predefinito se non si è assolutamente sicuri"
-#: ../../include/datetime.php:135
-msgid "Birthday"
-msgstr "Compleanno"
+#: ../../include/permissions.php:877
+msgid "Social Networking"
+msgstr "Social network"
-#: ../../include/datetime.php:137
-msgid "Age: "
-msgstr "Età:"
+#: ../../include/permissions.php:877
+msgid "Social - Mostly Public"
+msgstr "Social - Prevalentemente pubblico"
-#: ../../include/datetime.php:139
-msgid "YYYY-MM-DD or MM-DD"
-msgstr "AAAA-MM-GG oppure MM-GG"
+#: ../../include/permissions.php:877
+msgid "Social - Restricted"
+msgstr "Social - Con restrizioni"
-#: ../../include/datetime.php:272 ../../boot.php:2479
-msgid "never"
-msgstr "mai"
+#: ../../include/permissions.php:877
+msgid "Social - Private"
+msgstr "Social - Privato"
-#: ../../include/datetime.php:278
-msgid "less than a second ago"
-msgstr "meno di un secondo fa"
+#: ../../include/permissions.php:878
+msgid "Community Forum"
+msgstr "Forum di discussione"
-#: ../../include/datetime.php:296
-#, php-format
-msgctxt "e.g. 22 hours ago, 1 minute ago"
-msgid "%1$d %2$s ago"
-msgstr "%1$d %2$s fa"
+#: ../../include/permissions.php:878
+msgid "Forum - Mostly Public"
+msgstr "Social - Prevalentemente pubblico"
-#: ../../include/datetime.php:307
-msgctxt "relative_date"
-msgid "year"
-msgid_plural "years"
-msgstr[0] "anno"
-msgstr[1] "anni"
+#: ../../include/permissions.php:878
+msgid "Forum - Restricted"
+msgstr "Forum - Con restrizioni"
-#: ../../include/datetime.php:310
-msgctxt "relative_date"
-msgid "month"
-msgid_plural "months"
-msgstr[0] "mese"
-msgstr[1] "mesi"
+#: ../../include/permissions.php:878
+msgid "Forum - Private"
+msgstr "Forum - Privato"
-#: ../../include/datetime.php:313
-msgctxt "relative_date"
-msgid "week"
-msgid_plural "weeks"
-msgstr[0] "settimana"
-msgstr[1] "settimane"
+#: ../../include/permissions.php:879
+msgid "Feed Republish"
+msgstr "Aggregatore di feed esterni"
-#: ../../include/datetime.php:316
-msgctxt "relative_date"
-msgid "day"
-msgid_plural "days"
-msgstr[0] "giorno"
-msgstr[1] "giorni"
+#: ../../include/permissions.php:879
+msgid "Feed - Mostly Public"
+msgstr "Feed - Prevalentemente pubblico"
-#: ../../include/datetime.php:319
-msgctxt "relative_date"
-msgid "hour"
-msgid_plural "hours"
-msgstr[0] "ora"
-msgstr[1] "ore"
+#: ../../include/permissions.php:879
+msgid "Feed - Restricted"
+msgstr "Feed - Con restrizioni"
-#: ../../include/datetime.php:322
-msgctxt "relative_date"
-msgid "minute"
-msgid_plural "minutes"
-msgstr[0] "minuto"
-msgstr[1] "minuti"
+#: ../../include/permissions.php:880
+msgid "Special Purpose"
+msgstr "Per finalità speciali"
-#: ../../include/datetime.php:325
-msgctxt "relative_date"
-msgid "second"
-msgid_plural "seconds"
-msgstr[0] "secondo"
-msgstr[1] "secondi"
+#: ../../include/permissions.php:880
+msgid "Special - Celebrity/Soapbox"
+msgstr "Speciale - Pagina per fan"
-#: ../../include/datetime.php:562
-#, php-format
-msgid "%1$s's birthday"
-msgstr "Compleanno di %1$s"
+#: ../../include/permissions.php:880
+msgid "Special - Group Repository"
+msgstr "Speciale - Repository di gruppo"
-#: ../../include/datetime.php:563
-#, php-format
-msgid "Happy Birthday %1$s"
-msgstr "Buon compleanno %1$s"
+#: ../../include/permissions.php:881
+msgid "Custom/Expert Mode"
+msgstr "Personalizzazione per esperti"
-#: ../../include/api.php:1327
-msgid "Public Timeline"
-msgstr "Diario pubblico"
+#: ../../include/activities.php:41
+msgid " and "
+msgstr "e"
-#: ../../include/zot.php:697
-msgid "Invalid data packet"
-msgstr "Dati ricevuti non validi"
+#: ../../include/activities.php:49
+msgid "public profile"
+msgstr "profilo pubblico"
-#: ../../include/zot.php:713
-msgid "Unable to verify channel signature"
-msgstr "Impossibile verificare la firma elettronica del canale"
+#: ../../include/activities.php:58
+#, php-format
+msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
+msgstr "%1$s ha cambiato %2$s in &ldquo;%3$s&rdquo;"
-#: ../../include/zot.php:2326
+#: ../../include/activities.php:59
#, php-format
-msgid "Unable to verify site signature for %s"
-msgstr "Impossibile verificare la firma elettronica del sito %s"
+msgid "Visit %1$s's %2$s"
+msgstr "Guarda %2$s di %1$s "
-#: ../../include/zot.php:3703
-msgid "invalid target signature"
-msgstr "la firma ricevuta non è valida"
+#: ../../include/activities.php:62
+#, php-format
+msgid "%1$s has an updated %2$s, changing %3$s."
+msgstr "%1$s ha aggiornato %2$s cambiando %3$s."
+
+#: ../../include/bb2diaspora.php:398
+msgid "Attachments:"
+msgstr "Allegati:"
+
+#: ../../include/bb2diaspora.php:487
+msgid "$Projectname event notification:"
+msgstr "Notifica evento $Projectname:"
#: ../../view/theme/redbasic/php/config.php:82
msgid "Focus (Hubzilla default)"
@@ -9964,66 +9768,62 @@ msgstr "Dimensione foto dell'autore della conversazione"
msgid "Set size of followup author photos"
msgstr "Dimensione foto dei partecipanti alla conversazione"
-#: ../../boot.php:1163
+#: ../../boot.php:1162
#, php-format
msgctxt "opensearch"
msgid "Search %1$s (%2$s)"
msgstr "Cerca %1$s (%2$s)"
-#: ../../boot.php:1163
+#: ../../boot.php:1162
msgctxt "opensearch"
msgid "$Projectname"
msgstr "$Projectname"
-#: ../../boot.php:1481
+#: ../../boot.php:1480
#, php-format
msgid "Update %s failed. See error logs."
msgstr "%s: aggiornamento fallito. Controlla i log di errore."
-#: ../../boot.php:1484
+#: ../../boot.php:1483
#, php-format
msgid "Update Error at %s"
msgstr "Errore di aggiornamento su %s"
-#: ../../boot.php:1685
+#: ../../boot.php:1684
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:1706
-msgid "Login/Email"
-msgstr "Login/Email"
-
-#: ../../boot.php:1707
msgid "Password"
msgstr "Password"
-#: ../../boot.php:1708
+#: ../../boot.php:1707
msgid "Remember me"
msgstr "Resta connesso"
-#: ../../boot.php:1711
+#: ../../boot.php:1710
msgid "Forgot your password?"
msgstr "Hai dimenticato la password?"
-#: ../../boot.php:2277
+#: ../../boot.php:2276
msgid "toggle mobile"
msgstr "attiva/disattiva versione mobile"
-#: ../../boot.php:2432
+#: ../../boot.php:2425
msgid "Website SSL certificate is not valid. Please correct."
msgstr "Il certificato SSL del sito non è valido. Si prega di intervenire."
-#: ../../boot.php:2435
+#: ../../boot.php:2428
#, php-format
msgid "[hubzilla] Website SSL error for %s"
msgstr "[hubzilla] Errore SSL su %s"
-#: ../../boot.php:2478
+#: ../../boot.php:2469
msgid "Cron/Scheduled tasks not running."
msgstr "Processi cron non avviati."
-#: ../../boot.php:2482
+#: ../../boot.php:2473
#, php-format
msgid "[hubzilla] Cron tasks not running on %s"
msgstr "[hubzilla] Cron non è stato eseguito %s"
diff --git a/view/js/main.js b/view/js/main.js
index 21157bdfe..c80163e72 100644
--- a/view/js/main.js
+++ b/view/js/main.js
@@ -659,7 +659,7 @@ function collapseHeight() {
var position = $(window).scrollTop();
$(".wall-item-content, .directory-collapse").each(function() {
- var orgHeight = $(this).outerHeight(true);
+ var orgHeight = parseInt($(this).css('height'));
if(orgHeight > divmore_height) {
if(! $(this).hasClass('divmore')) {
@@ -679,7 +679,7 @@ function collapseHeight() {
beforeToggle: function(trigger, element, expanded) {
if(expanded) {
if((($(element).offset().top + divmore_height) - $(window).scrollTop()) < 65 ) {
- $(window).scrollTop($(window).scrollTop() - ($(element).outerHeight(true) - divmore_height));
+ $(window).scrollTop($(window).scrollTop() - (orgHeight - divmore_height));
}
}
}
diff --git a/view/nb-no/hmessages.po b/view/nb-no/hmessages.po
index bcb926d90..7165d2647 100644
--- a/view/nb-no/hmessages.po
+++ b/view/nb-no/hmessages.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Redmatrix\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-06-10 00:02-0700\n"
-"PO-Revision-Date: 2016-06-10 09:14+0000\n"
+"POT-Creation-Date: 2016-07-22 00:02-0700\n"
+"PO-Revision-Date: 2016-07-25 08:54+0000\n"
"Last-Translator: fabrixxm <fabrix.xm@gmail.com>\n"
"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/Friendica/red-matrix/language/nb_NO/)\n"
"MIME-Version: 1.0\n"
@@ -18,11 +18,156 @@ msgstr ""
"Language: nb_NO\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+#: ../../Zotlabs/Access/PermissionRoles.php:182
+#: ../../include/permissions.php:904
+msgid "Social Networking"
+msgstr "Sosialt nettverk"
+
+#: ../../Zotlabs/Access/PermissionRoles.php:183
+#: ../../include/permissions.php:904
+msgid "Social - Mostly Public"
+msgstr "Sosial - ganske offentlig"
+
+#: ../../Zotlabs/Access/PermissionRoles.php:184
+#: ../../include/permissions.php:904
+msgid "Social - Restricted"
+msgstr "Sosial - begrenset"
+
+#: ../../Zotlabs/Access/PermissionRoles.php:185
+#: ../../include/permissions.php:904
+msgid "Social - Private"
+msgstr "Sosial - privat"
+
+#: ../../Zotlabs/Access/PermissionRoles.php:188
+#: ../../include/permissions.php:905
+msgid "Community Forum"
+msgstr "Forum for fellesskap"
+
+#: ../../Zotlabs/Access/PermissionRoles.php:189
+#: ../../include/permissions.php:905
+msgid "Forum - Mostly Public"
+msgstr "Forum - ganske offentlig"
+
+#: ../../Zotlabs/Access/PermissionRoles.php:190
+#: ../../include/permissions.php:905
+msgid "Forum - Restricted"
+msgstr "Forum - begrenset"
+
+#: ../../Zotlabs/Access/PermissionRoles.php:191
+#: ../../include/permissions.php:905
+msgid "Forum - Private"
+msgstr "Forum - privat"
+
+#: ../../Zotlabs/Access/PermissionRoles.php:194
+#: ../../include/permissions.php:906
+msgid "Feed Republish"
+msgstr "Republisering av strømmet innhold"
+
+#: ../../Zotlabs/Access/PermissionRoles.php:195
+#: ../../include/permissions.php:906
+msgid "Feed - Mostly Public"
+msgstr "Strøm - ganske offentlig"
+
+#: ../../Zotlabs/Access/PermissionRoles.php:196
+#: ../../include/permissions.php:906
+msgid "Feed - Restricted"
+msgstr "Strøm - begrenset"
+
+#: ../../Zotlabs/Access/PermissionRoles.php:199
+#: ../../include/permissions.php:907
+msgid "Special Purpose"
+msgstr "Spesiell bruk"
+
+#: ../../Zotlabs/Access/PermissionRoles.php:200
+#: ../../include/permissions.php:907
+msgid "Special - Celebrity/Soapbox"
+msgstr "Spesiell - kjendis/talerstol"
+
+#: ../../Zotlabs/Access/PermissionRoles.php:201
+#: ../../include/permissions.php:907
+msgid "Special - Group Repository"
+msgstr "Spesiell - gruppelager"
+
+#: ../../Zotlabs/Access/PermissionRoles.php:204 ../../include/selectors.php:49
+#: ../../include/selectors.php:66 ../../include/selectors.php:104
+#: ../../include/selectors.php:140 ../../include/permissions.php:908
+msgid "Other"
+msgstr "Annen"
+
+#: ../../Zotlabs/Access/PermissionRoles.php:205
+#: ../../include/permissions.php:908
+msgid "Custom/Expert Mode"
+msgstr "Tilpasset/Ekspertmodus"
+
+#: ../../Zotlabs/Access/Permissions.php:30
+msgid "Can view my channel stream and posts"
+msgstr ""
+
+#: ../../Zotlabs/Access/Permissions.php:31 ../../include/permissions.php:33
+msgid "Can send me their channel stream and posts"
+msgstr "Kan sende meg deres kanalstrøm og innlegg"
+
+#: ../../Zotlabs/Access/Permissions.php:32 ../../include/permissions.php:27
+msgid "Can view my default channel profile"
+msgstr "Kan se min standard kanalprofil"
+
+#: ../../Zotlabs/Access/Permissions.php:33 ../../include/permissions.php:28
+msgid "Can view my connections"
+msgstr "Kan se mine forbindelser"
+
+#: ../../Zotlabs/Access/Permissions.php:34 ../../include/permissions.php:29
+msgid "Can view my file storage and photos"
+msgstr "Kan se mine filer og bilder"
+
+#: ../../Zotlabs/Access/Permissions.php:35
+msgid "Can upload/modify my file storage and photos"
+msgstr ""
+
+#: ../../Zotlabs/Access/Permissions.php:36
+msgid "Can view my channel webpages"
+msgstr ""
+
+#: ../../Zotlabs/Access/Permissions.php:37
+msgid "Can create/edit my channel webpages"
+msgstr ""
+
+#: ../../Zotlabs/Access/Permissions.php:38
+msgid "Can post on my channel (wall) page"
+msgstr ""
+
+#: ../../Zotlabs/Access/Permissions.php:39 ../../include/permissions.php:35
+msgid "Can comment on or like my posts"
+msgstr "Kan kommentere på eller like mine innlegg"
+
+#: ../../Zotlabs/Access/Permissions.php:40 ../../include/permissions.php:36
+msgid "Can send me private mail messages"
+msgstr "Kan sende meg private meldinger"
+
+#: ../../Zotlabs/Access/Permissions.php:41
+msgid "Can like/dislike profiles and profile things"
+msgstr ""
+
+#: ../../Zotlabs/Access/Permissions.php:42
+msgid "Can forward to all my channel connections via @+ mentions in posts"
+msgstr ""
+
+#: ../../Zotlabs/Access/Permissions.php:43
+msgid "Can chat with me"
+msgstr ""
+
+#: ../../Zotlabs/Access/Permissions.php:44 ../../include/permissions.php:44
+msgid "Can source my public posts in derived channels"
+msgstr "Kan bruke mine offentlige innlegg som kanalkilde i egne kanaler"
+
+#: ../../Zotlabs/Access/Permissions.php:45
+msgid "Can administer my channel"
+msgstr ""
+
#: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:239
msgid "parent"
msgstr "opp et nivå"
-#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2620
+#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2605
msgid "Collection"
msgstr "Samling"
@@ -46,16 +191,17 @@ msgstr "Tidsplan innboks"
msgid "Schedule Outbox"
msgstr "Tidsplan utboks"
-#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:798
-#: ../../Zotlabs/Module/Photos.php:1243 ../../Zotlabs/Lib/Apps.php:486
-#: ../../Zotlabs/Lib/Apps.php:561 ../../include/widgets.php:1505
-#: ../../include/conversation.php:1032
+#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:796
+#: ../../Zotlabs/Module/Photos.php:1241
+#: ../../Zotlabs/Module/Embedphotos.php:147 ../../Zotlabs/Lib/Apps.php:490
+#: ../../Zotlabs/Lib/Apps.php:565 ../../include/conversation.php:1035
+#: ../../include/widgets.php:1599
msgid "Unknown"
msgstr "Ukjent"
#: ../../Zotlabs/Storage/Browser.php:226 ../../Zotlabs/Module/Fbrowser.php:85
-#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:93
-#: ../../include/conversation.php:1639
+#: ../../Zotlabs/Lib/Apps.php:217 ../../include/nav.php:93
+#: ../../include/conversation.php:1654
msgid "Files"
msgstr "Filer"
@@ -68,22 +214,23 @@ msgid "Shared"
msgstr "Delt"
#: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:306
-#: ../../Zotlabs/Module/Blocks.php:156 ../../Zotlabs/Module/Layouts.php:182
-#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/New_channel.php:142
-#: ../../Zotlabs/Module/Webpages.php:186
+#: ../../Zotlabs/Module/Layouts.php:184 ../../Zotlabs/Module/Menu.php:118
+#: ../../Zotlabs/Module/New_channel.php:142
+#: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Webpages.php:193
msgid "Create"
msgstr "Lag"
#: ../../Zotlabs/Storage/Browser.php:231 ../../Zotlabs/Storage/Browser.php:308
#: ../../Zotlabs/Module/Cover_photo.php:357
-#: ../../Zotlabs/Module/Photos.php:825 ../../Zotlabs/Module/Photos.php:1364
-#: ../../Zotlabs/Module/Profile_photo.php:368 ../../include/widgets.php:1518
+#: ../../Zotlabs/Module/Photos.php:823 ../../Zotlabs/Module/Photos.php:1362
+#: ../../Zotlabs/Module/Profile_photo.php:390
+#: ../../Zotlabs/Module/Embedphotos.php:159 ../../include/widgets.php:1612
msgid "Upload"
msgstr "Last opp"
#: ../../Zotlabs/Storage/Browser.php:235 ../../Zotlabs/Module/Chat.php:247
-#: ../../Zotlabs/Module/Admin.php:1223 ../../Zotlabs/Module/Settings.php:592
-#: ../../Zotlabs/Module/Settings.php:618
+#: ../../Zotlabs/Module/Admin.php:1223 ../../Zotlabs/Module/Settings.php:646
+#: ../../Zotlabs/Module/Settings.php:672
#: ../../Zotlabs/Module/Sharedwithme.php:99
msgid "Name"
msgstr "Navn"
@@ -93,7 +240,7 @@ msgid "Type"
msgstr "Type"
#: ../../Zotlabs/Storage/Browser.php:237
-#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1344
+#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1324
msgid "Size"
msgstr "Størrelse"
@@ -102,34 +249,32 @@ msgstr "Størrelse"
msgid "Last Modified"
msgstr "Sist endret"
-#: ../../Zotlabs/Storage/Browser.php:240 ../../Zotlabs/Module/Blocks.php:157
-#: ../../Zotlabs/Module/Editblock.php:109
+#: ../../Zotlabs/Storage/Browser.php:240 ../../Zotlabs/Module/Editpost.php:84
#: ../../Zotlabs/Module/Connections.php:290
#: ../../Zotlabs/Module/Connections.php:310
-#: ../../Zotlabs/Module/Editpost.php:84
-#: ../../Zotlabs/Module/Editlayout.php:113
-#: ../../Zotlabs/Module/Editwebpage.php:146
-#: ../../Zotlabs/Module/Layouts.php:190 ../../Zotlabs/Module/Menu.php:112
-#: ../../Zotlabs/Module/Admin.php:2113 ../../Zotlabs/Module/Settings.php:652
-#: ../../Zotlabs/Module/Thing.php:260 ../../Zotlabs/Module/Webpages.php:187
-#: ../../Zotlabs/Lib/Apps.php:337 ../../Zotlabs/Lib/ThreadItem.php:106
-#: ../../include/channel.php:937 ../../include/channel.php:941
-#: ../../include/menu.php:108 ../../include/page_widgets.php:8
-#: ../../include/page_widgets.php:36
+#: ../../Zotlabs/Module/Editlayout.php:114
+#: ../../Zotlabs/Module/Editwebpage.php:145
+#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Menu.php:112
+#: ../../Zotlabs/Module/Admin.php:2113 ../../Zotlabs/Module/Blocks.php:160
+#: ../../Zotlabs/Module/Editblock.php:109
+#: ../../Zotlabs/Module/Settings.php:706 ../../Zotlabs/Module/Thing.php:260
+#: ../../Zotlabs/Module/Webpages.php:194 ../../Zotlabs/Lib/Apps.php:341
+#: ../../Zotlabs/Lib/ThreadItem.php:106 ../../include/page_widgets.php:9
+#: ../../include/page_widgets.php:39 ../../include/channel.php:976
+#: ../../include/channel.php:980 ../../include/menu.php:108
msgid "Edit"
msgstr "Endre"
-#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Blocks.php:159
-#: ../../Zotlabs/Module/Connedit.php:572
-#: ../../Zotlabs/Module/Editblock.php:134
+#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Connedit.php:602
#: ../../Zotlabs/Module/Connections.php:263
-#: ../../Zotlabs/Module/Editlayout.php:136
-#: ../../Zotlabs/Module/Editwebpage.php:170 ../../Zotlabs/Module/Group.php:177
-#: ../../Zotlabs/Module/Photos.php:1173 ../../Zotlabs/Module/Admin.php:1039
+#: ../../Zotlabs/Module/Editlayout.php:137
+#: ../../Zotlabs/Module/Editwebpage.php:169 ../../Zotlabs/Module/Group.php:177
+#: ../../Zotlabs/Module/Photos.php:1171 ../../Zotlabs/Module/Admin.php:1039
#: ../../Zotlabs/Module/Admin.php:1213 ../../Zotlabs/Module/Admin.php:2114
-#: ../../Zotlabs/Module/Settings.php:653 ../../Zotlabs/Module/Thing.php:261
-#: ../../Zotlabs/Module/Webpages.php:189 ../../Zotlabs/Lib/Apps.php:338
-#: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:657
+#: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Editblock.php:134
+#: ../../Zotlabs/Module/Settings.php:707 ../../Zotlabs/Module/Thing.php:261
+#: ../../Zotlabs/Module/Webpages.php:196 ../../Zotlabs/Lib/Apps.php:342
+#: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:660
msgid "Delete"
msgstr "Slett"
@@ -155,74 +300,73 @@ msgstr "Lag ny mappe"
msgid "Upload file"
msgstr "Last opp fil"
-#: ../../Zotlabs/Web/WebServer.php:120 ../../Zotlabs/Module/Dreport.php:10
-#: ../../Zotlabs/Module/Dreport.php:49 ../../Zotlabs/Module/Group.php:72
-#: ../../Zotlabs/Module/Like.php:284 ../../Zotlabs/Module/Import_items.php:112
+#: ../../Zotlabs/Web/WebServer.php:127 ../../Zotlabs/Module/Dreport.php:10
+#: ../../Zotlabs/Module/Dreport.php:66 ../../Zotlabs/Module/Group.php:72
+#: ../../Zotlabs/Module/Like.php:283 ../../Zotlabs/Module/Import_items.php:114
#: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:62
-#: ../../include/items.php:385
+#: ../../include/items.php:384
msgid "Permission denied"
msgstr "Tillatelse avvist"
-#: ../../Zotlabs/Web/WebServer.php:121 ../../Zotlabs/Web/Router.php:65
-#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Blocks.php:73
-#: ../../Zotlabs/Module/Blocks.php:80 ../../Zotlabs/Module/Channel.php:105
-#: ../../Zotlabs/Module/Channel.php:226 ../../Zotlabs/Module/Channel.php:267
-#: ../../Zotlabs/Module/Chat.php:100 ../../Zotlabs/Module/Chat.php:105
-#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Block.php:26
-#: ../../Zotlabs/Module/Block.php:76 ../../Zotlabs/Module/Bookmarks.php:61
-#: ../../Zotlabs/Module/Connedit.php:366 ../../Zotlabs/Module/Editblock.php:67
-#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Connections.php:33
+#: ../../Zotlabs/Web/WebServer.php:128 ../../Zotlabs/Web/Router.php:65
+#: ../../Zotlabs/Module/Achievements.php:34
+#: ../../Zotlabs/Module/Connedit.php:390 ../../Zotlabs/Module/Id.php:76
+#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Events.php:264
+#: ../../Zotlabs/Module/Bookmarks.php:61 ../../Zotlabs/Module/Editpost.php:17
+#: ../../Zotlabs/Module/Page.php:35 ../../Zotlabs/Module/Page.php:91
+#: ../../Zotlabs/Module/Connections.php:33
#: ../../Zotlabs/Module/Cover_photo.php:277
-#: ../../Zotlabs/Module/Cover_photo.php:290
-#: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Events.php:265
-#: ../../Zotlabs/Module/Editlayout.php:67
+#: ../../Zotlabs/Module/Cover_photo.php:290 ../../Zotlabs/Module/Chat.php:100
+#: ../../Zotlabs/Module/Chat.php:105 ../../Zotlabs/Module/Editlayout.php:67
#: ../../Zotlabs/Module/Editlayout.php:90
-#: ../../Zotlabs/Module/Editwebpage.php:69
-#: ../../Zotlabs/Module/Editwebpage.php:90
-#: ../../Zotlabs/Module/Editwebpage.php:105
-#: ../../Zotlabs/Module/Editwebpage.php:127 ../../Zotlabs/Module/Group.php:13
-#: ../../Zotlabs/Module/Api.php:13 ../../Zotlabs/Module/Api.php:18
-#: ../../Zotlabs/Module/Filestorage.php:24
-#: ../../Zotlabs/Module/Filestorage.php:79
-#: ../../Zotlabs/Module/Filestorage.php:94
-#: ../../Zotlabs/Module/Filestorage.php:121 ../../Zotlabs/Module/Item.php:210
-#: ../../Zotlabs/Module/Item.php:218 ../../Zotlabs/Module/Item.php:1070
+#: ../../Zotlabs/Module/Editwebpage.php:68
+#: ../../Zotlabs/Module/Editwebpage.php:89
+#: ../../Zotlabs/Module/Editwebpage.php:104
+#: ../../Zotlabs/Module/Editwebpage.php:126 ../../Zotlabs/Module/Group.php:13
+#: ../../Zotlabs/Module/Appman.php:75 ../../Zotlabs/Module/Pdledit.php:26
+#: ../../Zotlabs/Module/Filestorage.php:23
+#: ../../Zotlabs/Module/Filestorage.php:78
+#: ../../Zotlabs/Module/Filestorage.php:93
+#: ../../Zotlabs/Module/Filestorage.php:120
#: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78
-#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Id.php:76
-#: ../../Zotlabs/Module/Like.php:181 ../../Zotlabs/Module/Invite.php:17
-#: ../../Zotlabs/Module/Invite.php:91 ../../Zotlabs/Module/Locs.php:87
-#: ../../Zotlabs/Module/Mail.php:129 ../../Zotlabs/Module/Manage.php:10
-#: ../../Zotlabs/Module/Menu.php:78 ../../Zotlabs/Module/Message.php:18
-#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Network.php:17
+#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Like.php:181
+#: ../../Zotlabs/Module/Profiles.php:203 ../../Zotlabs/Module/Profiles.php:601
+#: ../../Zotlabs/Module/Item.php:213 ../../Zotlabs/Module/Item.php:221
+#: ../../Zotlabs/Module/Item.php:1071 ../../Zotlabs/Module/Photos.php:73
+#: ../../Zotlabs/Module/Invite.php:17 ../../Zotlabs/Module/Invite.php:91
+#: ../../Zotlabs/Module/Locs.php:87 ../../Zotlabs/Module/Mail.php:121
+#: ../../Zotlabs/Module/Manage.php:10 ../../Zotlabs/Module/Menu.php:78
+#: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Mood.php:116
+#: ../../Zotlabs/Module/Network.php:15 ../../Zotlabs/Module/Channel.php:104
+#: ../../Zotlabs/Module/Channel.php:225 ../../Zotlabs/Module/Channel.php:266
#: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/New_channel.php:77
#: ../../Zotlabs/Module/New_channel.php:104
-#: ../../Zotlabs/Module/Notifications.php:70
-#: ../../Zotlabs/Module/Photos.php:75 ../../Zotlabs/Module/Page.php:35
-#: ../../Zotlabs/Module/Page.php:90 ../../Zotlabs/Module/Pdledit.php:26
-#: ../../Zotlabs/Module/Poke.php:137 ../../Zotlabs/Module/Profile.php:68
-#: ../../Zotlabs/Module/Profile.php:76 ../../Zotlabs/Module/Profiles.php:203
-#: ../../Zotlabs/Module/Profiles.php:601
-#: ../../Zotlabs/Module/Profile_photo.php:256
-#: ../../Zotlabs/Module/Profile_photo.php:269
-#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Appman.php:75
-#: ../../Zotlabs/Module/Register.php:77 ../../Zotlabs/Module/Regmod.php:21
+#: ../../Zotlabs/Module/Notifications.php:70 ../../Zotlabs/Module/Poke.php:137
+#: ../../Zotlabs/Module/Profile.php:68 ../../Zotlabs/Module/Profile.php:76
+#: ../../Zotlabs/Module/Block.php:26 ../../Zotlabs/Module/Block.php:76
+#: ../../Zotlabs/Module/Profile_photo.php:265
+#: ../../Zotlabs/Module/Profile_photo.php:278
+#: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80
+#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Editblock.php:67
+#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Register.php:77
+#: ../../Zotlabs/Module/Regmod.php:21
#: ../../Zotlabs/Module/Service_limits.php:11
-#: ../../Zotlabs/Module/Settings.php:572 ../../Zotlabs/Module/Setup.php:215
-#: ../../Zotlabs/Module/Sharedwithme.php:11
+#: ../../Zotlabs/Module/Settings.php:626 ../../Zotlabs/Module/Setup.php:215
+#: ../../Zotlabs/Module/Sharedwithme.php:11 ../../Zotlabs/Module/Thing.php:274
+#: ../../Zotlabs/Module/Thing.php:294 ../../Zotlabs/Module/Thing.php:331
#: ../../Zotlabs/Module/Sources.php:74 ../../Zotlabs/Module/Suggest.php:30
-#: ../../Zotlabs/Module/Thing.php:274 ../../Zotlabs/Module/Thing.php:294
-#: ../../Zotlabs/Module/Thing.php:331
-#: ../../Zotlabs/Module/Viewconnections.php:25
-#: ../../Zotlabs/Module/Viewconnections.php:30
-#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Webpages.php:74
-#: ../../Zotlabs/Lib/Chatroom.php:137 ../../include/items.php:3438
-#: ../../include/attach.php:141 ../../include/attach.php:189
-#: ../../include/attach.php:252 ../../include/attach.php:266
-#: ../../include/attach.php:273 ../../include/attach.php:338
-#: ../../include/attach.php:352 ../../include/attach.php:359
-#: ../../include/attach.php:437 ../../include/attach.php:895
-#: ../../include/attach.php:966 ../../include/attach.php:1118
-#: ../../include/photos.php:27
+#: ../../Zotlabs/Module/Webpages.php:73
+#: ../../Zotlabs/Module/Viewconnections.php:28
+#: ../../Zotlabs/Module/Viewconnections.php:33
+#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Api.php:13
+#: ../../Zotlabs/Module/Api.php:18 ../../Zotlabs/Lib/Chatroom.php:137
+#: ../../include/photos.php:27 ../../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:439
+#: ../../include/attach.php:901 ../../include/attach.php:972
+#: ../../include/attach.php:1124 ../../include/items.php:3448
msgid "Permission denied."
msgstr "Tillatelse avslått."
@@ -230,9 +374,9 @@ msgstr "Tillatelse avslått."
msgid "Not Found"
msgstr "Ikke funnet"
-#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Block.php:79
-#: ../../Zotlabs/Module/Display.php:117 ../../Zotlabs/Module/Help.php:97
-#: ../../Zotlabs/Module/Page.php:93
+#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Display.php:118
+#: ../../Zotlabs/Module/Page.php:94 ../../Zotlabs/Module/Help.php:97
+#: ../../Zotlabs/Module/Block.php:79
msgid "Page not found."
msgstr "Siden ikke funnet."
@@ -248,13 +392,13 @@ msgstr "Fjernautentisering blokkert. Du er logget inn på dette nettstedet lokal
msgid "Welcome %s. Remote authentication successful."
msgstr "Velkommen %s. Ekstern autentisering er vellykket."
-#: ../../Zotlabs/Module/Achievements.php:15 ../../Zotlabs/Module/Blocks.php:33
-#: ../../Zotlabs/Module/Connect.php:17 ../../Zotlabs/Module/Editblock.php:31
-#: ../../Zotlabs/Module/Editlayout.php:31
-#: ../../Zotlabs/Module/Editwebpage.php:33
-#: ../../Zotlabs/Module/Filestorage.php:60 ../../Zotlabs/Module/Hcard.php:12
-#: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Profile.php:20
-#: ../../Zotlabs/Module/Webpages.php:34 ../../include/channel.php:837
+#: ../../Zotlabs/Module/Achievements.php:15
+#: ../../Zotlabs/Module/Connect.php:17 ../../Zotlabs/Module/Editlayout.php:31
+#: ../../Zotlabs/Module/Editwebpage.php:32 ../../Zotlabs/Module/Hcard.php:12
+#: ../../Zotlabs/Module/Filestorage.php:59 ../../Zotlabs/Module/Layouts.php:31
+#: ../../Zotlabs/Module/Profile.php:20 ../../Zotlabs/Module/Blocks.php:33
+#: ../../Zotlabs/Module/Editblock.php:31 ../../Zotlabs/Module/Webpages.php:33
+#: ../../include/channel.php:876
msgid "Requested profile is not available."
msgstr "Forespurt profil er ikke tilgjengelig."
@@ -262,229 +406,6 @@ msgstr "Forespurt profil er ikke tilgjengelig."
msgid "Some blurb about what to do when you're new here"
msgstr "En standardtekst om hva du bør gjøre som ny her"
-#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:152
-#: ../../Zotlabs/Module/Editblock.php:108
-msgid "Block Name"
-msgstr "Byggeklossens navn"
-
-#: ../../Zotlabs/Module/Blocks.php:151 ../../include/text.php:2265
-msgid "Blocks"
-msgstr "Byggeklosser"
-
-#: ../../Zotlabs/Module/Blocks.php:153
-msgid "Block Title"
-msgstr "Byggeklossens tittel"
-
-#: ../../Zotlabs/Module/Blocks.php:154 ../../Zotlabs/Module/Layouts.php:188
-#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Webpages.php:198
-#: ../../include/page_widgets.php:44
-msgid "Created"
-msgstr "Laget"
-
-#: ../../Zotlabs/Module/Blocks.php:155 ../../Zotlabs/Module/Layouts.php:189
-#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Webpages.php:199
-#: ../../include/page_widgets.php:45
-msgid "Edited"
-msgstr "Endret"
-
-#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:191
-#: ../../Zotlabs/Module/Photos.php:1072 ../../Zotlabs/Module/Webpages.php:188
-#: ../../include/conversation.php:1208
-msgid "Share"
-msgstr "Del"
-
-#: ../../Zotlabs/Module/Blocks.php:163 ../../Zotlabs/Module/Layouts.php:195
-#: ../../Zotlabs/Module/Pubsites.php:47 ../../Zotlabs/Module/Webpages.php:193
-#: ../../include/page_widgets.php:39
-msgid "View"
-msgstr "Vis"
-
-#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Block.php:43
-#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Wall_upload.php:33
-msgid "Channel not found."
-msgstr "Kanalen ble ikke funnet."
-
-#: ../../Zotlabs/Module/Cal.php:69
-msgid "Permissions denied."
-msgstr "Tillatelse avvist."
-
-#: ../../Zotlabs/Module/Cal.php:259 ../../Zotlabs/Module/Events.php:588
-msgid "l, F j"
-msgstr "l, F j"
-
-#: ../../Zotlabs/Module/Cal.php:308 ../../Zotlabs/Module/Events.php:637
-#: ../../include/text.php:1732
-msgid "Link to Source"
-msgstr "Lenke til kilde"
-
-#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665
-msgid "Edit Event"
-msgstr "Endre hendelse"
-
-#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665
-msgid "Create Event"
-msgstr "Lag hendelse"
-
-#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339
-#: ../../Zotlabs/Module/Events.php:666 ../../Zotlabs/Module/Events.php:673
-#: ../../Zotlabs/Module/Photos.php:949
-msgid "Previous"
-msgstr "Forrige"
-
-#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340
-#: ../../Zotlabs/Module/Events.php:667 ../../Zotlabs/Module/Events.php:674
-#: ../../Zotlabs/Module/Photos.php:958 ../../Zotlabs/Module/Setup.php:267
-msgid "Next"
-msgstr "Neste"
-
-#: ../../Zotlabs/Module/Cal.php:334 ../../Zotlabs/Module/Events.php:668
-#: ../../include/widgets.php:755
-msgid "Export"
-msgstr "Eksport"
-
-#: ../../Zotlabs/Module/Cal.php:337 ../../Zotlabs/Module/Events.php:671
-#: ../../include/widgets.php:756
-msgid "Import"
-msgstr "Importer"
-
-#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Chat.php:196
-#: ../../Zotlabs/Module/Chat.php:238 ../../Zotlabs/Module/Connect.php:98
-#: ../../Zotlabs/Module/Connedit.php:731 ../../Zotlabs/Module/Events.php:475
-#: ../../Zotlabs/Module/Events.php:672 ../../Zotlabs/Module/Group.php:85
-#: ../../Zotlabs/Module/Filestorage.php:162
-#: ../../Zotlabs/Module/Import.php:550
-#: ../../Zotlabs/Module/Import_items.php:120
-#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121
-#: ../../Zotlabs/Module/Mail.php:378 ../../Zotlabs/Module/Mood.php:139
-#: ../../Zotlabs/Module/Mitem.php:235 ../../Zotlabs/Module/Photos.php:677
-#: ../../Zotlabs/Module/Photos.php:1052 ../../Zotlabs/Module/Photos.php:1092
-#: ../../Zotlabs/Module/Photos.php:1210 ../../Zotlabs/Module/Pconfig.php:107
-#: ../../Zotlabs/Module/Pdledit.php:66 ../../Zotlabs/Module/Poke.php:186
-#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Rate.php:170
-#: ../../Zotlabs/Module/Admin.php:492 ../../Zotlabs/Module/Admin.php:688
-#: ../../Zotlabs/Module/Admin.php:771 ../../Zotlabs/Module/Admin.php:1032
-#: ../../Zotlabs/Module/Admin.php:1211 ../../Zotlabs/Module/Admin.php:1421
-#: ../../Zotlabs/Module/Admin.php:1648 ../../Zotlabs/Module/Admin.php:1733
-#: ../../Zotlabs/Module/Admin.php:2116 ../../Zotlabs/Module/Appman.php:126
-#: ../../Zotlabs/Module/Settings.php:590 ../../Zotlabs/Module/Settings.php:703
-#: ../../Zotlabs/Module/Settings.php:731 ../../Zotlabs/Module/Settings.php:754
-#: ../../Zotlabs/Module/Settings.php:842
-#: ../../Zotlabs/Module/Settings.php:1034 ../../Zotlabs/Module/Setup.php:312
-#: ../../Zotlabs/Module/Setup.php:353 ../../Zotlabs/Module/Sources.php:114
-#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Thing.php:316
-#: ../../Zotlabs/Module/Thing.php:362 ../../Zotlabs/Module/Xchan.php:15
-#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/widgets.php:757
-#: ../../include/widgets.php:769 ../../include/js_strings.php:22
-#: ../../view/theme/redbasic/php/config.php:99
-msgid "Submit"
-msgstr "Send"
-
-#: ../../Zotlabs/Module/Cal.php:341 ../../Zotlabs/Module/Events.php:675
-msgid "Today"
-msgstr "Idag"
-
-#: ../../Zotlabs/Module/Channel.php:29 ../../Zotlabs/Module/Chat.php:25
-msgid "You must be logged in to see this page."
-msgstr "Du må være innloegget for å se denne siden."
-
-#: ../../Zotlabs/Module/Channel.php:41
-msgid "Posts and comments"
-msgstr ""
-
-#: ../../Zotlabs/Module/Channel.php:42
-msgid "Only posts"
-msgstr ""
-
-#: ../../Zotlabs/Module/Channel.php:102
-msgid "Insufficient permissions. Request redirected to profile page."
-msgstr "Utilstrekkelig tillatelse. Forespørsel omdirigert til profilsiden."
-
-#: ../../Zotlabs/Module/Chat.php:181
-msgid "Room not found"
-msgstr "Rommet ble ikke funnet"
-
-#: ../../Zotlabs/Module/Chat.php:197
-msgid "Leave Room"
-msgstr "Forlat rom"
-
-#: ../../Zotlabs/Module/Chat.php:198
-msgid "Delete Room"
-msgstr ""
-
-#: ../../Zotlabs/Module/Chat.php:199
-msgid "I am away right now"
-msgstr "Jeg er borte akkurat nå"
-
-#: ../../Zotlabs/Module/Chat.php:200
-msgid "I am online"
-msgstr "Jeg er online"
-
-#: ../../Zotlabs/Module/Chat.php:202
-msgid "Bookmark this room"
-msgstr "Bokmerk dette rommet"
-
-#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:205
-#: ../../Zotlabs/Module/Mail.php:314 ../../include/conversation.php:1176
-msgid "Please enter a link URL:"
-msgstr "Vennligst skriv inn en lenke URL:"
-
-#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:258
-#: ../../Zotlabs/Module/Mail.php:383 ../../Zotlabs/Lib/ThreadItem.php:722
-#: ../../include/conversation.php:1256
-msgid "Encrypt text"
-msgstr "Krypter tekst"
-
-#: ../../Zotlabs/Module/Chat.php:207 ../../Zotlabs/Module/Editblock.php:111
-#: ../../Zotlabs/Module/Editwebpage.php:147 ../../Zotlabs/Module/Mail.php:252
-#: ../../Zotlabs/Module/Mail.php:377 ../../include/conversation.php:1143
-msgid "Insert web link"
-msgstr "Sett inn web-lenke"
-
-#: ../../Zotlabs/Module/Chat.php:218
-msgid "Feature disabled."
-msgstr ""
-
-#: ../../Zotlabs/Module/Chat.php:232
-msgid "New Chatroom"
-msgstr "Nytt chatrom"
-
-#: ../../Zotlabs/Module/Chat.php:233
-msgid "Chatroom name"
-msgstr ""
-
-#: ../../Zotlabs/Module/Chat.php:234
-msgid "Expiration of chats (minutes)"
-msgstr "Chat utgår (antall minutter)"
-
-#: ../../Zotlabs/Module/Chat.php:235 ../../Zotlabs/Module/Filestorage.php:153
-#: ../../Zotlabs/Module/Photos.php:671 ../../Zotlabs/Module/Photos.php:1045
-#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:359
-#: ../../include/acl_selectors.php:283
-msgid "Permissions"
-msgstr "Tillatelser"
-
-#: ../../Zotlabs/Module/Chat.php:246
-#, php-format
-msgid "%1$s's Chatrooms"
-msgstr "%1$s sine chatrom"
-
-#: ../../Zotlabs/Module/Chat.php:251
-msgid "No chatrooms available"
-msgstr ""
-
-#: ../../Zotlabs/Module/Chat.php:252 ../../Zotlabs/Module/Manage.php:143
-#: ../../Zotlabs/Module/Profiles.php:778
-msgid "Create New"
-msgstr ""
-
-#: ../../Zotlabs/Module/Chat.php:255
-msgid "Expiration"
-msgstr ""
-
-#: ../../Zotlabs/Module/Chat.php:256
-msgid "min"
-msgstr ""
-
#: ../../Zotlabs/Module/Chatsvc.php:117
msgid "Away"
msgstr "Borte"
@@ -493,65 +414,6 @@ msgstr "Borte"
msgid "Online"
msgstr "Online"
-#: ../../Zotlabs/Module/Block.php:31 ../../Zotlabs/Module/Page.php:40
-msgid "Invalid item."
-msgstr "Ugyldig element."
-
-#: ../../Zotlabs/Module/Bookmarks.php:53
-msgid "Bookmark added"
-msgstr "Bokmerke lagt til"
-
-#: ../../Zotlabs/Module/Bookmarks.php:75
-msgid "My Bookmarks"
-msgstr "Mine bokmerker"
-
-#: ../../Zotlabs/Module/Bookmarks.php:86
-msgid "My Connections Bookmarks"
-msgstr "Mine forbindelsers bokmerker"
-
-#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109
-msgid "Continue"
-msgstr "Fortsett"
-
-#: ../../Zotlabs/Module/Connect.php:90
-msgid "Premium Channel Setup"
-msgstr "Premiumkanal-oppsett"
-
-#: ../../Zotlabs/Module/Connect.php:92
-msgid "Enable premium channel connection restrictions"
-msgstr "Slå på restriksjoner for forbindelse med premiumkanal"
-
-#: ../../Zotlabs/Module/Connect.php:93
-msgid ""
-"Please enter your restrictions or conditions, such as paypal receipt, usage "
-"guidelines, etc."
-msgstr "Vennligst skriv dine restriksjoner og betingelser, slik som PayPal-kvittering, retningslinjer for bruk, og så videre."
-
-#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115
-msgid ""
-"This channel may require additional steps or acknowledgement of the "
-"following conditions prior to connecting:"
-msgstr "Denne kanalen kan kreve ytterligere steg og bekreftelse av følgende betingelser før tilkobling:"
-
-#: ../../Zotlabs/Module/Connect.php:96
-msgid ""
-"Potential connections will then see the following text before proceeding:"
-msgstr "Potensielle forbindelser vil da se følgende tekst før de går videre:"
-
-#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118
-msgid ""
-"By continuing, I certify that I have complied with any instructions provided"
-" on this page."
-msgstr "Ved å fortsette bekrefter jeg at jeg har oppfylt alle instruksjoner gitt på denne siden."
-
-#: ../../Zotlabs/Module/Connect.php:106
-msgid "(No specific instructions have been provided by the channel owner.)"
-msgstr "(Ingen spesifikke instruksjoner er gitt av kanaleieren.)"
-
-#: ../../Zotlabs/Module/Connect.php:114
-msgid "Restricted or Premium Channel"
-msgstr "Begrenset kanal eller premiumkanal"
-
#: ../../Zotlabs/Module/Connedit.php:80
msgid "Could not access contact record."
msgstr "Fikk ikke tilgang til kontaktinformasjonen."
@@ -560,317 +422,350 @@ msgstr "Fikk ikke tilgang til kontaktinformasjonen."
msgid "Could not locate selected profile."
msgstr "Fant ikke valgt profil."
-#: ../../Zotlabs/Module/Connedit.php:227
+#: ../../Zotlabs/Module/Connedit.php:248
msgid "Connection updated."
msgstr "Forbindelsen er oppdatert."
-#: ../../Zotlabs/Module/Connedit.php:229
+#: ../../Zotlabs/Module/Connedit.php:250
msgid "Failed to update connection record."
msgstr "Mislyktes med å oppdatere forbindelsesinformasjonen."
-#: ../../Zotlabs/Module/Connedit.php:276
+#: ../../Zotlabs/Module/Connedit.php:300
msgid "is now connected to"
msgstr "er nå forbundet til"
-#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Connedit.php:654
-#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460
-#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Api.php:89
-#: ../../Zotlabs/Module/Filestorage.php:157
-#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100
-#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158
-#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232
-#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666
-#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:459
-#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581
+#: ../../Zotlabs/Module/Connedit.php:403 ../../Zotlabs/Module/Connedit.php:685
+#: ../../Zotlabs/Module/Events.php:458 ../../Zotlabs/Module/Events.php:459
+#: ../../Zotlabs/Module/Events.php:468
+#: ../../Zotlabs/Module/Filestorage.php:156
+#: ../../Zotlabs/Module/Filestorage.php:164
+#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Photos.php:664
+#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157
+#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:159
+#: ../../Zotlabs/Module/Mitem.php:232 ../../Zotlabs/Module/Mitem.php:233
+#: ../../Zotlabs/Module/Admin.php:459 ../../Zotlabs/Module/Removeme.php:63
+#: ../../Zotlabs/Module/Settings.php:635 ../../Zotlabs/Module/Api.php:89
#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144
#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105
-#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707
+#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1708
msgid "No"
msgstr "Nei"
-#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Events.php:459
-#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:469
-#: ../../Zotlabs/Module/Api.php:88 ../../Zotlabs/Module/Filestorage.php:157
-#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100
-#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158
-#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232
-#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666
-#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:461
-#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581
+#: ../../Zotlabs/Module/Connedit.php:403 ../../Zotlabs/Module/Events.php:458
+#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:468
+#: ../../Zotlabs/Module/Filestorage.php:156
+#: ../../Zotlabs/Module/Filestorage.php:164
+#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Photos.php:664
+#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157
+#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:159
+#: ../../Zotlabs/Module/Mitem.php:232 ../../Zotlabs/Module/Mitem.php:233
+#: ../../Zotlabs/Module/Admin.php:461 ../../Zotlabs/Module/Removeme.php:63
+#: ../../Zotlabs/Module/Settings.php:635 ../../Zotlabs/Module/Api.php:88
#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144
#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105
-#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707
+#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1708
msgid "Yes"
msgstr "Ja"
-#: ../../Zotlabs/Module/Connedit.php:411
+#: ../../Zotlabs/Module/Connedit.php:435
msgid "Could not access address book record."
msgstr "Fikk ikke tilgang til informasjonen i adresseboken."
-#: ../../Zotlabs/Module/Connedit.php:425
+#: ../../Zotlabs/Module/Connedit.php:455
msgid "Refresh failed - channel is currently unavailable."
msgstr "Oppfrisking mislyktes - kanalen er for øyeblikket utilgjengelig."
-#: ../../Zotlabs/Module/Connedit.php:440 ../../Zotlabs/Module/Connedit.php:449
-#: ../../Zotlabs/Module/Connedit.php:458 ../../Zotlabs/Module/Connedit.php:467
-#: ../../Zotlabs/Module/Connedit.php:480
+#: ../../Zotlabs/Module/Connedit.php:470 ../../Zotlabs/Module/Connedit.php:479
+#: ../../Zotlabs/Module/Connedit.php:488 ../../Zotlabs/Module/Connedit.php:497
+#: ../../Zotlabs/Module/Connedit.php:510
msgid "Unable to set address book parameters."
msgstr "Ikke i stand til å angi parametre for adresseboken."
-#: ../../Zotlabs/Module/Connedit.php:503
+#: ../../Zotlabs/Module/Connedit.php:533
msgid "Connection has been removed."
msgstr "Forbindelsen har blitt fjernet."
-#: ../../Zotlabs/Module/Connedit.php:519 ../../Zotlabs/Lib/Apps.php:219
-#: ../../include/nav.php:86 ../../include/conversation.php:954
+#: ../../Zotlabs/Module/Connedit.php:549 ../../Zotlabs/Lib/Apps.php:221
+#: ../../include/nav.php:86 ../../include/conversation.php:957
msgid "View Profile"
msgstr "Vis profil"
-#: ../../Zotlabs/Module/Connedit.php:522
+#: ../../Zotlabs/Module/Connedit.php:552
#, php-format
msgid "View %s's profile"
msgstr "Vis %s sin profil"
-#: ../../Zotlabs/Module/Connedit.php:526
+#: ../../Zotlabs/Module/Connedit.php:556
msgid "Refresh Permissions"
msgstr "Oppfrisk tillatelser"
-#: ../../Zotlabs/Module/Connedit.php:529
+#: ../../Zotlabs/Module/Connedit.php:559
msgid "Fetch updated permissions"
msgstr "Hent oppdaterte tillatelser"
-#: ../../Zotlabs/Module/Connedit.php:533
+#: ../../Zotlabs/Module/Connedit.php:563
msgid "Recent Activity"
msgstr "Nylig aktivitet"
-#: ../../Zotlabs/Module/Connedit.php:536
+#: ../../Zotlabs/Module/Connedit.php:566
msgid "View recent posts and comments"
msgstr "Vis nylige innlegg og kommentarer"
-#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1041
+#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1041
msgid "Unblock"
msgstr "Ikke blokker lenger"
-#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1040
+#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1040
msgid "Block"
msgstr "Blokker"
-#: ../../Zotlabs/Module/Connedit.php:543
+#: ../../Zotlabs/Module/Connedit.php:573
msgid "Block (or Unblock) all communications with this connection"
msgstr "Blokker eller fjern blokkering av all kommunikasjon med denne forbindelsen"
-#: ../../Zotlabs/Module/Connedit.php:544
+#: ../../Zotlabs/Module/Connedit.php:574
msgid "This connection is blocked!"
msgstr "Denne forbindelsen er blokkert!"
-#: ../../Zotlabs/Module/Connedit.php:548
+#: ../../Zotlabs/Module/Connedit.php:578
msgid "Unignore"
msgstr "Ikke ignorer lenger"
-#: ../../Zotlabs/Module/Connedit.php:548
+#: ../../Zotlabs/Module/Connedit.php:578
#: ../../Zotlabs/Module/Connections.php:277
#: ../../Zotlabs/Module/Notifications.php:55
msgid "Ignore"
msgstr "Ignorer"
-#: ../../Zotlabs/Module/Connedit.php:551
+#: ../../Zotlabs/Module/Connedit.php:581
msgid "Ignore (or Unignore) all inbound communications from this connection"
msgstr "Ignorer eller fjern ignorering av all inngående kommunikasjon fra denne forbindelsen"
-#: ../../Zotlabs/Module/Connedit.php:552
+#: ../../Zotlabs/Module/Connedit.php:582
msgid "This connection is ignored!"
msgstr "Denne forbindelsen er ignorert!"
-#: ../../Zotlabs/Module/Connedit.php:556
+#: ../../Zotlabs/Module/Connedit.php:586
msgid "Unarchive"
msgstr "Ikke arkiver lenger"
-#: ../../Zotlabs/Module/Connedit.php:556
+#: ../../Zotlabs/Module/Connedit.php:586
msgid "Archive"
msgstr "Arkiver"
-#: ../../Zotlabs/Module/Connedit.php:559
+#: ../../Zotlabs/Module/Connedit.php:589
msgid ""
"Archive (or Unarchive) this connection - mark channel dead but keep content"
msgstr "Arkiver eller fjern arkivering av denne forbindelsen - marker kanal som død, men behold innhold"
-#: ../../Zotlabs/Module/Connedit.php:560
+#: ../../Zotlabs/Module/Connedit.php:590
msgid "This connection is archived!"
msgstr "Denne forbindelsen er arkivert!"
-#: ../../Zotlabs/Module/Connedit.php:564
+#: ../../Zotlabs/Module/Connedit.php:594
msgid "Unhide"
msgstr "Ikke skjul lenger"
-#: ../../Zotlabs/Module/Connedit.php:564
+#: ../../Zotlabs/Module/Connedit.php:594
msgid "Hide"
msgstr "Skjul"
-#: ../../Zotlabs/Module/Connedit.php:567
+#: ../../Zotlabs/Module/Connedit.php:597
msgid "Hide or Unhide this connection from your other connections"
msgstr "Skjul eller fjern skjuling av denne forbindelsen fra dine andre forbindelser"
-#: ../../Zotlabs/Module/Connedit.php:568
+#: ../../Zotlabs/Module/Connedit.php:598
msgid "This connection is hidden!"
msgstr "Denne forbindelsen er skjult!"
-#: ../../Zotlabs/Module/Connedit.php:575
+#: ../../Zotlabs/Module/Connedit.php:605
msgid "Delete this connection"
msgstr "Slett denne forbindelsen"
-#: ../../Zotlabs/Module/Connedit.php:590 ../../include/widgets.php:493
+#: ../../Zotlabs/Module/Connedit.php:620 ../../include/widgets.php:493
msgid "Me"
msgstr "Meg"
-#: ../../Zotlabs/Module/Connedit.php:591 ../../include/widgets.php:494
+#: ../../Zotlabs/Module/Connedit.php:621 ../../include/widgets.php:494
msgid "Family"
msgstr "Familie"
-#: ../../Zotlabs/Module/Connedit.php:592 ../../Zotlabs/Module/Settings.php:342
-#: ../../Zotlabs/Module/Settings.php:346 ../../Zotlabs/Module/Settings.php:347
-#: ../../Zotlabs/Module/Settings.php:350 ../../Zotlabs/Module/Settings.php:361
-#: ../../include/widgets.php:495 ../../include/selectors.php:123
-#: ../../include/channel.php:389 ../../include/channel.php:390
-#: ../../include/channel.php:397
+#: ../../Zotlabs/Module/Connedit.php:622 ../../Zotlabs/Module/Settings.php:391
+#: ../../Zotlabs/Module/Settings.php:395 ../../Zotlabs/Module/Settings.php:396
+#: ../../Zotlabs/Module/Settings.php:399 ../../Zotlabs/Module/Settings.php:410
+#: ../../include/channel.php:402 ../../include/channel.php:403
+#: ../../include/channel.php:410 ../../include/selectors.php:123
+#: ../../include/widgets.php:495
msgid "Friends"
msgstr "Venner"
-#: ../../Zotlabs/Module/Connedit.php:593 ../../include/widgets.php:496
+#: ../../Zotlabs/Module/Connedit.php:623 ../../include/widgets.php:496
msgid "Acquaintances"
msgstr "Bekjente"
-#: ../../Zotlabs/Module/Connedit.php:594
+#: ../../Zotlabs/Module/Connedit.php:624
#: ../../Zotlabs/Module/Connections.php:92
#: ../../Zotlabs/Module/Connections.php:107 ../../include/widgets.php:497
msgid "All"
msgstr "Alle"
-#: ../../Zotlabs/Module/Connedit.php:654
+#: ../../Zotlabs/Module/Connedit.php:685
msgid "Approve this connection"
msgstr "Godta denne forbindelsen"
-#: ../../Zotlabs/Module/Connedit.php:654
+#: ../../Zotlabs/Module/Connedit.php:685
msgid "Accept connection to allow communication"
msgstr "Godta denne forbindelsen for å tillate kommunikasjon"
-#: ../../Zotlabs/Module/Connedit.php:659
+#: ../../Zotlabs/Module/Connedit.php:690
msgid "Set Affinity"
msgstr "Angi nærhet"
-#: ../../Zotlabs/Module/Connedit.php:662
+#: ../../Zotlabs/Module/Connedit.php:693
msgid "Set Profile"
msgstr "Angi profil"
-#: ../../Zotlabs/Module/Connedit.php:665
+#: ../../Zotlabs/Module/Connedit.php:696
msgid "Set Affinity & Profile"
msgstr "Angi nærhet og profil"
-#: ../../Zotlabs/Module/Connedit.php:698
+#: ../../Zotlabs/Module/Connedit.php:745
msgid "none"
msgstr "ingen"
-#: ../../Zotlabs/Module/Connedit.php:702 ../../include/widgets.php:614
+#: ../../Zotlabs/Module/Connedit.php:749 ../../include/widgets.php:623
msgid "Connection Default Permissions"
msgstr "Forbindelsens standard tillatelser"
-#: ../../Zotlabs/Module/Connedit.php:702 ../../include/items.php:3926
+#: ../../Zotlabs/Module/Connedit.php:749 ../../include/items.php:3935
#, php-format
msgid "Connection: %s"
msgstr "Forbindelse: %s"
-#: ../../Zotlabs/Module/Connedit.php:703
+#: ../../Zotlabs/Module/Connedit.php:750
msgid "Apply these permissions automatically"
msgstr "Bruk disse tillatelsene automatisk"
-#: ../../Zotlabs/Module/Connedit.php:703
+#: ../../Zotlabs/Module/Connedit.php:750
msgid "Connection requests will be approved without your interaction"
msgstr "Forespørsler om forbindelse vil bli godkjent automatisk"
-#: ../../Zotlabs/Module/Connedit.php:705
+#: ../../Zotlabs/Module/Connedit.php:752
msgid "This connection's primary address is"
msgstr "Denne forbindelsens primære adresse er"
-#: ../../Zotlabs/Module/Connedit.php:706
+#: ../../Zotlabs/Module/Connedit.php:753
msgid "Available locations:"
msgstr "Tilgjengelige plasseringer:"
-#: ../../Zotlabs/Module/Connedit.php:710
+#: ../../Zotlabs/Module/Connedit.php:757
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."
-#: ../../Zotlabs/Module/Connedit.php:711
+#: ../../Zotlabs/Module/Connedit.php:758
msgid "Connection Tools"
-msgstr ""
+msgstr "Forbindelsesverktøy"
-#: ../../Zotlabs/Module/Connedit.php:713
+#: ../../Zotlabs/Module/Connedit.php:760
msgid "Slide to adjust your degree of friendship"
msgstr "Flytt for å justere din grad av vennskap"
-#: ../../Zotlabs/Module/Connedit.php:714 ../../Zotlabs/Module/Rate.php:159
+#: ../../Zotlabs/Module/Connedit.php:761 ../../Zotlabs/Module/Rate.php:159
#: ../../include/js_strings.php:20
msgid "Rating"
msgstr "Vurdering"
-#: ../../Zotlabs/Module/Connedit.php:715
+#: ../../Zotlabs/Module/Connedit.php:762
msgid "Slide to adjust your rating"
msgstr "Flytt for å justere din vurdering"
-#: ../../Zotlabs/Module/Connedit.php:716 ../../Zotlabs/Module/Connedit.php:721
+#: ../../Zotlabs/Module/Connedit.php:763 ../../Zotlabs/Module/Connedit.php:768
msgid "Optionally explain your rating"
msgstr "Velg om du vil forklare vurderingen"
-#: ../../Zotlabs/Module/Connedit.php:718
+#: ../../Zotlabs/Module/Connedit.php:765
msgid "Custom Filter"
msgstr "Tilpasset filter"
-#: ../../Zotlabs/Module/Connedit.php:719
+#: ../../Zotlabs/Module/Connedit.php:766
msgid "Only import posts with this text"
msgstr "Bare importer innlegg med disse ordene"
-#: ../../Zotlabs/Module/Connedit.php:719 ../../Zotlabs/Module/Connedit.php:720
+#: ../../Zotlabs/Module/Connedit.php:766 ../../Zotlabs/Module/Connedit.php:767
msgid ""
"words one per line or #tags or /patterns/ or lang=xx, leave blank to import "
"all posts"
msgstr "ord per linje eller #merkelapper eller /mønster/ eller språk lang=xx, la stå blankt for å importere alle innlegg"
-#: ../../Zotlabs/Module/Connedit.php:720
+#: ../../Zotlabs/Module/Connedit.php:767
msgid "Do not import posts with this text"
msgstr "Ikke importer innlegg med denne teksten"
-#: ../../Zotlabs/Module/Connedit.php:722
+#: ../../Zotlabs/Module/Connedit.php:769
msgid "This information is public!"
msgstr "Denne informasjonen er offentlig!"
-#: ../../Zotlabs/Module/Connedit.php:727
+#: ../../Zotlabs/Module/Connedit.php:774
msgid "Connection Pending Approval"
msgstr "Forbindelse venter på godkjenning"
-#: ../../Zotlabs/Module/Connedit.php:730
+#: ../../Zotlabs/Module/Connedit.php:777
msgid "inherited"
msgstr "arvet"
-#: ../../Zotlabs/Module/Connedit.php:732
+#: ../../Zotlabs/Module/Connedit.php:778 ../../Zotlabs/Module/Connect.php:98
+#: ../../Zotlabs/Module/Events.php:474 ../../Zotlabs/Module/Cal.php:338
+#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:238
+#: ../../Zotlabs/Module/Group.php:85 ../../Zotlabs/Module/Appman.php:126
+#: ../../Zotlabs/Module/Pdledit.php:66
+#: ../../Zotlabs/Module/Filestorage.php:161
+#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Import.php:560
+#: ../../Zotlabs/Module/Photos.php:675 ../../Zotlabs/Module/Photos.php:1050
+#: ../../Zotlabs/Module/Photos.php:1090 ../../Zotlabs/Module/Photos.php:1208
+#: ../../Zotlabs/Module/Import_items.php:122
+#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121
+#: ../../Zotlabs/Module/Mail.php:370 ../../Zotlabs/Module/Mood.php:139
+#: ../../Zotlabs/Module/Mitem.php:235 ../../Zotlabs/Module/Admin.php:492
+#: ../../Zotlabs/Module/Admin.php:688 ../../Zotlabs/Module/Admin.php:771
+#: ../../Zotlabs/Module/Admin.php:1032 ../../Zotlabs/Module/Admin.php:1211
+#: ../../Zotlabs/Module/Admin.php:1421 ../../Zotlabs/Module/Admin.php:1648
+#: ../../Zotlabs/Module/Admin.php:1733 ../../Zotlabs/Module/Admin.php:2116
+#: ../../Zotlabs/Module/Poke.php:186 ../../Zotlabs/Module/Pconfig.php:107
+#: ../../Zotlabs/Module/Rate.php:170 ../../Zotlabs/Module/Settings.php:644
+#: ../../Zotlabs/Module/Settings.php:757 ../../Zotlabs/Module/Settings.php:806
+#: ../../Zotlabs/Module/Settings.php:832 ../../Zotlabs/Module/Settings.php:855
+#: ../../Zotlabs/Module/Settings.php:943
+#: ../../Zotlabs/Module/Settings.php:1129 ../../Zotlabs/Module/Setup.php:312
+#: ../../Zotlabs/Module/Setup.php:353 ../../Zotlabs/Module/Thing.php:316
+#: ../../Zotlabs/Module/Thing.php:362 ../../Zotlabs/Module/Sources.php:114
+#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Xchan.php:15
+#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/widgets.php:763
+#: ../../include/js_strings.php:22 ../../view/theme/redbasic/php/config.php:99
+msgid "Submit"
+msgstr "Send"
+
+#: ../../Zotlabs/Module/Connedit.php:779
#, php-format
msgid ""
"Please choose the profile you would like to display to %s when viewing your "
"profile securely."
msgstr "Vennligst velg profilen du ønsker å vise %s når profilen din ses på en sikret måte. "
-#: ../../Zotlabs/Module/Connedit.php:734
+#: ../../Zotlabs/Module/Connedit.php:781
msgid "Their Settings"
msgstr "Deres innstillinger"
-#: ../../Zotlabs/Module/Connedit.php:735
+#: ../../Zotlabs/Module/Connedit.php:782
msgid "My Settings"
msgstr "Mine innstillinger"
-#: ../../Zotlabs/Module/Connedit.php:737
+#: ../../Zotlabs/Module/Connedit.php:784
msgid "Individual Permissions"
msgstr "Individuelle tillatelser"
-#: ../../Zotlabs/Module/Connedit.php:738
+#: ../../Zotlabs/Module/Connedit.php:785
msgid ""
"Some permissions may be inherited from your channel's <a "
"href=\"settings\"><strong>privacy settings</strong></a>, which have higher "
@@ -878,7 +773,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."
-#: ../../Zotlabs/Module/Connedit.php:739
+#: ../../Zotlabs/Module/Connedit.php:786
msgid ""
"Some permissions may be inherited from your channel's <a "
"href=\"settings\"><strong>privacy settings</strong></a>, which have higher "
@@ -886,17 +781,121 @@ 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."
-#: ../../Zotlabs/Module/Connedit.php:740
+#: ../../Zotlabs/Module/Connedit.php:787
msgid "Last update:"
msgstr "Siste oppdatering:"
-#: ../../Zotlabs/Module/Directory.php:63 ../../Zotlabs/Module/Display.php:17
-#: ../../Zotlabs/Module/Photos.php:522 ../../Zotlabs/Module/Ratings.php:86
+#: ../../Zotlabs/Module/Display.php:17 ../../Zotlabs/Module/Directory.php:63
+#: ../../Zotlabs/Module/Photos.php:520 ../../Zotlabs/Module/Ratings.php:86
#: ../../Zotlabs/Module/Search.php:17
-#: ../../Zotlabs/Module/Viewconnections.php:20
+#: ../../Zotlabs/Module/Viewconnections.php:23
msgid "Public access denied."
msgstr "Offentlig tilgang avvist."
+#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:32
+#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1255
+#: ../../Zotlabs/Module/Admin.php:1561 ../../Zotlabs/Module/Thing.php:89
+#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3369
+msgid "Item not found."
+msgstr "Elementet ble ikke funnet."
+
+#: ../../Zotlabs/Module/Id.php:13
+msgid "First Name"
+msgstr "Fornavn"
+
+#: ../../Zotlabs/Module/Id.php:14
+msgid "Last Name"
+msgstr "Etternavn"
+
+#: ../../Zotlabs/Module/Id.php:15
+msgid "Nickname"
+msgstr "Kallenavn"
+
+#: ../../Zotlabs/Module/Id.php:16
+msgid "Full Name"
+msgstr "Fullt navn"
+
+#: ../../Zotlabs/Module/Id.php:17 ../../Zotlabs/Module/Id.php:18
+#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047
+#: ../../include/network.php:2203
+msgid "Email"
+msgstr "E-post"
+
+#: ../../Zotlabs/Module/Id.php:19 ../../Zotlabs/Module/Id.php:20
+#: ../../Zotlabs/Module/Id.php:21 ../../Zotlabs/Lib/Apps.php:238
+msgid "Profile Photo"
+msgstr "Profilbilde"
+
+#: ../../Zotlabs/Module/Id.php:22
+msgid "Profile Photo 16px"
+msgstr "Profilbilde 16px"
+
+#: ../../Zotlabs/Module/Id.php:23
+msgid "Profile Photo 32px"
+msgstr "Profilbilde 32px"
+
+#: ../../Zotlabs/Module/Id.php:24
+msgid "Profile Photo 48px"
+msgstr "Profilbilde 48px"
+
+#: ../../Zotlabs/Module/Id.php:25
+msgid "Profile Photo 64px"
+msgstr "Profilbilde 64px"
+
+#: ../../Zotlabs/Module/Id.php:26
+msgid "Profile Photo 80px"
+msgstr "Profilbilde 80px"
+
+#: ../../Zotlabs/Module/Id.php:27
+msgid "Profile Photo 128px"
+msgstr "Profilbilde 128px"
+
+#: ../../Zotlabs/Module/Id.php:28
+msgid "Timezone"
+msgstr "Tidssone"
+
+#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:731
+msgid "Homepage URL"
+msgstr "Hjemmeside URL"
+
+#: ../../Zotlabs/Module/Id.php:30 ../../Zotlabs/Lib/Apps.php:236
+msgid "Language"
+msgstr "Språk"
+
+#: ../../Zotlabs/Module/Id.php:31
+msgid "Birth Year"
+msgstr "Fødselsår"
+
+#: ../../Zotlabs/Module/Id.php:32
+msgid "Birth Month"
+msgstr "Fødselsmåne"
+
+#: ../../Zotlabs/Module/Id.php:33
+msgid "Birth Day"
+msgstr "Fødselsdag"
+
+#: ../../Zotlabs/Module/Id.php:34
+msgid "Birthdate"
+msgstr "Fødselsdato"
+
+#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:454
+msgid "Gender"
+msgstr "Kjønn"
+
+#: ../../Zotlabs/Module/Id.php:108 ../../include/selectors.php:49
+#: ../../include/selectors.php:66
+msgid "Male"
+msgstr "Mannlig"
+
+#: ../../Zotlabs/Module/Id.php:110 ../../include/selectors.php:49
+#: ../../include/selectors.php:66
+msgid "Female"
+msgstr "Kvinnelig"
+
+#: ../../Zotlabs/Module/Follow.php:34
+msgid "Channel added."
+msgstr "Kanal lagt til."
+
#: ../../Zotlabs/Module/Directory.php:243
#, php-format
msgid "%d rating"
@@ -916,12 +915,12 @@ msgstr "Status:"
msgid "Homepage: "
msgstr "Hjemmeside:"
-#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1183
+#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1223
msgid "Age:"
msgstr "Alder:"
-#: ../../Zotlabs/Module/Directory.php:311 ../../include/event.php:52
-#: ../../include/event.php:84 ../../include/channel.php:1027
+#: ../../Zotlabs/Module/Directory.php:311 ../../include/channel.php:1066
+#: ../../include/event.php:52 ../../include/event.php:84
#: ../../include/bb2diaspora.php:507
msgid "Location:"
msgstr "Plassering:"
@@ -930,18 +929,18 @@ msgstr "Plassering:"
msgid "Description:"
msgstr "Beskrivelse:"
-#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1199
+#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1239
msgid "Hometown:"
msgstr "Hjemby:"
-#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1207
+#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1247
msgid "About:"
msgstr "Om:"
#: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68
-#: ../../Zotlabs/Module/Suggest.php:56 ../../include/widgets.php:147
-#: ../../include/widgets.php:184 ../../include/connections.php:78
-#: ../../include/conversation.php:956 ../../include/channel.php:1012
+#: ../../Zotlabs/Module/Suggest.php:56 ../../include/channel.php:1051
+#: ../../include/connections.php:78 ../../include/conversation.php:959
+#: ../../include/widgets.php:147 ../../include/widgets.php:184
msgid "Connect"
msgstr "Koble"
@@ -1017,38 +1016,322 @@ msgstr "Eldst til nyest"
msgid "No entries (some entries may be hidden)."
msgstr "Ingen oppføringer (noen oppføringer kan være skjult)."
-#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:33
-#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1255
-#: ../../Zotlabs/Module/Admin.php:1561 ../../Zotlabs/Module/Thing.php:89
-#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3359
-msgid "Item not found."
-msgstr "Elementet ble ikke funnet."
+#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109
+msgid "Continue"
+msgstr "Fortsett"
+
+#: ../../Zotlabs/Module/Connect.php:90
+msgid "Premium Channel Setup"
+msgstr "Premiumkanal-oppsett"
+
+#: ../../Zotlabs/Module/Connect.php:92
+msgid "Enable premium channel connection restrictions"
+msgstr "Slå på restriksjoner for forbindelse med premiumkanal"
+
+#: ../../Zotlabs/Module/Connect.php:93
+msgid ""
+"Please enter your restrictions or conditions, such as paypal receipt, usage "
+"guidelines, etc."
+msgstr "Vennligst skriv dine restriksjoner og betingelser, slik som PayPal-kvittering, retningslinjer for bruk, og så videre."
+
+#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115
+msgid ""
+"This channel may require additional steps or acknowledgement of the "
+"following conditions prior to connecting:"
+msgstr "Denne kanalen kan kreve ytterligere steg og bekreftelse av følgende betingelser før tilkobling:"
+
+#: ../../Zotlabs/Module/Connect.php:96
+msgid ""
+"Potential connections will then see the following text before proceeding:"
+msgstr "Potensielle forbindelser vil da se følgende tekst før de går videre:"
+
+#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118
+msgid ""
+"By continuing, I certify that I have complied with any instructions provided"
+" on this page."
+msgstr "Ved å fortsette bekrefter jeg at jeg har oppfylt alle instruksjoner gitt på denne siden."
+
+#: ../../Zotlabs/Module/Connect.php:106
+msgid "(No specific instructions have been provided by the channel owner.)"
+msgstr "(Ingen spesifikke instruksjoner er gitt av kanaleieren.)"
+
+#: ../../Zotlabs/Module/Connect.php:114
+msgid "Restricted or Premium Channel"
+msgstr "Begrenset kanal eller premiumkanal"
+
+#: ../../Zotlabs/Module/Events.php:25
+msgid "Calendar entries imported."
+msgstr "Kalenderhendelsene er importert."
+
+#: ../../Zotlabs/Module/Events.php:27
+msgid "No calendar entries found."
+msgstr "Ingen kalenderhendelser funnet."
+
+#: ../../Zotlabs/Module/Events.php:104
+msgid "Event can not end before it has started."
+msgstr "Hendelsen kan ikke slutte før den starter."
+
+#: ../../Zotlabs/Module/Events.php:106 ../../Zotlabs/Module/Events.php:115
+#: ../../Zotlabs/Module/Events.php:135
+msgid "Unable to generate preview."
+msgstr "Klarer ikke å lage forhåndsvisning."
+
+#: ../../Zotlabs/Module/Events.php:113
+msgid "Event title and start time are required."
+msgstr "Hendelsestittel og starttidspunkt er påkrevd."
+
+#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258
+msgid "Event not found."
+msgstr "Hendelsen ble ikke funnet."
+
+#: ../../Zotlabs/Module/Events.php:253 ../../Zotlabs/Module/Like.php:372
+#: ../../Zotlabs/Module/Tagger.php:51 ../../include/conversation.php:123
+#: ../../include/text.php:1924 ../../include/event.php:951
+msgid "event"
+msgstr "hendelse"
+
+#: ../../Zotlabs/Module/Events.php:448
+msgid "Edit event title"
+msgstr "Endre tittel på hendelse"
+
+#: ../../Zotlabs/Module/Events.php:448
+msgid "Event title"
+msgstr "Tittel på hendelse"
+
+#: ../../Zotlabs/Module/Events.php:448 ../../Zotlabs/Module/Events.php:453
+#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116
+#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713
+#: ../../include/datetime.php:245
+msgid "Required"
+msgstr "Påkrevd"
+
+#: ../../Zotlabs/Module/Events.php:450
+msgid "Categories (comma-separated list)"
+msgstr "Kategorier (kommaseparert liste)"
+
+#: ../../Zotlabs/Module/Events.php:451
+msgid "Edit Category"
+msgstr "Endre kategori"
+
+#: ../../Zotlabs/Module/Events.php:451
+msgid "Category"
+msgstr "Kategori"
+
+#: ../../Zotlabs/Module/Events.php:454
+msgid "Edit start date and time"
+msgstr "Endre startdato og tidspunkt"
+
+#: ../../Zotlabs/Module/Events.php:454
+msgid "Start date and time"
+msgstr "Startdato og tidspunkt"
+
+#: ../../Zotlabs/Module/Events.php:455 ../../Zotlabs/Module/Events.php:458
+msgid "Finish date and time are not known or not relevant"
+msgstr "Sluttdato og tidspunkt er ikke kjent eller ikke relevant"
+
+#: ../../Zotlabs/Module/Events.php:457
+msgid "Edit finish date and time"
+msgstr "Endre sluttdato og tidspunkt"
+
+#: ../../Zotlabs/Module/Events.php:457
+msgid "Finish date and time"
+msgstr "Sluttdato og tidspunkt"
+
+#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460
+msgid "Adjust for viewer timezone"
+msgstr "Juster i forhold til tilskuerens tidssone"
+
+#: ../../Zotlabs/Module/Events.php:459
+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."
+
+#: ../../Zotlabs/Module/Events.php:461
+msgid "Edit Description"
+msgstr "Endre beskrivelse"
+
+#: ../../Zotlabs/Module/Events.php:461 ../../Zotlabs/Module/Appman.php:117
+#: ../../Zotlabs/Module/Rbmark.php:101
+msgid "Description"
+msgstr "Beskrivelse"
+
+#: ../../Zotlabs/Module/Events.php:463
+msgid "Edit Location"
+msgstr "Endre plassering"
+
+#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Profiles.php:477
+#: ../../Zotlabs/Module/Profiles.php:698 ../../Zotlabs/Module/Locs.php:117
+#: ../../Zotlabs/Module/Pubsites.php:41 ../../include/js_strings.php:25
+msgid "Location"
+msgstr "Plassering"
+
+#: ../../Zotlabs/Module/Events.php:466 ../../Zotlabs/Module/Events.php:468
+msgid "Share this event"
+msgstr "Del denne hendelsen"
+
+#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Photos.php:1091
+#: ../../Zotlabs/Module/Webpages.php:201 ../../Zotlabs/Lib/ThreadItem.php:719
+#: ../../include/page_widgets.php:43 ../../include/conversation.php:1198
+msgid "Preview"
+msgstr "Forhåndsvisning"
+
+#: ../../Zotlabs/Module/Events.php:470 ../../include/conversation.php:1247
+msgid "Permission settings"
+msgstr "Tillatelser - innstillinger"
+
+#: ../../Zotlabs/Module/Events.php:475
+msgid "Advanced Options"
+msgstr "Avanserte alternativer"
+
+#: ../../Zotlabs/Module/Events.php:587 ../../Zotlabs/Module/Cal.php:259
+msgid "l, F j"
+msgstr "l, F j"
+
+#: ../../Zotlabs/Module/Events.php:609
+msgid "Edit event"
+msgstr "Endre hendelse"
+
+#: ../../Zotlabs/Module/Events.php:611
+msgid "Delete event"
+msgstr "Slett hendelse"
+
+#: ../../Zotlabs/Module/Events.php:636 ../../Zotlabs/Module/Cal.php:308
+#: ../../include/text.php:1712
+msgid "Link to Source"
+msgstr "Lenke til kilde"
+
+#: ../../Zotlabs/Module/Events.php:645
+msgid "calendar"
+msgstr "kalender"
+
+#: ../../Zotlabs/Module/Events.php:664 ../../Zotlabs/Module/Cal.php:331
+msgid "Edit Event"
+msgstr "Endre hendelse"
+
+#: ../../Zotlabs/Module/Events.php:664 ../../Zotlabs/Module/Cal.php:331
+msgid "Create Event"
+msgstr "Lag hendelse"
+
+#: ../../Zotlabs/Module/Events.php:665 ../../Zotlabs/Module/Events.php:674
+#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339
+#: ../../Zotlabs/Module/Photos.php:947
+msgid "Previous"
+msgstr "Forrige"
+
+#: ../../Zotlabs/Module/Events.php:666 ../../Zotlabs/Module/Events.php:675
+#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340
+#: ../../Zotlabs/Module/Photos.php:956 ../../Zotlabs/Module/Setup.php:267
+msgid "Next"
+msgstr "Neste"
+
+#: ../../Zotlabs/Module/Events.php:667 ../../Zotlabs/Module/Cal.php:334
+msgid "Export"
+msgstr "Eksport"
+
+#: ../../Zotlabs/Module/Events.php:670 ../../Zotlabs/Module/Layouts.php:197
+#: ../../Zotlabs/Module/Pubsites.php:47 ../../Zotlabs/Module/Blocks.php:166
+#: ../../Zotlabs/Module/Webpages.php:200 ../../include/page_widgets.php:42
+msgid "View"
+msgstr "Vis"
+
+#: ../../Zotlabs/Module/Events.php:671
+msgid "Month"
+msgstr ""
+
+#: ../../Zotlabs/Module/Events.php:672
+msgid "Week"
+msgstr ""
+
+#: ../../Zotlabs/Module/Events.php:673
+msgid "Day"
+msgstr ""
+
+#: ../../Zotlabs/Module/Events.php:676 ../../Zotlabs/Module/Cal.php:341
+msgid "Today"
+msgstr "Idag"
+
+#: ../../Zotlabs/Module/Events.php:707
+msgid "Event removed"
+msgstr "Hendelse slettet"
+
+#: ../../Zotlabs/Module/Events.php:710
+msgid "Failed to remove event"
+msgstr "Mislyktes med å slette hendelse"
+
+#: ../../Zotlabs/Module/Bookmarks.php:53
+msgid "Bookmark added"
+msgstr "Bokmerke lagt til"
+
+#: ../../Zotlabs/Module/Bookmarks.php:75
+msgid "My Bookmarks"
+msgstr "Mine bokmerker"
+
+#: ../../Zotlabs/Module/Bookmarks.php:86
+msgid "My Connections Bookmarks"
+msgstr "Mine forbindelsers bokmerker"
-#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95
#: ../../Zotlabs/Module/Editpost.php:24 ../../Zotlabs/Module/Editlayout.php:79
-#: ../../Zotlabs/Module/Editwebpage.php:81
+#: ../../Zotlabs/Module/Editwebpage.php:80
+#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95
msgid "Item not found"
msgstr "Elementet ble ikke funnet."
-#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1228
-msgid "Title (optional)"
-msgstr "Tittel (valgfri)"
+#: ../../Zotlabs/Module/Editpost.php:35
+msgid "Item is not editable"
+msgstr "Elementet kan ikke endres"
-#: ../../Zotlabs/Module/Editblock.php:133
-msgid "Edit Block"
-msgstr "Endre byggekloss"
+#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:134
+msgid "Edit post"
+msgstr "Endre innlegg"
-#: ../../Zotlabs/Module/Common.php:14
-msgid "No channel."
-msgstr "Ingen kanal."
+#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222
+#: ../../include/nav.php:92 ../../include/conversation.php:1647
+msgid "Photos"
+msgstr "Bilder"
-#: ../../Zotlabs/Module/Common.php:43
-msgid "Common connections"
-msgstr "Felles forbindelser"
+#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88
+#: ../../Zotlabs/Module/Admin.php:1406 ../../Zotlabs/Module/Settings.php:645
+#: ../../Zotlabs/Module/Settings.php:671 ../../Zotlabs/Module/Tagrm.php:15
+#: ../../Zotlabs/Module/Tagrm.php:138 ../../Zotlabs/Module/Wiki.php:166
+#: ../../Zotlabs/Module/Wiki.php:202 ../../include/conversation.php:1235
+#: ../../include/conversation.php:1274
+msgid "Cancel"
+msgstr "Avbryt"
-#: ../../Zotlabs/Module/Common.php:48
-msgid "No connections in common."
-msgstr "Ingen forbindelser felles."
+#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31
+msgid "Invalid item."
+msgstr "Ugyldig element."
+
+#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Cal.php:62
+#: ../../Zotlabs/Module/Block.php:43 ../../Zotlabs/Module/Wall_upload.php:33
+msgid "Channel not found."
+msgstr "Kanalen ble ikke funnet."
+
+#: ../../Zotlabs/Module/Page.php:131
+msgid ""
+"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod "
+"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,"
+" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo "
+"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse "
+"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat "
+"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
+msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
+
+#: ../../Zotlabs/Module/Filer.php:52
+msgid "Save to Folder:"
+msgstr "Lagre til mappe:"
+
+#: ../../Zotlabs/Module/Filer.php:52
+msgid "- select -"
+msgstr "- velg -"
+
+#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033
+#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32
+#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:926
+#: ../../include/text.php:938 ../../include/widgets.php:201
+msgid "Save"
+msgstr "Lagre"
#: ../../Zotlabs/Module/Connections.php:56
#: ../../Zotlabs/Module/Connections.php:161
@@ -1076,7 +1359,7 @@ msgstr "Arkivert"
#: ../../Zotlabs/Module/Connections.php:76
#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116
-#: ../../include/conversation.php:1535
+#: ../../include/conversation.php:1550
msgid "New"
msgstr "Nye"
@@ -1163,15 +1446,15 @@ msgstr "Ignorer forbindelse"
msgid "Recent activity"
msgstr "Nylig aktivitet"
-#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:208
-#: ../../include/text.php:875 ../../include/nav.php:186
+#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:209
+#: ../../include/nav.php:188 ../../include/text.php:855
msgid "Connections"
msgstr "Forbindelser"
#: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44
-#: ../../Zotlabs/Lib/Apps.php:228 ../../include/text.php:945
-#: ../../include/text.php:957 ../../include/nav.php:165
-#: ../../include/acl_selectors.php:276
+#: ../../Zotlabs/Lib/Apps.php:230 ../../include/nav.php:167
+#: ../../include/text.php:925 ../../include/text.php:937
+#: ../../include/acl_selectors.php:274
msgid "Search"
msgstr "Søk"
@@ -1184,7 +1467,7 @@ msgid "Connections search"
msgstr "Søk blant forbindelser"
#: ../../Zotlabs/Module/Cover_photo.php:58
-#: ../../Zotlabs/Module/Profile_photo.php:79
+#: ../../Zotlabs/Module/Profile_photo.php:61
msgid "Image uploaded but image cropping failed."
msgstr "Bildet ble lastet opp, men beskjæring av bildet mislyktes."
@@ -1194,66 +1477,66 @@ msgid "Cover Photos"
msgstr "Forsidebilder"
#: ../../Zotlabs/Module/Cover_photo.php:154
-#: ../../Zotlabs/Module/Profile_photo.php:133
+#: ../../Zotlabs/Module/Profile_photo.php:135
msgid "Image resize failed."
msgstr "Endring av bildestørrelse mislyktes."
#: ../../Zotlabs/Module/Cover_photo.php:168
-#: ../../Zotlabs/Module/Profile_photo.php:192 ../../include/photos.php:144
+#: ../../Zotlabs/Module/Profile_photo.php:196 ../../include/photos.php:148
msgid "Unable to process image"
msgstr "Kan ikke behandle bildet"
#: ../../Zotlabs/Module/Cover_photo.php:192
-#: ../../Zotlabs/Module/Profile_photo.php:217
+#: ../../Zotlabs/Module/Profile_photo.php:223
msgid "Image upload failed."
msgstr "Opplasting av bildet mislyktes."
#: ../../Zotlabs/Module/Cover_photo.php:210
-#: ../../Zotlabs/Module/Profile_photo.php:236
+#: ../../Zotlabs/Module/Profile_photo.php:242
msgid "Unable to process image."
msgstr "Kan ikke behandle bildet."
-#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4270
+#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4283
msgid "female"
msgstr "kvinne"
-#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4271
+#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4284
#, php-format
msgid "%1$s updated her %2$s"
msgstr "%1$s oppdaterte %2$s sitt"
-#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4272
+#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4285
msgid "male"
msgstr "mann"
-#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4273
+#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4286
#, php-format
msgid "%1$s updated his %2$s"
msgstr "%1$s oppdaterte %2$s sitt"
-#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4275
+#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4288
#, php-format
msgid "%1$s updated their %2$s"
msgstr "%1$s oppdaterte %2$s deres"
-#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1661
+#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1726
msgid "cover photo"
msgstr "forsidebilde"
#: ../../Zotlabs/Module/Cover_photo.php:303
#: ../../Zotlabs/Module/Cover_photo.php:318
-#: ../../Zotlabs/Module/Profile_photo.php:283
-#: ../../Zotlabs/Module/Profile_photo.php:324
+#: ../../Zotlabs/Module/Profile_photo.php:300
+#: ../../Zotlabs/Module/Profile_photo.php:341
msgid "Photo not available."
msgstr "Bildet er ikke tilgjengelig."
#: ../../Zotlabs/Module/Cover_photo.php:354
-#: ../../Zotlabs/Module/Profile_photo.php:365
+#: ../../Zotlabs/Module/Profile_photo.php:387
msgid "Upload File:"
msgstr "Last opp fil:"
#: ../../Zotlabs/Module/Cover_photo.php:355
-#: ../../Zotlabs/Module/Profile_photo.php:366
+#: ../../Zotlabs/Module/Profile_photo.php:388
msgid "Select a profile:"
msgstr "Velg en profil:"
@@ -1262,315 +1545,256 @@ msgid "Upload Cover Photo"
msgstr "Last opp forsidebilde"
#: ../../Zotlabs/Module/Cover_photo.php:361
-#: ../../Zotlabs/Module/Profile_photo.php:374
-#: ../../Zotlabs/Module/Settings.php:985
+#: ../../Zotlabs/Module/Profile_photo.php:396
+#: ../../Zotlabs/Module/Settings.php:1080
msgid "or"
msgstr "eller"
#: ../../Zotlabs/Module/Cover_photo.php:361
-#: ../../Zotlabs/Module/Profile_photo.php:374
+#: ../../Zotlabs/Module/Profile_photo.php:396
msgid "skip this step"
msgstr "hopp over dette steget"
#: ../../Zotlabs/Module/Cover_photo.php:361
-#: ../../Zotlabs/Module/Profile_photo.php:374
+#: ../../Zotlabs/Module/Profile_photo.php:396
msgid "select a photo from your photo albums"
msgstr "velg et bilde fra dine fotoalbum"
#: ../../Zotlabs/Module/Cover_photo.php:377
-#: ../../Zotlabs/Module/Profile_photo.php:390
+#: ../../Zotlabs/Module/Profile_photo.php:415
msgid "Crop Image"
msgstr "Beskjær bildet"
#: ../../Zotlabs/Module/Cover_photo.php:378
-#: ../../Zotlabs/Module/Profile_photo.php:391
+#: ../../Zotlabs/Module/Profile_photo.php:416
msgid "Please adjust the image cropping for optimum viewing."
msgstr "Vennligst juster bildebeskjæringen for optimal visning."
#: ../../Zotlabs/Module/Cover_photo.php:380
-#: ../../Zotlabs/Module/Profile_photo.php:393
+#: ../../Zotlabs/Module/Profile_photo.php:418
msgid "Done Editing"
msgstr "Avslutt redigering"
-#: ../../Zotlabs/Module/Editpost.php:35
-msgid "Item is not editable"
-msgstr "Elementet kan ikke endres"
-
-#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:135
-msgid "Edit post"
-msgstr "Endre innlegg"
-
-#: ../../Zotlabs/Module/Events.php:26
-msgid "Calendar entries imported."
-msgstr "Kalenderhendelsene er importert."
-
-#: ../../Zotlabs/Module/Events.php:28
-msgid "No calendar entries found."
-msgstr "Ingen kalenderhendelser funnet."
-
-#: ../../Zotlabs/Module/Events.php:105
-msgid "Event can not end before it has started."
-msgstr "Hendelsen kan ikke slutte før den starter."
-
-#: ../../Zotlabs/Module/Events.php:107 ../../Zotlabs/Module/Events.php:116
-#: ../../Zotlabs/Module/Events.php:136
-msgid "Unable to generate preview."
-msgstr "Klarer ikke å lage forhåndsvisning."
-
-#: ../../Zotlabs/Module/Events.php:114
-msgid "Event title and start time are required."
-msgstr "Hendelsestittel og starttidspunkt er påkrevd."
-
-#: ../../Zotlabs/Module/Events.php:134 ../../Zotlabs/Module/Events.php:259
-msgid "Event not found."
-msgstr "Hendelsen ble ikke funnet."
-
-#: ../../Zotlabs/Module/Events.php:254 ../../Zotlabs/Module/Like.php:373
-#: ../../Zotlabs/Module/Tagger.php:51 ../../include/event.php:949
-#: ../../include/text.php:1943 ../../include/conversation.php:123
-msgid "event"
-msgstr "hendelse"
-
-#: ../../Zotlabs/Module/Events.php:449
-msgid "Edit event title"
-msgstr "Endre tittel på hendelse"
-
-#: ../../Zotlabs/Module/Events.php:449
-msgid "Event title"
-msgstr "Tittel på hendelse"
-
-#: ../../Zotlabs/Module/Events.php:449 ../../Zotlabs/Module/Events.php:454
-#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713
-#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116
-#: ../../include/datetime.php:245
-msgid "Required"
-msgstr "Påkrevd"
-
-#: ../../Zotlabs/Module/Events.php:451
-msgid "Categories (comma-separated list)"
-msgstr "Kategorier (kommaseparert liste)"
+#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192
+msgid "webpage"
+msgstr "nettside"
-#: ../../Zotlabs/Module/Events.php:452
-msgid "Edit Category"
-msgstr "Endre kategori"
+#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198
+msgid "block"
+msgstr "byggekloss"
-#: ../../Zotlabs/Module/Events.php:452
-msgid "Category"
-msgstr "Kategori"
+#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195
+msgid "layout"
+msgstr "layout"
-#: ../../Zotlabs/Module/Events.php:455
-msgid "Edit start date and time"
-msgstr "Endre startdato og tidspunkt"
+#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201
+msgid "menu"
+msgstr "meny"
-#: ../../Zotlabs/Module/Events.php:455
-msgid "Start date and time"
-msgstr "Startdato og tidspunkt"
+#: ../../Zotlabs/Module/Impel.php:187
+#, php-format
+msgid "%s element installed"
+msgstr "%s element installert"
-#: ../../Zotlabs/Module/Events.php:456 ../../Zotlabs/Module/Events.php:459
-msgid "Finish date and time are not known or not relevant"
-msgstr "Sluttdato og tidspunkt er ikke kjent eller ikke relevant"
+#: ../../Zotlabs/Module/Impel.php:190
+#, php-format
+msgid "%s element installation failed"
+msgstr "Installasjon av %s-element mislyktes"
-#: ../../Zotlabs/Module/Events.php:458
-msgid "Edit finish date and time"
-msgstr "Endre sluttdato og tidspunkt"
+#: ../../Zotlabs/Module/Cal.php:69
+msgid "Permissions denied."
+msgstr "Tillatelse avvist."
-#: ../../Zotlabs/Module/Events.php:458
-msgid "Finish date and time"
-msgstr "Sluttdato og tidspunkt"
+#: ../../Zotlabs/Module/Cal.php:337
+msgid "Import"
+msgstr "Importer"
-#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:461
-msgid "Adjust for viewer timezone"
-msgstr "Juster i forhold til tilskuerens tidssone"
+#: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49
+msgid "This site is not a directory server"
+msgstr "Dette nettstedet er ikke en katalogtjener"
-#: ../../Zotlabs/Module/Events.php:460
-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."
+#: ../../Zotlabs/Module/Dirsearch.php:33
+msgid "This directory server requires an access token"
+msgstr "Denne katalogtjeneren krever en tilgangsnøkkel (access token)"
-#: ../../Zotlabs/Module/Events.php:462
-msgid "Edit Description"
-msgstr "Endre beskrivelse"
+#: ../../Zotlabs/Module/Chat.php:25 ../../Zotlabs/Module/Channel.php:28
+#: ../../Zotlabs/Module/Wiki.php:20
+msgid "You must be logged in to see this page."
+msgstr "Du må være innloegget for å se denne siden."
-#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Appman.php:117
-#: ../../Zotlabs/Module/Rbmark.php:101
-msgid "Description"
-msgstr "Beskrivelse"
+#: ../../Zotlabs/Module/Chat.php:181
+msgid "Room not found"
+msgstr "Rommet ble ikke funnet"
-#: ../../Zotlabs/Module/Events.php:464
-msgid "Edit Location"
-msgstr "Endre plassering"
+#: ../../Zotlabs/Module/Chat.php:197
+msgid "Leave Room"
+msgstr "Forlat rom"
-#: ../../Zotlabs/Module/Events.php:464 ../../Zotlabs/Module/Locs.php:117
-#: ../../Zotlabs/Module/Profiles.php:477 ../../Zotlabs/Module/Profiles.php:698
-#: ../../Zotlabs/Module/Pubsites.php:41 ../../include/js_strings.php:25
-msgid "Location"
-msgstr "Plassering"
+#: ../../Zotlabs/Module/Chat.php:198
+msgid "Delete Room"
+msgstr "Slett rom"
-#: ../../Zotlabs/Module/Events.php:467 ../../Zotlabs/Module/Events.php:469
-msgid "Share this event"
-msgstr "Del denne hendelsen"
+#: ../../Zotlabs/Module/Chat.php:199
+msgid "I am away right now"
+msgstr "Jeg er borte akkurat nå"
-#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Photos.php:1093
-#: ../../Zotlabs/Module/Webpages.php:194 ../../Zotlabs/Lib/ThreadItem.php:719
-#: ../../include/conversation.php:1187 ../../include/page_widgets.php:40
-msgid "Preview"
-msgstr "Forhåndsvisning"
+#: ../../Zotlabs/Module/Chat.php:200
+msgid "I am online"
+msgstr "Jeg er online"
-#: ../../Zotlabs/Module/Events.php:471 ../../include/conversation.php:1232
-msgid "Permission settings"
-msgstr "Tillatelser - innstillinger"
+#: ../../Zotlabs/Module/Chat.php:202
+msgid "Bookmark this room"
+msgstr "Bokmerk dette rommet"
-#: ../../Zotlabs/Module/Events.php:476
-msgid "Advanced Options"
-msgstr "Avanserte alternativer"
+#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:197
+#: ../../Zotlabs/Module/Mail.php:306 ../../include/conversation.php:1181
+msgid "Please enter a link URL:"
+msgstr "Vennligst skriv inn en lenke URL:"
-#: ../../Zotlabs/Module/Events.php:610
-msgid "Edit event"
-msgstr "Endre hendelse"
+#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:250
+#: ../../Zotlabs/Module/Mail.php:375 ../../Zotlabs/Lib/ThreadItem.php:722
+#: ../../include/conversation.php:1271
+msgid "Encrypt text"
+msgstr "Krypter tekst"
-#: ../../Zotlabs/Module/Events.php:612
-msgid "Delete event"
-msgstr "Slett hendelse"
+#: ../../Zotlabs/Module/Chat.php:207 ../../Zotlabs/Module/Editwebpage.php:146
+#: ../../Zotlabs/Module/Mail.php:244 ../../Zotlabs/Module/Mail.php:369
+#: ../../Zotlabs/Module/Editblock.php:111 ../../include/conversation.php:1146
+msgid "Insert web link"
+msgstr "Sett inn web-lenke"
-#: ../../Zotlabs/Module/Events.php:646
-msgid "calendar"
-msgstr "kalender"
+#: ../../Zotlabs/Module/Chat.php:218
+msgid "Feature disabled."
+msgstr "Funksjonen er avskrudd."
-#: ../../Zotlabs/Module/Events.php:706
-msgid "Event removed"
-msgstr "Hendelse slettet"
+#: ../../Zotlabs/Module/Chat.php:232
+msgid "New Chatroom"
+msgstr "Nytt chatrom"
-#: ../../Zotlabs/Module/Events.php:709
-msgid "Failed to remove event"
-msgstr "Mislyktes med å slette hendelse"
+#: ../../Zotlabs/Module/Chat.php:233
+msgid "Chatroom name"
+msgstr "Navn på chatrom"
-#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:220
-#: ../../include/nav.php:92 ../../include/conversation.php:1632
-msgid "Photos"
-msgstr "Bilder"
+#: ../../Zotlabs/Module/Chat.php:234
+msgid "Expiration of chats (minutes)"
+msgstr "Chat utgår (antall minutter)"
-#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88
-#: ../../Zotlabs/Module/Admin.php:1406 ../../Zotlabs/Module/Settings.php:591
-#: ../../Zotlabs/Module/Settings.php:617 ../../Zotlabs/Module/Tagrm.php:15
-#: ../../Zotlabs/Module/Tagrm.php:138 ../../include/conversation.php:1259
-msgid "Cancel"
-msgstr "Avbryt"
+#: ../../Zotlabs/Module/Chat.php:235 ../../Zotlabs/Module/Filestorage.php:152
+#: ../../Zotlabs/Module/Photos.php:669 ../../Zotlabs/Module/Photos.php:1043
+#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:359
+#: ../../include/acl_selectors.php:281
+msgid "Permissions"
+msgstr "Tillatelser"
-#: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49
-msgid "This site is not a directory server"
-msgstr "Dette nettstedet er ikke en katalogtjener"
+#: ../../Zotlabs/Module/Chat.php:246
+#, php-format
+msgid "%1$s's Chatrooms"
+msgstr "%1$s sine chatrom"
-#: ../../Zotlabs/Module/Dirsearch.php:33
-msgid "This directory server requires an access token"
-msgstr "Denne katalogtjeneren krever en tilgangsnøkkel (access token)"
+#: ../../Zotlabs/Module/Chat.php:251
+msgid "No chatrooms available"
+msgstr "Ingen tilgjengelige chatrom"
-#: ../../Zotlabs/Module/Filer.php:52
-msgid "Save to Folder:"
-msgstr "Lagre til mappe:"
+#: ../../Zotlabs/Module/Chat.php:252 ../../Zotlabs/Module/Profiles.php:778
+#: ../../Zotlabs/Module/Manage.php:143
+msgid "Create New"
+msgstr "Lag ny"
-#: ../../Zotlabs/Module/Filer.php:52
-msgid "- select -"
-msgstr "- velg -"
+#: ../../Zotlabs/Module/Chat.php:255
+msgid "Expiration"
+msgstr "Utløper"
-#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033
-#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32
-#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:946
-#: ../../include/text.php:958 ../../include/widgets.php:201
-msgid "Save"
-msgstr "Lagre"
+#: ../../Zotlabs/Module/Chat.php:256
+msgid "min"
+msgstr "min"
-#: ../../Zotlabs/Module/Dreport.php:27
+#: ../../Zotlabs/Module/Dreport.php:44
msgid "Invalid message"
msgstr "Ugyldig melding"
-#: ../../Zotlabs/Module/Dreport.php:59
+#: ../../Zotlabs/Module/Dreport.php:76
msgid "no results"
msgstr "ingen resultater"
-#: ../../Zotlabs/Module/Dreport.php:64
-#, php-format
-msgid "Delivery report for %1$s"
-msgstr "Leveringsrapport for %1$s"
-
-#: ../../Zotlabs/Module/Dreport.php:78
+#: ../../Zotlabs/Module/Dreport.php:91
msgid "channel sync processed"
msgstr "Kanalsynkronisering er behandlet"
-#: ../../Zotlabs/Module/Dreport.php:82
+#: ../../Zotlabs/Module/Dreport.php:95
msgid "queued"
msgstr "lagt i kø"
-#: ../../Zotlabs/Module/Dreport.php:86
+#: ../../Zotlabs/Module/Dreport.php:99
msgid "posted"
msgstr "lagt inn"
-#: ../../Zotlabs/Module/Dreport.php:90
+#: ../../Zotlabs/Module/Dreport.php:103
msgid "accepted for delivery"
msgstr "akseptert for levering"
-#: ../../Zotlabs/Module/Dreport.php:94
+#: ../../Zotlabs/Module/Dreport.php:107
msgid "updated"
msgstr "oppdatert"
-#: ../../Zotlabs/Module/Dreport.php:97
+#: ../../Zotlabs/Module/Dreport.php:110
msgid "update ignored"
msgstr "oppdatering ignorert"
-#: ../../Zotlabs/Module/Dreport.php:100
+#: ../../Zotlabs/Module/Dreport.php:113
msgid "permission denied"
msgstr "tillatelse avvist"
-#: ../../Zotlabs/Module/Dreport.php:104
+#: ../../Zotlabs/Module/Dreport.php:117
msgid "recipient not found"
msgstr "mottaker ble ikke funnet"
-#: ../../Zotlabs/Module/Dreport.php:107
+#: ../../Zotlabs/Module/Dreport.php:120
msgid "mail recalled"
msgstr "melding tilbakekalt"
-#: ../../Zotlabs/Module/Dreport.php:110
+#: ../../Zotlabs/Module/Dreport.php:123
msgid "duplicate mail received"
msgstr "duplikat av melding mottatt"
-#: ../../Zotlabs/Module/Dreport.php:113
+#: ../../Zotlabs/Module/Dreport.php:126
msgid "mail delivered"
msgstr "melding mottatt"
-#: ../../Zotlabs/Module/Editlayout.php:126
-#: ../../Zotlabs/Module/Layouts.php:127 ../../Zotlabs/Module/Layouts.php:186
+#: ../../Zotlabs/Module/Dreport.php:146
+#, php-format
+msgid "Delivery report for %1$s"
+msgstr "Leveringsrapport for %1$s"
+
+#: ../../Zotlabs/Module/Dreport.php:149
+msgid "Options"
+msgstr ""
+
+#: ../../Zotlabs/Module/Dreport.php:150
+msgid "Redeliver"
+msgstr ""
+
+#: ../../Zotlabs/Module/Editlayout.php:127
+#: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188
msgid "Layout Name"
msgstr "Layout-navn"
-#: ../../Zotlabs/Module/Editlayout.php:127
-#: ../../Zotlabs/Module/Layouts.php:130
+#: ../../Zotlabs/Module/Editlayout.php:128
+#: ../../Zotlabs/Module/Layouts.php:131
msgid "Layout Description (Optional)"
msgstr "Layoutens beskrivelse (valgfritt)"
-#: ../../Zotlabs/Module/Editlayout.php:135
+#: ../../Zotlabs/Module/Editlayout.php:136
msgid "Edit Layout"
msgstr "Endre layout"
-#: ../../Zotlabs/Module/Editwebpage.php:143
+#: ../../Zotlabs/Module/Editwebpage.php:142
msgid "Page link"
-msgstr ""
+msgstr "Sidelenke"
-#: ../../Zotlabs/Module/Editwebpage.php:169
+#: ../../Zotlabs/Module/Editwebpage.php:168
msgid "Edit Webpage"
msgstr "Endre webside"
-#: ../../Zotlabs/Module/Follow.php:34
-msgid "Channel added."
-msgstr "Kanal lagt til."
-
-#: ../../Zotlabs/Module/Acl.php:227
-msgid "network"
-msgstr "nettverk"
-
-#: ../../Zotlabs/Module/Acl.php:237
-msgid "RSS"
-msgstr "RSS"
-
#: ../../Zotlabs/Module/Group.php:24
msgid "Privacy group created."
msgstr "Personverngruppen er opprettet."
@@ -1580,7 +1804,7 @@ msgid "Could not create privacy group."
msgstr "Kunne ikke opprette personverngruppen."
#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141
-#: ../../include/items.php:3893
+#: ../../include/items.php:3902
msgid "Privacy group not found."
msgstr "Personverngruppen ble ikke funnet"
@@ -1624,31 +1848,57 @@ msgstr "Alle tilkoblede kanaler"
msgid "Click on a channel to add or remove."
msgstr "Klikk på en kanal for å legge til eller fjerne."
-#: ../../Zotlabs/Module/Ffsapi.php:12
-msgid "Share content from Firefox to $Projectname"
-msgstr "Del innhold fra Firefox til $Projectname"
+#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53
+msgid "App installed."
+msgstr "App installert."
-#: ../../Zotlabs/Module/Ffsapi.php:15
-msgid "Activate the Firefox $Projectname provider"
-msgstr "Skru på Firefox $Projectname tilbyderen"
+#: ../../Zotlabs/Module/Appman.php:46
+msgid "Malformed app."
+msgstr "Feil oppsett for app-en."
-#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85
-msgid "Authorize application connection"
-msgstr "Tillat programforbindelse"
+#: ../../Zotlabs/Module/Appman.php:104
+msgid "Embed code"
+msgstr "Innbyggingskode"
-#: ../../Zotlabs/Module/Api.php:62
-msgid "Return to your app and insert this Securty Code:"
-msgstr "Gå tilbake til din app og legg inn denne sikkerhetskoden:"
+#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107
+msgid "Edit App"
+msgstr "Endre app"
-#: ../../Zotlabs/Module/Api.php:72
-msgid "Please login to continue."
-msgstr "Vennligst logg inn for å fortsette."
+#: ../../Zotlabs/Module/Appman.php:110
+msgid "Create App"
+msgstr "Lag app"
-#: ../../Zotlabs/Module/Api.php:87
-msgid ""
-"Do you want to authorize this application to access your posts and contacts,"
-" and/or create new posts for you?"
-msgstr "Vil du tillate dette programmet å få tilgang til dine innlegg og kontakter, og/eller lage nye innlegg for deg?"
+#: ../../Zotlabs/Module/Appman.php:115
+msgid "Name of app"
+msgstr "Navn på app"
+
+#: ../../Zotlabs/Module/Appman.php:116
+msgid "Location (URL) of app"
+msgstr "Plassering (URL) til app"
+
+#: ../../Zotlabs/Module/Appman.php:118
+msgid "Photo icon URL"
+msgstr "Bildeikon URL"
+
+#: ../../Zotlabs/Module/Appman.php:118
+msgid "80 x 80 pixels - optional"
+msgstr "80 x80 pixler - valgfritt"
+
+#: ../../Zotlabs/Module/Appman.php:119
+msgid "Categories (optional, comma separated list)"
+msgstr "Kategorier (valgfri, kommaseparert liste)"
+
+#: ../../Zotlabs/Module/Appman.php:120
+msgid "Version ID"
+msgstr "Versjons-ID"
+
+#: ../../Zotlabs/Module/Appman.php:121
+msgid "Price of app"
+msgstr "Pris på app"
+
+#: ../../Zotlabs/Module/Appman.php:122
+msgid "Location (URL) to purchase app"
+msgstr "Plassering (URL) for å kjøpe app"
#: ../../Zotlabs/Module/Help.php:26
msgid "Documentation Search"
@@ -1660,8 +1910,8 @@ msgid "Help:"
msgstr "Hjelp:"
#: ../../Zotlabs/Module/Help.php:85 ../../Zotlabs/Module/Help.php:90
-#: ../../Zotlabs/Module/Layouts.php:183 ../../Zotlabs/Lib/Apps.php:223
-#: ../../include/nav.php:159
+#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Lib/Apps.php:225
+#: ../../include/nav.php:161
msgid "Help"
msgstr "Hjelp"
@@ -1669,133 +1919,565 @@ msgstr "Hjelp"
msgid "$Projectname Documentation"
msgstr "$Projectname dokumentasjon"
-#: ../../Zotlabs/Module/Filestorage.php:88
+#: ../../Zotlabs/Module/Attach.php:13
+msgid "Item not available."
+msgstr "Elementet er ikke tilgjengelig."
+
+#: ../../Zotlabs/Module/Pdledit.php:18
+msgid "Layout updated."
+msgstr "Layout er oppdatert."
+
+#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61
+msgid "Edit System Page Description"
+msgstr "Endre beskrivelsen av systemsiden"
+
+#: ../../Zotlabs/Module/Pdledit.php:56
+msgid "Layout not found."
+msgstr "Layouten ble ikke funnet."
+
+#: ../../Zotlabs/Module/Pdledit.php:62
+msgid "Module Name:"
+msgstr "Modulnavn:"
+
+#: ../../Zotlabs/Module/Pdledit.php:63
+msgid "Layout Help"
+msgstr "Layout-hjelp"
+
+#: ../../Zotlabs/Module/Ffsapi.php:12
+msgid "Share content from Firefox to $Projectname"
+msgstr "Del innhold fra Firefox til $Projectname"
+
+#: ../../Zotlabs/Module/Ffsapi.php:15
+msgid "Activate the Firefox $Projectname provider"
+msgstr "Skru på Firefox $Projectname tilbyderen"
+
+#: ../../Zotlabs/Module/Acl.php:312
+msgid "network"
+msgstr "nettverk"
+
+#: ../../Zotlabs/Module/Acl.php:322
+msgid "RSS"
+msgstr "RSS"
+
+#: ../../Zotlabs/Module/Filestorage.php:87
msgid "Permission Denied."
msgstr "Tillatelse avvist."
-#: ../../Zotlabs/Module/Filestorage.php:104
+#: ../../Zotlabs/Module/Filestorage.php:103
msgid "File not found."
msgstr "Filen ble ikke funnet."
-#: ../../Zotlabs/Module/Filestorage.php:147
+#: ../../Zotlabs/Module/Filestorage.php:146
msgid "Edit file permissions"
msgstr "Endre filtillatelser"
-#: ../../Zotlabs/Module/Filestorage.php:156
+#: ../../Zotlabs/Module/Filestorage.php:155
msgid "Set/edit permissions"
msgstr "Angi/endre tillatelser"
-#: ../../Zotlabs/Module/Filestorage.php:157
+#: ../../Zotlabs/Module/Filestorage.php:156
msgid "Include all files and sub folders"
msgstr "Inkluder alle filer og undermapper"
-#: ../../Zotlabs/Module/Filestorage.php:158
+#: ../../Zotlabs/Module/Filestorage.php:157
msgid "Return to file list"
msgstr "Gå tilbake til filoversikten"
-#: ../../Zotlabs/Module/Filestorage.php:160
+#: ../../Zotlabs/Module/Filestorage.php:159
msgid "Copy/paste this code to attach file to a post"
msgstr "Kopier og lim inn denne koden for å legge til filen i et innlegg"
-#: ../../Zotlabs/Module/Filestorage.php:161
+#: ../../Zotlabs/Module/Filestorage.php:160
msgid "Copy/paste this URL to link file from a web page"
msgstr "Kopier og lim inn denne URL-en for å lenke til filen fra en webside"
-#: ../../Zotlabs/Module/Filestorage.php:163
+#: ../../Zotlabs/Module/Filestorage.php:162
msgid "Share this file"
msgstr "Del denne filen"
-#: ../../Zotlabs/Module/Filestorage.php:164
+#: ../../Zotlabs/Module/Filestorage.php:163
msgid "Show URL to this file"
msgstr "Vis URLen til denne filen"
-#: ../../Zotlabs/Module/Filestorage.php:165
+#: ../../Zotlabs/Module/Filestorage.php:164
msgid "Notify your contacts about this file"
msgstr "Varsle dine kontakter om denne filen"
-#: ../../Zotlabs/Module/Apps.php:47 ../../include/widgets.php:102
-#: ../../include/nav.php:163
-msgid "Apps"
-msgstr "Apper"
+#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2240
+msgid "Layouts"
+msgstr "Layout"
-#: ../../Zotlabs/Module/Attach.php:13
-msgid "Item not available."
-msgstr "Elementet er ikke tilgjengelig."
+#: ../../Zotlabs/Module/Layouts.php:185
+msgid "Comanche page description language help"
+msgstr "Hjelp med Comanche sidebeskrivelsesspråk"
+
+#: ../../Zotlabs/Module/Layouts.php:189
+msgid "Layout Description"
+msgstr "Layout-beskrivelse"
+
+#: ../../Zotlabs/Module/Layouts.php:190 ../../Zotlabs/Module/Menu.php:114
+#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Webpages.php:205
+#: ../../include/page_widgets.php:47
+msgid "Created"
+msgstr "Laget"
+
+#: ../../Zotlabs/Module/Layouts.php:191 ../../Zotlabs/Module/Menu.php:115
+#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Webpages.php:206
+#: ../../include/page_widgets.php:48
+msgid "Edited"
+msgstr "Endret"
+
+#: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Module/Photos.php:1070
+#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Webpages.php:195
+#: ../../include/conversation.php:1219
+msgid "Share"
+msgstr "Del"
+
+#: ../../Zotlabs/Module/Layouts.php:194
+msgid "Download PDL file"
+msgstr "Last ned PDL-fil"
+
+#: ../../Zotlabs/Module/Like.php:19
+msgid "Like/Dislike"
+msgstr "Liker/Liker ikke"
+
+#: ../../Zotlabs/Module/Like.php:24
+msgid "This action is restricted to members."
+msgstr "Denne handlingen er begrenset til medlemmer."
+
+#: ../../Zotlabs/Module/Like.php:25
+msgid ""
+"Please <a href=\"rmagic\">login with your $Projectname ID</a> or <a "
+"href=\"register\">register as a new $Projectname member</a> to continue."
+msgstr "Vennligst <a href=\"rmagic\">logg inn med din $Projectname ID</a> eller <a href=\"register\">registrer deg som et nytt $Projectname-medlem</a> for å fortsette"
+
+#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131
+#: ../../Zotlabs/Module/Like.php:169
+msgid "Invalid request."
+msgstr "Ugyldig forespørsel."
+
+#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126
+msgid "channel"
+msgstr "kanal"
+
+#: ../../Zotlabs/Module/Like.php:146
+msgid "thing"
+msgstr "ting"
+
+#: ../../Zotlabs/Module/Like.php:192
+msgid "Channel unavailable."
+msgstr "Kanalen er utilgjengelig."
+
+#: ../../Zotlabs/Module/Like.php:240
+msgid "Previous action reversed."
+msgstr "Forrige handling er omgjort."
+
+#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87
+#: ../../Zotlabs/Module/Tagger.php:47 ../../include/conversation.php:120
+#: ../../include/text.php:1921
+msgid "photo"
+msgstr "foto"
+
+#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87
+#: ../../include/conversation.php:148 ../../include/text.php:1927
+msgid "status"
+msgstr "status"
+
+#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:164
+#, php-format
+msgid "%1$s likes %2$s's %3$s"
+msgstr "%1$s liker %2$s sin %3$s"
+
+#: ../../Zotlabs/Module/Like.php:421 ../../include/conversation.php:167
+#, php-format
+msgid "%1$s doesn't like %2$s's %3$s"
+msgstr "%1$s liker ikke %2$s sin %3$s"
+
+#: ../../Zotlabs/Module/Like.php:423
+#, php-format
+msgid "%1$s agrees with %2$s's %3$s"
+msgstr "%1$s er enig med %2$s sin %3$s"
+
+#: ../../Zotlabs/Module/Like.php:425
+#, php-format
+msgid "%1$s doesn't agree with %2$s's %3$s"
+msgstr "%1$s er ikke enig med %2$s sin %3$s"
+
+#: ../../Zotlabs/Module/Like.php:427
+#, php-format
+msgid "%1$s abstains from a decision on %2$s's %3$s"
+msgstr "%1$s avstår fra å mene noe om %2$s sin %3$s"
+
+#: ../../Zotlabs/Module/Like.php:429
+#, php-format
+msgid "%1$s is attending %2$s's %3$s"
+msgstr "%1$s deltar på %2$ss %3$s"
+
+#: ../../Zotlabs/Module/Like.php:431
+#, php-format
+msgid "%1$s is not attending %2$s's %3$s"
+msgstr "%1$s deltar ikke på %2$ss %3$s"
+
+#: ../../Zotlabs/Module/Like.php:433
+#, php-format
+msgid "%1$s may attend %2$s's %3$s"
+msgstr "%1$s deltar kanskje på %2$ss %3$s"
+
+#: ../../Zotlabs/Module/Like.php:536
+msgid "Action completed."
+msgstr "Handling ferdig."
+
+#: ../../Zotlabs/Module/Like.php:537
+msgid "Thank you."
+msgstr "Tusen takk."
+
+#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189
+#: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625
+msgid "Profile not found."
+msgstr "Profilen ble ikke funnet."
+
+#: ../../Zotlabs/Module/Profiles.php:44
+msgid "Profile deleted."
+msgstr "Profilen er slettet."
+
+#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104
+msgid "Profile-"
+msgstr "Profil-"
+
+#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132
+msgid "New profile created."
+msgstr "Ny profil opprettet."
+
+#: ../../Zotlabs/Module/Profiles.php:110
+msgid "Profile unavailable to clone."
+msgstr "Profilen er utilgjengelig for klonen."
+
+#: ../../Zotlabs/Module/Profiles.php:151
+msgid "Profile unavailable to export."
+msgstr "Profilen er utilgjengelig for eksport."
+
+#: ../../Zotlabs/Module/Profiles.php:256
+msgid "Profile Name is required."
+msgstr "Profilnavn er påkrevd."
+
+#: ../../Zotlabs/Module/Profiles.php:427
+msgid "Marital Status"
+msgstr "Sivilstand"
+
+#: ../../Zotlabs/Module/Profiles.php:431
+msgid "Romantic Partner"
+msgstr "Romantisk partner"
+
+#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736
+msgid "Likes"
+msgstr "Liker"
+
+#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737
+msgid "Dislikes"
+msgstr "Liker ikke"
+
+#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744
+msgid "Work/Employment"
+msgstr "Arbeid/sysselsetting"
+
+#: ../../Zotlabs/Module/Profiles.php:446
+msgid "Religion"
+msgstr "Religion"
+
+#: ../../Zotlabs/Module/Profiles.php:450
+msgid "Political Views"
+msgstr "Politiske synspunkter"
+
+#: ../../Zotlabs/Module/Profiles.php:458
+msgid "Sexual Preference"
+msgstr "Seksuelle preferanser"
+
+#: ../../Zotlabs/Module/Profiles.php:462
+msgid "Homepage"
+msgstr "Hjemmeside"
+
+#: ../../Zotlabs/Module/Profiles.php:466
+msgid "Interests"
+msgstr "Interesser"
+
+#: ../../Zotlabs/Module/Profiles.php:470 ../../Zotlabs/Module/Locs.php:118
+#: ../../Zotlabs/Module/Admin.php:1224
+msgid "Address"
+msgstr "Adresse"
+
+#: ../../Zotlabs/Module/Profiles.php:560
+msgid "Profile updated."
+msgstr "Profilen er oppdatert."
+
+#: ../../Zotlabs/Module/Profiles.php:644
+msgid "Hide your connections list from viewers of this profile"
+msgstr "Skjul listen med forbindelser fra besøkende som ser denne profilen"
+
+#: ../../Zotlabs/Module/Profiles.php:686
+msgid "Edit Profile Details"
+msgstr "Endre profildetaljer"
+
+#: ../../Zotlabs/Module/Profiles.php:688
+msgid "View this profile"
+msgstr "Vis denne profilen"
+
+#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771
+#: ../../include/channel.php:998
+msgid "Edit visibility"
+msgstr "Endre synlighet"
+
+#: ../../Zotlabs/Module/Profiles.php:690
+msgid "Profile Tools"
+msgstr "Profilverktøy"
+
+#: ../../Zotlabs/Module/Profiles.php:691
+msgid "Change cover photo"
+msgstr "Endre forsidebilde"
-#: ../../Zotlabs/Module/Import.php:32
+#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:969
+msgid "Change profile photo"
+msgstr "Endre profilbilde"
+
+#: ../../Zotlabs/Module/Profiles.php:693
+msgid "Create a new profile using these settings"
+msgstr "Lag en ny profil ved å bruke disse innstillingene"
+
+#: ../../Zotlabs/Module/Profiles.php:694
+msgid "Clone this profile"
+msgstr "Klon denne profilen"
+
+#: ../../Zotlabs/Module/Profiles.php:695
+msgid "Delete this profile"
+msgstr "Slett denne profilen"
+
+#: ../../Zotlabs/Module/Profiles.php:696
+msgid "Add profile things"
+msgstr "Legg til profilting"
+
+#: ../../Zotlabs/Module/Profiles.php:697 ../../include/conversation.php:1541
+#: ../../include/widgets.php:105
+msgid "Personal"
+msgstr "Personlig"
+
+#: ../../Zotlabs/Module/Profiles.php:699
+msgid "Relation"
+msgstr "Forhold"
+
+#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48
+msgid "Miscellaneous"
+msgstr "Forskjellig"
+
+#: ../../Zotlabs/Module/Profiles.php:702
+msgid "Import profile from file"
+msgstr "Importer profil fra fil"
+
+#: ../../Zotlabs/Module/Profiles.php:703
+msgid "Export profile to file"
+msgstr "Eksporter profil til fil"
+
+#: ../../Zotlabs/Module/Profiles.php:704
+msgid "Your gender"
+msgstr "Ditt kjønn"
+
+#: ../../Zotlabs/Module/Profiles.php:705
+msgid "Marital status"
+msgstr "Sivilstand"
+
+#: ../../Zotlabs/Module/Profiles.php:706
+msgid "Sexual preference"
+msgstr "Seksuelle preferanser"
+
+#: ../../Zotlabs/Module/Profiles.php:709
+msgid "Profile name"
+msgstr "Profilnavn"
+
+#: ../../Zotlabs/Module/Profiles.php:711
+msgid "This is your default profile."
+msgstr "Dette er din standardprofil."
+
+#: ../../Zotlabs/Module/Profiles.php:713
+msgid "Your full name"
+msgstr "Ditt fulle navn"
+
+#: ../../Zotlabs/Module/Profiles.php:714
+msgid "Title/Description"
+msgstr "Tittel/beskrivelse"
+
+#: ../../Zotlabs/Module/Profiles.php:717
+msgid "Street address"
+msgstr "Gateadresse"
+
+#: ../../Zotlabs/Module/Profiles.php:718
+msgid "Locality/City"
+msgstr "Sted/by"
+
+#: ../../Zotlabs/Module/Profiles.php:719
+msgid "Region/State"
+msgstr "Region/fylke"
+
+#: ../../Zotlabs/Module/Profiles.php:720
+msgid "Postal/Zip code"
+msgstr "Postnummer/ZIP-kode"
+
+#: ../../Zotlabs/Module/Profiles.php:721
+msgid "Country"
+msgstr "Land"
+
+#: ../../Zotlabs/Module/Profiles.php:726
+msgid "Who (if applicable)"
+msgstr "Hvem (hvis det er aktuelt)"
+
+#: ../../Zotlabs/Module/Profiles.php:726
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+msgstr "Eksempler: kari123, Kari Villiamsen, kari@example.com"
+
+#: ../../Zotlabs/Module/Profiles.php:727
+msgid "Since (date)"
+msgstr "Siden (dato)"
+
+#: ../../Zotlabs/Module/Profiles.php:730
+msgid "Tell us about yourself"
+msgstr "Fortell oss om deg selv"
+
+#: ../../Zotlabs/Module/Profiles.php:732
+msgid "Hometown"
+msgstr "Hjemby"
+
+#: ../../Zotlabs/Module/Profiles.php:733
+msgid "Political views"
+msgstr "Politiske synspunkter"
+
+#: ../../Zotlabs/Module/Profiles.php:734
+msgid "Religious views"
+msgstr "Religiøse synspunkter"
+
+#: ../../Zotlabs/Module/Profiles.php:735
+msgid "Keywords used in directory listings"
+msgstr "Nøkkelord bruk i katalogoppføringer"
+
+#: ../../Zotlabs/Module/Profiles.php:735
+msgid "Example: fishing photography software"
+msgstr "Eksempel: fisking fotografering programvare"
+
+#: ../../Zotlabs/Module/Profiles.php:738
+msgid "Musical interests"
+msgstr "Musikkinteresser"
+
+#: ../../Zotlabs/Module/Profiles.php:739
+msgid "Books, literature"
+msgstr "Bøker, litteratur"
+
+#: ../../Zotlabs/Module/Profiles.php:740
+msgid "Television"
+msgstr "TV/fjernsyn"
+
+#: ../../Zotlabs/Module/Profiles.php:741
+msgid "Film/Dance/Culture/Entertainment"
+msgstr "Film/dans/kultur/underholdning"
+
+#: ../../Zotlabs/Module/Profiles.php:742
+msgid "Hobbies/Interests"
+msgstr "Hobbier/Interesser"
+
+#: ../../Zotlabs/Module/Profiles.php:743
+msgid "Love/Romance"
+msgstr "Kjærlighet/romantikk"
+
+#: ../../Zotlabs/Module/Profiles.php:745
+msgid "School/Education"
+msgstr "Skole/utdanning"
+
+#: ../../Zotlabs/Module/Profiles.php:746
+msgid "Contact information and social networks"
+msgstr "Kontaktinformasjon og sosiale nettverk"
+
+#: ../../Zotlabs/Module/Profiles.php:747
+msgid "My other channels"
+msgstr "Mine andre kanaler"
+
+#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:994
+msgid "Profile Image"
+msgstr "Profilbilde"
+
+#: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:88
+#: ../../include/channel.php:976
+msgid "Edit Profiles"
+msgstr "Endre profiler"
+
+#: ../../Zotlabs/Module/Import.php:33
#, php-format
msgid "Your service plan only allows %d channels."
msgstr "Din tjenesteplan tillater bare %d kanaler."
-#: ../../Zotlabs/Module/Import.php:70 ../../Zotlabs/Module/Import_items.php:42
+#: ../../Zotlabs/Module/Import.php:71 ../../Zotlabs/Module/Import_items.php:42
msgid "Nothing to import."
msgstr "Ingenting å importere."
-#: ../../Zotlabs/Module/Import.php:94 ../../Zotlabs/Module/Import_items.php:66
+#: ../../Zotlabs/Module/Import.php:95 ../../Zotlabs/Module/Import_items.php:66
msgid "Unable to download data from old server"
msgstr "Ikke i stand til å laste ned data fra gammel tjener"
-#: ../../Zotlabs/Module/Import.php:100
+#: ../../Zotlabs/Module/Import.php:101
#: ../../Zotlabs/Module/Import_items.php:72
msgid "Imported file is empty."
msgstr "Importert fil er tom."
-#: ../../Zotlabs/Module/Import.php:122
-#: ../../Zotlabs/Module/Import_items.php:86
+#: ../../Zotlabs/Module/Import.php:123
+#: ../../Zotlabs/Module/Import_items.php:88
#, php-format
msgid "Warning: Database versions differ by %1$d updates."
msgstr "Advarsel: databaseversjoner avviker med %1$d oppdateringer."
-#: ../../Zotlabs/Module/Import.php:150 ../../include/import.php:86
+#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107
msgid "Cloned channel not found. Import failed."
msgstr "Klonet kanal ble ikke funnet. Import mislyktes."
-#: ../../Zotlabs/Module/Import.php:160
+#: ../../Zotlabs/Module/Import.php:163
msgid "No channel. Import failed."
msgstr "Ingen kanal. Import mislyktes."
-#: ../../Zotlabs/Module/Import.php:510
+#: ../../Zotlabs/Module/Import.php:520
#: ../../include/Import/import_diaspora.php:142
msgid "Import completed."
msgstr "Import ferdig."
-#: ../../Zotlabs/Module/Import.php:532
+#: ../../Zotlabs/Module/Import.php:542
msgid "You must be logged in to use this feature."
msgstr "Du må være innlogget for å bruke denne funksjonen."
-#: ../../Zotlabs/Module/Import.php:537
+#: ../../Zotlabs/Module/Import.php:547
msgid "Import Channel"
msgstr "Importer kanal"
-#: ../../Zotlabs/Module/Import.php:538
+#: ../../Zotlabs/Module/Import.php:548
msgid ""
"Use this form to import an existing channel from a different server/hub. You"
" may retrieve the channel identity from the old server/hub via the network "
"or provide an export file."
msgstr "Bruk dette skjemaet for å importere en eksisterende kanal fra en annen tjener/hub. Du kan hente inn kanalidentiteten fra den gamle tjeneren/huben via nettverket eller ved å bruke en eksportfil."
-#: ../../Zotlabs/Module/Import.php:539
-#: ../../Zotlabs/Module/Import_items.php:119
+#: ../../Zotlabs/Module/Import.php:549
+#: ../../Zotlabs/Module/Import_items.php:121
msgid "File to Upload"
msgstr "Fil som skal lastes opp"
-#: ../../Zotlabs/Module/Import.php:540
+#: ../../Zotlabs/Module/Import.php:550
msgid "Or provide the old server/hub details"
msgstr "Eller oppgi detaljene fra den gamle tjeneren/hub-en"
-#: ../../Zotlabs/Module/Import.php:541
+#: ../../Zotlabs/Module/Import.php:551
msgid "Your old identity address (xyz@example.com)"
msgstr "Din gamle identitetsadresse (xyz@example.com)"
-#: ../../Zotlabs/Module/Import.php:542
+#: ../../Zotlabs/Module/Import.php:552
msgid "Your old login email address"
msgstr "Din gamle innloggings e-postadresse"
-#: ../../Zotlabs/Module/Import.php:543
+#: ../../Zotlabs/Module/Import.php:553
msgid "Your old login password"
msgstr "Ditt gamle innloggingspassord"
-#: ../../Zotlabs/Module/Import.php:544
+#: ../../Zotlabs/Module/Import.php:554
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"
@@ -1803,304 +2485,369 @@ 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."
-#: ../../Zotlabs/Module/Import.php:545
+#: ../../Zotlabs/Module/Import.php:555
msgid "Make this hub my primary location"
msgstr "Gjør dette nettstedet til min primære plassering"
-#: ../../Zotlabs/Module/Import.php:546
+#: ../../Zotlabs/Module/Import.php:556
msgid ""
"Import existing posts if possible (experimental - limited by available "
"memory"
msgstr "Importer eksisterende innlegg om mulig (eksperimentelt - begrenset av tilgjengelig minne)"
-#: ../../Zotlabs/Module/Import.php:547
+#: ../../Zotlabs/Module/Import.php:557
msgid ""
"This process may take several minutes to complete. Please submit the form "
"only once and leave this page open until finished."
msgstr "Denne prosessen kan ta flere minutter å fullføre. Vennligst send inn dette skjemaet bare en gang og la siden være åpen inntil den er ferdig."
-#: ../../Zotlabs/Module/Item.php:178
+#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82
+#: ../../Zotlabs/Module/Siteinfo.php:48
+msgid "$Projectname"
+msgstr "$Projectname"
+
+#: ../../Zotlabs/Module/Home.php:92
+#, php-format
+msgid "Welcome to %s"
+msgstr "Velkommen til %s"
+
+#: ../../Zotlabs/Module/Item.php:179
msgid "Unable to locate original post."
msgstr "Ikke i stand til å finne opprinnelig innlegg."
-#: ../../Zotlabs/Module/Item.php:427
+#: ../../Zotlabs/Module/Item.php:432
msgid "Empty post discarded."
msgstr "Tomt innlegg forkastet."
-#: ../../Zotlabs/Module/Item.php:467
+#: ../../Zotlabs/Module/Item.php:472
msgid "Executable content type not permitted to this channel."
msgstr "Kjørbar innholdstype er ikke tillat for denne kanalen."
-#: ../../Zotlabs/Module/Item.php:847
+#: ../../Zotlabs/Module/Item.php:856
msgid "Duplicate post suppressed."
msgstr "Duplikat av innlegg forhindret."
-#: ../../Zotlabs/Module/Item.php:977
+#: ../../Zotlabs/Module/Item.php:989
msgid "System error. Post not saved."
msgstr "Systemfeil. Innlegg ble ikke lagret."
-#: ../../Zotlabs/Module/Item.php:1241
+#: ../../Zotlabs/Module/Item.php:1242
msgid "Unable to obtain post information from database."
msgstr "Ikke i stand til å få tak i informasjon om innlegg fra databasen."
-#: ../../Zotlabs/Module/Item.php:1248
+#: ../../Zotlabs/Module/Item.php:1249
#, php-format
msgid "You have reached your limit of %1$.0f top level posts."
msgstr "Du har nådd din grense på %1$.0f startinnlegg."
-#: ../../Zotlabs/Module/Item.php:1255
+#: ../../Zotlabs/Module/Item.php:1256
#, php-format
msgid "You have reached your limit of %1$.0f webpages."
msgstr "Du har nådd din grense på %1$.0f websider."
-#: ../../Zotlabs/Module/Layouts.php:181 ../../include/text.php:2267
-msgid "Layouts"
-msgstr "Layout"
+#: ../../Zotlabs/Module/Photos.php:82
+msgid "Page owner information could not be retrieved."
+msgstr "Informasjon om sideeier kunne ikke hentes."
-#: ../../Zotlabs/Module/Layouts.php:183
-msgid "Comanche page description language help"
-msgstr "Hjelp med Comanche sidebeskrivelsesspråk"
+#: ../../Zotlabs/Module/Photos.php:97 ../../Zotlabs/Module/Photos.php:741
+#: ../../Zotlabs/Module/Profile_photo.php:115
+#: ../../Zotlabs/Module/Profile_photo.php:212
+#: ../../Zotlabs/Module/Profile_photo.php:311
+#: ../../include/photo/photo_driver.php:718
+msgid "Profile Photos"
+msgstr "Profilbilder"
-#: ../../Zotlabs/Module/Layouts.php:187
-msgid "Layout Description"
-msgstr "Layout-beskrivelse"
+#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:147
+msgid "Album not found."
+msgstr "Albumet ble ikke funnet."
-#: ../../Zotlabs/Module/Layouts.php:192
-msgid "Download PDL file"
-msgstr "Last ned PDL-fil"
+#: ../../Zotlabs/Module/Photos.php:130
+msgid "Delete Album"
+msgstr "Slett album"
-#: ../../Zotlabs/Module/Home.php:61 ../../Zotlabs/Module/Home.php:69
-#: ../../Zotlabs/Module/Siteinfo.php:65
-msgid "$Projectname"
-msgstr "$Projectname"
+#: ../../Zotlabs/Module/Photos.php:151
+msgid ""
+"Multiple storage folders exist with this album name, but within different "
+"directories. Please remove the desired folder or folders using the Files "
+"manager"
+msgstr "Flere lagringsmapper finnes med dette albumnavnet, men i ulike mapper. Vennligst fjern den ønskede mappen eller mappene med filbehandleren."
+
+#: ../../Zotlabs/Module/Photos.php:208 ../../Zotlabs/Module/Photos.php:1051
+msgid "Delete Photo"
+msgstr "Slett bilde"
+
+#: ../../Zotlabs/Module/Photos.php:531
+msgid "No photos selected"
+msgstr "Ingen bilder valgt"
-#: ../../Zotlabs/Module/Home.php:79
+#: ../../Zotlabs/Module/Photos.php:580
+msgid "Access to this item is restricted."
+msgstr "Tilgang til dette elementet er begrenset."
+
+#: ../../Zotlabs/Module/Photos.php:619
#, php-format
-msgid "Welcome to %s"
-msgstr "Velkommen til %s"
+msgid "%1$.2f MB of %2$.2f MB photo storage used."
+msgstr "%1$.2f MB av %2$.2f MB lagringsplass til bilder er brukt."
-#: ../../Zotlabs/Module/Id.php:13
-msgid "First Name"
-msgstr "Fornavn"
+#: ../../Zotlabs/Module/Photos.php:622
+#, php-format
+msgid "%1$.2f MB photo storage used."
+msgstr "%1$.2f MB lagringsplass til bilder er brukt."
-#: ../../Zotlabs/Module/Id.php:14
-msgid "Last Name"
-msgstr "Etternavn"
+#: ../../Zotlabs/Module/Photos.php:658
+msgid "Upload Photos"
+msgstr "Last opp bilder"
-#: ../../Zotlabs/Module/Id.php:15
-msgid "Nickname"
-msgstr "Kallenavn"
+#: ../../Zotlabs/Module/Photos.php:662
+msgid "Enter an album name"
+msgstr "Skriv et albumnavn"
-#: ../../Zotlabs/Module/Id.php:16
-msgid "Full Name"
-msgstr "Fullt navn"
+#: ../../Zotlabs/Module/Photos.php:663
+msgid "or select an existing album (doubleclick)"
+msgstr "eller velg et eksisterende album (dobbeltklikk)"
-#: ../../Zotlabs/Module/Id.php:17 ../../Zotlabs/Module/Id.php:18
-#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047
-#: ../../include/network.php:2151 ../../boot.php:1705
-msgid "Email"
-msgstr "E-post"
+#: ../../Zotlabs/Module/Photos.php:664
+msgid "Create a status post for this upload"
+msgstr "Lag et statusinnlegg for denne opplastingen"
-#: ../../Zotlabs/Module/Id.php:19 ../../Zotlabs/Module/Id.php:20
-#: ../../Zotlabs/Module/Id.php:21 ../../Zotlabs/Lib/Apps.php:236
-msgid "Profile Photo"
-msgstr "Profilbilde"
+#: ../../Zotlabs/Module/Photos.php:665
+msgid "Caption (optional):"
+msgstr "Bildetekst (valgfritt):"
-#: ../../Zotlabs/Module/Id.php:22
-msgid "Profile Photo 16px"
-msgstr "Profilbilde 16px"
+#: ../../Zotlabs/Module/Photos.php:666
+msgid "Description (optional):"
+msgstr "Beskrivelse (valgfritt):"
-#: ../../Zotlabs/Module/Id.php:23
-msgid "Profile Photo 32px"
-msgstr "Profilbilde 32px"
+#: ../../Zotlabs/Module/Photos.php:693
+msgid "Album name could not be decoded"
+msgstr "Albumnavnet kunne ikke dekodes"
-#: ../../Zotlabs/Module/Id.php:24
-msgid "Profile Photo 48px"
-msgstr "Profilbilde 48px"
+#: ../../Zotlabs/Module/Photos.php:741
+msgid "Contact Photos"
+msgstr "Kontaktbilder"
-#: ../../Zotlabs/Module/Id.php:25
-msgid "Profile Photo 64px"
-msgstr "Profilbilde 64px"
+#: ../../Zotlabs/Module/Photos.php:764
+msgid "Show Newest First"
+msgstr "Vis nyeste først"
-#: ../../Zotlabs/Module/Id.php:26
-msgid "Profile Photo 80px"
-msgstr "Profilbilde 80px"
+#: ../../Zotlabs/Module/Photos.php:766
+msgid "Show Oldest First"
+msgstr "Vis eldste først"
-#: ../../Zotlabs/Module/Id.php:27
-msgid "Profile Photo 128px"
-msgstr "Profilbilde 128px"
+#: ../../Zotlabs/Module/Photos.php:790 ../../Zotlabs/Module/Photos.php:1329
+#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1593
+msgid "View Photo"
+msgstr "Vis foto"
-#: ../../Zotlabs/Module/Id.php:28
-msgid "Timezone"
-msgstr "Tidssone"
+#: ../../Zotlabs/Module/Photos.php:821
+#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1610
+msgid "Edit Album"
+msgstr "Endre album"
-#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:731
-msgid "Homepage URL"
-msgstr "Hjemmeside URL"
+#: ../../Zotlabs/Module/Photos.php:868
+msgid "Permission denied. Access to this item may be restricted."
+msgstr "Tillatelse avvist. Tilgang til dette elementet kan være begrenset."
-#: ../../Zotlabs/Module/Id.php:30 ../../Zotlabs/Lib/Apps.php:234
-msgid "Language"
-msgstr "Språk"
+#: ../../Zotlabs/Module/Photos.php:870
+msgid "Photo not available"
+msgstr "Bilde er utilgjengelig"
-#: ../../Zotlabs/Module/Id.php:31
-msgid "Birth Year"
-msgstr "Fødselsår"
+#: ../../Zotlabs/Module/Photos.php:928
+msgid "Use as profile photo"
+msgstr "Bruk som profilbilde"
-#: ../../Zotlabs/Module/Id.php:32
-msgid "Birth Month"
-msgstr "Fødselsmåne"
+#: ../../Zotlabs/Module/Photos.php:929
+msgid "Use as cover photo"
+msgstr "Bruk som forsidebilde"
-#: ../../Zotlabs/Module/Id.php:33
-msgid "Birth Day"
-msgstr "Fødselsdag"
+#: ../../Zotlabs/Module/Photos.php:936
+msgid "Private Photo"
+msgstr "Privat bilde"
-#: ../../Zotlabs/Module/Id.php:34
-msgid "Birthdate"
-msgstr "Fødselsdato"
+#: ../../Zotlabs/Module/Photos.php:951
+msgid "View Full Size"
+msgstr "Vis i full størrelse"
-#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:454
-msgid "Gender"
-msgstr "Kjønn"
+#: ../../Zotlabs/Module/Photos.php:996 ../../Zotlabs/Module/Admin.php:1437
+#: ../../Zotlabs/Module/Tagrm.php:137
+msgid "Remove"
+msgstr "Fjern"
-#: ../../Zotlabs/Module/Id.php:108 ../../include/selectors.php:49
-#: ../../include/selectors.php:66
-msgid "Male"
-msgstr "Mannlig"
+#: ../../Zotlabs/Module/Photos.php:1030
+msgid "Edit photo"
+msgstr "Endre bilde"
-#: ../../Zotlabs/Module/Id.php:110 ../../include/selectors.php:49
-#: ../../include/selectors.php:66
-msgid "Female"
-msgstr "Kvinnelig"
+#: ../../Zotlabs/Module/Photos.php:1032
+msgid "Rotate CW (right)"
+msgstr "Roter med klokka (mot høyre)"
-#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192
-msgid "webpage"
-msgstr "nettside"
+#: ../../Zotlabs/Module/Photos.php:1033
+msgid "Rotate CCW (left)"
+msgstr "Roter mot klokka (venstre)"
-#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198
-msgid "block"
-msgstr "byggekloss"
+#: ../../Zotlabs/Module/Photos.php:1036
+msgid "Enter a new album name"
+msgstr "Skriv et nytt albumnavn"
-#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195
-msgid "layout"
-msgstr "layout"
+#: ../../Zotlabs/Module/Photos.php:1037
+msgid "or select an existing one (doubleclick)"
+msgstr "eller velg et eksisterende album (dobbeltklikk)"
-#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201
-msgid "menu"
-msgstr "meny"
+#: ../../Zotlabs/Module/Photos.php:1040
+msgid "Caption"
+msgstr "Overskrift"
-#: ../../Zotlabs/Module/Impel.php:196
-#, php-format
-msgid "%s element installed"
-msgstr "%s element installert"
+#: ../../Zotlabs/Module/Photos.php:1042
+msgid "Add a Tag"
+msgstr "Legg til merkelapp"
-#: ../../Zotlabs/Module/Impel.php:199
-#, php-format
-msgid "%s element installation failed"
-msgstr "Installasjon av %s-element mislyktes"
+#: ../../Zotlabs/Module/Photos.php:1046
+msgid "Example: @bob, @Barbara_Jensen, @jim@example.com"
+msgstr "Eksempel: @bob, @Barbara_Jensen, @jim@example.com"
-#: ../../Zotlabs/Module/Like.php:19
-msgid "Like/Dislike"
-msgstr "Liker/Liker ikke"
+#: ../../Zotlabs/Module/Photos.php:1049
+msgid "Flag as adult in album view"
+msgstr "Flag som voksent i albumvisning"
-#: ../../Zotlabs/Module/Like.php:24
-msgid "This action is restricted to members."
-msgstr "Denne handlingen er begrenset til medlemmer."
+#: ../../Zotlabs/Module/Photos.php:1068 ../../Zotlabs/Lib/ThreadItem.php:261
+msgid "I like this (toggle)"
+msgstr "Jeg liker dette (skru av og på)"
-#: ../../Zotlabs/Module/Like.php:25
-msgid ""
-"Please <a href=\"rmagic\">login with your $Projectname ID</a> or <a "
-"href=\"register\">register as a new $Projectname member</a> to continue."
-msgstr "Vennligst <a href=\"rmagic\">logg inn med din $Projectname ID</a> eller <a href=\"register\">registrer deg som et nytt $Projectname-medlem</a> for å fortsette"
+#: ../../Zotlabs/Module/Photos.php:1069 ../../Zotlabs/Lib/ThreadItem.php:262
+msgid "I don't like this (toggle)"
+msgstr "Jeg liker ikke dette (skru av og på)"
-#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131
-#: ../../Zotlabs/Module/Like.php:169
-msgid "Invalid request."
-msgstr "Ugyldig forespørsel."
+#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:397
+#: ../../include/conversation.php:743
+msgid "Please wait"
+msgstr "Vennligst vent"
-#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126
-msgid "channel"
-msgstr "kanal"
+#: ../../Zotlabs/Module/Photos.php:1087 ../../Zotlabs/Module/Photos.php:1205
+#: ../../Zotlabs/Lib/ThreadItem.php:707
+msgid "This is you"
+msgstr "Dette er deg"
-#: ../../Zotlabs/Module/Like.php:146
-msgid "thing"
-msgstr "ting"
+#: ../../Zotlabs/Module/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207
+#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6
+msgid "Comment"
+msgstr "Kommentar"
-#: ../../Zotlabs/Module/Like.php:192
-msgid "Channel unavailable."
-msgstr "Kanalen er utilgjengelig."
+#: ../../Zotlabs/Module/Photos.php:1105 ../../include/conversation.php:577
+msgctxt "title"
+msgid "Likes"
+msgstr "Liker"
-#: ../../Zotlabs/Module/Like.php:240
-msgid "Previous action reversed."
-msgstr "Forrige handling er omgjort."
+#: ../../Zotlabs/Module/Photos.php:1105 ../../include/conversation.php:577
+msgctxt "title"
+msgid "Dislikes"
+msgstr "Liker ikke"
-#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87
-#: ../../Zotlabs/Module/Tagger.php:47 ../../include/text.php:1940
-#: ../../include/conversation.php:120
-msgid "photo"
-msgstr "foto"
+#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578
+msgctxt "title"
+msgid "Agree"
+msgstr "Enig"
-#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87
-#: ../../include/text.php:1946 ../../include/conversation.php:148
-msgid "status"
-msgstr "status"
+#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578
+msgctxt "title"
+msgid "Disagree"
+msgstr "Uenig"
-#: ../../Zotlabs/Module/Like.php:420 ../../include/conversation.php:164
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "%1$s liker %2$s sin %3$s"
+#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578
+msgctxt "title"
+msgid "Abstain"
+msgstr "Avstår"
-#: ../../Zotlabs/Module/Like.php:422 ../../include/conversation.php:167
-#, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
-msgstr "%1$s liker ikke %2$s sin %3$s"
+#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579
+msgctxt "title"
+msgid "Attending"
+msgstr "Deltar"
-#: ../../Zotlabs/Module/Like.php:424
-#, php-format
-msgid "%1$s agrees with %2$s's %3$s"
-msgstr "%1$s er enig med %2$s sin %3$s"
+#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579
+msgctxt "title"
+msgid "Not attending"
+msgstr "Deltar ikke"
-#: ../../Zotlabs/Module/Like.php:426
-#, php-format
-msgid "%1$s doesn't agree with %2$s's %3$s"
-msgstr "%1$s er ikke enig med %2$s sin %3$s"
+#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579
+msgctxt "title"
+msgid "Might attend"
+msgstr "Deltar kanskje"
-#: ../../Zotlabs/Module/Like.php:428
-#, php-format
-msgid "%1$s abstains from a decision on %2$s's %3$s"
-msgstr "%1$s avstår fra å mene noe om %2$s sin %3$s"
+#: ../../Zotlabs/Module/Photos.php:1124 ../../Zotlabs/Module/Photos.php:1136
+#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193
+#: ../../include/conversation.php:1738
+msgid "View all"
+msgstr "Vis alle"
-#: ../../Zotlabs/Module/Like.php:430
-#, php-format
-msgid "%1$s is attending %2$s's %3$s"
-msgstr "%1$s deltar på %2$ss %3$s"
+#: ../../Zotlabs/Module/Photos.php:1128 ../../Zotlabs/Lib/ThreadItem.php:185
+#: ../../include/taxonomy.php:403 ../../include/channel.php:1198
+#: ../../include/conversation.php:1762
+msgctxt "noun"
+msgid "Like"
+msgid_plural "Likes"
+msgstr[0] "Liker"
+msgstr[1] "Liker"
-#: ../../Zotlabs/Module/Like.php:432
-#, php-format
-msgid "%1$s is not attending %2$s's %3$s"
-msgstr "%1$s deltar ikke på %2$ss %3$s"
+#: ../../Zotlabs/Module/Photos.php:1133 ../../Zotlabs/Lib/ThreadItem.php:190
+#: ../../include/conversation.php:1765
+msgctxt "noun"
+msgid "Dislike"
+msgid_plural "Dislikes"
+msgstr[0] "Liker ikke"
+msgstr[1] "Liker ikke"
-#: ../../Zotlabs/Module/Like.php:434
-#, php-format
-msgid "%1$s may attend %2$s's %3$s"
-msgstr "%1$s deltar kanskje på %2$ss %3$s"
+#: ../../Zotlabs/Module/Photos.php:1233
+msgid "Photo Tools"
+msgstr "Fotoverktøy"
-#: ../../Zotlabs/Module/Like.php:537
-msgid "Action completed."
-msgstr "Handling ferdig."
+#: ../../Zotlabs/Module/Photos.php:1242
+msgid "In This Photo:"
+msgstr "I dette bildet:"
-#: ../../Zotlabs/Module/Like.php:538
-msgid "Thank you."
-msgstr "Tusen takk."
+#: ../../Zotlabs/Module/Photos.php:1247
+msgid "Map"
+msgstr "Kart"
+
+#: ../../Zotlabs/Module/Photos.php:1255 ../../Zotlabs/Lib/ThreadItem.php:386
+msgctxt "noun"
+msgid "Likes"
+msgstr "Liker"
+
+#: ../../Zotlabs/Module/Photos.php:1256 ../../Zotlabs/Lib/ThreadItem.php:387
+msgctxt "noun"
+msgid "Dislikes"
+msgstr "Liker ikke"
-#: ../../Zotlabs/Module/Import_items.php:102
+#: ../../Zotlabs/Module/Photos.php:1261 ../../Zotlabs/Lib/ThreadItem.php:392
+#: ../../include/acl_selectors.php:283
+msgid "Close"
+msgstr "Lukk"
+
+#: ../../Zotlabs/Module/Photos.php:1335
+msgid "View Album"
+msgstr "Vis album"
+
+#: ../../Zotlabs/Module/Photos.php:1346 ../../Zotlabs/Module/Photos.php:1359
+#: ../../Zotlabs/Module/Photos.php:1360
+msgid "Recent Photos"
+msgstr "Nye bilder"
+
+#: ../../Zotlabs/Module/Lockview.php:75
+msgid "Remote privacy information not available."
+msgstr "Ekstern personverninformasjon er ikke tilgjengelig."
+
+#: ../../Zotlabs/Module/Lockview.php:96
+msgid "Visible to:"
+msgstr "Synlig for:"
+
+#: ../../Zotlabs/Module/Import_items.php:104
msgid "Import completed"
msgstr "Import ferdig"
-#: ../../Zotlabs/Module/Import_items.php:117
+#: ../../Zotlabs/Module/Import_items.php:119
msgid "Import Items"
msgstr "Importer elementer"
-#: ../../Zotlabs/Module/Import_items.php:118
+#: ../../Zotlabs/Module/Import_items.php:120
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."
@@ -2146,7 +2893,7 @@ msgstr "Send invitasjoner"
msgid "Enter email addresses, one per line:"
msgstr "Skriv e-postadresser, en per linje:"
-#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:249
+#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:241
msgid "Your message:"
msgstr "Din melding:"
@@ -2175,14 +2922,6 @@ msgstr "eller besøke"
msgid "3. Click [Connect]"
msgstr "3. Klikk [Forbindelse]"
-#: ../../Zotlabs/Module/Lockview.php:61
-msgid "Remote privacy information not available."
-msgstr "Ekstern personverninformasjon er ikke tilgjengelig."
-
-#: ../../Zotlabs/Module/Lockview.php:82
-msgid "Visible to:"
-msgstr "Synlig for:"
-
#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54
msgid "Location not found."
msgstr "Plassering er ikke funnet."
@@ -2209,14 +2948,9 @@ msgstr "Ingen plasseringer ble funnet."
msgid "Manage Channel Locations"
msgstr "Håndter kanalplasseringer"
-#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:470
-#: ../../Zotlabs/Module/Admin.php:1224
-msgid "Address"
-msgstr "Adresse"
-
#: ../../Zotlabs/Module/Locs.php:119
msgid "Primary"
-msgstr ""
+msgstr "Hoved"
#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113
msgid "Drop"
@@ -2224,7 +2958,7 @@ msgstr "Slett"
#: ../../Zotlabs/Module/Locs.php:122
msgid "Sync Now"
-msgstr ""
+msgstr "Synkroniser nå"
#: ../../Zotlabs/Module/Locs.php:123
msgid "Please wait several minutes between consecutive operations."
@@ -2256,87 +2990,87 @@ msgstr "Ikke i stand til å kommunisere med forespurt kanal."
msgid "Cannot verify requested channel."
msgstr "Kan ikke bekrefte forespurt kanal."
-#: ../../Zotlabs/Module/Mail.php:78
+#: ../../Zotlabs/Module/Mail.php:70
msgid "Selected channel has private message restrictions. Send failed."
msgstr "Valgt kanal har restriksjoner for private meldinger. Sending feilet."
-#: ../../Zotlabs/Module/Mail.php:143
+#: ../../Zotlabs/Module/Mail.php:135
msgid "Messages"
msgstr "Meldinger"
-#: ../../Zotlabs/Module/Mail.php:178
+#: ../../Zotlabs/Module/Mail.php:170
msgid "Message recalled."
msgstr "Innlegg tilbakekalt."
-#: ../../Zotlabs/Module/Mail.php:191
+#: ../../Zotlabs/Module/Mail.php:183
msgid "Conversation removed."
msgstr "Samtale fjernet."
-#: ../../Zotlabs/Module/Mail.php:206 ../../Zotlabs/Module/Mail.php:315
+#: ../../Zotlabs/Module/Mail.php:198 ../../Zotlabs/Module/Mail.php:307
msgid "Expires YYYY-MM-DD HH:MM"
msgstr "Utløper YYYY-MM-DD HH:MM"
-#: ../../Zotlabs/Module/Mail.php:234
+#: ../../Zotlabs/Module/Mail.php:226
msgid "Requested channel is not in this network"
msgstr "Forespurt kanal er ikke tilgjengelig i dette nettverket."
-#: ../../Zotlabs/Module/Mail.php:242
+#: ../../Zotlabs/Module/Mail.php:234
msgid "Send Private Message"
msgstr "Send privat melding"
-#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368
+#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360
msgid "To:"
msgstr "Til:"
-#: ../../Zotlabs/Module/Mail.php:246 ../../Zotlabs/Module/Mail.php:370
+#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362
msgid "Subject:"
msgstr "Emne:"
-#: ../../Zotlabs/Module/Mail.php:251 ../../Zotlabs/Module/Mail.php:376
-#: ../../include/conversation.php:1220
+#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368
+#: ../../include/conversation.php:1231
msgid "Attach file"
msgstr "Legg ved fil"
-#: ../../Zotlabs/Module/Mail.php:253
+#: ../../Zotlabs/Module/Mail.php:245
msgid "Send"
msgstr "Send"
-#: ../../Zotlabs/Module/Mail.php:256 ../../Zotlabs/Module/Mail.php:381
-#: ../../include/conversation.php:1251
+#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373
+#: ../../include/conversation.php:1266
msgid "Set expiration date"
msgstr "Angi utløpsdato"
-#: ../../Zotlabs/Module/Mail.php:340
+#: ../../Zotlabs/Module/Mail.php:332
msgid "Delete message"
msgstr "Slett melding"
-#: ../../Zotlabs/Module/Mail.php:341
+#: ../../Zotlabs/Module/Mail.php:333
msgid "Delivery report"
msgstr "Leveringsrapport"
-#: ../../Zotlabs/Module/Mail.php:342
+#: ../../Zotlabs/Module/Mail.php:334
msgid "Recall message"
msgstr "Tilbakekall innlegg"
-#: ../../Zotlabs/Module/Mail.php:344
+#: ../../Zotlabs/Module/Mail.php:336
msgid "Message has been recalled."
msgstr "Innlegget har blitt tilbakekalt."
-#: ../../Zotlabs/Module/Mail.php:361
+#: ../../Zotlabs/Module/Mail.php:353
msgid "Delete Conversation"
msgstr "Slett samtale"
-#: ../../Zotlabs/Module/Mail.php:363
+#: ../../Zotlabs/Module/Mail.php:355
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."
-#: ../../Zotlabs/Module/Mail.php:367
+#: ../../Zotlabs/Module/Mail.php:359
msgid "Send Reply"
msgstr "Send svar"
-#: ../../Zotlabs/Module/Mail.php:372
+#: ../../Zotlabs/Module/Mail.php:364
#, php-format
msgid "Your message for %s (%s):"
msgstr "Din melding til %s (%s):"
@@ -2351,8 +3085,8 @@ msgstr "Du har laget %1$.0f av %2$.0f tillatte kanaler."
msgid "Create a new channel"
msgstr "Lag en ny kanal"
-#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:213
-#: ../../include/nav.php:206
+#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214
+#: ../../include/nav.php:208
msgid "Channel Manager"
msgstr "Kanalstyring"
@@ -2384,80 +3118,7 @@ msgstr "%d nye introduksjoner"
#: ../../Zotlabs/Module/Manage.php:175
msgid "Delegated Channel"
-msgstr ""
-
-#: ../../Zotlabs/Module/Lostpass.php:19
-msgid "No valid account found."
-msgstr "Ingen gyldig konto funnet."
-
-#: ../../Zotlabs/Module/Lostpass.php:33
-msgid "Password reset request issued. Check your email."
-msgstr "Forespørsel om å tilbakestille passord er mottatt. Sjekk e-posten din."
-
-#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107
-#, php-format
-msgid "Site Member (%s)"
-msgstr "Nettstedsmedlem (%s)"
-
-#: ../../Zotlabs/Module/Lostpass.php:44
-#, php-format
-msgid "Password reset requested at %s"
-msgstr "Forespurt om å tilbakestille passord hos %s"
-
-#: ../../Zotlabs/Module/Lostpass.php:67
-msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
-msgstr "Forespørsel kunne ikke bekreftes. (Du kan ha sendt den inn tidligere.) Tilbakestilling av passord mislyktes."
-
-#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1711
-msgid "Password Reset"
-msgstr "Tilbakestill passord"
-
-#: ../../Zotlabs/Module/Lostpass.php:91
-msgid "Your password has been reset as requested."
-msgstr "Ditt passord har blitt tilbakestilt som forespurt."
-
-#: ../../Zotlabs/Module/Lostpass.php:92
-msgid "Your new password is"
-msgstr "Ditt nye passord er"
-
-#: ../../Zotlabs/Module/Lostpass.php:93
-msgid "Save or copy your new password - and then"
-msgstr "Lagre eller kopier ditt nye passord, og deretter kan du"
-
-#: ../../Zotlabs/Module/Lostpass.php:94
-msgid "click here to login"
-msgstr "klikke her for å logge inn"
-
-#: ../../Zotlabs/Module/Lostpass.php:95
-msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
-msgstr "Ditt passord kan endres på siden <em>Innstillinger</em> etter vellykket innlogging."
-
-#: ../../Zotlabs/Module/Lostpass.php:112
-#, php-format
-msgid "Your password has changed at %s"
-msgstr "Ditt passord er endret hos %s"
-
-#: ../../Zotlabs/Module/Lostpass.php:127
-msgid "Forgot your Password?"
-msgstr "Glemt passord ditt?"
-
-#: ../../Zotlabs/Module/Lostpass.php:128
-msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"your email for further instructions."
-msgstr "Skriv e-postadressen din og send inn for å tilbakestille passordet ditt. Sjekk deretter din e-post for videre instruksjoner."
-
-#: ../../Zotlabs/Module/Lostpass.php:129
-msgid "Email Address"
-msgstr "E-postadresse"
-
-#: ../../Zotlabs/Module/Lostpass.php:130
-msgid "Reset"
-msgstr "Tilbakestill"
+msgstr "Delegert kanal"
#: ../../Zotlabs/Module/Menu.php:49
msgid "Unable to update menu."
@@ -2495,7 +3156,7 @@ msgstr "Menyen kan brukes til å lagre lagrede bokmerker"
msgid "Submit and proceed"
msgstr "Send inn og fortsett"
-#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2266
+#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2239
msgid "Menus"
msgstr "Menyer"
@@ -2556,13 +3217,86 @@ msgstr "Tillat bokmerker"
msgid "Not found."
msgstr "Ikke funnet."
+#: ../../Zotlabs/Module/Lostpass.php:19
+msgid "No valid account found."
+msgstr "Ingen gyldig konto funnet."
+
+#: ../../Zotlabs/Module/Lostpass.php:33
+msgid "Password reset request issued. Check your email."
+msgstr "Forespørsel om å tilbakestille passord er mottatt. Sjekk e-posten din."
+
+#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107
+#, php-format
+msgid "Site Member (%s)"
+msgstr "Nettstedsmedlem (%s)"
+
+#: ../../Zotlabs/Module/Lostpass.php:44
+#, php-format
+msgid "Password reset requested at %s"
+msgstr "Forespurt om å tilbakestille passord hos %s"
+
+#: ../../Zotlabs/Module/Lostpass.php:67
+msgid ""
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
+msgstr "Forespørsel kunne ikke bekreftes. (Du kan ha sendt den inn tidligere.) Tilbakestilling av passord mislyktes."
+
+#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1712
+msgid "Password Reset"
+msgstr "Tilbakestill passord"
+
+#: ../../Zotlabs/Module/Lostpass.php:91
+msgid "Your password has been reset as requested."
+msgstr "Ditt passord har blitt tilbakestilt som forespurt."
+
+#: ../../Zotlabs/Module/Lostpass.php:92
+msgid "Your new password is"
+msgstr "Ditt nye passord er"
+
+#: ../../Zotlabs/Module/Lostpass.php:93
+msgid "Save or copy your new password - and then"
+msgstr "Lagre eller kopier ditt nye passord, og deretter kan du"
+
+#: ../../Zotlabs/Module/Lostpass.php:94
+msgid "click here to login"
+msgstr "klikke her for å logge inn"
+
+#: ../../Zotlabs/Module/Lostpass.php:95
+msgid ""
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
+msgstr "Ditt passord kan endres på siden <em>Innstillinger</em> etter vellykket innlogging."
+
+#: ../../Zotlabs/Module/Lostpass.php:112
+#, php-format
+msgid "Your password has changed at %s"
+msgstr "Ditt passord er endret hos %s"
+
+#: ../../Zotlabs/Module/Lostpass.php:127
+msgid "Forgot your Password?"
+msgstr "Glemt passord ditt?"
+
+#: ../../Zotlabs/Module/Lostpass.php:128
+msgid ""
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
+msgstr "Skriv e-postadressen din og send inn for å tilbakestille passordet ditt. Sjekk deretter din e-post for videre instruksjoner."
+
+#: ../../Zotlabs/Module/Lostpass.php:129
+msgid "Email Address"
+msgstr "E-postadresse"
+
+#: ../../Zotlabs/Module/Lostpass.php:130
+msgid "Reset"
+msgstr "Tilbakestill"
+
#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260
#, php-format
msgctxt "mood"
msgid "%1$s is %2$s"
msgstr "%1$s er %2$s"
-#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:225
+#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227
msgid "Mood"
msgstr "Stemning"
@@ -2570,47 +3304,31 @@ msgstr "Stemning"
msgid "Set your current mood and tell your friends"
msgstr "Angi ditt nåværende humør og fortell dine venner"
-#: ../../Zotlabs/Module/Match.php:26
-msgid "Profile Match"
-msgstr "Profiltreff"
-
-#: ../../Zotlabs/Module/Match.php:35
-msgid "No keywords to match. Please add keywords to your default profile."
-msgstr "Ingen nøkkelord å sammenlikne. Vennligst legg til nøkkelord til din standardprofil."
-
-#: ../../Zotlabs/Module/Match.php:67
-msgid "is interested in:"
-msgstr "er interessert i:"
-
-#: ../../Zotlabs/Module/Match.php:74
-msgid "No matches"
-msgstr "Ingen treff"
-
-#: ../../Zotlabs/Module/Network.php:96
+#: ../../Zotlabs/Module/Network.php:94
msgid "No such group"
msgstr "Gruppen finnes ikke"
-#: ../../Zotlabs/Module/Network.php:136
+#: ../../Zotlabs/Module/Network.php:134
msgid "No such channel"
msgstr "Ingen slik kanal"
-#: ../../Zotlabs/Module/Network.php:141
+#: ../../Zotlabs/Module/Network.php:139
msgid "forum"
msgstr "forum"
-#: ../../Zotlabs/Module/Network.php:153
+#: ../../Zotlabs/Module/Network.php:151
msgid "Search Results For:"
msgstr "Søkeresultat for:"
-#: ../../Zotlabs/Module/Network.php:217
+#: ../../Zotlabs/Module/Network.php:215
msgid "Privacy group is empty"
msgstr "Personverngruppen er tom"
-#: ../../Zotlabs/Module/Network.php:226
+#: ../../Zotlabs/Module/Network.php:224
msgid "Privacy group: "
msgstr "Personverngruppe:"
-#: ../../Zotlabs/Module/Network.php:252
+#: ../../Zotlabs/Module/Network.php:250
msgid "Invalid connection."
msgstr "Ugyldig forbindelse."
@@ -2624,6 +3342,34 @@ msgstr "Ingen flere systemvarsler."
msgid "System Notifications"
msgstr "Systemvarsler"
+#: ../../Zotlabs/Module/Match.php:26
+msgid "Profile Match"
+msgstr "Profiltreff"
+
+#: ../../Zotlabs/Module/Match.php:35
+msgid "No keywords to match. Please add keywords to your default profile."
+msgstr "Ingen nøkkelord å sammenlikne. Vennligst legg til nøkkelord til din standardprofil."
+
+#: ../../Zotlabs/Module/Match.php:67
+msgid "is interested in:"
+msgstr "er interessert i:"
+
+#: ../../Zotlabs/Module/Match.php:74
+msgid "No matches"
+msgstr "Ingen treff"
+
+#: ../../Zotlabs/Module/Channel.php:40
+msgid "Posts and comments"
+msgstr "Innlegg og kommentarer"
+
+#: ../../Zotlabs/Module/Channel.php:41
+msgid "Only posts"
+msgstr "Bare innlegg"
+
+#: ../../Zotlabs/Module/Channel.php:101
+msgid "Insufficient permissions. Request redirected to profile page."
+msgstr "Utilstrekkelig tillatelse. Forespørsel omdirigert til profilsiden."
+
#: ../../Zotlabs/Module/Mitem.php:52
msgid "Unable to create element."
msgstr "Klarer ikke å lage element."
@@ -2641,7 +3387,7 @@ msgid "Menu Item Permissions"
msgstr "Menyelement Tillatelser"
#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227
-#: ../../Zotlabs/Module/Settings.php:1068
+#: ../../Zotlabs/Module/Settings.php:1163
msgid "(click to open/close)"
msgstr "(klikk for å åpne/lukke)"
@@ -2741,845 +3487,6 @@ msgstr "Endre menyelement"
msgid "Link text"
msgstr "Lenketekst"
-#: ../../Zotlabs/Module/New_channel.php:128
-#: ../../Zotlabs/Module/Register.php:231
-msgid "Name or caption"
-msgstr "Navn eller overskrift"
-
-#: ../../Zotlabs/Module/New_channel.php:128
-#: ../../Zotlabs/Module/Register.php:231
-msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""
-msgstr "Eksempel: \"Ola Nordmann\", \"Lisa og hestene hennes\", \"Fotball\", \"Sykkelgruppa\""
-
-#: ../../Zotlabs/Module/New_channel.php:130
-#: ../../Zotlabs/Module/Register.php:233
-msgid "Choose a short nickname"
-msgstr "Velg et kort kallenavn"
-
-#: ../../Zotlabs/Module/New_channel.php:130
-#: ../../Zotlabs/Module/Register.php:233
-#, 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"
-
-#: ../../Zotlabs/Module/New_channel.php:132
-#: ../../Zotlabs/Module/Register.php:235
-msgid "Channel role and privacy"
-msgstr "Kanalrolle og personvern"
-
-#: ../../Zotlabs/Module/New_channel.php:132
-#: ../../Zotlabs/Module/Register.php:235
-msgid "Select a channel role with your privacy requirements."
-msgstr "Velg en kanalrolle for ditt personvernbehov."
-
-#: ../../Zotlabs/Module/New_channel.php:132
-#: ../../Zotlabs/Module/Register.php:235
-msgid "Read more about roles"
-msgstr "Les mer om roller"
-
-#: ../../Zotlabs/Module/New_channel.php:135
-msgid "Create Channel"
-msgstr "Lag kanal"
-
-#: ../../Zotlabs/Module/New_channel.php:136
-msgid ""
-"A channel is your identity on this network. It can represent a person, a "
-"blog, or a forum to name a few. Channels can make connections with other "
-"channels to share information with highly detailed permissions."
-msgstr "En kanal er din identitet i dette nettverket. Den kan representere en person, en blogg eller et forum for å nevne noe. Kanaler kan ha forbindelser til andre kanaler for å dele informasjon, og med svært detaljerte tillatelser."
-
-#: ../../Zotlabs/Module/New_channel.php:137
-msgid ""
-"or <a href=\"import\">import an existing channel</a> from another location."
-msgstr "eller <a href=\"import\">importer en eksisterende kanal</a> fra et annet sted."
-
-#: ../../Zotlabs/Module/Notifications.php:30
-msgid "Invalid request identifier."
-msgstr "Ugyldig forespørselsidentifikator."
-
-#: ../../Zotlabs/Module/Notifications.php:39
-msgid "Discard"
-msgstr "Forkast"
-
-#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:191
-msgid "Mark all system notifications seen"
-msgstr "Merk alle systemvarsler som sett"
-
-#: ../../Zotlabs/Module/Photos.php:84
-msgid "Page owner information could not be retrieved."
-msgstr "Informasjon om sideeier kunne ikke hentes."
-
-#: ../../Zotlabs/Module/Photos.php:99 ../../Zotlabs/Module/Photos.php:743
-#: ../../Zotlabs/Module/Profile_photo.php:114
-#: ../../Zotlabs/Module/Profile_photo.php:206
-#: ../../Zotlabs/Module/Profile_photo.php:294
-#: ../../include/photo/photo_driver.php:718
-msgid "Profile Photos"
-msgstr "Profilbilder"
-
-#: ../../Zotlabs/Module/Photos.php:105 ../../Zotlabs/Module/Photos.php:149
-msgid "Album not found."
-msgstr "Albumet ble ikke funnet."
-
-#: ../../Zotlabs/Module/Photos.php:132
-msgid "Delete Album"
-msgstr "Slett album"
-
-#: ../../Zotlabs/Module/Photos.php:153
-msgid ""
-"Multiple storage folders exist with this album name, but within different "
-"directories. Please remove the desired folder or folders using the Files "
-"manager"
-msgstr ""
-
-#: ../../Zotlabs/Module/Photos.php:210 ../../Zotlabs/Module/Photos.php:1053
-msgid "Delete Photo"
-msgstr "Slett bilde"
-
-#: ../../Zotlabs/Module/Photos.php:533
-msgid "No photos selected"
-msgstr "Ingen bilder valgt"
-
-#: ../../Zotlabs/Module/Photos.php:582
-msgid "Access to this item is restricted."
-msgstr "Tilgang til dette elementet er begrenset."
-
-#: ../../Zotlabs/Module/Photos.php:621
-#, php-format
-msgid "%1$.2f MB of %2$.2f MB photo storage used."
-msgstr "%1$.2f MB av %2$.2f MB lagringsplass til bilder er brukt."
-
-#: ../../Zotlabs/Module/Photos.php:624
-#, php-format
-msgid "%1$.2f MB photo storage used."
-msgstr "%1$.2f MB lagringsplass til bilder er brukt."
-
-#: ../../Zotlabs/Module/Photos.php:660
-msgid "Upload Photos"
-msgstr "Last opp bilder"
-
-#: ../../Zotlabs/Module/Photos.php:664
-msgid "Enter an album name"
-msgstr "Skriv et albumnavn"
-
-#: ../../Zotlabs/Module/Photos.php:665
-msgid "or select an existing album (doubleclick)"
-msgstr "eller velg et eksisterende album (dobbeltklikk)"
-
-#: ../../Zotlabs/Module/Photos.php:666
-msgid "Create a status post for this upload"
-msgstr "Lag et statusinnlegg for denne opplastingen"
-
-#: ../../Zotlabs/Module/Photos.php:667
-msgid "Caption (optional):"
-msgstr "Bildetekst (valgfritt):"
-
-#: ../../Zotlabs/Module/Photos.php:668
-msgid "Description (optional):"
-msgstr "Beskrivelse (valgfritt):"
-
-#: ../../Zotlabs/Module/Photos.php:695
-msgid "Album name could not be decoded"
-msgstr "Albumnavnet kunne ikke dekodes"
-
-#: ../../Zotlabs/Module/Photos.php:743
-msgid "Contact Photos"
-msgstr "Kontaktbilder"
-
-#: ../../Zotlabs/Module/Photos.php:766
-msgid "Show Newest First"
-msgstr "Vis nyeste først"
-
-#: ../../Zotlabs/Module/Photos.php:768
-msgid "Show Oldest First"
-msgstr "Vis eldste først"
-
-#: ../../Zotlabs/Module/Photos.php:792 ../../Zotlabs/Module/Photos.php:1331
-#: ../../include/widgets.php:1499
-msgid "View Photo"
-msgstr "Vis foto"
-
-#: ../../Zotlabs/Module/Photos.php:823 ../../include/widgets.php:1516
-msgid "Edit Album"
-msgstr "Endre album"
-
-#: ../../Zotlabs/Module/Photos.php:870
-msgid "Permission denied. Access to this item may be restricted."
-msgstr "Tillatelse avvist. Tilgang til dette elementet kan være begrenset."
-
-#: ../../Zotlabs/Module/Photos.php:872
-msgid "Photo not available"
-msgstr "Bilde er utilgjengelig"
-
-#: ../../Zotlabs/Module/Photos.php:930
-msgid "Use as profile photo"
-msgstr "Bruk som profilbilde"
-
-#: ../../Zotlabs/Module/Photos.php:931
-msgid "Use as cover photo"
-msgstr ""
-
-#: ../../Zotlabs/Module/Photos.php:938
-msgid "Private Photo"
-msgstr "Privat bilde"
-
-#: ../../Zotlabs/Module/Photos.php:953
-msgid "View Full Size"
-msgstr "Vis i full størrelse"
-
-#: ../../Zotlabs/Module/Photos.php:998 ../../Zotlabs/Module/Admin.php:1437
-#: ../../Zotlabs/Module/Tagrm.php:137
-msgid "Remove"
-msgstr "Fjern"
-
-#: ../../Zotlabs/Module/Photos.php:1032
-msgid "Edit photo"
-msgstr "Endre bilde"
-
-#: ../../Zotlabs/Module/Photos.php:1034
-msgid "Rotate CW (right)"
-msgstr "Roter med klokka (mot høyre)"
-
-#: ../../Zotlabs/Module/Photos.php:1035
-msgid "Rotate CCW (left)"
-msgstr "Roter mot klokka (venstre)"
-
-#: ../../Zotlabs/Module/Photos.php:1038
-msgid "Enter a new album name"
-msgstr "Skriv et nytt albumnavn"
-
-#: ../../Zotlabs/Module/Photos.php:1039
-msgid "or select an existing one (doubleclick)"
-msgstr "eller velg et eksisterende album (dobbeltklikk)"
-
-#: ../../Zotlabs/Module/Photos.php:1042
-msgid "Caption"
-msgstr "Overskrift"
-
-#: ../../Zotlabs/Module/Photos.php:1044
-msgid "Add a Tag"
-msgstr "Legg til merkelapp"
-
-#: ../../Zotlabs/Module/Photos.php:1048
-msgid "Example: @bob, @Barbara_Jensen, @jim@example.com"
-msgstr "Eksempel: @bob, @Barbara_Jensen, @jim@example.com"
-
-#: ../../Zotlabs/Module/Photos.php:1051
-msgid "Flag as adult in album view"
-msgstr "Flag som voksent i albumvisning"
-
-#: ../../Zotlabs/Module/Photos.php:1070 ../../Zotlabs/Lib/ThreadItem.php:261
-msgid "I like this (toggle)"
-msgstr "Jeg liker dette (skru av og på)"
-
-#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:262
-msgid "I don't like this (toggle)"
-msgstr "Jeg liker ikke dette (skru av og på)"
-
-#: ../../Zotlabs/Module/Photos.php:1073 ../../Zotlabs/Lib/ThreadItem.php:397
-#: ../../include/conversation.php:740
-msgid "Please wait"
-msgstr "Vennligst vent"
-
-#: ../../Zotlabs/Module/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207
-#: ../../Zotlabs/Lib/ThreadItem.php:707
-msgid "This is you"
-msgstr "Dette er deg"
-
-#: ../../Zotlabs/Module/Photos.php:1091 ../../Zotlabs/Module/Photos.php:1209
-#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6
-msgid "Comment"
-msgstr "Kommentar"
-
-#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574
-msgctxt "title"
-msgid "Likes"
-msgstr "Liker"
-
-#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574
-msgctxt "title"
-msgid "Dislikes"
-msgstr "Liker ikke"
-
-#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575
-msgctxt "title"
-msgid "Agree"
-msgstr "Enig"
-
-#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575
-msgctxt "title"
-msgid "Disagree"
-msgstr "Uenig"
-
-#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575
-msgctxt "title"
-msgid "Abstain"
-msgstr "Avstår"
-
-#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576
-msgctxt "title"
-msgid "Attending"
-msgstr "Deltar"
-
-#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576
-msgctxt "title"
-msgid "Not attending"
-msgstr "Deltar ikke"
-
-#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576
-msgctxt "title"
-msgid "Might attend"
-msgstr "Deltar kanskje"
-
-#: ../../Zotlabs/Module/Photos.php:1126 ../../Zotlabs/Module/Photos.php:1138
-#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193
-#: ../../include/conversation.php:1717
-msgid "View all"
-msgstr "Vis alle"
-
-#: ../../Zotlabs/Module/Photos.php:1130 ../../Zotlabs/Lib/ThreadItem.php:185
-#: ../../include/taxonomy.php:403 ../../include/conversation.php:1741
-#: ../../include/channel.php:1158
-msgctxt "noun"
-msgid "Like"
-msgid_plural "Likes"
-msgstr[0] "Liker"
-msgstr[1] "Liker"
-
-#: ../../Zotlabs/Module/Photos.php:1135 ../../Zotlabs/Lib/ThreadItem.php:190
-#: ../../include/conversation.php:1744
-msgctxt "noun"
-msgid "Dislike"
-msgid_plural "Dislikes"
-msgstr[0] "Liker ikke"
-msgstr[1] "Liker ikke"
-
-#: ../../Zotlabs/Module/Photos.php:1235
-msgid "Photo Tools"
-msgstr ""
-
-#: ../../Zotlabs/Module/Photos.php:1244
-msgid "In This Photo:"
-msgstr "I dette bildet:"
-
-#: ../../Zotlabs/Module/Photos.php:1249
-msgid "Map"
-msgstr "Kart"
-
-#: ../../Zotlabs/Module/Photos.php:1257 ../../Zotlabs/Lib/ThreadItem.php:386
-msgctxt "noun"
-msgid "Likes"
-msgstr "Liker"
-
-#: ../../Zotlabs/Module/Photos.php:1258 ../../Zotlabs/Lib/ThreadItem.php:387
-msgctxt "noun"
-msgid "Dislikes"
-msgstr "Liker ikke"
-
-#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:392
-#: ../../include/acl_selectors.php:285
-msgid "Close"
-msgstr "Lukk"
-
-#: ../../Zotlabs/Module/Photos.php:1337
-msgid "View Album"
-msgstr "Vis album"
-
-#: ../../Zotlabs/Module/Photos.php:1348 ../../Zotlabs/Module/Photos.php:1361
-#: ../../Zotlabs/Module/Photos.php:1362
-msgid "Recent Photos"
-msgstr "Nye bilder"
-
-#: ../../Zotlabs/Module/Ping.php:265
-msgid "sent you a private message"
-msgstr "sendte deg en privat melding"
-
-#: ../../Zotlabs/Module/Ping.php:313
-msgid "added your channel"
-msgstr "la til din kanal"
-
-#: ../../Zotlabs/Module/Ping.php:323
-msgid "g A l F d"
-msgstr "g A l F d"
-
-#: ../../Zotlabs/Module/Ping.php:346
-msgid "[today]"
-msgstr "[idag]"
-
-#: ../../Zotlabs/Module/Ping.php:355
-msgid "posted an event"
-msgstr "la ut en hendelse"
-
-#: ../../Zotlabs/Module/Oexchange.php:27
-msgid "Unable to find your hub."
-msgstr "Ikke i stand til å finne hubben din."
-
-#: ../../Zotlabs/Module/Oexchange.php:41
-msgid "Post successful."
-msgstr "Innlegg vellykket."
-
-#: ../../Zotlabs/Module/Openid.php:30
-msgid "OpenID protocol error. No ID returned."
-msgstr "OpenID protokollfeil. Ingen ID ble returnert."
-
-#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:226
-msgid "Login failed."
-msgstr "Innlogging mislyktes."
-
-#: ../../Zotlabs/Module/Page.php:133
-msgid ""
-"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod "
-"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,"
-" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo "
-"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse "
-"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat "
-"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
-msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
-
-#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59
-msgid "This setting requires special processing and editing has been blocked."
-msgstr "Denne innstillingen krever spesiell behandling og redigering har blitt blokkert."
-
-#: ../../Zotlabs/Module/Pconfig.php:48
-msgid "Configuration Editor"
-msgstr "Konfigurasjonsbehandler"
-
-#: ../../Zotlabs/Module/Pconfig.php:49
-msgid ""
-"Warning: Changing some settings could render your channel inoperable. Please"
-" leave this page unless you are comfortable with and knowledgeable about how"
-" to correctly use this feature."
-msgstr "Advarsel: kanalen din kan slutte å virke ved endring av enkelte innstillinger. Vennligst forlat denne siden med mindre du er komfortabel med dette og vet hvordan du bruker denne funksjonen riktig."
-
-#: ../../Zotlabs/Module/Pdledit.php:18
-msgid "Layout updated."
-msgstr "Layout er oppdatert."
-
-#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61
-msgid "Edit System Page Description"
-msgstr "Endre beskrivelsen av systemsiden"
-
-#: ../../Zotlabs/Module/Pdledit.php:56
-msgid "Layout not found."
-msgstr "Layouten ble ikke funnet."
-
-#: ../../Zotlabs/Module/Pdledit.php:62
-msgid "Module Name:"
-msgstr "Modulnavn:"
-
-#: ../../Zotlabs/Module/Pdledit.php:63
-msgid "Layout Help"
-msgstr "Layout-hjelp"
-
-#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:226
-#: ../../include/conversation.php:960
-msgid "Poke"
-msgstr "Prikk"
-
-#: ../../Zotlabs/Module/Poke.php:169
-msgid "Poke somebody"
-msgstr "Dult noen"
-
-#: ../../Zotlabs/Module/Poke.php:172
-msgid "Poke/Prod"
-msgstr "Prikke/oppildne"
-
-#: ../../Zotlabs/Module/Poke.php:173
-msgid "Poke, prod or do other things to somebody"
-msgstr "Dult, prikk eller gjør andre ting med noen"
-
-#: ../../Zotlabs/Module/Poke.php:180
-msgid "Recipient"
-msgstr "Mottaker"
-
-#: ../../Zotlabs/Module/Poke.php:181
-msgid "Choose what you wish to do to recipient"
-msgstr "Velg hva du ønsker å gjøre med mottakeren"
-
-#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185
-msgid "Make this post private"
-msgstr "Gjør dette innlegget privat"
-
-#: ../../Zotlabs/Module/Probe.php:30 ../../Zotlabs/Module/Probe.php:34
-#, php-format
-msgid "Fetching URL returns error: %1$s"
-msgstr "Henting av URL gir følgende feil: %1$s"
-
-#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189
-#: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625
-msgid "Profile not found."
-msgstr "Profilen ble ikke funnet."
-
-#: ../../Zotlabs/Module/Profiles.php:44
-msgid "Profile deleted."
-msgstr "Profilen er slettet."
-
-#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104
-msgid "Profile-"
-msgstr "Profil-"
-
-#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132
-msgid "New profile created."
-msgstr "Ny profil opprettet."
-
-#: ../../Zotlabs/Module/Profiles.php:110
-msgid "Profile unavailable to clone."
-msgstr "Profilen er utilgjengelig for klonen."
-
-#: ../../Zotlabs/Module/Profiles.php:151
-msgid "Profile unavailable to export."
-msgstr "Profilen er utilgjengelig for eksport."
-
-#: ../../Zotlabs/Module/Profiles.php:256
-msgid "Profile Name is required."
-msgstr "Profilnavn er påkrevd."
-
-#: ../../Zotlabs/Module/Profiles.php:427
-msgid "Marital Status"
-msgstr "Sivilstand"
-
-#: ../../Zotlabs/Module/Profiles.php:431
-msgid "Romantic Partner"
-msgstr "Romantisk partner"
-
-#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736
-msgid "Likes"
-msgstr "Liker"
-
-#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737
-msgid "Dislikes"
-msgstr "Liker ikke"
-
-#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744
-msgid "Work/Employment"
-msgstr "Arbeid/sysselsetting"
-
-#: ../../Zotlabs/Module/Profiles.php:446
-msgid "Religion"
-msgstr "Religion"
-
-#: ../../Zotlabs/Module/Profiles.php:450
-msgid "Political Views"
-msgstr "Politiske synspunkter"
-
-#: ../../Zotlabs/Module/Profiles.php:458
-msgid "Sexual Preference"
-msgstr "Seksuelle preferanser"
-
-#: ../../Zotlabs/Module/Profiles.php:462
-msgid "Homepage"
-msgstr "Hjemmeside"
-
-#: ../../Zotlabs/Module/Profiles.php:466
-msgid "Interests"
-msgstr "Interesser"
-
-#: ../../Zotlabs/Module/Profiles.php:560
-msgid "Profile updated."
-msgstr "Profilen er oppdatert."
-
-#: ../../Zotlabs/Module/Profiles.php:644
-msgid "Hide your connections list from viewers of this profile"
-msgstr ""
-
-#: ../../Zotlabs/Module/Profiles.php:686
-msgid "Edit Profile Details"
-msgstr "Endre profildetaljer"
-
-#: ../../Zotlabs/Module/Profiles.php:688
-msgid "View this profile"
-msgstr "Vis denne profilen"
-
-#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771
-#: ../../include/channel.php:959
-msgid "Edit visibility"
-msgstr "Endre synlighet"
-
-#: ../../Zotlabs/Module/Profiles.php:690
-msgid "Profile Tools"
-msgstr ""
-
-#: ../../Zotlabs/Module/Profiles.php:691
-msgid "Change cover photo"
-msgstr ""
-
-#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:930
-msgid "Change profile photo"
-msgstr "Endre profilbilde"
-
-#: ../../Zotlabs/Module/Profiles.php:693
-msgid "Create a new profile using these settings"
-msgstr "Lag en ny profil ved å bruke disse innstillingene"
-
-#: ../../Zotlabs/Module/Profiles.php:694
-msgid "Clone this profile"
-msgstr "Klon denne profilen"
-
-#: ../../Zotlabs/Module/Profiles.php:695
-msgid "Delete this profile"
-msgstr "Slett denne profilen"
-
-#: ../../Zotlabs/Module/Profiles.php:696
-msgid "Add profile things"
-msgstr "Legg til profilting"
-
-#: ../../Zotlabs/Module/Profiles.php:697 ../../include/widgets.php:105
-#: ../../include/conversation.php:1526
-msgid "Personal"
-msgstr "Personlig"
-
-#: ../../Zotlabs/Module/Profiles.php:699
-msgid "Relation"
-msgstr ""
-
-#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48
-msgid "Miscellaneous"
-msgstr "Forskjellig"
-
-#: ../../Zotlabs/Module/Profiles.php:702
-msgid "Import profile from file"
-msgstr "Importer profil fra fil"
-
-#: ../../Zotlabs/Module/Profiles.php:703
-msgid "Export profile to file"
-msgstr "Eksporter profil til fil"
-
-#: ../../Zotlabs/Module/Profiles.php:704
-msgid "Your gender"
-msgstr ""
-
-#: ../../Zotlabs/Module/Profiles.php:705
-msgid "Marital status"
-msgstr ""
-
-#: ../../Zotlabs/Module/Profiles.php:706
-msgid "Sexual preference"
-msgstr ""
-
-#: ../../Zotlabs/Module/Profiles.php:709
-msgid "Profile name"
-msgstr ""
-
-#: ../../Zotlabs/Module/Profiles.php:711
-msgid "This is your default profile."
-msgstr "Dette er din standardprofil."
-
-#: ../../Zotlabs/Module/Profiles.php:713
-msgid "Your full name"
-msgstr ""
-
-#: ../../Zotlabs/Module/Profiles.php:714
-msgid "Title/Description"
-msgstr ""
-
-#: ../../Zotlabs/Module/Profiles.php:717
-msgid "Street address"
-msgstr ""
-
-#: ../../Zotlabs/Module/Profiles.php:718
-msgid "Locality/City"
-msgstr ""
-
-#: ../../Zotlabs/Module/Profiles.php:719
-msgid "Region/State"
-msgstr ""
-
-#: ../../Zotlabs/Module/Profiles.php:720
-msgid "Postal/Zip code"
-msgstr ""
-
-#: ../../Zotlabs/Module/Profiles.php:721
-msgid "Country"
-msgstr ""
-
-#: ../../Zotlabs/Module/Profiles.php:726
-msgid "Who (if applicable)"
-msgstr ""
-
-#: ../../Zotlabs/Module/Profiles.php:726
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
-msgstr "Eksempler: kari123, Kari Villiamsen, kari@example.com"
-
-#: ../../Zotlabs/Module/Profiles.php:727
-msgid "Since (date)"
-msgstr ""
-
-#: ../../Zotlabs/Module/Profiles.php:730
-msgid "Tell us about yourself"
-msgstr ""
-
-#: ../../Zotlabs/Module/Profiles.php:732
-msgid "Hometown"
-msgstr ""
-
-#: ../../Zotlabs/Module/Profiles.php:733
-msgid "Political views"
-msgstr ""
-
-#: ../../Zotlabs/Module/Profiles.php:734
-msgid "Religious views"
-msgstr ""
-
-#: ../../Zotlabs/Module/Profiles.php:735
-msgid "Keywords used in directory listings"
-msgstr ""
-
-#: ../../Zotlabs/Module/Profiles.php:735
-msgid "Example: fishing photography software"
-msgstr "Eksempel: fisking fotografering programvare"
-
-#: ../../Zotlabs/Module/Profiles.php:738
-msgid "Musical interests"
-msgstr "Musikkinteresser"
-
-#: ../../Zotlabs/Module/Profiles.php:739
-msgid "Books, literature"
-msgstr "Bøker, litteratur"
-
-#: ../../Zotlabs/Module/Profiles.php:740
-msgid "Television"
-msgstr "TV/fjernsyn"
-
-#: ../../Zotlabs/Module/Profiles.php:741
-msgid "Film/Dance/Culture/Entertainment"
-msgstr ""
-
-#: ../../Zotlabs/Module/Profiles.php:742
-msgid "Hobbies/Interests"
-msgstr "Hobbier/Interesser"
-
-#: ../../Zotlabs/Module/Profiles.php:743
-msgid "Love/Romance"
-msgstr ""
-
-#: ../../Zotlabs/Module/Profiles.php:745
-msgid "School/Education"
-msgstr ""
-
-#: ../../Zotlabs/Module/Profiles.php:746
-msgid "Contact information and social networks"
-msgstr ""
-
-#: ../../Zotlabs/Module/Profiles.php:747
-msgid "My other channels"
-msgstr "Mine andre kanaler"
-
-#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:955
-msgid "Profile Image"
-msgstr "Profilbilde"
-
-#: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:88
-#: ../../include/channel.php:937
-msgid "Edit Profiles"
-msgstr "Endre profiler"
-
-#: ../../Zotlabs/Module/Profile_photo.php:179
-msgid ""
-"Shift-reload the page or clear browser cache if the new photo does not "
-"display immediately."
-msgstr "Hold nede Shift-knappen og last siden på nytt eller tøm nettleserens mellomlager hvis det nye bildet ikke vises umiddelbart."
-
-#: ../../Zotlabs/Module/Profile_photo.php:367
-msgid "Upload Profile Photo"
-msgstr "Last opp profilbilde:"
-
-#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63
-msgid "Invalid profile identifier."
-msgstr "Ugyldig profil-identifikator."
-
-#: ../../Zotlabs/Module/Profperm.php:115
-msgid "Profile Visibility Editor"
-msgstr "Endre profilsynlighet"
-
-#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1249
-msgid "Profile"
-msgstr "Profil"
-
-#: ../../Zotlabs/Module/Profperm.php:119
-msgid "Click on a contact to add or remove."
-msgstr "Klikk på en kontakt for å legge til eller fjerne."
-
-#: ../../Zotlabs/Module/Profperm.php:128
-msgid "Visible To"
-msgstr "Synlig for"
-
-#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1270
-msgid "Public Hubs"
-msgstr "Offentlige huber"
-
-#: ../../Zotlabs/Module/Pubsites.php:25
-msgid ""
-"The listed hubs allow public registration for the $Projectname network. All "
-"hubs in the network are interlinked so membership on any of them conveys "
-"membership in the network as a whole. Some hubs may require subscription or "
-"provide tiered service plans. The hub itself <strong>may</strong> provide "
-"additional details."
-msgstr "Nettstedene på listen tillater offentlig registrering i $Projectname-nettverket. Alle nettsteder i nettverket er forbundet så medlemskap på enhver av dem formidler medlemskap i nettverket som helhet. Noen nettsteder kan kreve abonnement eller tilby lagdelte tjenesteavtaler. Nettstedene selv <strong>kan</strong> gi tilleggsopplysninger."
-
-#: ../../Zotlabs/Module/Pubsites.php:31
-msgid "Hub URL"
-msgstr "Nettstedets URL"
-
-#: ../../Zotlabs/Module/Pubsites.php:31
-msgid "Access Type"
-msgstr "Tilgangstype"
-
-#: ../../Zotlabs/Module/Pubsites.php:31
-msgid "Registration Policy"
-msgstr "Retningslinjer for registrering"
-
-#: ../../Zotlabs/Module/Pubsites.php:31
-msgid "Stats"
-msgstr ""
-
-#: ../../Zotlabs/Module/Pubsites.php:31
-msgid "Software"
-msgstr ""
-
-#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103
-#: ../../include/conversation.php:959
-msgid "Ratings"
-msgstr "Vurderinger"
-
-#: ../../Zotlabs/Module/Pubsites.php:38
-msgid "Rate"
-msgstr "Vurder"
-
-#: ../../Zotlabs/Module/Rate.php:160
-msgid "Website:"
-msgstr "Nettsted:"
-
-#: ../../Zotlabs/Module/Rate.php:163
-#, php-format
-msgid "Remote Channel [%s] (not yet known on this site)"
-msgstr "Fjerntliggende kanal [%s] (foreløpig ikke kjent på dette nettstedet)"
-
-#: ../../Zotlabs/Module/Rate.php:164
-msgid "Rating (this information is public)"
-msgstr "Vurdering (denne informasjonen er offentlig)"
-
-#: ../../Zotlabs/Module/Rate.php:165
-msgid "Optionally explain your rating (this information is public)"
-msgstr "Velg om du vil forklare din vurdering (denne informasjonen er offentlig)"
-
-#: ../../Zotlabs/Module/Ratings.php:73
-msgid "No ratings"
-msgstr "Ingen vurderinger"
-
-#: ../../Zotlabs/Module/Ratings.php:104
-msgid "Rating: "
-msgstr "Vurdering:"
-
-#: ../../Zotlabs/Module/Ratings.php:105
-msgid "Website: "
-msgstr "Nettsted:"
-
-#: ../../Zotlabs/Module/Ratings.php:107
-msgid "Description: "
-msgstr "Beskrivelse:"
-
#: ../../Zotlabs/Module/Admin.php:77
msgid "Theme settings updated."
msgstr "Temainnstillinger er oppdatert."
@@ -3618,7 +3525,7 @@ msgstr "Meldingskøer"
#: ../../Zotlabs/Module/Admin.php:236
msgid "Your software should be updated"
-msgstr ""
+msgstr "Programvaren din bør oppdateres"
#: ../../Zotlabs/Module/Admin.php:241 ../../Zotlabs/Module/Admin.php:490
#: ../../Zotlabs/Module/Admin.php:711 ../../Zotlabs/Module/Admin.php:755
@@ -3655,21 +3562,21 @@ msgstr "Versjon"
#: ../../Zotlabs/Module/Admin.php:250
msgid "Repository version (master)"
-msgstr ""
+msgstr "Depotversjon (master)"
#: ../../Zotlabs/Module/Admin.php:251
msgid "Repository version (dev)"
-msgstr ""
+msgstr "Depotversjon (dev)"
#: ../../Zotlabs/Module/Admin.php:373
msgid "Site settings updated."
msgstr "Nettstedsinnstillinger er oppdatert."
-#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2841
+#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2829
msgid "Default"
msgstr "Standard"
-#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:798
+#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:899
msgid "mobile"
msgstr "mobil"
@@ -3701,7 +3608,7 @@ msgstr "Mitt nettsted har kun gratis tilgang"
msgid "My site offers free accounts with optional paid upgrades"
msgstr "Mitt nettsted tilbyr gratis konto med valgfri oppgradering til betalt tjeneste"
-#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1382
+#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1476
msgid "Site"
msgstr "Nettsted"
@@ -3897,7 +3804,7 @@ msgstr "Importer og gi tilgang til offentlig innhold trukket inn fra andre netts
#: ../../Zotlabs/Module/Admin.php:522
msgid "Login on Homepage"
-msgstr ""
+msgstr "Logg inn på hjemmesiden"
#: ../../Zotlabs/Module/Admin.php:522
msgid ""
@@ -3907,13 +3814,13 @@ msgstr "Presenter en innloggingsboks til besøkende på hjemmesiden hvis ikke no
#: ../../Zotlabs/Module/Admin.php:523
msgid "Enable context help"
-msgstr ""
+msgstr "Skru på kontekstsensitiv hjelp"
#: ../../Zotlabs/Module/Admin.php:523
msgid ""
"Display contextual help for the current page when the help button is "
"pressed."
-msgstr ""
+msgstr "Vis hjelp for den gjeldende siden når Hjelp-knappen trykkes."
#: ../../Zotlabs/Module/Admin.php:525
msgid "Directory Server URL"
@@ -3989,12 +3896,12 @@ msgid "0 for no expiration of imported content"
msgstr "0 dersom importert innhold ikke skal utgå"
#: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678
-#: ../../Zotlabs/Module/Settings.php:722
+#: ../../Zotlabs/Module/Settings.php:823
msgid "Off"
msgstr "Av"
#: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678
-#: ../../Zotlabs/Module/Settings.php:722
+#: ../../Zotlabs/Module/Settings.php:823
msgid "On"
msgstr "På"
@@ -4031,27 +3938,27 @@ msgstr "Tjener"
msgid ""
"By default, unfiltered HTML is allowed in embedded media. This is inherently"
" insecure."
-msgstr ""
+msgstr "Standardinnstillingen er at ufiltrert HTML er tillat ved innebygging av media. Dette er grunnleggende usikkert."
#: ../../Zotlabs/Module/Admin.php:749
msgid ""
"The recommended setting is to only allow unfiltered HTML from the following "
"sites:"
-msgstr ""
+msgstr "Anbefalt innstilling er å bare tillate ufiltrert HTML fra følgende nettsteder:"
#: ../../Zotlabs/Module/Admin.php:750
msgid ""
"https://youtube.com/<br />https://www.youtube.com/<br />https://youtu.be/<br"
" />https://vimeo.com/<br />https://soundcloud.com/<br />"
-msgstr ""
+msgstr "https://youtube.com/<br />https://www.youtube.com/<br />https://youtu.be/<br />https://vimeo.com/<br />https://soundcloud.com/<br />"
#: ../../Zotlabs/Module/Admin.php:751
msgid ""
"All other embedded content will be filtered, <strong>unless</strong> "
"embedded content from that site is explicitly blocked."
-msgstr ""
+msgstr "Alt annet innebygget innhold vil bli filtrert, <strong>med mindre</strong> innebygget innhold fra det nettstedet er eksplisitt blokkert."
-#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1385
+#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1479
msgid "Security"
msgstr "Sikkerhet"
@@ -4067,11 +3974,11 @@ msgstr "Kryss av for å blokkere tilgang til alle personlige sider som ellers vi
#: ../../Zotlabs/Module/Admin.php:759
msgid "Set \"Transport Security\" HTTP header"
-msgstr ""
+msgstr "Sett HTTP header \"Transport Security\""
#: ../../Zotlabs/Module/Admin.php:760
msgid "Set \"Content Security Policy\" HTTP header"
-msgstr ""
+msgstr "Sett HTTP header \"Content Security Policy\""
#: ../../Zotlabs/Module/Admin.php:761
msgid "Allow communications only from these sites"
@@ -4103,15 +4010,15 @@ msgstr "Blokker kommunikasjon fra disse kanalene"
#: ../../Zotlabs/Module/Admin.php:765
msgid "Only allow embeds from secure (SSL) websites and links."
-msgstr ""
+msgstr "Bare tillat innebygging fra sikrede (SSL) nettsteder og lenker."
#: ../../Zotlabs/Module/Admin.php:766
msgid "Allow unfiltered embedded HTML content only from these domains"
-msgstr ""
+msgstr "Tillat ufiltrert innebygging av HTML-innhold bare fra disse domenene"
#: ../../Zotlabs/Module/Admin.php:766
msgid "One site per line. By default embedded content is filtered."
-msgstr ""
+msgstr "Et nettsted per linje. Det er standard at innebygget innhold er filtrert."
#: ../../Zotlabs/Module/Admin.php:767
msgid "Block embedded HTML from these domains"
@@ -4219,7 +4126,7 @@ msgid "Account '%s' unblocked"
msgstr "Kontoen '%s' er ikke blokkert lenger"
#: ../../Zotlabs/Module/Admin.php:1031 ../../Zotlabs/Module/Admin.php:1044
-#: ../../include/widgets.php:1383
+#: ../../include/widgets.php:1477
msgid "Accounts"
msgstr "Kontoer"
@@ -4229,7 +4136,7 @@ msgstr "velg alle"
#: ../../Zotlabs/Module/Admin.php:1034
msgid "Registrations waiting for confirm"
-msgstr ""
+msgstr "Registreringer venter på bekreftelse"
#: ../../Zotlabs/Module/Admin.php:1035
msgid "Request date"
@@ -4325,7 +4232,7 @@ msgstr "Kanal '%s' kode tillatt"
msgid "Channel '%s' code disallowed"
msgstr "Kanal '%s' kode ikke tillatt"
-#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1384
+#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1478
msgid "Channels"
msgstr "Kanaler"
@@ -4345,7 +4252,7 @@ msgstr "Tillat kode"
msgid "Disallow Code"
msgstr "Ikke tillat kode"
-#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1611
+#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1626
msgid "Channel"
msgstr "Kanal"
@@ -4384,7 +4291,7 @@ msgid "Enable"
msgstr "Skru på"
#: ../../Zotlabs/Module/Admin.php:1330 ../../Zotlabs/Module/Admin.php:1420
-#: ../../include/widgets.php:1387
+#: ../../include/widgets.php:1481
msgid "Plugins"
msgstr "Tilleggsfunksjoner"
@@ -4393,8 +4300,8 @@ msgid "Toggle"
msgstr "Skru av og på"
#: ../../Zotlabs/Module/Admin.php:1332 ../../Zotlabs/Module/Admin.php:1615
-#: ../../Zotlabs/Lib/Apps.php:215 ../../include/widgets.php:638
-#: ../../include/nav.php:208
+#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:210
+#: ../../include/widgets.php:647
msgid "Settings"
msgstr "Innstillinger"
@@ -4428,52 +4335,52 @@ msgstr "Skrudd av - versjonsinkompatibilitet"
#: ../../Zotlabs/Module/Admin.php:1394
msgid "Enter the public git repository URL of the plugin repo."
-msgstr ""
+msgstr "Skriv inn URL-en til det offentlige git-depoet til tillegget."
#: ../../Zotlabs/Module/Admin.php:1395
msgid "Plugin repo git URL"
-msgstr ""
+msgstr "Git-URL-en til tillegget"
#: ../../Zotlabs/Module/Admin.php:1396
msgid "Custom repo name"
-msgstr ""
+msgstr "Tilpasset depotnavn"
#: ../../Zotlabs/Module/Admin.php:1396
msgid "(optional)"
-msgstr ""
+msgstr "(valgfritt)"
#: ../../Zotlabs/Module/Admin.php:1397
msgid "Download Plugin Repo"
-msgstr ""
+msgstr "Last ned depotet til tillegget"
#: ../../Zotlabs/Module/Admin.php:1404
msgid "Install new repo"
-msgstr ""
+msgstr "Installer nytt depot"
-#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:330
+#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:334
msgid "Install"
msgstr "Installer"
#: ../../Zotlabs/Module/Admin.php:1427
msgid "Manage Repos"
-msgstr ""
+msgstr "Håndter depoter"
#: ../../Zotlabs/Module/Admin.php:1428
msgid "Installed Plugin Repositories"
-msgstr ""
+msgstr "Installerede tilleggsdepoter"
#: ../../Zotlabs/Module/Admin.php:1429
msgid "Install a New Plugin Repository"
-msgstr ""
+msgstr "Installer et nytt tillleggsdepot"
-#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:77
-#: ../../Zotlabs/Module/Settings.php:616 ../../Zotlabs/Lib/Apps.php:330
+#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:72
+#: ../../Zotlabs/Module/Settings.php:670 ../../Zotlabs/Lib/Apps.php:334
msgid "Update"
msgstr "Oppdater"
#: ../../Zotlabs/Module/Admin.php:1436
msgid "Switch branch"
-msgstr ""
+msgstr "Bytt gren"
#: ../../Zotlabs/Module/Admin.php:1550
msgid "No themes found."
@@ -4484,7 +4391,7 @@ msgid "Screenshot"
msgstr "Skjermbilde"
#: ../../Zotlabs/Module/Admin.php:1613 ../../Zotlabs/Module/Admin.php:1647
-#: ../../include/widgets.php:1388
+#: ../../include/widgets.php:1482
msgid "Themes"
msgstr "Temaer"
@@ -4500,8 +4407,8 @@ msgstr "[Ingen støtte]"
msgid "Log settings updated."
msgstr "Logginnstillinger er oppdatert."
-#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1409
-#: ../../include/widgets.php:1419
+#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1503
+#: ../../include/widgets.php:1513
msgid "Logs"
msgstr "Logger"
@@ -4521,7 +4428,7 @@ msgstr "Loggfil"
msgid ""
"Must be writable by web server. Relative to your top-level webserver "
"directory."
-msgstr ""
+msgstr "Må kunne skrives til av webtjenesten. Relativ til din toppnivåkatalog på webtjeneren."
#: ../../Zotlabs/Module/Admin.php:1742
msgid "Log level"
@@ -4567,85 +4474,412 @@ msgstr "Feltdefinisjonen ble ikke funnet"
msgid "Edit Profile Field"
msgstr "Endre profilfelt"
-#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1390
+#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1484
msgid "Profile Fields"
-msgstr ""
+msgstr "Profilfelter"
#: ../../Zotlabs/Module/Admin.php:2107
msgid "Basic Profile Fields"
-msgstr ""
+msgstr "Grunnleggende profilfelter"
#: ../../Zotlabs/Module/Admin.php:2108
msgid "Advanced Profile Fields"
-msgstr ""
+msgstr "Avanserte profilfelter"
#: ../../Zotlabs/Module/Admin.php:2108
msgid "(In addition to basic fields)"
-msgstr ""
+msgstr "(i tillegg til grunnleggende felter)"
#: ../../Zotlabs/Module/Admin.php:2110
msgid "All available fields"
-msgstr ""
+msgstr "Alle tilgjengelige felter"
#: ../../Zotlabs/Module/Admin.php:2111
msgid "Custom Fields"
-msgstr ""
+msgstr "Tilpassede felter"
#: ../../Zotlabs/Module/Admin.php:2115
msgid "Create Custom Field"
-msgstr ""
+msgstr "Lag tilpasset felt"
-#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53
-msgid "App installed."
-msgstr "App installert."
+#: ../../Zotlabs/Module/New_channel.php:128
+#: ../../Zotlabs/Module/Register.php:231
+msgid "Name or caption"
+msgstr "Navn eller overskrift"
-#: ../../Zotlabs/Module/Appman.php:46
-msgid "Malformed app."
-msgstr "Feil oppsett for app-en."
+#: ../../Zotlabs/Module/New_channel.php:128
+#: ../../Zotlabs/Module/Register.php:231
+msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""
+msgstr "Eksempel: \"Ola Nordmann\", \"Lisa og hestene hennes\", \"Fotball\", \"Sykkelgruppa\""
-#: ../../Zotlabs/Module/Appman.php:104
-msgid "Embed code"
-msgstr "Innbyggingskode"
+#: ../../Zotlabs/Module/New_channel.php:130
+#: ../../Zotlabs/Module/Register.php:233
+msgid "Choose a short nickname"
+msgstr "Velg et kort kallenavn"
-#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107
-msgid "Edit App"
-msgstr "Endre app"
+#: ../../Zotlabs/Module/New_channel.php:130
+#: ../../Zotlabs/Module/Register.php:233
+#, 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"
-#: ../../Zotlabs/Module/Appman.php:110
-msgid "Create App"
-msgstr "Lag app"
+#: ../../Zotlabs/Module/New_channel.php:132
+#: ../../Zotlabs/Module/Register.php:235
+msgid "Channel role and privacy"
+msgstr "Kanalrolle og personvern"
-#: ../../Zotlabs/Module/Appman.php:115
-msgid "Name of app"
-msgstr "Navn på app"
+#: ../../Zotlabs/Module/New_channel.php:132
+#: ../../Zotlabs/Module/Register.php:235
+msgid "Select a channel role with your privacy requirements."
+msgstr "Velg en kanalrolle for ditt personvernbehov."
-#: ../../Zotlabs/Module/Appman.php:116
-msgid "Location (URL) of app"
-msgstr "Plassering (URL) til app"
+#: ../../Zotlabs/Module/New_channel.php:132
+#: ../../Zotlabs/Module/Register.php:235
+msgid "Read more about roles"
+msgstr "Les mer om roller"
-#: ../../Zotlabs/Module/Appman.php:118
-msgid "Photo icon URL"
-msgstr "Bildeikon URL"
+#: ../../Zotlabs/Module/New_channel.php:135
+msgid "Create Channel"
+msgstr "Lag kanal"
-#: ../../Zotlabs/Module/Appman.php:118
-msgid "80 x 80 pixels - optional"
-msgstr "80 x80 pixler - valgfritt"
+#: ../../Zotlabs/Module/New_channel.php:136
+msgid ""
+"A channel is your identity on this network. It can represent a person, a "
+"blog, or a forum to name a few. Channels can make connections with other "
+"channels to share information with highly detailed permissions."
+msgstr "En kanal er din identitet i dette nettverket. Den kan representere en person, en blogg eller et forum for å nevne noe. Kanaler kan ha forbindelser til andre kanaler for å dele informasjon, og med svært detaljerte tillatelser."
-#: ../../Zotlabs/Module/Appman.php:119
-msgid "Categories (optional, comma separated list)"
-msgstr ""
+#: ../../Zotlabs/Module/New_channel.php:137
+msgid ""
+"or <a href=\"import\">import an existing channel</a> from another location."
+msgstr "eller <a href=\"import\">importer en eksisterende kanal</a> fra et annet sted."
-#: ../../Zotlabs/Module/Appman.php:120
-msgid "Version ID"
-msgstr "Versjons-ID"
+#: ../../Zotlabs/Module/Ping.php:265
+msgid "sent you a private message"
+msgstr "sendte deg en privat melding"
-#: ../../Zotlabs/Module/Appman.php:121
-msgid "Price of app"
-msgstr "Pris på app"
+#: ../../Zotlabs/Module/Ping.php:313
+msgid "added your channel"
+msgstr "la til din kanal"
-#: ../../Zotlabs/Module/Appman.php:122
-msgid "Location (URL) to purchase app"
-msgstr "Plassering (URL) for å kjøpe app"
+#: ../../Zotlabs/Module/Ping.php:323
+msgid "g A l F d"
+msgstr "g A l F d"
+
+#: ../../Zotlabs/Module/Ping.php:346
+msgid "[today]"
+msgstr "[idag]"
+
+#: ../../Zotlabs/Module/Ping.php:355
+msgid "posted an event"
+msgstr "la ut en hendelse"
+
+#: ../../Zotlabs/Module/Notifications.php:30
+msgid "Invalid request identifier."
+msgstr "Ugyldig forespørselsidentifikator."
+
+#: ../../Zotlabs/Module/Notifications.php:39
+msgid "Discard"
+msgstr "Forkast"
+
+#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:193
+msgid "Mark all system notifications seen"
+msgstr "Merk alle systemvarsler som sett"
+
+#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228
+#: ../../include/conversation.php:963
+msgid "Poke"
+msgstr "Prikk"
+
+#: ../../Zotlabs/Module/Poke.php:169
+msgid "Poke somebody"
+msgstr "Dult noen"
+
+#: ../../Zotlabs/Module/Poke.php:172
+msgid "Poke/Prod"
+msgstr "Prikke/oppildne"
+
+#: ../../Zotlabs/Module/Poke.php:173
+msgid "Poke, prod or do other things to somebody"
+msgstr "Dult, prikk eller gjør andre ting med noen"
+
+#: ../../Zotlabs/Module/Poke.php:180
+msgid "Recipient"
+msgstr "Mottaker"
+
+#: ../../Zotlabs/Module/Poke.php:181
+msgid "Choose what you wish to do to recipient"
+msgstr "Velg hva du ønsker å gjøre med mottakeren"
+
+#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185
+msgid "Make this post private"
+msgstr "Gjør dette innlegget privat"
+
+#: ../../Zotlabs/Module/Oexchange.php:27
+msgid "Unable to find your hub."
+msgstr "Ikke i stand til å finne hubben din."
+
+#: ../../Zotlabs/Module/Oexchange.php:41
+msgid "Post successful."
+msgstr "Innlegg vellykket."
+
+#: ../../Zotlabs/Module/Openid.php:30
+msgid "OpenID protocol error. No ID returned."
+msgstr "OpenID protokollfeil. Ingen ID ble returnert."
+
+#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:285
+msgid "Login failed."
+msgstr "Innlogging mislyktes."
+
+#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63
+msgid "Invalid profile identifier."
+msgstr "Ugyldig profil-identifikator."
+
+#: ../../Zotlabs/Module/Profperm.php:115
+msgid "Profile Visibility Editor"
+msgstr "Endre profilsynlighet"
+
+#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1290
+msgid "Profile"
+msgstr "Profil"
+
+#: ../../Zotlabs/Module/Profperm.php:119
+msgid "Click on a contact to add or remove."
+msgstr "Klikk på en kontakt for å legge til eller fjerne."
+
+#: ../../Zotlabs/Module/Profperm.php:128
+msgid "Visible To"
+msgstr "Synlig for"
+
+#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59
+msgid "This setting requires special processing and editing has been blocked."
+msgstr "Denne innstillingen krever spesiell behandling og redigering har blitt blokkert."
+
+#: ../../Zotlabs/Module/Pconfig.php:48
+msgid "Configuration Editor"
+msgstr "Konfigurasjonsbehandler"
+
+#: ../../Zotlabs/Module/Pconfig.php:49
+msgid ""
+"Warning: Changing some settings could render your channel inoperable. Please"
+" leave this page unless you are comfortable with and knowledgeable about how"
+" to correctly use this feature."
+msgstr "Advarsel: kanalen din kan slutte å virke ved endring av enkelte innstillinger. Vennligst forlat denne siden med mindre du er komfortabel med dette og vet hvordan du bruker denne funksjonen riktig."
+
+#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32
+#, php-format
+msgid "Fetching URL returns error: %1$s"
+msgstr "Henting av URL gir følgende feil: %1$s"
+
+#: ../../Zotlabs/Module/Siteinfo.php:19
+#, php-format
+msgid "Version %s"
+msgstr "Versjon %s"
+
+#: ../../Zotlabs/Module/Siteinfo.php:34
+msgid "Installed plugins/addons/apps:"
+msgstr "Installerte tilleggsfunksjoner/tillegg/apper:"
+
+#: ../../Zotlabs/Module/Siteinfo.php:36
+msgid "No installed plugins/addons/apps"
+msgstr "Ingen installerte tilleggsfunksjoner/tillegg/apper"
+
+#: ../../Zotlabs/Module/Siteinfo.php:49
+msgid ""
+"This is a hub of $Projectname - a global cooperative network of "
+"decentralized privacy enhanced websites."
+msgstr "Dette er en $Projectname-hub - et globalt samhandlende nettverk av desentraliserte nettsteder med innbygget personvern."
+
+#: ../../Zotlabs/Module/Siteinfo.php:51
+msgid "Tag: "
+msgstr "Merkelapp:"
+
+#: ../../Zotlabs/Module/Siteinfo.php:53
+msgid "Last background fetch: "
+msgstr "Siste innhenting i bakgrunnen:"
+
+#: ../../Zotlabs/Module/Siteinfo.php:55
+msgid "Current load average: "
+msgstr "Gjeldende belastningsgjennomsnitt:"
+
+#: ../../Zotlabs/Module/Siteinfo.php:58
+msgid "Running at web location"
+msgstr "Kjører på webplasseringen"
+
+#: ../../Zotlabs/Module/Siteinfo.php:59
+msgid ""
+"Please visit <a href=\"http://hubzilla.org\">hubzilla.org</a> to learn more "
+"about $Projectname."
+msgstr "Vennligst besøk <a href=\"http://hubzilla.org\">hubzilla.org</a> for å lære mer om $Projectname."
+
+#: ../../Zotlabs/Module/Siteinfo.php:60
+msgid "Bug reports and issues: please visit"
+msgstr "Feilmeldinger og feilretting: vennligst besøk"
+
+#: ../../Zotlabs/Module/Siteinfo.php:62
+msgid "$projectname issues"
+msgstr "$projectname problemer"
+
+#: ../../Zotlabs/Module/Siteinfo.php:63
+msgid ""
+"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot "
+"com"
+msgstr "Forslag, ros og så videre - vennligst e-post \"redmatrix\" hos librelist - punktum com"
+
+#: ../../Zotlabs/Module/Siteinfo.php:65
+msgid "Site Administrators"
+msgstr "Nettstedsadministratorer"
+
+#: ../../Zotlabs/Module/Rmagic.php:44
+msgid ""
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
+msgstr "Vi støtte på et problem under innloggingen med din OpenID. Vennligst sjekk at ID-en er stavet riktig."
+
+#: ../../Zotlabs/Module/Rmagic.php:44
+msgid "The error message was:"
+msgstr "Feilmeldingen var:"
+
+#: ../../Zotlabs/Module/Rmagic.php:48
+msgid "Authentication failed."
+msgstr "Autentisering mislyktes."
+
+#: ../../Zotlabs/Module/Rmagic.php:88
+msgid "Remote Authentication"
+msgstr "Fjernautentisering"
+
+#: ../../Zotlabs/Module/Rmagic.php:89
+msgid "Enter your channel address (e.g. channel@example.com)"
+msgstr "Skriv din kanaladresse (for eksempel channel@exampel.com)"
+
+#: ../../Zotlabs/Module/Rmagic.php:90
+msgid "Authenticate"
+msgstr "Autentiser"
+
+#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1337
+msgid "Public Hubs"
+msgstr "Offentlige huber"
+
+#: ../../Zotlabs/Module/Pubsites.php:25
+msgid ""
+"The listed hubs allow public registration for the $Projectname network. All "
+"hubs in the network are interlinked so membership on any of them conveys "
+"membership in the network as a whole. Some hubs may require subscription or "
+"provide tiered service plans. The hub itself <strong>may</strong> provide "
+"additional details."
+msgstr "Nettstedene på listen tillater offentlig registrering i $Projectname-nettverket. Alle nettsteder i nettverket er forbundet så medlemskap på enhver av dem formidler medlemskap i nettverket som helhet. Noen nettsteder kan kreve abonnement eller tilby lagdelte tjenesteavtaler. Nettstedene selv <strong>kan</strong> gi tilleggsopplysninger."
+
+#: ../../Zotlabs/Module/Pubsites.php:31
+msgid "Hub URL"
+msgstr "Nettstedets URL"
+
+#: ../../Zotlabs/Module/Pubsites.php:31
+msgid "Access Type"
+msgstr "Tilgangstype"
+
+#: ../../Zotlabs/Module/Pubsites.php:31
+msgid "Registration Policy"
+msgstr "Retningslinjer for registrering"
+
+#: ../../Zotlabs/Module/Pubsites.php:31
+msgid "Stats"
+msgstr "Statistikk"
+
+#: ../../Zotlabs/Module/Pubsites.php:31
+msgid "Software"
+msgstr "Programvare"
+
+#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103
+#: ../../include/conversation.php:962
+msgid "Ratings"
+msgstr "Vurderinger"
+
+#: ../../Zotlabs/Module/Pubsites.php:38
+msgid "Rate"
+msgstr "Vurder"
+
+#: ../../Zotlabs/Module/Profile_photo.php:186
+msgid ""
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
+msgstr "Hold nede Shift-knappen og last siden på nytt eller tøm nettleserens mellomlager hvis det nye bildet ikke vises umiddelbart."
+
+#: ../../Zotlabs/Module/Profile_photo.php:389
+msgid "Upload Profile Photo"
+msgstr "Last opp profilbilde:"
+
+#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:155
+#: ../../Zotlabs/Module/Editblock.php:108
+msgid "Block Name"
+msgstr "Byggeklossens navn"
+
+#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2238
+msgid "Blocks"
+msgstr "Byggeklosser"
+
+#: ../../Zotlabs/Module/Blocks.php:156
+msgid "Block Title"
+msgstr "Byggeklossens tittel"
+
+#: ../../Zotlabs/Module/Rate.php:160
+msgid "Website:"
+msgstr "Nettsted:"
+
+#: ../../Zotlabs/Module/Rate.php:163
+#, php-format
+msgid "Remote Channel [%s] (not yet known on this site)"
+msgstr "Fjerntliggende kanal [%s] (foreløpig ikke kjent på dette nettstedet)"
+
+#: ../../Zotlabs/Module/Rate.php:164
+msgid "Rating (this information is public)"
+msgstr "Vurdering (denne informasjonen er offentlig)"
+
+#: ../../Zotlabs/Module/Rate.php:165
+msgid "Optionally explain your rating (this information is public)"
+msgstr "Velg om du vil forklare din vurdering (denne informasjonen er offentlig)"
+
+#: ../../Zotlabs/Module/Ratings.php:73
+msgid "No ratings"
+msgstr "Ingen vurderinger"
+
+#: ../../Zotlabs/Module/Ratings.php:104
+msgid "Rating: "
+msgstr "Vurdering:"
+
+#: ../../Zotlabs/Module/Ratings.php:105
+msgid "Website: "
+msgstr "Nettsted:"
+
+#: ../../Zotlabs/Module/Ratings.php:107
+msgid "Description: "
+msgstr "Beskrivelse:"
+
+#: ../../Zotlabs/Module/Apps.php:47 ../../include/nav.php:165
+#: ../../include/widgets.php:102
+msgid "Apps"
+msgstr "Apper"
+
+#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1243
+msgid "Title (optional)"
+msgstr "Tittel (valgfri)"
+
+#: ../../Zotlabs/Module/Editblock.php:133
+msgid "Edit Block"
+msgstr "Endre byggekloss"
+
+#: ../../Zotlabs/Module/Common.php:14
+msgid "No channel."
+msgstr "Ingen kanal."
+
+#: ../../Zotlabs/Module/Common.php:43
+msgid "Common connections"
+msgstr "Felles forbindelser"
+
+#: ../../Zotlabs/Module/Common.php:48
+msgid "No connections in common."
+msgstr "Ingen forbindelser felles."
#: ../../Zotlabs/Module/Rbmark.php:94
msgid "Select a bookmark folder"
@@ -4750,120 +4984,154 @@ msgstr "ja"
msgid "Membership on this site is by invitation only."
msgstr "Medlemskap ved dette nettstedet skjer kun via invitasjon."
-#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:147
-#: ../../boot.php:1685
+#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:149
+#: ../../boot.php:1686
msgid "Register"
msgstr "Registrer"
-#: ../../Zotlabs/Module/Register.php:262
-msgid "Proceed to create your first channel"
-msgstr "Gå videre for å lage din første kanal"
+#: ../../Zotlabs/Module/Register.php:263
+msgid ""
+"This site may require email verification after submitting this form. If you "
+"are returned to a login page, please check your email for instructions."
+msgstr ""
#: ../../Zotlabs/Module/Regmod.php:15
msgid "Please login."
msgstr "Vennligst logg inn."
-#: ../../Zotlabs/Module/Removeaccount.php:34
+#: ../../Zotlabs/Module/Removeaccount.php:35
msgid ""
"Account removals are not allowed within 48 hours of changing the account "
"password."
msgstr "Sletting av kontoer er ikke tillatt innen 48 timer etter endring av kontopassordet."
-#: ../../Zotlabs/Module/Removeaccount.php:56
+#: ../../Zotlabs/Module/Removeaccount.php:57
msgid "Remove This Account"
msgstr "Slett denne kontoen"
-#: ../../Zotlabs/Module/Removeaccount.php:57
-#: ../../Zotlabs/Module/Removeme.php:59
+#: ../../Zotlabs/Module/Removeaccount.php:58
+#: ../../Zotlabs/Module/Removeme.php:61
msgid "WARNING: "
msgstr "ADVARSEL:"
-#: ../../Zotlabs/Module/Removeaccount.php:57
+#: ../../Zotlabs/Module/Removeaccount.php:58
msgid ""
"This account and all its channels will be completely removed from the "
"network. "
msgstr "Denne kontoen og alle dens kanaler vil bli fullstendig fjernet fra nettverket."
-#: ../../Zotlabs/Module/Removeaccount.php:57
-#: ../../Zotlabs/Module/Removeme.php:59
+#: ../../Zotlabs/Module/Removeaccount.php:58
+#: ../../Zotlabs/Module/Removeme.php:61
msgid "This action is permanent and can not be undone!"
msgstr "Denne handlingen er permanent og kan ikke angres!"
-#: ../../Zotlabs/Module/Removeaccount.php:58
-#: ../../Zotlabs/Module/Removeme.php:60
+#: ../../Zotlabs/Module/Removeaccount.php:59
+#: ../../Zotlabs/Module/Removeme.php:62
msgid "Please enter your password for verification:"
msgstr "Vennligst skriv ditt passord for å få bekreftelse:"
-#: ../../Zotlabs/Module/Removeaccount.php:59
+#: ../../Zotlabs/Module/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"
-#: ../../Zotlabs/Module/Removeaccount.php:59
+#: ../../Zotlabs/Module/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"
-#: ../../Zotlabs/Module/Removeaccount.php:60
-#: ../../Zotlabs/Module/Settings.php:705
+#: ../../Zotlabs/Module/Removeaccount.php:61
+#: ../../Zotlabs/Module/Settings.php:759
msgid "Remove Account"
msgstr "Slett konto"
-#: ../../Zotlabs/Module/Removeme.php:33
+#: ../../Zotlabs/Module/Removeme.php:35
msgid ""
"Channel removals are not allowed within 48 hours of changing the account "
"password."
msgstr "Fjerning av kanaler er ikke tillatt innen 48 timer etter endring av kontopassordet."
-#: ../../Zotlabs/Module/Removeme.php:58
+#: ../../Zotlabs/Module/Removeme.php:60
msgid "Remove This Channel"
msgstr "Fjern denne kanalen"
-#: ../../Zotlabs/Module/Removeme.php:59
+#: ../../Zotlabs/Module/Removeme.php:61
msgid "This channel will be completely removed from the network. "
msgstr "Denne kanalen vil bli fullstendig fjernet fra nettverket."
-#: ../../Zotlabs/Module/Removeme.php:61
+#: ../../Zotlabs/Module/Removeme.php:63
msgid "Remove this channel and all its clones from the network"
msgstr "Fjern denne kanalen og alle dens kloner fra nettverket"
-#: ../../Zotlabs/Module/Removeme.php:61
+#: ../../Zotlabs/Module/Removeme.php:63
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"
-#: ../../Zotlabs/Module/Removeme.php:62 ../../Zotlabs/Module/Settings.php:1124
+#: ../../Zotlabs/Module/Removeme.php:64 ../../Zotlabs/Module/Settings.php:1219
msgid "Remove Channel"
msgstr "Fjern kanal"
-#: ../../Zotlabs/Module/Rmagic.php:44
+#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56
+msgid "Export Channel"
+msgstr "Eksporter kanal"
+
+#: ../../Zotlabs/Module/Uexport.php:57
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."
+"Export your basic channel information to a file. This acts as a backup of "
+"your connections, permissions, profile and basic data, which can be used to "
+"import your data to a new server hub, but does not contain your content."
+msgstr "Eksporter grunnleggende informasjon om kanalen din til en fil. Denne er en sikkerhetskopi av dine forbindelser, tillatelser, profil og grunnleggende data, som kan brukes til å importere dine data til en ny hub, men den tar ikke med innholdet."
-#: ../../Zotlabs/Module/Rmagic.php:44
-msgid "The error message was:"
-msgstr "Feilmeldingen var:"
+#: ../../Zotlabs/Module/Uexport.php:58
+msgid "Export Content"
+msgstr "Eksporter innhold"
-#: ../../Zotlabs/Module/Rmagic.php:48
-msgid "Authentication failed."
-msgstr "Autentisering mislyktes."
+#: ../../Zotlabs/Module/Uexport.php:59
+msgid ""
+"Export your channel information and recent content to a JSON backup that can"
+" be restored or imported to another server hub. This backs up all of your "
+"connections, permissions, profile data and several months of posts. This "
+"file may be VERY large. Please be patient - it may take several minutes for"
+" this download to begin."
+msgstr "Eksporter din kanalinformasjon og det nyeste innholdet til en JSON-sikkerhetskopi, som kan gjenopprettes eller importeres til en annen hub. Denne lager en sikkerhetskopi av alle dine forbindelser, tillatelser, profildata og flere måneder av innholdet ditt. Denne filen kan være SVÆRT stor. Vennligst vær tålmodig - det kan ta flere minutter før denne nedlastningen begynner."
-#: ../../Zotlabs/Module/Rmagic.php:88
-msgid "Remote Authentication"
-msgstr "Fjernautentisering"
+#: ../../Zotlabs/Module/Uexport.php:60
+msgid "Export your posts from a given year."
+msgstr "Eksporter dine innlegg fra et bestemt år"
-#: ../../Zotlabs/Module/Rmagic.php:89
-msgid "Enter your channel address (e.g. channel@example.com)"
-msgstr "Skriv din kanaladresse (for eksempel channel@exampel.com)"
+#: ../../Zotlabs/Module/Uexport.php:62
+msgid ""
+"You may also export your posts and conversations for a particular year or "
+"month. Adjust the date in your browser location bar to select other dates. "
+"If the export fails (possibly due to memory exhaustion on your server hub), "
+"please try again selecting a more limited date range."
+msgstr "Du kan også eksportere dine innlegg og samtaler for et bestemt år eller måned. Juster datoen i din nettlesers adresselinje for å velge andre datoer. Hvis eksporten feiler (muligens på grunn av utilstrekkelig minne på din hub), vennligst prøv igjen med et mer begrenset datoområde."
-#: ../../Zotlabs/Module/Rmagic.php:90
-msgid "Authenticate"
-msgstr "Autentiser"
+#: ../../Zotlabs/Module/Uexport.php:63
+#, 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>"
+
+#: ../../Zotlabs/Module/Uexport.php:64
+#, 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>"
+
+#: ../../Zotlabs/Module/Uexport.php:65
+#, 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)."
#: ../../Zotlabs/Module/Search.php:216
#, php-format
@@ -4879,609 +5147,652 @@ msgstr "Søkeresultater for: %s"
msgid "No service class restrictions found."
msgstr "Ingen restriksjoner er funnet i tjenesteklasse."
-#: ../../Zotlabs/Module/Settings.php:69
+#: ../../Zotlabs/Module/Settings.php:64
msgid "Name is required"
msgstr "Navn er påkrevd"
-#: ../../Zotlabs/Module/Settings.php:73
+#: ../../Zotlabs/Module/Settings.php:68
msgid "Key and Secret are required"
msgstr "Nøkkel og hemmelighet er påkrevd"
-#: ../../Zotlabs/Module/Settings.php:225
+#: ../../Zotlabs/Module/Settings.php:138
+#, php-format
+msgid "This channel is limited to %d tokens"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings.php:144
+msgid "Name and Password are required."
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings.php:168
+msgid "Token saved."
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings.php:274
msgid "Not valid email."
msgstr "Ikke gyldig e-post."
-#: ../../Zotlabs/Module/Settings.php:228
+#: ../../Zotlabs/Module/Settings.php:277
msgid "Protected email address. Cannot change to that email."
msgstr "Beskyttet e-postadresse. Kan ikke endre til den e-postadressen."
-#: ../../Zotlabs/Module/Settings.php:237
+#: ../../Zotlabs/Module/Settings.php:286
msgid "System failure storing new email. Please try again."
msgstr "Systemfeil ved lagring av ny e-post. Vennligst prøv igjen."
-#: ../../Zotlabs/Module/Settings.php:254
+#: ../../Zotlabs/Module/Settings.php:303
msgid "Password verification failed."
msgstr "Passordbekreftelsen mislyktes."
-#: ../../Zotlabs/Module/Settings.php:261
+#: ../../Zotlabs/Module/Settings.php:310
msgid "Passwords do not match. Password unchanged."
msgstr "Passordene stemmer ikke overens. Passord uforandret."
-#: ../../Zotlabs/Module/Settings.php:265
+#: ../../Zotlabs/Module/Settings.php:314
msgid "Empty passwords are not allowed. Password unchanged."
msgstr "Tomme passord er ikke tillatt. Passord uforandret."
-#: ../../Zotlabs/Module/Settings.php:279
+#: ../../Zotlabs/Module/Settings.php:328
msgid "Password changed."
msgstr "Passord endret."
-#: ../../Zotlabs/Module/Settings.php:281
+#: ../../Zotlabs/Module/Settings.php:330
msgid "Password update failed. Please try again."
msgstr "Passord oppdatering mislyktes. Vennligst prøv igjen."
-#: ../../Zotlabs/Module/Settings.php:525
+#: ../../Zotlabs/Module/Settings.php:579
msgid "Settings updated."
msgstr "Innstillinger oppdatert."
-#: ../../Zotlabs/Module/Settings.php:589 ../../Zotlabs/Module/Settings.php:615
-#: ../../Zotlabs/Module/Settings.php:651
+#: ../../Zotlabs/Module/Settings.php:643 ../../Zotlabs/Module/Settings.php:669
+#: ../../Zotlabs/Module/Settings.php:705
msgid "Add application"
msgstr "Legg til program"
-#: ../../Zotlabs/Module/Settings.php:592
+#: ../../Zotlabs/Module/Settings.php:646
msgid "Name of application"
msgstr "Navn på program"
-#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:619
+#: ../../Zotlabs/Module/Settings.php:647 ../../Zotlabs/Module/Settings.php:673
msgid "Consumer Key"
msgstr "Consumer Key"
-#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:594
+#: ../../Zotlabs/Module/Settings.php:647 ../../Zotlabs/Module/Settings.php:648
msgid "Automatically generated - change if desired. Max length 20"
msgstr "Automatisk laget - kan endres om du vil. Største lengde 20"
-#: ../../Zotlabs/Module/Settings.php:594 ../../Zotlabs/Module/Settings.php:620
+#: ../../Zotlabs/Module/Settings.php:648 ../../Zotlabs/Module/Settings.php:674
msgid "Consumer Secret"
msgstr "Consumer Secret"
-#: ../../Zotlabs/Module/Settings.php:595 ../../Zotlabs/Module/Settings.php:621
+#: ../../Zotlabs/Module/Settings.php:649 ../../Zotlabs/Module/Settings.php:675
msgid "Redirect"
msgstr "Omdirigering"
-#: ../../Zotlabs/Module/Settings.php:595
+#: ../../Zotlabs/Module/Settings.php:649
msgid ""
"Redirect URI - leave blank unless your application specifically requires "
"this"
msgstr "Omdirigerings-URI - la stå tomt hvis ikke ditt program spesifikt krever dette"
-#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Settings.php:622
+#: ../../Zotlabs/Module/Settings.php:650 ../../Zotlabs/Module/Settings.php:676
msgid "Icon url"
msgstr "Ikon-URL"
-#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Sources.php:112
+#: ../../Zotlabs/Module/Settings.php:650 ../../Zotlabs/Module/Sources.php:112
#: ../../Zotlabs/Module/Sources.php:147
msgid "Optional"
msgstr "Valgfritt"
-#: ../../Zotlabs/Module/Settings.php:607
+#: ../../Zotlabs/Module/Settings.php:661
msgid "Application not found."
msgstr "Programmet ble ikke funnet."
-#: ../../Zotlabs/Module/Settings.php:650
+#: ../../Zotlabs/Module/Settings.php:704
msgid "Connected Apps"
msgstr "Tilkoblede app-er"
-#: ../../Zotlabs/Module/Settings.php:654
+#: ../../Zotlabs/Module/Settings.php:708
msgid "Client key starts with"
msgstr "Klientnøkkel starter med"
-#: ../../Zotlabs/Module/Settings.php:655
+#: ../../Zotlabs/Module/Settings.php:709
msgid "No name"
msgstr "Ikke noe navn"
-#: ../../Zotlabs/Module/Settings.php:656
+#: ../../Zotlabs/Module/Settings.php:710
msgid "Remove authorization"
msgstr "Fjern tillatelse"
-#: ../../Zotlabs/Module/Settings.php:669
+#: ../../Zotlabs/Module/Settings.php:723
msgid "No feature settings configured"
msgstr "Ingen funksjonsinnstillinger er konfigurert"
-#: ../../Zotlabs/Module/Settings.php:676
+#: ../../Zotlabs/Module/Settings.php:730
msgid "Feature/Addon Settings"
msgstr "Funksjons-/Tilleggsinnstillinger"
-#: ../../Zotlabs/Module/Settings.php:699
+#: ../../Zotlabs/Module/Settings.php:753
msgid "Account Settings"
msgstr "Kontoinnstillinger"
-#: ../../Zotlabs/Module/Settings.php:700
+#: ../../Zotlabs/Module/Settings.php:754
msgid "Current Password"
msgstr "Nåværende passord"
-#: ../../Zotlabs/Module/Settings.php:701
+#: ../../Zotlabs/Module/Settings.php:755
msgid "Enter New Password"
msgstr "Skriv nytt passord"
-#: ../../Zotlabs/Module/Settings.php:702
+#: ../../Zotlabs/Module/Settings.php:756
msgid "Confirm New Password"
msgstr "Bekreft nytt passord"
-#: ../../Zotlabs/Module/Settings.php:702
+#: ../../Zotlabs/Module/Settings.php:756
msgid "Leave password fields blank unless changing"
msgstr "La passordfeltene stå blanke om det ikke skal endres"
-#: ../../Zotlabs/Module/Settings.php:704
-#: ../../Zotlabs/Module/Settings.php:1041
+#: ../../Zotlabs/Module/Settings.php:758
+#: ../../Zotlabs/Module/Settings.php:1136
msgid "Email Address:"
msgstr "E-postadresse:"
-#: ../../Zotlabs/Module/Settings.php:706
+#: ../../Zotlabs/Module/Settings.php:760
msgid "Remove this account including all its channels"
msgstr "Slett denne kontoen inkludert alle dens kanaler"
-#: ../../Zotlabs/Module/Settings.php:729
+#: ../../Zotlabs/Module/Settings.php:789
+msgid ""
+"Use this form to create temporary access identifiers to share things with "
+"non-members. These identities may be used in Access Control Lists and "
+"visitors may login using these credentials to access the private content."
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings.php:791
+msgid ""
+"You may also provide <em>dropbox</em> style access links to friends and "
+"associates by adding the Login Password to any specific site URL as shown. "
+"Examples:"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings.php:796 ../../include/widgets.php:614
+msgid "Guest Access Tokens"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings.php:803
+msgid "Login Name"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings.php:804
+msgid "Login Password"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings.php:805
+msgid "Expires (yyyy-mm-dd)"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings.php:830
msgid "Additional Features"
msgstr "Ekstra funksjoner"
-#: ../../Zotlabs/Module/Settings.php:753
+#: ../../Zotlabs/Module/Settings.php:854
msgid "Connector Settings"
msgstr "Koblingsinnstillinger"
-#: ../../Zotlabs/Module/Settings.php:792
+#: ../../Zotlabs/Module/Settings.php:893
msgid "No special theme for mobile devices"
msgstr "Ikke noe spesielt tema for mobile enheter"
-#: ../../Zotlabs/Module/Settings.php:795
+#: ../../Zotlabs/Module/Settings.php:896
#, php-format
msgid "%s - (Experimental)"
msgstr "%s - (Eksperimentelt)"
-#: ../../Zotlabs/Module/Settings.php:837
+#: ../../Zotlabs/Module/Settings.php:938
msgid "Display Settings"
msgstr "Visningsinnstillinger"
-#: ../../Zotlabs/Module/Settings.php:838
+#: ../../Zotlabs/Module/Settings.php:939
msgid "Theme Settings"
msgstr "Temainnstillinger"
-#: ../../Zotlabs/Module/Settings.php:839
+#: ../../Zotlabs/Module/Settings.php:940
msgid "Custom Theme Settings"
msgstr "Tilpassede temainnstillinger"
-#: ../../Zotlabs/Module/Settings.php:840
+#: ../../Zotlabs/Module/Settings.php:941
msgid "Content Settings"
msgstr "Innholdsinnstillinger"
-#: ../../Zotlabs/Module/Settings.php:846
+#: ../../Zotlabs/Module/Settings.php:947
msgid "Display Theme:"
msgstr "Visningstema:"
-#: ../../Zotlabs/Module/Settings.php:847
+#: ../../Zotlabs/Module/Settings.php:948
msgid "Mobile Theme:"
msgstr "Mobiltema:"
-#: ../../Zotlabs/Module/Settings.php:848
+#: ../../Zotlabs/Module/Settings.php:949
msgid "Preload images before rendering the page"
msgstr "Last inn bildene før gjengivelsen av siden"
-#: ../../Zotlabs/Module/Settings.php:848
+#: ../../Zotlabs/Module/Settings.php:949
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"
-#: ../../Zotlabs/Module/Settings.php:849
+#: ../../Zotlabs/Module/Settings.php:950
msgid "Enable user zoom on mobile devices"
msgstr "Skru på brukerstyrt zoom på mobile enheter"
-#: ../../Zotlabs/Module/Settings.php:850
+#: ../../Zotlabs/Module/Settings.php:951
msgid "Update browser every xx seconds"
msgstr "Oppdater nettleser hvert xx sekunder"
-#: ../../Zotlabs/Module/Settings.php:850
+#: ../../Zotlabs/Module/Settings.php:951
msgid "Minimum of 10 seconds, no maximum"
msgstr "Minimum 10 sekunder, ikke noe maksimum"
-#: ../../Zotlabs/Module/Settings.php:851
+#: ../../Zotlabs/Module/Settings.php:952
msgid "Maximum number of conversations to load at any time:"
msgstr "Maksimalt antall samtaler å laste samtidig:"
-#: ../../Zotlabs/Module/Settings.php:851
+#: ../../Zotlabs/Module/Settings.php:952
msgid "Maximum of 100 items"
msgstr "Maksimum 100 elementer"
-#: ../../Zotlabs/Module/Settings.php:852
+#: ../../Zotlabs/Module/Settings.php:953
msgid "Show emoticons (smilies) as images"
msgstr "Vis emoticons (smilefjes) som bilder"
-#: ../../Zotlabs/Module/Settings.php:853
+#: ../../Zotlabs/Module/Settings.php:954
msgid "Link post titles to source"
msgstr "Lenk innleggets tittel til kilden"
-#: ../../Zotlabs/Module/Settings.php:854
+#: ../../Zotlabs/Module/Settings.php:955
msgid "System Page Layout Editor - (advanced)"
msgstr "Systemsidens layoutbehandler - (avansert)"
-#: ../../Zotlabs/Module/Settings.php:857
+#: ../../Zotlabs/Module/Settings.php:958
msgid "Use blog/list mode on channel page"
msgstr "Bruk blogg-/listemodus på kanalsiden"
-#: ../../Zotlabs/Module/Settings.php:857 ../../Zotlabs/Module/Settings.php:858
+#: ../../Zotlabs/Module/Settings.php:958 ../../Zotlabs/Module/Settings.php:959
msgid "(comments displayed separately)"
msgstr "(kommentarer vist separat)"
-#: ../../Zotlabs/Module/Settings.php:858
+#: ../../Zotlabs/Module/Settings.php:959
msgid "Use blog/list mode on grid page"
msgstr "Bruk blogg-/liste-modus på nettverkssiden"
-#: ../../Zotlabs/Module/Settings.php:859
+#: ../../Zotlabs/Module/Settings.php:960
msgid "Channel page max height of content (in pixels)"
msgstr "Kanalsidens makshøyde for innhold (i pixler)"
-#: ../../Zotlabs/Module/Settings.php:859 ../../Zotlabs/Module/Settings.php:860
+#: ../../Zotlabs/Module/Settings.php:960 ../../Zotlabs/Module/Settings.php:961
msgid "click to expand content exceeding this height"
msgstr "klikk for å utvide innhold som overstiger denne høyden"
-#: ../../Zotlabs/Module/Settings.php:860
+#: ../../Zotlabs/Module/Settings.php:961
msgid "Grid page max height of content (in pixels)"
msgstr "Nettverkssidens makshøyde for innhold (i piksler)"
-#: ../../Zotlabs/Module/Settings.php:894
+#: ../../Zotlabs/Module/Settings.php:990
msgid "Nobody except yourself"
msgstr "Ingen unntatt deg selv"
-#: ../../Zotlabs/Module/Settings.php:895
+#: ../../Zotlabs/Module/Settings.php:991
msgid "Only those you specifically allow"
msgstr "Bare de du spesifikt tillater"
-#: ../../Zotlabs/Module/Settings.php:896
+#: ../../Zotlabs/Module/Settings.php:992
msgid "Approved connections"
msgstr "Godkjente forbindelser"
-#: ../../Zotlabs/Module/Settings.php:897
+#: ../../Zotlabs/Module/Settings.php:993
msgid "Any connections"
msgstr "Enhver forbindelse"
-#: ../../Zotlabs/Module/Settings.php:898
+#: ../../Zotlabs/Module/Settings.php:994
msgid "Anybody on this website"
msgstr "Enhver ved dette nettstedet"
-#: ../../Zotlabs/Module/Settings.php:899
+#: ../../Zotlabs/Module/Settings.php:995
msgid "Anybody in this network"
msgstr "Enhver i dette nettverket"
-#: ../../Zotlabs/Module/Settings.php:900
+#: ../../Zotlabs/Module/Settings.php:996
msgid "Anybody authenticated"
msgstr "Enhver som er autentisert"
-#: ../../Zotlabs/Module/Settings.php:901
+#: ../../Zotlabs/Module/Settings.php:997
msgid "Anybody on the internet"
msgstr "Enhver på Internett"
-#: ../../Zotlabs/Module/Settings.php:976
+#: ../../Zotlabs/Module/Settings.php:1071
msgid "Publish your default profile in the network directory"
msgstr "Publiser din standardprofil i nettverkskatalogen"
-#: ../../Zotlabs/Module/Settings.php:981
+#: ../../Zotlabs/Module/Settings.php:1076
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?"
-#: ../../Zotlabs/Module/Settings.php:990
+#: ../../Zotlabs/Module/Settings.php:1085
msgid "Your channel address is"
msgstr "Din kanaladresse er"
-#: ../../Zotlabs/Module/Settings.php:1032
+#: ../../Zotlabs/Module/Settings.php:1127
msgid "Channel Settings"
msgstr "Kanalinnstillinger"
-#: ../../Zotlabs/Module/Settings.php:1039
+#: ../../Zotlabs/Module/Settings.php:1134
msgid "Basic Settings"
msgstr "Grunninnstillinger"
-#: ../../Zotlabs/Module/Settings.php:1040 ../../include/channel.php:1140
+#: ../../Zotlabs/Module/Settings.php:1135 ../../include/channel.php:1180
msgid "Full Name:"
msgstr "Fullt navn:"
-#: ../../Zotlabs/Module/Settings.php:1042
+#: ../../Zotlabs/Module/Settings.php:1137
msgid "Your Timezone:"
msgstr "Din tidssone:"
-#: ../../Zotlabs/Module/Settings.php:1043
+#: ../../Zotlabs/Module/Settings.php:1138
msgid "Default Post Location:"
msgstr "Standard plassering ved innlegg:"
-#: ../../Zotlabs/Module/Settings.php:1043
+#: ../../Zotlabs/Module/Settings.php:1138
msgid "Geographical location to display on your posts"
msgstr "Geografisk plassering som vises på dine innlegg"
-#: ../../Zotlabs/Module/Settings.php:1044
+#: ../../Zotlabs/Module/Settings.php:1139
msgid "Use Browser Location:"
msgstr "Bruk nettleseren sin plassering:"
-#: ../../Zotlabs/Module/Settings.php:1046
+#: ../../Zotlabs/Module/Settings.php:1141
msgid "Adult Content"
msgstr "Voksent innhold"
-#: ../../Zotlabs/Module/Settings.php:1046
+#: ../../Zotlabs/Module/Settings.php:1141
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)"
-#: ../../Zotlabs/Module/Settings.php:1048
+#: ../../Zotlabs/Module/Settings.php:1143
msgid "Security and Privacy Settings"
msgstr "Sikkerhets- og personverninnstillinger"
-#: ../../Zotlabs/Module/Settings.php:1051
+#: ../../Zotlabs/Module/Settings.php:1146
msgid "Your permissions are already configured. Click to view/adjust"
msgstr "Dine tillatelser er allerede satt. Klikk for å se/justere."
-#: ../../Zotlabs/Module/Settings.php:1053
+#: ../../Zotlabs/Module/Settings.php:1148
msgid "Hide my online presence"
msgstr "Skjul min tilstedeværelse online"
-#: ../../Zotlabs/Module/Settings.php:1053
+#: ../../Zotlabs/Module/Settings.php:1148
msgid "Prevents displaying in your profile that you are online"
msgstr "Forhindrer visning på din profil av at du er online "
-#: ../../Zotlabs/Module/Settings.php:1055
+#: ../../Zotlabs/Module/Settings.php:1150
msgid "Simple Privacy Settings:"
msgstr "Enkle personverninnstillinger:"
-#: ../../Zotlabs/Module/Settings.php:1056
+#: ../../Zotlabs/Module/Settings.php:1151
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>"
-#: ../../Zotlabs/Module/Settings.php:1057
+#: ../../Zotlabs/Module/Settings.php:1152
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>"
-#: ../../Zotlabs/Module/Settings.php:1058
+#: ../../Zotlabs/Module/Settings.php:1153
msgid "Private - <em>default private, never open or public</em>"
msgstr "Privat - <em>standard er privat, aldri åpen eller offentlig</em>"
-#: ../../Zotlabs/Module/Settings.php:1059
+#: ../../Zotlabs/Module/Settings.php:1154
msgid "Blocked - <em>default blocked to/from everybody</em>"
msgstr "Blokkert - <em>standard blokkert til/fra alle</em>"
-#: ../../Zotlabs/Module/Settings.php:1061
+#: ../../Zotlabs/Module/Settings.php:1156
msgid "Allow others to tag your posts"
msgstr "Tillat andre å merke dine innlegg"
-#: ../../Zotlabs/Module/Settings.php:1061
+#: ../../Zotlabs/Module/Settings.php:1156
msgid ""
"Often used by the community to retro-actively flag inappropriate content"
msgstr "Ofte brukt av fellesskapet for å merke upassende innhold i etterkant"
-#: ../../Zotlabs/Module/Settings.php:1063
+#: ../../Zotlabs/Module/Settings.php:1158
msgid "Advanced Privacy Settings"
msgstr "Avanserte personverninnstillinger"
-#: ../../Zotlabs/Module/Settings.php:1065
+#: ../../Zotlabs/Module/Settings.php:1160
msgid "Expire other channel content after this many days"
msgstr "Annet kanal innhold utløper etter så mange dager"
-#: ../../Zotlabs/Module/Settings.php:1065
+#: ../../Zotlabs/Module/Settings.php:1160
msgid "0 or blank to use the website limit."
-msgstr ""
+msgstr "0 eller ikke noe for å bruke nettstedets grense."
-#: ../../Zotlabs/Module/Settings.php:1065
+#: ../../Zotlabs/Module/Settings.php:1160
#, php-format
msgid "This website expires after %d days."
-msgstr ""
+msgstr "Dette nettstedet utgår etter %d dager."
-#: ../../Zotlabs/Module/Settings.php:1065
+#: ../../Zotlabs/Module/Settings.php:1160
msgid "This website does not expire imported content."
-msgstr ""
+msgstr "Dette nettstedet lar ikke importert innhold utgå."
-#: ../../Zotlabs/Module/Settings.php:1065
+#: ../../Zotlabs/Module/Settings.php:1160
msgid "The website limit takes precedence if lower than your limit."
-msgstr ""
+msgstr "Nettstedets grense bestemmer hvis lavere enn din grense."
-#: ../../Zotlabs/Module/Settings.php:1066
+#: ../../Zotlabs/Module/Settings.php:1161
msgid "Maximum Friend Requests/Day:"
msgstr "Maksimalt antall venneforespørsler per dag:"
-#: ../../Zotlabs/Module/Settings.php:1066
+#: ../../Zotlabs/Module/Settings.php:1161
msgid "May reduce spam activity"
msgstr "Kan redusere søppelpostaktivitet"
-#: ../../Zotlabs/Module/Settings.php:1067
+#: ../../Zotlabs/Module/Settings.php:1162
msgid "Default Post and Publish Permissions"
-msgstr ""
+msgstr "Standard innleggs- og publiseringstillatelser"
-#: ../../Zotlabs/Module/Settings.php:1069
+#: ../../Zotlabs/Module/Settings.php:1164
msgid "Use my default audience setting for the type of object published"
-msgstr ""
+msgstr "Bruk min standard målgruppeinnstilling for objekttypen som publiseres"
-#: ../../Zotlabs/Module/Settings.php:1072
+#: ../../Zotlabs/Module/Settings.php:1167
msgid "Channel permissions category:"
msgstr "Kategori med kanaltillatelser:"
-#: ../../Zotlabs/Module/Settings.php:1078
+#: ../../Zotlabs/Module/Settings.php:1173
msgid "Maximum private messages per day from unknown people:"
msgstr "Maksimalt antall private meldinger per dag fra ukjente personer:"
-#: ../../Zotlabs/Module/Settings.php:1078
+#: ../../Zotlabs/Module/Settings.php:1173
msgid "Useful to reduce spamming"
msgstr "Nyttig for å redusere søppelpost"
-#: ../../Zotlabs/Module/Settings.php:1081
+#: ../../Zotlabs/Module/Settings.php:1176
msgid "Notification Settings"
msgstr "Varslingsinnstillinger"
-#: ../../Zotlabs/Module/Settings.php:1082
+#: ../../Zotlabs/Module/Settings.php:1177
msgid "By default post a status message when:"
msgstr "Legg inn en statusmelding når du:"
-#: ../../Zotlabs/Module/Settings.php:1083
+#: ../../Zotlabs/Module/Settings.php:1178
msgid "accepting a friend request"
msgstr "aksepterer en venneforespørsel"
-#: ../../Zotlabs/Module/Settings.php:1084
+#: ../../Zotlabs/Module/Settings.php:1179
msgid "joining a forum/community"
msgstr "blir med i et forum/miljø"
-#: ../../Zotlabs/Module/Settings.php:1085
+#: ../../Zotlabs/Module/Settings.php:1180
msgid "making an <em>interesting</em> profile change"
msgstr "gjør en <em>interessant</em> profilendring"
-#: ../../Zotlabs/Module/Settings.php:1086
+#: ../../Zotlabs/Module/Settings.php:1181
msgid "Send a notification email when:"
msgstr "Send en varsel-e-post når:"
-#: ../../Zotlabs/Module/Settings.php:1087
+#: ../../Zotlabs/Module/Settings.php:1182
msgid "You receive a connection request"
msgstr "Du har mottatt en forespørsel om forbindelse"
-#: ../../Zotlabs/Module/Settings.php:1088
+#: ../../Zotlabs/Module/Settings.php:1183
msgid "Your connections are confirmed"
msgstr "Dine forbindelser er bekreftet"
-#: ../../Zotlabs/Module/Settings.php:1089
+#: ../../Zotlabs/Module/Settings.php:1184
msgid "Someone writes on your profile wall"
msgstr "Noen skriver på din profilvegg"
-#: ../../Zotlabs/Module/Settings.php:1090
+#: ../../Zotlabs/Module/Settings.php:1185
msgid "Someone writes a followup comment"
msgstr "Noen skriver en oppfølgende kommentar"
-#: ../../Zotlabs/Module/Settings.php:1091
+#: ../../Zotlabs/Module/Settings.php:1186
msgid "You receive a private message"
msgstr "Du mottar en privat melding"
-#: ../../Zotlabs/Module/Settings.php:1092
+#: ../../Zotlabs/Module/Settings.php:1187
msgid "You receive a friend suggestion"
msgstr "Du mottok et venneforslag"
-#: ../../Zotlabs/Module/Settings.php:1093
+#: ../../Zotlabs/Module/Settings.php:1188
msgid "You are tagged in a post"
msgstr "Du merkes i et innlegg"
-#: ../../Zotlabs/Module/Settings.php:1094
+#: ../../Zotlabs/Module/Settings.php:1189
msgid "You are poked/prodded/etc. in a post"
msgstr "Du ble prikket/oppildnet/og så vider i et innlegg"
-#: ../../Zotlabs/Module/Settings.php:1097
+#: ../../Zotlabs/Module/Settings.php:1192
msgid "Show visual notifications including:"
msgstr "Vis visuelle varslinger om:"
-#: ../../Zotlabs/Module/Settings.php:1099
+#: ../../Zotlabs/Module/Settings.php:1194
msgid "Unseen grid activity"
msgstr "Usett nettverksaktivitet"
-#: ../../Zotlabs/Module/Settings.php:1100
+#: ../../Zotlabs/Module/Settings.php:1195
msgid "Unseen channel activity"
msgstr "Usett kanalaktivitet"
-#: ../../Zotlabs/Module/Settings.php:1101
+#: ../../Zotlabs/Module/Settings.php:1196
msgid "Unseen private messages"
msgstr "Usette private meldinger"
-#: ../../Zotlabs/Module/Settings.php:1101
-#: ../../Zotlabs/Module/Settings.php:1106
-#: ../../Zotlabs/Module/Settings.php:1107
-#: ../../Zotlabs/Module/Settings.php:1108
+#: ../../Zotlabs/Module/Settings.php:1196
+#: ../../Zotlabs/Module/Settings.php:1201
+#: ../../Zotlabs/Module/Settings.php:1202
+#: ../../Zotlabs/Module/Settings.php:1203
msgid "Recommended"
msgstr "Anbefalt"
-#: ../../Zotlabs/Module/Settings.php:1102
+#: ../../Zotlabs/Module/Settings.php:1197
msgid "Upcoming events"
msgstr "Kommende hendelser"
-#: ../../Zotlabs/Module/Settings.php:1103
+#: ../../Zotlabs/Module/Settings.php:1198
msgid "Events today"
msgstr "Hendelser idag"
-#: ../../Zotlabs/Module/Settings.php:1104
+#: ../../Zotlabs/Module/Settings.php:1199
msgid "Upcoming birthdays"
msgstr "Kommende fødselsdager"
-#: ../../Zotlabs/Module/Settings.php:1104
+#: ../../Zotlabs/Module/Settings.php:1199
msgid "Not available in all themes"
msgstr "Ikke tilgjengelig i alle temaer"
-#: ../../Zotlabs/Module/Settings.php:1105
+#: ../../Zotlabs/Module/Settings.php:1200
msgid "System (personal) notifications"
msgstr "System (personlige) varslinger"
-#: ../../Zotlabs/Module/Settings.php:1106
+#: ../../Zotlabs/Module/Settings.php:1201
msgid "System info messages"
msgstr "System infomeldinger"
-#: ../../Zotlabs/Module/Settings.php:1107
+#: ../../Zotlabs/Module/Settings.php:1202
msgid "System critical alerts"
msgstr "System kritiske varsel"
-#: ../../Zotlabs/Module/Settings.php:1108
+#: ../../Zotlabs/Module/Settings.php:1203
msgid "New connections"
msgstr "Nye forbindelser"
-#: ../../Zotlabs/Module/Settings.php:1109
+#: ../../Zotlabs/Module/Settings.php:1204
msgid "System Registrations"
msgstr "Systemregistreringer"
-#: ../../Zotlabs/Module/Settings.php:1110
+#: ../../Zotlabs/Module/Settings.php:1205
msgid ""
"Also show new wall posts, private messages and connections under Notices"
msgstr "Vis også nye vegginnlegg, private meldinger og forbindelser under Varsler"
-#: ../../Zotlabs/Module/Settings.php:1112
+#: ../../Zotlabs/Module/Settings.php:1207
msgid "Notify me of events this many days in advance"
msgstr "Varsle meg om hendelser dette antall dager på forhånd"
-#: ../../Zotlabs/Module/Settings.php:1112
+#: ../../Zotlabs/Module/Settings.php:1207
msgid "Must be greater than 0"
msgstr "Må være større enn 0"
-#: ../../Zotlabs/Module/Settings.php:1114
+#: ../../Zotlabs/Module/Settings.php:1209
msgid "Advanced Account/Page Type Settings"
msgstr "Avanserte innstillinger for konto/sidetype"
-#: ../../Zotlabs/Module/Settings.php:1115
+#: ../../Zotlabs/Module/Settings.php:1210
msgid "Change the behaviour of this account for special situations"
msgstr "Endre oppførselen til denne kontoen i spesielle situasjoner"
-#: ../../Zotlabs/Module/Settings.php:1118
+#: ../../Zotlabs/Module/Settings.php:1213
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!"
-#: ../../Zotlabs/Module/Settings.php:1119
+#: ../../Zotlabs/Module/Settings.php:1214
msgid "Miscellaneous Settings"
msgstr "Diverse innstillinger"
-#: ../../Zotlabs/Module/Settings.php:1120
+#: ../../Zotlabs/Module/Settings.php:1215
msgid "Default photo upload folder"
msgstr "Standard mappe for opplasting av bilder"
-#: ../../Zotlabs/Module/Settings.php:1120
-#: ../../Zotlabs/Module/Settings.php:1121
+#: ../../Zotlabs/Module/Settings.php:1215
+#: ../../Zotlabs/Module/Settings.php:1216
msgid "%Y - current year, %m - current month"
msgstr "%Y - nåværende år, %m - nåværende måned"
-#: ../../Zotlabs/Module/Settings.php:1121
+#: ../../Zotlabs/Module/Settings.php:1216
msgid "Default file upload folder"
msgstr "Standard mappe for opplasting av filer"
-#: ../../Zotlabs/Module/Settings.php:1123
+#: ../../Zotlabs/Module/Settings.php:1218
msgid "Personal menu to display in your channel pages"
msgstr "Personlig meny som kan vises på dine kanalsider"
-#: ../../Zotlabs/Module/Settings.php:1125
+#: ../../Zotlabs/Module/Settings.php:1220
msgid "Remove this channel."
msgstr "Fjern denne kanalen."
-#: ../../Zotlabs/Module/Settings.php:1126
+#: ../../Zotlabs/Module/Settings.php:1221
msgid "Firefox Share $Projectname provider"
msgstr "$Projectname Firefox Share tilbyder"
-#: ../../Zotlabs/Module/Settings.php:1127
+#: ../../Zotlabs/Module/Settings.php:1222
msgid "Start calendar week on monday"
msgstr "Start uken med mandag i kalenderen"
@@ -5514,7 +5825,7 @@ msgid ""
msgstr "Du må kanskje importere filen \"install/schmea_xxx.sql\" manuelt ved å bruke en databaseklient."
#: ../../Zotlabs/Module/Setup.php:204 ../../Zotlabs/Module/Setup.php:266
-#: ../../Zotlabs/Module/Setup.php:721
+#: ../../Zotlabs/Module/Setup.php:722
msgid "Please see the file \"install/INSTALL.txt\"."
msgstr "Vennligst les filen \"install/INSTALL.txt\"."
@@ -5618,11 +5929,11 @@ msgstr "Noen avanserte egenskaper, som - selv om de er nyttige - kanskje passer
#: ../../Zotlabs/Module/Setup.php:388
msgid "PHP version 5.5 or greater is required."
-msgstr ""
+msgstr "PHP-versjon 5.5 eller høyere er påkrevet."
#: ../../Zotlabs/Module/Setup.php:389
msgid "PHP version"
-msgstr ""
+msgstr "PHP-versjon"
#: ../../Zotlabs/Module/Setup.php:404
msgid "Could not find a command line version of PHP in the web server PATH."
@@ -5714,199 +6025,200 @@ msgid "mb_string PHP module"
msgstr "mb_string PHP-modul"
#: ../../Zotlabs/Module/Setup.php:496
-msgid "mcrypt PHP module"
-msgstr "mcrypt PHP-modul"
-
-#: ../../Zotlabs/Module/Setup.php:497
msgid "xml PHP module"
msgstr "XML PHP modul"
-#: ../../Zotlabs/Module/Setup.php:501 ../../Zotlabs/Module/Setup.php:503
+#: ../../Zotlabs/Module/Setup.php:500 ../../Zotlabs/Module/Setup.php:502
msgid "Apache mod_rewrite module"
msgstr "Apache mod_rewrite-modul"
-#: ../../Zotlabs/Module/Setup.php:501
+#: ../../Zotlabs/Module/Setup.php:500
msgid ""
"Error: Apache webserver mod-rewrite module is required but not installed."
msgstr "Feil: Apache web-tjenerens mod-rewrite-modul er påkrevd, men ikke installert."
-#: ../../Zotlabs/Module/Setup.php:507 ../../Zotlabs/Module/Setup.php:510
+#: ../../Zotlabs/Module/Setup.php:506 ../../Zotlabs/Module/Setup.php:509
msgid "proc_open"
msgstr "proc_open"
-#: ../../Zotlabs/Module/Setup.php:507
+#: ../../Zotlabs/Module/Setup.php:506
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"
-#: ../../Zotlabs/Module/Setup.php:515
+#: ../../Zotlabs/Module/Setup.php:514
msgid "Error: libCURL PHP module required but not installed."
msgstr "Feil: libCURL PHP-modul er påkrevd, men er ikke installert."
-#: ../../Zotlabs/Module/Setup.php:519
+#: ../../Zotlabs/Module/Setup.php:518
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."
-#: ../../Zotlabs/Module/Setup.php:523
+#: ../../Zotlabs/Module/Setup.php:522
msgid "Error: openssl PHP module required but not installed."
msgstr "Feil: openssl PHP-modul er påkrevd, men er ikke installert."
-#: ../../Zotlabs/Module/Setup.php:527
+#: ../../Zotlabs/Module/Setup.php:526
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."
-#: ../../Zotlabs/Module/Setup.php:531
+#: ../../Zotlabs/Module/Setup.php:530
msgid "Error: mb_string PHP module required but not installed."
msgstr "Feil: mb_string PHP-modul er påkrevd, men er ikke installert."
-#: ../../Zotlabs/Module/Setup.php:535
-msgid "Error: mcrypt PHP module required but not installed."
-msgstr "Feil: mcrypt PHP-modul er påkrevd, men er ikke installert."
-
-#: ../../Zotlabs/Module/Setup.php:539
+#: ../../Zotlabs/Module/Setup.php:534
msgid "Error: xml PHP module required for DAV but not installed."
msgstr "Feil: XML PHP modul er påkrevet for DAV, men den er ikke installert."
-#: ../../Zotlabs/Module/Setup.php:557
+#: ../../Zotlabs/Module/Setup.php:552
msgid ""
"The web installer needs to be able to create a file called \".htconfig.php\""
" in the top folder of your web server and it is unable to do so."
msgstr "Web-installasjonen må kunne lage en fil kalt \".htconfig.php\" i toppkatalogen til web-tjeneren din, men dette får den ikke til."
-#: ../../Zotlabs/Module/Setup.php:558
+#: ../../Zotlabs/Module/Setup.php:553
msgid ""
"This is most often a permission setting, as the web server may not be able "
"to write files in your folder - even if you can."
msgstr "Dette er oftest tillatelsesinnstilling, ettersom webtjeneren kanskje kan skrive til filer i din mappe - selv om du kan."
-#: ../../Zotlabs/Module/Setup.php:559
+#: ../../Zotlabs/Module/Setup.php:554
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."
-#: ../../Zotlabs/Module/Setup.php:560
+#: ../../Zotlabs/Module/Setup.php:555
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."
-#: ../../Zotlabs/Module/Setup.php:563
+#: ../../Zotlabs/Module/Setup.php:558
msgid ".htconfig.php is writable"
msgstr ".htconfig.php kan skrives til"
-#: ../../Zotlabs/Module/Setup.php:577
+#: ../../Zotlabs/Module/Setup.php:572
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."
-#: ../../Zotlabs/Module/Setup.php:578
+#: ../../Zotlabs/Module/Setup.php:573
#, php-format
msgid ""
"In order to store these compiled templates, the web server needs to have "
"write access to the directory %s under the top level web folder."
-msgstr ""
+msgstr "For å kunne lagre disse kompilerte malene, så må webtjeneren ha skrivetilgang til katalogen %s under hovedmappen."
-#: ../../Zotlabs/Module/Setup.php:579 ../../Zotlabs/Module/Setup.php:600
+#: ../../Zotlabs/Module/Setup.php:574 ../../Zotlabs/Module/Setup.php:595
msgid ""
"Please ensure that the user that your web server runs as (e.g. www-data) has"
" write access to this folder."
msgstr "Vennligst sikre at brukeren som din web-tjeneste kjører som (for eksempel www-data) har skrivetilgang til denne katalogen."
-#: ../../Zotlabs/Module/Setup.php:580
+#: ../../Zotlabs/Module/Setup.php:575
#, php-format
msgid ""
"Note: as a security measure, you should give the web server write access to "
"%s only--not the template files (.tpl) that it contains."
msgstr "Merknad: som et sikkerhetstiltak bør du bare gi webtjerenn skrivetilgang til %s - ikke til malfilene (.tpl) som den inneholder."
-#: ../../Zotlabs/Module/Setup.php:583
+#: ../../Zotlabs/Module/Setup.php:578
#, php-format
msgid "%s is writable"
msgstr "%s kan skrives til"
-#: ../../Zotlabs/Module/Setup.php:599
+#: ../../Zotlabs/Module/Setup.php:594
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."
+"This software 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 ""
-#: ../../Zotlabs/Module/Setup.php:603
+#: ../../Zotlabs/Module/Setup.php:598
msgid "store is writable"
msgstr "lageret kan skrives til"
-#: ../../Zotlabs/Module/Setup.php:636
+#: ../../Zotlabs/Module/Setup.php:631
msgid ""
"SSL certificate cannot be validated. Fix certificate or disable https access"
" to this site."
msgstr "SSL-sertifikatet kan ikke kontrolleres. Fiks sertifikatet eller skru av https tilgang til dette nettstedet."
-#: ../../Zotlabs/Module/Setup.php:637
+#: ../../Zotlabs/Module/Setup.php:632
msgid ""
"If you have https access to your website or allow connections to TCP port "
"443 (the https: port), you MUST use a browser-valid certificate. You MUST "
"NOT use self-signed certificates!"
msgstr "Hvis du har HTTPS-tilgang til ditt nettsted eller tillater forbindelser til TCP port 443 (HTTPS-porten), så MÅ du bruke nettlesergodkjent sertifkater. Du MÅ IKKE bruke egensignert sertifikater!"
-#: ../../Zotlabs/Module/Setup.php:638
+#: ../../Zotlabs/Module/Setup.php:633
msgid ""
"This restriction is incorporated because public posts from you may for "
"example contain references to images on your own hub."
msgstr "Denne begrensningen er tatt inn fordi offentlige innlegg fra deg kan for eksempel inneholde referanser til bilder på din egen hub."
-#: ../../Zotlabs/Module/Setup.php:639
+#: ../../Zotlabs/Module/Setup.php:634
msgid ""
"If your certificate is not recognized, members of other sites (who may "
"themselves have valid certificates) will get a warning message on their own "
"site complaining about security issues."
msgstr "Hvis sertifikatet ditt ikke gjenkjennes, så vil medlemmer på andre nettsteder (som selv kan ha godkjente sertifikater) få en beskjed med en advarsel på deres eget nettsted som klager over sikkerhetsproblemer."
-#: ../../Zotlabs/Module/Setup.php:640
+#: ../../Zotlabs/Module/Setup.php:635
msgid ""
"This can cause usability issues elsewhere (not just on your own site) so we "
"must insist on this requirement."
msgstr "Dette kan gi problemer med brukervennlighet (ikke bare på ditt eget nettsted), så vi må insistere på dette kravet."
-#: ../../Zotlabs/Module/Setup.php:641
+#: ../../Zotlabs/Module/Setup.php:636
msgid ""
"Providers are available that issue free certificates which are browser-"
"valid."
msgstr "Det finnes tilbydere som utsteder gratis sertifikater som er gyldige i nettlesere."
-#: ../../Zotlabs/Module/Setup.php:643
+#: ../../Zotlabs/Module/Setup.php:638
+msgid ""
+"If you are confident that the certificate is valid and signed by a trusted "
+"authority, check to see if you have failed to install an intermediate cert. "
+"These are not normally required by browsers, but are required for server-to-"
+"server communications."
+msgstr ""
+
+#: ../../Zotlabs/Module/Setup.php:641
msgid "SSL certificate validation"
msgstr "SSL sertifikat-kontroll"
-#: ../../Zotlabs/Module/Setup.php:649
+#: ../../Zotlabs/Module/Setup.php:647
msgid ""
"Url rewrite in .htaccess is not working. Check your server "
"configuration.Test: "
msgstr "URL omskriving (rewrite) i .htaccess virker ikke. Sjekk konfigurasjonen til tjeneren din. Test:"
-#: ../../Zotlabs/Module/Setup.php:652
+#: ../../Zotlabs/Module/Setup.php:650
msgid "Url rewrite is working"
msgstr "URL rewrite virker"
-#: ../../Zotlabs/Module/Setup.php:661
+#: ../../Zotlabs/Module/Setup.php:659
msgid ""
"The database configuration file \".htconfig.php\" could not be written. "
"Please use the enclosed text to create a configuration file in your web "
"server root."
msgstr "Databasekonfigurasjonsfilen \".htconfig.php\" kunne ikke skrives. Vennligst bruk den medfølgende teksten for å lage en konfigurasjonsfil i toppkatalogen av din web-tjener."
-#: ../../Zotlabs/Module/Setup.php:685
+#: ../../Zotlabs/Module/Setup.php:683
msgid "Errors encountered creating database tables."
msgstr "Feil oppstod under opprettelsen av databasetabeller."
-#: ../../Zotlabs/Module/Setup.php:719
+#: ../../Zotlabs/Module/Setup.php:720
msgid "<h1>What next</h1>"
msgstr "<h1>Hva gjenstår</h1>"
-#: ../../Zotlabs/Module/Setup.php:720
+#: ../../Zotlabs/Module/Setup.php:721
msgid ""
"IMPORTANT: You will need to [manually] setup a scheduled task for the "
"poller."
@@ -5928,64 +6240,62 @@ msgstr "Fjern alle filer"
msgid "Remove this file"
msgstr "Fjern denne filen"
-#: ../../Zotlabs/Module/Siteinfo.php:19
-#, php-format
-msgid "Version %s"
-msgstr "Versjon %s"
+#: ../../Zotlabs/Module/Thing.php:114
+msgid "Thing updated"
+msgstr "Tingen er oppdatert"
-#: ../../Zotlabs/Module/Siteinfo.php:40
-msgid "Installed plugins/addons/apps:"
-msgstr "Installerte tilleggsfunksjoner/tillegg/apper:"
+#: ../../Zotlabs/Module/Thing.php:166
+msgid "Object store: failed"
+msgstr "Objektlagring: mislyktes"
-#: ../../Zotlabs/Module/Siteinfo.php:53
-msgid "No installed plugins/addons/apps"
-msgstr "Ingen installerte tilleggsfunksjoner/tillegg/apper"
+#: ../../Zotlabs/Module/Thing.php:170
+msgid "Thing added"
+msgstr "Ting lagt til"
-#: ../../Zotlabs/Module/Siteinfo.php:66
-msgid ""
-"This is a hub of $Projectname - a global cooperative network of "
-"decentralized privacy enhanced websites."
-msgstr "Dette er en $Projectname-hub - et globalt samhandlende nettverk av desentraliserte nettsteder med innbygget personvern."
+#: ../../Zotlabs/Module/Thing.php:196
+#, php-format
+msgid "OBJ: %1$s %2$s %3$s"
+msgstr "OBJ: %1$s %2$s %3$s"
-#: ../../Zotlabs/Module/Siteinfo.php:68
-msgid "Tag: "
-msgstr "Merkelapp:"
+#: ../../Zotlabs/Module/Thing.php:259
+msgid "Show Thing"
+msgstr "Vis ting"
-#: ../../Zotlabs/Module/Siteinfo.php:70
-msgid "Last background fetch: "
-msgstr "Siste innhenting i bakgrunnen:"
+#: ../../Zotlabs/Module/Thing.php:266
+msgid "item not found."
+msgstr "element ble ikke funnet."
-#: ../../Zotlabs/Module/Siteinfo.php:72
-msgid "Current load average: "
-msgstr "Gjeldende belastningsgjennomsnitt:"
+#: ../../Zotlabs/Module/Thing.php:299
+msgid "Edit Thing"
+msgstr "Endre ting"
-#: ../../Zotlabs/Module/Siteinfo.php:75
-msgid "Running at web location"
-msgstr "Kjører på webplasseringen"
+#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351
+msgid "Select a profile"
+msgstr "Velg en profil"
-#: ../../Zotlabs/Module/Siteinfo.php:76
-msgid ""
-"Please visit <a href=\"http://hubzilla.org\">hubzilla.org</a> to learn more "
-"about $Projectname."
-msgstr "Vennligst besøk <a href=\"http://hubzilla.org\">hubzilla.org</a> for å lære mer om $Projectname."
+#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354
+msgid "Post an activity"
+msgstr "Legg inn en aktivitet"
-#: ../../Zotlabs/Module/Siteinfo.php:77
-msgid "Bug reports and issues: please visit"
-msgstr "Feilmeldinger og feilretting: vennligst besøk"
+#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354
+msgid "Only sends to viewers of the applicable profile"
+msgstr "Sender bare til seere av den aktuelle profilen"
-#: ../../Zotlabs/Module/Siteinfo.php:79
-msgid "$projectname issues"
-msgstr "$projectname problemer"
+#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:356
+msgid "Name of thing e.g. something"
+msgstr "Navn på ting for eksempel noe"
-#: ../../Zotlabs/Module/Siteinfo.php:80
-msgid ""
-"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot "
-"com"
-msgstr "Forslag, ros og så videre - vennligst e-post \"redmatrix\" hos librelist - punktum com"
+#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357
+msgid "URL of thing (optional)"
+msgstr "URL til ting (valgfritt)"
-#: ../../Zotlabs/Module/Siteinfo.php:82
-msgid "Site Administrators"
-msgstr "Nettstedsadministratorer"
+#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:358
+msgid "URL for photo of thing (optional)"
+msgstr "URL til bilde av ting (valgfritt)"
+
+#: ../../Zotlabs/Module/Thing.php:349
+msgid "Add Thing to your Profile"
+msgstr "Legg til ting i din profil"
#: ../../Zotlabs/Module/Sources.php:37
msgid "Failed to create source. No channel selected."
@@ -6003,8 +6313,8 @@ msgstr "Kilden er oppdatert."
msgid "*"
msgstr "*"
-#: ../../Zotlabs/Module/Sources.php:96 ../../include/widgets.php:630
-#: ../../include/features.php:71
+#: ../../Zotlabs/Module/Sources.php:96 ../../include/features.php:72
+#: ../../include/widgets.php:639
msgid "Channel Sources"
msgstr "Kanalkilder"
@@ -6038,7 +6348,7 @@ msgstr "Kanalnavn"
msgid ""
"Add the following categories to posts imported from this source (comma "
"separated)"
-msgstr ""
+msgstr "Legg til følgende kategorier til innlegg importert fra denne kilden (kommeseparert)"
#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161
msgid "Source not found."
@@ -6080,12 +6390,12 @@ msgstr "Ingen forslag tilgjengelige. Hvis dette er et nytt nettsted, vennligst p
msgid "Ignore/Hide"
msgstr "Ignorer/Skjul"
-#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:256
+#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263
msgid "post"
msgstr "innlegg"
-#: ../../Zotlabs/Module/Tagger.php:57 ../../include/text.php:1948
-#: ../../include/conversation.php:150
+#: ../../Zotlabs/Module/Tagger.php:57 ../../include/conversation.php:150
+#: ../../include/text.php:1929
msgid "comment"
msgstr "kommentar"
@@ -6106,131 +6416,110 @@ msgstr "Fjern merkelapp fra element"
msgid "Select a tag to remove: "
msgstr "Velg merkelapp å fjerne:"
-#: ../../Zotlabs/Module/Thing.php:114
-msgid "Thing updated"
-msgstr "Tingen er oppdatert"
-
-#: ../../Zotlabs/Module/Thing.php:166
-msgid "Object store: failed"
-msgstr "Objektlagring: mislyktes"
+#: ../../Zotlabs/Module/Webpages.php:191 ../../Zotlabs/Lib/Apps.php:218
+#: ../../include/nav.php:106 ../../include/conversation.php:1700
+msgid "Webpages"
+msgstr "Websider"
-#: ../../Zotlabs/Module/Thing.php:170
-msgid "Thing added"
-msgstr "Ting lagt til"
+#: ../../Zotlabs/Module/Webpages.php:202 ../../include/page_widgets.php:44
+msgid "Actions"
+msgstr "Handlinger"
-#: ../../Zotlabs/Module/Thing.php:196
-#, php-format
-msgid "OBJ: %1$s %2$s %3$s"
-msgstr "OBJ: %1$s %2$s %3$s"
+#: ../../Zotlabs/Module/Webpages.php:203 ../../include/page_widgets.php:45
+msgid "Page Link"
+msgstr "Sidelenke"
-#: ../../Zotlabs/Module/Thing.php:259
-msgid "Show Thing"
-msgstr "Vis ting"
+#: ../../Zotlabs/Module/Webpages.php:204
+msgid "Page Title"
+msgstr "Sidetittel"
-#: ../../Zotlabs/Module/Thing.php:266
-msgid "item not found."
-msgstr "element ble ikke funnet."
+#: ../../Zotlabs/Module/Wiki.php:34
+msgid "Not found"
+msgstr ""
-#: ../../Zotlabs/Module/Thing.php:299
-msgid "Edit Thing"
-msgstr "Endre ting"
+#: ../../Zotlabs/Module/Wiki.php:92 ../../Zotlabs/Lib/Apps.php:219
+#: ../../include/nav.php:108 ../../include/conversation.php:1710
+#: ../../include/conversation.php:1713 ../../include/features.php:55
+msgid "Wiki"
+msgstr ""
-#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351
-msgid "Select a profile"
-msgstr "Velg en profil"
+#: ../../Zotlabs/Module/Wiki.php:93
+msgid "Sandbox"
+msgstr ""
-#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354
-msgid "Post an activity"
-msgstr "Legg inn en aktivitet"
+#: ../../Zotlabs/Module/Wiki.php:95
+msgid ""
+"\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be"
+" saved*.\""
+msgstr ""
-#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354
-msgid "Only sends to viewers of the applicable profile"
-msgstr "Sender bare til seere av den aktuelle profilen"
+#: ../../Zotlabs/Module/Wiki.php:164
+msgid "Revision Comparison"
+msgstr ""
-#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:356
-msgid "Name of thing e.g. something"
-msgstr "Navn på ting for eksempel noe"
+#: ../../Zotlabs/Module/Wiki.php:165
+msgid "Revert"
+msgstr ""
-#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357
-msgid "URL of thing (optional)"
-msgstr "URL til ting (valgfritt)"
+#: ../../Zotlabs/Module/Wiki.php:192
+msgid "Enter the name of your new wiki:"
+msgstr ""
-#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:358
-msgid "URL for photo of thing (optional)"
-msgstr "URL til bilde av ting (valgfritt)"
+#: ../../Zotlabs/Module/Wiki.php:193
+msgid "Enter the name of the new page:"
+msgstr ""
-#: ../../Zotlabs/Module/Thing.php:349
-msgid "Add Thing to your Profile"
-msgstr "Legg til ting i din profil"
+#: ../../Zotlabs/Module/Wiki.php:194
+msgid "Enter the new name:"
+msgstr ""
-#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56
-msgid "Export Channel"
-msgstr "Eksporter kanal"
+#: ../../Zotlabs/Module/Wiki.php:200 ../../include/conversation.php:1150
+msgid "Embed image from photo albums"
+msgstr ""
-#: ../../Zotlabs/Module/Uexport.php:57
-msgid ""
-"Export your basic channel information to a file. This acts as a backup of "
-"your connections, permissions, profile and basic data, which can be used to "
-"import your data to a new server hub, but does not contain your content."
-msgstr "Eksporter grunnleggende informasjon om kanalen din til en fil. Denne er en sikkerhetskopi av dine forbindelser, tillatelser, profil og grunnleggende data, som kan brukes til å importere dine data til en ny hub, men den tar ikke med innholdet."
+#: ../../Zotlabs/Module/Wiki.php:201 ../../include/conversation.php:1234
+msgid "Embed an image from your albums"
+msgstr ""
-#: ../../Zotlabs/Module/Uexport.php:58
-msgid "Export Content"
-msgstr "Eksporter innhold"
+#: ../../Zotlabs/Module/Wiki.php:203 ../../include/conversation.php:1236
+#: ../../include/conversation.php:1273
+msgid "OK"
+msgstr "OK"
-#: ../../Zotlabs/Module/Uexport.php:59
-msgid ""
-"Export your channel information and recent content to a JSON backup that can"
-" be restored or imported to another server hub. This backs up all of your "
-"connections, permissions, profile data and several months of posts. This "
-"file may be VERY large. Please be patient - it may take several minutes for"
-" this download to begin."
-msgstr "Eksporter din kanalinformasjon og det nyeste innholdet til en JSON-sikkerhetskopi, som kan gjenopprettes eller importeres til en annen hub. Denne lager en sikkerhetskopi av alle dine forbindelser, tillatelser, profildata og flere måneder av innholdet ditt. Denne filen kan være SVÆRT stor. Vennligst vær tålmodig - det kan ta flere minutter før denne nedlastningen begynner."
+#: ../../Zotlabs/Module/Wiki.php:204 ../../include/conversation.php:1186
+msgid "Choose images to embed"
+msgstr ""
-#: ../../Zotlabs/Module/Uexport.php:60
-msgid "Export your posts from a given year."
-msgstr "Eksporter dine innlegg fra et bestemt år"
+#: ../../Zotlabs/Module/Wiki.php:205 ../../include/conversation.php:1187
+msgid "Choose an album"
+msgstr ""
-#: ../../Zotlabs/Module/Uexport.php:62
-msgid ""
-"You may also export your posts and conversations for a particular year or "
-"month. Adjust the date in your browser location bar to select other dates. "
-"If the export fails (possibly due to memory exhaustion on your server hub), "
-"please try again selecting a more limited date range."
-msgstr "Du kan også eksportere dine innlegg og samtaler for et bestemt år eller måned. Juster datoen i din nettlesers adresselinje for å velge andre datoer. Hvis eksporten feiler (muligens på grunn av utilstrekkelig minne på din hub), vennligst prøv igjen med et mer begrenset datoområde."
+#: ../../Zotlabs/Module/Wiki.php:206 ../../include/conversation.php:1188
+msgid "Choose a different album..."
+msgstr ""
-#: ../../Zotlabs/Module/Uexport.php:63
-#, 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>"
+#: ../../Zotlabs/Module/Wiki.php:207 ../../include/conversation.php:1189
+msgid "Error getting album list"
+msgstr ""
-#: ../../Zotlabs/Module/Uexport.php:64
-#, php-format
-msgid ""
-"To select all posts for a given month, such as January of this year, visit "
-"<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>"
+#: ../../Zotlabs/Module/Wiki.php:208 ../../include/conversation.php:1190
+msgid "Error getting photo link"
+msgstr ""
-#: ../../Zotlabs/Module/Uexport.php:65
-#, 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)."
+#: ../../Zotlabs/Module/Wiki.php:209 ../../include/conversation.php:1191
+msgid "Error getting album"
+msgstr ""
-#: ../../Zotlabs/Module/Viewconnections.php:62
+#: ../../Zotlabs/Module/Viewconnections.php:65
msgid "No connections."
msgstr "Ingen forbindelser."
-#: ../../Zotlabs/Module/Viewconnections.php:75
+#: ../../Zotlabs/Module/Viewconnections.php:78
#, php-format
msgid "Visit %s's profile [%s]"
msgstr "Besøk %s sin profil [%s]"
-#: ../../Zotlabs/Module/Viewconnections.php:104
+#: ../../Zotlabs/Module/Viewconnections.php:107
msgid "View Connections"
msgstr "Vis forbindelser"
@@ -6238,22 +6527,23 @@ msgstr "Vis forbindelser"
msgid "Source of Item"
msgstr "Kilde til element"
-#: ../../Zotlabs/Module/Webpages.php:184 ../../Zotlabs/Lib/Apps.php:217
-#: ../../include/nav.php:106 ../../include/conversation.php:1685
-msgid "Webpages"
-msgstr "Websider"
+#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85
+msgid "Authorize application connection"
+msgstr "Tillat programforbindelse"
-#: ../../Zotlabs/Module/Webpages.php:195 ../../include/page_widgets.php:41
-msgid "Actions"
-msgstr "Handlinger"
+#: ../../Zotlabs/Module/Api.php:62
+msgid "Return to your app and insert this Securty Code:"
+msgstr "Gå tilbake til din app og legg inn denne sikkerhetskoden:"
-#: ../../Zotlabs/Module/Webpages.php:196 ../../include/page_widgets.php:42
-msgid "Page Link"
-msgstr "Sidelenke"
+#: ../../Zotlabs/Module/Api.php:72
+msgid "Please login to continue."
+msgstr "Vennligst logg inn for å fortsette."
-#: ../../Zotlabs/Module/Webpages.php:197
-msgid "Page Title"
-msgstr "Sidetittel"
+#: ../../Zotlabs/Module/Api.php:87
+msgid ""
+"Do you want to authorize this application to access your posts and contacts,"
+" and/or create new posts for you?"
+msgstr "Vil du tillate dette programmet å få tilgang til dine innlegg og kontakter, og/eller lage nye innlegg for deg?"
#: ../../Zotlabs/Module/Xchan.php:10
msgid "Xchan Lookup"
@@ -6263,92 +6553,6 @@ msgstr "Xchan oppslag"
msgid "Lookup xchan beginning with (or webbie): "
msgstr "Slå opp xchan som begynner med (eller webbie):"
-#: ../../Zotlabs/Lib/Apps.php:204
-msgid "Site Admin"
-msgstr "Nettstedsadministrator"
-
-#: ../../Zotlabs/Lib/Apps.php:205
-msgid "Bug Report"
-msgstr ""
-
-#: ../../Zotlabs/Lib/Apps.php:206
-msgid "View Bookmarks"
-msgstr ""
-
-#: ../../Zotlabs/Lib/Apps.php:207
-msgid "My Chatrooms"
-msgstr ""
-
-#: ../../Zotlabs/Lib/Apps.php:209
-msgid "Firefox Share"
-msgstr ""
-
-#: ../../Zotlabs/Lib/Apps.php:210
-msgid "Remote Diagnostics"
-msgstr ""
-
-#: ../../Zotlabs/Lib/Apps.php:211 ../../include/features.php:89
-msgid "Suggest Channels"
-msgstr "Foreslå kanaler"
-
-#: ../../Zotlabs/Lib/Apps.php:212 ../../include/nav.php:110
-#: ../../boot.php:1703
-msgid "Login"
-msgstr "Logg inn"
-
-#: ../../Zotlabs/Lib/Apps.php:214 ../../include/nav.php:179
-msgid "Grid"
-msgstr "Nett"
-
-#: ../../Zotlabs/Lib/Apps.php:218 ../../include/nav.php:182
-msgid "Channel Home"
-msgstr "Kanalhjem"
-
-#: ../../Zotlabs/Lib/Apps.php:221 ../../include/nav.php:201
-#: ../../include/conversation.php:1649 ../../include/conversation.php:1652
-msgid "Events"
-msgstr "Hendelser"
-
-#: ../../Zotlabs/Lib/Apps.php:222 ../../include/nav.php:167
-msgid "Directory"
-msgstr "Katalog"
-
-#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:193
-msgid "Mail"
-msgstr "Melding"
-
-#: ../../Zotlabs/Lib/Apps.php:227 ../../include/nav.php:96
-msgid "Chat"
-msgstr "Chat"
-
-#: ../../Zotlabs/Lib/Apps.php:229
-msgid "Probe"
-msgstr "Undersøk"
-
-#: ../../Zotlabs/Lib/Apps.php:230
-msgid "Suggest"
-msgstr "Forreslå"
-
-#: ../../Zotlabs/Lib/Apps.php:231
-msgid "Random Channel"
-msgstr "Tilfeldig kanal"
-
-#: ../../Zotlabs/Lib/Apps.php:232
-msgid "Invite"
-msgstr "Inviter"
-
-#: ../../Zotlabs/Lib/Apps.php:233 ../../include/widgets.php:1386
-msgid "Features"
-msgstr "Funksjoner"
-
-#: ../../Zotlabs/Lib/Apps.php:235
-msgid "Post"
-msgstr "Innlegg"
-
-#: ../../Zotlabs/Lib/Apps.php:335
-msgid "Purchase"
-msgstr "Kjøp"
-
#: ../../Zotlabs/Lib/Chatroom.php:27
msgid "Missing room name"
msgstr "Mangler romnavn"
@@ -6369,19 +6573,19 @@ msgstr "Rommet ble ikke funnet."
msgid "Room is full"
msgstr "Rommet er fullt"
-#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1823
+#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1882
msgid "$Projectname Notification"
msgstr "$Projectname varsling"
-#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1824
+#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1883
msgid "$projectname"
msgstr "$projectname"
-#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1826
+#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1885
msgid "Thank You,"
msgstr "Tusen takk,"
-#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1828
+#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1887
#, php-format
msgid "%s Administrator"
msgstr "%s administrator"
@@ -6574,11 +6778,97 @@ msgstr "laget et nytt innlegg"
msgid "commented on %s's post"
msgstr "kommenterte på %s sitt innlegg"
-#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:664
+#: ../../Zotlabs/Lib/Apps.php:205
+msgid "Site Admin"
+msgstr "Nettstedsadministrator"
+
+#: ../../Zotlabs/Lib/Apps.php:206
+msgid "Bug Report"
+msgstr "Feilmelding"
+
+#: ../../Zotlabs/Lib/Apps.php:207
+msgid "View Bookmarks"
+msgstr "Vis bokmerker"
+
+#: ../../Zotlabs/Lib/Apps.php:208
+msgid "My Chatrooms"
+msgstr "Mine chatrom"
+
+#: ../../Zotlabs/Lib/Apps.php:210
+msgid "Firefox Share"
+msgstr "Firefox-deling"
+
+#: ../../Zotlabs/Lib/Apps.php:211
+msgid "Remote Diagnostics"
+msgstr "Fjerndiagnostisering"
+
+#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:90
+msgid "Suggest Channels"
+msgstr "Foreslå kanaler"
+
+#: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:112
+#: ../../boot.php:1704
+msgid "Login"
+msgstr "Logg inn"
+
+#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:181
+msgid "Grid"
+msgstr "Nett"
+
+#: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:184
+msgid "Channel Home"
+msgstr "Kanalhjem"
+
+#: ../../Zotlabs/Lib/Apps.php:223 ../../include/nav.php:203
+#: ../../include/conversation.php:1664 ../../include/conversation.php:1667
+msgid "Events"
+msgstr "Hendelser"
+
+#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:169
+msgid "Directory"
+msgstr "Katalog"
+
+#: ../../Zotlabs/Lib/Apps.php:226 ../../include/nav.php:195
+msgid "Mail"
+msgstr "Melding"
+
+#: ../../Zotlabs/Lib/Apps.php:229 ../../include/nav.php:96
+msgid "Chat"
+msgstr "Chat"
+
+#: ../../Zotlabs/Lib/Apps.php:231
+msgid "Probe"
+msgstr "Undersøk"
+
+#: ../../Zotlabs/Lib/Apps.php:232
+msgid "Suggest"
+msgstr "Forreslå"
+
+#: ../../Zotlabs/Lib/Apps.php:233
+msgid "Random Channel"
+msgstr "Tilfeldig kanal"
+
+#: ../../Zotlabs/Lib/Apps.php:234
+msgid "Invite"
+msgstr "Inviter"
+
+#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1480
+msgid "Features"
+msgstr "Funksjoner"
+
+#: ../../Zotlabs/Lib/Apps.php:237
+msgid "Post"
+msgstr "Innlegg"
+
+#: ../../Zotlabs/Lib/Apps.php:339
+msgid "Purchase"
+msgstr "Kjøp"
+
+#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:667
msgid "Private Message"
msgstr "Privat melding"
-#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:656
+#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:659
msgid "Select"
msgstr "Velg"
@@ -6626,11 +6916,11 @@ msgstr "Skru av og på stjernestatus"
msgid "starred"
msgstr "stjernemerket"
-#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:671
+#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:674
msgid "Message signature validated"
msgstr "Innleggets signatur er bekreftet"
-#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:672
+#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:675
msgid "Message signature incorrect"
msgstr "Innleggets signatur er feil"
@@ -6686,17 +6976,17 @@ msgstr "vegg-til-vegg"
msgid "via Wall-To-Wall:"
msgstr "via vegg-til-vegg:"
-#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:719
+#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:722
#, php-format
msgid "from %s"
msgstr "fra %s"
-#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:722
+#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:725
#, php-format
msgid "last edited: %s"
msgstr "sist endret: %s"
-#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:723
+#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:726
#, php-format
msgid "Expires: %s"
msgstr "Utløper: %s"
@@ -6714,26 +7004,27 @@ msgid "Mark all seen"
msgstr "Merk alle som sett"
#: ../../Zotlabs/Lib/ThreadItem.php:421 ../../include/js_strings.php:7
-msgid "[+] show all"
-msgstr "[+] Vis alle"
+#, php-format
+msgid "%s show all"
+msgstr ""
-#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1215
+#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1226
msgid "Bold"
msgstr "Uthevet"
-#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1216
+#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1227
msgid "Italic"
msgstr "Kursiv"
-#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1217
+#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1228
msgid "Underline"
msgstr "Understreket"
-#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1218
+#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1229
msgid "Quote"
msgstr "Sitat"
-#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1219
+#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1230
msgid "Code"
msgstr "Kode"
@@ -6749,840 +7040,122 @@ msgstr "Sett inn lenke"
msgid "Video"
msgstr "Video"
-#: ../../include/Import/import_diaspora.php:16
-msgid "No username found in import file."
-msgstr "Ingen brukernavn ble funnet i importfilen."
-
-#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:50
-msgid "Unable to create a unique channel address. Import failed."
-msgstr "Klarte ikke å lage en unik kanaladresse. Import mislyktes."
-
-#: ../../include/dba/dba_driver.php:171
-#, php-format
-msgid "Cannot locate DNS info for database server '%s'"
-msgstr "Kan ikke finne DNS-informasjon om databasetjener '%s'"
-
-#: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270
-#: ../../include/widgets.php:46 ../../include/widgets.php:429
-#: ../../include/contact_widgets.php:91
-msgid "Categories"
-msgstr "Kategorier"
-
-#: ../../include/taxonomy.php:228 ../../include/taxonomy.php:249
-msgid "Tags"
-msgstr "Merkelapper"
-
-#: ../../include/taxonomy.php:293
-msgid "Keywords"
-msgstr "Nøkkelord"
-
-#: ../../include/taxonomy.php:314
-msgid "have"
-msgstr "har"
-
-#: ../../include/taxonomy.php:314
-msgid "has"
-msgstr "har"
-
-#: ../../include/taxonomy.php:315
-msgid "want"
-msgstr "ønsker"
-
-#: ../../include/taxonomy.php:315
-msgid "wants"
-msgstr "ønsker"
-
-#: ../../include/taxonomy.php:316
-msgid "likes"
-msgstr "liker"
-
-#: ../../include/taxonomy.php:317
-msgid "dislikes"
-msgstr "misliker"
-
-#: ../../include/event.php:22 ../../include/event.php:69
-#: ../../include/bb2diaspora.php:485
-msgid "l F d, Y \\@ g:i A"
-msgstr "l F d, Y \\@ g:i A"
-
-#: ../../include/event.php:30 ../../include/event.php:73
-#: ../../include/bb2diaspora.php:491
-msgid "Starts:"
-msgstr "Starter:"
-
-#: ../../include/event.php:40 ../../include/event.php:77
-#: ../../include/bb2diaspora.php:499
-msgid "Finishes:"
-msgstr "Slutter:"
-
-#: ../../include/event.php:812
-msgid "This event has been added to your calendar."
-msgstr "Denne hendelsen er lagt til i din kalender."
-
-#: ../../include/event.php:1012
-msgid "Not specified"
-msgstr "Ikke spesifisert"
-
-#: ../../include/event.php:1013
-msgid "Needs Action"
-msgstr "Trenger handling"
-
-#: ../../include/event.php:1014
-msgid "Completed"
-msgstr "Ferdig"
-
-#: ../../include/event.php:1015
-msgid "In Process"
-msgstr "Igang"
-
-#: ../../include/event.php:1016
-msgid "Cancelled"
-msgstr "Avbrutt"
-
-#: ../../include/import.php:29
-msgid ""
-"Cannot create a duplicate channel identifier on this system. Import failed."
-msgstr "Kan ikke lage en kopi av kanal-identifikatoren på dette systemet. Import mislyktes."
-
-#: ../../include/import.php:76
-msgid "Channel clone failed. Import failed."
-msgstr "Kanalkloning mislyktes. Import mislyktes."
-
-#: ../../include/items.php:892 ../../include/items.php:937
-msgid "(Unknown)"
-msgstr "(Ukjent)"
-
-#: ../../include/items.php:1136
-msgid "Visible to anybody on the internet."
-msgstr "Synlig for enhver på Internett."
-
-#: ../../include/items.php:1138
-msgid "Visible to you only."
-msgstr "Synlig bare for deg."
-
-#: ../../include/items.php:1140
-msgid "Visible to anybody in this network."
-msgstr "Synlig for enhver i dette nettverket."
-
-#: ../../include/items.php:1142
-msgid "Visible to anybody authenticated."
-msgstr "Synlig for enhver som er autentisert."
-
-#: ../../include/items.php:1144
-#, php-format
-msgid "Visible to anybody on %s."
-msgstr "Synlig for alle på %s."
-
-#: ../../include/items.php:1146
-msgid "Visible to all connections."
-msgstr "Synlig for alle forbindelser."
-
-#: ../../include/items.php:1148
-msgid "Visible to approved connections."
-msgstr "Synlig for godkjente forbindelser."
-
-#: ../../include/items.php:1150
-msgid "Visible to specific connections."
-msgstr "Synlig for spesifikke forbindelser."
-
-#: ../../include/items.php:3909
-msgid "Privacy group is empty."
-msgstr "Personverngruppen er tom."
-
-#: ../../include/items.php:3916
-#, php-format
-msgid "Privacy group: %s"
-msgstr "Personverngruppe: %s"
-
-#: ../../include/items.php:3928
-msgid "Connection not found."
-msgstr "Forbindelsen ble ikke funnet."
-
-#: ../../include/items.php:4277
-msgid "profile photo"
-msgstr "profilbilde"
-
-#: ../../include/message.php:20
-msgid "No recipient provided."
-msgstr "Ingen mottaker angitt."
-
-#: ../../include/message.php:25
-msgid "[no subject]"
-msgstr "[ikke noe emne]"
-
-#: ../../include/message.php:45
-msgid "Unable to determine sender."
-msgstr "Kan ikke avgjøre avsender."
-
-#: ../../include/message.php:222
-msgid "Stored post could not be verified."
-msgstr "Lagret innlegg kunne ikke bekreftes."
-
-#: ../../include/text.php:428
-msgid "prev"
-msgstr "forrige"
-
-#: ../../include/text.php:430
-msgid "first"
-msgstr "første"
-
-#: ../../include/text.php:459
-msgid "last"
-msgstr "siste"
-
-#: ../../include/text.php:462
-msgid "next"
-msgstr "neste"
+#: ../../Zotlabs/Lib/PermissionDescription.php:31
+#: ../../include/acl_selectors.php:230
+msgid "Visible to your default audience"
+msgstr "Synlig for ditt standard publikum"
-#: ../../include/text.php:472
-msgid "older"
-msgstr "eldre"
+#: ../../Zotlabs/Lib/PermissionDescription.php:106
+#: ../../include/acl_selectors.php:266
+msgid "Only me"
+msgstr "Bare meg"
-#: ../../include/text.php:474
-msgid "newer"
-msgstr "nyere"
+#: ../../Zotlabs/Lib/PermissionDescription.php:107
+msgid "Public"
+msgstr "Offentlig"
-#: ../../include/text.php:863
-msgid "No connections"
-msgstr "Ingen forbindelser"
+#: ../../Zotlabs/Lib/PermissionDescription.php:108
+msgid "Anybody in the $Projectname network"
+msgstr "Enhver i $Projectname -nettverket"
-#: ../../include/text.php:888
+#: ../../Zotlabs/Lib/PermissionDescription.php:109
#, php-format
-msgid "View all %s connections"
-msgstr "Vis alle %s forbindelser"
-
-#: ../../include/text.php:1033 ../../include/text.php:1038
-msgid "poke"
-msgstr "prikk"
-
-#: ../../include/text.php:1033 ../../include/text.php:1038
-#: ../../include/conversation.php:243
-msgid "poked"
-msgstr "prikket"
-
-#: ../../include/text.php:1039
-msgid "ping"
-msgstr "varsle"
-
-#: ../../include/text.php:1039
-msgid "pinged"
-msgstr "varslet"
-
-#: ../../include/text.php:1040
-msgid "prod"
-msgstr "oppildne"
-
-#: ../../include/text.php:1040
-msgid "prodded"
-msgstr "oppildnet"
-
-#: ../../include/text.php:1041
-msgid "slap"
-msgstr "daske"
-
-#: ../../include/text.php:1041
-msgid "slapped"
-msgstr "dasket"
-
-#: ../../include/text.php:1042
-msgid "finger"
-msgstr "fingre"
-
-#: ../../include/text.php:1042
-msgid "fingered"
-msgstr "fingret"
-
-#: ../../include/text.php:1043
-msgid "rebuff"
-msgstr "tilbakevise"
-
-#: ../../include/text.php:1043
-msgid "rebuffed"
-msgstr "tilbakeviste"
-
-#: ../../include/text.php:1055
-msgid "happy"
-msgstr "glad"
-
-#: ../../include/text.php:1056
-msgid "sad"
-msgstr "trist"
-
-#: ../../include/text.php:1057
-msgid "mellow"
-msgstr "dempet"
-
-#: ../../include/text.php:1058
-msgid "tired"
-msgstr "trøtt"
-
-#: ../../include/text.php:1059
-msgid "perky"
-msgstr "oppkvikket"
-
-#: ../../include/text.php:1060
-msgid "angry"
-msgstr "sint"
-
-#: ../../include/text.php:1061
-msgid "stupefied"
-msgstr "lamslått"
-
-#: ../../include/text.php:1062
-msgid "puzzled"
-msgstr "forundret"
-
-#: ../../include/text.php:1063
-msgid "interested"
-msgstr "interessert"
-
-#: ../../include/text.php:1064
-msgid "bitter"
-msgstr "bitter"
-
-#: ../../include/text.php:1065
-msgid "cheerful"
-msgstr "munter"
-
-#: ../../include/text.php:1066
-msgid "alive"
-msgstr "levende"
-
-#: ../../include/text.php:1067
-msgid "annoyed"
-msgstr "irritert"
-
-#: ../../include/text.php:1068
-msgid "anxious"
-msgstr "nervøs"
-
-#: ../../include/text.php:1069
-msgid "cranky"
-msgstr "gretten"
-
-#: ../../include/text.php:1070
-msgid "disturbed"
-msgstr "foruroliget"
-
-#: ../../include/text.php:1071
-msgid "frustrated"
-msgstr "frustrert"
-
-#: ../../include/text.php:1072
-msgid "depressed"
-msgstr "lei seg"
-
-#: ../../include/text.php:1073
-msgid "motivated"
-msgstr "motivert"
-
-#: ../../include/text.php:1074
-msgid "relaxed"
-msgstr "avslappet"
-
-#: ../../include/text.php:1075
-msgid "surprised"
-msgstr "overrasket"
-
-#: ../../include/text.php:1257 ../../include/js_strings.php:70
-msgid "Monday"
-msgstr "mandag"
-
-#: ../../include/text.php:1257 ../../include/js_strings.php:71
-msgid "Tuesday"
-msgstr "tirsdag"
-
-#: ../../include/text.php:1257 ../../include/js_strings.php:72
-msgid "Wednesday"
-msgstr "onsdag"
-
-#: ../../include/text.php:1257 ../../include/js_strings.php:73
-msgid "Thursday"
-msgstr "torsdag"
-
-#: ../../include/text.php:1257 ../../include/js_strings.php:74
-msgid "Friday"
-msgstr "fredag"
-
-#: ../../include/text.php:1257 ../../include/js_strings.php:75
-msgid "Saturday"
-msgstr "lørdag"
-
-#: ../../include/text.php:1257 ../../include/js_strings.php:69
-msgid "Sunday"
-msgstr "søndag"
-
-#: ../../include/text.php:1261 ../../include/js_strings.php:45
-msgid "January"
-msgstr "januar"
-
-#: ../../include/text.php:1261 ../../include/js_strings.php:46
-msgid "February"
-msgstr "februar"
-
-#: ../../include/text.php:1261 ../../include/js_strings.php:47
-msgid "March"
-msgstr "mars"
-
-#: ../../include/text.php:1261 ../../include/js_strings.php:48
-msgid "April"
-msgstr "april"
-
-#: ../../include/text.php:1261
-msgid "May"
-msgstr "mai"
-
-#: ../../include/text.php:1261 ../../include/js_strings.php:50
-msgid "June"
-msgstr "juni"
-
-#: ../../include/text.php:1261 ../../include/js_strings.php:51
-msgid "July"
-msgstr "juli"
-
-#: ../../include/text.php:1261 ../../include/js_strings.php:52
-msgid "August"
-msgstr "august"
-
-#: ../../include/text.php:1261 ../../include/js_strings.php:53
-msgid "September"
-msgstr "september"
-
-#: ../../include/text.php:1261 ../../include/js_strings.php:54
-msgid "October"
-msgstr "oktober"
-
-#: ../../include/text.php:1261 ../../include/js_strings.php:55
-msgid "November"
-msgstr "november"
-
-#: ../../include/text.php:1261 ../../include/js_strings.php:56
-msgid "December"
-msgstr "desember"
-
-#: ../../include/text.php:1338 ../../include/text.php:1342
-msgid "Unknown Attachment"
-msgstr "Ukjent vedlegg"
-
-#: ../../include/text.php:1344
-msgid "unknown"
-msgstr "ukjent"
-
-#: ../../include/text.php:1380
-msgid "remove category"
-msgstr "fjern kategori"
-
-#: ../../include/text.php:1457
-msgid "remove from file"
-msgstr "fjern fra fil"
-
-#: ../../include/text.php:1753 ../../include/text.php:1824
-msgid "default"
-msgstr "standard"
+msgid "Any account on %s"
+msgstr "Enhver konto på %s"
-#: ../../include/text.php:1761
-msgid "Page layout"
-msgstr "Sidens layout"
+#: ../../Zotlabs/Lib/PermissionDescription.php:110
+msgid "Any of my connections"
+msgstr "Enhver av mine forbindelser"
-#: ../../include/text.php:1761
-msgid "You can create your own with the layouts tool"
-msgstr "Du kan lage din egen med layout-verktøyet"
+#: ../../Zotlabs/Lib/PermissionDescription.php:111
+msgid "Only connections I specifically allow"
+msgstr "Bare forbindelser som jeg spesifikt tillater"
-#: ../../include/text.php:1803
-msgid "Page content type"
-msgstr "Sidens innholdstype"
+#: ../../Zotlabs/Lib/PermissionDescription.php:112
+msgid "Anybody authenticated (could include visitors from other networks)"
+msgstr "Enhver som er autentisert (kan inkludere besøkende fra andre nettverk)"
-#: ../../include/text.php:1836
-msgid "Select an alternate language"
-msgstr "Velg et annet språk"
+#: ../../Zotlabs/Lib/PermissionDescription.php:113
+msgid "Any connections including those who haven't yet been approved"
+msgstr "Enhver forbindelse inkluder de som ennå ikke er blitt godkjent"
-#: ../../include/text.php:1953
-msgid "activity"
-msgstr "aktivitet"
+#: ../../Zotlabs/Lib/PermissionDescription.php:152
+msgid ""
+"This is your default setting for the audience of your normal stream, and "
+"posts."
+msgstr "Dette er dine standardinnstillinger for publikumet til din normale strøm og innlegg."
-#: ../../include/text.php:2262
-msgid "Design Tools"
-msgstr "Designverktøy"
+#: ../../Zotlabs/Lib/PermissionDescription.php:153
+msgid ""
+"This is your default setting for who can view your default channel profile"
+msgstr "Dette er din standardinnstilling for hvem som kan se din standard kanalprofil"
-#: ../../include/text.php:2268
-msgid "Pages"
-msgstr "Sider"
+#: ../../Zotlabs/Lib/PermissionDescription.php:154
+msgid "This is your default setting for who can view your connections"
+msgstr "Dette er din standardinnstilling for hvem som kan se dine forbindelser"
-#: ../../include/widgets.php:103
-msgid "System"
-msgstr "System"
+#: ../../Zotlabs/Lib/PermissionDescription.php:155
+msgid ""
+"This is your default setting for who can view your file storage and photos"
+msgstr "Dette er din standardinnstilling for hvem som kan se fillagreret ditt og bilder"
-#: ../../include/widgets.php:106
-msgid "New App"
-msgstr ""
+#: ../../Zotlabs/Lib/PermissionDescription.php:156
+msgid "This is your default setting for the audience of your webpages"
+msgstr "Dette er din standardinnstilling for besøkende til dine websider"
-#: ../../include/widgets.php:154
-msgid "Suggestions"
-msgstr "Forslag"
+#: ../../include/Import/import_diaspora.php:16
+msgid "No username found in import file."
+msgstr "Ingen brukernavn ble funnet i importfilen."
-#: ../../include/widgets.php:155
-msgid "See more..."
-msgstr "Se mer..."
+#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:51
+msgid "Unable to create a unique channel address. Import failed."
+msgstr "Klarte ikke å lage en unik kanaladresse. Import mislyktes."
-#: ../../include/widgets.php:175
+#: ../../include/dba/dba_driver.php:171
#, 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:181
-msgid "Add New Connection"
-msgstr "Legg til ny forbindelse"
-
-#: ../../include/widgets.php:182
-msgid "Enter channel address"
-msgstr "Skriv kanaladressen"
-
-#: ../../include/widgets.php:183
-msgid "Examples: bob@example.com, https://example.com/barbara"
-msgstr "Eksempel: ola@eksempel.no, https://eksempel.no/kari"
-
-#: ../../include/widgets.php:199
-msgid "Notes"
-msgstr "Merknader"
-
-#: ../../include/widgets.php:273
-msgid "Remove term"
-msgstr "Fjern begrep"
-
-#: ../../include/widgets.php:281 ../../include/features.php:84
-msgid "Saved Searches"
-msgstr "Lagrede søk"
-
-#: ../../include/widgets.php:282 ../../include/group.php:316
-msgid "add"
-msgstr "legg til"
-
-#: ../../include/widgets.php:310 ../../include/contact_widgets.php:53
-#: ../../include/features.php:98
-msgid "Saved Folders"
-msgstr "Lagrede mapper"
-
-#: ../../include/widgets.php:313 ../../include/widgets.php:432
-#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94
-msgid "Everything"
-msgstr "Alt"
-
-#: ../../include/widgets.php:354
-msgid "Archives"
-msgstr "Arkiv"
-
-#: ../../include/widgets.php:516
-msgid "Refresh"
-msgstr "Forny"
-
-#: ../../include/widgets.php:556
-msgid "Account settings"
-msgstr "Kontoinnstillinger"
-
-#: ../../include/widgets.php:562
-msgid "Channel settings"
-msgstr "Kanalinnstillinger"
-
-#: ../../include/widgets.php:571
-msgid "Additional features"
-msgstr "Tilleggsfunksjoner"
-
-#: ../../include/widgets.php:578
-msgid "Feature/Addon settings"
-msgstr "Funksjons-/Tilleggsinnstillinger"
-
-#: ../../include/widgets.php:584
-msgid "Display settings"
-msgstr "Visningsinnstillinger"
-
-#: ../../include/widgets.php:591
-msgid "Manage locations"
-msgstr ""
-
-#: ../../include/widgets.php:600
-msgid "Export channel"
-msgstr "Eksporter kanal"
-
-#: ../../include/widgets.php:607
-msgid "Connected apps"
-msgstr "Tilkoblede app-er"
-
-#: ../../include/widgets.php:622
-msgid "Premium Channel Settings"
-msgstr "Premiumkanal-innstillinger"
-
-#: ../../include/widgets.php:651
-msgid "Private Mail Menu"
-msgstr "Meny for privat post"
-
-#: ../../include/widgets.php:653
-msgid "Combined View"
-msgstr "Kombinert visning"
-
-#: ../../include/widgets.php:658 ../../include/nav.php:196
-msgid "Inbox"
-msgstr "Innboks"
-
-#: ../../include/widgets.php:663 ../../include/nav.php:197
-msgid "Outbox"
-msgstr "Utboks"
-
-#: ../../include/widgets.php:668 ../../include/nav.php:198
-msgid "New Message"
-msgstr "Ny melding"
-
-#: ../../include/widgets.php:685 ../../include/widgets.php:697
-msgid "Conversations"
-msgstr "Samtaler"
-
-#: ../../include/widgets.php:689
-msgid "Received Messages"
-msgstr "Mottatte meldinger"
-
-#: ../../include/widgets.php:693
-msgid "Sent Messages"
-msgstr "Sendte meldinger"
-
-#: ../../include/widgets.php:707
-msgid "No messages."
-msgstr "Ingen meldinger."
-
-#: ../../include/widgets.php:725
-msgid "Delete conversation"
-msgstr "Slett samtale"
-
-#: ../../include/widgets.php:751
-msgid "Events Menu"
-msgstr "Meny for hendelser"
-
-#: ../../include/widgets.php:752
-msgid "Day View"
-msgstr "Dag"
-
-#: ../../include/widgets.php:753
-msgid "Week View"
-msgstr "Uke"
-
-#: ../../include/widgets.php:754
-msgid "Month View"
-msgstr "Måned"
-
-#: ../../include/widgets.php:766
-msgid "Events Tools"
-msgstr "Kalenderverktøy"
-
-#: ../../include/widgets.php:767
-msgid "Export Calendar"
-msgstr "Eksporter kalender"
-
-#: ../../include/widgets.php:768
-msgid "Import Calendar"
-msgstr "Importer kalender"
-
-#: ../../include/widgets.php:842 ../../include/conversation.php:1662
-#: ../../include/conversation.php:1665
-msgid "Chatrooms"
-msgstr "Chatrom"
-
-#: ../../include/widgets.php:846
-msgid "Overview"
-msgstr ""
-
-#: ../../include/widgets.php:853
-msgid "Chat Members"
-msgstr ""
-
-#: ../../include/widgets.php:876
-msgid "Bookmarked Chatrooms"
-msgstr "Bokmerkede chatrom"
-
-#: ../../include/widgets.php:899
-msgid "Suggested Chatrooms"
-msgstr "Foreslåtte chatrom"
-
-#: ../../include/widgets.php:1044 ../../include/widgets.php:1156
-msgid "photo/image"
-msgstr "foto/bilde"
-
-#: ../../include/widgets.php:1099
-msgid "Click to show more"
-msgstr ""
-
-#: ../../include/widgets.php:1250
-msgid "Rating Tools"
-msgstr "Vurderingsverktøy"
-
-#: ../../include/widgets.php:1254 ../../include/widgets.php:1256
-msgid "Rate Me"
-msgstr "Vurder meg"
-
-#: ../../include/widgets.php:1259
-msgid "View Ratings"
-msgstr "Vis vurderinger"
-
-#: ../../include/widgets.php:1316
-msgid "Forums"
-msgstr "Forum"
-
-#: ../../include/widgets.php:1345
-msgid "Tasks"
-msgstr "Oppgaver"
-
-#: ../../include/widgets.php:1354
-msgid "Documentation"
-msgstr "Dokumentasjon"
-
-#: ../../include/widgets.php:1356
-msgid "Project/Site Information"
-msgstr "Prosjekt-/Nettstedsinformasjon"
-
-#: ../../include/widgets.php:1357
-msgid "For Members"
-msgstr "For medlemmer"
-
-#: ../../include/widgets.php:1358
-msgid "For Administrators"
-msgstr "For administratorer"
-
-#: ../../include/widgets.php:1359
-msgid "For Developers"
-msgstr "For utviklere"
-
-#: ../../include/widgets.php:1383 ../../include/widgets.php:1421
-msgid "Member registrations waiting for confirmation"
-msgstr ""
-
-#: ../../include/widgets.php:1389
-msgid "Inspect queue"
-msgstr "Inspiser kø"
-
-#: ../../include/widgets.php:1391
-msgid "DB updates"
-msgstr "Databaseoppdateringer"
-
-#: ../../include/widgets.php:1416 ../../include/nav.php:216
-msgid "Admin"
-msgstr "Administrator"
-
-#: ../../include/widgets.php:1417
-msgid "Plugin Features"
-msgstr "Tilleggsfunksjoner"
-
-#: ../../include/follow.php:27
-msgid "Channel is blocked on this site."
-msgstr "Kanalen er blokkert på dette nettstedet."
-
-#: ../../include/follow.php:32
-msgid "Channel location missing."
-msgstr "Kanalplassering mangler."
-
-#: ../../include/follow.php:81
-msgid "Response from remote channel was incomplete."
-msgstr "Svaret fra den andre kanalen var ikke komplett."
-
-#: ../../include/follow.php:98
-msgid "Channel was deleted and no longer exists."
-msgstr "Kanalen er slettet og finnes ikke lenger."
-
-#: ../../include/follow.php:154 ../../include/follow.php:190
-msgid "Protocol disabled."
-msgstr "Protokollen er avskrudd."
-
-#: ../../include/follow.php:178
-msgid "Channel discovery failed."
-msgstr "Kanaloppdagelse mislyktes."
-
-#: ../../include/follow.php:216
-msgid "Cannot connect to yourself."
-msgstr "Kan ikke lage forbindelse med deg selv."
+msgid "Cannot locate DNS info for database server '%s'"
+msgstr "Kan ikke finne DNS-informasjon om databasetjener '%s'"
-#: ../../include/bookmarks.php:35
+#: ../../include/photos.php:114
#, php-format
-msgid "%1$s's bookmarks"
-msgstr "%1$s sine bokmerker"
-
-#: ../../include/api.php:1336
-msgid "Public Timeline"
-msgstr "Offentlig tidslinje"
-
-#: ../../include/bbcode.php:123 ../../include/bbcode.php:844
-#: ../../include/bbcode.php:847 ../../include/bbcode.php:852
-#: ../../include/bbcode.php:855 ../../include/bbcode.php:858
-#: ../../include/bbcode.php:861 ../../include/bbcode.php:866
-#: ../../include/bbcode.php:869 ../../include/bbcode.php:874
-#: ../../include/bbcode.php:877 ../../include/bbcode.php:880
-#: ../../include/bbcode.php:883
-msgid "Image/photo"
-msgstr "Bilde/fotografi"
+msgid "Image exceeds website size limit of %lu bytes"
+msgstr "Bilde overstiger nettstedets størrelsesbegrensning på %lu bytes"
-#: ../../include/bbcode.php:162 ../../include/bbcode.php:894
-msgid "Encrypted content"
-msgstr "Kryptert innhold"
+#: ../../include/photos.php:121
+msgid "Image file is empty."
+msgstr "Bildefilen er tom."
-#: ../../include/bbcode.php:178
-#, php-format
-msgid "Install %s element: "
-msgstr "Installer %s element:"
+#: ../../include/photos.php:259
+msgid "Photo storage failed."
+msgstr "Bildelagring mislyktes."
-#: ../../include/bbcode.php:182
-#, 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/photos.php:299
+msgid "a new photo"
+msgstr "et nytt bilde"
-#: ../../include/bbcode.php:254
+#: ../../include/photos.php:303
#, 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:331 ../../include/bbcode.php:339
-msgid "Click to open/close"
-msgstr "Klikk for å åpne/lukke"
-
-#: ../../include/bbcode.php:339
-msgid "spoiler"
-msgstr ""
-
-#: ../../include/bbcode.php:585
-msgid "Different viewers will see this text differently"
-msgstr "Denne teksten vil se forskjellig ut for ulike besøkende"
-
-#: ../../include/bbcode.php:832
-msgid "$1 wrote:"
-msgstr "$1 skrev:"
-
-#: ../../include/dir_fns.php:141
-msgid "Directory Options"
-msgstr "Kataloginnstillinger"
-
-#: ../../include/dir_fns.php:143
-msgid "Safe Mode"
-msgstr "Trygt modus"
-
-#: ../../include/dir_fns.php:144
-msgid "Public Forums Only"
-msgstr "Bare offentlige forum"
+msgctxt "photo_upload"
+msgid "%1$s posted %2$s to %3$s"
+msgstr "%1$s la inn %2$s til %3$s"
-#: ../../include/dir_fns.php:145
-msgid "This Website Only"
-msgstr "Kun dette nettstedet"
+#: ../../include/photos.php:506 ../../include/conversation.php:1650
+msgid "Photo Albums"
+msgstr "Fotoalbum"
-#: ../../include/security.php:383
-msgid ""
-"The form security token was not correct. This probably happened because the "
-"form has been opened for too long (>3 hours) before submitting it."
-msgstr "Skjemaets sikkerhetspollett var ikke gyldig. Dette skjedde antakelig fordi skjemaet har vært åpnet for lenge (>3 timer) før det ble sendt inn."
+#: ../../include/photos.php:510
+msgid "Upload New Photos"
+msgstr "Last opp nye bilder"
-#: ../../include/nav.php:82 ../../include/nav.php:113 ../../boot.php:1702
+#: ../../include/nav.php:82 ../../include/nav.php:115 ../../boot.php:1703
msgid "Logout"
msgstr "Logg ut"
-#: ../../include/nav.php:82 ../../include/nav.php:113
+#: ../../include/nav.php:82 ../../include/nav.php:115
msgid "End this session"
msgstr "Avslutt denne økten"
-#: ../../include/nav.php:85 ../../include/nav.php:144
+#: ../../include/nav.php:85 ../../include/nav.php:146
msgid "Home"
msgstr "Hjem"
@@ -7598,7 +7171,7 @@ msgstr "Din profilside"
msgid "Manage/Edit profiles"
msgstr "Håndter/endre profiler"
-#: ../../include/nav.php:90 ../../include/channel.php:941
+#: ../../include/nav.php:90 ../../include/channel.php:980
msgid "Edit Profile"
msgstr "Endre profil"
@@ -7618,7 +7191,7 @@ msgstr "Dine filer"
msgid "Your chatrooms"
msgstr "Dine chatterom"
-#: ../../include/nav.php:102 ../../include/conversation.php:1675
+#: ../../include/nav.php:102 ../../include/conversation.php:1690
msgid "Bookmarks"
msgstr "Bokmerker"
@@ -7630,181 +7203,408 @@ msgstr "Dine bokmerker"
msgid "Your webpages"
msgstr "Dine websider"
-#: ../../include/nav.php:110
+#: ../../include/nav.php:108
+msgid "Your wiki"
+msgstr ""
+
+#: ../../include/nav.php:112
msgid "Sign in"
msgstr "Logg på"
-#: ../../include/nav.php:127
+#: ../../include/nav.php:129
#, php-format
msgid "%s - click to logout"
msgstr "%s - klikk for å logge ut"
-#: ../../include/nav.php:130
+#: ../../include/nav.php:132
msgid "Remote authentication"
msgstr "Fjernautentisering"
-#: ../../include/nav.php:130
+#: ../../include/nav.php:132
msgid "Click to authenticate to your home hub"
msgstr "Klikk for å godkjennes mot din hjemme-hub"
-#: ../../include/nav.php:144
+#: ../../include/nav.php:146
msgid "Home Page"
msgstr "Hjemmeside"
-#: ../../include/nav.php:147
+#: ../../include/nav.php:149
msgid "Create an account"
msgstr "Lag en konto"
-#: ../../include/nav.php:159
+#: ../../include/nav.php:161
msgid "Help and documentation"
msgstr "Hjelp og dokumentasjon"
-#: ../../include/nav.php:163
+#: ../../include/nav.php:165
msgid "Applications, utilities, links, games"
msgstr "Programmer, verktøy, lenker, spill"
-#: ../../include/nav.php:165
+#: ../../include/nav.php:167
msgid "Search site @name, #tag, ?docs, content"
msgstr "Søk nettstedet for @navn, #merkelapp, ?dokumentasjon, innhold"
-#: ../../include/nav.php:167
+#: ../../include/nav.php:169
msgid "Channel Directory"
msgstr "Kanalkatalog"
-#: ../../include/nav.php:179
+#: ../../include/nav.php:181
msgid "Your grid"
msgstr "Ditt nett"
-#: ../../include/nav.php:180
+#: ../../include/nav.php:182
msgid "Mark all grid notifications seen"
msgstr "Marker alle nettvarsler som sett"
-#: ../../include/nav.php:182
+#: ../../include/nav.php:184
msgid "Channel home"
msgstr "Kanalhjem"
-#: ../../include/nav.php:183
+#: ../../include/nav.php:185
msgid "Mark all channel notifications seen"
msgstr "Merk alle kanalvarsler som sett"
-#: ../../include/nav.php:189
+#: ../../include/nav.php:191
msgid "Notices"
msgstr "Varsel"
-#: ../../include/nav.php:189
+#: ../../include/nav.php:191
msgid "Notifications"
msgstr "Varsler"
-#: ../../include/nav.php:190
+#: ../../include/nav.php:192
msgid "See all notifications"
msgstr "Se alle varsler"
-#: ../../include/nav.php:193
+#: ../../include/nav.php:195
msgid "Private mail"
msgstr "Privat post"
-#: ../../include/nav.php:194
+#: ../../include/nav.php:196
msgid "See all private messages"
msgstr "Se alle private meldinger"
-#: ../../include/nav.php:195
+#: ../../include/nav.php:197
msgid "Mark all private messages seen"
msgstr "Merk alle private meldinger som sett"
-#: ../../include/nav.php:201
+#: ../../include/nav.php:198 ../../include/widgets.php:667
+msgid "Inbox"
+msgstr "Innboks"
+
+#: ../../include/nav.php:199 ../../include/widgets.php:672
+msgid "Outbox"
+msgstr "Utboks"
+
+#: ../../include/nav.php:200 ../../include/widgets.php:677
+msgid "New Message"
+msgstr "Ny melding"
+
+#: ../../include/nav.php:203
msgid "Event Calendar"
msgstr "Kalender"
-#: ../../include/nav.php:202
+#: ../../include/nav.php:204
msgid "See all events"
msgstr "Se alle hendelser"
-#: ../../include/nav.php:203
+#: ../../include/nav.php:205
msgid "Mark all events seen"
msgstr "Merk alle hendelser som sett"
-#: ../../include/nav.php:206
+#: ../../include/nav.php:208
msgid "Manage Your Channels"
msgstr "Håndter dine kanaler"
-#: ../../include/nav.php:208
+#: ../../include/nav.php:210
msgid "Account/Channel Settings"
msgstr "Konto-/kanal-innstillinger"
-#: ../../include/nav.php:216
+#: ../../include/nav.php:218 ../../include/widgets.php:1510
+msgid "Admin"
+msgstr "Administrator"
+
+#: ../../include/nav.php:218
msgid "Site Setup and Configuration"
msgstr "Nettstedsoppsett og -konfigurasjon"
-#: ../../include/nav.php:247 ../../include/conversation.php:851
+#: ../../include/nav.php:249 ../../include/conversation.php:854
msgid "Loading..."
msgstr "Laster..."
-#: ../../include/nav.php:252
+#: ../../include/nav.php:254
msgid "@name, #tag, ?doc, content"
msgstr "@navn, #merkelapp, ?dokumentasjon, innhold"
-#: ../../include/nav.php:253
+#: ../../include/nav.php:255
msgid "Please wait..."
msgstr "Vennligst vent..."
-#: ../../include/connections.php:95
-msgid "New window"
-msgstr "Nytt vindu"
+#: ../../include/network.php:704
+msgid "view full size"
+msgstr "vis full størrelse"
-#: ../../include/connections.php:96
-msgid "Open the selected location in a different window or browser tab"
-msgstr "Åpne det valgte stedet i et annet vindu eller nettleser-fane"
+#: ../../include/network.php:1930 ../../include/account.php:317
+#: ../../include/account.php:344 ../../include/account.php:404
+msgid "Administrator"
+msgstr "Administrator"
-#: ../../include/connections.php:214
-#, php-format
-msgid "User '%s' deleted"
-msgstr "Brukeren '%s' er slettet"
+#: ../../include/network.php:1944
+msgid "No Subject"
+msgstr "Uten emne"
-#: ../../include/contact_widgets.php:11
-#, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] "%d invitasjon tilgjengelig"
-msgstr[1] "%d invitasjoner tilgjengelig"
+#: ../../include/network.php:2198 ../../include/network.php:2199
+msgid "Friendica"
+msgstr "Friendica"
-#: ../../include/contact_widgets.php:19
-msgid "Find Channels"
-msgstr "Finn kanaler"
+#: ../../include/network.php:2200
+msgid "OStatus"
+msgstr "OStatus"
-#: ../../include/contact_widgets.php:20
-msgid "Enter name or interest"
-msgstr "Skriv navn eller interesse"
+#: ../../include/network.php:2201
+msgid "GNU-Social"
+msgstr "GNU-Social"
-#: ../../include/contact_widgets.php:21
-msgid "Connect/Follow"
-msgstr "Forbindelse/Følg"
+#: ../../include/network.php:2202
+msgid "RSS/Atom"
+msgstr "RSS/Atom"
-#: ../../include/contact_widgets.php:22
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr "Eksempler: Ola Nordmann, fisking"
+#: ../../include/network.php:2204
+msgid "Diaspora"
+msgstr "Diaspora"
-#: ../../include/contact_widgets.php:26
-msgid "Random Profile"
-msgstr "Tilfeldig profil"
+#: ../../include/network.php:2205
+msgid "Facebook"
+msgstr "Facebook"
-#: ../../include/contact_widgets.php:27
-msgid "Invite Friends"
-msgstr "Inviter venner"
+#: ../../include/network.php:2206
+msgid "Zot"
+msgstr "Zot"
-#: ../../include/contact_widgets.php:29
-msgid "Advanced example: name=fred and country=iceland"
-msgstr "Avansert eksempel: navn=fred og land=island"
+#: ../../include/network.php:2207
+msgid "LinkedIn"
+msgstr "LinkedIn"
-#: ../../include/contact_widgets.php:122
+#: ../../include/network.php:2208
+msgid "XMPP/IM"
+msgstr "XMPP/IM"
+
+#: ../../include/network.php:2209
+msgid "MySpace"
+msgstr "MySpace"
+
+#: ../../include/page_widgets.php:7
+msgid "New Page"
+msgstr "Ny side"
+
+#: ../../include/page_widgets.php:46
+msgid "Title"
+msgstr "Tittel"
+
+#: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270
+#: ../../include/widgets.php:46 ../../include/widgets.php:429
+#: ../../include/contact_widgets.php:91
+msgid "Categories"
+msgstr "Kategorier"
+
+#: ../../include/taxonomy.php:228 ../../include/taxonomy.php:249
+msgid "Tags"
+msgstr "Merkelapper"
+
+#: ../../include/taxonomy.php:293
+msgid "Keywords"
+msgstr "Nøkkelord"
+
+#: ../../include/taxonomy.php:314
+msgid "have"
+msgstr "har"
+
+#: ../../include/taxonomy.php:314
+msgid "has"
+msgstr "har"
+
+#: ../../include/taxonomy.php:315
+msgid "want"
+msgstr "ønsker"
+
+#: ../../include/taxonomy.php:315
+msgid "wants"
+msgstr "ønsker"
+
+#: ../../include/taxonomy.php:316
+msgid "likes"
+msgstr "liker"
+
+#: ../../include/taxonomy.php:317
+msgid "dislikes"
+msgstr "misliker"
+
+#: ../../include/channel.php:33
+msgid "Unable to obtain identity information from database"
+msgstr "Klarer ikke å få tak i identitetsinformasjon fra databasen"
+
+#: ../../include/channel.php:67
+msgid "Empty name"
+msgstr "Mangler navn"
+
+#: ../../include/channel.php:70
+msgid "Name too long"
+msgstr "Navnet er for langt"
+
+#: ../../include/channel.php:181
+msgid "No account identifier"
+msgstr "Ingen kontoidentifikator"
+
+#: ../../include/channel.php:193
+msgid "Nickname is required."
+msgstr "Kallenavn er påkrevd."
+
+#: ../../include/channel.php:207
+msgid "Reserved nickname. Please choose another."
+msgstr "Reservert kallenavn. Vennligst velg et annet."
+
+#: ../../include/channel.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/channel.php:272
+msgid "Unable to retrieve created identity"
+msgstr "Klarer ikke å hente den lagede identiteten"
+
+#: ../../include/channel.php:341
+msgid "Default Profile"
+msgstr "Standardprofil"
+
+#: ../../include/channel.php:830
+msgid "Requested channel is not available."
+msgstr "Forespurt kanal er ikke tilgjengelig."
+
+#: ../../include/channel.php:977
+msgid "Create New Profile"
+msgstr "Lag ny profil"
+
+#: ../../include/channel.php:997
+msgid "Visible to everybody"
+msgstr "Synlig for alle"
+
+#: ../../include/channel.php:1070 ../../include/channel.php:1182
+msgid "Gender:"
+msgstr "Kjønn:"
+
+#: ../../include/channel.php:1071 ../../include/channel.php:1226
+msgid "Status:"
+msgstr "Status:"
+
+#: ../../include/channel.php:1072 ../../include/channel.php:1237
+msgid "Homepage:"
+msgstr "Hjemmeside:"
+
+#: ../../include/channel.php:1073
+msgid "Online Now"
+msgstr "Online nå"
+
+#: ../../include/channel.php:1187
+msgid "Like this channel"
+msgstr "Lik denne kanalen"
+
+#: ../../include/channel.php:1211
+msgid "j F, Y"
+msgstr "j F, Y"
+
+#: ../../include/channel.php:1212
+msgid "j F"
+msgstr "j F"
+
+#: ../../include/channel.php:1219
+msgid "Birthday:"
+msgstr "Fødselsdag:"
+
+#: ../../include/channel.php:1232
#, php-format
-msgid "%d connection in common"
-msgid_plural "%d connections in common"
-msgstr[0] "%d forbindelse felles"
-msgstr[1] "%d forbindelser felles"
+msgid "for %1$d %2$s"
+msgstr "for %1$d %2$s"
-#: ../../include/contact_widgets.php:127
-msgid "show more"
-msgstr "vis mer"
+#: ../../include/channel.php:1235
+msgid "Sexual Preference:"
+msgstr "Seksuell preferanse:"
+
+#: ../../include/channel.php:1241
+msgid "Tags:"
+msgstr "Merkelapper:"
+
+#: ../../include/channel.php:1243
+msgid "Political Views:"
+msgstr "Politiske synspunkter:"
+
+#: ../../include/channel.php:1245
+msgid "Religion:"
+msgstr "Religion:"
+
+#: ../../include/channel.php:1249
+msgid "Hobbies/Interests:"
+msgstr "Hobbyer/interesser:"
+
+#: ../../include/channel.php:1251
+msgid "Likes:"
+msgstr "Liker:"
+
+#: ../../include/channel.php:1253
+msgid "Dislikes:"
+msgstr "Misliker:"
+
+#: ../../include/channel.php:1255
+msgid "Contact information and Social Networks:"
+msgstr "Kontaktinformasjon og sosiale nettverk:"
+
+#: ../../include/channel.php:1257
+msgid "My other channels:"
+msgstr "Mine andre kanaler:"
+
+#: ../../include/channel.php:1259
+msgid "Musical interests:"
+msgstr "Musikkinteresse:"
+
+#: ../../include/channel.php:1261
+msgid "Books, literature:"
+msgstr "Bøker, litteratur:"
+
+#: ../../include/channel.php:1263
+msgid "Television:"
+msgstr "TV:"
+
+#: ../../include/channel.php:1265
+msgid "Film/dance/culture/entertainment:"
+msgstr "Film/dans/kultur/underholdning:"
+
+#: ../../include/channel.php:1267
+msgid "Love/Romance:"
+msgstr "Kjærlighet/romantikk:"
+
+#: ../../include/channel.php:1269
+msgid "Work/employment:"
+msgstr "Arbeid/sysselsetting:"
+
+#: ../../include/channel.php:1271
+msgid "School/education:"
+msgstr "Skole/utdannelse:"
+
+#: ../../include/channel.php:1292
+msgid "Like this thing"
+msgstr "Lik denne tingen"
+
+#: ../../include/connections.php:95
+msgid "New window"
+msgstr "Nytt vindu"
+
+#: ../../include/connections.php:96
+msgid "Open the selected location in a different window or browser tab"
+msgstr "Åpne det valgte stedet i et annet vindu eller nettleser-fane"
+
+#: ../../include/connections.php:214
+#, php-format
+msgid "User '%s' deleted"
+msgstr "Brukeren '%s' er slettet"
#: ../../include/conversation.php:204
#, php-format
@@ -7816,258 +7616,269 @@ msgstr "%1$s er nå forbundet med %2$s"
msgid "%1$s poked %2$s"
msgstr "%1$s prikket %2$s"
-#: ../../include/conversation.php:691
+#: ../../include/conversation.php:243 ../../include/text.php:1013
+#: ../../include/text.php:1018
+msgid "poked"
+msgstr "prikket"
+
+#: ../../include/conversation.php:694
#, php-format
msgid "View %s's profile @ %s"
msgstr "Vis %s sin profile @ %s"
-#: ../../include/conversation.php:710
+#: ../../include/conversation.php:713
msgid "Categories:"
msgstr "Kategorier:"
-#: ../../include/conversation.php:711
+#: ../../include/conversation.php:714
msgid "Filed under:"
msgstr "Sortert under:"
-#: ../../include/conversation.php:738
+#: ../../include/conversation.php:741
msgid "View in context"
msgstr "Vis i sammenheng"
-#: ../../include/conversation.php:847
+#: ../../include/conversation.php:850
msgid "remove"
msgstr "fjern"
-#: ../../include/conversation.php:852
+#: ../../include/conversation.php:855
msgid "Delete Selected Items"
msgstr "Slett valgte elementer"
-#: ../../include/conversation.php:948
+#: ../../include/conversation.php:951
msgid "View Source"
msgstr "Vis kilde"
-#: ../../include/conversation.php:949
+#: ../../include/conversation.php:952
msgid "Follow Thread"
msgstr "Følg tråd"
-#: ../../include/conversation.php:950
+#: ../../include/conversation.php:953
msgid "Unfollow Thread"
msgstr "Ikke følg tråd"
-#: ../../include/conversation.php:955
+#: ../../include/conversation.php:958
msgid "Activity/Posts"
msgstr "Aktivitet/Innlegg"
-#: ../../include/conversation.php:957
+#: ../../include/conversation.php:960
msgid "Edit Connection"
msgstr "Endre forbindelse"
-#: ../../include/conversation.php:958
+#: ../../include/conversation.php:961
msgid "Message"
msgstr "Melding"
-#: ../../include/conversation.php:1075
+#: ../../include/conversation.php:1078
#, php-format
msgid "%s likes this."
msgstr "%s liker dette."
-#: ../../include/conversation.php:1075
+#: ../../include/conversation.php:1078
#, php-format
msgid "%s doesn't like this."
msgstr "%s liker ikke dette."
-#: ../../include/conversation.php:1079
+#: ../../include/conversation.php:1082
#, 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:1081
+#: ../../include/conversation.php:1084
#, 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:1087
+#: ../../include/conversation.php:1090
msgid "and"
msgstr "og"
-#: ../../include/conversation.php:1090
+#: ../../include/conversation.php:1093
#, 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:1091
+#: ../../include/conversation.php:1094
#, php-format
msgid "%s like this."
msgstr "%s liker dette."
-#: ../../include/conversation.php:1091
+#: ../../include/conversation.php:1094
#, php-format
msgid "%s don't like this."
msgstr "%s liker ikke dette."
-#: ../../include/conversation.php:1130
+#: ../../include/conversation.php:1133
msgid "Set your location"
msgstr "Angi din plassering"
-#: ../../include/conversation.php:1131
+#: ../../include/conversation.php:1134
msgid "Clear browser location"
msgstr "Fjern nettleserplassering"
-#: ../../include/conversation.php:1177
+#: ../../include/conversation.php:1182
msgid "Tag term:"
msgstr "Merkelapp:"
-#: ../../include/conversation.php:1178
+#: ../../include/conversation.php:1183
msgid "Where are you right now?"
msgstr "Hvor er du akkurat nå?"
-#: ../../include/conversation.php:1210
+#: ../../include/conversation.php:1221
msgid "Page link name"
msgstr "Sidens lenkenavn"
-#: ../../include/conversation.php:1213
+#: ../../include/conversation.php:1224
msgid "Post as"
msgstr "Lag innlegg som"
-#: ../../include/conversation.php:1223
+#: ../../include/conversation.php:1238
msgid "Toggle voting"
msgstr "Skru av eller på stemming"
-#: ../../include/conversation.php:1231
+#: ../../include/conversation.php:1246
msgid "Categories (optional, comma-separated list)"
msgstr "Kategorier (valgfri, kommaseparert liste)"
-#: ../../include/conversation.php:1254
+#: ../../include/conversation.php:1269
msgid "Set publish date"
msgstr "Angi publiseringsdato"
-#: ../../include/conversation.php:1258
-msgid "OK"
-msgstr "OK"
-
-#: ../../include/conversation.php:1503
+#: ../../include/conversation.php:1518
msgid "Discover"
msgstr "Oppdage"
-#: ../../include/conversation.php:1506
+#: ../../include/conversation.php:1521
msgid "Imported public streams"
msgstr "Importerte offentlige strømmer"
-#: ../../include/conversation.php:1511
+#: ../../include/conversation.php:1526
msgid "Commented Order"
msgstr "Kommentert"
-#: ../../include/conversation.php:1514
+#: ../../include/conversation.php:1529
msgid "Sort by Comment Date"
msgstr "Sorter etter kommentert dato"
-#: ../../include/conversation.php:1518
+#: ../../include/conversation.php:1533
msgid "Posted Order"
msgstr "Lagt inn"
-#: ../../include/conversation.php:1521
+#: ../../include/conversation.php:1536
msgid "Sort by Post Date"
msgstr "Sorter etter innleggsdato"
-#: ../../include/conversation.php:1529
+#: ../../include/conversation.php:1544
msgid "Posts that mention or involve you"
msgstr "Innlegg som nevner eller involverer deg"
-#: ../../include/conversation.php:1538
+#: ../../include/conversation.php:1553
msgid "Activity Stream - by date"
msgstr "Aktivitetsstrøm - etter dato"
-#: ../../include/conversation.php:1544
+#: ../../include/conversation.php:1559
msgid "Starred"
msgstr "Stjerne"
-#: ../../include/conversation.php:1547
+#: ../../include/conversation.php:1562
msgid "Favourite Posts"
msgstr "Favorittinnlegg"
-#: ../../include/conversation.php:1554
+#: ../../include/conversation.php:1569
msgid "Spam"
msgstr "Søppel"
-#: ../../include/conversation.php:1557
+#: ../../include/conversation.php:1572
msgid "Posts flagged as SPAM"
msgstr "Innlegg merket som SØPPEL"
-#: ../../include/conversation.php:1614
+#: ../../include/conversation.php:1629
msgid "Status Messages and Posts"
msgstr "Statusmeldinger og -innlegg"
-#: ../../include/conversation.php:1623
+#: ../../include/conversation.php:1638
msgid "About"
msgstr "Om"
-#: ../../include/conversation.php:1626
+#: ../../include/conversation.php:1641
msgid "Profile Details"
msgstr "Profildetaljer"
-#: ../../include/conversation.php:1635 ../../include/photos.php:502
-msgid "Photo Albums"
-msgstr "Fotoalbum"
-
-#: ../../include/conversation.php:1642
+#: ../../include/conversation.php:1657
msgid "Files and Storage"
msgstr "Filer og lagring"
-#: ../../include/conversation.php:1678
+#: ../../include/conversation.php:1677 ../../include/conversation.php:1680
+#: ../../include/widgets.php:836
+msgid "Chatrooms"
+msgstr "Chatrom"
+
+#: ../../include/conversation.php:1693
msgid "Saved Bookmarks"
msgstr "Lagrede bokmerker"
-#: ../../include/conversation.php:1688
+#: ../../include/conversation.php:1703
msgid "Manage Webpages"
msgstr "Håndtere websider"
-#: ../../include/conversation.php:1747
+#: ../../include/conversation.php:1768
msgctxt "noun"
msgid "Attending"
msgid_plural "Attending"
msgstr[0] "Deltar"
msgstr[1] "Deltar"
-#: ../../include/conversation.php:1750
+#: ../../include/conversation.php:1771
msgctxt "noun"
msgid "Not Attending"
msgid_plural "Not Attending"
msgstr[0] "Deltar ikke"
msgstr[1] "Deltar ikke"
-#: ../../include/conversation.php:1753
+#: ../../include/conversation.php:1774
msgctxt "noun"
msgid "Undecided"
msgid_plural "Undecided"
msgstr[0] "Ikke bestemt"
msgstr[1] "Ikke bestemt"
-#: ../../include/conversation.php:1756
+#: ../../include/conversation.php:1777
msgctxt "noun"
msgid "Agree"
msgid_plural "Agrees"
msgstr[0] "Enig"
msgstr[1] "Enige"
-#: ../../include/conversation.php:1759
+#: ../../include/conversation.php:1780
msgctxt "noun"
msgid "Disagree"
msgid_plural "Disagrees"
msgstr[0] "Uenig"
msgstr[1] "Uenige"
-#: ../../include/conversation.php:1762
+#: ../../include/conversation.php:1783
msgctxt "noun"
msgid "Abstain"
msgid_plural "Abstains"
msgstr[0] "Avstår"
msgstr[1] "Avstår"
+#: ../../include/import.php:30
+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:97
+msgid "Channel clone failed. Import failed."
+msgstr "Kanalkloning mislyktes. Import mislyktes."
+
#: ../../include/selectors.php:30
msgid "Frequently"
msgstr "Ofte"
@@ -8132,12 +7943,6 @@ msgstr "Intetkjønn"
msgid "Non-specific"
msgstr "Ubestemt"
-#: ../../include/selectors.php:49 ../../include/selectors.php:66
-#: ../../include/selectors.php:104 ../../include/selectors.php:140
-#: ../../include/permissions.php:881
-msgid "Other"
-msgstr "Annen"
-
#: ../../include/selectors.php:49
msgid "Undecided"
msgstr "Ubestemt"
@@ -8314,361 +8119,366 @@ msgstr "Bryr meg ikke"
msgid "Ask me"
msgstr "Spør meg"
-#: ../../include/PermissionDescription.php:31
-#: ../../include/acl_selectors.php:232
-msgid "Visible to your default audience"
-msgstr "Synlig for ditt standard publikum"
+#: ../../include/bookmarks.php:35
+#, php-format
+msgid "%1$s's bookmarks"
+msgstr "%1$s sine bokmerker"
-#: ../../include/PermissionDescription.php:115
-#: ../../include/acl_selectors.php:268
-msgid "Only me"
+#: ../../include/security.php:109
+msgid "guest:"
msgstr ""
-#: ../../include/PermissionDescription.php:116
-msgid "Public"
-msgstr "Offentlig"
+#: ../../include/security.php:427
+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/PermissionDescription.php:117
-msgid "Anybody in the $Projectname network"
-msgstr ""
+#: ../../include/text.php:404
+msgid "prev"
+msgstr "forrige"
-#: ../../include/PermissionDescription.php:118
-#, php-format
-msgid "Any account on %s"
-msgstr ""
+#: ../../include/text.php:406
+msgid "first"
+msgstr "første"
-#: ../../include/PermissionDescription.php:119
-msgid "Any of my connections"
-msgstr ""
+#: ../../include/text.php:435
+msgid "last"
+msgstr "siste"
-#: ../../include/PermissionDescription.php:120
-msgid "Only connections I specifically allow"
-msgstr ""
+#: ../../include/text.php:438
+msgid "next"
+msgstr "neste"
-#: ../../include/PermissionDescription.php:121
-msgid "Anybody authenticated (could include visitors from other networks)"
-msgstr ""
+#: ../../include/text.php:448
+msgid "older"
+msgstr "eldre"
-#: ../../include/PermissionDescription.php:122
-msgid "Any connections including those who haven't yet been approved"
-msgstr ""
+#: ../../include/text.php:450
+msgid "newer"
+msgstr "nyere"
-#: ../../include/PermissionDescription.php:161
-msgid ""
-"This is your default setting for the audience of your normal stream, and "
-"posts."
-msgstr ""
+#: ../../include/text.php:843
+msgid "No connections"
+msgstr "Ingen forbindelser"
-#: ../../include/PermissionDescription.php:162
-msgid ""
-"This is your default setting for who can view your default channel profile"
-msgstr ""
+#: ../../include/text.php:868
+#, php-format
+msgid "View all %s connections"
+msgstr "Vis alle %s forbindelser"
-#: ../../include/PermissionDescription.php:163
-msgid "This is your default setting for who can view your connections"
-msgstr ""
+#: ../../include/text.php:1013 ../../include/text.php:1018
+msgid "poke"
+msgstr "prikk"
-#: ../../include/PermissionDescription.php:164
-msgid ""
-"This is your default setting for who can view your file storage and photos"
-msgstr ""
+#: ../../include/text.php:1019
+msgid "ping"
+msgstr "varsle"
-#: ../../include/PermissionDescription.php:165
-msgid "This is your default setting for the audience of your webpages"
-msgstr ""
+#: ../../include/text.php:1019
+msgid "pinged"
+msgstr "varslet"
-#: ../../include/account.php:28
-msgid "Not a valid email address"
-msgstr "Ikke en gyldig e-postadresse"
+#: ../../include/text.php:1020
+msgid "prod"
+msgstr "oppildne"
-#: ../../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:1020
+msgid "prodded"
+msgstr "oppildnet"
-#: ../../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:1021
+msgid "slap"
+msgstr "daske"
-#: ../../include/account.php:68
-msgid "An invitation is required."
-msgstr "En invitasjon er påkrevd."
+#: ../../include/text.php:1021
+msgid "slapped"
+msgstr "dasket"
-#: ../../include/account.php:72
-msgid "Invitation could not be verified."
-msgstr "Invitasjon kunne ikke bekreftes."
+#: ../../include/text.php:1022
+msgid "finger"
+msgstr "fingre"
-#: ../../include/account.php:122
-msgid "Please enter the required information."
-msgstr "Vennligst skriv inn nødvendig informasjon."
+#: ../../include/text.php:1022
+msgid "fingered"
+msgstr "fingret"
-#: ../../include/account.php:189
-msgid "Failed to store account information."
-msgstr "Mislyktes med å lagre kontoinformasjon."
+#: ../../include/text.php:1023
+msgid "rebuff"
+msgstr "tilbakevise"
-#: ../../include/account.php:249
-#, php-format
-msgid "Registration confirmation for %s"
-msgstr "Registreringsbekreftelse for %s"
+#: ../../include/text.php:1023
+msgid "rebuffed"
+msgstr "tilbakeviste"
-#: ../../include/account.php:315
-#, php-format
-msgid "Registration request at %s"
-msgstr "Registreringsforespørsel hos %s"
+#: ../../include/text.php:1035
+msgid "happy"
+msgstr "glad"
-#: ../../include/account.php:317 ../../include/account.php:344
-#: ../../include/account.php:404 ../../include/network.php:1871
-msgid "Administrator"
-msgstr "Administrator"
+#: ../../include/text.php:1036
+msgid "sad"
+msgstr "trist"
-#: ../../include/account.php:339
-msgid "your registration password"
-msgstr "ditt registreringspassord"
+#: ../../include/text.php:1037
+msgid "mellow"
+msgstr "dempet"
-#: ../../include/account.php:342 ../../include/account.php:402
-#, php-format
-msgid "Registration details for %s"
-msgstr "Registreringsdetaljer for %s"
+#: ../../include/text.php:1038
+msgid "tired"
+msgstr "trøtt"
-#: ../../include/account.php:414
-msgid "Account approved."
-msgstr "Konto godkjent."
+#: ../../include/text.php:1039
+msgid "perky"
+msgstr "oppkvikket"
-#: ../../include/account.php:454
-#, php-format
-msgid "Registration revoked for %s"
-msgstr "Registrering trukket tilbake for %s"
+#: ../../include/text.php:1040
+msgid "angry"
+msgstr "sint"
-#: ../../include/account.php:506
-msgid "Account verified. Please login."
-msgstr "Konto bekreftet. Vennligst logg inn."
+#: ../../include/text.php:1041
+msgid "stupefied"
+msgstr "lamslått"
-#: ../../include/account.php:723 ../../include/account.php:725
-msgid "Click here to upgrade."
-msgstr "Klikk her for å oppgradere."
+#: ../../include/text.php:1042
+msgid "puzzled"
+msgstr "forundret"
-#: ../../include/account.php:731
-msgid "This action exceeds the limits set by your subscription plan."
-msgstr "Denne handlingen går utenfor grensene satt i din abonnementsplan."
+#: ../../include/text.php:1043
+msgid "interested"
+msgstr "interessert"
-#: ../../include/account.php:736
-msgid "This action is not available under your subscription plan."
-msgstr "Denne handlingen er ikke tilgjengelig i din abonnementsplan."
+#: ../../include/text.php:1044
+msgid "bitter"
+msgstr "bitter"
-#: ../../include/attach.php:247 ../../include/attach.php:333
-msgid "Item was not found."
-msgstr "Elementet ble ikke funnet."
+#: ../../include/text.php:1045
+msgid "cheerful"
+msgstr "munter"
-#: ../../include/attach.php:497
-msgid "No source file."
-msgstr "Ingen kildefil."
+#: ../../include/text.php:1046
+msgid "alive"
+msgstr "levende"
-#: ../../include/attach.php:519
-msgid "Cannot locate file to replace"
-msgstr "Kan ikke finne filen som skal byttes ut"
+#: ../../include/text.php:1047
+msgid "annoyed"
+msgstr "irritert"
-#: ../../include/attach.php:537
-msgid "Cannot locate file to revise/update"
-msgstr "Finner ikke filen som skal revideres/oppdateres"
+#: ../../include/text.php:1048
+msgid "anxious"
+msgstr "nervøs"
-#: ../../include/attach.php:672
-#, php-format
-msgid "File exceeds size limit of %d"
-msgstr "Filens størrelse overgår grensen på %d"
+#: ../../include/text.php:1049
+msgid "cranky"
+msgstr "gretten"
-#: ../../include/attach.php:686
-#, php-format
-msgid "You have reached your limit of %1$.0f Mbytes attachment storage."
-msgstr "Du har nådd din lagringsgrense for vedlegg på %1$.0f Mbytes."
+#: ../../include/text.php:1050
+msgid "disturbed"
+msgstr "foruroliget"
-#: ../../include/attach.php:842
-msgid "File upload failed. Possible system limit or action terminated."
-msgstr "Mislyktes med å laste opp filen. Mulig systemgrense eller handling avbrutt."
+#: ../../include/text.php:1051
+msgid "frustrated"
+msgstr "frustrert"
-#: ../../include/attach.php:855
-msgid "Stored file could not be verified. Upload failed."
-msgstr "Lagret fil kunne ikke bekreftes. Opplasting mislyktes."
+#: ../../include/text.php:1052
+msgid "depressed"
+msgstr "lei seg"
-#: ../../include/attach.php:909 ../../include/attach.php:925
-msgid "Path not available."
-msgstr "Stien er ikke tilgjengelig."
+#: ../../include/text.php:1053
+msgid "motivated"
+msgstr "motivert"
-#: ../../include/attach.php:971 ../../include/attach.php:1123
-msgid "Empty pathname"
-msgstr "Tomt sti-navn"
+#: ../../include/text.php:1054
+msgid "relaxed"
+msgstr "avslappet"
-#: ../../include/attach.php:997
-msgid "duplicate filename or path"
-msgstr "duplikat av filnavn eller sti"
+#: ../../include/text.php:1055
+msgid "surprised"
+msgstr "overrasket"
-#: ../../include/attach.php:1019
-msgid "Path not found."
-msgstr "Stien ble ikke funnet."
+#: ../../include/text.php:1237 ../../include/js_strings.php:70
+msgid "Monday"
+msgstr "mandag"
-#: ../../include/attach.php:1077
-msgid "mkdir failed."
-msgstr "mkdir mislyktes."
+#: ../../include/text.php:1237 ../../include/js_strings.php:71
+msgid "Tuesday"
+msgstr "tirsdag"
-#: ../../include/attach.php:1081
-msgid "database storage failed."
-msgstr "databaselagring mislyktes."
+#: ../../include/text.php:1237 ../../include/js_strings.php:72
+msgid "Wednesday"
+msgstr "onsdag"
-#: ../../include/attach.php:1129
-msgid "Empty path"
-msgstr "Tom sti"
+#: ../../include/text.php:1237 ../../include/js_strings.php:73
+msgid "Thursday"
+msgstr "torsdag"
-#: ../../include/channel.php:32
-msgid "Unable to obtain identity information from database"
-msgstr "Klarer ikke å få tak i identitetsinformasjon fra databasen"
+#: ../../include/text.php:1237 ../../include/js_strings.php:74
+msgid "Friday"
+msgstr "fredag"
-#: ../../include/channel.php:66
-msgid "Empty name"
-msgstr "Mangler navn"
+#: ../../include/text.php:1237 ../../include/js_strings.php:75
+msgid "Saturday"
+msgstr "lørdag"
-#: ../../include/channel.php:69
-msgid "Name too long"
-msgstr "Navnet er for langt"
+#: ../../include/text.php:1237 ../../include/js_strings.php:69
+msgid "Sunday"
+msgstr "søndag"
-#: ../../include/channel.php:180
-msgid "No account identifier"
-msgstr "Ingen kontoidentifikator"
+#: ../../include/text.php:1241 ../../include/js_strings.php:45
+msgid "January"
+msgstr "januar"
-#: ../../include/channel.php:192
-msgid "Nickname is required."
-msgstr "Kallenavn er påkrevd."
+#: ../../include/text.php:1241 ../../include/js_strings.php:46
+msgid "February"
+msgstr "februar"
-#: ../../include/channel.php:206
-msgid "Reserved nickname. Please choose another."
-msgstr "Reservert kallenavn. Vennligst velg et annet."
+#: ../../include/text.php:1241 ../../include/js_strings.php:47
+msgid "March"
+msgstr "mars"
-#: ../../include/channel.php:211
-msgid ""
-"Nickname has unsupported characters or is already being used on this site."
-msgstr "Kallenavnet inneholder tegn som ikke er støttet eller det er allerede i bruk på dette nettstedet."
+#: ../../include/text.php:1241 ../../include/js_strings.php:48
+msgid "April"
+msgstr "april"
-#: ../../include/channel.php:287
-msgid "Unable to retrieve created identity"
-msgstr "Klarer ikke å hente den lagede identiteten"
+#: ../../include/text.php:1241
+msgid "May"
+msgstr "mai"
-#: ../../include/channel.php:345
-msgid "Default Profile"
-msgstr "Standardprofil"
+#: ../../include/text.php:1241 ../../include/js_strings.php:50
+msgid "June"
+msgstr "juni"
-#: ../../include/channel.php:791
-msgid "Requested channel is not available."
-msgstr "Forespurt kanal er ikke tilgjengelig."
+#: ../../include/text.php:1241 ../../include/js_strings.php:51
+msgid "July"
+msgstr "juli"
-#: ../../include/channel.php:938
-msgid "Create New Profile"
-msgstr "Lag ny profil"
+#: ../../include/text.php:1241 ../../include/js_strings.php:52
+msgid "August"
+msgstr "august"
-#: ../../include/channel.php:958
-msgid "Visible to everybody"
-msgstr ""
+#: ../../include/text.php:1241 ../../include/js_strings.php:53
+msgid "September"
+msgstr "september"
-#: ../../include/channel.php:1031 ../../include/channel.php:1142
-msgid "Gender:"
-msgstr "Kjønn:"
+#: ../../include/text.php:1241 ../../include/js_strings.php:54
+msgid "October"
+msgstr "oktober"
-#: ../../include/channel.php:1032 ../../include/channel.php:1186
-msgid "Status:"
-msgstr "Status:"
+#: ../../include/text.php:1241 ../../include/js_strings.php:55
+msgid "November"
+msgstr "november"
-#: ../../include/channel.php:1033 ../../include/channel.php:1197
-msgid "Homepage:"
-msgstr "Hjemmeside:"
+#: ../../include/text.php:1241 ../../include/js_strings.php:56
+msgid "December"
+msgstr "desember"
-#: ../../include/channel.php:1034
-msgid "Online Now"
-msgstr "Online nå"
+#: ../../include/text.php:1318 ../../include/text.php:1322
+msgid "Unknown Attachment"
+msgstr "Ukjent vedlegg"
-#: ../../include/channel.php:1147
-msgid "Like this channel"
-msgstr "Lik denne kanalen"
+#: ../../include/text.php:1324
+msgid "unknown"
+msgstr "ukjent"
-#: ../../include/channel.php:1171
-msgid "j F, Y"
-msgstr "j F, Y"
+#: ../../include/text.php:1360
+msgid "remove category"
+msgstr "fjern kategori"
-#: ../../include/channel.php:1172
-msgid "j F"
-msgstr "j F"
+#: ../../include/text.php:1437
+msgid "remove from file"
+msgstr "fjern fra fil"
-#: ../../include/channel.php:1179
-msgid "Birthday:"
-msgstr "Fødselsdag:"
+#: ../../include/text.php:1734 ../../include/text.php:1805
+msgid "default"
+msgstr "standard"
-#: ../../include/channel.php:1192
-#, php-format
-msgid "for %1$d %2$s"
-msgstr "for %1$d %2$s"
+#: ../../include/text.php:1742
+msgid "Page layout"
+msgstr "Sidens layout"
-#: ../../include/channel.php:1195
-msgid "Sexual Preference:"
-msgstr "Seksuell preferanse:"
+#: ../../include/text.php:1742
+msgid "You can create your own with the layouts tool"
+msgstr "Du kan lage din egen med layout-verktøyet"
-#: ../../include/channel.php:1201
-msgid "Tags:"
-msgstr "Merkelapper:"
+#: ../../include/text.php:1784
+msgid "Page content type"
+msgstr "Sidens innholdstype"
-#: ../../include/channel.php:1203
-msgid "Political Views:"
-msgstr "Politiske synspunkter:"
+#: ../../include/text.php:1817
+msgid "Select an alternate language"
+msgstr "Velg et annet språk"
-#: ../../include/channel.php:1205
-msgid "Religion:"
-msgstr "Religion:"
+#: ../../include/text.php:1934
+msgid "activity"
+msgstr "aktivitet"
-#: ../../include/channel.php:1209
-msgid "Hobbies/Interests:"
-msgstr "Hobbyer/interesser:"
+#: ../../include/text.php:2235
+msgid "Design Tools"
+msgstr "Designverktøy"
-#: ../../include/channel.php:1211
-msgid "Likes:"
-msgstr "Liker:"
+#: ../../include/text.php:2241
+msgid "Pages"
+msgstr "Sider"
-#: ../../include/channel.php:1213
-msgid "Dislikes:"
-msgstr "Misliker:"
+#: ../../include/auth.php:147
+msgid "Logged out."
+msgstr "Logget ut."
-#: ../../include/channel.php:1215
-msgid "Contact information and Social Networks:"
-msgstr "Kontaktinformasjon og sosiale nettverk:"
+#: ../../include/auth.php:274
+msgid "Failed authentication"
+msgstr "Mislykket autentisering"
-#: ../../include/channel.php:1217
-msgid "My other channels:"
-msgstr "Mine andre kanaler:"
+#: ../../include/permissions.php:26
+msgid "Can view my normal stream and posts"
+msgstr "Kan se min normale strøm og innlegg"
-#: ../../include/channel.php:1219
-msgid "Musical interests:"
-msgstr "Musikkinteresse:"
+#: ../../include/permissions.php:30
+msgid "Can view my webpages"
+msgstr "Kan se mine websider"
-#: ../../include/channel.php:1221
-msgid "Books, literature:"
-msgstr "Bøker, litteratur:"
+#: ../../include/permissions.php:34
+msgid "Can post on my channel page (\"wall\")"
+msgstr "Kan lage innlegg på min kanalside (\"vegg\")"
-#: ../../include/channel.php:1223
-msgid "Television:"
-msgstr "TV:"
+#: ../../include/permissions.php:37
+msgid "Can like/dislike stuff"
+msgstr "Kan like/ikke like forskjellige greier"
-#: ../../include/channel.php:1225
-msgid "Film/dance/culture/entertainment:"
-msgstr "Film/dans/kultur/underholdning:"
+#: ../../include/permissions.php:37
+msgid "Profiles and things other than posts/comments"
+msgstr "Profiler og andre ting enn innlegg/kommentarer"
-#: ../../include/channel.php:1227
-msgid "Love/Romance:"
-msgstr "Kjærlighet/romantikk:"
+#: ../../include/permissions.php:39
+msgid "Can forward to all my channel contacts via post @mentions"
+msgstr "Kan videresende til alle mine kanalkontakter via @navn i innlegg"
-#: ../../include/channel.php:1229
-msgid "Work/employment:"
-msgstr "Arbeid/sysselsetting:"
+#: ../../include/permissions.php:39
+msgid "Advanced - useful for creating group forum channels"
+msgstr "Avansert - nyttig for å lage forumkanaler for grupper"
-#: ../../include/channel.php:1231
-msgid "School/education:"
-msgstr "Skole/utdannelse:"
+#: ../../include/permissions.php:40
+msgid "Can chat with me (when available)"
+msgstr "Kan chatte/sende lynmeldinger til meg (når tilgjengelig)"
-#: ../../include/channel.php:1251
-msgid "Like this thing"
-msgstr "Lik denne tingen"
+#: ../../include/permissions.php:41
+msgid "Can write to my file storage and photos"
+msgstr "Kan skrive til mitt lager for filer og bilder"
+
+#: ../../include/permissions.php:42
+msgid "Can edit my webpages"
+msgstr "Kan endre mine websider"
+
+#: ../../include/permissions.php:44
+msgid "Somewhat advanced - very useful in open communities"
+msgstr "Litt avansert - svært nyttig i åpne fellesskap"
+
+#: ../../include/permissions.php:46
+msgid "Can administer my channel resources"
+msgstr "Kan administrere mine kanalressurser"
+
+#: ../../include/permissions.php:46
+msgid ""
+"Extremely advanced. Leave this alone unless you know what you are doing"
+msgstr "Ekstremt avansert. La dette være med mindre du vet hva du gjør"
#: ../../include/features.php:48
msgid "General Features"
@@ -8715,420 +8525,861 @@ msgid "Provide managed web pages on your channel"
msgstr "Tilby kontrollerte web-sider på din kanal"
#: ../../include/features.php:55
+msgid "Provide a wiki for your channel"
+msgstr ""
+
+#: ../../include/features.php:56
msgid "Hide Rating"
msgstr "Skjul vurdering"
-#: ../../include/features.php:55
+#: ../../include/features.php:56
msgid ""
"Hide the rating buttons on your channel and profile pages. Note: People can "
"still rate you somewhere else."
msgstr "Skjul vurderingsknappene for din kanal og profilsider. Merknad: folk kan fortsatt vurdere deg et annet sted."
-#: ../../include/features.php:56
+#: ../../include/features.php:57
msgid "Private Notes"
msgstr "Private merknader"
-#: ../../include/features.php:56
+#: ../../include/features.php:57
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/features.php:57
+#: ../../include/features.php:58
msgid "Navigation Channel Select"
msgstr "Navigasjon kanalvalg"
-#: ../../include/features.php:57
+#: ../../include/features.php:58
msgid "Change channels directly from within the navigation dropdown menu"
msgstr "Endre kanaler direkte fra navigasjonsmenyen"
-#: ../../include/features.php:58
+#: ../../include/features.php:59
msgid "Photo Location"
msgstr "Bildeplassering"
-#: ../../include/features.php:58
+#: ../../include/features.php:59
msgid "If location data is available on uploaded photos, link this to a map."
msgstr "Hvis plasseringsdata er tilgjengelige i opplastede bilder, plasser dette på et kart."
-#: ../../include/features.php:59
+#: ../../include/features.php:60
msgid "Access Controlled Chatrooms"
-msgstr ""
+msgstr "Tilgangsstyrte chatrom"
-#: ../../include/features.php:59
+#: ../../include/features.php:60
msgid "Provide chatrooms and chat services with access control."
-msgstr ""
+msgstr "Tilby chatrom og chattjenester med tilgangskontroll."
-#: ../../include/features.php:60
+#: ../../include/features.php:61
msgid "Smart Birthdays"
-msgstr ""
+msgstr "Smarte fødselsdager"
-#: ../../include/features.php:60
+#: ../../include/features.php:61
msgid ""
"Make birthday events timezone aware in case your friends are scattered "
"across the planet."
-msgstr ""
+msgstr "Gjør fødselsdagshendelser oppmerksom på tidsoner i tilfelle dine venner er spredt rundt planeten."
-#: ../../include/features.php:61
+#: ../../include/features.php:62
msgid "Expert Mode"
msgstr "Ekspertmodus"
-#: ../../include/features.php:61
+#: ../../include/features.php:62
msgid "Enable Expert Mode to provide advanced configuration options"
msgstr "Skru på Ekspertmodus for å tilby avanserte konfigurasjonsvalg"
-#: ../../include/features.php:62
+#: ../../include/features.php:63
msgid "Premium Channel"
msgstr "Premiumkanal"
-#: ../../include/features.php:62
+#: ../../include/features.php:63
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/features.php:67
+#: ../../include/features.php:68
msgid "Post Composition Features"
msgstr "Funksjoner for å lage innlegg"
-#: ../../include/features.php:70
+#: ../../include/features.php:71
msgid "Large Photos"
msgstr "Store bilder"
-#: ../../include/features.php:70
+#: ../../include/features.php:71
msgid ""
"Include large (1024px) photo thumbnails in posts. If not enabled, use small "
"(640px) photo thumbnails"
msgstr "Inkluder store (1024px) småbilder i innlegg. Hvis denne ikke er påskrudd, bruk små (640px) småbilder."
-#: ../../include/features.php:71
+#: ../../include/features.php:72
msgid "Automatically import channel content from other channels or feeds"
msgstr "Automatisk import av kanalinnhold fra andre kanaler eller strømmer"
-#: ../../include/features.php:72
+#: ../../include/features.php:73
msgid "Even More Encryption"
msgstr "Enda mer kryptering"
-#: ../../include/features.php:72
+#: ../../include/features.php:73
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:73
+#: ../../include/features.php:74
msgid "Enable Voting Tools"
msgstr "Skru på verktøy for å stemme"
-#: ../../include/features.php:73
+#: ../../include/features.php:74
msgid "Provide a class of post which others can vote on"
msgstr "Tilby en type innlegg som andre kan stemme på"
-#: ../../include/features.php:74
+#: ../../include/features.php:75
msgid "Delayed Posting"
msgstr "Tidfest publisering"
-#: ../../include/features.php:74
+#: ../../include/features.php:75
msgid "Allow posts to be published at a later date"
msgstr "Tillat innlegg å bli publisert på et senere tidspunkt"
-#: ../../include/features.php:75
+#: ../../include/features.php:76
msgid "Suppress Duplicate Posts/Comments"
msgstr "Forhindre duplikat av innlegg/kommentarer"
-#: ../../include/features.php:75
+#: ../../include/features.php:76
msgid ""
"Prevent posts with identical content to be published with less than two "
"minutes in between submissions."
msgstr "Forhindre innlegg med identisk innhold fra å bli publisert hvis det er mindre enn to minutter mellom innsendingene."
-#: ../../include/features.php:81
+#: ../../include/features.php:82
msgid "Network and Stream Filtering"
msgstr "Nettverk- og strømfiltrering"
-#: ../../include/features.php:82
+#: ../../include/features.php:83
msgid "Search by Date"
msgstr "Søk etter dato"
-#: ../../include/features.php:82
+#: ../../include/features.php:83
msgid "Ability to select posts by date ranges"
msgstr "Mulighet for å velge innlegg etter datoområde"
-#: ../../include/features.php:83 ../../include/group.php:311
+#: ../../include/features.php:84 ../../include/group.php:311
msgid "Privacy Groups"
msgstr "Personverngrupper"
-#: ../../include/features.php:83
+#: ../../include/features.php:84
msgid "Enable management and selection of privacy groups"
msgstr "Skru på håndtering og valg av personverngrupper"
-#: ../../include/features.php:84
+#: ../../include/features.php:85 ../../include/widgets.php:281
+msgid "Saved Searches"
+msgstr "Lagrede søk"
+
+#: ../../include/features.php:85
msgid "Save search terms for re-use"
msgstr "Lagre søkeuttrykk for senere bruk"
-#: ../../include/features.php:85
+#: ../../include/features.php:86
msgid "Network Personal Tab"
msgstr "Nettverk personlig fane"
-#: ../../include/features.php:85
+#: ../../include/features.php:86
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:86
+#: ../../include/features.php:87
msgid "Network New Tab"
msgstr "Nettverk Ny fane"
-#: ../../include/features.php:86
+#: ../../include/features.php:87
msgid "Enable tab to display all new Network activity"
msgstr "Skru på fane for å vise all ny nettverksaktivitet"
-#: ../../include/features.php:87
+#: ../../include/features.php:88
msgid "Affinity Tool"
msgstr "Nærhetsverktøy"
-#: ../../include/features.php:87
+#: ../../include/features.php:88
msgid "Filter stream activity by depth of relationships"
msgstr "Filtrer strømaktiviteten etter releasjonsdybde"
-#: ../../include/features.php:88
+#: ../../include/features.php:89
msgid "Connection Filtering"
msgstr "Filtrer forbindelser"
-#: ../../include/features.php:88
+#: ../../include/features.php:89
msgid "Filter incoming posts from connections based on keywords/content"
msgstr "Filtrer innkommende innlegg fra forbindelser basert på nøkkelord/innhold"
-#: ../../include/features.php:89
+#: ../../include/features.php:90
msgid "Show channel suggestions"
msgstr "Vis kanalforslag"
-#: ../../include/features.php:94
+#: ../../include/features.php:95
msgid "Post/Comment Tools"
msgstr "Innlegg-/Kommentar-verktøy"
-#: ../../include/features.php:95
+#: ../../include/features.php:96
msgid "Community Tagging"
msgstr "Felleskapsmerkelapper"
-#: ../../include/features.php:95
+#: ../../include/features.php:96
msgid "Ability to tag existing posts"
msgstr "Mulighet til å merke eksisterende meldinger"
-#: ../../include/features.php:96
+#: ../../include/features.php:97
msgid "Post Categories"
msgstr "Innleggskategorier"
-#: ../../include/features.php:96
+#: ../../include/features.php:97
msgid "Add categories to your posts"
msgstr "Legg kategorier til dine innlegg"
-#: ../../include/features.php:97
+#: ../../include/features.php:98
msgid "Emoji Reactions"
-msgstr ""
+msgstr "Emoji-reaksjoner"
-#: ../../include/features.php:97
+#: ../../include/features.php:98
msgid "Add emoji reaction ability to posts"
-msgstr ""
+msgstr "Legg til muligheten for emoji-reaksjoner på innlegg"
-#: ../../include/features.php:98
+#: ../../include/features.php:99 ../../include/widgets.php:310
+#: ../../include/contact_widgets.php:53
+msgid "Saved Folders"
+msgstr "Lagrede mapper"
+
+#: ../../include/features.php:99
msgid "Ability to file posts under folders"
msgstr "Mulighet til å sortere innlegg i mapper"
-#: ../../include/features.php:99
+#: ../../include/features.php:100
msgid "Dislike Posts"
msgstr "Mislik innlegg"
-#: ../../include/features.php:99
+#: ../../include/features.php:100
msgid "Ability to dislike posts/comments"
msgstr "Mulighet til å mislike innlegg/kommentarer"
-#: ../../include/features.php:100
+#: ../../include/features.php:101
msgid "Star Posts"
msgstr "Stjerneinnlegg"
-#: ../../include/features.php:100
+#: ../../include/features.php:101
msgid "Ability to mark special posts with a star indicator"
msgstr "Mulighet til å merke spesielle innlegg med en stjerne"
-#: ../../include/features.php:101
+#: ../../include/features.php:102
msgid "Tag Cloud"
msgstr "Merkelappsky"
-#: ../../include/features.php:101
+#: ../../include/features.php:102
msgid "Provide a personal tag cloud on your channel page"
msgstr "Tilby en personlig merkelappsky på din kanalside"
-#: ../../include/oembed.php:324
+#: ../../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:248
+msgid "Add new connections to this privacy group"
+msgstr "Legg nye forbindelser i denne personverngruppen"
+
+#: ../../include/group.php:289
+msgid "edit"
+msgstr "endre"
+
+#: ../../include/group.php:312
+msgid "Edit group"
+msgstr "Endre gruppe"
+
+#: ../../include/group.php:313
+msgid "Add privacy group"
+msgstr "Legg til personverngruppe"
+
+#: ../../include/group.php:314
+msgid "Channels not in any privacy group"
+msgstr "Kanaler uten personverngruppe"
+
+#: ../../include/group.php:316 ../../include/widgets.php:282
+msgid "add"
+msgstr "legg til"
+
+#: ../../include/event.php:22 ../../include/event.php:69
+#: ../../include/bb2diaspora.php:485
+msgid "l F d, Y \\@ g:i A"
+msgstr "l F d, Y \\@ g:i A"
+
+#: ../../include/event.php:30 ../../include/event.php:73
+#: ../../include/bb2diaspora.php:491
+msgid "Starts:"
+msgstr "Starter:"
+
+#: ../../include/event.php:40 ../../include/event.php:77
+#: ../../include/bb2diaspora.php:499
+msgid "Finishes:"
+msgstr "Slutter:"
+
+#: ../../include/event.php:814
+msgid "This event has been added to your calendar."
+msgstr "Denne hendelsen er lagt til i din kalender."
+
+#: ../../include/event.php:1014
+msgid "Not specified"
+msgstr "Ikke spesifisert"
+
+#: ../../include/event.php:1015
+msgid "Needs Action"
+msgstr "Trenger handling"
+
+#: ../../include/event.php:1016
+msgid "Completed"
+msgstr "Ferdig"
+
+#: ../../include/event.php:1017
+msgid "In Process"
+msgstr "Igang"
+
+#: ../../include/event.php:1018
+msgid "Cancelled"
+msgstr "Avbrutt"
+
+#: ../../include/account.php:28
+msgid "Not a valid email address"
+msgstr "Ikke en gyldig e-postadresse"
+
+#: ../../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/account.php:36
+msgid "Your email address is already registered at this site."
+msgstr "Din e-postadresse er allerede registrert på dette nettstedet."
+
+#: ../../include/account.php:68
+msgid "An invitation is required."
+msgstr "En invitasjon er påkrevd."
+
+#: ../../include/account.php:72
+msgid "Invitation could not be verified."
+msgstr "Invitasjon kunne ikke bekreftes."
+
+#: ../../include/account.php:122
+msgid "Please enter the required information."
+msgstr "Vennligst skriv inn nødvendig informasjon."
+
+#: ../../include/account.php:189
+msgid "Failed to store account information."
+msgstr "Mislyktes med å lagre kontoinformasjon."
+
+#: ../../include/account.php:249
+#, php-format
+msgid "Registration confirmation for %s"
+msgstr "Registreringsbekreftelse for %s"
+
+#: ../../include/account.php:315
+#, php-format
+msgid "Registration request at %s"
+msgstr "Registreringsforespørsel hos %s"
+
+#: ../../include/account.php:339
+msgid "your registration password"
+msgstr "ditt registreringspassord"
+
+#: ../../include/account.php:342 ../../include/account.php:402
+#, php-format
+msgid "Registration details for %s"
+msgstr "Registreringsdetaljer for %s"
+
+#: ../../include/account.php:414
+msgid "Account approved."
+msgstr "Konto godkjent."
+
+#: ../../include/account.php:454
+#, php-format
+msgid "Registration revoked for %s"
+msgstr "Registrering trukket tilbake for %s"
+
+#: ../../include/account.php:739 ../../include/account.php:741
+msgid "Click here to upgrade."
+msgstr "Klikk her for å oppgradere."
+
+#: ../../include/account.php:747
+msgid "This action exceeds the limits set by your subscription plan."
+msgstr "Denne handlingen går utenfor grensene satt i din abonnementsplan."
+
+#: ../../include/account.php:752
+msgid "This action is not available under your subscription plan."
+msgstr "Denne handlingen er ikke tilgjengelig i din abonnementsplan."
+
+#: ../../include/follow.php:27
+msgid "Channel is blocked on this site."
+msgstr "Kanalen er blokkert på dette nettstedet."
+
+#: ../../include/follow.php:32
+msgid "Channel location missing."
+msgstr "Kanalplassering mangler."
+
+#: ../../include/follow.php:80
+msgid "Response from remote channel was incomplete."
+msgstr "Svaret fra den andre kanalen var ikke komplett."
+
+#: ../../include/follow.php:97
+msgid "Channel was deleted and no longer exists."
+msgstr "Kanalen er slettet og finnes ikke lenger."
+
+#: ../../include/follow.php:147 ../../include/follow.php:183
+msgid "Protocol disabled."
+msgstr "Protokollen er avskrudd."
+
+#: ../../include/follow.php:171
+msgid "Channel discovery failed."
+msgstr "Kanaloppdagelse mislyktes."
+
+#: ../../include/follow.php:210
+msgid "Cannot connect to yourself."
+msgstr "Kan ikke lage forbindelse med deg selv."
+
+#: ../../include/attach.php:247 ../../include/attach.php:333
+msgid "Item was not found."
+msgstr "Elementet ble ikke funnet."
+
+#: ../../include/attach.php:499
+msgid "No source file."
+msgstr "Ingen kildefil."
+
+#: ../../include/attach.php:521
+msgid "Cannot locate file to replace"
+msgstr "Kan ikke finne filen som skal byttes ut"
+
+#: ../../include/attach.php:539
+msgid "Cannot locate file to revise/update"
+msgstr "Finner ikke filen som skal revideres/oppdateres"
+
+#: ../../include/attach.php:674
+#, php-format
+msgid "File exceeds size limit of %d"
+msgstr "Filens størrelse overgår grensen på %d"
+
+#: ../../include/attach.php:688
+#, php-format
+msgid "You have reached your limit of %1$.0f Mbytes attachment storage."
+msgstr "Du har nådd din lagringsgrense for vedlegg på %1$.0f Mbytes."
+
+#: ../../include/attach.php:846
+msgid "File upload failed. Possible system limit or action terminated."
+msgstr "Mislyktes med å laste opp filen. Mulig systemgrense eller handling avbrutt."
+
+#: ../../include/attach.php:859
+msgid "Stored file could not be verified. Upload failed."
+msgstr "Lagret fil kunne ikke bekreftes. Opplasting mislyktes."
+
+#: ../../include/attach.php:915 ../../include/attach.php:931
+msgid "Path not available."
+msgstr "Stien er ikke tilgjengelig."
+
+#: ../../include/attach.php:977 ../../include/attach.php:1129
+msgid "Empty pathname"
+msgstr "Tomt sti-navn"
+
+#: ../../include/attach.php:1003
+msgid "duplicate filename or path"
+msgstr "duplikat av filnavn eller sti"
+
+#: ../../include/attach.php:1025
+msgid "Path not found."
+msgstr "Stien ble ikke funnet."
+
+#: ../../include/attach.php:1083
+msgid "mkdir failed."
+msgstr "mkdir mislyktes."
+
+#: ../../include/attach.php:1087
+msgid "database storage failed."
+msgstr "databaselagring mislyktes."
+
+#: ../../include/attach.php:1135
+msgid "Empty path"
+msgstr "Tom sti"
+
+#: ../../include/bbcode.php:123 ../../include/bbcode.php:878
+#: ../../include/bbcode.php:881 ../../include/bbcode.php:886
+#: ../../include/bbcode.php:889 ../../include/bbcode.php:892
+#: ../../include/bbcode.php:895 ../../include/bbcode.php:900
+#: ../../include/bbcode.php:903 ../../include/bbcode.php:908
+#: ../../include/bbcode.php:911 ../../include/bbcode.php:914
+#: ../../include/bbcode.php:917
+msgid "Image/photo"
+msgstr "Bilde/fotografi"
+
+#: ../../include/bbcode.php:162 ../../include/bbcode.php:928
+msgid "Encrypted content"
+msgstr "Kryptert innhold"
+
+#: ../../include/bbcode.php:178
+#, php-format
+msgid "Install %s element: "
+msgstr "Installer %s element:"
+
+#: ../../include/bbcode.php:182
+#, 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:261
+#, 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:338 ../../include/bbcode.php:346
+msgid "Click to open/close"
+msgstr "Klikk for å åpne/lukke"
+
+#: ../../include/bbcode.php:346
+msgid "spoiler"
+msgstr "avsløring"
+
+#: ../../include/bbcode.php:619
+msgid "Different viewers will see this text differently"
+msgstr "Denne teksten vil se forskjellig ut for ulike besøkende"
+
+#: ../../include/bbcode.php:866
+msgid "$1 wrote:"
+msgstr "$1 skrev:"
+
+#: ../../include/items.php:897 ../../include/items.php:942
+msgid "(Unknown)"
+msgstr "(Ukjent)"
+
+#: ../../include/items.php:1141
+msgid "Visible to anybody on the internet."
+msgstr "Synlig for enhver på Internett."
+
+#: ../../include/items.php:1143
+msgid "Visible to you only."
+msgstr "Synlig bare for deg."
+
+#: ../../include/items.php:1145
+msgid "Visible to anybody in this network."
+msgstr "Synlig for enhver i dette nettverket."
+
+#: ../../include/items.php:1147
+msgid "Visible to anybody authenticated."
+msgstr "Synlig for enhver som er autentisert."
+
+#: ../../include/items.php:1149
+#, php-format
+msgid "Visible to anybody on %s."
+msgstr "Synlig for alle på %s."
+
+#: ../../include/items.php:1151
+msgid "Visible to all connections."
+msgstr "Synlig for alle forbindelser."
+
+#: ../../include/items.php:1153
+msgid "Visible to approved connections."
+msgstr "Synlig for godkjente forbindelser."
+
+#: ../../include/items.php:1155
+msgid "Visible to specific connections."
+msgstr "Synlig for spesifikke forbindelser."
+
+#: ../../include/items.php:3918
+msgid "Privacy group is empty."
+msgstr "Personverngruppen er tom."
+
+#: ../../include/items.php:3925
+#, php-format
+msgid "Privacy group: %s"
+msgstr "Personverngruppe: %s"
+
+#: ../../include/items.php:3937
+msgid "Connection not found."
+msgstr "Forbindelsen ble ikke funnet."
+
+#: ../../include/items.php:4290
+msgid "profile photo"
+msgstr "profilbilde"
+
+#: ../../include/oembed.php:336
msgid "Embedded content"
msgstr "Innebygget innhold"
-#: ../../include/oembed.php:333
+#: ../../include/oembed.php:345
msgid "Embedding disabled"
msgstr "Innbygging avskrudd"
-#: ../../include/acl_selectors.php:271
-msgid "Who can see this?"
-msgstr ""
+#: ../../include/widgets.php:103
+msgid "System"
+msgstr "System"
-#: ../../include/acl_selectors.php:272
-msgid "Custom selection"
-msgstr ""
+#: ../../include/widgets.php:106
+msgid "New App"
+msgstr "Ny app"
-#: ../../include/acl_selectors.php:273
-msgid ""
-"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit"
-" the scope of \"Show\"."
-msgstr ""
+#: ../../include/widgets.php:154
+msgid "Suggestions"
+msgstr "Forslag"
-#: ../../include/acl_selectors.php:274
-msgid "Show"
-msgstr "Vis"
+#: ../../include/widgets.php:155
+msgid "See more..."
+msgstr "Se mer..."
-#: ../../include/acl_selectors.php:275
-msgid "Don't show"
-msgstr "Ikke vis"
+#: ../../include/widgets.php:175
+#, php-format
+msgid "You have %1$.0f of %2$.0f allowed connections."
+msgstr "Du har %1$.0f av %2$.0f tillate forbindelser."
-#: ../../include/acl_selectors.php:281
-msgid "Other networks and post services"
-msgstr "Andre nettverk og innleggstjenester"
+#: ../../include/widgets.php:181
+msgid "Add New Connection"
+msgstr "Legg til ny forbindelse"
-#: ../../include/acl_selectors.php:311
-#, php-format
-msgid ""
-"Post permissions %s cannot be changed %s after a post is shared.</br />These"
-" permissions set who is allowed to view the post."
-msgstr ""
+#: ../../include/widgets.php:182
+msgid "Enter channel address"
+msgstr "Skriv kanaladressen"
-#: ../../include/auth.php:105
-msgid "Logged out."
-msgstr "Logget ut."
+#: ../../include/widgets.php:183
+msgid "Examples: bob@example.com, https://example.com/barbara"
+msgstr "Eksempel: ola@eksempel.no, https://eksempel.no/kari"
-#: ../../include/auth.php:212
-msgid "Failed authentication"
-msgstr "Mislykket autentisering"
+#: ../../include/widgets.php:199
+msgid "Notes"
+msgstr "Merknader"
-#: ../../include/datetime.php:135
-msgid "Birthday"
+#: ../../include/widgets.php:273
+msgid "Remove term"
+msgstr "Fjern begrep"
+
+#: ../../include/widgets.php:313 ../../include/widgets.php:432
+#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94
+msgid "Everything"
+msgstr "Alt"
+
+#: ../../include/widgets.php:354
+msgid "Archives"
+msgstr "Arkiv"
+
+#: ../../include/widgets.php:516
+msgid "Refresh"
+msgstr "Forny"
+
+#: ../../include/widgets.php:556
+msgid "Account settings"
+msgstr "Kontoinnstillinger"
+
+#: ../../include/widgets.php:562
+msgid "Channel settings"
+msgstr "Kanalinnstillinger"
+
+#: ../../include/widgets.php:571
+msgid "Additional features"
+msgstr "Tilleggsfunksjoner"
+
+#: ../../include/widgets.php:578
+msgid "Feature/Addon settings"
+msgstr "Funksjons-/Tilleggsinnstillinger"
+
+#: ../../include/widgets.php:584
+msgid "Display settings"
+msgstr "Visningsinnstillinger"
+
+#: ../../include/widgets.php:591
+msgid "Manage locations"
+msgstr "Håndter plasseringer"
+
+#: ../../include/widgets.php:600
+msgid "Export channel"
+msgstr "Eksporter kanal"
+
+#: ../../include/widgets.php:607
+msgid "Connected apps"
+msgstr "Tilkoblede app-er"
+
+#: ../../include/widgets.php:631
+msgid "Premium Channel Settings"
+msgstr "Premiumkanal-innstillinger"
+
+#: ../../include/widgets.php:660
+msgid "Private Mail Menu"
+msgstr "Meny for privat post"
+
+#: ../../include/widgets.php:662
+msgid "Combined View"
+msgstr "Kombinert visning"
+
+#: ../../include/widgets.php:694 ../../include/widgets.php:706
+msgid "Conversations"
+msgstr "Samtaler"
+
+#: ../../include/widgets.php:698
+msgid "Received Messages"
+msgstr "Mottatte meldinger"
+
+#: ../../include/widgets.php:702
+msgid "Sent Messages"
+msgstr "Sendte meldinger"
+
+#: ../../include/widgets.php:716
+msgid "No messages."
+msgstr "Ingen meldinger."
+
+#: ../../include/widgets.php:734
+msgid "Delete conversation"
+msgstr "Slett samtale"
+
+#: ../../include/widgets.php:760
+msgid "Events Tools"
+msgstr "Kalenderverktøy"
+
+#: ../../include/widgets.php:761
+msgid "Export Calendar"
+msgstr "Eksporter kalender"
+
+#: ../../include/widgets.php:762
+msgid "Import Calendar"
+msgstr "Importer kalender"
+
+#: ../../include/widgets.php:840
+msgid "Overview"
+msgstr "Overblikk"
+
+#: ../../include/widgets.php:847
+msgid "Chat Members"
+msgstr "Chatmedlemmer"
+
+#: ../../include/widgets.php:869
+msgid "Wiki List"
msgstr ""
-#: ../../include/datetime.php:137
-msgid "Age: "
-msgstr "Alder:"
+#: ../../include/widgets.php:907
+msgid "Wiki Pages"
+msgstr ""
-#: ../../include/datetime.php:139
-msgid "YYYY-MM-DD or MM-DD"
-msgstr "YYYY-MM-DD eller MM-DD"
+#: ../../include/widgets.php:942
+msgid "Bookmarked Chatrooms"
+msgstr "Bokmerkede chatrom"
-#: ../../include/datetime.php:272 ../../boot.php:2470
-msgid "never"
-msgstr "aldri"
+#: ../../include/widgets.php:965
+msgid "Suggested Chatrooms"
+msgstr "Foreslåtte chatrom"
-#: ../../include/datetime.php:278
-msgid "less than a second ago"
-msgstr "for mindre enn ett sekund siden"
+#: ../../include/widgets.php:1111 ../../include/widgets.php:1223
+msgid "photo/image"
+msgstr "foto/bilde"
-#: ../../include/datetime.php:296
-#, php-format
-msgctxt "e.g. 22 hours ago, 1 minute ago"
-msgid "%1$d %2$s ago"
-msgstr "%1$d %2$s siden"
+#: ../../include/widgets.php:1166
+msgid "Click to show more"
+msgstr "Klikk for å vise mer"
-#: ../../include/datetime.php:307
-msgctxt "relative_date"
-msgid "year"
-msgid_plural "years"
-msgstr[0] "år"
-msgstr[1] "år"
+#: ../../include/widgets.php:1317
+msgid "Rating Tools"
+msgstr "Vurderingsverktøy"
-#: ../../include/datetime.php:310
-msgctxt "relative_date"
-msgid "month"
-msgid_plural "months"
-msgstr[0] "måned"
-msgstr[1] "måneder"
+#: ../../include/widgets.php:1321 ../../include/widgets.php:1323
+msgid "Rate Me"
+msgstr "Vurder meg"
-#: ../../include/datetime.php:313
-msgctxt "relative_date"
-msgid "week"
-msgid_plural "weeks"
-msgstr[0] "uke"
-msgstr[1] "uker"
+#: ../../include/widgets.php:1326
+msgid "View Ratings"
+msgstr "Vis vurderinger"
-#: ../../include/datetime.php:316
-msgctxt "relative_date"
-msgid "day"
-msgid_plural "days"
-msgstr[0] "dag"
-msgstr[1] "dager"
+#: ../../include/widgets.php:1410
+msgid "Forums"
+msgstr "Forum"
-#: ../../include/datetime.php:319
-msgctxt "relative_date"
-msgid "hour"
-msgid_plural "hours"
-msgstr[0] "time"
-msgstr[1] "timer"
+#: ../../include/widgets.php:1439
+msgid "Tasks"
+msgstr "Oppgaver"
-#: ../../include/datetime.php:322
-msgctxt "relative_date"
-msgid "minute"
-msgid_plural "minutes"
-msgstr[0] "minutt"
-msgstr[1] "minutter"
+#: ../../include/widgets.php:1448
+msgid "Documentation"
+msgstr "Dokumentasjon"
-#: ../../include/datetime.php:325
-msgctxt "relative_date"
-msgid "second"
-msgid_plural "seconds"
-msgstr[0] "sekund"
-msgstr[1] "sekunder"
+#: ../../include/widgets.php:1450
+msgid "Project/Site Information"
+msgstr "Prosjekt-/Nettstedsinformasjon"
-#: ../../include/datetime.php:562
-#, php-format
-msgid "%1$s's birthday"
-msgstr "%1$s sin fødselsdag"
+#: ../../include/widgets.php:1451
+msgid "For Members"
+msgstr "For medlemmer"
-#: ../../include/datetime.php:563
-#, php-format
-msgid "Happy Birthday %1$s"
-msgstr "Gratulerer med dagen, %1$s !"
+#: ../../include/widgets.php:1452
+msgid "For Administrators"
+msgstr "For administratorer"
-#: ../../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/widgets.php:1453
+msgid "For Developers"
+msgstr "For utviklere"
-#: ../../include/group.php:248
-msgid "Add new connections to this privacy group"
-msgstr "Legg nye forbindelser i denne personverngruppen"
+#: ../../include/widgets.php:1477 ../../include/widgets.php:1515
+msgid "Member registrations waiting for confirmation"
+msgstr "Medlemsregistreringer venter på bekreftelse"
-#: ../../include/group.php:289
-msgid "edit"
-msgstr "endre"
+#: ../../include/widgets.php:1483
+msgid "Inspect queue"
+msgstr "Inspiser kø"
-#: ../../include/group.php:312
-msgid "Edit group"
-msgstr "Endre gruppe"
+#: ../../include/widgets.php:1485
+msgid "DB updates"
+msgstr "Databaseoppdateringer"
-#: ../../include/group.php:313
-msgid "Add privacy group"
-msgstr "Legg til personverngruppe"
+#: ../../include/widgets.php:1511
+msgid "Plugin Features"
+msgstr "Tilleggsfunksjoner"
-#: ../../include/group.php:314
-msgid "Channels not in any privacy group"
-msgstr "Kanaler uten personverngruppe"
+#: ../../include/activities.php:41
+msgid " and "
+msgstr "og"
+
+#: ../../include/activities.php:49
+msgid "public profile"
+msgstr "offentlig profil"
+
+#: ../../include/activities.php:58
+#, php-format
+msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
+msgstr "%1$s endret %2$s til &ldquo;%3$s&rdquo;"
+
+#: ../../include/activities.php:59
+#, php-format
+msgid "Visit %1$s's %2$s"
+msgstr "Besøk %1$s sitt %2$s"
+
+#: ../../include/activities.php:62
+#, php-format
+msgid "%1$s has an updated %2$s, changing %3$s."
+msgstr "%1$s har oppdatert %2$s, endret %3$s."
+
+#: ../../include/bb2diaspora.php:398
+msgid "Attachments:"
+msgstr "Vedlegg:"
+
+#: ../../include/bb2diaspora.php:487
+msgid "$Projectname event notification:"
+msgstr "$Projectname hendelsesvarsling:"
#: ../../include/js_strings.php:5
msgid "Delete this item?"
msgstr "Slett dette elementet?"
#: ../../include/js_strings.php:8
-msgid "[-] show less"
-msgstr "[-] Vis mindre"
+#, php-format
+msgid "%s show less"
+msgstr ""
#: ../../include/js_strings.php:9
-msgid "[+] expand"
-msgstr "[+] Utvid"
+#, php-format
+msgid "%s expand"
+msgstr ""
#: ../../include/js_strings.php:10
-msgid "[-] collapse"
-msgstr "[-] Lukk"
+#, php-format
+msgid "%s collapse"
+msgstr ""
#: ../../include/js_strings.php:11
msgid "Password too short"
@@ -9358,277 +9609,222 @@ msgctxt "calendar"
msgid "All day"
msgstr "Hele dagen"
-#: ../../include/network.php:657
-msgid "view full size"
-msgstr "vis full størrelse"
-
-#: ../../include/network.php:1885
-msgid "No Subject"
-msgstr "Uten emne"
-
-#: ../../include/network.php:2146 ../../include/network.php:2147
-msgid "Friendica"
-msgstr "Friendica"
-
-#: ../../include/network.php:2148
-msgid "OStatus"
-msgstr "OStatus"
-
-#: ../../include/network.php:2149
-msgid "GNU-Social"
-msgstr ""
-
-#: ../../include/network.php:2150
-msgid "RSS/Atom"
-msgstr "RSS/Atom"
-
-#: ../../include/network.php:2152
-msgid "Diaspora"
-msgstr "Diaspora"
-
-#: ../../include/network.php:2153
-msgid "Facebook"
-msgstr "Facebook"
-
-#: ../../include/network.php:2154
-msgid "Zot"
-msgstr "Zot"
-
-#: ../../include/network.php:2155
-msgid "LinkedIn"
-msgstr "LinkedIn"
-
-#: ../../include/network.php:2156
-msgid "XMPP/IM"
-msgstr "XMPP/IM"
-
-#: ../../include/network.php:2157
-msgid "MySpace"
-msgstr "MySpace"
-
-#: ../../include/photos.php:110
+#: ../../include/contact_widgets.php:11
#, php-format
-msgid "Image exceeds website size limit of %lu bytes"
-msgstr "Bilde overstiger nettstedets størrelsesbegrensning på %lu bytes"
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] "%d invitasjon tilgjengelig"
+msgstr[1] "%d invitasjoner tilgjengelig"
-#: ../../include/photos.php:117
-msgid "Image file is empty."
-msgstr "Bildefilen er tom."
+#: ../../include/contact_widgets.php:19
+msgid "Find Channels"
+msgstr "Finn kanaler"
-#: ../../include/photos.php:255
-msgid "Photo storage failed."
-msgstr "Bildelagring mislyktes."
+#: ../../include/contact_widgets.php:20
+msgid "Enter name or interest"
+msgstr "Skriv navn eller interesse"
-#: ../../include/photos.php:295
-msgid "a new photo"
-msgstr "et nytt bilde"
+#: ../../include/contact_widgets.php:21
+msgid "Connect/Follow"
+msgstr "Forbindelse/Følg"
-#: ../../include/photos.php:299
-#, php-format
-msgctxt "photo_upload"
-msgid "%1$s posted %2$s to %3$s"
-msgstr "%1$s la inn %2$s til %3$s"
+#: ../../include/contact_widgets.php:22
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr "Eksempler: Ola Nordmann, fisking"
-#: ../../include/photos.php:506
-msgid "Upload New Photos"
-msgstr "Last opp nye bilder"
+#: ../../include/contact_widgets.php:26
+msgid "Random Profile"
+msgstr "Tilfeldig profil"
-#: ../../include/zot.php:699
-msgid "Invalid data packet"
-msgstr "Ugyldig datapakke"
+#: ../../include/contact_widgets.php:27
+msgid "Invite Friends"
+msgstr "Inviter venner"
-#: ../../include/zot.php:715
-msgid "Unable to verify channel signature"
-msgstr "Ikke i stand til å sjekke kanalsignaturen"
+#: ../../include/contact_widgets.php:29
+msgid "Advanced example: name=fred and country=iceland"
+msgstr "Avansert eksempel: navn=fred og land=island"
-#: ../../include/zot.php:2363
+#: ../../include/contact_widgets.php:122
#, php-format
-msgid "Unable to verify site signature for %s"
-msgstr "Ikke i stand til å bekrefte signaturen til %s"
-
-#: ../../include/zot.php:3712
-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:43
-msgid "Title"
-msgstr "Tittel"
-
-#: ../../include/permissions.php:26
-msgid "Can view my normal stream and posts"
-msgstr "Kan se min normale strøm og innlegg"
-
-#: ../../include/permissions.php:27
-msgid "Can view my default channel profile"
-msgstr "Kan se min standard kanalprofil"
-
-#: ../../include/permissions.php:28
-msgid "Can view my connections"
-msgstr "Kan se mine forbindelser"
-
-#: ../../include/permissions.php:29
-msgid "Can view my file storage and photos"
-msgstr "Kan se mine filer og bilder"
+msgid "%d connection in common"
+msgid_plural "%d connections in common"
+msgstr[0] "%d forbindelse felles"
+msgstr[1] "%d forbindelser felles"
-#: ../../include/permissions.php:30
-msgid "Can view my webpages"
-msgstr "Kan se mine websider"
+#: ../../include/contact_widgets.php:127
+msgid "show more"
+msgstr "vis mer"
-#: ../../include/permissions.php:33
-msgid "Can send me their channel stream and posts"
-msgstr "Kan sende meg deres kanalstrøm og innlegg"
+#: ../../include/dir_fns.php:141
+msgid "Directory Options"
+msgstr "Kataloginnstillinger"
-#: ../../include/permissions.php:34
-msgid "Can post on my channel page (\"wall\")"
-msgstr "Kan lage innlegg på min kanalside (\"vegg\")"
+#: ../../include/dir_fns.php:143
+msgid "Safe Mode"
+msgstr "Trygt modus"
-#: ../../include/permissions.php:35
-msgid "Can comment on or like my posts"
-msgstr "Kan kommentere på eller like mine innlegg"
+#: ../../include/dir_fns.php:144
+msgid "Public Forums Only"
+msgstr "Bare offentlige forum"
-#: ../../include/permissions.php:36
-msgid "Can send me private mail messages"
-msgstr "Kan sende meg private meldinger"
+#: ../../include/dir_fns.php:145
+msgid "This Website Only"
+msgstr "Kun dette nettstedet"
-#: ../../include/permissions.php:37
-msgid "Can like/dislike stuff"
-msgstr "Kan like/ikke like forskjellige greier"
+#: ../../include/message.php:20
+msgid "No recipient provided."
+msgstr "Ingen mottaker angitt."
-#: ../../include/permissions.php:37
-msgid "Profiles and things other than posts/comments"
-msgstr "Profiler og andre ting enn innlegg/kommentarer"
+#: ../../include/message.php:25
+msgid "[no subject]"
+msgstr "[ikke noe emne]"
-#: ../../include/permissions.php:39
-msgid "Can forward to all my channel contacts via post @mentions"
-msgstr "Kan videresende til alle mine kanalkontakter via @navn i innlegg"
+#: ../../include/message.php:45
+msgid "Unable to determine sender."
+msgstr "Kan ikke avgjøre avsender."
-#: ../../include/permissions.php:39
-msgid "Advanced - useful for creating group forum channels"
-msgstr "Avansert - nyttig for å lage forumkanaler for grupper"
+#: ../../include/message.php:222
+msgid "Stored post could not be verified."
+msgstr "Lagret innlegg kunne ikke bekreftes."
-#: ../../include/permissions.php:40
-msgid "Can chat with me (when available)"
-msgstr "Kan chatte/sende lynmeldinger til meg (når tilgjengelig)"
+#: ../../include/acl_selectors.php:269
+msgid "Who can see this?"
+msgstr "Hvem kan se dette?"
-#: ../../include/permissions.php:41
-msgid "Can write to my file storage and photos"
-msgstr "Kan skrive til mitt lager for filer og bilder"
+#: ../../include/acl_selectors.php:270
+msgid "Custom selection"
+msgstr "Tilpasset utvalg"
-#: ../../include/permissions.php:42
-msgid "Can edit my webpages"
-msgstr "Kan endre mine websider"
+#: ../../include/acl_selectors.php:271
+msgid ""
+"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit"
+" the scope of \"Show\"."
+msgstr "Velg \"Vis\" for å tillate visning. \"Ikke vis\" lar deg overstyre og avgrense omfanget av \"Vis\"."
-#: ../../include/permissions.php:44
-msgid "Can source my public posts in derived channels"
-msgstr "Kan bruke mine offentlige innlegg som kanalkilde i egne kanaler"
+#: ../../include/acl_selectors.php:272
+msgid "Show"
+msgstr "Vis"
-#: ../../include/permissions.php:44
-msgid "Somewhat advanced - very useful in open communities"
-msgstr "Litt avansert - svært nyttig i åpne fellesskap"
+#: ../../include/acl_selectors.php:273
+msgid "Don't show"
+msgstr "Ikke vis"
-#: ../../include/permissions.php:46
-msgid "Can administer my channel resources"
-msgstr "Kan administrere mine kanalressurser"
+#: ../../include/acl_selectors.php:279
+msgid "Other networks and post services"
+msgstr "Andre nettverk og innleggstjenester"
-#: ../../include/permissions.php:46
+#: ../../include/acl_selectors.php:309
+#, php-format
msgid ""
-"Extremely advanced. Leave this alone unless you know what you are doing"
-msgstr "Ekstremt avansert. La dette være med mindre du vet hva du gjør"
-
-#: ../../include/permissions.php:877
-msgid "Social Networking"
-msgstr "Sosialt nettverk"
+"Post permissions %s cannot be changed %s after a post is shared.</br />These"
+" permissions set who is allowed to view the post."
+msgstr "Innleggstillatelsene %s kan ikke endres %s etter at et innlegg er delt.</br>Disse innstillingene angir hvem som har tillatelse til å se innlegget."
-#: ../../include/permissions.php:877
-msgid "Social - Mostly Public"
-msgstr "Sosial - ganske offentlig"
+#: ../../include/datetime.php:135
+msgid "Birthday"
+msgstr "Fødselsdag"
-#: ../../include/permissions.php:877
-msgid "Social - Restricted"
-msgstr "Sosial - begrenset"
+#: ../../include/datetime.php:137
+msgid "Age: "
+msgstr "Alder:"
-#: ../../include/permissions.php:877
-msgid "Social - Private"
-msgstr "Sosial - privat"
+#: ../../include/datetime.php:139
+msgid "YYYY-MM-DD or MM-DD"
+msgstr "YYYY-MM-DD eller MM-DD"
-#: ../../include/permissions.php:878
-msgid "Community Forum"
-msgstr "Forum for fellesskap"
+#: ../../include/datetime.php:272 ../../boot.php:2479
+msgid "never"
+msgstr "aldri"
-#: ../../include/permissions.php:878
-msgid "Forum - Mostly Public"
-msgstr "Forum - ganske offentlig"
+#: ../../include/datetime.php:278
+msgid "less than a second ago"
+msgstr "for mindre enn ett sekund siden"
-#: ../../include/permissions.php:878
-msgid "Forum - Restricted"
-msgstr "Forum - begrenset"
+#: ../../include/datetime.php:296
+#, php-format
+msgctxt "e.g. 22 hours ago, 1 minute ago"
+msgid "%1$d %2$s ago"
+msgstr "%1$d %2$s siden"
-#: ../../include/permissions.php:878
-msgid "Forum - Private"
-msgstr "Forum - privat"
+#: ../../include/datetime.php:307
+msgctxt "relative_date"
+msgid "year"
+msgid_plural "years"
+msgstr[0] "år"
+msgstr[1] "år"
-#: ../../include/permissions.php:879
-msgid "Feed Republish"
-msgstr "Republisering av strømmet innhold"
+#: ../../include/datetime.php:310
+msgctxt "relative_date"
+msgid "month"
+msgid_plural "months"
+msgstr[0] "måned"
+msgstr[1] "måneder"
-#: ../../include/permissions.php:879
-msgid "Feed - Mostly Public"
-msgstr "Strøm - ganske offentlig"
+#: ../../include/datetime.php:313
+msgctxt "relative_date"
+msgid "week"
+msgid_plural "weeks"
+msgstr[0] "uke"
+msgstr[1] "uker"
-#: ../../include/permissions.php:879
-msgid "Feed - Restricted"
-msgstr "Strøm - begrenset"
+#: ../../include/datetime.php:316
+msgctxt "relative_date"
+msgid "day"
+msgid_plural "days"
+msgstr[0] "dag"
+msgstr[1] "dager"
-#: ../../include/permissions.php:880
-msgid "Special Purpose"
-msgstr "Spesiell bruk"
+#: ../../include/datetime.php:319
+msgctxt "relative_date"
+msgid "hour"
+msgid_plural "hours"
+msgstr[0] "time"
+msgstr[1] "timer"
-#: ../../include/permissions.php:880
-msgid "Special - Celebrity/Soapbox"
-msgstr "Spesiell - kjendis/talerstol"
+#: ../../include/datetime.php:322
+msgctxt "relative_date"
+msgid "minute"
+msgid_plural "minutes"
+msgstr[0] "minutt"
+msgstr[1] "minutter"
-#: ../../include/permissions.php:880
-msgid "Special - Group Repository"
-msgstr "Spesiell - gruppelager"
+#: ../../include/datetime.php:325
+msgctxt "relative_date"
+msgid "second"
+msgid_plural "seconds"
+msgstr[0] "sekund"
+msgstr[1] "sekunder"
-#: ../../include/permissions.php:881
-msgid "Custom/Expert Mode"
-msgstr "Tilpasset/Ekspertmodus"
+#: ../../include/datetime.php:562
+#, php-format
+msgid "%1$s's birthday"
+msgstr "%1$s sin fødselsdag"
-#: ../../include/activities.php:41
-msgid " and "
-msgstr "og"
+#: ../../include/datetime.php:563
+#, php-format
+msgid "Happy Birthday %1$s"
+msgstr "Gratulerer med dagen, %1$s !"
-#: ../../include/activities.php:49
-msgid "public profile"
-msgstr "offentlig profil"
+#: ../../include/api.php:1327
+msgid "Public Timeline"
+msgstr "Offentlig tidslinje"
-#: ../../include/activities.php:58
-#, 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/zot.php:697
+msgid "Invalid data packet"
+msgstr "Ugyldig datapakke"
-#: ../../include/activities.php:59
-#, php-format
-msgid "Visit %1$s's %2$s"
-msgstr "Besøk %1$s sitt %2$s"
+#: ../../include/zot.php:713
+msgid "Unable to verify channel signature"
+msgstr "Ikke i stand til å sjekke kanalsignaturen"
-#: ../../include/activities.php:62
+#: ../../include/zot.php:2326
#, php-format
-msgid "%1$s has an updated %2$s, changing %3$s."
-msgstr "%1$s har oppdatert %2$s, endret %3$s."
-
-#: ../../include/bb2diaspora.php:398
-msgid "Attachments:"
-msgstr "Vedlegg:"
+msgid "Unable to verify site signature for %s"
+msgstr "Ikke i stand til å bekrefte signaturen til %s"
-#: ../../include/bb2diaspora.php:487
-msgid "$Projectname event notification:"
-msgstr "$Projectname hendelsesvarsling:"
+#: ../../include/zot.php:3703
+msgid "invalid target signature"
+msgstr "Målets signatur er ugyldig"
#: ../../view/theme/redbasic/php/config.php:82
msgid "Focus (Hubzilla default)"
@@ -9766,62 +9962,66 @@ msgstr "Angi størrelsen for samtalens forfatterbilde"
msgid "Set size of followup author photos"
msgstr "Angi størrelsen på forfatterbilder ved oppfølging"
-#: ../../boot.php:1162
+#: ../../boot.php:1163
#, php-format
msgctxt "opensearch"
msgid "Search %1$s (%2$s)"
-msgstr ""
+msgstr "Søk %1$s (%2$s)"
-#: ../../boot.php:1162
+#: ../../boot.php:1163
msgctxt "opensearch"
msgid "$Projectname"
-msgstr ""
+msgstr "$Projectname"
-#: ../../boot.php:1480
+#: ../../boot.php:1481
#, php-format
msgid "Update %s failed. See error logs."
msgstr "Oppdatering %s mislyktes. Se feilloggen."
-#: ../../boot.php:1483
+#: ../../boot.php:1484
#, php-format
msgid "Update Error at %s"
msgstr "Oppdateringsfeil ved %s"
-#: ../../boot.php:1684
+#: ../../boot.php:1685
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:1706
+msgid "Login/Email"
+msgstr ""
+
+#: ../../boot.php:1707
msgid "Password"
msgstr "Passord"
-#: ../../boot.php:1707
+#: ../../boot.php:1708
msgid "Remember me"
msgstr "Husk meg"
-#: ../../boot.php:1710
+#: ../../boot.php:1711
msgid "Forgot your password?"
msgstr "Glemt passordet ditt?"
-#: ../../boot.php:2276
+#: ../../boot.php:2277
msgid "toggle mobile"
msgstr "Skru på mobil"
-#: ../../boot.php:2425
+#: ../../boot.php:2432
msgid "Website SSL certificate is not valid. Please correct."
msgstr "Nettstedets SSL-sertifikat er ikke gyldig. Vennligst fiks dette."
-#: ../../boot.php:2428
+#: ../../boot.php:2435
#, php-format
msgid "[hubzilla] Website SSL error for %s"
msgstr "[hubzilla] SSL-feil ved nettsted hos %s"
-#: ../../boot.php:2469
+#: ../../boot.php:2478
msgid "Cron/Scheduled tasks not running."
msgstr "Cron/planlagte oppgaver kjører ikke."
-#: ../../boot.php:2473
+#: ../../boot.php:2482
#, php-format
msgid "[hubzilla] Cron tasks not running on %s"
msgstr "[hubzilla] Cron-oppgaver kjører ikke på %s"
diff --git a/view/nb-no/hstrings.php b/view/nb-no/hstrings.php
index e03ba321d..53aae8c0e 100644
--- a/view/nb-no/hstrings.php
+++ b/view/nb-no/hstrings.php
@@ -4,7 +4,39 @@ if(! function_exists("string_plural_select_nb_no")) {
function string_plural_select_nb_no($n){
return ($n != 1);;
}}
-;
+App::$rtl = 0;
+App::$strings["Social Networking"] = "Sosialt nettverk";
+App::$strings["Social - Mostly Public"] = "Sosial - ganske offentlig";
+App::$strings["Social - Restricted"] = "Sosial - begrenset";
+App::$strings["Social - Private"] = "Sosial - privat";
+App::$strings["Community Forum"] = "Forum for fellesskap";
+App::$strings["Forum - Mostly Public"] = "Forum - ganske offentlig";
+App::$strings["Forum - Restricted"] = "Forum - begrenset";
+App::$strings["Forum - Private"] = "Forum - privat";
+App::$strings["Feed Republish"] = "Republisering av strømmet innhold";
+App::$strings["Feed - Mostly Public"] = "Strøm - ganske offentlig";
+App::$strings["Feed - Restricted"] = "Strøm - begrenset";
+App::$strings["Special Purpose"] = "Spesiell bruk";
+App::$strings["Special - Celebrity/Soapbox"] = "Spesiell - kjendis/talerstol";
+App::$strings["Special - Group Repository"] = "Spesiell - gruppelager";
+App::$strings["Other"] = "Annen";
+App::$strings["Custom/Expert Mode"] = "Tilpasset/Ekspertmodus";
+App::$strings["Can view my channel stream and posts"] = "";
+App::$strings["Can send me their channel stream and posts"] = "Kan sende meg deres kanalstrøm og innlegg";
+App::$strings["Can view my default channel profile"] = "Kan se min standard kanalprofil";
+App::$strings["Can view my connections"] = "Kan se mine forbindelser";
+App::$strings["Can view my file storage and photos"] = "Kan se mine filer og bilder";
+App::$strings["Can upload/modify my file storage and photos"] = "";
+App::$strings["Can view my channel webpages"] = "";
+App::$strings["Can create/edit my channel webpages"] = "";
+App::$strings["Can post on my channel (wall) page"] = "";
+App::$strings["Can comment on or like my posts"] = "Kan kommentere på eller like mine innlegg";
+App::$strings["Can send me private mail messages"] = "Kan sende meg private meldinger";
+App::$strings["Can like/dislike profiles and profile things"] = "";
+App::$strings["Can forward to all my channel connections via @+ mentions in posts"] = "";
+App::$strings["Can chat with me"] = "";
+App::$strings["Can source my public posts in derived channels"] = "Kan bruke mine offentlige innlegg som kanalkilde i egne kanaler";
+App::$strings["Can administer my channel"] = "";
App::$strings["parent"] = "opp et nivå";
App::$strings["Collection"] = "Samling";
App::$strings["Principal"] = "Viktigste";
@@ -37,63 +69,8 @@ App::$strings["Remote authentication blocked. You are logged into this site loca
App::$strings["Welcome %s. Remote authentication successful."] = "Velkommen %s. Ekstern autentisering er vellykket.";
App::$strings["Requested profile is not available."] = "Forespurt profil er ikke tilgjengelig.";
App::$strings["Some blurb about what to do when you're new here"] = "En standardtekst om hva du bør gjøre som ny her";
-App::$strings["Block Name"] = "Byggeklossens navn";
-App::$strings["Blocks"] = "Byggeklosser";
-App::$strings["Block Title"] = "Byggeklossens tittel";
-App::$strings["Created"] = "Laget";
-App::$strings["Edited"] = "Endret";
-App::$strings["Share"] = "Del";
-App::$strings["View"] = "Vis";
-App::$strings["Channel not found."] = "Kanalen ble ikke funnet.";
-App::$strings["Permissions denied."] = "Tillatelse avvist.";
-App::$strings["l, F j"] = "l, F j";
-App::$strings["Link to Source"] = "Lenke til kilde";
-App::$strings["Edit Event"] = "Endre hendelse";
-App::$strings["Create Event"] = "Lag hendelse";
-App::$strings["Previous"] = "Forrige";
-App::$strings["Next"] = "Neste";
-App::$strings["Export"] = "Eksport";
-App::$strings["Import"] = "Importer";
-App::$strings["Submit"] = "Send";
-App::$strings["Today"] = "Idag";
-App::$strings["You must be logged in to see this page."] = "Du må være innloegget for å se denne siden.";
-App::$strings["Posts and comments"] = "";
-App::$strings["Only posts"] = "";
-App::$strings["Insufficient permissions. Request redirected to profile page."] = "Utilstrekkelig tillatelse. Forespørsel omdirigert til profilsiden.";
-App::$strings["Room not found"] = "Rommet ble ikke funnet";
-App::$strings["Leave Room"] = "Forlat rom";
-App::$strings["Delete Room"] = "";
-App::$strings["I am away right now"] = "Jeg er borte akkurat nå";
-App::$strings["I am online"] = "Jeg er online";
-App::$strings["Bookmark this room"] = "Bokmerk dette rommet";
-App::$strings["Please enter a link URL:"] = "Vennligst skriv inn en lenke URL:";
-App::$strings["Encrypt text"] = "Krypter tekst";
-App::$strings["Insert web link"] = "Sett inn web-lenke";
-App::$strings["Feature disabled."] = "";
-App::$strings["New Chatroom"] = "Nytt chatrom";
-App::$strings["Chatroom name"] = "";
-App::$strings["Expiration of chats (minutes)"] = "Chat utgår (antall minutter)";
-App::$strings["Permissions"] = "Tillatelser";
-App::$strings["%1\$s's Chatrooms"] = "%1\$s sine chatrom";
-App::$strings["No chatrooms available"] = "";
-App::$strings["Create New"] = "";
-App::$strings["Expiration"] = "";
-App::$strings["min"] = "";
App::$strings["Away"] = "Borte";
App::$strings["Online"] = "Online";
-App::$strings["Invalid item."] = "Ugyldig element.";
-App::$strings["Bookmark added"] = "Bokmerke lagt til";
-App::$strings["My Bookmarks"] = "Mine bokmerker";
-App::$strings["My Connections Bookmarks"] = "Mine forbindelsers bokmerker";
-App::$strings["Continue"] = "Fortsett";
-App::$strings["Premium Channel Setup"] = "Premiumkanal-oppsett";
-App::$strings["Enable premium channel connection restrictions"] = "Slå på restriksjoner for forbindelse med premiumkanal";
-App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Vennligst skriv dine restriksjoner og betingelser, slik som PayPal-kvittering, retningslinjer for bruk, og så videre.";
-App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Denne kanalen kan kreve ytterligere steg og bekreftelse av følgende betingelser før tilkobling:";
-App::$strings["Potential connections will then see the following text before proceeding:"] = "Potensielle forbindelser vil da se følgende tekst før de går videre:";
-App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Ved å fortsette bekrefter jeg at jeg har oppfylt alle instruksjoner gitt på denne siden.";
-App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Ingen spesifikke instruksjoner er gitt av kanaleieren.)";
-App::$strings["Restricted or Premium Channel"] = "Begrenset kanal eller premiumkanal";
App::$strings["Could not access contact record."] = "Fikk ikke tilgang til kontaktinformasjonen.";
App::$strings["Could not locate selected profile."] = "Fant ikke valgt profil.";
App::$strings["Connection updated."] = "Forbindelsen er oppdatert.";
@@ -146,7 +123,7 @@ App::$strings["Connection requests will be approved without your interaction"] =
App::$strings["This connection's primary address is"] = "Denne forbindelsens primære adresse er";
App::$strings["Available locations:"] = "Tilgjengelige plasseringer:";
App::$strings["The permissions indicated on this page will be applied to all new connections."] = "Tillatelsene angitt på denne siden gjøres gjeldende for alle nye forbindelser.";
-App::$strings["Connection Tools"] = "";
+App::$strings["Connection Tools"] = "Forbindelsesverktøy";
App::$strings["Slide to adjust your degree of friendship"] = "Flytt for å justere din grad av vennskap";
App::$strings["Rating"] = "Vurdering";
App::$strings["Slide to adjust your rating"] = "Flytt for å justere din vurdering";
@@ -158,6 +135,7 @@ App::$strings["Do not import posts with this text"] = "Ikke importer innlegg med
App::$strings["This information is public!"] = "Denne informasjonen er offentlig!";
App::$strings["Connection Pending Approval"] = "Forbindelse venter på godkjenning";
App::$strings["inherited"] = "arvet";
+App::$strings["Submit"] = "Send";
App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Vennligst velg profilen du ønsker å vise %s når profilen din ses på en sikret måte. ";
App::$strings["Their Settings"] = "Deres innstillinger";
App::$strings["My Settings"] = "Mine innstillinger";
@@ -166,6 +144,30 @@ App::$strings["Some permissions may be inherited from your channel's <a href=\"s
App::$strings["Some permissions may be inherited from your channel's <a href=\"settings\"><strong>privacy settings</strong></a>, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Noen tillatelser kan være arvet fra din kanals <a ref=\"settings\"><strong>personverninnstillinger</strong></a>, som har høyere prioritet enn individuelle innstillinger. Du kan endre disse innstillingene her, men de vil ikke få noen effekt før de arvede innstillingene endres.";
App::$strings["Last update:"] = "Siste oppdatering:";
App::$strings["Public access denied."] = "Offentlig tilgang avvist.";
+App::$strings["Item not found."] = "Elementet ble ikke funnet.";
+App::$strings["First Name"] = "Fornavn";
+App::$strings["Last Name"] = "Etternavn";
+App::$strings["Nickname"] = "Kallenavn";
+App::$strings["Full Name"] = "Fullt navn";
+App::$strings["Email"] = "E-post";
+App::$strings["Profile Photo"] = "Profilbilde";
+App::$strings["Profile Photo 16px"] = "Profilbilde 16px";
+App::$strings["Profile Photo 32px"] = "Profilbilde 32px";
+App::$strings["Profile Photo 48px"] = "Profilbilde 48px";
+App::$strings["Profile Photo 64px"] = "Profilbilde 64px";
+App::$strings["Profile Photo 80px"] = "Profilbilde 80px";
+App::$strings["Profile Photo 128px"] = "Profilbilde 128px";
+App::$strings["Timezone"] = "Tidssone";
+App::$strings["Homepage URL"] = "Hjemmeside URL";
+App::$strings["Language"] = "Språk";
+App::$strings["Birth Year"] = "Fødselsår";
+App::$strings["Birth Month"] = "Fødselsmåne";
+App::$strings["Birth Day"] = "Fødselsdag";
+App::$strings["Birthdate"] = "Fødselsdato";
+App::$strings["Gender"] = "Kjønn";
+App::$strings["Male"] = "Mannlig";
+App::$strings["Female"] = "Kvinnelig";
+App::$strings["Channel added."] = "Kanal lagt til.";
App::$strings["%d rating"] = array(
0 => "%d vurdering",
1 => "%d vurderinger",
@@ -196,13 +198,74 @@ App::$strings["Reverse Alphabetic"] = "Omvendt alfabetisk";
App::$strings["Newest to Oldest"] = "Nyest til eldst";
App::$strings["Oldest to Newest"] = "Eldst til nyest";
App::$strings["No entries (some entries may be hidden)."] = "Ingen oppføringer (noen oppføringer kan være skjult).";
-App::$strings["Item not found."] = "Elementet ble ikke funnet.";
+App::$strings["Continue"] = "Fortsett";
+App::$strings["Premium Channel Setup"] = "Premiumkanal-oppsett";
+App::$strings["Enable premium channel connection restrictions"] = "Slå på restriksjoner for forbindelse med premiumkanal";
+App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Vennligst skriv dine restriksjoner og betingelser, slik som PayPal-kvittering, retningslinjer for bruk, og så videre.";
+App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Denne kanalen kan kreve ytterligere steg og bekreftelse av følgende betingelser før tilkobling:";
+App::$strings["Potential connections will then see the following text before proceeding:"] = "Potensielle forbindelser vil da se følgende tekst før de går videre:";
+App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Ved å fortsette bekrefter jeg at jeg har oppfylt alle instruksjoner gitt på denne siden.";
+App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Ingen spesifikke instruksjoner er gitt av kanaleieren.)";
+App::$strings["Restricted or Premium Channel"] = "Begrenset kanal eller premiumkanal";
+App::$strings["Calendar entries imported."] = "Kalenderhendelsene er importert.";
+App::$strings["No calendar entries found."] = "Ingen kalenderhendelser funnet.";
+App::$strings["Event can not end before it has started."] = "Hendelsen kan ikke slutte før den starter.";
+App::$strings["Unable to generate preview."] = "Klarer ikke å lage forhåndsvisning.";
+App::$strings["Event title and start time are required."] = "Hendelsestittel og starttidspunkt er påkrevd.";
+App::$strings["Event not found."] = "Hendelsen ble ikke funnet.";
+App::$strings["event"] = "hendelse";
+App::$strings["Edit event title"] = "Endre tittel på hendelse";
+App::$strings["Event title"] = "Tittel på hendelse";
+App::$strings["Required"] = "Påkrevd";
+App::$strings["Categories (comma-separated list)"] = "Kategorier (kommaseparert liste)";
+App::$strings["Edit Category"] = "Endre kategori";
+App::$strings["Category"] = "Kategori";
+App::$strings["Edit start date and time"] = "Endre startdato og tidspunkt";
+App::$strings["Start date and time"] = "Startdato og tidspunkt";
+App::$strings["Finish date and time are not known or not relevant"] = "Sluttdato og tidspunkt er ikke kjent eller ikke relevant";
+App::$strings["Edit finish date and time"] = "Endre sluttdato og tidspunkt";
+App::$strings["Finish date and time"] = "Sluttdato og tidspunkt";
+App::$strings["Adjust for viewer timezone"] = "Juster i forhold til tilskuerens tidssone";
+App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Viktig for hendelser som skjer på et bestemt sted. Ikke praktisk for globale ferier eller fridager.";
+App::$strings["Edit Description"] = "Endre beskrivelse";
+App::$strings["Description"] = "Beskrivelse";
+App::$strings["Edit Location"] = "Endre plassering";
+App::$strings["Location"] = "Plassering";
+App::$strings["Share this event"] = "Del denne hendelsen";
+App::$strings["Preview"] = "Forhåndsvisning";
+App::$strings["Permission settings"] = "Tillatelser - innstillinger";
+App::$strings["Advanced Options"] = "Avanserte alternativer";
+App::$strings["l, F j"] = "l, F j";
+App::$strings["Edit event"] = "Endre hendelse";
+App::$strings["Delete event"] = "Slett hendelse";
+App::$strings["Link to Source"] = "Lenke til kilde";
+App::$strings["calendar"] = "kalender";
+App::$strings["Edit Event"] = "Endre hendelse";
+App::$strings["Create Event"] = "Lag hendelse";
+App::$strings["Previous"] = "Forrige";
+App::$strings["Next"] = "Neste";
+App::$strings["Export"] = "Eksport";
+App::$strings["View"] = "Vis";
+App::$strings["Month"] = "";
+App::$strings["Week"] = "";
+App::$strings["Day"] = "";
+App::$strings["Today"] = "Idag";
+App::$strings["Event removed"] = "Hendelse slettet";
+App::$strings["Failed to remove event"] = "Mislyktes med å slette hendelse";
+App::$strings["Bookmark added"] = "Bokmerke lagt til";
+App::$strings["My Bookmarks"] = "Mine bokmerker";
+App::$strings["My Connections Bookmarks"] = "Mine forbindelsers bokmerker";
App::$strings["Item not found"] = "Elementet ble ikke funnet.";
-App::$strings["Title (optional)"] = "Tittel (valgfri)";
-App::$strings["Edit Block"] = "Endre byggekloss";
-App::$strings["No channel."] = "Ingen kanal.";
-App::$strings["Common connections"] = "Felles forbindelser";
-App::$strings["No connections in common."] = "Ingen forbindelser felles.";
+App::$strings["Item is not editable"] = "Elementet kan ikke endres";
+App::$strings["Edit post"] = "Endre innlegg";
+App::$strings["Photos"] = "Bilder";
+App::$strings["Cancel"] = "Avbryt";
+App::$strings["Invalid item."] = "Ugyldig element.";
+App::$strings["Channel not found."] = "Kanalen ble ikke funnet.";
+App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.";
+App::$strings["Save to Folder:"] = "Lagre til mappe:";
+App::$strings["- select -"] = "- velg -";
+App::$strings["Save"] = "Lagre";
App::$strings["Blocked"] = "Blokkert";
App::$strings["Ignored"] = "Ignorert";
App::$strings["Hidden"] = "Skjult";
@@ -254,51 +317,38 @@ App::$strings["select a photo from your photo albums"] = "velg et bilde fra dine
App::$strings["Crop Image"] = "Beskjær bildet";
App::$strings["Please adjust the image cropping for optimum viewing."] = "Vennligst juster bildebeskjæringen for optimal visning.";
App::$strings["Done Editing"] = "Avslutt redigering";
-App::$strings["Item is not editable"] = "Elementet kan ikke endres";
-App::$strings["Edit post"] = "Endre innlegg";
-App::$strings["Calendar entries imported."] = "Kalenderhendelsene er importert.";
-App::$strings["No calendar entries found."] = "Ingen kalenderhendelser funnet.";
-App::$strings["Event can not end before it has started."] = "Hendelsen kan ikke slutte før den starter.";
-App::$strings["Unable to generate preview."] = "Klarer ikke å lage forhåndsvisning.";
-App::$strings["Event title and start time are required."] = "Hendelsestittel og starttidspunkt er påkrevd.";
-App::$strings["Event not found."] = "Hendelsen ble ikke funnet.";
-App::$strings["event"] = "hendelse";
-App::$strings["Edit event title"] = "Endre tittel på hendelse";
-App::$strings["Event title"] = "Tittel på hendelse";
-App::$strings["Required"] = "Påkrevd";
-App::$strings["Categories (comma-separated list)"] = "Kategorier (kommaseparert liste)";
-App::$strings["Edit Category"] = "Endre kategori";
-App::$strings["Category"] = "Kategori";
-App::$strings["Edit start date and time"] = "Endre startdato og tidspunkt";
-App::$strings["Start date and time"] = "Startdato og tidspunkt";
-App::$strings["Finish date and time are not known or not relevant"] = "Sluttdato og tidspunkt er ikke kjent eller ikke relevant";
-App::$strings["Edit finish date and time"] = "Endre sluttdato og tidspunkt";
-App::$strings["Finish date and time"] = "Sluttdato og tidspunkt";
-App::$strings["Adjust for viewer timezone"] = "Juster i forhold til tilskuerens tidssone";
-App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Viktig for hendelser som skjer på et bestemt sted. Ikke praktisk for globale ferier eller fridager.";
-App::$strings["Edit Description"] = "Endre beskrivelse";
-App::$strings["Description"] = "Beskrivelse";
-App::$strings["Edit Location"] = "Endre plassering";
-App::$strings["Location"] = "Plassering";
-App::$strings["Share this event"] = "Del denne hendelsen";
-App::$strings["Preview"] = "Forhåndsvisning";
-App::$strings["Permission settings"] = "Tillatelser - innstillinger";
-App::$strings["Advanced Options"] = "Avanserte alternativer";
-App::$strings["Edit event"] = "Endre hendelse";
-App::$strings["Delete event"] = "Slett hendelse";
-App::$strings["calendar"] = "kalender";
-App::$strings["Event removed"] = "Hendelse slettet";
-App::$strings["Failed to remove event"] = "Mislyktes med å slette hendelse";
-App::$strings["Photos"] = "Bilder";
-App::$strings["Cancel"] = "Avbryt";
+App::$strings["webpage"] = "nettside";
+App::$strings["block"] = "byggekloss";
+App::$strings["layout"] = "layout";
+App::$strings["menu"] = "meny";
+App::$strings["%s element installed"] = "%s element installert";
+App::$strings["%s element installation failed"] = "Installasjon av %s-element mislyktes";
+App::$strings["Permissions denied."] = "Tillatelse avvist.";
+App::$strings["Import"] = "Importer";
App::$strings["This site is not a directory server"] = "Dette nettstedet er ikke en katalogtjener";
App::$strings["This directory server requires an access token"] = "Denne katalogtjeneren krever en tilgangsnøkkel (access token)";
-App::$strings["Save to Folder:"] = "Lagre til mappe:";
-App::$strings["- select -"] = "- velg -";
-App::$strings["Save"] = "Lagre";
+App::$strings["You must be logged in to see this page."] = "Du må være innloegget for å se denne siden.";
+App::$strings["Room not found"] = "Rommet ble ikke funnet";
+App::$strings["Leave Room"] = "Forlat rom";
+App::$strings["Delete Room"] = "Slett rom";
+App::$strings["I am away right now"] = "Jeg er borte akkurat nå";
+App::$strings["I am online"] = "Jeg er online";
+App::$strings["Bookmark this room"] = "Bokmerk dette rommet";
+App::$strings["Please enter a link URL:"] = "Vennligst skriv inn en lenke URL:";
+App::$strings["Encrypt text"] = "Krypter tekst";
+App::$strings["Insert web link"] = "Sett inn web-lenke";
+App::$strings["Feature disabled."] = "Funksjonen er avskrudd.";
+App::$strings["New Chatroom"] = "Nytt chatrom";
+App::$strings["Chatroom name"] = "Navn på chatrom";
+App::$strings["Expiration of chats (minutes)"] = "Chat utgår (antall minutter)";
+App::$strings["Permissions"] = "Tillatelser";
+App::$strings["%1\$s's Chatrooms"] = "%1\$s sine chatrom";
+App::$strings["No chatrooms available"] = "Ingen tilgjengelige chatrom";
+App::$strings["Create New"] = "Lag ny";
+App::$strings["Expiration"] = "Utløper";
+App::$strings["min"] = "min";
App::$strings["Invalid message"] = "Ugyldig melding";
App::$strings["no results"] = "ingen resultater";
-App::$strings["Delivery report for %1\$s"] = "Leveringsrapport for %1\$s";
App::$strings["channel sync processed"] = "Kanalsynkronisering er behandlet";
App::$strings["queued"] = "lagt i kø";
App::$strings["posted"] = "lagt inn";
@@ -310,14 +360,14 @@ App::$strings["recipient not found"] = "mottaker ble ikke funnet";
App::$strings["mail recalled"] = "melding tilbakekalt";
App::$strings["duplicate mail received"] = "duplikat av melding mottatt";
App::$strings["mail delivered"] = "melding mottatt";
+App::$strings["Delivery report for %1\$s"] = "Leveringsrapport for %1\$s";
+App::$strings["Options"] = "";
+App::$strings["Redeliver"] = "";
App::$strings["Layout Name"] = "Layout-navn";
App::$strings["Layout Description (Optional)"] = "Layoutens beskrivelse (valgfritt)";
App::$strings["Edit Layout"] = "Endre layout";
-App::$strings["Page link"] = "";
+App::$strings["Page link"] = "Sidelenke";
App::$strings["Edit Webpage"] = "Endre webside";
-App::$strings["Channel added."] = "Kanal lagt til.";
-App::$strings["network"] = "nettverk";
-App::$strings["RSS"] = "RSS";
App::$strings["Privacy group created."] = "Personverngruppen er opprettet.";
App::$strings["Could not create privacy group."] = "Kunne ikke opprette personverngruppen.";
App::$strings["Privacy group not found."] = "Personverngruppen ble ikke funnet";
@@ -331,16 +381,33 @@ App::$strings["Privacy group editor"] = "Personverngruppebehandler";
App::$strings["Members"] = "Medlemmer";
App::$strings["All Connected Channels"] = "Alle tilkoblede kanaler";
App::$strings["Click on a channel to add or remove."] = "Klikk på en kanal for å legge til eller fjerne.";
-App::$strings["Share content from Firefox to \$Projectname"] = "Del innhold fra Firefox til \$Projectname";
-App::$strings["Activate the Firefox \$Projectname provider"] = "Skru på Firefox \$Projectname tilbyderen";
-App::$strings["Authorize application connection"] = "Tillat programforbindelse";
-App::$strings["Return to your app and insert this Securty Code:"] = "Gå tilbake til din app og legg inn denne sikkerhetskoden:";
-App::$strings["Please login to continue."] = "Vennligst logg inn for å fortsette.";
-App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vil du tillate dette programmet å få tilgang til dine innlegg og kontakter, og/eller lage nye innlegg for deg?";
+App::$strings["App installed."] = "App installert.";
+App::$strings["Malformed app."] = "Feil oppsett for app-en.";
+App::$strings["Embed code"] = "Innbyggingskode";
+App::$strings["Edit App"] = "Endre app";
+App::$strings["Create App"] = "Lag app";
+App::$strings["Name of app"] = "Navn på app";
+App::$strings["Location (URL) of app"] = "Plassering (URL) til app";
+App::$strings["Photo icon URL"] = "Bildeikon URL";
+App::$strings["80 x 80 pixels - optional"] = "80 x80 pixler - valgfritt";
+App::$strings["Categories (optional, comma separated list)"] = "Kategorier (valgfri, kommaseparert liste)";
+App::$strings["Version ID"] = "Versjons-ID";
+App::$strings["Price of app"] = "Pris på app";
+App::$strings["Location (URL) to purchase app"] = "Plassering (URL) for å kjøpe app";
App::$strings["Documentation Search"] = "Søk i dokumentasjon";
App::$strings["Help:"] = "Hjelp:";
App::$strings["Help"] = "Hjelp";
App::$strings["\$Projectname Documentation"] = "\$Projectname dokumentasjon";
+App::$strings["Item not available."] = "Elementet er ikke tilgjengelig.";
+App::$strings["Layout updated."] = "Layout er oppdatert.";
+App::$strings["Edit System Page Description"] = "Endre beskrivelsen av systemsiden";
+App::$strings["Layout not found."] = "Layouten ble ikke funnet.";
+App::$strings["Module Name:"] = "Modulnavn:";
+App::$strings["Layout Help"] = "Layout-hjelp";
+App::$strings["Share content from Firefox to \$Projectname"] = "Del innhold fra Firefox til \$Projectname";
+App::$strings["Activate the Firefox \$Projectname provider"] = "Skru på Firefox \$Projectname tilbyderen";
+App::$strings["network"] = "nettverk";
+App::$strings["RSS"] = "RSS";
App::$strings["Permission Denied."] = "Tillatelse avvist.";
App::$strings["File not found."] = "Filen ble ikke funnet.";
App::$strings["Edit file permissions"] = "Endre filtillatelser";
@@ -352,8 +419,100 @@ App::$strings["Copy/paste this URL to link file from a web page"] = "Kopier og l
App::$strings["Share this file"] = "Del denne filen";
App::$strings["Show URL to this file"] = "Vis URLen til denne filen";
App::$strings["Notify your contacts about this file"] = "Varsle dine kontakter om denne filen";
-App::$strings["Apps"] = "Apper";
-App::$strings["Item not available."] = "Elementet er ikke tilgjengelig.";
+App::$strings["Layouts"] = "Layout";
+App::$strings["Comanche page description language help"] = "Hjelp med Comanche sidebeskrivelsesspråk";
+App::$strings["Layout Description"] = "Layout-beskrivelse";
+App::$strings["Created"] = "Laget";
+App::$strings["Edited"] = "Endret";
+App::$strings["Share"] = "Del";
+App::$strings["Download PDL file"] = "Last ned PDL-fil";
+App::$strings["Like/Dislike"] = "Liker/Liker ikke";
+App::$strings["This action is restricted to members."] = "Denne handlingen er begrenset til medlemmer.";
+App::$strings["Please <a href=\"rmagic\">login with your \$Projectname ID</a> or <a href=\"register\">register as a new \$Projectname member</a> to continue."] = "Vennligst <a href=\"rmagic\">logg inn med din \$Projectname ID</a> eller <a href=\"register\">registrer deg som et nytt \$Projectname-medlem</a> for å fortsette";
+App::$strings["Invalid request."] = "Ugyldig forespørsel.";
+App::$strings["channel"] = "kanal";
+App::$strings["thing"] = "ting";
+App::$strings["Channel unavailable."] = "Kanalen er utilgjengelig.";
+App::$strings["Previous action reversed."] = "Forrige handling er omgjort.";
+App::$strings["photo"] = "foto";
+App::$strings["status"] = "status";
+App::$strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s liker %2\$s sin %3\$s";
+App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s liker ikke %2\$s sin %3\$s";
+App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s er enig med %2\$s sin %3\$s";
+App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s er ikke enig med %2\$s sin %3\$s";
+App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s avstår fra å mene noe om %2\$s sin %3\$s";
+App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s deltar på %2\$ss %3\$s";
+App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s deltar ikke på %2\$ss %3\$s";
+App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s deltar kanskje på %2\$ss %3\$s";
+App::$strings["Action completed."] = "Handling ferdig.";
+App::$strings["Thank you."] = "Tusen takk.";
+App::$strings["Profile not found."] = "Profilen ble ikke funnet.";
+App::$strings["Profile deleted."] = "Profilen er slettet.";
+App::$strings["Profile-"] = "Profil-";
+App::$strings["New profile created."] = "Ny profil opprettet.";
+App::$strings["Profile unavailable to clone."] = "Profilen er utilgjengelig for klonen.";
+App::$strings["Profile unavailable to export."] = "Profilen er utilgjengelig for eksport.";
+App::$strings["Profile Name is required."] = "Profilnavn er påkrevd.";
+App::$strings["Marital Status"] = "Sivilstand";
+App::$strings["Romantic Partner"] = "Romantisk partner";
+App::$strings["Likes"] = "Liker";
+App::$strings["Dislikes"] = "Liker ikke";
+App::$strings["Work/Employment"] = "Arbeid/sysselsetting";
+App::$strings["Religion"] = "Religion";
+App::$strings["Political Views"] = "Politiske synspunkter";
+App::$strings["Sexual Preference"] = "Seksuelle preferanser";
+App::$strings["Homepage"] = "Hjemmeside";
+App::$strings["Interests"] = "Interesser";
+App::$strings["Address"] = "Adresse";
+App::$strings["Profile updated."] = "Profilen er oppdatert.";
+App::$strings["Hide your connections list from viewers of this profile"] = "Skjul listen med forbindelser fra besøkende som ser denne profilen";
+App::$strings["Edit Profile Details"] = "Endre profildetaljer";
+App::$strings["View this profile"] = "Vis denne profilen";
+App::$strings["Edit visibility"] = "Endre synlighet";
+App::$strings["Profile Tools"] = "Profilverktøy";
+App::$strings["Change cover photo"] = "Endre forsidebilde";
+App::$strings["Change profile photo"] = "Endre profilbilde";
+App::$strings["Create a new profile using these settings"] = "Lag en ny profil ved å bruke disse innstillingene";
+App::$strings["Clone this profile"] = "Klon denne profilen";
+App::$strings["Delete this profile"] = "Slett denne profilen";
+App::$strings["Add profile things"] = "Legg til profilting";
+App::$strings["Personal"] = "Personlig";
+App::$strings["Relation"] = "Forhold";
+App::$strings["Miscellaneous"] = "Forskjellig";
+App::$strings["Import profile from file"] = "Importer profil fra fil";
+App::$strings["Export profile to file"] = "Eksporter profil til fil";
+App::$strings["Your gender"] = "Ditt kjønn";
+App::$strings["Marital status"] = "Sivilstand";
+App::$strings["Sexual preference"] = "Seksuelle preferanser";
+App::$strings["Profile name"] = "Profilnavn";
+App::$strings["This is your default profile."] = "Dette er din standardprofil.";
+App::$strings["Your full name"] = "Ditt fulle navn";
+App::$strings["Title/Description"] = "Tittel/beskrivelse";
+App::$strings["Street address"] = "Gateadresse";
+App::$strings["Locality/City"] = "Sted/by";
+App::$strings["Region/State"] = "Region/fylke";
+App::$strings["Postal/Zip code"] = "Postnummer/ZIP-kode";
+App::$strings["Country"] = "Land";
+App::$strings["Who (if applicable)"] = "Hvem (hvis det er aktuelt)";
+App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Eksempler: kari123, Kari Villiamsen, kari@example.com";
+App::$strings["Since (date)"] = "Siden (dato)";
+App::$strings["Tell us about yourself"] = "Fortell oss om deg selv";
+App::$strings["Hometown"] = "Hjemby";
+App::$strings["Political views"] = "Politiske synspunkter";
+App::$strings["Religious views"] = "Religiøse synspunkter";
+App::$strings["Keywords used in directory listings"] = "Nøkkelord bruk i katalogoppføringer";
+App::$strings["Example: fishing photography software"] = "Eksempel: fisking fotografering programvare";
+App::$strings["Musical interests"] = "Musikkinteresser";
+App::$strings["Books, literature"] = "Bøker, litteratur";
+App::$strings["Television"] = "TV/fjernsyn";
+App::$strings["Film/Dance/Culture/Entertainment"] = "Film/dans/kultur/underholdning";
+App::$strings["Hobbies/Interests"] = "Hobbier/Interesser";
+App::$strings["Love/Romance"] = "Kjærlighet/romantikk";
+App::$strings["School/Education"] = "Skole/utdanning";
+App::$strings["Contact information and social networks"] = "Kontaktinformasjon og sosiale nettverk";
+App::$strings["My other channels"] = "Mine andre kanaler";
+App::$strings["Profile Image"] = "Profilbilde";
+App::$strings["Edit Profiles"] = "Endre profiler";
App::$strings["Your service plan only allows %d channels."] = "Din tjenesteplan tillater bare %d kanaler.";
App::$strings["Nothing to import."] = "Ingenting å importere.";
App::$strings["Unable to download data from old server"] = "Ikke i stand til å laste ned data fra gammel tjener";
@@ -374,6 +533,8 @@ App::$strings["For either option, please choose whether to make this hub your ne
App::$strings["Make this hub my primary location"] = "Gjør dette nettstedet til min primære plassering";
App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importer eksisterende innlegg om mulig (eksperimentelt - begrenset av tilgjengelig minne)";
App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Denne prosessen kan ta flere minutter å fullføre. Vennligst send inn dette skjemaet bare en gang og la siden være åpen inntil den er ferdig.";
+App::$strings["\$Projectname"] = "\$Projectname";
+App::$strings["Welcome to %s"] = "Velkommen til %s";
App::$strings["Unable to locate original post."] = "Ikke i stand til å finne opprinnelig innlegg.";
App::$strings["Empty post discarded."] = "Tomt innlegg forkastet.";
App::$strings["Executable content type not permitted to this channel."] = "Kjørbar innholdstype er ikke tillat for denne kanalen.";
@@ -382,60 +543,76 @@ App::$strings["System error. Post not saved."] = "Systemfeil. Innlegg ble ikke l
App::$strings["Unable to obtain post information from database."] = "Ikke i stand til å få tak i informasjon om innlegg fra databasen.";
App::$strings["You have reached your limit of %1$.0f top level posts."] = "Du har nådd din grense på %1$.0f startinnlegg.";
App::$strings["You have reached your limit of %1$.0f webpages."] = "Du har nådd din grense på %1$.0f websider.";
-App::$strings["Layouts"] = "Layout";
-App::$strings["Comanche page description language help"] = "Hjelp med Comanche sidebeskrivelsesspråk";
-App::$strings["Layout Description"] = "Layout-beskrivelse";
-App::$strings["Download PDL file"] = "Last ned PDL-fil";
-App::$strings["\$Projectname"] = "\$Projectname";
-App::$strings["Welcome to %s"] = "Velkommen til %s";
-App::$strings["First Name"] = "Fornavn";
-App::$strings["Last Name"] = "Etternavn";
-App::$strings["Nickname"] = "Kallenavn";
-App::$strings["Full Name"] = "Fullt navn";
-App::$strings["Email"] = "E-post";
-App::$strings["Profile Photo"] = "Profilbilde";
-App::$strings["Profile Photo 16px"] = "Profilbilde 16px";
-App::$strings["Profile Photo 32px"] = "Profilbilde 32px";
-App::$strings["Profile Photo 48px"] = "Profilbilde 48px";
-App::$strings["Profile Photo 64px"] = "Profilbilde 64px";
-App::$strings["Profile Photo 80px"] = "Profilbilde 80px";
-App::$strings["Profile Photo 128px"] = "Profilbilde 128px";
-App::$strings["Timezone"] = "Tidssone";
-App::$strings["Homepage URL"] = "Hjemmeside URL";
-App::$strings["Language"] = "Språk";
-App::$strings["Birth Year"] = "Fødselsår";
-App::$strings["Birth Month"] = "Fødselsmåne";
-App::$strings["Birth Day"] = "Fødselsdag";
-App::$strings["Birthdate"] = "Fødselsdato";
-App::$strings["Gender"] = "Kjønn";
-App::$strings["Male"] = "Mannlig";
-App::$strings["Female"] = "Kvinnelig";
-App::$strings["webpage"] = "nettside";
-App::$strings["block"] = "byggekloss";
-App::$strings["layout"] = "layout";
-App::$strings["menu"] = "meny";
-App::$strings["%s element installed"] = "%s element installert";
-App::$strings["%s element installation failed"] = "Installasjon av %s-element mislyktes";
-App::$strings["Like/Dislike"] = "Liker/Liker ikke";
-App::$strings["This action is restricted to members."] = "Denne handlingen er begrenset til medlemmer.";
-App::$strings["Please <a href=\"rmagic\">login with your \$Projectname ID</a> or <a href=\"register\">register as a new \$Projectname member</a> to continue."] = "Vennligst <a href=\"rmagic\">logg inn med din \$Projectname ID</a> eller <a href=\"register\">registrer deg som et nytt \$Projectname-medlem</a> for å fortsette";
-App::$strings["Invalid request."] = "Ugyldig forespørsel.";
-App::$strings["channel"] = "kanal";
-App::$strings["thing"] = "ting";
-App::$strings["Channel unavailable."] = "Kanalen er utilgjengelig.";
-App::$strings["Previous action reversed."] = "Forrige handling er omgjort.";
-App::$strings["photo"] = "foto";
-App::$strings["status"] = "status";
-App::$strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s liker %2\$s sin %3\$s";
-App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s liker ikke %2\$s sin %3\$s";
-App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s er enig med %2\$s sin %3\$s";
-App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s er ikke enig med %2\$s sin %3\$s";
-App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s avstår fra å mene noe om %2\$s sin %3\$s";
-App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s deltar på %2\$ss %3\$s";
-App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s deltar ikke på %2\$ss %3\$s";
-App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s deltar kanskje på %2\$ss %3\$s";
-App::$strings["Action completed."] = "Handling ferdig.";
-App::$strings["Thank you."] = "Tusen takk.";
+App::$strings["Page owner information could not be retrieved."] = "Informasjon om sideeier kunne ikke hentes.";
+App::$strings["Profile Photos"] = "Profilbilder";
+App::$strings["Album not found."] = "Albumet ble ikke funnet.";
+App::$strings["Delete Album"] = "Slett album";
+App::$strings["Multiple storage folders exist with this album name, but within different directories. Please remove the desired folder or folders using the Files manager"] = "Flere lagringsmapper finnes med dette albumnavnet, men i ulike mapper. Vennligst fjern den ønskede mappen eller mappene med filbehandleren.";
+App::$strings["Delete Photo"] = "Slett bilde";
+App::$strings["No photos selected"] = "Ingen bilder valgt";
+App::$strings["Access to this item is restricted."] = "Tilgang til dette elementet er begrenset.";
+App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB av %2$.2f MB lagringsplass til bilder er brukt.";
+App::$strings["%1$.2f MB photo storage used."] = "%1$.2f MB lagringsplass til bilder er brukt.";
+App::$strings["Upload Photos"] = "Last opp bilder";
+App::$strings["Enter an album name"] = "Skriv et albumnavn";
+App::$strings["or select an existing album (doubleclick)"] = "eller velg et eksisterende album (dobbeltklikk)";
+App::$strings["Create a status post for this upload"] = "Lag et statusinnlegg for denne opplastingen";
+App::$strings["Caption (optional):"] = "Bildetekst (valgfritt):";
+App::$strings["Description (optional):"] = "Beskrivelse (valgfritt):";
+App::$strings["Album name could not be decoded"] = "Albumnavnet kunne ikke dekodes";
+App::$strings["Contact Photos"] = "Kontaktbilder";
+App::$strings["Show Newest First"] = "Vis nyeste først";
+App::$strings["Show Oldest First"] = "Vis eldste først";
+App::$strings["View Photo"] = "Vis foto";
+App::$strings["Edit Album"] = "Endre album";
+App::$strings["Permission denied. Access to this item may be restricted."] = "Tillatelse avvist. Tilgang til dette elementet kan være begrenset.";
+App::$strings["Photo not available"] = "Bilde er utilgjengelig";
+App::$strings["Use as profile photo"] = "Bruk som profilbilde";
+App::$strings["Use as cover photo"] = "Bruk som forsidebilde";
+App::$strings["Private Photo"] = "Privat bilde";
+App::$strings["View Full Size"] = "Vis i full størrelse";
+App::$strings["Remove"] = "Fjern";
+App::$strings["Edit photo"] = "Endre bilde";
+App::$strings["Rotate CW (right)"] = "Roter med klokka (mot høyre)";
+App::$strings["Rotate CCW (left)"] = "Roter mot klokka (venstre)";
+App::$strings["Enter a new album name"] = "Skriv et nytt albumnavn";
+App::$strings["or select an existing one (doubleclick)"] = "eller velg et eksisterende album (dobbeltklikk)";
+App::$strings["Caption"] = "Overskrift";
+App::$strings["Add a Tag"] = "Legg til merkelapp";
+App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Eksempel: @bob, @Barbara_Jensen, @jim@example.com";
+App::$strings["Flag as adult in album view"] = "Flag som voksent i albumvisning";
+App::$strings["I like this (toggle)"] = "Jeg liker dette (skru av og på)";
+App::$strings["I don't like this (toggle)"] = "Jeg liker ikke dette (skru av og på)";
+App::$strings["Please wait"] = "Vennligst vent";
+App::$strings["This is you"] = "Dette er deg";
+App::$strings["Comment"] = "Kommentar";
+App::$strings["__ctx:title__ Likes"] = "Liker";
+App::$strings["__ctx:title__ Dislikes"] = "Liker ikke";
+App::$strings["__ctx:title__ Agree"] = "Enig";
+App::$strings["__ctx:title__ Disagree"] = "Uenig";
+App::$strings["__ctx:title__ Abstain"] = "Avstår";
+App::$strings["__ctx:title__ Attending"] = "Deltar";
+App::$strings["__ctx:title__ Not attending"] = "Deltar ikke";
+App::$strings["__ctx:title__ Might attend"] = "Deltar kanskje";
+App::$strings["View all"] = "Vis alle";
+App::$strings["__ctx:noun__ Like"] = array(
+ 0 => "Liker",
+ 1 => "Liker",
+);
+App::$strings["__ctx:noun__ Dislike"] = array(
+ 0 => "Liker ikke",
+ 1 => "Liker ikke",
+);
+App::$strings["Photo Tools"] = "Fotoverktøy";
+App::$strings["In This Photo:"] = "I dette bildet:";
+App::$strings["Map"] = "Kart";
+App::$strings["__ctx:noun__ Likes"] = "Liker";
+App::$strings["__ctx:noun__ Dislikes"] = "Liker ikke";
+App::$strings["Close"] = "Lukk";
+App::$strings["View Album"] = "Vis album";
+App::$strings["Recent Photos"] = "Nye bilder";
+App::$strings["Remote privacy information not available."] = "Ekstern personverninformasjon er ikke tilgjengelig.";
+App::$strings["Visible to:"] = "Synlig for:";
App::$strings["Import completed"] = "Import ferdig";
App::$strings["Import Items"] = "Importer elementer";
App::$strings["Use this form to import existing posts and content from an export file."] = "Bruk dette skjemaet for å importere eksisterende innlegg og innhold fra en eksportfil.";
@@ -458,18 +635,15 @@ App::$strings["1. Register at any \$Projectname location (they are all inter-con
App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Skriv inn min \$Projectname-adresse i nettstedets søkefelt.";
App::$strings["or visit"] = "eller besøke";
App::$strings["3. Click [Connect]"] = "3. Klikk [Forbindelse]";
-App::$strings["Remote privacy information not available."] = "Ekstern personverninformasjon er ikke tilgjengelig.";
-App::$strings["Visible to:"] = "Synlig for:";
App::$strings["Location not found."] = "Plassering er ikke funnet.";
App::$strings["Location lookup failed."] = "Oppslag på plassering mislyktes.";
App::$strings["Please select another location to become primary before removing the primary location."] = "Vennligst velg en annen plassering som primær før du sletter gjeldende primære plassering.";
App::$strings["Syncing locations"] = "Synkroniserer plasseringer";
App::$strings["No locations found."] = "Ingen plasseringer ble funnet.";
App::$strings["Manage Channel Locations"] = "Håndter kanalplasseringer";
-App::$strings["Address"] = "Adresse";
-App::$strings["Primary"] = "";
+App::$strings["Primary"] = "Hoved";
App::$strings["Drop"] = "Slett";
-App::$strings["Sync Now"] = "";
+App::$strings["Sync Now"] = "Synkroniser nå";
App::$strings["Please wait several minutes between consecutive operations."] = "Vennligst vent flere minutter mellom hver etterfølgende operasjon.";
App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Når mulig, fjern en plassering ved å logge inn på det nettstedet eller den hub-en og fjern din kanal.";
App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Bruk dette skjemaet for å fjerne plasseringen hvis huben ikke er i drift lenger.";
@@ -506,23 +680,7 @@ App::$strings["Default Channel"] = "Standardkanal";
App::$strings["Make Default"] = "Gjør til standard";
App::$strings["%d new messages"] = "%d nye meldinger";
App::$strings["%d new introductions"] = "%d nye introduksjoner";
-App::$strings["Delegated Channel"] = "";
-App::$strings["No valid account found."] = "Ingen gyldig konto funnet.";
-App::$strings["Password reset request issued. Check your email."] = "Forespørsel om å tilbakestille passord er mottatt. Sjekk e-posten din.";
-App::$strings["Site Member (%s)"] = "Nettstedsmedlem (%s)";
-App::$strings["Password reset requested at %s"] = "Forespurt om å tilbakestille passord hos %s";
-App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Forespørsel kunne ikke bekreftes. (Du kan ha sendt den inn tidligere.) Tilbakestilling av passord mislyktes.";
-App::$strings["Password Reset"] = "Tilbakestill passord";
-App::$strings["Your password has been reset as requested."] = "Ditt passord har blitt tilbakestilt som forespurt.";
-App::$strings["Your new password is"] = "Ditt nye passord er";
-App::$strings["Save or copy your new password - and then"] = "Lagre eller kopier ditt nye passord, og deretter kan du";
-App::$strings["click here to login"] = "klikke her for å logge inn";
-App::$strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Ditt passord kan endres på siden <em>Innstillinger</em> etter vellykket innlogging.";
-App::$strings["Your password has changed at %s"] = "Ditt passord er endret hos %s";
-App::$strings["Forgot your Password?"] = "Glemt passord ditt?";
-App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Skriv e-postadressen din og send inn for å tilbakestille passordet ditt. Sjekk deretter din e-post for videre instruksjoner.";
-App::$strings["Email Address"] = "E-postadresse";
-App::$strings["Reset"] = "Tilbakestill";
+App::$strings["Delegated Channel"] = "Delegert kanal";
App::$strings["Unable to update menu."] = "Ikke i stand til å oppdatere meny.";
App::$strings["Unable to create menu."] = "Ikke i stand til å lage meny.";
App::$strings["Menu Name"] = "Menynavn";
@@ -547,13 +705,25 @@ App::$strings["Menu title"] = "Menytittel";
App::$strings["Menu title as seen by others"] = "Menytittelen andre ser";
App::$strings["Allow bookmarks"] = "Tillat bokmerker";
App::$strings["Not found."] = "Ikke funnet.";
+App::$strings["No valid account found."] = "Ingen gyldig konto funnet.";
+App::$strings["Password reset request issued. Check your email."] = "Forespørsel om å tilbakestille passord er mottatt. Sjekk e-posten din.";
+App::$strings["Site Member (%s)"] = "Nettstedsmedlem (%s)";
+App::$strings["Password reset requested at %s"] = "Forespurt om å tilbakestille passord hos %s";
+App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Forespørsel kunne ikke bekreftes. (Du kan ha sendt den inn tidligere.) Tilbakestilling av passord mislyktes.";
+App::$strings["Password Reset"] = "Tilbakestill passord";
+App::$strings["Your password has been reset as requested."] = "Ditt passord har blitt tilbakestilt som forespurt.";
+App::$strings["Your new password is"] = "Ditt nye passord er";
+App::$strings["Save or copy your new password - and then"] = "Lagre eller kopier ditt nye passord, og deretter kan du";
+App::$strings["click here to login"] = "klikke her for å logge inn";
+App::$strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Ditt passord kan endres på siden <em>Innstillinger</em> etter vellykket innlogging.";
+App::$strings["Your password has changed at %s"] = "Ditt passord er endret hos %s";
+App::$strings["Forgot your Password?"] = "Glemt passord ditt?";
+App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Skriv e-postadressen din og send inn for å tilbakestille passordet ditt. Sjekk deretter din e-post for videre instruksjoner.";
+App::$strings["Email Address"] = "E-postadresse";
+App::$strings["Reset"] = "Tilbakestill";
App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s er %2\$s";
App::$strings["Mood"] = "Stemning";
App::$strings["Set your current mood and tell your friends"] = "Angi ditt nåværende humør og fortell dine venner";
-App::$strings["Profile Match"] = "Profiltreff";
-App::$strings["No keywords to match. Please add keywords to your default profile."] = "Ingen nøkkelord å sammenlikne. Vennligst legg til nøkkelord til din standardprofil.";
-App::$strings["is interested in:"] = "er interessert i:";
-App::$strings["No matches"] = "Ingen treff";
App::$strings["No such group"] = "Gruppen finnes ikke";
App::$strings["No such channel"] = "Ingen slik kanal";
App::$strings["forum"] = "forum";
@@ -563,6 +733,13 @@ App::$strings["Privacy group: "] = "Personverngruppe:";
App::$strings["Invalid connection."] = "Ugyldig forbindelse.";
App::$strings["No more system notifications."] = "Ingen flere systemvarsler.";
App::$strings["System Notifications"] = "Systemvarsler";
+App::$strings["Profile Match"] = "Profiltreff";
+App::$strings["No keywords to match. Please add keywords to your default profile."] = "Ingen nøkkelord å sammenlikne. Vennligst legg til nøkkelord til din standardprofil.";
+App::$strings["is interested in:"] = "er interessert i:";
+App::$strings["No matches"] = "Ingen treff";
+App::$strings["Posts and comments"] = "Innlegg og kommentarer";
+App::$strings["Only posts"] = "Bare innlegg";
+App::$strings["Insufficient permissions. Request redirected to profile page."] = "Utilstrekkelig tillatelse. Forespørsel omdirigert til profilsiden.";
App::$strings["Unable to create element."] = "Klarer ikke å lage element.";
App::$strings["Unable to update menu element."] = "Ikke i stand til å oppdatere menyelement.";
App::$strings["Unable to add menu element."] = "Ikke i stand til å legge til menyelement.";
@@ -592,203 +769,6 @@ App::$strings["Menu item deleted."] = "Menyelement slettet.";
App::$strings["Menu item could not be deleted."] = "Menyelement kunne ikke bli slettet.";
App::$strings["Edit Menu Element"] = "Endre menyelement";
App::$strings["Link text"] = "Lenketekst";
-App::$strings["Name or caption"] = "Navn eller overskrift";
-App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Eksempel: \"Ola Nordmann\", \"Lisa og hestene hennes\", \"Fotball\", \"Sykkelgruppa\"";
-App::$strings["Choose a short nickname"] = "Velg et kort kallenavn";
-App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Ditt kallenavn brukes til å lage en kanaladresse som er enkel å huske, for eksempel kallenavn%s";
-App::$strings["Channel role and privacy"] = "Kanalrolle og personvern";
-App::$strings["Select a channel role with your privacy requirements."] = "Velg en kanalrolle for ditt personvernbehov.";
-App::$strings["Read more about roles"] = "Les mer om roller";
-App::$strings["Create Channel"] = "Lag kanal";
-App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "En kanal er din identitet i dette nettverket. Den kan representere en person, en blogg eller et forum for å nevne noe. Kanaler kan ha forbindelser til andre kanaler for å dele informasjon, og med svært detaljerte tillatelser.";
-App::$strings["or <a href=\"import\">import an existing channel</a> from another location."] = "eller <a href=\"import\">importer en eksisterende kanal</a> fra et annet sted.";
-App::$strings["Invalid request identifier."] = "Ugyldig forespørselsidentifikator.";
-App::$strings["Discard"] = "Forkast";
-App::$strings["Mark all system notifications seen"] = "Merk alle systemvarsler som sett";
-App::$strings["Page owner information could not be retrieved."] = "Informasjon om sideeier kunne ikke hentes.";
-App::$strings["Profile Photos"] = "Profilbilder";
-App::$strings["Album not found."] = "Albumet ble ikke funnet.";
-App::$strings["Delete Album"] = "Slett album";
-App::$strings["Multiple storage folders exist with this album name, but within different directories. Please remove the desired folder or folders using the Files manager"] = "";
-App::$strings["Delete Photo"] = "Slett bilde";
-App::$strings["No photos selected"] = "Ingen bilder valgt";
-App::$strings["Access to this item is restricted."] = "Tilgang til dette elementet er begrenset.";
-App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB av %2$.2f MB lagringsplass til bilder er brukt.";
-App::$strings["%1$.2f MB photo storage used."] = "%1$.2f MB lagringsplass til bilder er brukt.";
-App::$strings["Upload Photos"] = "Last opp bilder";
-App::$strings["Enter an album name"] = "Skriv et albumnavn";
-App::$strings["or select an existing album (doubleclick)"] = "eller velg et eksisterende album (dobbeltklikk)";
-App::$strings["Create a status post for this upload"] = "Lag et statusinnlegg for denne opplastingen";
-App::$strings["Caption (optional):"] = "Bildetekst (valgfritt):";
-App::$strings["Description (optional):"] = "Beskrivelse (valgfritt):";
-App::$strings["Album name could not be decoded"] = "Albumnavnet kunne ikke dekodes";
-App::$strings["Contact Photos"] = "Kontaktbilder";
-App::$strings["Show Newest First"] = "Vis nyeste først";
-App::$strings["Show Oldest First"] = "Vis eldste først";
-App::$strings["View Photo"] = "Vis foto";
-App::$strings["Edit Album"] = "Endre album";
-App::$strings["Permission denied. Access to this item may be restricted."] = "Tillatelse avvist. Tilgang til dette elementet kan være begrenset.";
-App::$strings["Photo not available"] = "Bilde er utilgjengelig";
-App::$strings["Use as profile photo"] = "Bruk som profilbilde";
-App::$strings["Use as cover photo"] = "";
-App::$strings["Private Photo"] = "Privat bilde";
-App::$strings["View Full Size"] = "Vis i full størrelse";
-App::$strings["Remove"] = "Fjern";
-App::$strings["Edit photo"] = "Endre bilde";
-App::$strings["Rotate CW (right)"] = "Roter med klokka (mot høyre)";
-App::$strings["Rotate CCW (left)"] = "Roter mot klokka (venstre)";
-App::$strings["Enter a new album name"] = "Skriv et nytt albumnavn";
-App::$strings["or select an existing one (doubleclick)"] = "eller velg et eksisterende album (dobbeltklikk)";
-App::$strings["Caption"] = "Overskrift";
-App::$strings["Add a Tag"] = "Legg til merkelapp";
-App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Eksempel: @bob, @Barbara_Jensen, @jim@example.com";
-App::$strings["Flag as adult in album view"] = "Flag som voksent i albumvisning";
-App::$strings["I like this (toggle)"] = "Jeg liker dette (skru av og på)";
-App::$strings["I don't like this (toggle)"] = "Jeg liker ikke dette (skru av og på)";
-App::$strings["Please wait"] = "Vennligst vent";
-App::$strings["This is you"] = "Dette er deg";
-App::$strings["Comment"] = "Kommentar";
-App::$strings["__ctx:title__ Likes"] = "Liker";
-App::$strings["__ctx:title__ Dislikes"] = "Liker ikke";
-App::$strings["__ctx:title__ Agree"] = "Enig";
-App::$strings["__ctx:title__ Disagree"] = "Uenig";
-App::$strings["__ctx:title__ Abstain"] = "Avstår";
-App::$strings["__ctx:title__ Attending"] = "Deltar";
-App::$strings["__ctx:title__ Not attending"] = "Deltar ikke";
-App::$strings["__ctx:title__ Might attend"] = "Deltar kanskje";
-App::$strings["View all"] = "Vis alle";
-App::$strings["__ctx:noun__ Like"] = array(
- 0 => "Liker",
- 1 => "Liker",
-);
-App::$strings["__ctx:noun__ Dislike"] = array(
- 0 => "Liker ikke",
- 1 => "Liker ikke",
-);
-App::$strings["Photo Tools"] = "";
-App::$strings["In This Photo:"] = "I dette bildet:";
-App::$strings["Map"] = "Kart";
-App::$strings["__ctx:noun__ Likes"] = "Liker";
-App::$strings["__ctx:noun__ Dislikes"] = "Liker ikke";
-App::$strings["Close"] = "Lukk";
-App::$strings["View Album"] = "Vis album";
-App::$strings["Recent Photos"] = "Nye bilder";
-App::$strings["sent you a private message"] = "sendte deg en privat melding";
-App::$strings["added your channel"] = "la til din kanal";
-App::$strings["g A l F d"] = "g A l F d";
-App::$strings["[today]"] = "[idag]";
-App::$strings["posted an event"] = "la ut en hendelse";
-App::$strings["Unable to find your hub."] = "Ikke i stand til å finne hubben din.";
-App::$strings["Post successful."] = "Innlegg vellykket.";
-App::$strings["OpenID protocol error. No ID returned."] = "OpenID protokollfeil. Ingen ID ble returnert.";
-App::$strings["Login failed."] = "Innlogging mislyktes.";
-App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.";
-App::$strings["This setting requires special processing and editing has been blocked."] = "Denne innstillingen krever spesiell behandling og redigering har blitt blokkert.";
-App::$strings["Configuration Editor"] = "Konfigurasjonsbehandler";
-App::$strings["Warning: Changing some settings could render your channel inoperable. Please leave this page unless you are comfortable with and knowledgeable about how to correctly use this feature."] = "Advarsel: kanalen din kan slutte å virke ved endring av enkelte innstillinger. Vennligst forlat denne siden med mindre du er komfortabel med dette og vet hvordan du bruker denne funksjonen riktig.";
-App::$strings["Layout updated."] = "Layout er oppdatert.";
-App::$strings["Edit System Page Description"] = "Endre beskrivelsen av systemsiden";
-App::$strings["Layout not found."] = "Layouten ble ikke funnet.";
-App::$strings["Module Name:"] = "Modulnavn:";
-App::$strings["Layout Help"] = "Layout-hjelp";
-App::$strings["Poke"] = "Prikk";
-App::$strings["Poke somebody"] = "Dult noen";
-App::$strings["Poke/Prod"] = "Prikke/oppildne";
-App::$strings["Poke, prod or do other things to somebody"] = "Dult, prikk eller gjør andre ting med noen";
-App::$strings["Recipient"] = "Mottaker";
-App::$strings["Choose what you wish to do to recipient"] = "Velg hva du ønsker å gjøre med mottakeren";
-App::$strings["Make this post private"] = "Gjør dette innlegget privat";
-App::$strings["Fetching URL returns error: %1\$s"] = "Henting av URL gir følgende feil: %1\$s";
-App::$strings["Profile not found."] = "Profilen ble ikke funnet.";
-App::$strings["Profile deleted."] = "Profilen er slettet.";
-App::$strings["Profile-"] = "Profil-";
-App::$strings["New profile created."] = "Ny profil opprettet.";
-App::$strings["Profile unavailable to clone."] = "Profilen er utilgjengelig for klonen.";
-App::$strings["Profile unavailable to export."] = "Profilen er utilgjengelig for eksport.";
-App::$strings["Profile Name is required."] = "Profilnavn er påkrevd.";
-App::$strings["Marital Status"] = "Sivilstand";
-App::$strings["Romantic Partner"] = "Romantisk partner";
-App::$strings["Likes"] = "Liker";
-App::$strings["Dislikes"] = "Liker ikke";
-App::$strings["Work/Employment"] = "Arbeid/sysselsetting";
-App::$strings["Religion"] = "Religion";
-App::$strings["Political Views"] = "Politiske synspunkter";
-App::$strings["Sexual Preference"] = "Seksuelle preferanser";
-App::$strings["Homepage"] = "Hjemmeside";
-App::$strings["Interests"] = "Interesser";
-App::$strings["Profile updated."] = "Profilen er oppdatert.";
-App::$strings["Hide your connections list from viewers of this profile"] = "";
-App::$strings["Edit Profile Details"] = "Endre profildetaljer";
-App::$strings["View this profile"] = "Vis denne profilen";
-App::$strings["Edit visibility"] = "Endre synlighet";
-App::$strings["Profile Tools"] = "";
-App::$strings["Change cover photo"] = "";
-App::$strings["Change profile photo"] = "Endre profilbilde";
-App::$strings["Create a new profile using these settings"] = "Lag en ny profil ved å bruke disse innstillingene";
-App::$strings["Clone this profile"] = "Klon denne profilen";
-App::$strings["Delete this profile"] = "Slett denne profilen";
-App::$strings["Add profile things"] = "Legg til profilting";
-App::$strings["Personal"] = "Personlig";
-App::$strings["Relation"] = "";
-App::$strings["Miscellaneous"] = "Forskjellig";
-App::$strings["Import profile from file"] = "Importer profil fra fil";
-App::$strings["Export profile to file"] = "Eksporter profil til fil";
-App::$strings["Your gender"] = "";
-App::$strings["Marital status"] = "";
-App::$strings["Sexual preference"] = "";
-App::$strings["Profile name"] = "";
-App::$strings["This is your default profile."] = "Dette er din standardprofil.";
-App::$strings["Your full name"] = "";
-App::$strings["Title/Description"] = "";
-App::$strings["Street address"] = "";
-App::$strings["Locality/City"] = "";
-App::$strings["Region/State"] = "";
-App::$strings["Postal/Zip code"] = "";
-App::$strings["Country"] = "";
-App::$strings["Who (if applicable)"] = "";
-App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Eksempler: kari123, Kari Villiamsen, kari@example.com";
-App::$strings["Since (date)"] = "";
-App::$strings["Tell us about yourself"] = "";
-App::$strings["Hometown"] = "";
-App::$strings["Political views"] = "";
-App::$strings["Religious views"] = "";
-App::$strings["Keywords used in directory listings"] = "";
-App::$strings["Example: fishing photography software"] = "Eksempel: fisking fotografering programvare";
-App::$strings["Musical interests"] = "Musikkinteresser";
-App::$strings["Books, literature"] = "Bøker, litteratur";
-App::$strings["Television"] = "TV/fjernsyn";
-App::$strings["Film/Dance/Culture/Entertainment"] = "";
-App::$strings["Hobbies/Interests"] = "Hobbier/Interesser";
-App::$strings["Love/Romance"] = "";
-App::$strings["School/Education"] = "";
-App::$strings["Contact information and social networks"] = "";
-App::$strings["My other channels"] = "Mine andre kanaler";
-App::$strings["Profile Image"] = "Profilbilde";
-App::$strings["Edit Profiles"] = "Endre profiler";
-App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Hold nede Shift-knappen og last siden på nytt eller tøm nettleserens mellomlager hvis det nye bildet ikke vises umiddelbart.";
-App::$strings["Upload Profile Photo"] = "Last opp profilbilde:";
-App::$strings["Invalid profile identifier."] = "Ugyldig profil-identifikator.";
-App::$strings["Profile Visibility Editor"] = "Endre profilsynlighet";
-App::$strings["Profile"] = "Profil";
-App::$strings["Click on a contact to add or remove."] = "Klikk på en kontakt for å legge til eller fjerne.";
-App::$strings["Visible To"] = "Synlig for";
-App::$strings["Public Hubs"] = "Offentlige huber";
-App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself <strong>may</strong> provide additional details."] = "Nettstedene på listen tillater offentlig registrering i \$Projectname-nettverket. Alle nettsteder i nettverket er forbundet så medlemskap på enhver av dem formidler medlemskap i nettverket som helhet. Noen nettsteder kan kreve abonnement eller tilby lagdelte tjenesteavtaler. Nettstedene selv <strong>kan</strong> gi tilleggsopplysninger.";
-App::$strings["Hub URL"] = "Nettstedets URL";
-App::$strings["Access Type"] = "Tilgangstype";
-App::$strings["Registration Policy"] = "Retningslinjer for registrering";
-App::$strings["Stats"] = "";
-App::$strings["Software"] = "";
-App::$strings["Ratings"] = "Vurderinger";
-App::$strings["Rate"] = "Vurder";
-App::$strings["Website:"] = "Nettsted:";
-App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Fjerntliggende kanal [%s] (foreløpig ikke kjent på dette nettstedet)";
-App::$strings["Rating (this information is public)"] = "Vurdering (denne informasjonen er offentlig)";
-App::$strings["Optionally explain your rating (this information is public)"] = "Velg om du vil forklare din vurdering (denne informasjonen er offentlig)";
-App::$strings["No ratings"] = "Ingen vurderinger";
-App::$strings["Rating: "] = "Vurdering:";
-App::$strings["Website: "] = "Nettsted:";
-App::$strings["Description: "] = "Beskrivelse:";
App::$strings["Theme settings updated."] = "Temainnstillinger er oppdatert.";
App::$strings["# Accounts"] = "# Kontoer";
App::$strings["# blocked accounts"] = "# blokkerte kontoer";
@@ -798,7 +778,7 @@ App::$strings["# Channels"] = "# Kanaler";
App::$strings["# primary"] = "# hoved";
App::$strings["# clones"] = "# kloner";
App::$strings["Message queues"] = "Meldingskøer";
-App::$strings["Your software should be updated"] = "";
+App::$strings["Your software should be updated"] = "Programvaren din bør oppdateres";
App::$strings["Administration"] = "Administrasjon";
App::$strings["Summary"] = "Sammendrag";
App::$strings["Registered accounts"] = "Registrerte kontoer";
@@ -806,8 +786,8 @@ App::$strings["Pending registrations"] = "Ventende registreringer";
App::$strings["Registered channels"] = "Registrerte kanaler";
App::$strings["Active plugins"] = "Aktive tilleggsfunksjoner";
App::$strings["Version"] = "Versjon";
-App::$strings["Repository version (master)"] = "";
-App::$strings["Repository version (dev)"] = "";
+App::$strings["Repository version (master)"] = "Depotversjon (master)";
+App::$strings["Repository version (dev)"] = "Depotversjon (dev)";
App::$strings["Site settings updated."] = "Nettstedsinnstillinger er oppdatert.";
App::$strings["Default"] = "Standard";
App::$strings["mobile"] = "mobil";
@@ -860,10 +840,10 @@ App::$strings["Force publish"] = "Tving publisering";
App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "Kryss av for å tvinge alle profiler på dette nettstedet til å bli oppført i nettstedet sin katalog.";
App::$strings["Import Public Streams"] = "Importer offentlige innholdsstrømmer";
App::$strings["Import and allow access to public content pulled from other sites. Warning: this content is unmoderated."] = "Importer og gi tilgang til offentlig innhold trukket inn fra andre nettsteder. Advarsel: dette innholdet er ikke moderert.";
-App::$strings["Login on Homepage"] = "";
+App::$strings["Login on Homepage"] = "Logg inn på hjemmesiden";
App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = "Presenter en innloggingsboks til besøkende på hjemmesiden hvis ikke noe annet innhold har blitt konfigurert.";
-App::$strings["Enable context help"] = "";
-App::$strings["Display contextual help for the current page when the help button is pressed."] = "";
+App::$strings["Enable context help"] = "Skru på kontekstsensitiv hjelp";
+App::$strings["Display contextual help for the current page when the help button is pressed."] = "Vis hjelp for den gjeldende siden når Hjelp-knappen trykkes.";
App::$strings["Directory Server URL"] = "Katalogtjener URL";
App::$strings["Default directory server"] = "Standard katalogtjener";
App::$strings["Proxy user"] = "Brukernavn mellomtjener";
@@ -889,24 +869,24 @@ App::$strings["ID"] = "ID";
App::$strings["for channel"] = "for kanalen";
App::$strings["on server"] = "på tjener";
App::$strings["Server"] = "Tjener";
-App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = "";
-App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = "";
-App::$strings["https://youtube.com/<br />https://www.youtube.com/<br />https://youtu.be/<br />https://vimeo.com/<br />https://soundcloud.com/<br />"] = "";
-App::$strings["All other embedded content will be filtered, <strong>unless</strong> embedded content from that site is explicitly blocked."] = "";
+App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = "Standardinnstillingen er at ufiltrert HTML er tillat ved innebygging av media. Dette er grunnleggende usikkert.";
+App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = "Anbefalt innstilling er å bare tillate ufiltrert HTML fra følgende nettsteder:";
+App::$strings["https://youtube.com/<br />https://www.youtube.com/<br />https://youtu.be/<br />https://vimeo.com/<br />https://soundcloud.com/<br />"] = "https://youtube.com/<br />https://www.youtube.com/<br />https://youtu.be/<br />https://vimeo.com/<br />https://soundcloud.com/<br />";
+App::$strings["All other embedded content will be filtered, <strong>unless</strong> embedded content from that site is explicitly blocked."] = "Alt annet innebygget innhold vil bli filtrert, <strong>med mindre</strong> innebygget innhold fra det nettstedet er eksplisitt blokkert.";
App::$strings["Security"] = "Sikkerhet";
App::$strings["Block public"] = "Blokker offentlig tilgang";
App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = "Kryss av for å blokkere tilgang til alle personlige sider som ellers ville vært offentlig tilgjengelige på dette nettstedet med mindre du er logget inn.";
-App::$strings["Set \"Transport Security\" HTTP header"] = "";
-App::$strings["Set \"Content Security Policy\" HTTP header"] = "";
+App::$strings["Set \"Transport Security\" HTTP header"] = "Sett HTTP header \"Transport Security\"";
+App::$strings["Set \"Content Security Policy\" HTTP header"] = "Sett HTTP header \"Content Security Policy\"";
App::$strings["Allow communications only from these sites"] = "Tillat kommunikasjon med bare disse nettstedene";
App::$strings["One site per line. Leave empty to allow communication from anywhere by default"] = "Et nettsted per linje. La det stå tomt for å tillate kommunikasjon med ethvert nettsted som standard";
App::$strings["Block communications from these sites"] = "Blokker kommunikasjon fra disse nettstedene";
App::$strings["Allow communications only from these channels"] = "Tillat kommunikasjon med bare disse kanalene";
App::$strings["One channel (hash) per line. Leave empty to allow from any channel by default"] = "En kanal (hash) per linje. La det stå tomt for å tillate enhver kanal som standard";
App::$strings["Block communications from these channels"] = "Blokker kommunikasjon fra disse kanalene";
-App::$strings["Only allow embeds from secure (SSL) websites and links."] = "";
-App::$strings["Allow unfiltered embedded HTML content only from these domains"] = "";
-App::$strings["One site per line. By default embedded content is filtered."] = "";
+App::$strings["Only allow embeds from secure (SSL) websites and links."] = "Bare tillat innebygging fra sikrede (SSL) nettsteder og lenker.";
+App::$strings["Allow unfiltered embedded HTML content only from these domains"] = "Tillat ufiltrert innebygging av HTML-innhold bare fra disse domenene";
+App::$strings["One site per line. By default embedded content is filtered."] = "Et nettsted per linje. Det er standard at innebygget innhold er filtrert.";
App::$strings["Block embedded HTML from these domains"] = "Blokker innbygget HTML fra disse domenene";
App::$strings["Update has been marked successful"] = "Oppdateringen har blitt merket som en suksess";
App::$strings["Executing %s failed. Check system logs."] = "Utføring av %s feilet. Sjekk systemlogger.";
@@ -938,7 +918,7 @@ App::$strings["Account '%s' blocked"] = "Kontoen '%s' blokkert";
App::$strings["Account '%s' unblocked"] = "Kontoen '%s' er ikke blokkert lenger";
App::$strings["Accounts"] = "Kontoer";
App::$strings["select all"] = "velg alle";
-App::$strings["Registrations waiting for confirm"] = "";
+App::$strings["Registrations waiting for confirm"] = "Registreringer venter på bekreftelse";
App::$strings["Request date"] = "Dato for forespørsel";
App::$strings["No registrations."] = "Ingen registreringer.";
App::$strings["Deny"] = "Avslå";
@@ -990,18 +970,18 @@ App::$strings["Maximum project version: "] = "Maksimum prosjektversjon:";
App::$strings["Minimum PHP version: "] = "Minimum PHP-versjon:";
App::$strings["Requires: "] = "Krever:";
App::$strings["Disabled - version incompatibility"] = "Skrudd av - versjonsinkompatibilitet";
-App::$strings["Enter the public git repository URL of the plugin repo."] = "";
-App::$strings["Plugin repo git URL"] = "";
-App::$strings["Custom repo name"] = "";
-App::$strings["(optional)"] = "";
-App::$strings["Download Plugin Repo"] = "";
-App::$strings["Install new repo"] = "";
+App::$strings["Enter the public git repository URL of the plugin repo."] = "Skriv inn URL-en til det offentlige git-depoet til tillegget.";
+App::$strings["Plugin repo git URL"] = "Git-URL-en til tillegget";
+App::$strings["Custom repo name"] = "Tilpasset depotnavn";
+App::$strings["(optional)"] = "(valgfritt)";
+App::$strings["Download Plugin Repo"] = "Last ned depotet til tillegget";
+App::$strings["Install new repo"] = "Installer nytt depot";
App::$strings["Install"] = "Installer";
-App::$strings["Manage Repos"] = "";
-App::$strings["Installed Plugin Repositories"] = "";
-App::$strings["Install a New Plugin Repository"] = "";
+App::$strings["Manage Repos"] = "Håndter depoter";
+App::$strings["Installed Plugin Repositories"] = "Installerede tilleggsdepoter";
+App::$strings["Install a New Plugin Repository"] = "Installer et nytt tillleggsdepot";
App::$strings["Update"] = "Oppdater";
-App::$strings["Switch branch"] = "";
+App::$strings["Switch branch"] = "Bytt gren";
App::$strings["No themes found."] = "Ingen temaer er funnet.";
App::$strings["Screenshot"] = "Skjermbilde";
App::$strings["Themes"] = "Temaer";
@@ -1012,7 +992,7 @@ App::$strings["Logs"] = "Logger";
App::$strings["Clear"] = "Tøm";
App::$strings["Debugging"] = "Feilsøking";
App::$strings["Log file"] = "Loggfil";
-App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = "";
+App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = "Må kunne skrives til av webtjenesten. Relativ til din toppnivåkatalog på webtjeneren.";
App::$strings["Log level"] = "Loggnivå";
App::$strings["New Profile Field"] = "Nytt profilfelt";
App::$strings["Field nickname"] = "Feltets kallenavn";
@@ -1024,26 +1004,98 @@ App::$strings["Help text"] = "Hjelpetekst";
App::$strings["Additional info (optional)"] = "Tilleggsinformasjon (valgfritt)";
App::$strings["Field definition not found"] = "Feltdefinisjonen ble ikke funnet";
App::$strings["Edit Profile Field"] = "Endre profilfelt";
-App::$strings["Profile Fields"] = "";
-App::$strings["Basic Profile Fields"] = "";
-App::$strings["Advanced Profile Fields"] = "";
-App::$strings["(In addition to basic fields)"] = "";
-App::$strings["All available fields"] = "";
-App::$strings["Custom Fields"] = "";
-App::$strings["Create Custom Field"] = "";
-App::$strings["App installed."] = "App installert.";
-App::$strings["Malformed app."] = "Feil oppsett for app-en.";
-App::$strings["Embed code"] = "Innbyggingskode";
-App::$strings["Edit App"] = "Endre app";
-App::$strings["Create App"] = "Lag app";
-App::$strings["Name of app"] = "Navn på app";
-App::$strings["Location (URL) of app"] = "Plassering (URL) til app";
-App::$strings["Photo icon URL"] = "Bildeikon URL";
-App::$strings["80 x 80 pixels - optional"] = "80 x80 pixler - valgfritt";
-App::$strings["Categories (optional, comma separated list)"] = "";
-App::$strings["Version ID"] = "Versjons-ID";
-App::$strings["Price of app"] = "Pris på app";
-App::$strings["Location (URL) to purchase app"] = "Plassering (URL) for å kjøpe app";
+App::$strings["Profile Fields"] = "Profilfelter";
+App::$strings["Basic Profile Fields"] = "Grunnleggende profilfelter";
+App::$strings["Advanced Profile Fields"] = "Avanserte profilfelter";
+App::$strings["(In addition to basic fields)"] = "(i tillegg til grunnleggende felter)";
+App::$strings["All available fields"] = "Alle tilgjengelige felter";
+App::$strings["Custom Fields"] = "Tilpassede felter";
+App::$strings["Create Custom Field"] = "Lag tilpasset felt";
+App::$strings["Name or caption"] = "Navn eller overskrift";
+App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Eksempel: \"Ola Nordmann\", \"Lisa og hestene hennes\", \"Fotball\", \"Sykkelgruppa\"";
+App::$strings["Choose a short nickname"] = "Velg et kort kallenavn";
+App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Ditt kallenavn brukes til å lage en kanaladresse som er enkel å huske, for eksempel kallenavn%s";
+App::$strings["Channel role and privacy"] = "Kanalrolle og personvern";
+App::$strings["Select a channel role with your privacy requirements."] = "Velg en kanalrolle for ditt personvernbehov.";
+App::$strings["Read more about roles"] = "Les mer om roller";
+App::$strings["Create Channel"] = "Lag kanal";
+App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "En kanal er din identitet i dette nettverket. Den kan representere en person, en blogg eller et forum for å nevne noe. Kanaler kan ha forbindelser til andre kanaler for å dele informasjon, og med svært detaljerte tillatelser.";
+App::$strings["or <a href=\"import\">import an existing channel</a> from another location."] = "eller <a href=\"import\">importer en eksisterende kanal</a> fra et annet sted.";
+App::$strings["sent you a private message"] = "sendte deg en privat melding";
+App::$strings["added your channel"] = "la til din kanal";
+App::$strings["g A l F d"] = "g A l F d";
+App::$strings["[today]"] = "[idag]";
+App::$strings["posted an event"] = "la ut en hendelse";
+App::$strings["Invalid request identifier."] = "Ugyldig forespørselsidentifikator.";
+App::$strings["Discard"] = "Forkast";
+App::$strings["Mark all system notifications seen"] = "Merk alle systemvarsler som sett";
+App::$strings["Poke"] = "Prikk";
+App::$strings["Poke somebody"] = "Dult noen";
+App::$strings["Poke/Prod"] = "Prikke/oppildne";
+App::$strings["Poke, prod or do other things to somebody"] = "Dult, prikk eller gjør andre ting med noen";
+App::$strings["Recipient"] = "Mottaker";
+App::$strings["Choose what you wish to do to recipient"] = "Velg hva du ønsker å gjøre med mottakeren";
+App::$strings["Make this post private"] = "Gjør dette innlegget privat";
+App::$strings["Unable to find your hub."] = "Ikke i stand til å finne hubben din.";
+App::$strings["Post successful."] = "Innlegg vellykket.";
+App::$strings["OpenID protocol error. No ID returned."] = "OpenID protokollfeil. Ingen ID ble returnert.";
+App::$strings["Login failed."] = "Innlogging mislyktes.";
+App::$strings["Invalid profile identifier."] = "Ugyldig profil-identifikator.";
+App::$strings["Profile Visibility Editor"] = "Endre profilsynlighet";
+App::$strings["Profile"] = "Profil";
+App::$strings["Click on a contact to add or remove."] = "Klikk på en kontakt for å legge til eller fjerne.";
+App::$strings["Visible To"] = "Synlig for";
+App::$strings["This setting requires special processing and editing has been blocked."] = "Denne innstillingen krever spesiell behandling og redigering har blitt blokkert.";
+App::$strings["Configuration Editor"] = "Konfigurasjonsbehandler";
+App::$strings["Warning: Changing some settings could render your channel inoperable. Please leave this page unless you are comfortable with and knowledgeable about how to correctly use this feature."] = "Advarsel: kanalen din kan slutte å virke ved endring av enkelte innstillinger. Vennligst forlat denne siden med mindre du er komfortabel med dette og vet hvordan du bruker denne funksjonen riktig.";
+App::$strings["Fetching URL returns error: %1\$s"] = "Henting av URL gir følgende feil: %1\$s";
+App::$strings["Version %s"] = "Versjon %s";
+App::$strings["Installed plugins/addons/apps:"] = "Installerte tilleggsfunksjoner/tillegg/apper:";
+App::$strings["No installed plugins/addons/apps"] = "Ingen installerte tilleggsfunksjoner/tillegg/apper";
+App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Dette er en \$Projectname-hub - et globalt samhandlende nettverk av desentraliserte nettsteder med innbygget personvern.";
+App::$strings["Tag: "] = "Merkelapp:";
+App::$strings["Last background fetch: "] = "Siste innhenting i bakgrunnen:";
+App::$strings["Current load average: "] = "Gjeldende belastningsgjennomsnitt:";
+App::$strings["Running at web location"] = "Kjører på webplasseringen";
+App::$strings["Please visit <a href=\"http://hubzilla.org\">hubzilla.org</a> to learn more about \$Projectname."] = "Vennligst besøk <a href=\"http://hubzilla.org\">hubzilla.org</a> for å lære mer om \$Projectname.";
+App::$strings["Bug reports and issues: please visit"] = "Feilmeldinger og feilretting: vennligst besøk";
+App::$strings["\$projectname issues"] = "\$projectname problemer";
+App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Forslag, ros og så videre - vennligst e-post \"redmatrix\" hos librelist - punktum com";
+App::$strings["Site Administrators"] = "Nettstedsadministratorer";
+App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Vi støtte på et problem under innloggingen med din OpenID. Vennligst sjekk at ID-en er stavet riktig.";
+App::$strings["The error message was:"] = "Feilmeldingen var:";
+App::$strings["Authentication failed."] = "Autentisering mislyktes.";
+App::$strings["Remote Authentication"] = "Fjernautentisering";
+App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Skriv din kanaladresse (for eksempel channel@exampel.com)";
+App::$strings["Authenticate"] = "Autentiser";
+App::$strings["Public Hubs"] = "Offentlige huber";
+App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself <strong>may</strong> provide additional details."] = "Nettstedene på listen tillater offentlig registrering i \$Projectname-nettverket. Alle nettsteder i nettverket er forbundet så medlemskap på enhver av dem formidler medlemskap i nettverket som helhet. Noen nettsteder kan kreve abonnement eller tilby lagdelte tjenesteavtaler. Nettstedene selv <strong>kan</strong> gi tilleggsopplysninger.";
+App::$strings["Hub URL"] = "Nettstedets URL";
+App::$strings["Access Type"] = "Tilgangstype";
+App::$strings["Registration Policy"] = "Retningslinjer for registrering";
+App::$strings["Stats"] = "Statistikk";
+App::$strings["Software"] = "Programvare";
+App::$strings["Ratings"] = "Vurderinger";
+App::$strings["Rate"] = "Vurder";
+App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Hold nede Shift-knappen og last siden på nytt eller tøm nettleserens mellomlager hvis det nye bildet ikke vises umiddelbart.";
+App::$strings["Upload Profile Photo"] = "Last opp profilbilde:";
+App::$strings["Block Name"] = "Byggeklossens navn";
+App::$strings["Blocks"] = "Byggeklosser";
+App::$strings["Block Title"] = "Byggeklossens tittel";
+App::$strings["Website:"] = "Nettsted:";
+App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Fjerntliggende kanal [%s] (foreløpig ikke kjent på dette nettstedet)";
+App::$strings["Rating (this information is public)"] = "Vurdering (denne informasjonen er offentlig)";
+App::$strings["Optionally explain your rating (this information is public)"] = "Velg om du vil forklare din vurdering (denne informasjonen er offentlig)";
+App::$strings["No ratings"] = "Ingen vurderinger";
+App::$strings["Rating: "] = "Vurdering:";
+App::$strings["Website: "] = "Nettsted:";
+App::$strings["Description: "] = "Beskrivelse:";
+App::$strings["Apps"] = "Apper";
+App::$strings["Title (optional)"] = "Tittel (valgfri)";
+App::$strings["Edit Block"] = "Endre byggekloss";
+App::$strings["No channel."] = "Ingen kanal.";
+App::$strings["Common connections"] = "Felles forbindelser";
+App::$strings["No connections in common."] = "Ingen forbindelser felles.";
App::$strings["Select a bookmark folder"] = "Velg en bokmerkemappe";
App::$strings["Save Bookmark"] = "Lagre bokmerke";
App::$strings["URL of bookmark"] = "URL-en til bokmerket";
@@ -1069,7 +1121,7 @@ App::$strings["no"] = "nei";
App::$strings["yes"] = "ja";
App::$strings["Membership on this site is by invitation only."] = "Medlemskap ved dette nettstedet skjer kun via invitasjon.";
App::$strings["Register"] = "Registrer";
-App::$strings["Proceed to create your first channel"] = "Gå videre for å lage din første kanal";
+App::$strings["This site may require email verification after submitting this form. If you are returned to a login page, please check your email for instructions."] = "";
App::$strings["Please login."] = "Vennligst logg inn.";
App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "Sletting av kontoer er ikke tillatt innen 48 timer etter endring av kontopassordet.";
App::$strings["Remove This Account"] = "Slett denne kontoen";
@@ -1086,17 +1138,23 @@ App::$strings["This channel will be completely removed from the network. "] = "D
App::$strings["Remove this channel and all its clones from the network"] = "Fjern denne kanalen og alle dens kloner fra nettverket";
App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Som standard vil bare forekomsten av denne kanalen lokalisert på denne hubben bli fjernet fra nettverket";
App::$strings["Remove Channel"] = "Fjern kanal";
-App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Vi støtte på et problem under innloggingen med din OpenID. Vennligst sjekk at ID-en er stavet riktig.";
-App::$strings["The error message was:"] = "Feilmeldingen var:";
-App::$strings["Authentication failed."] = "Autentisering mislyktes.";
-App::$strings["Remote Authentication"] = "Fjernautentisering";
-App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Skriv din kanaladresse (for eksempel channel@exampel.com)";
-App::$strings["Authenticate"] = "Autentiser";
+App::$strings["Export Channel"] = "Eksporter kanal";
+App::$strings["Export your basic channel information to a file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new server hub, but does not contain your content."] = "Eksporter grunnleggende informasjon om kanalen din til en fil. Denne er en sikkerhetskopi av dine forbindelser, tillatelser, profil og grunnleggende data, som kan brukes til å importere dine data til en ny hub, men den tar ikke med innholdet.";
+App::$strings["Export Content"] = "Eksporter innhold";
+App::$strings["Export your channel information and recent content to a JSON backup that can be restored or imported to another server hub. This backs up all of your connections, permissions, profile data and several months of posts. This file may be VERY large. Please be patient - it may take several minutes for this download to begin."] = "Eksporter din kanalinformasjon og det nyeste innholdet til en JSON-sikkerhetskopi, som kan gjenopprettes eller importeres til en annen hub. Denne lager en sikkerhetskopi av alle dine forbindelser, tillatelser, profildata og flere måneder av innholdet ditt. Denne filen kan være SVÆRT stor. Vennligst vær tålmodig - det kan ta flere minutter før denne nedlastningen begynner.";
+App::$strings["Export your posts from a given year."] = "Eksporter dine innlegg fra et bestemt år";
+App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Du kan også eksportere dine innlegg og samtaler for et bestemt år eller måned. Juster datoen i din nettlesers adresselinje for å velge andre datoer. Hvis eksporten feiler (muligens på grunn av utilstrekkelig minne på din hub), vennligst prøv igjen med et mer begrenset datoområde.";
+App::$strings["To select all posts for a given year, such as this year, visit <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>";
+App::$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>";
+App::$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).";
App::$strings["Items tagged with: %s"] = "Elementer merket med: %s";
App::$strings["Search results for: %s"] = "Søkeresultater for: %s";
App::$strings["No service class restrictions found."] = "Ingen restriksjoner er funnet i tjenesteklasse.";
App::$strings["Name is required"] = "Navn er påkrevd";
App::$strings["Key and Secret are required"] = "Nøkkel og hemmelighet er påkrevd";
+App::$strings["This channel is limited to %d tokens"] = "";
+App::$strings["Name and Password are required."] = "";
+App::$strings["Token saved."] = "";
App::$strings["Not valid email."] = "Ikke gyldig e-post.";
App::$strings["Protected email address. Cannot change to that email."] = "Beskyttet e-postadresse. Kan ikke endre til den e-postadressen.";
App::$strings["System failure storing new email. Please try again."] = "Systemfeil ved lagring av ny e-post. Vennligst prøv igjen.";
@@ -1129,6 +1187,12 @@ App::$strings["Confirm New Password"] = "Bekreft nytt passord";
App::$strings["Leave password fields blank unless changing"] = "La passordfeltene stå blanke om det ikke skal endres";
App::$strings["Email Address:"] = "E-postadresse:";
App::$strings["Remove this account including all its channels"] = "Slett denne kontoen inkludert alle dens kanaler";
+App::$strings["Use this form to create temporary access identifiers to share things with non-members. These identities may be used in Access Control Lists and visitors may login using these credentials to access the private content."] = "";
+App::$strings["You may also provide <em>dropbox</em> style access links to friends and associates by adding the Login Password to any specific site URL as shown. Examples:"] = "";
+App::$strings["Guest Access Tokens"] = "";
+App::$strings["Login Name"] = "";
+App::$strings["Login Password"] = "";
+App::$strings["Expires (yyyy-mm-dd)"] = "";
App::$strings["Additional Features"] = "Ekstra funksjoner";
App::$strings["Connector Settings"] = "Koblingsinnstillinger";
App::$strings["No special theme for mobile devices"] = "Ikke noe spesielt tema for mobile enheter";
@@ -1188,14 +1252,14 @@ App::$strings["Allow others to tag your posts"] = "Tillat andre å merke dine in
App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "Ofte brukt av fellesskapet for å merke upassende innhold i etterkant";
App::$strings["Advanced Privacy Settings"] = "Avanserte personverninnstillinger";
App::$strings["Expire other channel content after this many days"] = "Annet kanal innhold utløper etter så mange dager";
-App::$strings["0 or blank to use the website limit."] = "";
-App::$strings["This website expires after %d days."] = "";
-App::$strings["This website does not expire imported content."] = "";
-App::$strings["The website limit takes precedence if lower than your limit."] = "";
+App::$strings["0 or blank to use the website limit."] = "0 eller ikke noe for å bruke nettstedets grense.";
+App::$strings["This website expires after %d days."] = "Dette nettstedet utgår etter %d dager.";
+App::$strings["This website does not expire imported content."] = "Dette nettstedet lar ikke importert innhold utgå.";
+App::$strings["The website limit takes precedence if lower than your limit."] = "Nettstedets grense bestemmer hvis lavere enn din grense.";
App::$strings["Maximum Friend Requests/Day:"] = "Maksimalt antall venneforespørsler per dag:";
App::$strings["May reduce spam activity"] = "Kan redusere søppelpostaktivitet";
-App::$strings["Default Post and Publish Permissions"] = "";
-App::$strings["Use my default audience setting for the type of object published"] = "";
+App::$strings["Default Post and Publish Permissions"] = "Standard innleggs- og publiseringstillatelser";
+App::$strings["Use my default audience setting for the type of object published"] = "Bruk min standard målgruppeinnstilling for objekttypen som publiseres";
App::$strings["Channel permissions category:"] = "Kategori med kanaltillatelser:";
App::$strings["Maximum private messages per day from unknown people:"] = "Maksimalt antall private meldinger per dag fra ukjente personer:";
App::$strings["Useful to reduce spamming"] = "Nyttig for å redusere søppelpost";
@@ -1270,8 +1334,8 @@ App::$strings["Please select a default timezone for your website"] = "Vennligst
App::$strings["Site settings"] = "Nettstedets innstillinger";
App::$strings["Enable \$Projectname <strong>advanced</strong> features?"] = "Skru på <strong>avanserte</strong egenskaper i \$Projectname ?";
App::$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. ";
-App::$strings["PHP version 5.5 or greater is required."] = "";
-App::$strings["PHP version"] = "";
+App::$strings["PHP version 5.5 or greater is required."] = "PHP-versjon 5.5 eller høyere er påkrevet.";
+App::$strings["PHP version"] = "PHP-versjon";
App::$strings["Could not find a command line version of PHP in the web server PATH."] = "Fant ikke en kommandolinjeversjon av PHP i webtjenerens sti (PATH).";
App::$strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = "Hvis du ikke har en kommandolinjeversjon av PHP installert på tjeneren, så vil du ikke kunne kjøre bakgrunnshenting via cron.";
App::$strings["PHP executable path"] = "PHP-kjørefilens sti";
@@ -1291,7 +1355,6 @@ App::$strings["GD graphics PHP module"] = "GD graphics PHP-modul";
App::$strings["OpenSSL PHP module"] = "OpenSSL PHP-modul";
App::$strings["mysqli or postgres PHP module"] = "MySQLi eller Postgres PHP modul";
App::$strings["mb_string PHP module"] = "mb_string PHP-modul";
-App::$strings["mcrypt PHP module"] = "mcrypt PHP-modul";
App::$strings["xml PHP module"] = "XML PHP modul";
App::$strings["Apache mod_rewrite module"] = "Apache mod_rewrite-modul";
App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Feil: Apache web-tjenerens mod-rewrite-modul er påkrevd, men ikke installert.";
@@ -1302,7 +1365,6 @@ App::$strings["Error: GD graphics PHP module with JPEG support required but not
App::$strings["Error: openssl PHP module required but not installed."] = "Feil: openssl PHP-modul er påkrevd, men er ikke installert.";
App::$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.";
App::$strings["Error: mb_string PHP module required but not installed."] = "Feil: mb_string PHP-modul er påkrevd, men er ikke installert.";
-App::$strings["Error: mcrypt PHP module required but not installed."] = "Feil: mcrypt PHP-modul er påkrevd, men er ikke installert.";
App::$strings["Error: xml PHP module required for DAV but not installed."] = "Feil: XML PHP modul er påkrevet for DAV, men den er ikke installert.";
App::$strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Web-installasjonen må kunne lage en fil kalt \".htconfig.php\" i toppkatalogen til web-tjeneren din, men dette får den ikke til.";
App::$strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Dette er oftest tillatelsesinnstilling, ettersom webtjeneren kanskje kan skrive til filer i din mappe - selv om du kan.";
@@ -1310,11 +1372,11 @@ App::$strings["At the end of this procedure, we will give you a text to save in
App::$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.";
App::$strings[".htconfig.php is writable"] = ".htconfig.php kan skrives til";
App::$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.";
-App::$strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the top level web folder."] = "";
+App::$strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the top level web folder."] = "For å kunne lagre disse kompilerte malene, så må webtjeneren ha skrivetilgang til katalogen %s under hovedmappen.";
App::$strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Vennligst sikre at brukeren som din web-tjeneste kjører som (for eksempel www-data) har skrivetilgang til denne katalogen.";
App::$strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "Merknad: som et sikkerhetstiltak bør du bare gi webtjerenn skrivetilgang til %s - ikke til malfilene (.tpl) som den inneholder.";
App::$strings["%s is writable"] = "%s kan skrives til";
-App::$strings["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.";
+App::$strings["This software uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = "";
App::$strings["store is writable"] = "lageret kan skrives til";
App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "SSL-sertifikatet kan ikke kontrolleres. Fiks sertifikatet eller skru av https tilgang til dette nettstedet.";
App::$strings["If you have https access to your website or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"] = "Hvis du har HTTPS-tilgang til ditt nettsted eller tillater forbindelser til TCP port 443 (HTTPS-porten), så MÅ du bruke nettlesergodkjent sertifkater. Du MÅ IKKE bruke egensignert sertifikater!";
@@ -1322,6 +1384,7 @@ App::$strings["This restriction is incorporated because public posts from you ma
App::$strings["If your certificate is not recognized, members of other sites (who may themselves have valid certificates) will get a warning message on their own site complaining about security issues."] = "Hvis sertifikatet ditt ikke gjenkjennes, så vil medlemmer på andre nettsteder (som selv kan ha godkjente sertifikater) få en beskjed med en advarsel på deres eget nettsted som klager over sikkerhetsproblemer.";
App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Dette kan gi problemer med brukervennlighet (ikke bare på ditt eget nettsted), så vi må insistere på dette kravet.";
App::$strings["Providers are available that issue free certificates which are browser-valid."] = "Det finnes tilbydere som utsteder gratis sertifikater som er gyldige i nettlesere.";
+App::$strings["If you are confident that the certificate is valid and signed by a trusted authority, check to see if you have failed to install an intermediate cert. These are not normally required by browsers, but are required for server-to-server communications."] = "";
App::$strings["SSL certificate validation"] = "SSL sertifikat-kontroll";
App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "URL omskriving (rewrite) i .htaccess virker ikke. Sjekk konfigurasjonen til tjeneren din. Test:";
App::$strings["Url rewrite is working"] = "URL rewrite virker";
@@ -1333,19 +1396,20 @@ App::$strings["Files: shared with me"] = "Filer: delt med meg";
App::$strings["NEW"] = "NY";
App::$strings["Remove all files"] = "Fjern alle filer";
App::$strings["Remove this file"] = "Fjern denne filen";
-App::$strings["Version %s"] = "Versjon %s";
-App::$strings["Installed plugins/addons/apps:"] = "Installerte tilleggsfunksjoner/tillegg/apper:";
-App::$strings["No installed plugins/addons/apps"] = "Ingen installerte tilleggsfunksjoner/tillegg/apper";
-App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Dette er en \$Projectname-hub - et globalt samhandlende nettverk av desentraliserte nettsteder med innbygget personvern.";
-App::$strings["Tag: "] = "Merkelapp:";
-App::$strings["Last background fetch: "] = "Siste innhenting i bakgrunnen:";
-App::$strings["Current load average: "] = "Gjeldende belastningsgjennomsnitt:";
-App::$strings["Running at web location"] = "Kjører på webplasseringen";
-App::$strings["Please visit <a href=\"http://hubzilla.org\">hubzilla.org</a> to learn more about \$Projectname."] = "Vennligst besøk <a href=\"http://hubzilla.org\">hubzilla.org</a> for å lære mer om \$Projectname.";
-App::$strings["Bug reports and issues: please visit"] = "Feilmeldinger og feilretting: vennligst besøk";
-App::$strings["\$projectname issues"] = "\$projectname problemer";
-App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Forslag, ros og så videre - vennligst e-post \"redmatrix\" hos librelist - punktum com";
-App::$strings["Site Administrators"] = "Nettstedsadministratorer";
+App::$strings["Thing updated"] = "Tingen er oppdatert";
+App::$strings["Object store: failed"] = "Objektlagring: mislyktes";
+App::$strings["Thing added"] = "Ting lagt til";
+App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s";
+App::$strings["Show Thing"] = "Vis ting";
+App::$strings["item not found."] = "element ble ikke funnet.";
+App::$strings["Edit Thing"] = "Endre ting";
+App::$strings["Select a profile"] = "Velg en profil";
+App::$strings["Post an activity"] = "Legg inn en aktivitet";
+App::$strings["Only sends to viewers of the applicable profile"] = "Sender bare til seere av den aktuelle profilen";
+App::$strings["Name of thing e.g. something"] = "Navn på ting for eksempel noe";
+App::$strings["URL of thing (optional)"] = "URL til ting (valgfritt)";
+App::$strings["URL for photo of thing (optional)"] = "URL til bilde av ting (valgfritt)";
+App::$strings["Add Thing to your Profile"] = "Legg til ting i din profil";
App::$strings["Failed to create source. No channel selected."] = "Mislyktes med å lage kilde. Ingen kanal er valgt.";
App::$strings["Source created."] = "Kilden er laget.";
App::$strings["Source updated."] = "Kilden er oppdatert.";
@@ -1357,7 +1421,7 @@ App::$strings["Import all or selected content from the following channel into th
App::$strings["Only import content with these words (one per line)"] = "Bare importer innhold med disse ordene (ett ord per linje)";
App::$strings["Leave blank to import all public content"] = "La stå tomt for å importere alt offentlig innhold";
App::$strings["Channel Name"] = "Kanalnavn";
-App::$strings["Add the following categories to posts imported from this source (comma separated)"] = "";
+App::$strings["Add the following categories to posts imported from this source (comma separated)"] = "Legg til følgende kategorier til innlegg importert fra denne kilden (kommeseparert)";
App::$strings["Source not found."] = "Kilden ble ikke funnet.";
App::$strings["Edit Source"] = "Endre kilde";
App::$strings["Delete Source"] = "Slett kilde";
@@ -1373,60 +1437,38 @@ App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s merket %3\$s til
App::$strings["Tag removed"] = "Merkelapp fjernet";
App::$strings["Remove Item Tag"] = "Fjern merkelapp fra element";
App::$strings["Select a tag to remove: "] = "Velg merkelapp å fjerne:";
-App::$strings["Thing updated"] = "Tingen er oppdatert";
-App::$strings["Object store: failed"] = "Objektlagring: mislyktes";
-App::$strings["Thing added"] = "Ting lagt til";
-App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s";
-App::$strings["Show Thing"] = "Vis ting";
-App::$strings["item not found."] = "element ble ikke funnet.";
-App::$strings["Edit Thing"] = "Endre ting";
-App::$strings["Select a profile"] = "Velg en profil";
-App::$strings["Post an activity"] = "Legg inn en aktivitet";
-App::$strings["Only sends to viewers of the applicable profile"] = "Sender bare til seere av den aktuelle profilen";
-App::$strings["Name of thing e.g. something"] = "Navn på ting for eksempel noe";
-App::$strings["URL of thing (optional)"] = "URL til ting (valgfritt)";
-App::$strings["URL for photo of thing (optional)"] = "URL til bilde av ting (valgfritt)";
-App::$strings["Add Thing to your Profile"] = "Legg til ting i din profil";
-App::$strings["Export Channel"] = "Eksporter kanal";
-App::$strings["Export your basic channel information to a file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new server hub, but does not contain your content."] = "Eksporter grunnleggende informasjon om kanalen din til en fil. Denne er en sikkerhetskopi av dine forbindelser, tillatelser, profil og grunnleggende data, som kan brukes til å importere dine data til en ny hub, men den tar ikke med innholdet.";
-App::$strings["Export Content"] = "Eksporter innhold";
-App::$strings["Export your channel information and recent content to a JSON backup that can be restored or imported to another server hub. This backs up all of your connections, permissions, profile data and several months of posts. This file may be VERY large. Please be patient - it may take several minutes for this download to begin."] = "Eksporter din kanalinformasjon og det nyeste innholdet til en JSON-sikkerhetskopi, som kan gjenopprettes eller importeres til en annen hub. Denne lager en sikkerhetskopi av alle dine forbindelser, tillatelser, profildata og flere måneder av innholdet ditt. Denne filen kan være SVÆRT stor. Vennligst vær tålmodig - det kan ta flere minutter før denne nedlastningen begynner.";
-App::$strings["Export your posts from a given year."] = "Eksporter dine innlegg fra et bestemt år";
-App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Du kan også eksportere dine innlegg og samtaler for et bestemt år eller måned. Juster datoen i din nettlesers adresselinje for å velge andre datoer. Hvis eksporten feiler (muligens på grunn av utilstrekkelig minne på din hub), vennligst prøv igjen med et mer begrenset datoområde.";
-App::$strings["To select all posts for a given year, such as this year, visit <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>";
-App::$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>";
-App::$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).";
-App::$strings["No connections."] = "Ingen forbindelser.";
-App::$strings["Visit %s's profile [%s]"] = "Besøk %s sin profil [%s]";
-App::$strings["View Connections"] = "Vis forbindelser";
-App::$strings["Source of Item"] = "Kilde til element";
App::$strings["Webpages"] = "Websider";
App::$strings["Actions"] = "Handlinger";
App::$strings["Page Link"] = "Sidelenke";
App::$strings["Page Title"] = "Sidetittel";
+App::$strings["Not found"] = "";
+App::$strings["Wiki"] = "";
+App::$strings["Sandbox"] = "";
+App::$strings["\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be saved*.\""] = "";
+App::$strings["Revision Comparison"] = "";
+App::$strings["Revert"] = "";
+App::$strings["Enter the name of your new wiki:"] = "";
+App::$strings["Enter the name of the new page:"] = "";
+App::$strings["Enter the new name:"] = "";
+App::$strings["Embed image from photo albums"] = "";
+App::$strings["Embed an image from your albums"] = "";
+App::$strings["OK"] = "OK";
+App::$strings["Choose images to embed"] = "";
+App::$strings["Choose an album"] = "";
+App::$strings["Choose a different album..."] = "";
+App::$strings["Error getting album list"] = "";
+App::$strings["Error getting photo link"] = "";
+App::$strings["Error getting album"] = "";
+App::$strings["No connections."] = "Ingen forbindelser.";
+App::$strings["Visit %s's profile [%s]"] = "Besøk %s sin profil [%s]";
+App::$strings["View Connections"] = "Vis forbindelser";
+App::$strings["Source of Item"] = "Kilde til element";
+App::$strings["Authorize application connection"] = "Tillat programforbindelse";
+App::$strings["Return to your app and insert this Securty Code:"] = "Gå tilbake til din app og legg inn denne sikkerhetskoden:";
+App::$strings["Please login to continue."] = "Vennligst logg inn for å fortsette.";
+App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vil du tillate dette programmet å få tilgang til dine innlegg og kontakter, og/eller lage nye innlegg for deg?";
App::$strings["Xchan Lookup"] = "Xchan oppslag";
App::$strings["Lookup xchan beginning with (or webbie): "] = "Slå opp xchan som begynner med (eller webbie):";
-App::$strings["Site Admin"] = "Nettstedsadministrator";
-App::$strings["Bug Report"] = "";
-App::$strings["View Bookmarks"] = "";
-App::$strings["My Chatrooms"] = "";
-App::$strings["Firefox Share"] = "";
-App::$strings["Remote Diagnostics"] = "";
-App::$strings["Suggest Channels"] = "Foreslå kanaler";
-App::$strings["Login"] = "Logg inn";
-App::$strings["Grid"] = "Nett";
-App::$strings["Channel Home"] = "Kanalhjem";
-App::$strings["Events"] = "Hendelser";
-App::$strings["Directory"] = "Katalog";
-App::$strings["Mail"] = "Melding";
-App::$strings["Chat"] = "Chat";
-App::$strings["Probe"] = "Undersøk";
-App::$strings["Suggest"] = "Forreslå";
-App::$strings["Random Channel"] = "Tilfeldig kanal";
-App::$strings["Invite"] = "Inviter";
-App::$strings["Features"] = "Funksjoner";
-App::$strings["Post"] = "Innlegg";
-App::$strings["Purchase"] = "Kjøp";
App::$strings["Missing room name"] = "Mangler romnavn";
App::$strings["Duplicate room name"] = "Duplikat romnavn";
App::$strings["Invalid room specifier."] = "Ugyldig rom-spesifisering";
@@ -1474,6 +1516,27 @@ App::$strings["Please visit %s to approve or reject the suggestion."] = "Vennlig
App::$strings["[Hubzilla:Notify]"] = "[Hubzilla:Notify]";
App::$strings["created a new post"] = "laget et nytt innlegg";
App::$strings["commented on %s's post"] = "kommenterte på %s sitt innlegg";
+App::$strings["Site Admin"] = "Nettstedsadministrator";
+App::$strings["Bug Report"] = "Feilmelding";
+App::$strings["View Bookmarks"] = "Vis bokmerker";
+App::$strings["My Chatrooms"] = "Mine chatrom";
+App::$strings["Firefox Share"] = "Firefox-deling";
+App::$strings["Remote Diagnostics"] = "Fjerndiagnostisering";
+App::$strings["Suggest Channels"] = "Foreslå kanaler";
+App::$strings["Login"] = "Logg inn";
+App::$strings["Grid"] = "Nett";
+App::$strings["Channel Home"] = "Kanalhjem";
+App::$strings["Events"] = "Hendelser";
+App::$strings["Directory"] = "Katalog";
+App::$strings["Mail"] = "Melding";
+App::$strings["Chat"] = "Chat";
+App::$strings["Probe"] = "Undersøk";
+App::$strings["Suggest"] = "Forreslå";
+App::$strings["Random Channel"] = "Tilfeldig kanal";
+App::$strings["Invite"] = "Inviter";
+App::$strings["Features"] = "Funksjoner";
+App::$strings["Post"] = "Innlegg";
+App::$strings["Purchase"] = "Kjøp";
App::$strings["Private Message"] = "Privat melding";
App::$strings["Select"] = "Velg";
App::$strings["Save to Folder"] = "Lagre i mappe";
@@ -1510,7 +1573,7 @@ App::$strings["Expires: %s"] = "Utløper: %s";
App::$strings["Save Bookmarks"] = "Lagre bokmerker";
App::$strings["Add to Calendar"] = "Legg til i kalender";
App::$strings["Mark all seen"] = "Merk alle som sett";
-App::$strings["[+] show all"] = "[+] Vis alle";
+App::$strings["%s show all"] = "";
App::$strings["Bold"] = "Uthevet";
App::$strings["Italic"] = "Kursiv";
App::$strings["Underline"] = "Understreket";
@@ -1519,205 +1582,30 @@ App::$strings["Code"] = "Kode";
App::$strings["Image"] = "Bilde";
App::$strings["Insert Link"] = "Sett inn lenke";
App::$strings["Video"] = "Video";
+App::$strings["Visible to your default audience"] = "Synlig for ditt standard publikum";
+App::$strings["Only me"] = "Bare meg";
+App::$strings["Public"] = "Offentlig";
+App::$strings["Anybody in the \$Projectname network"] = "Enhver i \$Projectname -nettverket";
+App::$strings["Any account on %s"] = "Enhver konto på %s";
+App::$strings["Any of my connections"] = "Enhver av mine forbindelser";
+App::$strings["Only connections I specifically allow"] = "Bare forbindelser som jeg spesifikt tillater";
+App::$strings["Anybody authenticated (could include visitors from other networks)"] = "Enhver som er autentisert (kan inkludere besøkende fra andre nettverk)";
+App::$strings["Any connections including those who haven't yet been approved"] = "Enhver forbindelse inkluder de som ennå ikke er blitt godkjent";
+App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "Dette er dine standardinnstillinger for publikumet til din normale strøm og innlegg.";
+App::$strings["This is your default setting for who can view your default channel profile"] = "Dette er din standardinnstilling for hvem som kan se din standard kanalprofil";
+App::$strings["This is your default setting for who can view your connections"] = "Dette er din standardinnstilling for hvem som kan se dine forbindelser";
+App::$strings["This is your default setting for who can view your file storage and photos"] = "Dette er din standardinnstilling for hvem som kan se fillagreret ditt og bilder";
+App::$strings["This is your default setting for the audience of your webpages"] = "Dette er din standardinnstilling for besøkende til dine websider";
App::$strings["No username found in import file."] = "Ingen brukernavn ble funnet i importfilen.";
App::$strings["Unable to create a unique channel address. Import failed."] = "Klarte ikke å lage en unik kanaladresse. Import mislyktes.";
App::$strings["Cannot locate DNS info for database server '%s'"] = "Kan ikke finne DNS-informasjon om databasetjener '%s'";
-App::$strings["Categories"] = "Kategorier";
-App::$strings["Tags"] = "Merkelapper";
-App::$strings["Keywords"] = "Nøkkelord";
-App::$strings["have"] = "har";
-App::$strings["has"] = "har";
-App::$strings["want"] = "ønsker";
-App::$strings["wants"] = "ønsker";
-App::$strings["likes"] = "liker";
-App::$strings["dislikes"] = "misliker";
-App::$strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
-App::$strings["Starts:"] = "Starter:";
-App::$strings["Finishes:"] = "Slutter:";
-App::$strings["This event has been added to your calendar."] = "Denne hendelsen er lagt til i din kalender.";
-App::$strings["Not specified"] = "Ikke spesifisert";
-App::$strings["Needs Action"] = "Trenger handling";
-App::$strings["Completed"] = "Ferdig";
-App::$strings["In Process"] = "Igang";
-App::$strings["Cancelled"] = "Avbrutt";
-App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Kan ikke lage en kopi av kanal-identifikatoren på dette systemet. Import mislyktes.";
-App::$strings["Channel clone failed. Import failed."] = "Kanalkloning mislyktes. Import mislyktes.";
-App::$strings["(Unknown)"] = "(Ukjent)";
-App::$strings["Visible to anybody on the internet."] = "Synlig for enhver på Internett.";
-App::$strings["Visible to you only."] = "Synlig bare for deg.";
-App::$strings["Visible to anybody in this network."] = "Synlig for enhver i dette nettverket.";
-App::$strings["Visible to anybody authenticated."] = "Synlig for enhver som er autentisert.";
-App::$strings["Visible to anybody on %s."] = "Synlig for alle på %s.";
-App::$strings["Visible to all connections."] = "Synlig for alle forbindelser.";
-App::$strings["Visible to approved connections."] = "Synlig for godkjente forbindelser.";
-App::$strings["Visible to specific connections."] = "Synlig for spesifikke forbindelser.";
-App::$strings["Privacy group is empty."] = "Personverngruppen er tom.";
-App::$strings["Privacy group: %s"] = "Personverngruppe: %s";
-App::$strings["Connection not found."] = "Forbindelsen ble ikke funnet.";
-App::$strings["profile photo"] = "profilbilde";
-App::$strings["No recipient provided."] = "Ingen mottaker angitt.";
-App::$strings["[no subject]"] = "[ikke noe emne]";
-App::$strings["Unable to determine sender."] = "Kan ikke avgjøre avsender.";
-App::$strings["Stored post could not be verified."] = "Lagret innlegg kunne ikke bekreftes.";
-App::$strings["prev"] = "forrige";
-App::$strings["first"] = "første";
-App::$strings["last"] = "siste";
-App::$strings["next"] = "neste";
-App::$strings["older"] = "eldre";
-App::$strings["newer"] = "nyere";
-App::$strings["No connections"] = "Ingen forbindelser";
-App::$strings["View all %s connections"] = "Vis alle %s forbindelser";
-App::$strings["poke"] = "prikk";
-App::$strings["poked"] = "prikket";
-App::$strings["ping"] = "varsle";
-App::$strings["pinged"] = "varslet";
-App::$strings["prod"] = "oppildne";
-App::$strings["prodded"] = "oppildnet";
-App::$strings["slap"] = "daske";
-App::$strings["slapped"] = "dasket";
-App::$strings["finger"] = "fingre";
-App::$strings["fingered"] = "fingret";
-App::$strings["rebuff"] = "tilbakevise";
-App::$strings["rebuffed"] = "tilbakeviste";
-App::$strings["happy"] = "glad";
-App::$strings["sad"] = "trist";
-App::$strings["mellow"] = "dempet";
-App::$strings["tired"] = "trøtt";
-App::$strings["perky"] = "oppkvikket";
-App::$strings["angry"] = "sint";
-App::$strings["stupefied"] = "lamslått";
-App::$strings["puzzled"] = "forundret";
-App::$strings["interested"] = "interessert";
-App::$strings["bitter"] = "bitter";
-App::$strings["cheerful"] = "munter";
-App::$strings["alive"] = "levende";
-App::$strings["annoyed"] = "irritert";
-App::$strings["anxious"] = "nervøs";
-App::$strings["cranky"] = "gretten";
-App::$strings["disturbed"] = "foruroliget";
-App::$strings["frustrated"] = "frustrert";
-App::$strings["depressed"] = "lei seg";
-App::$strings["motivated"] = "motivert";
-App::$strings["relaxed"] = "avslappet";
-App::$strings["surprised"] = "overrasket";
-App::$strings["Monday"] = "mandag";
-App::$strings["Tuesday"] = "tirsdag";
-App::$strings["Wednesday"] = "onsdag";
-App::$strings["Thursday"] = "torsdag";
-App::$strings["Friday"] = "fredag";
-App::$strings["Saturday"] = "lørdag";
-App::$strings["Sunday"] = "søndag";
-App::$strings["January"] = "januar";
-App::$strings["February"] = "februar";
-App::$strings["March"] = "mars";
-App::$strings["April"] = "april";
-App::$strings["May"] = "mai";
-App::$strings["June"] = "juni";
-App::$strings["July"] = "juli";
-App::$strings["August"] = "august";
-App::$strings["September"] = "september";
-App::$strings["October"] = "oktober";
-App::$strings["November"] = "november";
-App::$strings["December"] = "desember";
-App::$strings["Unknown Attachment"] = "Ukjent vedlegg";
-App::$strings["unknown"] = "ukjent";
-App::$strings["remove category"] = "fjern kategori";
-App::$strings["remove from file"] = "fjern fra fil";
-App::$strings["default"] = "standard";
-App::$strings["Page layout"] = "Sidens layout";
-App::$strings["You can create your own with the layouts tool"] = "Du kan lage din egen med layout-verktøyet";
-App::$strings["Page content type"] = "Sidens innholdstype";
-App::$strings["Select an alternate language"] = "Velg et annet språk";
-App::$strings["activity"] = "aktivitet";
-App::$strings["Design Tools"] = "Designverktøy";
-App::$strings["Pages"] = "Sider";
-App::$strings["System"] = "System";
-App::$strings["New App"] = "";
-App::$strings["Suggestions"] = "Forslag";
-App::$strings["See more..."] = "Se mer...";
-App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Du har %1$.0f av %2$.0f tillate forbindelser.";
-App::$strings["Add New Connection"] = "Legg til ny forbindelse";
-App::$strings["Enter channel address"] = "Skriv kanaladressen";
-App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Eksempel: ola@eksempel.no, https://eksempel.no/kari";
-App::$strings["Notes"] = "Merknader";
-App::$strings["Remove term"] = "Fjern begrep";
-App::$strings["Saved Searches"] = "Lagrede søk";
-App::$strings["add"] = "legg til";
-App::$strings["Saved Folders"] = "Lagrede mapper";
-App::$strings["Everything"] = "Alt";
-App::$strings["Archives"] = "Arkiv";
-App::$strings["Refresh"] = "Forny";
-App::$strings["Account settings"] = "Kontoinnstillinger";
-App::$strings["Channel settings"] = "Kanalinnstillinger";
-App::$strings["Additional features"] = "Tilleggsfunksjoner";
-App::$strings["Feature/Addon settings"] = "Funksjons-/Tilleggsinnstillinger";
-App::$strings["Display settings"] = "Visningsinnstillinger";
-App::$strings["Manage locations"] = "";
-App::$strings["Export channel"] = "Eksporter kanal";
-App::$strings["Connected apps"] = "Tilkoblede app-er";
-App::$strings["Premium Channel Settings"] = "Premiumkanal-innstillinger";
-App::$strings["Private Mail Menu"] = "Meny for privat post";
-App::$strings["Combined View"] = "Kombinert visning";
-App::$strings["Inbox"] = "Innboks";
-App::$strings["Outbox"] = "Utboks";
-App::$strings["New Message"] = "Ny melding";
-App::$strings["Conversations"] = "Samtaler";
-App::$strings["Received Messages"] = "Mottatte meldinger";
-App::$strings["Sent Messages"] = "Sendte meldinger";
-App::$strings["No messages."] = "Ingen meldinger.";
-App::$strings["Delete conversation"] = "Slett samtale";
-App::$strings["Events Menu"] = "Meny for hendelser";
-App::$strings["Day View"] = "Dag";
-App::$strings["Week View"] = "Uke";
-App::$strings["Month View"] = "Måned";
-App::$strings["Events Tools"] = "Kalenderverktøy";
-App::$strings["Export Calendar"] = "Eksporter kalender";
-App::$strings["Import Calendar"] = "Importer kalender";
-App::$strings["Chatrooms"] = "Chatrom";
-App::$strings["Overview"] = "";
-App::$strings["Chat Members"] = "";
-App::$strings["Bookmarked Chatrooms"] = "Bokmerkede chatrom";
-App::$strings["Suggested Chatrooms"] = "Foreslåtte chatrom";
-App::$strings["photo/image"] = "foto/bilde";
-App::$strings["Click to show more"] = "";
-App::$strings["Rating Tools"] = "Vurderingsverktøy";
-App::$strings["Rate Me"] = "Vurder meg";
-App::$strings["View Ratings"] = "Vis vurderinger";
-App::$strings["Forums"] = "Forum";
-App::$strings["Tasks"] = "Oppgaver";
-App::$strings["Documentation"] = "Dokumentasjon";
-App::$strings["Project/Site Information"] = "Prosjekt-/Nettstedsinformasjon";
-App::$strings["For Members"] = "For medlemmer";
-App::$strings["For Administrators"] = "For administratorer";
-App::$strings["For Developers"] = "For utviklere";
-App::$strings["Member registrations waiting for confirmation"] = "";
-App::$strings["Inspect queue"] = "Inspiser kø";
-App::$strings["DB updates"] = "Databaseoppdateringer";
-App::$strings["Admin"] = "Administrator";
-App::$strings["Plugin Features"] = "Tilleggsfunksjoner";
-App::$strings["Channel is blocked on this site."] = "Kanalen er blokkert på dette nettstedet.";
-App::$strings["Channel location missing."] = "Kanalplassering mangler.";
-App::$strings["Response from remote channel was incomplete."] = "Svaret fra den andre kanalen var ikke komplett.";
-App::$strings["Channel was deleted and no longer exists."] = "Kanalen er slettet og finnes ikke lenger.";
-App::$strings["Protocol disabled."] = "Protokollen er avskrudd.";
-App::$strings["Channel discovery failed."] = "Kanaloppdagelse mislyktes.";
-App::$strings["Cannot connect to yourself."] = "Kan ikke lage forbindelse med deg selv.";
-App::$strings["%1\$s's bookmarks"] = "%1\$s sine bokmerker";
-App::$strings["Public Timeline"] = "Offentlig tidslinje";
-App::$strings["Image/photo"] = "Bilde/fotografi";
-App::$strings["Encrypted content"] = "Kryptert innhold";
-App::$strings["Install %s element: "] = "Installer %s element:";
-App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Dette innlegget inneholder det installerbare elementet %s, men du mangler tillatelse til å installere det på dette nettstedet.";
-App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s skrev følgende %2\$s %3\$s";
-App::$strings["Click to open/close"] = "Klikk for å åpne/lukke";
-App::$strings["spoiler"] = "";
-App::$strings["Different viewers will see this text differently"] = "Denne teksten vil se forskjellig ut for ulike besøkende";
-App::$strings["$1 wrote:"] = "$1 skrev:";
-App::$strings["Directory Options"] = "Kataloginnstillinger";
-App::$strings["Safe Mode"] = "Trygt modus";
-App::$strings["Public Forums Only"] = "Bare offentlige forum";
-App::$strings["This Website Only"] = "Kun dette nettstedet";
-App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Skjemaets sikkerhetspollett var ikke gyldig. Dette skjedde antakelig fordi skjemaet har vært åpnet for lenge (>3 timer) før det ble sendt inn.";
+App::$strings["Image exceeds website size limit of %lu bytes"] = "Bilde overstiger nettstedets størrelsesbegrensning på %lu bytes";
+App::$strings["Image file is empty."] = "Bildefilen er tom.";
+App::$strings["Photo storage failed."] = "Bildelagring mislyktes.";
+App::$strings["a new photo"] = "et nytt bilde";
+App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s la inn %2\$s til %3\$s";
+App::$strings["Photo Albums"] = "Fotoalbum";
+App::$strings["Upload New Photos"] = "Last opp nye bilder";
App::$strings["Logout"] = "Logg ut";
App::$strings["End this session"] = "Avslutt denne økten";
App::$strings["Home"] = "Hjem";
@@ -1732,6 +1620,7 @@ App::$strings["Your chatrooms"] = "Dine chatterom";
App::$strings["Bookmarks"] = "Bokmerker";
App::$strings["Your bookmarks"] = "Dine bokmerker";
App::$strings["Your webpages"] = "Dine websider";
+App::$strings["Your wiki"] = "";
App::$strings["Sign in"] = "Logg på";
App::$strings["%s - click to logout"] = "%s - klikk for å logge ut";
App::$strings["Remote authentication"] = "Fjernautentisering";
@@ -1752,36 +1641,87 @@ App::$strings["See all notifications"] = "Se alle varsler";
App::$strings["Private mail"] = "Privat post";
App::$strings["See all private messages"] = "Se alle private meldinger";
App::$strings["Mark all private messages seen"] = "Merk alle private meldinger som sett";
+App::$strings["Inbox"] = "Innboks";
+App::$strings["Outbox"] = "Utboks";
+App::$strings["New Message"] = "Ny melding";
App::$strings["Event Calendar"] = "Kalender";
App::$strings["See all events"] = "Se alle hendelser";
App::$strings["Mark all events seen"] = "Merk alle hendelser som sett";
App::$strings["Manage Your Channels"] = "Håndter dine kanaler";
App::$strings["Account/Channel Settings"] = "Konto-/kanal-innstillinger";
+App::$strings["Admin"] = "Administrator";
App::$strings["Site Setup and Configuration"] = "Nettstedsoppsett og -konfigurasjon";
App::$strings["Loading..."] = "Laster...";
App::$strings["@name, #tag, ?doc, content"] = "@navn, #merkelapp, ?dokumentasjon, innhold";
App::$strings["Please wait..."] = "Vennligst vent...";
+App::$strings["view full size"] = "vis full størrelse";
+App::$strings["Administrator"] = "Administrator";
+App::$strings["No Subject"] = "Uten emne";
+App::$strings["Friendica"] = "Friendica";
+App::$strings["OStatus"] = "OStatus";
+App::$strings["GNU-Social"] = "GNU-Social";
+App::$strings["RSS/Atom"] = "RSS/Atom";
+App::$strings["Diaspora"] = "Diaspora";
+App::$strings["Facebook"] = "Facebook";
+App::$strings["Zot"] = "Zot";
+App::$strings["LinkedIn"] = "LinkedIn";
+App::$strings["XMPP/IM"] = "XMPP/IM";
+App::$strings["MySpace"] = "MySpace";
+App::$strings["New Page"] = "Ny side";
+App::$strings["Title"] = "Tittel";
+App::$strings["Categories"] = "Kategorier";
+App::$strings["Tags"] = "Merkelapper";
+App::$strings["Keywords"] = "Nøkkelord";
+App::$strings["have"] = "har";
+App::$strings["has"] = "har";
+App::$strings["want"] = "ønsker";
+App::$strings["wants"] = "ønsker";
+App::$strings["likes"] = "liker";
+App::$strings["dislikes"] = "misliker";
+App::$strings["Unable to obtain identity information from database"] = "Klarer ikke å få tak i identitetsinformasjon fra databasen";
+App::$strings["Empty name"] = "Mangler navn";
+App::$strings["Name too long"] = "Navnet er for langt";
+App::$strings["No account identifier"] = "Ingen kontoidentifikator";
+App::$strings["Nickname is required."] = "Kallenavn er påkrevd.";
+App::$strings["Reserved nickname. Please choose another."] = "Reservert kallenavn. Vennligst velg et annet.";
+App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Kallenavnet inneholder tegn som ikke er støttet eller det er allerede i bruk på dette nettstedet.";
+App::$strings["Unable to retrieve created identity"] = "Klarer ikke å hente den lagede identiteten";
+App::$strings["Default Profile"] = "Standardprofil";
+App::$strings["Requested channel is not available."] = "Forespurt kanal er ikke tilgjengelig.";
+App::$strings["Create New Profile"] = "Lag ny profil";
+App::$strings["Visible to everybody"] = "Synlig for alle";
+App::$strings["Gender:"] = "Kjønn:";
+App::$strings["Status:"] = "Status:";
+App::$strings["Homepage:"] = "Hjemmeside:";
+App::$strings["Online Now"] = "Online nå";
+App::$strings["Like this channel"] = "Lik denne kanalen";
+App::$strings["j F, Y"] = "j F, Y";
+App::$strings["j F"] = "j F";
+App::$strings["Birthday:"] = "Fødselsdag:";
+App::$strings["for %1\$d %2\$s"] = "for %1\$d %2\$s";
+App::$strings["Sexual Preference:"] = "Seksuell preferanse:";
+App::$strings["Tags:"] = "Merkelapper:";
+App::$strings["Political Views:"] = "Politiske synspunkter:";
+App::$strings["Religion:"] = "Religion:";
+App::$strings["Hobbies/Interests:"] = "Hobbyer/interesser:";
+App::$strings["Likes:"] = "Liker:";
+App::$strings["Dislikes:"] = "Misliker:";
+App::$strings["Contact information and Social Networks:"] = "Kontaktinformasjon og sosiale nettverk:";
+App::$strings["My other channels:"] = "Mine andre kanaler:";
+App::$strings["Musical interests:"] = "Musikkinteresse:";
+App::$strings["Books, literature:"] = "Bøker, litteratur:";
+App::$strings["Television:"] = "TV:";
+App::$strings["Film/dance/culture/entertainment:"] = "Film/dans/kultur/underholdning:";
+App::$strings["Love/Romance:"] = "Kjærlighet/romantikk:";
+App::$strings["Work/employment:"] = "Arbeid/sysselsetting:";
+App::$strings["School/education:"] = "Skole/utdannelse:";
+App::$strings["Like this thing"] = "Lik denne tingen";
App::$strings["New window"] = "Nytt vindu";
App::$strings["Open the selected location in a different window or browser tab"] = "Åpne det valgte stedet i et annet vindu eller nettleser-fane";
App::$strings["User '%s' deleted"] = "Brukeren '%s' er slettet";
-App::$strings["%d invitation available"] = array(
- 0 => "%d invitasjon tilgjengelig",
- 1 => "%d invitasjoner tilgjengelig",
-);
-App::$strings["Find Channels"] = "Finn kanaler";
-App::$strings["Enter name or interest"] = "Skriv navn eller interesse";
-App::$strings["Connect/Follow"] = "Forbindelse/Følg";
-App::$strings["Examples: Robert Morgenstein, Fishing"] = "Eksempler: Ola Nordmann, fisking";
-App::$strings["Random Profile"] = "Tilfeldig profil";
-App::$strings["Invite Friends"] = "Inviter venner";
-App::$strings["Advanced example: name=fred and country=iceland"] = "Avansert eksempel: navn=fred og land=island";
-App::$strings["%d connection in common"] = array(
- 0 => "%d forbindelse felles",
- 1 => "%d forbindelser felles",
-);
-App::$strings["show more"] = "vis mer";
App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s er nå forbundet med %2\$s";
App::$strings["%1\$s poked %2\$s"] = "%1\$s prikket %2\$s";
+App::$strings["poked"] = "prikket";
App::$strings["View %s's profile @ %s"] = "Vis %s sin profile @ %s";
App::$strings["Categories:"] = "Kategorier:";
App::$strings["Filed under:"] = "Sortert under:";
@@ -1820,7 +1760,6 @@ App::$strings["Post as"] = "Lag innlegg som";
App::$strings["Toggle voting"] = "Skru av eller på stemming";
App::$strings["Categories (optional, comma-separated list)"] = "Kategorier (valgfri, kommaseparert liste)";
App::$strings["Set publish date"] = "Angi publiseringsdato";
-App::$strings["OK"] = "OK";
App::$strings["Discover"] = "Oppdage";
App::$strings["Imported public streams"] = "Importerte offentlige strømmer";
App::$strings["Commented Order"] = "Kommentert";
@@ -1836,8 +1775,8 @@ App::$strings["Posts flagged as SPAM"] = "Innlegg merket som SØPPEL";
App::$strings["Status Messages and Posts"] = "Statusmeldinger og -innlegg";
App::$strings["About"] = "Om";
App::$strings["Profile Details"] = "Profildetaljer";
-App::$strings["Photo Albums"] = "Fotoalbum";
App::$strings["Files and Storage"] = "Filer og lagring";
+App::$strings["Chatrooms"] = "Chatrom";
App::$strings["Saved Bookmarks"] = "Lagrede bokmerker";
App::$strings["Manage Webpages"] = "Håndtere websider";
App::$strings["__ctx:noun__ Attending"] = array(
@@ -1864,6 +1803,8 @@ App::$strings["__ctx:noun__ Abstain"] = array(
0 => "Avstår",
1 => "Avstår",
);
+App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Kan ikke lage en kopi av kanal-identifikatoren på dette systemet. Import mislyktes.";
+App::$strings["Channel clone failed. Import failed."] = "Kanalkloning mislyktes. Import mislyktes.";
App::$strings["Frequently"] = "Ofte";
App::$strings["Hourly"] = "Hver time";
App::$strings["Twice daily"] = "To ganger daglig";
@@ -1880,7 +1821,6 @@ App::$strings["Transsexual"] = "Transseksuell";
App::$strings["Hermaphrodite"] = "Hermafroditt";
App::$strings["Neuter"] = "Intetkjønn";
App::$strings["Non-specific"] = "Ubestemt";
-App::$strings["Other"] = "Annen";
App::$strings["Undecided"] = "Ubestemt";
App::$strings["Males"] = "Menn";
App::$strings["Females"] = "Kvinner";
@@ -1925,91 +1865,95 @@ App::$strings["Uncertain"] = "Usikkert";
App::$strings["It's complicated"] = "Det er komplisert";
App::$strings["Don't care"] = "Bryr meg ikke";
App::$strings["Ask me"] = "Spør meg";
-App::$strings["Visible to your default audience"] = "Synlig for ditt standard publikum";
-App::$strings["Only me"] = "";
-App::$strings["Public"] = "Offentlig";
-App::$strings["Anybody in the \$Projectname network"] = "";
-App::$strings["Any account on %s"] = "";
-App::$strings["Any of my connections"] = "";
-App::$strings["Only connections I specifically allow"] = "";
-App::$strings["Anybody authenticated (could include visitors from other networks)"] = "";
-App::$strings["Any connections including those who haven't yet been approved"] = "";
-App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "";
-App::$strings["This is your default setting for who can view your default channel profile"] = "";
-App::$strings["This is your default setting for who can view your connections"] = "";
-App::$strings["This is your default setting for who can view your file storage and photos"] = "";
-App::$strings["This is your default setting for the audience of your webpages"] = "";
-App::$strings["Not a valid email address"] = "Ikke en gyldig e-postadresse";
-App::$strings["Your email domain is not among those allowed on this site"] = "Ditt e-postdomene er ikke blant de som er tillatt på dette stedet";
-App::$strings["Your email address is already registered at this site."] = "Din e-postadresse er allerede registrert på dette nettstedet.";
-App::$strings["An invitation is required."] = "En invitasjon er påkrevd.";
-App::$strings["Invitation could not be verified."] = "Invitasjon kunne ikke bekreftes.";
-App::$strings["Please enter the required information."] = "Vennligst skriv inn nødvendig informasjon.";
-App::$strings["Failed to store account information."] = "Mislyktes med å lagre kontoinformasjon.";
-App::$strings["Registration confirmation for %s"] = "Registreringsbekreftelse for %s";
-App::$strings["Registration request at %s"] = "Registreringsforespørsel hos %s";
-App::$strings["Administrator"] = "Administrator";
-App::$strings["your registration password"] = "ditt registreringspassord";
-App::$strings["Registration details for %s"] = "Registreringsdetaljer for %s";
-App::$strings["Account approved."] = "Konto godkjent.";
-App::$strings["Registration revoked for %s"] = "Registrering trukket tilbake for %s";
-App::$strings["Account verified. Please login."] = "Konto bekreftet. Vennligst logg inn.";
-App::$strings["Click here to upgrade."] = "Klikk her for å oppgradere.";
-App::$strings["This action exceeds the limits set by your subscription plan."] = "Denne handlingen går utenfor grensene satt i din abonnementsplan.";
-App::$strings["This action is not available under your subscription plan."] = "Denne handlingen er ikke tilgjengelig i din abonnementsplan.";
-App::$strings["Item was not found."] = "Elementet ble ikke funnet.";
-App::$strings["No source file."] = "Ingen kildefil.";
-App::$strings["Cannot locate file to replace"] = "Kan ikke finne filen som skal byttes ut";
-App::$strings["Cannot locate file to revise/update"] = "Finner ikke filen som skal revideres/oppdateres";
-App::$strings["File exceeds size limit of %d"] = "Filens størrelse overgår grensen på %d";
-App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Du har nådd din lagringsgrense for vedlegg på %1$.0f Mbytes.";
-App::$strings["File upload failed. Possible system limit or action terminated."] = "Mislyktes med å laste opp filen. Mulig systemgrense eller handling avbrutt.";
-App::$strings["Stored file could not be verified. Upload failed."] = "Lagret fil kunne ikke bekreftes. Opplasting mislyktes.";
-App::$strings["Path not available."] = "Stien er ikke tilgjengelig.";
-App::$strings["Empty pathname"] = "Tomt sti-navn";
-App::$strings["duplicate filename or path"] = "duplikat av filnavn eller sti";
-App::$strings["Path not found."] = "Stien ble ikke funnet.";
-App::$strings["mkdir failed."] = "mkdir mislyktes.";
-App::$strings["database storage failed."] = "databaselagring mislyktes.";
-App::$strings["Empty path"] = "Tom sti";
-App::$strings["Unable to obtain identity information from database"] = "Klarer ikke å få tak i identitetsinformasjon fra databasen";
-App::$strings["Empty name"] = "Mangler navn";
-App::$strings["Name too long"] = "Navnet er for langt";
-App::$strings["No account identifier"] = "Ingen kontoidentifikator";
-App::$strings["Nickname is required."] = "Kallenavn er påkrevd.";
-App::$strings["Reserved nickname. Please choose another."] = "Reservert kallenavn. Vennligst velg et annet.";
-App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Kallenavnet inneholder tegn som ikke er støttet eller det er allerede i bruk på dette nettstedet.";
-App::$strings["Unable to retrieve created identity"] = "Klarer ikke å hente den lagede identiteten";
-App::$strings["Default Profile"] = "Standardprofil";
-App::$strings["Requested channel is not available."] = "Forespurt kanal er ikke tilgjengelig.";
-App::$strings["Create New Profile"] = "Lag ny profil";
-App::$strings["Visible to everybody"] = "";
-App::$strings["Gender:"] = "Kjønn:";
-App::$strings["Status:"] = "Status:";
-App::$strings["Homepage:"] = "Hjemmeside:";
-App::$strings["Online Now"] = "Online nå";
-App::$strings["Like this channel"] = "Lik denne kanalen";
-App::$strings["j F, Y"] = "j F, Y";
-App::$strings["j F"] = "j F";
-App::$strings["Birthday:"] = "Fødselsdag:";
-App::$strings["for %1\$d %2\$s"] = "for %1\$d %2\$s";
-App::$strings["Sexual Preference:"] = "Seksuell preferanse:";
-App::$strings["Tags:"] = "Merkelapper:";
-App::$strings["Political Views:"] = "Politiske synspunkter:";
-App::$strings["Religion:"] = "Religion:";
-App::$strings["Hobbies/Interests:"] = "Hobbyer/interesser:";
-App::$strings["Likes:"] = "Liker:";
-App::$strings["Dislikes:"] = "Misliker:";
-App::$strings["Contact information and Social Networks:"] = "Kontaktinformasjon og sosiale nettverk:";
-App::$strings["My other channels:"] = "Mine andre kanaler:";
-App::$strings["Musical interests:"] = "Musikkinteresse:";
-App::$strings["Books, literature:"] = "Bøker, litteratur:";
-App::$strings["Television:"] = "TV:";
-App::$strings["Film/dance/culture/entertainment:"] = "Film/dans/kultur/underholdning:";
-App::$strings["Love/Romance:"] = "Kjærlighet/romantikk:";
-App::$strings["Work/employment:"] = "Arbeid/sysselsetting:";
-App::$strings["School/education:"] = "Skole/utdannelse:";
-App::$strings["Like this thing"] = "Lik denne tingen";
+App::$strings["%1\$s's bookmarks"] = "%1\$s sine bokmerker";
+App::$strings["guest:"] = "";
+App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Skjemaets sikkerhetspollett var ikke gyldig. Dette skjedde antakelig fordi skjemaet har vært åpnet for lenge (>3 timer) før det ble sendt inn.";
+App::$strings["prev"] = "forrige";
+App::$strings["first"] = "første";
+App::$strings["last"] = "siste";
+App::$strings["next"] = "neste";
+App::$strings["older"] = "eldre";
+App::$strings["newer"] = "nyere";
+App::$strings["No connections"] = "Ingen forbindelser";
+App::$strings["View all %s connections"] = "Vis alle %s forbindelser";
+App::$strings["poke"] = "prikk";
+App::$strings["ping"] = "varsle";
+App::$strings["pinged"] = "varslet";
+App::$strings["prod"] = "oppildne";
+App::$strings["prodded"] = "oppildnet";
+App::$strings["slap"] = "daske";
+App::$strings["slapped"] = "dasket";
+App::$strings["finger"] = "fingre";
+App::$strings["fingered"] = "fingret";
+App::$strings["rebuff"] = "tilbakevise";
+App::$strings["rebuffed"] = "tilbakeviste";
+App::$strings["happy"] = "glad";
+App::$strings["sad"] = "trist";
+App::$strings["mellow"] = "dempet";
+App::$strings["tired"] = "trøtt";
+App::$strings["perky"] = "oppkvikket";
+App::$strings["angry"] = "sint";
+App::$strings["stupefied"] = "lamslått";
+App::$strings["puzzled"] = "forundret";
+App::$strings["interested"] = "interessert";
+App::$strings["bitter"] = "bitter";
+App::$strings["cheerful"] = "munter";
+App::$strings["alive"] = "levende";
+App::$strings["annoyed"] = "irritert";
+App::$strings["anxious"] = "nervøs";
+App::$strings["cranky"] = "gretten";
+App::$strings["disturbed"] = "foruroliget";
+App::$strings["frustrated"] = "frustrert";
+App::$strings["depressed"] = "lei seg";
+App::$strings["motivated"] = "motivert";
+App::$strings["relaxed"] = "avslappet";
+App::$strings["surprised"] = "overrasket";
+App::$strings["Monday"] = "mandag";
+App::$strings["Tuesday"] = "tirsdag";
+App::$strings["Wednesday"] = "onsdag";
+App::$strings["Thursday"] = "torsdag";
+App::$strings["Friday"] = "fredag";
+App::$strings["Saturday"] = "lørdag";
+App::$strings["Sunday"] = "søndag";
+App::$strings["January"] = "januar";
+App::$strings["February"] = "februar";
+App::$strings["March"] = "mars";
+App::$strings["April"] = "april";
+App::$strings["May"] = "mai";
+App::$strings["June"] = "juni";
+App::$strings["July"] = "juli";
+App::$strings["August"] = "august";
+App::$strings["September"] = "september";
+App::$strings["October"] = "oktober";
+App::$strings["November"] = "november";
+App::$strings["December"] = "desember";
+App::$strings["Unknown Attachment"] = "Ukjent vedlegg";
+App::$strings["unknown"] = "ukjent";
+App::$strings["remove category"] = "fjern kategori";
+App::$strings["remove from file"] = "fjern fra fil";
+App::$strings["default"] = "standard";
+App::$strings["Page layout"] = "Sidens layout";
+App::$strings["You can create your own with the layouts tool"] = "Du kan lage din egen med layout-verktøyet";
+App::$strings["Page content type"] = "Sidens innholdstype";
+App::$strings["Select an alternate language"] = "Velg et annet språk";
+App::$strings["activity"] = "aktivitet";
+App::$strings["Design Tools"] = "Designverktøy";
+App::$strings["Pages"] = "Sider";
+App::$strings["Logged out."] = "Logget ut.";
+App::$strings["Failed authentication"] = "Mislykket autentisering";
+App::$strings["Can view my normal stream and posts"] = "Kan se min normale strøm og innlegg";
+App::$strings["Can view my webpages"] = "Kan se mine websider";
+App::$strings["Can post on my channel page (\"wall\")"] = "Kan lage innlegg på min kanalside (\"vegg\")";
+App::$strings["Can like/dislike stuff"] = "Kan like/ikke like forskjellige greier";
+App::$strings["Profiles and things other than posts/comments"] = "Profiler og andre ting enn innlegg/kommentarer";
+App::$strings["Can forward to all my channel contacts via post @mentions"] = "Kan videresende til alle mine kanalkontakter via @navn i innlegg";
+App::$strings["Advanced - useful for creating group forum channels"] = "Avansert - nyttig for å lage forumkanaler for grupper";
+App::$strings["Can chat with me (when available)"] = "Kan chatte/sende lynmeldinger til meg (når tilgjengelig)";
+App::$strings["Can write to my file storage and photos"] = "Kan skrive til mitt lager for filer og bilder";
+App::$strings["Can edit my webpages"] = "Kan endre mine websider";
+App::$strings["Somewhat advanced - very useful in open communities"] = "Litt avansert - svært nyttig i åpne fellesskap";
+App::$strings["Can administer my channel resources"] = "Kan administrere mine kanalressurser";
+App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Ekstremt avansert. La dette være med mindre du vet hva du gjør";
App::$strings["General Features"] = "Generelle funksjoner";
App::$strings["Content Expiration"] = "Innholdet utløper";
App::$strings["Remove posts/comments and/or private messages at a future time"] = "Fjern innlegg/kommentarer og/eller private meldinger på et angitt tidspunkt i fremtiden";
@@ -2021,6 +1965,7 @@ App::$strings["Profile Import/Export"] = "Profil-import/-eksport";
App::$strings["Save and load profile details across sites/channels"] = "Lagre og åpne profildetaljer på tvers av nettsteder/kanaler";
App::$strings["Web Pages"] = "Web-sider";
App::$strings["Provide managed web pages on your channel"] = "Tilby kontrollerte web-sider på din kanal";
+App::$strings["Provide a wiki for your channel"] = "";
App::$strings["Hide Rating"] = "Skjul vurdering";
App::$strings["Hide the rating buttons on your channel and profile pages. Note: People can still rate you somewhere else."] = "Skjul vurderingsknappene for din kanal og profilsider. Merknad: folk kan fortsatt vurdere deg et annet sted.";
App::$strings["Private Notes"] = "Private merknader";
@@ -2029,10 +1974,10 @@ App::$strings["Navigation Channel Select"] = "Navigasjon kanalvalg";
App::$strings["Change channels directly from within the navigation dropdown menu"] = "Endre kanaler direkte fra navigasjonsmenyen";
App::$strings["Photo Location"] = "Bildeplassering";
App::$strings["If location data is available on uploaded photos, link this to a map."] = "Hvis plasseringsdata er tilgjengelige i opplastede bilder, plasser dette på et kart.";
-App::$strings["Access Controlled Chatrooms"] = "";
-App::$strings["Provide chatrooms and chat services with access control."] = "";
-App::$strings["Smart Birthdays"] = "";
-App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = "";
+App::$strings["Access Controlled Chatrooms"] = "Tilgangsstyrte chatrom";
+App::$strings["Provide chatrooms and chat services with access control."] = "Tilby chatrom og chattjenester med tilgangskontroll.";
+App::$strings["Smart Birthdays"] = "Smarte fødselsdager";
+App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = "Gjør fødselsdagshendelser oppmerksom på tidsoner i tilfelle dine venner er spredt rundt planeten.";
App::$strings["Expert Mode"] = "Ekspertmodus";
App::$strings["Enable Expert Mode to provide advanced configuration options"] = "Skru på Ekspertmodus for å tilby avanserte konfigurasjonsvalg";
App::$strings["Premium Channel"] = "Premiumkanal";
@@ -2054,6 +1999,7 @@ App::$strings["Search by Date"] = "Søk etter dato";
App::$strings["Ability to select posts by date ranges"] = "Mulighet for å velge innlegg etter datoområde";
App::$strings["Privacy Groups"] = "Personverngrupper";
App::$strings["Enable management and selection of privacy groups"] = "Skru på håndtering og valg av personverngrupper";
+App::$strings["Saved Searches"] = "Lagrede søk";
App::$strings["Save search terms for re-use"] = "Lagre søkeuttrykk for senere bruk";
App::$strings["Network Personal Tab"] = "Nettverk personlig fane";
App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Skru på fane for å bare vise Nettverksinnlegg som du har deltatt i";
@@ -2069,8 +2015,9 @@ App::$strings["Community Tagging"] = "Felleskapsmerkelapper";
App::$strings["Ability to tag existing posts"] = "Mulighet til å merke eksisterende meldinger";
App::$strings["Post Categories"] = "Innleggskategorier";
App::$strings["Add categories to your posts"] = "Legg kategorier til dine innlegg";
-App::$strings["Emoji Reactions"] = "";
-App::$strings["Add emoji reaction ability to posts"] = "";
+App::$strings["Emoji Reactions"] = "Emoji-reaksjoner";
+App::$strings["Add emoji reaction ability to posts"] = "Legg til muligheten for emoji-reaksjoner på innlegg";
+App::$strings["Saved Folders"] = "Lagrede mapper";
App::$strings["Ability to file posts under folders"] = "Mulighet til å sortere innlegg i mapper";
App::$strings["Dislike Posts"] = "Mislik innlegg";
App::$strings["Ability to dislike posts/comments"] = "Mulighet til å mislike innlegg/kommentarer";
@@ -2078,63 +2025,149 @@ App::$strings["Star Posts"] = "Stjerneinnlegg";
App::$strings["Ability to mark special posts with a star indicator"] = "Mulighet til å merke spesielle innlegg med en stjerne";
App::$strings["Tag Cloud"] = "Merkelappsky";
App::$strings["Provide a personal tag cloud on your channel page"] = "Tilby en personlig merkelappsky på din kanalside";
-App::$strings["Embedded content"] = "Innebygget innhold";
-App::$strings["Embedding disabled"] = "Innbygging avskrudd";
-App::$strings["Who can see this?"] = "";
-App::$strings["Custom selection"] = "";
-App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "";
-App::$strings["Show"] = "Vis";
-App::$strings["Don't show"] = "Ikke vis";
-App::$strings["Other networks and post services"] = "Andre nettverk og innleggstjenester";
-App::$strings["Post permissions %s cannot be changed %s after a post is shared.</br />These permissions set who is allowed to view the post."] = "";
-App::$strings["Logged out."] = "Logget ut.";
-App::$strings["Failed authentication"] = "Mislykket autentisering";
-App::$strings["Birthday"] = "";
-App::$strings["Age: "] = "Alder:";
-App::$strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD eller MM-DD";
-App::$strings["never"] = "aldri";
-App::$strings["less than a second ago"] = "for mindre enn ett sekund siden";
-App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "%1\$d %2\$s siden";
-App::$strings["__ctx:relative_date__ year"] = array(
- 0 => "år",
- 1 => "år",
-);
-App::$strings["__ctx:relative_date__ month"] = array(
- 0 => "måned",
- 1 => "måneder",
-);
-App::$strings["__ctx:relative_date__ week"] = array(
- 0 => "uke",
- 1 => "uker",
-);
-App::$strings["__ctx:relative_date__ day"] = array(
- 0 => "dag",
- 1 => "dager",
-);
-App::$strings["__ctx:relative_date__ hour"] = array(
- 0 => "time",
- 1 => "timer",
-);
-App::$strings["__ctx:relative_date__ minute"] = array(
- 0 => "minutt",
- 1 => "minutter",
-);
-App::$strings["__ctx:relative_date__ second"] = array(
- 0 => "sekund",
- 1 => "sekunder",
-);
-App::$strings["%1\$s's birthday"] = "%1\$s sin fødselsdag";
-App::$strings["Happy Birthday %1\$s"] = "Gratulerer med dagen, %1\$s !";
App::$strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "En slettet gruppe med dette navnet ble gjenopprettet. Eksisterende tillatelser for elementet <strong>kan</strong> gjelde for denne gruppen og fremtidige medlemmer. Hvis du ønsket noe annet, vennligst lag en ny gruppe med et annet navn.";
App::$strings["Add new connections to this privacy group"] = "Legg nye forbindelser i denne personverngruppen";
App::$strings["edit"] = "endre";
App::$strings["Edit group"] = "Endre gruppe";
App::$strings["Add privacy group"] = "Legg til personverngruppe";
App::$strings["Channels not in any privacy group"] = "Kanaler uten personverngruppe";
+App::$strings["add"] = "legg til";
+App::$strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
+App::$strings["Starts:"] = "Starter:";
+App::$strings["Finishes:"] = "Slutter:";
+App::$strings["This event has been added to your calendar."] = "Denne hendelsen er lagt til i din kalender.";
+App::$strings["Not specified"] = "Ikke spesifisert";
+App::$strings["Needs Action"] = "Trenger handling";
+App::$strings["Completed"] = "Ferdig";
+App::$strings["In Process"] = "Igang";
+App::$strings["Cancelled"] = "Avbrutt";
+App::$strings["Not a valid email address"] = "Ikke en gyldig e-postadresse";
+App::$strings["Your email domain is not among those allowed on this site"] = "Ditt e-postdomene er ikke blant de som er tillatt på dette stedet";
+App::$strings["Your email address is already registered at this site."] = "Din e-postadresse er allerede registrert på dette nettstedet.";
+App::$strings["An invitation is required."] = "En invitasjon er påkrevd.";
+App::$strings["Invitation could not be verified."] = "Invitasjon kunne ikke bekreftes.";
+App::$strings["Please enter the required information."] = "Vennligst skriv inn nødvendig informasjon.";
+App::$strings["Failed to store account information."] = "Mislyktes med å lagre kontoinformasjon.";
+App::$strings["Registration confirmation for %s"] = "Registreringsbekreftelse for %s";
+App::$strings["Registration request at %s"] = "Registreringsforespørsel hos %s";
+App::$strings["your registration password"] = "ditt registreringspassord";
+App::$strings["Registration details for %s"] = "Registreringsdetaljer for %s";
+App::$strings["Account approved."] = "Konto godkjent.";
+App::$strings["Registration revoked for %s"] = "Registrering trukket tilbake for %s";
+App::$strings["Click here to upgrade."] = "Klikk her for å oppgradere.";
+App::$strings["This action exceeds the limits set by your subscription plan."] = "Denne handlingen går utenfor grensene satt i din abonnementsplan.";
+App::$strings["This action is not available under your subscription plan."] = "Denne handlingen er ikke tilgjengelig i din abonnementsplan.";
+App::$strings["Channel is blocked on this site."] = "Kanalen er blokkert på dette nettstedet.";
+App::$strings["Channel location missing."] = "Kanalplassering mangler.";
+App::$strings["Response from remote channel was incomplete."] = "Svaret fra den andre kanalen var ikke komplett.";
+App::$strings["Channel was deleted and no longer exists."] = "Kanalen er slettet og finnes ikke lenger.";
+App::$strings["Protocol disabled."] = "Protokollen er avskrudd.";
+App::$strings["Channel discovery failed."] = "Kanaloppdagelse mislyktes.";
+App::$strings["Cannot connect to yourself."] = "Kan ikke lage forbindelse med deg selv.";
+App::$strings["Item was not found."] = "Elementet ble ikke funnet.";
+App::$strings["No source file."] = "Ingen kildefil.";
+App::$strings["Cannot locate file to replace"] = "Kan ikke finne filen som skal byttes ut";
+App::$strings["Cannot locate file to revise/update"] = "Finner ikke filen som skal revideres/oppdateres";
+App::$strings["File exceeds size limit of %d"] = "Filens størrelse overgår grensen på %d";
+App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Du har nådd din lagringsgrense for vedlegg på %1$.0f Mbytes.";
+App::$strings["File upload failed. Possible system limit or action terminated."] = "Mislyktes med å laste opp filen. Mulig systemgrense eller handling avbrutt.";
+App::$strings["Stored file could not be verified. Upload failed."] = "Lagret fil kunne ikke bekreftes. Opplasting mislyktes.";
+App::$strings["Path not available."] = "Stien er ikke tilgjengelig.";
+App::$strings["Empty pathname"] = "Tomt sti-navn";
+App::$strings["duplicate filename or path"] = "duplikat av filnavn eller sti";
+App::$strings["Path not found."] = "Stien ble ikke funnet.";
+App::$strings["mkdir failed."] = "mkdir mislyktes.";
+App::$strings["database storage failed."] = "databaselagring mislyktes.";
+App::$strings["Empty path"] = "Tom sti";
+App::$strings["Image/photo"] = "Bilde/fotografi";
+App::$strings["Encrypted content"] = "Kryptert innhold";
+App::$strings["Install %s element: "] = "Installer %s element:";
+App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Dette innlegget inneholder det installerbare elementet %s, men du mangler tillatelse til å installere det på dette nettstedet.";
+App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s skrev følgende %2\$s %3\$s";
+App::$strings["Click to open/close"] = "Klikk for å åpne/lukke";
+App::$strings["spoiler"] = "avsløring";
+App::$strings["Different viewers will see this text differently"] = "Denne teksten vil se forskjellig ut for ulike besøkende";
+App::$strings["$1 wrote:"] = "$1 skrev:";
+App::$strings["(Unknown)"] = "(Ukjent)";
+App::$strings["Visible to anybody on the internet."] = "Synlig for enhver på Internett.";
+App::$strings["Visible to you only."] = "Synlig bare for deg.";
+App::$strings["Visible to anybody in this network."] = "Synlig for enhver i dette nettverket.";
+App::$strings["Visible to anybody authenticated."] = "Synlig for enhver som er autentisert.";
+App::$strings["Visible to anybody on %s."] = "Synlig for alle på %s.";
+App::$strings["Visible to all connections."] = "Synlig for alle forbindelser.";
+App::$strings["Visible to approved connections."] = "Synlig for godkjente forbindelser.";
+App::$strings["Visible to specific connections."] = "Synlig for spesifikke forbindelser.";
+App::$strings["Privacy group is empty."] = "Personverngruppen er tom.";
+App::$strings["Privacy group: %s"] = "Personverngruppe: %s";
+App::$strings["Connection not found."] = "Forbindelsen ble ikke funnet.";
+App::$strings["profile photo"] = "profilbilde";
+App::$strings["Embedded content"] = "Innebygget innhold";
+App::$strings["Embedding disabled"] = "Innbygging avskrudd";
+App::$strings["System"] = "System";
+App::$strings["New App"] = "Ny app";
+App::$strings["Suggestions"] = "Forslag";
+App::$strings["See more..."] = "Se mer...";
+App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Du har %1$.0f av %2$.0f tillate forbindelser.";
+App::$strings["Add New Connection"] = "Legg til ny forbindelse";
+App::$strings["Enter channel address"] = "Skriv kanaladressen";
+App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Eksempel: ola@eksempel.no, https://eksempel.no/kari";
+App::$strings["Notes"] = "Merknader";
+App::$strings["Remove term"] = "Fjern begrep";
+App::$strings["Everything"] = "Alt";
+App::$strings["Archives"] = "Arkiv";
+App::$strings["Refresh"] = "Forny";
+App::$strings["Account settings"] = "Kontoinnstillinger";
+App::$strings["Channel settings"] = "Kanalinnstillinger";
+App::$strings["Additional features"] = "Tilleggsfunksjoner";
+App::$strings["Feature/Addon settings"] = "Funksjons-/Tilleggsinnstillinger";
+App::$strings["Display settings"] = "Visningsinnstillinger";
+App::$strings["Manage locations"] = "Håndter plasseringer";
+App::$strings["Export channel"] = "Eksporter kanal";
+App::$strings["Connected apps"] = "Tilkoblede app-er";
+App::$strings["Premium Channel Settings"] = "Premiumkanal-innstillinger";
+App::$strings["Private Mail Menu"] = "Meny for privat post";
+App::$strings["Combined View"] = "Kombinert visning";
+App::$strings["Conversations"] = "Samtaler";
+App::$strings["Received Messages"] = "Mottatte meldinger";
+App::$strings["Sent Messages"] = "Sendte meldinger";
+App::$strings["No messages."] = "Ingen meldinger.";
+App::$strings["Delete conversation"] = "Slett samtale";
+App::$strings["Events Tools"] = "Kalenderverktøy";
+App::$strings["Export Calendar"] = "Eksporter kalender";
+App::$strings["Import Calendar"] = "Importer kalender";
+App::$strings["Overview"] = "Overblikk";
+App::$strings["Chat Members"] = "Chatmedlemmer";
+App::$strings["Wiki List"] = "";
+App::$strings["Wiki Pages"] = "";
+App::$strings["Bookmarked Chatrooms"] = "Bokmerkede chatrom";
+App::$strings["Suggested Chatrooms"] = "Foreslåtte chatrom";
+App::$strings["photo/image"] = "foto/bilde";
+App::$strings["Click to show more"] = "Klikk for å vise mer";
+App::$strings["Rating Tools"] = "Vurderingsverktøy";
+App::$strings["Rate Me"] = "Vurder meg";
+App::$strings["View Ratings"] = "Vis vurderinger";
+App::$strings["Forums"] = "Forum";
+App::$strings["Tasks"] = "Oppgaver";
+App::$strings["Documentation"] = "Dokumentasjon";
+App::$strings["Project/Site Information"] = "Prosjekt-/Nettstedsinformasjon";
+App::$strings["For Members"] = "For medlemmer";
+App::$strings["For Administrators"] = "For administratorer";
+App::$strings["For Developers"] = "For utviklere";
+App::$strings["Member registrations waiting for confirmation"] = "Medlemsregistreringer venter på bekreftelse";
+App::$strings["Inspect queue"] = "Inspiser kø";
+App::$strings["DB updates"] = "Databaseoppdateringer";
+App::$strings["Plugin Features"] = "Tilleggsfunksjoner";
+App::$strings[" and "] = "og";
+App::$strings["public profile"] = "offentlig profil";
+App::$strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s endret %2\$s til &ldquo;%3\$s&rdquo;";
+App::$strings["Visit %1\$s's %2\$s"] = "Besøk %1\$s sitt %2\$s";
+App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s har oppdatert %2\$s, endret %3\$s.";
+App::$strings["Attachments:"] = "Vedlegg:";
+App::$strings["\$Projectname event notification:"] = "\$Projectname hendelsesvarsling:";
App::$strings["Delete this item?"] = "Slett dette elementet?";
-App::$strings["[-] show less"] = "[-] Vis mindre";
-App::$strings["[+] expand"] = "[+] Utvid";
-App::$strings["[-] collapse"] = "[-] Lukk";
+App::$strings["%s show less"] = "";
+App::$strings["%s expand"] = "";
+App::$strings["%s collapse"] = "";
App::$strings["Password too short"] = "Passordet er for kort";
App::$strings["Passwords do not match"] = "Passordene er ikke like";
App::$strings["everybody"] = "alle";
@@ -2189,72 +2222,78 @@ App::$strings["__ctx:calendar__ month"] = "måned";
App::$strings["__ctx:calendar__ week"] = "uke";
App::$strings["__ctx:calendar__ day"] = "dag";
App::$strings["__ctx:calendar__ All day"] = "Hele dagen";
-App::$strings["view full size"] = "vis full størrelse";
-App::$strings["No Subject"] = "Uten emne";
-App::$strings["Friendica"] = "Friendica";
-App::$strings["OStatus"] = "OStatus";
-App::$strings["GNU-Social"] = "";
-App::$strings["RSS/Atom"] = "RSS/Atom";
-App::$strings["Diaspora"] = "Diaspora";
-App::$strings["Facebook"] = "Facebook";
-App::$strings["Zot"] = "Zot";
-App::$strings["LinkedIn"] = "LinkedIn";
-App::$strings["XMPP/IM"] = "XMPP/IM";
-App::$strings["MySpace"] = "MySpace";
-App::$strings["Image exceeds website size limit of %lu bytes"] = "Bilde overstiger nettstedets størrelsesbegrensning på %lu bytes";
-App::$strings["Image file is empty."] = "Bildefilen er tom.";
-App::$strings["Photo storage failed."] = "Bildelagring mislyktes.";
-App::$strings["a new photo"] = "et nytt bilde";
-App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s la inn %2\$s til %3\$s";
-App::$strings["Upload New Photos"] = "Last opp nye bilder";
+App::$strings["%d invitation available"] = array(
+ 0 => "%d invitasjon tilgjengelig",
+ 1 => "%d invitasjoner tilgjengelig",
+);
+App::$strings["Find Channels"] = "Finn kanaler";
+App::$strings["Enter name or interest"] = "Skriv navn eller interesse";
+App::$strings["Connect/Follow"] = "Forbindelse/Følg";
+App::$strings["Examples: Robert Morgenstein, Fishing"] = "Eksempler: Ola Nordmann, fisking";
+App::$strings["Random Profile"] = "Tilfeldig profil";
+App::$strings["Invite Friends"] = "Inviter venner";
+App::$strings["Advanced example: name=fred and country=iceland"] = "Avansert eksempel: navn=fred og land=island";
+App::$strings["%d connection in common"] = array(
+ 0 => "%d forbindelse felles",
+ 1 => "%d forbindelser felles",
+);
+App::$strings["show more"] = "vis mer";
+App::$strings["Directory Options"] = "Kataloginnstillinger";
+App::$strings["Safe Mode"] = "Trygt modus";
+App::$strings["Public Forums Only"] = "Bare offentlige forum";
+App::$strings["This Website Only"] = "Kun dette nettstedet";
+App::$strings["No recipient provided."] = "Ingen mottaker angitt.";
+App::$strings["[no subject]"] = "[ikke noe emne]";
+App::$strings["Unable to determine sender."] = "Kan ikke avgjøre avsender.";
+App::$strings["Stored post could not be verified."] = "Lagret innlegg kunne ikke bekreftes.";
+App::$strings["Who can see this?"] = "Hvem kan se dette?";
+App::$strings["Custom selection"] = "Tilpasset utvalg";
+App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Velg \"Vis\" for å tillate visning. \"Ikke vis\" lar deg overstyre og avgrense omfanget av \"Vis\".";
+App::$strings["Show"] = "Vis";
+App::$strings["Don't show"] = "Ikke vis";
+App::$strings["Other networks and post services"] = "Andre nettverk og innleggstjenester";
+App::$strings["Post permissions %s cannot be changed %s after a post is shared.</br />These permissions set who is allowed to view the post."] = "Innleggstillatelsene %s kan ikke endres %s etter at et innlegg er delt.</br>Disse innstillingene angir hvem som har tillatelse til å se innlegget.";
+App::$strings["Birthday"] = "Fødselsdag";
+App::$strings["Age: "] = "Alder:";
+App::$strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD eller MM-DD";
+App::$strings["never"] = "aldri";
+App::$strings["less than a second ago"] = "for mindre enn ett sekund siden";
+App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "%1\$d %2\$s siden";
+App::$strings["__ctx:relative_date__ year"] = array(
+ 0 => "år",
+ 1 => "år",
+);
+App::$strings["__ctx:relative_date__ month"] = array(
+ 0 => "måned",
+ 1 => "måneder",
+);
+App::$strings["__ctx:relative_date__ week"] = array(
+ 0 => "uke",
+ 1 => "uker",
+);
+App::$strings["__ctx:relative_date__ day"] = array(
+ 0 => "dag",
+ 1 => "dager",
+);
+App::$strings["__ctx:relative_date__ hour"] = array(
+ 0 => "time",
+ 1 => "timer",
+);
+App::$strings["__ctx:relative_date__ minute"] = array(
+ 0 => "minutt",
+ 1 => "minutter",
+);
+App::$strings["__ctx:relative_date__ second"] = array(
+ 0 => "sekund",
+ 1 => "sekunder",
+);
+App::$strings["%1\$s's birthday"] = "%1\$s sin fødselsdag";
+App::$strings["Happy Birthday %1\$s"] = "Gratulerer med dagen, %1\$s !";
+App::$strings["Public Timeline"] = "Offentlig tidslinje";
App::$strings["Invalid data packet"] = "Ugyldig datapakke";
App::$strings["Unable to verify channel signature"] = "Ikke i stand til å sjekke kanalsignaturen";
App::$strings["Unable to verify site signature for %s"] = "Ikke i stand til å bekrefte signaturen til %s";
App::$strings["invalid target signature"] = "Målets signatur er ugyldig";
-App::$strings["New Page"] = "Ny side";
-App::$strings["Title"] = "Tittel";
-App::$strings["Can view my normal stream and posts"] = "Kan se min normale strøm og innlegg";
-App::$strings["Can view my default channel profile"] = "Kan se min standard kanalprofil";
-App::$strings["Can view my connections"] = "Kan se mine forbindelser";
-App::$strings["Can view my file storage and photos"] = "Kan se mine filer og bilder";
-App::$strings["Can view my webpages"] = "Kan se mine websider";
-App::$strings["Can send me their channel stream and posts"] = "Kan sende meg deres kanalstrøm og innlegg";
-App::$strings["Can post on my channel page (\"wall\")"] = "Kan lage innlegg på min kanalside (\"vegg\")";
-App::$strings["Can comment on or like my posts"] = "Kan kommentere på eller like mine innlegg";
-App::$strings["Can send me private mail messages"] = "Kan sende meg private meldinger";
-App::$strings["Can like/dislike stuff"] = "Kan like/ikke like forskjellige greier";
-App::$strings["Profiles and things other than posts/comments"] = "Profiler og andre ting enn innlegg/kommentarer";
-App::$strings["Can forward to all my channel contacts via post @mentions"] = "Kan videresende til alle mine kanalkontakter via @navn i innlegg";
-App::$strings["Advanced - useful for creating group forum channels"] = "Avansert - nyttig for å lage forumkanaler for grupper";
-App::$strings["Can chat with me (when available)"] = "Kan chatte/sende lynmeldinger til meg (når tilgjengelig)";
-App::$strings["Can write to my file storage and photos"] = "Kan skrive til mitt lager for filer og bilder";
-App::$strings["Can edit my webpages"] = "Kan endre mine websider";
-App::$strings["Can source my public posts in derived channels"] = "Kan bruke mine offentlige innlegg som kanalkilde i egne kanaler";
-App::$strings["Somewhat advanced - very useful in open communities"] = "Litt avansert - svært nyttig i åpne fellesskap";
-App::$strings["Can administer my channel resources"] = "Kan administrere mine kanalressurser";
-App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Ekstremt avansert. La dette være med mindre du vet hva du gjør";
-App::$strings["Social Networking"] = "Sosialt nettverk";
-App::$strings["Social - Mostly Public"] = "Sosial - ganske offentlig";
-App::$strings["Social - Restricted"] = "Sosial - begrenset";
-App::$strings["Social - Private"] = "Sosial - privat";
-App::$strings["Community Forum"] = "Forum for fellesskap";
-App::$strings["Forum - Mostly Public"] = "Forum - ganske offentlig";
-App::$strings["Forum - Restricted"] = "Forum - begrenset";
-App::$strings["Forum - Private"] = "Forum - privat";
-App::$strings["Feed Republish"] = "Republisering av strømmet innhold";
-App::$strings["Feed - Mostly Public"] = "Strøm - ganske offentlig";
-App::$strings["Feed - Restricted"] = "Strøm - begrenset";
-App::$strings["Special Purpose"] = "Spesiell bruk";
-App::$strings["Special - Celebrity/Soapbox"] = "Spesiell - kjendis/talerstol";
-App::$strings["Special - Group Repository"] = "Spesiell - gruppelager";
-App::$strings["Custom/Expert Mode"] = "Tilpasset/Ekspertmodus";
-App::$strings[" and "] = "og";
-App::$strings["public profile"] = "offentlig profil";
-App::$strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s endret %2\$s til &ldquo;%3\$s&rdquo;";
-App::$strings["Visit %1\$s's %2\$s"] = "Besøk %1\$s sitt %2\$s";
-App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s har oppdatert %2\$s, endret %3\$s.";
-App::$strings["Attachments:"] = "Vedlegg:";
-App::$strings["\$Projectname event notification:"] = "\$Projectname hendelsesvarsling:";
App::$strings["Focus (Hubzilla default)"] = "Focus (Hubzilla standardtema)";
App::$strings["Theme settings"] = "Temainnstillinger";
App::$strings["Select scheme"] = "Velg skjema";
@@ -2289,11 +2328,12 @@ App::$strings["Left align page content"] = "Venstrejuster sideinnhold";
App::$strings["Set minimum opacity of nav bar - to hide it"] = "Angi minste dekkevne for navigasjonslinjen - for å skjule den";
App::$strings["Set size of conversation author photo"] = "Angi størrelsen for samtalens forfatterbilde";
App::$strings["Set size of followup author photos"] = "Angi størrelsen på forfatterbilder ved oppfølging";
-App::$strings["__ctx:opensearch__ Search %1\$s (%2\$s)"] = "";
-App::$strings["__ctx:opensearch__ \$Projectname"] = "";
+App::$strings["__ctx:opensearch__ Search %1\$s (%2\$s)"] = "Søk %1\$s (%2\$s)";
+App::$strings["__ctx:opensearch__ \$Projectname"] = "\$Projectname";
App::$strings["Update %s failed. See error logs."] = "Oppdatering %s mislyktes. Se feilloggen.";
App::$strings["Update Error at %s"] = "Oppdateringsfeil ved %s";
App::$strings["Create an account to access services and applications within the Hubzilla"] = "Lag en konto for å få tilgang til tjenester og programmer i Hubzilla";
+App::$strings["Login/Email"] = "";
App::$strings["Password"] = "Passord";
App::$strings["Remember me"] = "Husk meg";
App::$strings["Forgot your password?"] = "Glemt passordet ditt?";
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css
index 2b0f3b853..6cc3e2f10 100644
--- a/view/theme/redbasic/css/style.css
+++ b/view/theme/redbasic/css/style.css
@@ -106,7 +106,6 @@ input[type="submit"] {
input, optgroup, select, textarea {
color: #333;
- resize: vertical;
}
pre code {
@@ -2041,4 +2040,4 @@ dl.bb-dl > dd > li {
#wiki-preview img {
max-width: 100%;
-}
+} \ No newline at end of file
diff --git a/view/tpl/cloud_directory.tpl b/view/tpl/cloud_directory.tpl
index 5a84028c1..27dc8d03b 100644
--- a/view/tpl/cloud_directory.tpl
+++ b/view/tpl/cloud_directory.tpl
@@ -1,4 +1,4 @@
-<div id="cloud-drag-area" class="section-content-wrapper-np">
+<div class="section-content-wrapper-np">
<table id="cloud-index">
<tr>
<th width="1%"></th>